:root {
  --forest: #1B3A2D;
  --forest-deep: #132920;
  --sage: #4A7C59;
  --sage-light: #6B9E7A;
  --mint: #7FB685;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --sand: #FAF6F1;
  --amber: #D4883E;
  --amber-light: #E8A55C;
  --amber-glow: #FFF3E0;
  --dark: #1A2E23;
  --text: #2D3F33;
  --text-light: #5E7A67;
  --text-muted: #8A9E90;
  --white: #FFFDFB;
  --coral-soft: #E8C4B0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a2e22 0%, #2d4a35 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--forest-deep));
  pointer-events: none;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px 80px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1.5px solid rgba(212, 136, 62, 0.4);
}

.logo-text {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 700;
  color: #D4883E;
  letter-spacing: -0.3px;
}

.nav-cta {
  font-size: 14px;
  color: var(--white);
  background: var(--sage);
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,136,62,0.15);
  border: 1px solid rgba(212,136,62,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--amber-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-tagline {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 400;
  color: #FDF8F0;
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 520px;
  animation: fadeInUp 0.6s ease 0.18s both;
}

.hero-subtitle {
  font-size: 16px;
  color: #FDF8F0;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  animation: fadeInUp 0.6s ease 0.22s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero signup form */
.hero-form {
  background: rgba(255,253,251,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-form h3 {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.hero-form .form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--sage-light);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-group input::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--amber);
  background: rgba(255,255,255,0.12);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--forest); color: var(--white); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 6px;
}

.submit-btn:hover { background: var(--amber-light); }
.submit-btn:active { transform: scale(0.98); }

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 30px 20px;
}

.success-msg .check {
  width: 56px;
  height: 56px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.success-msg h3 {
  font-family: 'Lora', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.success-msg p {
  font-size: 14px;
  color: var(--sage-light);
  line-height: 1.6;
}

/* ===== PAIN SECTION ===== */
.pain {
  padding: 100px 40px;
  background: linear-gradient(180deg, #FFFDFB 0%, #F5EDE0 100%);
}

.pain-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pain h2 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 600px;
}

.pain-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 550px;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s;
}

.stat-card:hover { transform: translateY(-3px); }

.stat-number {
  font-family: 'Lora', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.quote-block {
  background: var(--amber-glow);
  border-radius: 16px;
  padding: 32px 36px;
  position: relative;
}

.quote-mark {
  font-family: 'Lora', serif;
  font-size: 60px;
  color: var(--amber);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
  opacity: 0.4;
}

.quote-text {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.quote-attr {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 40px;
  background: linear-gradient(135deg, #1a2e22 0%, #2d4a35 100%);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sage), transparent);
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.features h2 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 48px;
  max-width: 500px;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s, background 0.3s;
}

.feature-card:hover {
  border-color: rgba(212,136,62,0.3);
  background: rgba(255,255,255,0.07);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Lora', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--sage-light);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 40px;
  background: linear-gradient(180deg, #FFFDFB 0%, #F5EDE0 100%);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how h2 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.2;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.step:last-child { border-bottom: none; }

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.step h3 {
  font-family: 'Lora', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.step p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== FOUNDER ===== */
.founder {
  padding: 80px 40px;
  background: linear-gradient(180deg, #FFFDFB 0%, #F5EDE0 100%);
  border-top: 1px solid rgba(0,0,0,0.04);
}

.founder-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.founder h2 {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.founder p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 12px;
}

.founder-sig {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--amber);
  margin-top: 20px;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  padding: 80px 40px;
  background: linear-gradient(135deg, #1a2e22 0%, #2d4a35 100%);
  text-align: center;
}

.bottom-cta-inner {
  max-width: 550px;
  margin: 0 auto;
}

.bottom-cta h2 {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.bottom-cta p {
  font-size: 15px;
  color: var(--sage-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.bottom-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.bottom-form input {
  flex: 1;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
}

.bottom-form input::placeholder { color: rgba(255,255,255,0.3); }
.bottom-form input:focus { border-color: var(--amber); }

.bottom-form button {
  padding: 14px 24px;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.bottom-form button:hover { background: var(--amber-light); }

/* ===== FOOTER ===== */
footer {
  padding: 40px;
  background: linear-gradient(135deg, #1a2e22 0%, #2d4a35 100%);
  text-align: center;
}

footer .logo {
  justify-content: center;
  margin-bottom: 12px;
}

footer p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== SECONDARY CTA ===== */
.secondary-cta {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(94, 122, 103, 0.2);
}

.secondary-cta-or {
  color: #5E7A67;
  font-size: 14px;
  margin-bottom: 12px;
}

.secondary-cta-btn {
  display: inline-block;
  background: #1B3A2D;
  color: #FDF8F0;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  width: 100%;
  box-sizing: border-box;
}

.secondary-cta-btn:hover {
  background: #243f30;
  transform: translateY(-1px);
}

.secondary-cta-btn--light {
  background: #FDF8F0;
  color: #1B3A2D;
}

.secondary-cta-btn--light:hover {
  background: #f5efe3;
}

.secondary-cta-note {
  color: #8a9a8e;
  font-size: 12px;
  margin-top: 8px;
}

.secondary-cta--bottom {
  margin-top: 24px;
  border-top: none;
  padding-top: 0;
}

@media (min-width: 480px) {
  .secondary-cta-btn {
    width: auto;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 40px;
  background: linear-gradient(180deg, #FFFDFB 0%, #F5EDE0 100%);
  border-top: 1px solid rgba(0,0,0,0.04);
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials h2 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 28px;
}

.testimonial-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.65;
}

.testimonial-attr {
  margin-top: 16px;
  font-size: 13px;
  color: var(--sage);
}

/* ===== TRUST ===== */
.trust {
  padding: 100px 40px;
  background: linear-gradient(180deg, #FFFDFB 0%, #F5EDE0 100%);
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.trust h2 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
  max-width: 720px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
}

.trust-item {
  padding: 28px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
}

.trust-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.trust-item h3 {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== HIGHLIGHT (Denial Decoder) ===== */
.highlight {
  padding: 80px 40px;
  background: linear-gradient(135deg, #1a2e22 0%, #2d4a35 100%);
  color: var(--white);
}

.highlight-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.highlight h2 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.highlight > .highlight-inner > p {
  font-size: 16px;
  color: var(--sage-light);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

.highlight-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.highlight-stat {
  text-align: center;
}

.highlight-stat strong {
  display: block;
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 4px;
}

.highlight-stat span {
  font-size: 13px;
  color: #a0b8a8;
  max-width: 180px;
  display: inline-block;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 36px;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .highlight-stats { flex-direction: column; gap: 24px; }
  .bottom-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .hero-nav { padding: 20px 24px; }
  .pain, .features, .how, .founder, .bottom-cta, .testimonials, .trust, .highlight { padding: 60px 24px; }
  .logo-icon { width: 36px; height: 36px; border-radius: 8px; }
  .logo-text { font-size: 20px; }
  .nav-secondary-link { display: none; }
  .nav-cta { font-size: 13px; padding: 6px 16px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}
