:root {
  --primary: #0061FF;
  --dark: #1E293B;
  --light: #F8FAFC;
  --border: #E2E8F0;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  flex-wrap: wrap; /* Allows the button to drop below the logo if the screen is tiny */
  gap: 15px;      /* Prevents items from touching during wrap */
}

.logo { font-weight: 800; font-size: 1.5rem; letter-spacing: -1px; }
.logo span { color: var(--primary); }
.links a { text-decoration: none; color: var(--dark); margin-left: 20px; font-size: 0.9rem; font-weight: 500; }

.btn-nav { 
  border: 2px solid var(--primary); /* Slightly thicker for "Enterprise" feel */
  padding: 8px 20px; 
  border-radius: 6px; 
  color: var(--primary) !important; 
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap; /* Prevents the text "Schedule a Demo" from breaking into two lines */
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-nav:hover {
  background: var(--primary);
  color: white !important;
}

/* Media Query for truly tiny screens (Mobile Optimization) */
@media (max-width: 480px) {
  nav {
    justify-content: center; /* Center everything if it wraps */
    padding: 15px 5%;
  }
  
  .hero h1 {
    font-size: 2.2rem; /* Scale down the jargon size for mobile */
  }
}

/* Hero */
.hero { padding: 80px 10%; text-align: center; }
.badge { background: #E0E7FF; color: var(--primary); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; display: inline-block; margin-bottom: 20px; }
h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--dark); }
.gradient-text { color: var(--primary); }

/* Generator Card */
.generator-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 40px auto;
  border: 1px solid var(--border);
}
#output { font-size: 1.5rem; font-weight: 500; min-height: 80px; display: flex; align-items: center; justify-content: center; color: #475569; border-bottom: 2px solid #F1F5F9; margin-bottom: 30px; }
button { background: var(--primary); color: white; border: none; padding: 18px 36px; font-size: 1rem; font-weight: 600; border-radius: 8px; cursor: pointer; transition: transform 0.1s; }
button:active { transform: scale(0.95); }

/* Pricing */
.pricing { padding: 60px 10%; text-align: center; background: #fff; }
.price-grid { display: flex; gap: 20px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.price-card { background: var(--light); padding: 30px; border-radius: 12px; border: 1px solid var(--border); width: 250px; position: relative; }
.price-card.featured { border: 2px solid var(--primary); transform: scale(1.05); background: white; }
.popular-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; font-size: 0.7rem; padding: 4px 12px; border-radius: 10px; }
.price { font-size: 2.5rem; font-weight: 800; margin: 20px 0; }
.price span { font-size: 1rem; color: #64748B; }
ul { list-style: none; padding: 0; text-align: left; font-size: 0.9rem; color: #475569; }
ul li { margin-bottom: 10px; }

/* Social Proof */
.social-proof { padding: 60px 10%; text-align: center; opacity: 0.5; }
.logos { display: flex; justify-content: center; gap: 40px; font-weight: 900; font-size: 0.9rem; margin-top: 20px; }

/* Poop Animation */
.poop-emoji {
  position: fixed;
  font-size: 2rem;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

/* Footer & Attribution */
.footer {
  padding: 40px 10%;
  background: #fff;
  border-top: 1px solid var(--border);
  margin-top: 80px;
  color: #94a3b8;
  font-size: 0.8rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.attribution a {
  color: #64748b;
  text-decoration: underline;
  transition: color 0.2s;
}

.attribution a:hover {
  color: var(--primary);
}