:root {
  --bg: #0a0a0f;
  --bg-soft: #121722;
  --panel: rgba(22, 26, 38, 0.62);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #eef3ff;
  --text-soft: #b6c3da;
  --accent-blue: #4facfe;
  --accent-gold: #f5a623;
  --accent-gold-2: #f8c052;
  --danger: #f87171;
  --success: #34d399;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 10%, #1a2536 0%, var(--bg) 50%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.brand-font {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem;
  transition: 0.25s ease;
}

.site-nav.scrolled .nav-shell {
  background: rgba(10, 13, 21, 0.86);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.nav-shell {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  backdrop-filter: blur(14px);
}

.nav-link {
  color: var(--text-soft);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  outline: none;
}

.mobile-menu {
  display: none;
}

.mobile-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  border-radius: 10px;
  width: 40px;
  height: 40px;
}

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.section-tight {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 15, 0.45) 0%, rgba(10, 10, 15, 0.92) 92%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 7rem 1rem 4rem;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.03;
  margin: 0 0 1rem;
}

.hero-subtitle {
  color: #d8e2f4;
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin: 0 0 2rem;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  color: #dce8ff;
  background: rgba(8, 12, 22, 0.56);
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.78rem 1.2rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(110deg, var(--accent-gold), var(--accent-gold-2));
  color: #11131c;
}

.btn-secondary {
  background: linear-gradient(110deg, #4facfe, #39d2ff);
  color: #09101f;
}

.btn-ghost {
  color: #eef3ff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-ghost:focus-visible {
  transform: translateY(-1px);
  opacity: 0.95;
  outline: none;
}

.glass-panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.grid-auto {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.quote-bg {
  font-size: clamp(2rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  margin: 0;
}

.timeline-pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  color: #d4e0f5;
}

.phone-mock {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  padding: 0.55rem;
  background: #0e1320;
}

.phone-inner {
  border-radius: 22px;
  min-height: 320px;
  background: linear-gradient(155deg, #173860, #251f3a);
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 1.2rem;
  font-weight: 700;
}

.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.form-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: #d9e5fb;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 10, 18, 0.74);
  color: #f6f8ff;
  padding: 0.68rem 0.8rem;
  font-family: inherit;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 2px solid rgba(79, 172, 254, 0.5);
  border-color: rgba(79, 172, 254, 0.9);
}

.form-error,
.form-success {
  border-radius: 12px;
  padding: 0.8rem;
  font-size: 0.9rem;
}

.form-error {
  background: rgba(248, 113, 113, 0.16);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #fecaca;
}

.form-success {
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.45);
  color: #bbf7d0;
}

.form-success a,
.form-error a {
  color: #bae6fd;
  text-decoration: underline;
}

.modal-root {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 16, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
  padding: 1rem;
}

.modal-root.open {
  display: flex;
}

.modal-card {
  width: min(520px, 100%);
  padding: 1.2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  animation: floatY 1.4s ease-in-out infinite;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 7, 13, 0.8);
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.footer-link {
  color: var(--text-soft);
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #fff;
  outline: none;
}

.utility-muted {
  color: var(--text-soft);
}

.hidden {
  display: none !important;
}

@keyframes floatY {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: none;
    padding-top: 0.75rem;
  }

  .mobile-menu.open {
    display: block;
  }

  .hero-content {
    padding-top: 6.5rem;
  }
}

@media (max-width: 640px) {
  form[data-api] {
    font-size: 0.98rem;
  }

  form[data-api] .grid {
    gap: 0.9rem;
  }

  form[data-api] .form-input,
  form[data-api] .form-select,
  form[data-api] .form-textarea {
    padding: 0.8rem 0.85rem;
  }

  form[data-api] .form-textarea {
    min-height: 150px;
  }
}

/* Honeypot anti-spam field: visually hidden, kept out of tab order and a11y tree.
   Real users never see or fill it; bots that auto-fill inputs get silently dropped. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Homepage refresh: local, CDN-free layout and conversion styling. */
.home-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(79, 172, 254, 0.18), transparent 34rem),
    radial-gradient(circle at 82% 18%, rgba(245, 166, 35, 0.12), transparent 30rem),
    linear-gradient(180deg, #050914 0%, #08101d 48%, #05070d 100%);
  color: var(--text);
  overflow-x: hidden;
}

.nav-row,
.nav-actions,
.footer-top,
.modal-head,
.center-row {
  display: flex;
  align-items: center;
}

.nav-row,
.footer-top,
.modal-head {
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Sora', sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark span {
  color: var(--accent-gold);
}

.brand-mark em {
  color: var(--text-soft);
  font-style: normal;
  font-size: 0.78em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-actions {
  gap: 0.55rem;
}

.btn-small {
  padding: 0.62rem 0.95rem;
  font-size: 0.88rem;
}

.homepage-hero {
  position: relative;
  min-height: 100vh;
  padding: 8.5rem 1rem 3rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(22px);
  pointer-events: none;
  opacity: 0.42;
}

.hero-glow-blue {
  top: 7rem;
  right: -10rem;
  background: rgba(79, 172, 254, 0.2);
}

.hero-glow-gold {
  left: -14rem;
  bottom: 8rem;
  background: rgba(245, 166, 35, 0.12);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.hero-copy {
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 172, 254, 0.65);
  color: #d8ebff;
  background: rgba(79, 172, 254, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title-v3 {
  margin: 1.2rem 0 1rem;
  font-family: 'Sora', sans-serif;
  font-size: clamp(3rem, 7vw, 6.3rem);
  font-weight: 900;
  line-height: 0.98;
  animation: fadeUp 0.75s ease both;
}

.hero-sub {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 1.55vw, 1.28rem);
}

.hero-positioning {
  max-width: 760px;
  margin: 0.85rem 0 0;
  color: rgba(214, 226, 246, 0.68);
  font-size: 0.98rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  transform: translateY(-1px);
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.trust-strip div,
.proof-logos span,
.dashboard-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(14px);
}

.trust-strip div {
  border-radius: 18px;
  padding: 1rem;
}

.trust-strip dt {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
}

.trust-strip dd {
  margin: 0.2rem 0 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  padding: 0.7rem;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.hero-visual img {
  object-fit: cover;
  border-radius: 14px;
}

.visual-proof-grid {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  z-index: 2;
}

.visual-proof-grid span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(8, 13, 24, 0.68);
  color: #dce8ff;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 0.55rem 0.35rem;
  backdrop-filter: blur(10px);
}

.dashboard-card {
  position: absolute;
  display: grid;
  gap: 0.15rem;
  border-radius: 16px;
  padding: 0.85rem 1rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.dashboard-card span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.dashboard-card-top {
  top: 1.6rem;
  left: 1.6rem;
}

.dashboard-card-bottom {
  right: 1.6rem;
  bottom: 1.6rem;
}

.proof-logos {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(1200px, 100%);
  margin: 2.2rem auto 0;
}

.proof-logos span {
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: rgba(236, 244, 255, 0.78);
  text-align: center;
  font-size: 0.9rem;
}

.scroll-tip {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.4rem;
  transform: translateX(-50%);
  animation: floatY 1.4s ease-in-out infinite;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 2rem;
}

.section-title {
  margin: 0.75rem 0 0.9rem;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 900;
  line-height: 1.08;
}

.section-sub {
  max-width: 860px;
  color: rgba(226, 235, 250, 0.68);
}

.feature-grid,
.audience-grid,
.metric-grid {
  gap: 1rem;
}

.feature-card,
.entry-card,
.flow-step,
.metric-card {
  padding: 1.35rem;
}

.feature-card h3,
.entry-card h3,
.flow-step h3 {
  margin: 0.4rem 0 0.45rem;
  font-size: 1.25rem;
}

.feature-card p,
.entry-card p,
.flow-step p,
.metric-card p {
  margin: 0;
  color: var(--text-soft);
}

.feature-icon {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(245, 166, 35, 0.16));
  font-size: 1.35rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.program-panel {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.lead-text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
  font-weight: 700;
}

.timeline-list {
  position: relative;
  margin: 1.25rem 0;
  padding-left: 1.8rem;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 0.47rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 2px;
  background: linear-gradient(#4facfe, #f5a623);
}

.timeline-list li {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.timeline-list li::marker {
  color: #4facfe;
}

.route-map {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 22%, rgba(79, 172, 254, 0.2), transparent 18rem),
    radial-gradient(circle at 72% 70%, rgba(245, 166, 35, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.055);
}

.route-map::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 5rem 5rem;
}

.map-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(79, 172, 254, 0.8), rgba(245, 166, 35, 0.7));
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(79, 172, 254, 0.45);
}

.line-1 { left: 18%; top: 34%; width: 28%; transform: rotate(14deg); }
.line-2 { left: 40%; top: 42%; width: 32%; transform: rotate(-12deg); }
.line-3 { left: 25%; top: 64%; width: 42%; transform: rotate(-8deg); }
.line-4 { left: 55%; top: 60%; width: 26%; transform: rotate(22deg); }

.map-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.2rem;
  min-height: 2rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: #4facfe;
  color: #04101f;
  box-shadow: 0 0 0 8px rgba(79, 172, 254, 0.16);
  font-size: 0.76rem;
  font-weight: 800;
}

.map-node.gold {
  background: #f5a623;
  box-shadow: 0 0 0 8px rgba(245, 166, 35, 0.18);
}

.node-1 { left: 13%; top: 28%; }
.node-2 { left: 36%; top: 39%; }
.node-3 { left: 67%; top: 28%; }
.node-4 { left: 20%; top: 60%; }
.node-5 { left: 48%; top: 62%; }
.node-6 { left: 72%; top: 56%; }
.node-7 { left: 78%; top: 18%; }

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.flow-step span {
  display: inline-flex;
  color: var(--accent-gold);
  font-family: 'Sora', sans-serif;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.entry-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.entry-card:hover,
.entry-card:focus-within {
  border-color: rgba(79, 172, 254, 0.4);
  transform: translateY(-6px);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--accent-gold);
  font-weight: 800;
}

.app-section {
  text-align: center;
}

.app-section .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

.phone-mock {
  width: min(100%, 230px);
  height: 430px;
  margin: 0 auto;
  padding: 12px;
  border: 2px solid rgba(79, 172, 254, 0.3);
  border-radius: 36px;
  background: #0d1117;
  box-shadow: 0 0 40px rgba(79, 172, 254, 0.1), inset 0 0 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.phone-raised {
  transform: translateY(-1.4rem);
}

.phone-screen {
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #0f1724, #0b1220);
}

.phone-status,
.phone-topbar,
.phone-body,
.tabbar {
  padding: 0.75rem 0.9rem;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  color: #cbd5e1;
  font-size: 0.72rem;
}

.phone-topbar {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
}

.phone-body {
  display: grid;
  flex: 1;
  gap: 0.55rem;
  align-content: start;
  color: #e2e8f0;
  font-size: 0.72rem;
}

.mini-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
}

.success-chip {
  border-color: rgba(52, 211, 153, 0.36);
  color: #bbf7d0;
}

.danger-chip {
  border-color: rgba(248, 113, 113, 0.36);
  color: #fecaca;
}

.tabbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #94a3b8;
  font-size: 0.65rem;
  text-align: center;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.metric-card {
  text-align: center;
}

.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
}

.final-cta {
  text-align: center;
}

.final-cta-card {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.center-row {
  justify-content: center;
}

.footer-top {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  padding: 2rem 0;
}

.footer-grid h3 {
  margin: 0 0 0.7rem;
}

.footer-brand {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
}

.footer-legal {
  font-size: 0.9rem;
}

.footer-legal span {
  display: inline-block;
  margin-left: 0.5rem;
}

.modal-head h2 {
  margin: 0;
  font-size: 1.5rem;
}

.form-submit,
.modal-card .form-success {
  margin-top: 0.75rem;
}

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

@media (max-width: 1040px) {
  .hero-layout,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
    transform: none;
  }

  .hero-visual picture,
  .hero-visual img {
    min-height: 400px;
  }

  .visual-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip,
  .proof-logos,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-menu.open {
    display: grid;
    gap: 0.35rem;
  }

  .homepage-hero {
    padding-top: 7.5rem;
  }

  .phone-grid {
    grid-template-columns: 1fr;
  }

  .phone-raised {
    transform: none;
  }
}

@media (min-width: 921px) {
  .mobile-toggle {
    display: none;
  }
}

@media (max-width: 640px) {
  .homepage-hero {
    padding: 7rem 1rem 2.5rem;
  }

  .hero-title-v3 {
    font-size: clamp(2.6rem, 15vw, 4.2rem);
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary,
  .hero-cta .btn-outline,
  .final-cta .btn-primary,
  .final-cta .btn-secondary,
  .final-cta .btn-ghost {
    width: 100%;
  }

  .trust-strip,
  .proof-logos,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-visual picture,
  .hero-visual img {
    min-height: 320px;
  }

  .dashboard-card {
    position: static;
    margin: 0.65rem;
  }

  .route-map {
    min-height: 360px;
  }

  .map-node {
    min-width: 0;
    font-size: 0.66rem;
  }

  .footer-legal span {
    display: block;
    margin-left: 0;
    margin-top: 0.3rem;
  }
}

.peak-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 9, 20, 0.08) 0%, rgba(4, 9, 20, 0.2) 46%, rgba(4, 9, 20, 0.62) 100%),
    var(--peak-photo, linear-gradient(145deg, var(--peak-sky, #10243f), #06101f 62%, #030712));
  background-size: cover;
  background-position: var(--peak-position, center);
  transition: transform .45s ease;
}

.peak-visual-wide {
  height: 230px;
  min-height: 230px;
}

.peak-visual::before,
.peak-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.peak-visual::before {
  inset: 0;
  background: radial-gradient(circle at 74% 16%, rgba(255, 216, 126, 0.32), transparent 18%);
  mix-blend-mode: screen;
}

.peak-visual::after {
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(4,9,20,.58) 100%);
  box-shadow: inset 0 -90px 90px rgba(4,9,20,.5), inset 0 0 0 1px rgba(255,255,255,.04);
}

.peak-everest { --peak-photo: url('https://images.unsplash.com/photo-1454496522488-7a8e488e8606?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
.peak-kilimanjaro { --peak-photo: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
.peak-denali { --peak-photo: url('https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
.peak-aconcagua { --peak-photo: url('https://images.unsplash.com/photo-1477346611705-65d5c2f15df8?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
.peak-vinson { --peak-photo: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
.peak-elbrus { --peak-photo: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
.peak-puncak-jaya { --peak-photo: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
.peak-k2 { --peak-photo: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
.peak-kangchenjunga { --peak-photo: url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
.peak-lhotse { --peak-photo: url('https://images.unsplash.com/photo-1549880338-65ddcdfd017b?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
.peak-makalu { --peak-photo: url('https://images.unsplash.com/photo-1493246507139-91e8fad9978e?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
.peak-cho-oyu { --peak-photo: url('https://images.unsplash.com/photo-1434394354979-a235cd36269d?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
.peak-dhaulagiri { --peak-photo: url('https://images.unsplash.com/photo-1486870591958-9b9d0d1dda99?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
.peak-manaslu { --peak-photo: url('https://images.unsplash.com/photo-1518272840991-0f9a865d6d1f?auto=format&fit=crop&w=1200&q=80'); --peak-position: center; }
