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

:root {
  --cream:       #FDF8F2;
  --warm-white:  #FFFCF8;
  --sand:        #F0E8DA;
  --terracotta:  #C4623A;
  --terra-light: #E8815E;
  --terra-dark:  #9E4A28;
  --sage:        #7A9E87;
  --sage-light:  #A8C5B0;
  --ink:         #2A2118;
  --ink-muted:   #6B5D52;
  --ink-faint:   #A99990;
  --gold:        #D4A853;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(253, 248, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 98, 58, 0.08);
}

.logo {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--terracotta);
  letter-spacing: -0.3px;
  text-decoration: none;
}

.logo span {
  color: var(--ink);
}

nav a.nav-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
  padding: 9px 22px;
  border: 1.5px solid var(--terracotta);
  border-radius: 100px;
  transition: all 0.2s ease;
}

nav a.nav-cta:hover {
  background: var(--terracotta);
  color: white;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -180px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,98,58,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(122,158,135,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 98, 58, 0.08);
  border: 1px solid rgba(196, 98, 58, 0.2);
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

h1 {
  font-family: 'Lora', serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--ink-muted);
  max-width: 520px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.waitlist-form input {
  flex: 1;
  padding: 16px 22px;
  border: 1.5px solid rgba(42,33,24,0.15);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input::placeholder { color: var(--ink-faint); }

.waitlist-form input:focus {
  border-color: var(--terracotta);
}

.btn-primary {
  padding: 16px 28px;
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(196,98,58,0.3);
}

.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,98,58,0.4);
}

.hero-trust {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-faint);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
}

/* ── PAIN SECTION ── */
.pain {
  background: var(--ink);
  padding: 100px 24px;
  text-align: center;
}

.pain h2 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--warm-white);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.25;
}

.pain h2 em {
  font-style: italic;
  color: var(--terra-light);
}

.pain p {
  color: rgba(255,252,248,0.55);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.pain-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 56px auto 0;
}

.pain-card {
  background: rgba(255,252,248,0.05);
  border: 1px solid rgba(255,252,248,0.1);
  border-radius: 20px;
  padding: 28px 32px;
  max-width: 260px;
  text-align: left;
  transition: border-color 0.3s;
}

.pain-card:hover {
  border-color: rgba(232,129,94,0.4);
}

.pain-card .quote-mark {
  font-family: 'Lora', serif;
  font-size: 48px;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.6;
}

.pain-card p {
  font-size: 15px;
  color: rgba(255,252,248,0.7);
  line-height: 1.6;
  max-width: none;
  margin: 0;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 120px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.how h2 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--ink);
  max-width: 540px;
  line-height: 1.2;
  margin-bottom: 72px;
  letter-spacing: -0.5px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, var(--terracotta), var(--sage));
  opacity: 0.25;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.step:nth-child(1) .step-num { background: rgba(196,98,58,0.12); color: var(--terracotta); }
.step:nth-child(2) .step-num { background: rgba(212,168,83,0.12); color: var(--gold); }
.step:nth-child(3) .step-num { background: rgba(122,158,135,0.12); color: var(--sage); }

.step h3 {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

.step p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}

.step .step-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 4px;
}

.step:nth-child(1) .step-tag { background: rgba(196,98,58,0.08); color: var(--terracotta); }
.step:nth-child(2) .step-tag { background: rgba(212,168,83,0.08); color: #B8893E; }
.step:nth-child(3) .step-tag { background: rgba(122,158,135,0.08); color: var(--sage); }

/* ── DIFFERENTIATOR ── */
.diff {
  background: var(--sand);
  padding: 100px 24px;
}

.diff-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.diff h2 {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.diff h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.diff p {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}

.compare-table {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(42,33,24,0.08);
}

.compare-table .t-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 16px 24px;
  background: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.compare-table .t-head span:first-child { color: rgba(255,252,248,0.4); }
.compare-table .t-head span:not(:first-child) {
  text-align: center;
  color: rgba(255,252,248,0.7);
}

.compare-table .t-head span:last-child { color: var(--terra-light); }

.t-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(42,33,24,0.06);
  align-items: center;
}

.t-row:last-child { border-bottom: none; }

.t-row .feature {
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 400;
}

.t-row .val {
  text-align: center;
  font-size: 18px;
}

.t-row .val.yes { color: var(--sage); }
.t-row .val.no  { color: #D4B8B0; }
.t-row .val.part { color: var(--gold); font-size: 14px; color: var(--ink-faint); }

/* ── SOCIAL PROOF ── */
.proof {
  padding: 100px 24px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.proof h2 {
  font-family: 'Lora', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 56px;
}

.proof h2 em { font-style: italic; color: var(--terracotta); }

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

.testimonial {
  background: white;
  border-radius: 20px;
  padding: 28px;
  text-align: left;
  border: 1px solid rgba(42,33,24,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}

.testimonial:hover {
  box-shadow: 0 8px 32px rgba(42,33,24,0.1);
  transform: translateY(-3px);
}

.testimonial .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.testimonial p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
}

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

.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: white;
}

.avatar-1 { background: linear-gradient(135deg, var(--terracotta), var(--gold)); }
.avatar-2 { background: linear-gradient(135deg, var(--sage), #4A8A5A); }
.avatar-3 { background: linear-gradient(135deg, #8A7AB8, #5A4A8A); }

.author-info .name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.author-info .meta {
  font-size: 12px;
  color: var(--ink-faint);
}

/* ── FINAL CTA ── */
.cta-section {
  background: var(--terracotta);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
}

.cta-section h2 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  color: white;
  max-width: 620px;
  margin: 0 auto 16px;
  line-height: 1.15;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  margin-bottom: 48px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-form input {
  flex: 1;
  padding: 16px 22px;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  background: rgba(255,255,255,0.2);
  color: white;
  outline: none;
  backdrop-filter: blur(10px);
  transition: background 0.2s;
}

.cta-form input::placeholder { color: rgba(255,255,255,0.6); }
.cta-form input:focus { background: rgba(255,255,255,0.3); }

.btn-white {
  padding: 16px 28px;
  background: white;
  color: var(--terracotta);
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.cta-trust {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 1;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer .logo { color: rgba(255,252,248,0.6); }
footer .logo span { color: rgba(255,252,248,0.3); }

footer p {
  font-size: 13px;
  color: rgba(255,252,248,0.3);
}

footer a {
  font-size: 13px;
  color: rgba(255,252,248,0.4);
  text-decoration: none;
}

footer a:hover { color: rgba(255,252,248,0.7); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SUCCESS STATE ── */
.success-msg {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(122,158,135,0.12);
  border: 1px solid rgba(122,158,135,0.3);
  color: var(--sage);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
}

.success-msg.show { display: flex; }

/* ── LOGO MARK ── */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 34px; height: 34px;
  background: var(--terracotta);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::before {
  content: '';
  position: absolute;
  width: 14px; height: 10px;
  background: white;
  border-radius: 2px;
  top: 8px; left: 10px;
}

.logo-mark::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border: 2px solid white;
  border-radius: 50%;
  bottom: 7px; right: 7px;
}

/* ── PRICING ── */
.pricing {
  background: var(--cream);
  padding: 120px 24px;
}

.pricing-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.pricing-inner h2 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.5px;
  max-width: 500px;
}

.pricing-sub {
  text-align: center;
  font-size: 17px;
  color: var(--ink-muted);
  font-weight: 300;
  margin-bottom: 56px;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  align-items: start;
}

.plan {
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  border: 1.5px solid rgba(42,33,24,0.08);
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.plan:hover {
  box-shadow: 0 8px 40px rgba(42,33,24,0.08);
  transform: translateY(-3px);
}

.plan-featured {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-12px);
  box-shadow: 0 16px 60px rgba(42,33,24,0.2);
}

.plan-featured:hover {
  transform: translateY(-16px);
  box-shadow: 0 20px 70px rgba(42,33,24,0.25);
}

.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}

.plan-featured .plan-name { color: rgba(255,252,248,0.4); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-was {
  font-size: 16px;
  color: var(--ink-faint);
  text-decoration: line-through;
  font-weight: 300;
}

.plan-featured .price-was { color: rgba(255,252,248,0.3); }

.price-num {
  font-family: 'Lora', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -1px;
}

.plan-featured .price-num { color: white; }

.price-period {
  font-size: 15px;
  color: var(--ink-faint);
  font-weight: 300;
}

.plan-featured .price-period { color: rgba(255,252,248,0.45); }

.plan-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(42,33,24,0.07);
}

.plan-featured .plan-desc {
  color: rgba(255,252,248,0.5);
  border-bottom-color: rgba(255,252,248,0.08);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.plan-featured .plan-features li { color: rgba(255,252,248,0.65); }

.check { color: var(--sage); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.check-white { color: var(--sage-light); }
.cross { color: var(--ink-faint); opacity: 0.4; font-size: 13px; flex-shrink: 0; margin-top: 1px; }

.btn-plan-free {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1.5px solid rgba(42,33,24,0.15);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-plan-free:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.btn-plan-premium {
  width: 100%;
  padding: 14px;
  background: var(--terracotta);
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(196,98,58,0.4);
}

.btn-plan-premium:hover {
  background: var(--terra-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(196,98,58,0.5);
}

.plan-founding {
  text-align: center;
  font-size: 12px;
  color: rgba(255,252,248,0.35);
  margin-top: 14px;
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--ink-faint);
  max-width: 580px;
  margin: 48px auto 0;
  line-height: 1.6;
  background: rgba(196,98,58,0.05);
  border: 1px solid rgba(196,98,58,0.12);
  padding: 16px 24px;
  border-radius: 16px;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,33,24,0.6);
  backdrop-filter: blur(6px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal {
  background: white;
  border-radius: 28px;
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  animation: slideUp 0.3s ease;
  box-shadow: 0 24px 80px rgba(42,33,24,0.2);
}

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

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--sand);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 13px;
  cursor: pointer;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover { background: rgba(196,98,58,0.1); color: var(--terracotta); }

.modal-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.modal h3 {
  font-family: 'Lora', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.modal > p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 28px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-form input {
  padding: 14px 20px;
  border: 1.5px solid rgba(42,33,24,0.15);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
}

.modal-form input:focus { border-color: var(--terracotta); }
.modal-form input::placeholder { color: var(--ink-faint); }

.modal-trust {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 16px;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .waitlist-form, .cta-form { flex-direction: column; border-radius: 20px; }
  .waitlist-form input, .cta-form input { border-radius: 100px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .diff-inner { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-3px); }
  footer { flex-direction: column; align-items: flex-start; }
  .modal { padding: 40px 24px 32px; }
}
