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

:root {
  --bg: #151717;
  --bg-card: #1c1c2e;
  --bg-card-light: #23233a;
  --accent: #E8F500;
  --white: #ffffff;
  --gray-100: #e0e0e6;
  --gray-300: #a0a0b0;
  --gray-500: #6a6a7e;
  --gray-700: #3a3a50;
  --gray-media: #6b6b78;
  --gray-panel: #4A5155;
  --gray-panel-dark: #313437;
  --radius: 12px;
  --radius-sm: 8px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── HERO SECTION (full viewport) ────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin-top: -80px; /* pull up so hero sits under sticky nav */
  display: flex;
  overflow: hidden;
  background: var(--bg);
}

.hero-left {
  position: relative;
  width: 60%;
  min-height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px 0 48px;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 58% 100%, 0 100%);
}

.hero-right {
  position: absolute;
  top: 0;
  right: 0;
  left: -28%;
  bottom: 0;
  min-height: 100vh;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 48px 40px;
  background: #2C2F33;
}

/* Hero video: scale container so we see more of the frame (less zoomed) */
.hero-right video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

/* Hero scroll-down indicator */
.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0.45;
  transition: opacity 0.2s ease;
}
.hero-scroll-indicator:hover {
  opacity: 0.75;
}
.hero-scroll-indicator svg {
  display: block;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* sticky header overlaid on hero */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: #000;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .slash {
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-phone {
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
}

.nav-phone span {
  color: var(--accent);
  font-weight: 600;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  color: inherit;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.nav-contact-wrap {
  text-align: right;
}

/* Desktop: show CTA, hide hamburger */
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #0d0d0d;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
}
.nav-cta .btn-label { padding: 6px 16px; }
.nav-cta .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 100%;
  border-left: 1px solid rgba(13, 13, 13, .2);
  padding: 6px 0;
  font-size: 16px;
  font-weight: 300;
}
.nav-cta:hover { filter: brightness(1.05); }

.hamburger { display: none; }

/* Mobile menu overlay (shown only on mobile via media query) */
.nav-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
  display: none;
}
.nav-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: flex;
}
.nav-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 280px;
}
.nav-menu-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  width: 100%;
}
.nav-menu-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  font-size: 17px;
  font-weight: 500;
  color: var(--gray-100);
  transition: color .2s, background .2s;
  border-radius: var(--radius-sm);
  -webkit-tap-highlight-color: transparent;
}
.nav-menu-links a:hover,
.nav-menu-links a:active { color: var(--accent); }
.nav-menu-links a:active { background: rgba(255,255,255,.06); }
.nav-menu .nav-cta {
  margin-top: 8px;
  font-size: 13px;
}
.nav-menu .nav-cta .btn-label { padding: 12px 24px; }
.nav-menu .nav-cta .btn-icon {
  width: 44px;
  padding: 12px 0;
  font-size: 18px;
}

@media (min-width: 769px) {
  .nav-menu { display: none !important; }
}

/* Hamburger to X when open */
.hamburger {
  transition: transform .2s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.hamburger span {
  transition: transform .2s, opacity .2s;
}

/* hero heading */
.hero-title {
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 28px;
  color: #fdfdfd;
}

.hero-title .highlight, .highlight {
  color: var(--accent);
}

.hero-text {
  font-size: 16px;
  color: var(--white);
  max-width: 380px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #0d0d0d;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
}

.btn-cta .btn-label {
  padding: 16px 28px;
}

.btn-cta .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 100%;
  border-left: 1px solid rgba(13, 13, 13, .2);
  padding: 16px 0;
  font-size: 20px;
  font-weight: 300;
}

.btn-cta:hover {
  filter: brightness(1.05);
}


/* ─── BUTTONS (rest of page) ──────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-accent {
  background: var(--accent);
  color: var(--bg);
  border-radius: 0;
}

.btn-accent:hover {
  box-shadow: 0 4px 24px rgba(200, 255, 0, .25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray-700);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-arrow::after {
  content: '→';
  transition: transform .2s;
}

.btn-arrow:hover::after { transform: translateX(3px); }

/* ─── SECTION: CTA (diagonal split, video + copy) ─── */
.section-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

/* Diagonal split background */
.section-video-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.section-video-bg-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 68%;
  height: 100%;
  background: var(--gray-panel);
  clip-path: polygon(0 0, 72% 0, 32% 100%, 0 100%);
}
.section-video-bg-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  left: auto;
  background: #1a1a1a;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

/* Subtle grain overlay */
.section-video-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Thin neon accent along diagonal */
.section-video-accent {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 120%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 245, 0, .35) 35%, rgba(232, 245, 0, .2) 55%, transparent 100%);
  transform-origin: left center;
  transform: rotate(-18deg) translateY(0);
  top: 42%;
}

/* Max-width grid container */
.section-video-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 48px;
  min-height: 100vh;
}

/* Left column: video module */
.section-video-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-video-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.cta-video-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  /* border: 1px solid rgba(255,255,255,.06); */
  box-shadow: 0 24px 48px rgba(0,0,0,.35);
}

.cta-video-poster {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, var(--gray-700) 0%, var(--gray-panel-dark) 50%, #252528 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: 2px solid rgba(232, 245, 0, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.cta-video-play-btn:hover {
  transform: scale(1.06);
  border-color: var(--accent);
  background: rgba(0,0,0,.6);
}
.cta-video-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.cta-video-caption {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.5;
}

/* Right column: CTA copy (with radial vignette) */
.section-video-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 48px 24px;
}
.section-video-right::before {
  content: '';
  position: absolute;
  inset: -80px -60px -80px -120px;
  top: -40px;
  bottom: -40px;
  left: -80px;
  right: -40px;
  background: radial-gradient(ellipse 80% 70% at 30% 50%, rgba(255,255,255,.03) 0%, transparent 55%);
  pointer-events: none;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.cta-heading {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-body {
  font-size: 17px;
  color: var(--gray-100);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 420px;
}

.cta-bullets {
  margin-bottom: 28px;
}
.cta-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--gray-100);
  line-height: 1.5;
}
.cta-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section-video-right .btn-cta {
  align-self: flex-start;
}
.section-video-right .btn-cta .btn-icon {
  width: 44px;
  font-size: 18px;
}
.section-video-right .btn-cta .btn-label {
  padding: 16px 24px;
}

.btn-cta-secondary {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-100);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.btn-cta-secondary:hover {
  color: var(--accent);
}
.btn-cta-secondary .arrow { transition: transform .2s; }
.btn-cta-secondary:hover .arrow { transform: translateX(3px); }

.cta-microcopy {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 28px;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cta-trust svg {
  width: 14px;
  height: 14px;
  opacity: .7;
}

/* Premium primary button in CTA */
.section-video-right .btn-cta {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 2px 8px rgba(0,0,0,.2);
  border: 1px solid rgba(0,0,0,.15);
  transition: filter .2s, box-shadow .2s;
}
.section-video-right .btn-cta:hover {
  filter: brightness(.97);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 4px 12px rgba(0,0,0,.25);
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.video-modal-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: background .2s;
}
.video-modal-close:hover {
  background: rgba(255,255,255,.2);
}

/* ─── HOW IT WORKS ────────────────────────── */
.how-it-works {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.how-it-works .section-title {
  margin-bottom: 48px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.how-step {
  position: relative;
  padding: 32px 28px;
  padding-top: 28px;
  background: #252528;
  border: none;
  border-left: 1px solid rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.how-step:first-child {
  border-left: none;
  padding-top: 40px;
}

.how-step:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #E8F500;
}

.how-step:hover {
  /* border-left-color: rgba(232, 245, 0, .2); */
}

.how-step-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.how-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.how-step p {
  font-size: 14px;
  color: var(--gray-100);
  line-height: 1.65;
}

/* ─── PARTNERS ────────────────────────────── */
.partners {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.partners .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.partners-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.partners-right p {
  font-size: 15px;
  color: var(--gray-300);
  margin-bottom: 20px;
  line-height: 1.7;
}

.partners-right .link-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.partners-right .link-arrow:hover { gap: 10px; }

.partners-logos {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.partner-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-card-light);
  border: 1px solid var(--gray-700);
}

/* ─── ACHIEVEMENTS ────────────────────────── */
.achievements {
  padding: 100px 0;
  background: linear-gradient(45deg, #616A71 0%, #616A71 50%, #1D2124 50%, #1D2124 100%);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 60px;
}

.section-title .highlight { color: var(--accent); }
.section-title .highlight-underline {
  display: inline-block;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 2px;
  padding-right: 24px;
}

.achievements .section-label {
  color: #E8F500;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.achievements .section-title {
  color: #FFFFFF;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 56px;
}

.achievements .section-title .highlight {
  color: #FFFFFF;
}

.achievements .section-title .highlight-underline {
  padding-right: 0;
  border-bottom: 3px solid #E8F500;
}

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

.achievements .stat-card {
  position: relative;
  padding: 32px 28px;
  padding-top: 28px;
  background: #252528;
  border: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
  border-left: 1px solid rgba(255,255,255,.04);
}

.achievements .stat-card:first-child {
  border-left: none;
  padding-top: 40px;
}

.achievements .stat-card:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #E8F500;
}

.achievements .stat-card .stat-desc {
  font-size: 15px;
  font-weight: 400;
  color: #e0e0e6;
  line-height: 1.7;
  margin-bottom: 32px;
}

.achievements .stat-card .stat-number {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-top: auto;
  color: #e0e0e6;
}

.achievements .stat-card .stat-number sup {
  font-size: 24px;
  font-weight: 700;
  color: #E8F500;
  vertical-align: super;
  margin-left: 2px;
}

.stat-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 24px rgba(0,0,0,.2); /*card shadow*/
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number sup {
  font-size: 32px;
  color: var(--accent);
  vertical-align: super;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-100);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ─── PLATFORM ACCESS ─────────────────────────── */
.platform-access {
  padding: 100px 0;
  background: #1D2124;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.platform-access .section-header {
  display: block;
  margin-bottom: 56px;
}

.platform-access .section-header .section-label {
  display: block;
  color: #E8F500;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.platform-access .section-title {
  color: #FFFFFF;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.platform-access .section-title .highlight {
  color: #FFFFFF;
}

.platform-access .section-title .highlight-underline {
  padding-right: 0;
  border-bottom: 3px solid #E8F500;
}

.platform-access .section-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #e0e0e6;
  max-width: 520px;
  line-height: 1.7;
  margin-top: 16px;
}

.platform-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.platform-feature {
  position: relative;
  background: #252528;
  border: none;
  border-left: 1px solid rgba(255,255,255,.04);
  padding: 32px 28px;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,.2); /*card shadow*/
}

.platform-feature:first-child {
  border-left: none;
  padding-top: 40px;
}

.platform-feature:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #E8F500;
}

.platform-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #E8F500;
}

.platform-feature-icon svg {
  width: 22px;
  height: 22px;
}

.platform-feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: #e0e0e6;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.platform-feature p {
  font-size: 14px;
  font-weight: 400;
  color: #e0e0e6;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .platform-features { grid-template-columns: repeat(2, 1fr); }
  .platform-feature:nth-child(odd) { border-left: none; }
}

@media (max-width: 640px) {
  .platform-features { grid-template-columns: 1fr; }
  .platform-feature { border-left: none; border-top: 1px solid rgba(255,255,255,.04); padding-top: 28px; }
  .platform-feature:first-child { padding-top: 40px; }
}

/* ─── OUTBOUND GUIDED BY SIGNALS ──────────────── */
.signals-section {
  padding: 100px 0;
  background: #1D2124;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.signals-section .section-header {
  display: block;
  margin-bottom: 56px;
}

.signals-section .section-title {
  color: #FFFFFF;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.signals-section .section-title .highlight {
  color: #FFFFFF;
}

.signals-section .section-title .highlight-underline {
  padding-right: 0;
  border-bottom: 3px solid #E8F500;
}

.signals-section .section-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #e0e0e6;
  max-width: 640px;
  line-height: 1.7;
  margin-top: 16px;
}

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

.signals-card {
  position: relative;
  background: #252528;
  border: none;
  border-left: 1px solid rgba(255,255,255,.04);
  padding: 32px 28px;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,.2); /*card shadow*/
}

.signals-card:first-child {
  border-left: none;
  padding-top: 40px;
}

.signals-card:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #E8F500;
}

.signals-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #e0e0e6;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.signals-card p {
  font-size: 14px;
  font-weight: 400;
  color: #e0e0e6;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .signals-grid { grid-template-columns: repeat(2, 1fr); }
  .signals-card:nth-child(odd) { border-left: none; }
}

@media (max-width: 640px) {
  .signals-grid { grid-template-columns: 1fr; }
  .signals-card { border-left: none; border-top: 1px solid rgba(255,255,255,.04); padding-top: 28px; }
  .signals-card:first-child { padding-top: 40px; }
}

/* ─── PRICING ────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: #1D2124;
  color: var(--white);
}

.pricing .section-label {
  color: #E8F500;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.pricing .section-header {
  display: block;
  margin-bottom: 56px;
}

.pricing .section-header .section-label {
  display: block;
}

.pricing .section-title {
  color: #FFFFFF;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 0;
}

.pricing .section-title .highlight {
  color: #FFFFFF;
}

.pricing .section-title .highlight-underline {
  padding-right: 0;
  border-bottom: 3px solid #E8F500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-card {
  position: relative;
  background: #252528;
  border: none;
  padding: 32px 28px;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  border-left: 1px solid rgba(255,255,255,.04);
}

.pricing-card:first-child {
  border-left: none;
}

.pricing-card.featured {
  border-left: 1px solid rgba(255,255,255,.04);
  padding-top: 40px;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #E8F500;
}

.pricing-tier {
  font-size: 20px;
  font-weight: 700;
  color: #e0e0e6;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.pricing-price {
  font-size: 36px;
  font-weight: 800;
  color: #e0e0e6;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.pricing-price .pricing-price-accent {
  color: #E8F500;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
}

.pricing-setup {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  margin-bottom: 8px;
}

.pricing-setup strong {
  color: #e0e0e6;
  font-weight: 600;
}

.pricing-volume {
  font-size: 16px;
  font-weight: 600;
  color: #e0e0e6;
  margin-bottom: 8px;
}

.pricing-minimum {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
}

.pricing-card.custom .pricing-minimum,
.pricing-card.custom .pricing-volume {
  display: none;
}

.pricing-card.custom .pricing-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.pricing-card.custom .pricing-setup {
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: #e0e0e6;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8F500;
  flex-shrink: 0;
}

.pricing-card .btn-cta,
.pricing-card .btn-accent,
.pricing-card .btn-outline {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-card.custom .pricing-features li::before {
  background: rgba(255,255,255,.5);
}

/* Volume Calculator CTA card (full-width under pricing grid) */
.volume-calc-card {
  margin-top: 28px;
  background: #252528;
  border: 1px solid rgba(255,255,255,.04);
  /* border-radius: var(--radius); */
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
  overflow: hidden;
  position: relative;
}
.volume-calc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #E8F500;
}
.volume-calc-card-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
}
.volume-calc-eyebrow {
  color: #E8F500;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.volume-calc-headline {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.3;
}
.volume-calc-body {
  font-size: 15px;
  color: #e0e0e6;
  line-height: 1.55;
  margin-bottom: 16px;
}
.volume-calc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.volume-calc-pill {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
}
.volume-calc-micro {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.volume-calc-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.volume-calc-actions .btn-accent {
  white-space: nowrap;
}
.volume-calc-methodology {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-100);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.volume-calc-methodology:hover {
  color: var(--accent);
}

/* Methodology modal */
.methodology-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.methodology-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.methodology-modal-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.methodology-modal-inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #252528;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.methodology-modal-inner h3 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.methodology-modal-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.methodology-modal-inner li {
  font-size: 14px;
  color: #e0e0e6;
  line-height: 1.6;
  padding: 10px 0 10px 24px;
  position: relative;
}
.methodology-modal-inner li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8F500;
}
.methodology-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: background .2s;
}
.methodology-modal-close:hover {
  background: rgba(255,255,255,.2);
}

@media (max-width: 768px) {
  .volume-calc-card-inner {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .volume-calc-actions {
    align-items: stretch;
  }
  .volume-calc-actions .btn-accent {
    width: 100%;
    justify-content: center;
  }
}

/* ─── NEWS ─────────────────────────────────── */
.news {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

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

.news-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.news-card-img {
  height: 200px;
  background: var(--bg-card-light);
  position: relative;
}

.news-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  background: var(--accent);
  color: var(--bg);
}

.news-card-body {
  padding: 24px;
}

.news-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card-body p {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.6;
}

.news-date {
  font-size: 12px;
  color: var(--gray-500);
}

/* ─── WHAT YOU GET ─────────────────────────── */
.what-you-get {
  padding: 100px 0;
  /* background: #1D2124; */
}

.what-you-get .section-header {
  display: block;
  margin-bottom: 56px;
}

.what-you-get .section-header .section-label {
  display: block;
  color: #E8F500;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.what-you-get .section-title {
  color: #FFFFFF;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.what-you-get .section-title .highlight {
  color: #FFFFFF;
}

.what-you-get .section-title .highlight-underline {
  padding-right: 0;
  border-bottom: 3px solid #E8F500;
}

.what-you-get-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.what-you-get-card {
  position: relative;
  background: #252528;
  border: none;
  border-left: 1px solid rgba(255,255,255,.04);
  padding: 32px 28px;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.what-you-get-card:first-child {
  border-left: none;
  padding-top: 40px;
}

.what-you-get-card:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #E8F500;
}

.what-you-get-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #e0e0e6;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.what-you-get-card p {
  font-size: 15px;
  font-weight: 400;
  color: #e0e0e6;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .what-you-get-card:nth-child(odd) { border-left: none; }
}

@media (max-width: 640px) {
  .what-you-get-card { border-left: none; border-top: 1px solid rgba(255,255,255,.04); padding-top: 28px; }
  .what-you-get-card:first-child { padding-top: 40px; }
}

/* ─── CTA ──────────────────────────────────── */
.cta {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: var(--accent);
  opacity: .06;
  border-radius: 50%;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-title .highlight { color: var(--accent); }

/* ─── FOOTER ───────────────────────────────── */
.footer {
  padding: 80px 0 48px;
  background: linear-gradient(135deg, #121A1F 0%, #121A1F 50%, #A6AFB5 50%, #A6AFB5 100%);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer-newsletter h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-newsletter p {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 420px;
}

.footer-newsletter-form {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-newsletter-form label {
  flex: 1;
  min-width: 200px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 8px;
}

.footer-newsletter-form input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 14px;
  outline: none;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255,255,255,.5);
}

.footer-newsletter-form .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  color: #121A1F;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity .2s;
}

.footer-newsletter-form .btn-submit:hover { opacity: .9; }

.footer-nav {
  display: flex;
  gap: 48px;
  margin-top: 32px;
}

.footer-nav a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.9);
  padding: 4px 0;
  transition: color .2s;
}

.footer-nav a:hover { color: var(--accent); }
.footer-nav a.bold { font-weight: 700; }

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-row .footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-brand-row .footer-logo .logo-accent {
  color: var(--accent);
}

.footer-brand-row .footer-member {
  font-size: 12px;
  color: rgba(255,255,255,.7);
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-right h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 12px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: 14px;
  color: rgba(255,255,255,.95);
}

.footer-contact-item span:first-child {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  min-width: 24px;
}

.footer-office {
  margin-top: 24px;
}

.footer-office h4 {
  margin-bottom: 8px;
}

.footer-office p {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background .2s, color .2s;
}

.footer-socials a:hover {
  background: rgba(255,255,255,.25);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: 12px;
  color: rgba(255,255,255,.8);
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: 48px !important; }
  .section-title, .partners-title { font-size: 36px; }
  .cta-title { font-size: 38px; }
  .stats-grid, .news-grid, .what-you-get-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .hero-left { padding: 0 40px; }
  .cta-heading { font-size: 40px !important; }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left {
    width: 100%;
    min-height: auto;
    padding: 120px 24px 60px;
    clip-path: none;
  }

  .hero-right {
    display: none;
  }

  .nav { padding: 20px 24px; }
  .nav-right .nav-contact-wrap { display: none; }
  .nav-cta-wrap { display: none; }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
    z-index: 11;
    position: relative;
  }
  .hamburger span {
    background: var(--accent);
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 1px;
  }
  .hero-title { font-size: 38px !important; letter-spacing: -1.5px; }

  .hero-yellow-shape {
    width: 95%;
    height: 50%;
  }

  .section-video-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    gap: 40px;
  }
  .section-video-left { order: 1; align-items: center; }
  .cta-video-card { max-width: 100%; }
  .section-video-right {
    order: 2;
    padding: 0;
    padding-left: 0;
  }
  .section-video-right::before { display: none; }
  .cta-heading { font-size: 34px !important; }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .section-video-right .btn-cta { width: 100%; justify-content: center; }
  .btn-cta-secondary { justify-content: center; }
  .section-video-bg-left { clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
  .section-video-bg-right { clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%); }
  .section-video-accent { opacity: .6; }

  .partners .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title, .partners-title { font-size: 30px; }
  .cta-title { font-size: 30px; }

  .stats-grid, .news-grid, .what-you-get-grid {
    grid-template-columns: 1fr;
  }

  .how-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 48px; }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .cta-box { padding: 48px 28px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .container { padding: 0 24px; }
}

/* ========== Volume calculator page ========== */
@media (min-width: 769px) {
  .nav-menu { display: none !important; }
}
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-cta-wrap { display: none; }
  .hamburger {
    display: flex;
    z-index: 11;
    position: relative;
  }
  .container { padding: 0 24px; }
  .assessment-inner { padding: 0 8px; }
  .results-card { padding: 32px 24px; }
}

/* Assessment layout */
.assessment-wrap {
  min-height: 80vh;
  padding: 48px 24px 80px;
}
.assessment-inner {
  max-width: 640px;
  margin: 0 auto;
}
.progress-wrap {
  margin-bottom: 40px;
}
.progress-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.progress-bar {
  height: 4px;
  background: var(--gray-700);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.step-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 15px;
  color: var(--gray-300);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--white);
  background: var(--bg-card);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s;
}
.form-select:hover,
.form-select:focus {
  border-color: var(--gray-500);
}
.form-select option { background: var(--bg-card); color: var(--white); }
.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--white);
  background: var(--bg-card);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: var(--gray-500); }
.form-input:hover,
.form-input:focus { border-color: var(--gray-500); }

.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-option {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.radio-option:hover { border-color: var(--gray-500); }
.radio-option.selected {
  border-color: var(--accent);
  background: rgba(232, 245, 0, 0.06);
}
.radio-option input { margin-right: 12px; accent-color: var(--accent); }
.radio-option span { font-size: 15px; color: var(--gray-100); }

.slider-wrap { margin-bottom: 8px; }
.slider-wrap input[type="range"] {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--gray-700);
  border-radius: 4px;
  outline: none;
}
.slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
}
.slider-value { font-size: 18px; font-weight: 700; color: var(--accent); margin-top: 8px; }
.slider-ticks { display: flex; justify-content: space-between; margin-top: 6px; font-size: 11px; color: var(--gray-500); }
.slider-tick { flex: 1; text-align: center; }
.slider-tick.active { color: var(--accent); font-weight: 600; }

.results-warning {
  font-size: 13px;
  color: var(--accent);
  margin-top: 12px;
  padding: 12px;
  background: rgba(232, 245, 0, 0.08);
  border: 1px solid rgba(232, 245, 0, 0.3);
  border-radius: var(--radius-sm);
}
.results-secondary-label { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

.btn-wrap { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; align-items: center; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #0d0d0d;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  /* padding: 16px 28px; */
  transition: filter 0.2s;
}
.btn-cta:hover { filter: brightness(1.05); }
.btn-cta:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-cta-secondary {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.btn-cta-secondary:hover { color: var(--accent); }

/* Step transition */
.step-enter-active,
.step-leave-active { transition: opacity 0.25s ease, transform 0.25s ease; }
.step-enter-from { opacity: 0; transform: translateX(12px); }
.step-leave-to { opacity: 0; transform: translateX(-12px); }

/* Results screen */
.results-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 0 80px;
}
.results-card {
  background: var(--bg-card);
  border: 1px solid var(--gray-700);
  /* border-radius: var(--radius); */
  padding: 48px 40px;
  margin-bottom: 32px;
}
.results-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.results-plan-name {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
}
.results-supporting {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 40px;
}
.results-section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.results-math-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.results-math-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-700);
  font-size: 15px;
}
.results-math-row span:first-child { color: var(--gray-300); }
.results-math-row span:last-child { color: var(--white); font-weight: 600; }
.results-subtext {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-top: 16px;
}
.results-means {
  font-size: 16px;
  color: var(--gray-100);
  line-height: 1.65;
  margin-bottom: 32px;
}
.results-levers {
  list-style: none;
}
.results-levers li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--gray-100);
  line-height: 1.5;
}
.results-levers li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.submit-error {
  font-size: 13px;
  color: #e57373;
  margin-top: 12px;
}

.results-math-row .range-val { color: var(--white); font-weight: 600; }
.results-math-row .range-val .muted { font-weight: 400; color: var(--gray-500); }
.muted { color: var(--gray-500); font-weight: 400; }
.results-inline-note {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 8px 0 16px;
}
.link-button {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  font-size: inherit;
}
.link-button:hover { opacity: 0.9; }
.link-button[href] { text-decoration: underline; }
.results-footnote {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-top: 16px;
}
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.toggle-label { font-size: 14px; color: var(--gray-300); }
.toggle-switch {
  width: 44px;
  height: 24px;
  background: var(--gray-700);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.toggle-switch.on { background: var(--accent); }
.toggle-switch::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
}
.toggle-switch.on::after { transform: translateX(20px); }
.assumptions-panel {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-sm);
}
.assumptions-panel .form-label { margin-bottom: 6px; }
.assumptions-panel .form-group { margin-bottom: 16px; }
.range-inputs { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.range-inputs input {
  width: 80px;
  padding: 8px 10px;
  font-size: 14px;
  color: var(--white);
  background: var(--bg-card);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-sm);
}
.range-inputs span { font-size: 13px; color: var(--gray-500); }
.diagnostic-block {
  margin-top: 20px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-sm);
}
.diagnostic-block .results-section-title { margin-bottom: 10px; }
.diagnostic-line { font-size: 13px; color: var(--gray-300); margin: 6px 0; font-family: ui-monospace, monospace; }

/* Footer – match index */
.footer {
  padding: 80px 0 48px;
  background: linear-gradient(135deg, #121A1F 0%, #121A1F 50%, #A6AFB5 50%, #A6AFB5 100%);
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: 12px;
  color: rgba(255,255,255,.8);
}
.footer-brand-row .footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.footer-brand-row .footer-logo .highlight { color: var(--accent); }

/* Print – results only */
@media print {
  body * { visibility: hidden; }
  .nav, .footer, .btn-wrap, .results-actions, .no-print { display: none !important; }
  .results-wrap, .results-wrap * { visibility: visible; }
  .results-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 24px;
    background: #fff;
    color: #111;
  }
  .results-card {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: none;
  }
  .results-header, .results-plan-name { color: #111; }
  .results-supporting, .results-means, .results-math-row span { color: #333; }
  .results-section-title { color: #555; }
  .results-levers li::before { background: #333; }
}

/* Legal / policy pages */
.legal-page {
  padding: 120px 0 80px;
}
.legal-page .section-title {
  margin-bottom: 32px;
}
.legal-content {
  max-width: 72ch;
  color: var(--gray-100);
}
.legal-content p {
  margin-bottom: 1em;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.hero-title .highlight, .highlight {
  color: var(--accent);
}
