:root {
  --navy:    #0A1628;
  --navy2:   #112240;
  --teal:    #0891B2;
  --teal2:   #06B6D4;
  --teal3:   #CFFAFE;
  --green:   #059669;
  --lgreen:  #D1FAE5;
  --orange:  #D97706;
  --lorange: #FEF3C7;
  --red:     #DC2626;
  --lred:    #FEE2E2;
  --white:   #FFFFFF;
  --off:     #F8FAFC;
  --border:  #E2E8F0;
  --text:    #1E293B;
  --text2:   #64748B;
  --r:       16px;
  --rs:      10px;
  --sh:      0 4px 24px rgba(0,0,0,0.08);
  --sh2:     0 16px 48px rgba(0,0,0,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Bricolage Grotesque', sans-serif; }

/* ── NAVBAR ──────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.nav-logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.nav-logo-by {
  font-size: 11px;
  color: var(--text2);
  font-weight: 400;
}

.nav-cta {
  background: var(--navy);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: var(--rs);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.nav-cta:hover { opacity: 0.85; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 60%, #0D2844 100%);
  padding: 80px 24px 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(8,145,178,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(6,182,212,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(8,145,178,0.15);
  border: 1px solid rgba(6,182,212,0.3);
  color: var(--teal2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-title .accent { color: var(--teal2); }
.hero-title .strike {
  text-decoration: line-through;
  color: rgba(255,255,255,0.35);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-stat {}
.hero-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 2px;
}
.hero-stat-num .accent { color: var(--teal2); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); }

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}

/* ── FORM CARD ────────────────────────────────────────────── */
.form-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--sh2);
  position: relative;
  z-index: 2;
  margin-bottom: -40px;
}

.form-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lgreen);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.form-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.form-card-sub {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 22px;
  line-height: 1.55;
}

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

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.form-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--rs);
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--off);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.12);
  background: white;
}

.form-input::placeholder { color: #94A3B8; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: white;
  border: none;
  padding: 14px;
  border-radius: var(--rs);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.2px;
  margin-top: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(8,145,178,0.35); }
.btn-submit:active { transform: translateY(0); }

.btn-submit.loading { pointer-events: none; opacity: 0.7; }

.form-privacy {
  font-size: 11px;
  color: var(--text2);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.form-count {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.form-count-avatars {
  display: flex;
}

.avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid white;
  margin-right: -8px;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: white;
}

.form-count-text { font-size: 12px; color: var(--text2); font-weight: 500; }
.form-count-text strong { color: var(--navy); }

/* ── SPACER (hero bottom) ─────────────────────────────────── */
.hero-bottom { height: 60px; }

/* ── SECTION BASE ─────────────────────────────────────────── */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-tag.orange { background: var(--lorange); color: var(--orange); }
.section-tag.navy { background: #EFF6FF; color: var(--navy); }

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 16px;
  color: var(--text2);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── PROBLEM SECTION ─────────────────────────────────────── */
.problem-section { background: var(--off); }

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

.problem-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--sh);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.problem-card.red::before { background: var(--red); }
.problem-card.orange::before { background: var(--orange); }
.problem-card.teal::before { background: var(--teal); }

.problem-icon { font-size: 28px; margin-bottom: 12px; }
.problem-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.problem-desc { font-size: 13px; color: var(--text2); line-height: 1.65; }

.problem-quote {
  background: var(--navy);
  border-radius: var(--r);
  padding: 32px 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.quote-mark { font-size: 48px; color: var(--teal2); line-height: 1; font-family: Georgia, serif; flex-shrink: 0; margin-top: -8px; }
.quote-text { font-size: 18px; color: white; font-style: italic; font-weight: 300; line-height: 1.65; }
.quote-author { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 8px; }
.quote-author strong { color: rgba(255,255,255,0.7); }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(8,145,178,0.3);
}

.step-icon { font-size: 22px; }
.step-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.step-desc { font-size: 12px; color: var(--text2); line-height: 1.55; }

/* ── FEATURES ─────────────────────────────────────────────── */
.features-section { background: var(--off); }

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

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--sh);
  transition: transform 0.15s, box-shadow 0.15s;
}

.feature-card:hover { transform: translateY(-3px); box-shadow: var(--sh2); }
.feature-card.featured { border-color: var(--teal); background: linear-gradient(145deg, white, #F0FDFF); }

.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: var(--teal3);
}

.feature-icon-wrap.orange { background: var(--lorange); }
.feature-icon-wrap.green { background: var(--lgreen); }
.feature-icon-wrap.red { background: var(--lred); }
.feature-icon-wrap.purple { background: #EDE9FE; }
.feature-icon-wrap.navy { background: #EFF6FF; }

.feature-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.feature-desc { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* ── PRICING ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.price-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.15s;
}

.price-card.featured {
  border-color: var(--teal);
  background: linear-gradient(160deg, white, #F0FDFF);
  position: relative;
  transform: scale(1.03);
}

.price-card:hover { transform: translateY(-3px); }
.price-card.featured:hover { transform: scale(1.03) translateY(-3px); }

.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.price-name { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text2); margin-bottom: 12px; }
.price-amount { font-family: 'Bricolage Grotesque', sans-serif; font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1; }
.price-period { font-size: 13px; color: var(--text2); margin-bottom: 20px; }
.price-free { font-size: 14px; color: var(--green); font-weight: 600; margin-bottom: 8px; }

.price-features { text-align: left; margin-bottom: 24px; }
.price-feature {
  font-size: 13px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.price-feature:last-child { border-bottom: none; }
.price-feature-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.price-feature-x { color: #CBD5E1; font-weight: 700; flex-shrink: 0; }

.btn-price {
  width: 100%;
  padding: 12px;
  border-radius: var(--rs);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  border: 2px solid var(--border);
  background: white;
  color: var(--navy);
  transition: all 0.15s;
}

.btn-price:hover { border-color: var(--teal); color: var(--teal); }
.btn-price.featured { background: linear-gradient(135deg, var(--teal), var(--teal2)); color: white; border-color: transparent; }
.btn-price.featured:hover { opacity: 0.9; }

/* ── SOCIAL PROOF ─────────────────────────────────────────── */
.proof-section { background: var(--navy); }
.proof-section .section-title { color: white; }
.proof-section .section-sub { color: rgba(255,255,255,0.5); }

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

.proof-num {
  text-align: center;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
}

.proof-num-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--teal2);
  line-height: 1;
  margin-bottom: 6px;
}

.proof-num-label { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ── FINAL CTA ────────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  padding: 80px 24px;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.final-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  font-weight: 300;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--navy);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--rs);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.3px;
}

.final-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.25); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px;
  text-align: center;
}

.footer-logo { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 800; color: white; margin-bottom: 6px; }
.footer-by { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.footer-links { display: flex; justify-content: center; gap: 20px; }
.footer-link { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-link:hover { color: var(--teal2); }

/* ── THANK YOU PAGE ───────────────────────────────────────── */
#page-thankyou {
  display: none;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, #0D2844 100%);
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

#page-thankyou.show { display: flex; }

.thankyou-card {
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--sh2);
}

.thankyou-icon { font-size: 56px; margin-bottom: 16px; }
.thankyou-title { font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -0.6px; margin-bottom: 12px; }
.thankyou-sub { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 28px; }

.thankyou-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 24px;
}

.btn-prototype {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--rs);
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.2px;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.btn-prototype:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(8,145,178,0.35); }

.thankyou-note {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.15s;
}

.faq-item:hover { box-shadow: var(--sh); }
.faq-item.open { box-shadow: var(--sh); border-color: var(--teal); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
}

.faq-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  font-family: 'DM Sans', sans-serif;
  margin: 0;
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-a p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav mobile */
  nav { padding: 0 16px; height: 54px; }
  .nav-logo-text { font-size: 15px; }
  .nav-logo-by { display: none; }
  .nav-cta { font-size: 12px; padding: 7px 12px; }

  /* Hero mobile */
  .hero { padding: 40px 16px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-card { margin-bottom: 0; }
  .hero-bottom { height: 20px; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 22px; }
  .hero-title { letter-spacing: -0.8px; }

  /* Sections */
  section { padding: 52px 16px; }

  /* Problem */
  .problem-grid { grid-template-columns: 1fr; }
  .problem-quote { flex-direction: column; gap: 8px; }
  .quote-mark { font-size: 32px; }
  .quote-text { font-size: 15px; }

  /* Steps */
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .steps-grid::before { display: none; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .price-card.featured { transform: none; }

  /* Proof */
  .proof-numbers { grid-template-columns: repeat(2, 1fr); }

  /* Thank you */
  .thankyou-card { padding: 28px 20px; }
  .thankyou-title { font-size: 22px; }

  /* Footer */
  .footer-links { flex-wrap: wrap; gap: 12px; }
}

/* ── ECOSYSTEM FOOTER LINKS ───────────────────────────────── */
.footer-ecosystem-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.15s;
}
.footer-ecosystem-link:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}
