/* ==========================================================================
   Peaks Companion — Landing
   Design tokens sourced from docs/design.md (MongoDB design system reference)
   ========================================================================== */

:root {
  /* Brand & accent */
  --primary: #00ed64;
  --primary-deep: #00b545;
  --primary-pressed: #008c34;
  --on-primary: #001e2b;
  --brand-green: #00ed64;
  --brand-green-dark: #00684a;
  --brand-green-mid: #00a35c;
  --brand-green-soft: #c3f0d2;
  --brand-teal-deep: #001e2b;
  --brand-teal: #003d4f;
  --brand-teal-mid: #00684a;
  --accent-purple: #7b3ff2;
  --accent-orange: #fa6e39;
  --accent-pink: #f06bb8;
  --accent-blue: #3d4f9f;

  /* Surfaces */
  --canvas: #ffffff;
  --canvas-dark: #001e2b;
  --surface: #f9fbfa;
  --surface-soft: #f4f7f6;
  --surface-feature: #e3fcef;
  --hairline: #e1e5e8;
  --hairline-soft: #eceff1;
  --hairline-strong: #c1ccd6;
  --hairline-dark: #1c2d38;

  /* Text */
  --ink: #001e2b;
  --charcoal: #1c2d38;
  --slate: #3d4f5b;
  --steel: #5c6c7a;
  --stone: #7c8c9a;
  --muted: #a8b3bc;
  --on-dark: #ffffff;
  --on-dark-muted: #a8b3bc;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-xxl: 24px;
  --r-full: 9999px;

  /* Spacing */
  --s-xxs: 4px;
  --s-xs: 8px;
  --s-sm: 12px;
  --s-md: 16px;
  --s-lg: 20px;
  --s-xl: 24px;
  --s-xxl: 32px;
  --s-xxxl: 40px;
  --s-section-sm: 48px;
  --s-section: 64px;
  --s-section-lg: 96px;
  --s-hero: 120px;

  /* Elevation (from design.md) */
  --e1: rgba(0, 30, 43, 0.04) 0px 1px 2px 0px;
  --e2: rgba(0, 30, 43, 0.08) 0px 4px 12px 0px;
  --e3: rgba(0, 30, 43, 0.12) 0px 12px 24px -4px;
  --e4: rgba(0, 30, 43, 0.16) 0px 16px 48px -8px;

  --maxw: 1280px;
  --gutter: 32px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'Source Code Pro', 'SF Mono', Menlo, Consolas, monospace;
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation: none !important; transition: none !important; }
}

h1, h2, h3, h4, h5 { margin: 0; font-weight: 500; letter-spacing: -0.5px; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-green-dark);
}
.eyebrow.on-dark { color: var(--brand-green); }

.section { padding-block: var(--s-section-lg); }
.section-head { max-width: 680px; margin-bottom: var(--s-xxl); }
.section-head h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  margin-top: var(--s-sm);
}
.section-head p {
  margin-top: var(--s-md);
  font-size: 18px;
  line-height: 1.5;
  color: var(--slate);
}

/* --------------------------------------------------------------------------
   Buttons (design.md: pill, rounded.full)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Icons (SVG sprite — see #icon-sprite in index.html)
   -------------------------------------------------------------------------- */
.ico {
  width: 1em; height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.ico-fill { fill: currentColor; stroke: none; }
.feature-pill .ck .ico { width: 22px; height: 22px; }
.price-card .feat .ck .ico { width: 16px; height: 16px; }
.wic .ico { width: 28px; height: 28px; }
.count-alert .ico { width: 15px; height: 15px; }
.card.problem .tag .ico { width: 11px; height: 11px; }
.faq-q .chev .ico { width: 16px; height: 16px; }
.phone-body .meta .ico { width: 14px; height: 14px; }
.promo-banner .ico { width: 15px; height: 15px; }
.itin-detail .route .ico { width: 16px; height: 16px; color: var(--brand-green); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-xs);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  padding: 12px 24px;
  border-radius: var(--r-full);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary { background: var(--brand-green); color: var(--on-primary); box-shadow: var(--e1); }
.btn-primary:hover { background: var(--primary-deep); box-shadow: 0 6px 20px rgba(0,237,100,.35); transform: translateY(-2px); }
.btn-primary:active { background: var(--primary-pressed); }

.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--hairline-strong); }
.btn-secondary:hover { border-color: var(--ink); }

.btn-on-dark { background: var(--brand-green); color: var(--on-primary); }
.btn-on-dark:hover { background: var(--primary-deep); box-shadow: 0 6px 24px rgba(0,237,100,.4); transform: translateY(-2px); }

.btn-secondary-on-dark { background: transparent; color: var(--on-dark); border: 1px solid var(--hairline-dark); }
.btn-secondary-on-dark:hover { border-color: var(--on-dark); }

.btn-lg { padding: 15px 30px; font-size: 18px; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   Badges
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  margin-bottom: 4px;
  border-radius: var(--r-full);
}
.badge-soft { background: var(--brand-green-soft); color: var(--brand-green-dark); }
.badge-popular { background: var(--brand-teal-deep); color: var(--brand-green); }
.badge-dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: var(--r-full);
  background: currentColor;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.promo-banner {
  background: var(--brand-teal-deep);
  color: var(--on-dark);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
}
.promo-banner strong { color: var(--brand-green); }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled { border-bottom-color: var(--hairline); box-shadow: var(--e1); }
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 17px; }
.brand .logo {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--brand-teal-deep);
  border-radius: var(--r-md);
}
.brand .logo svg { width: 18px; height: 18px; }
.nav-links { display: flex; align-items: center; gap: var(--s-xl); }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--slate); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: var(--s-md); }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: var(--r-md); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; transition: .25s; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--brand-teal-deep);
  color: var(--on-dark);
  padding-block: var(--s-hero) var(--s-section-lg);
  overflow: hidden;
}
/* real mountain photo behind the gradient */
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .28;
  filter: saturate(.9);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(60% 60% at 80% 10%, rgba(0,163,92,.35), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(0,30,43,.85), transparent 60%),
    linear-gradient(180deg, rgba(0,30,43,.55) 0%, rgba(0,30,43,.78) 100%);
  pointer-events: none;
}
/* mouse-follow glow */
.hero-glow {
  position: absolute;
  width: 1100px; height: 1100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,237,100,.10) 0%, rgba(0,237,100,.04) 40%, transparent 72%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity .6s ease;
  opacity: 0;
  z-index: 1;
}
/* parallax mountain ridges */
.ridge { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; pointer-events: none; z-index: 1; }
.ridge svg { width: 100%; height: auto; }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s-section); align-items: center; }
.hero-copy h1 {
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}
.hero-copy h1 .hl { color: var(--brand-green); }
.hero-sub {
  margin-top: var(--s-xl);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
  color: var(--on-dark-muted);
  max-width: 520px;
}
.hero-actions { margin-top: var(--s-xxl); display: flex; gap: var(--s-md); flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: var(--s-md); font-size: 13px; color: var(--on-dark-muted); }
.hero-stats { margin-top: var(--s-section-sm); display: flex; gap: var(--s-section); }
.hero-stats .stat .num { font-size: 32px; font-weight: 600; color: var(--on-dark); letter-spacing: -1px; }
.hero-stats .stat .lbl { font-size: 13px; color: var(--on-dark-muted); margin-top: 2px; }

/* Phone mockup */
.hero-mock { position: relative; display: grid; place-items: center; }
.phone {
  position: relative;
  width: 300px;
  background: var(--brand-teal-mid);
  border-radius: var(--r-xxl);
  padding: 14px;
  box-shadow: var(--e4);
  border: 1px solid rgba(255,255,255,.08);
}
.phone-screen { background: var(--canvas); border-radius: 18px; overflow: hidden; }
.phone-status { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px 8px; font-size: 11px; color: var(--steel); }
.phone-status .dots { display: flex; gap: 4px; }
.phone-status .dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--hairline-strong); }
.phone-body { padding: 0 14px 16px; }
.phone-title { font-size: 15px; font-weight: 600; color: var(--ink); }
.phone-title small { display: block; font-size: 11px; font-weight: 500; color: var(--brand-green-dark); margin-top: 2px; }
.mock-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  margin-top: 10px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--surface);
}
.mock-row .ic { width: 30px; height: 30px; border-radius: var(--r-sm); display: grid; place-items: center; color: var(--on-dark); flex: none; }
.mock-row .tx { flex: 1; min-width: 0; }
.mock-row .tx b { font-size: 12px; font-weight: 600; color: var(--ink); display: block; }
.mock-row .tx span { font-size: 11px; color: var(--steel); }
.mock-row .meta { font-size: 11px; font-weight: 600; }
.float-card {
  position: absolute;
  background: var(--canvas);
  border-radius: var(--r-lg);
  padding: 12px 14px;
  box-shadow: var(--e3);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--hairline);
}
.float-card b { color: var(--ink); }
.float-card.c1 { top: 6%; left: -8%; }
.float-card.c2 { bottom: 10%; right: -10%; }
.float-card .pin { width: 28px; height: 28px; border-radius: var(--r-sm); display: grid; place-items: center; color: var(--on-dark); }

/* logo strip */
.trust { padding-block: var(--s-section); border-bottom: 1px solid var(--hairline); }
.trust p { text-align: center; font-size: 13px; font-weight: 500; color: var(--stone); margin-bottom: var(--s-lg); }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s-section); }
.trust-row span { font-size: 18px; font-weight: 600; color: var(--muted); }

/* --------------------------------------------------------------------------
   Generic cards / reveal
   -------------------------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-xl); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-section); align-items: center; }

.card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-xxl);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--e2); border-color: var(--hairline-strong); }
.card .ic-tile {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: var(--s-md);
}
.card h3 { font-size: 18px; font-weight: 600; line-height: 1.35; }
.card p { margin-top: var(--s-xs); font-size: 14px; color: var(--slate); line-height: 1.5; }

.card.problem { background: var(--surface); }
.card.problem .quote { font-size: 17px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.card.problem .ctx { margin-top: var(--s-sm); font-size: 14px; color: var(--steel); }
.card.problem .tag { color: var(--accent-orange); font-weight: 600; font-size: 13px; }

/* reveal animation */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* --------------------------------------------------------------------------
   Phases (interactive tabs)
   -------------------------------------------------------------------------- */
.phases { background: var(--surface-soft); }
.phase-tabs { display: inline-flex; gap: 4px; padding: 4px; background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-full); margin-bottom: var(--s-xxl); }
.phase-tab {
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: 14px; font-weight: 600;
  color: var(--steel);
  transition: .2s;
}
.phase-tab.active { background: var(--brand-teal-deep); color: var(--on-dark); }
.phase-panel { display: none; }
.phase-panel.active { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.phase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-md); }
.feature-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  font-size: 14px; font-weight: 500;
  transition: .2s;
}
.feature-pill:hover { border-color: var(--brand-green); box-shadow: var(--e1); }
.feature-pill .ck { width: 42px; height: 42px; border-radius: 50%; background: var(--brand-green-soft); color: var(--brand-green-dark); display: grid; place-items: center; flex: none; }

/* --------------------------------------------------------------------------
   Interactive widgets band
   -------------------------------------------------------------------------- */
.widgets { background: var(--brand-teal-deep); color: var(--on-dark); }
.widgets .section-head h2 { color: var(--on-dark); }
.widgets .section-head p { color: var(--on-dark-muted); }
.widget-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s-xl); }
.widget {
  background: var(--brand-teal);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-xl);
  padding: var(--s-xl);
}
.widget h4 { font-size: 16px; font-weight: 600; color: var(--on-dark); display: flex; align-items: center; gap: 10px; }
.widget h4 .wic { width: 42px; height: 42px; border-radius: var(--r-sm); display: grid; place-items: center; background: rgba(0,237,100,.15); color: var(--brand-green); }
.widget .sub { font-size: 13px; color: var(--on-dark-muted); margin-top: 4px; }

/* expense splitter */
.split-out { margin-top: var(--s-lg); display: flex; align-items: baseline; gap: 10px; }
.split-out .big { font-size: 44px; font-weight: 600; color: var(--brand-green); letter-spacing: -1.5px; }
.split-out .small { font-size: 14px; color: var(--on-dark-muted); }
.split-ctrl { margin-top: var(--s-md); }
.split-ctrl label { display: flex; justify-content: space-between; font-size: 13px; color: var(--on-dark-muted); margin-bottom: 8px; }
.split-ctrl label b { color: var(--on-dark); }
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: var(--r-full);
  background: var(--hairline-dark);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-green);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(0,237,100,.2);
}
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border: none; border-radius: 50%; background: var(--brand-green); cursor: pointer; }

/* packing checklist */
.check-list { margin-top: var(--s-md); display: grid; gap: 8px; }
.check-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-md);
  font-size: 14px; color: var(--on-dark);
  cursor: pointer; user-select: none;
  transition: .2s;
}
.check-item .box { width: 20px; height: 20px; border-radius: var(--r-xs); border: 1.5px solid var(--steel); display: grid; place-items: center; flex: none; transition: .2s; }
.check-item .box svg { width: 12px; height: 12px; opacity: 0; transform: scale(.5); transition: .2s; color: var(--on-primary); }
.check-item.done { color: var(--on-dark-muted); }
.check-item.done .box { background: var(--brand-green); border-color: var(--brand-green); }
.check-item.done .box svg { opacity: 1; transform: none; }
.check-item.done .txt { text-decoration: line-through; }
.progress { margin-top: var(--s-md); height: 8px; border-radius: var(--r-full); background: var(--hairline-dark); overflow: hidden; }
.progress span { display: block; height: 100%; width: 0; background: var(--brand-green); border-radius: var(--r-full); transition: width .4s ease; }
.progress-lbl { font-size: 12px; color: var(--on-dark-muted); margin-top: 8px; }

/* permit countdown */
.count-row { margin-top: var(--s-lg); display: flex; gap: var(--s-sm); }
.count-cell { flex: 1; text-align: center; background: rgba(0,0,0,.25); border-radius: var(--r-md); padding: 14px 8px; }
.count-cell .n { font-size: 30px; font-weight: 600; color: var(--brand-green); letter-spacing: -1px; font-variant-numeric: tabular-nums; }
.count-cell .u { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--on-dark-muted); margin-top: 4px; }
.count-alert { margin-top: var(--s-md); display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--brand-green); background: rgba(0,237,100,.1); border-radius: var(--r-md); padding: 10px 12px; }

/* itinerary */
.itin { margin-top: var(--s-md); }
.itin-track { display: flex; gap: 6px; }
.itin-day {
  flex: 1; text-align: center;
  padding: 10px 4px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--hairline-dark);
  cursor: pointer; transition: .2s;
}
.itin-day .d { font-size: 10px; text-transform: uppercase; letter-spacing: .5px; color: var(--on-dark-muted); }
.itin-day .k { font-size: 13px; font-weight: 600; color: var(--on-dark); margin-top: 2px; }
.itin-day.active { background: var(--brand-green); border-color: var(--brand-green); }
.itin-day.active .d, .itin-day.active .k { color: var(--on-primary); }
.itin-detail { margin-top: var(--s-md); background: rgba(0,0,0,.2); border-radius: var(--r-md); padding: 16px; }
.itin-detail .route { font-size: 18px; font-weight: 600; color: var(--on-dark); }
.itin-detail .stats { margin-top: 8px; display: flex; gap: var(--s-lg); font-size: 13px; color: var(--on-dark-muted); }
.itin-detail .stats b { color: var(--brand-green); }

/* --------------------------------------------------------------------------
   App gallery carousel
   -------------------------------------------------------------------------- */
.app-gallery { background: var(--surface-soft); }
.carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--r-xl);
}
.carousel-track {
  display: flex;
  width: 100%;
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  max-height: 800px;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-lg);
  display: block;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-xl);
  margin-top: var(--s-xl);
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  transition: .2s;
  flex: none;
}
.carousel-btn:hover { background: var(--surface); border-color: var(--brand-green); color: var(--brand-green); }
.carousel-btn:active { transform: scale(.95); }
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hairline-strong);
  cursor: pointer;
  transition: .2s;
  border: 1px solid transparent;
}
.carousel-dot.active {
  background: var(--brand-green);
  width: 24px;
  border-radius: var(--r-full);
}
.carousel-dot:hover { background: var(--brand-green-mid); }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials { background: var(--canvas); }
.tcard {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-xxl);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--e2); }
.tcard .stars { display: flex; gap: 2px; color: var(--brand-green-mid); margin-bottom: var(--s-md); }
.tcard .stars .ico { width: 16px; height: 16px; }
.tcard blockquote { margin: 0; font-size: 16px; line-height: 1.6; color: var(--charcoal); flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: var(--s-xl); }
.tcard .who img {
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 1px solid var(--hairline);
}
.tcard .who b { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.tcard .who span { font-size: 13px; color: var(--steel); }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing { background: var(--surface); }
.price-wrap { max-width: 460px; margin-inline: auto; }
.price-card {
  background: var(--surface-feature);
  border: 2px solid var(--brand-green);
  border-radius: var(--r-lg);
  padding: var(--s-xxl);
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,237,100,.12);
}
.price-card .badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); }
.price-card h3 { font-size: 22px; font-weight: 600; }
.price-card .amt { margin-top: var(--s-md); font-size: 64px; font-weight: 600; letter-spacing: -2px; line-height: 1; }
.price-card .amt small { font-size: 18px; font-weight: 500; color: var(--steel); }
.price-card .terms { font-size: 14px; color: var(--steel); margin-top: var(--s-xs); }
.price-card .feat { margin-top: var(--s-xl); display: grid; gap: 12px; text-align: left; }
.price-card .feat li { display: flex; gap: 10px; font-size: 14px; color: var(--charcoal); }
.price-card .feat .ck { color: var(--brand-green-dark); flex: none; }
.price-card .btn { margin-top: var(--s-xl); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-md);
  padding: var(--s-xl) 0;
  font-size: 18px; font-weight: 500; color: var(--ink);
}
.faq-q .chev { flex: none; transition: transform .3s ease; color: var(--steel); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding-bottom: var(--s-xl); font-size: 15px; color: var(--slate); line-height: 1.6; }

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.cta-band { padding-block: var(--s-section-lg); }
.cta-inner {
  background: var(--brand-teal-deep);
  border-radius: var(--r-xxl);
  padding: var(--s-section-lg) var(--s-section);
  text-align: center;
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(0,237,100,.2), transparent 70%);
  pointer-events: none;
}
.cta-inner h2 { position: relative; font-size: clamp(28px, 4vw, 48px); line-height: 1.15; }
.cta-inner p { position: relative; margin-top: var(--s-md); font-size: 18px; color: var(--on-dark-muted); }
.cta-inner .btn { position: relative; margin-top: var(--s-xl); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--brand-teal-deep); color: var(--on-dark); padding: var(--s-section) 0 var(--s-xl); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s-xl); padding-bottom: var(--s-section); border-bottom: 1px solid var(--hairline-dark); }
.footer .brand { color: var(--on-dark); margin-bottom: var(--s-md); }
.footer-blurb { font-size: 14px; color: var(--on-dark-muted); max-width: 280px; }
.footer h5 { font-size: 14px; font-weight: 600; color: var(--on-dark); margin-bottom: var(--s-md); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--on-dark-muted); transition: color .15s; }
.footer-links a:hover { color: var(--on-dark); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--s-lg); font-size: 13px; color: var(--on-dark-muted); }

/* --------------------------------------------------------------------------
   Modal (email capture — fake door)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 30, 43, .6);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  padding: var(--s-lg);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--canvas);
  border-radius: var(--r-xl);
  padding: var(--s-xxl);
  max-width: 440px; width: 100%;
  box-shadow: var(--e4);
  transform: translateY(16px) scale(.98);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.modal-overlay.open .modal { transform: none; }
.modal .close { position: absolute; }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; }
.modal h3 { font-size: 24px; font-weight: 600; line-height: 1.2; max-width: 320px; }
.modal .x { width: 32px; height: 32px; border-radius: var(--r-md); color: var(--steel); display: grid; place-items: center; }
.modal .x:hover { background: var(--surface); }
.modal p { margin-top: var(--s-md); font-size: 15px; color: var(--slate); line-height: 1.5; }
.modal form { margin-top: var(--s-xl); display: flex; flex-direction: column; gap: var(--s-sm); }
.modal input[type="email"] {
  width: 100%; height: 48px;
  padding: 0 16px;
  font-size: 16px; font-family: inherit;
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.modal input[type="email"]:focus { border-color: var(--brand-green-dark); box-shadow: 0 0 0 3px rgba(0,104,74,.12); }
.modal .form-error { font-size: 13px; color: #c0392b; margin-top: var(--s-xs); }
.modal .btn[disabled] { opacity: .6; pointer-events: none; }
.modal .fineprint { margin-top: var(--s-md); font-size: 12px; color: var(--stone); text-align: center; }
.modal-success { text-align: center; padding: var(--s-md) 0; display: none; }
.modal-success.show { display: block; animation: fadeUp .4s ease; }
.modal-success .tick { width: 64px; height: 64px; margin: 0 auto var(--s-md); border-radius: 50%; background: var(--brand-green-soft); color: var(--brand-green-dark); display: grid; place-items: center; }
.modal-form.hide { display: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-section); }
  .hero-mock { order: -1; }
  .phase-grid { grid-template-columns: repeat(2, 1fr); }
  .widget-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  :root { --gutter: 20px; --s-section-lg: 64px; --s-hero: 72px; }
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-md);
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--canvas); padding: var(--s-lg) var(--gutter);
    border-bottom: 1px solid var(--hairline); box-shadow: var(--e2);
  }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: var(--s-xxl); }
  .phase-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: var(--s-xl); }
  .hero-stats .stat .num { font-size: 26px; }
  .float-card { display: none; }
  .count-cell .n { font-size: 24px; }
  .price-card .amt { font-size: 52px; }
  .cta-inner { padding: var(--s-section) var(--s-lg); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s-xl); }
  .footer-bottom { flex-direction: column; gap: var(--s-xs); text-align: center; }
  .itin-day .k { font-size: 11px; }
  .carousel-dot:not(.active) { display: none; }
  .carousel-dot.active { width: 8px; border-radius: 50%; }
}
