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

:root {
  --bg:           #252A2E;
  --surface:      #1E2226;
  --blue:         #4D9FFF;
  --blue-deep:    #2E7FEF;
  --blue-pale:    rgba(0, 98, 255, 0.1);
  --text:         #E8EDF2;
  --muted:        #8A9BA8;
  --muted-2:      #4A5A68;
  --border:       rgba(255, 255, 255, 0.08);
  --panel:        #161A1E;
  --panel-text:   #E8EDF2;
  --panel-muted:  #7A8FA3;
  --font-head:    'Manrope', system-ui, sans-serif;
  --font-body:    'General Sans', 'Manrope', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100svh;
}

/* ── HEADER ─────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem 1.5rem calc(72px + 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
  transition: filter 0.3s ease;
}

header.on-dark .logo-img {
  filter: brightness(0) invert(1);
}

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 72px 1fr;
  position: relative;
  overflow: hidden;
}

.hero-ghost {
  position: absolute;
  bottom: -0.12em;
  right: -0.04em;
  font-family: var(--font-head);
  font-size: clamp(9rem, 24vw, 26rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.hero::after {
  content: '';
  position: absolute;
  left: 72px; right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, transparent 80%);
  pointer-events: none;
}

.hero-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 7rem 0 3rem;
  border-right: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.rail-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.rail-year {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 4rem 4.5rem;
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2.75rem;
}

.eyebrow-num {
  color: var(--muted-2);
  font-size: 0.58rem;
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 3.5rem;
}

h1 .light {
  font-weight: 300;
  font-style: normal;
  color: var(--blue);
  display: block;
  margin-top: 0.1em;
}

.hero-desc {
  max-width: 440px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 3.5rem;
  border-left: 2px solid var(--blue);
  padding-left: 1.25rem;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  background: var(--blue);
  text-decoration: none;
  border: none;
  padding: 0.9rem 1.8rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 0.35s cubic-bezier(0.77, 0, 0.18, 1),
              background 0.2s ease;
  cursor: pointer;
}

.cta-primary:hover {
  background: var(--blue-deep);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.cta-primary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.cta-primary svg {
  width: 13px; height: 13px;
  transition: transform 0.2s ease;
}

.cta-primary:hover svg { transform: translateX(3px); }

.cta-meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── TICKER ──────────────────────────────────── */
.ticker {
  background: var(--panel);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--panel-muted);
  padding: 0 2.5rem;
}

.ticker-dot {
  width: 4px; height: 4px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PANEL SECTION (generic dark-panel wrapper) ── */
.panel-section {
  background: var(--panel);
  padding: 6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-inner {
  padding-left: calc(72px + 4.5rem);
  padding-right: 4rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-rule {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.item-list {
  list-style: none;
}

.item-list .item {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: start;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--panel-text);
}

.item-list .item:first-child { border-top: 1px solid rgba(255, 255, 255, 0.08); }

.item-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--panel-muted);
  letter-spacing: 0.06em;
  padding-top: 0.2rem;
}

.item-body { min-width: 0; }

.item-name {
  display: block;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--panel-text);
  transition: color 0.2s;
}

.item-desc {
  display: block;
  margin-top: 0.6rem;
  max-width: 56ch;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--panel-muted);
}

a.item-link {
  text-decoration: none;
  display: contents;
}

a.item-link:focus-visible .item-name {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.item-list a.item-link:hover .item-name,
.item-list .item:hover .item-name { color: var(--blue); }

.item-arrow {
  width: 20px; height: 20px;
  color: var(--panel-muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.item-list a.item-link:hover .item-arrow,
.item-list .item:hover .item-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--blue);
}

.tbc-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--panel-muted);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── CONTACT ─────────────────────────────────── */
.contact {
  padding: 8rem 0 7rem;
}

.contact-inner {
  padding-left: calc(72px + 4.5rem);
  padding-right: 4rem;
}

.contact-kicker {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-kicker::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--blue);
}

.contact-heading {
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 3.5rem;
}

.contact-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--text);
  text-decoration: none;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--muted-2);
  transition: color 0.2s, border-color 0.2s;
}

.contact-email:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.contact-email:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.contact-email svg {
  width: 18px; height: 18px;
  opacity: 0.35;
  transition: opacity 0.2s, transform 0.25s ease;
}

.contact-email:hover svg {
  opacity: 1;
  transform: translate(4px, -4px);
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 4rem 1.75rem calc(72px + 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer-link {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--blue); }

.footer-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-rail { display: none; }
  .hero::after { left: 0; }

  .hero-content {
    padding: 7rem 1.5rem 3.5rem;
  }

  .section-inner,
  .contact-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  footer {
    padding: 1.75rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  header { padding: 1.25rem 1.5rem; }

  .item-list .item {
    grid-template-columns: 2.5rem 1fr;
  }

  .item-arrow { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(3rem, 14vw, 4rem); }
  .hero-ghost { display: none; }
  .cta-row { flex-direction: column; align-items: flex-start; }
}

/* ── NETWORK CANVAS ──────────────────────────── */
#network-canvas {
  position: absolute;
  right: 0;
  top: 0;
  width: 54%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 480px) {
  #network-canvas { display: none; }
}

/* ── HERO GRID OVERLAY ───────────────────────── */
.hero::before {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 62%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 98, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 98, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .cta-primary,
  .cta-primary svg,
  .item-name,
  .item-arrow,
  .contact-email,
  .contact-email svg { transition: none; }
}

/* ── OFFER GRID (home) ──────────────────────── */
.offer-grid .item-list .item { grid-template-columns: 3.5rem 1fr auto; }

/* ── CREDIBILITY STRIP ───────────────────────── */
.credibility {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

.credibility-inner {
  padding-left: calc(72px + 4.5rem);
  padding-right: 4rem;
  max-width: 760px;
}

.credibility-body {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2rem;
}

.credibility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
}

.credibility-link:hover { text-decoration: underline; }

.credibility-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ── CTA BAND ────────────────────────────────── */
.cta-band {
  padding: 5rem calc(4rem) 5rem calc(72px + 4.5rem);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-band-heading {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 32ch;
}

@media (max-width: 768px) {
  .credibility-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
  .cta-band { padding: 4rem 1.5rem; flex-direction: column; align-items: flex-start; }
}

/* ── MODAL ─────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.modal.modal-open {
  opacity: 1;
  pointer-events: all;
}

.modal-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
}

.modal-bar {
  height: 100%;
  width: 0%;
  background: var(--blue);
  transition: width 400ms ease;
}

.modal-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--text); }

.modal-close:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.modal-inner {
  width: 100%;
  max-width: 700px;
  padding: 2rem 2rem 3rem;
  position: relative;
}

.modal-step-count {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 2.5rem;
  min-height: 1em;
}

.modal-step {
  animation: step-in 280ms ease both;
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-q {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

label.modal-q { cursor: default; }

.modal-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  padding: 0.75rem 0;
  outline: none;
  caret-color: var(--blue);
  transition: border-color 0.2s;
}

.modal-input::placeholder { color: var(--muted-2); }
.modal-input:focus        { border-bottom-color: var(--blue); }
.modal-input.has-error    { border-bottom-color: #FF4D6A; }

.modal-textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  padding: 0.75rem 0;
  outline: none;
  caret-color: var(--blue);
  transition: border-color 0.2s;
  resize: none;
  min-height: 110px;
  line-height: 1.65;
}

.modal-textarea::placeholder { color: var(--muted-2); }
.modal-textarea:focus        { border-bottom-color: var(--blue); }

.modal-err {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: #FF4D6A;
  min-height: 1.4em;
  margin-top: 0.5rem;
}

.modal-next,
.modal-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border: none;
  padding: 0.85rem 1.7rem;
  cursor: pointer;
  margin-top: 2rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: background 0.2s ease,
              clip-path 0.35s cubic-bezier(0.77, 0, 0.18, 1);
}

.modal-next:hover,
.modal-submit:hover {
  background: var(--blue-deep);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.modal-next:focus-visible,
.modal-submit:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.modal-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.modal-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.6rem 1.1rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  user-select: none;
}

.check-pill:hover { color: var(--text); border-color: rgba(77, 159, 255, 0.5); }

.check-pill input {
  position: absolute;
  opacity: 0; width: 0; height: 0;
}

.check-pill.selected {
  color: var(--text);
  background: var(--blue-pale);
  border-color: var(--blue);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  cursor: pointer;
  margin-top: 0.5rem;
}

.consent-label input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 0.25rem;
  accent-color: var(--blue);
  cursor: pointer;
}

.consent-label a { color: var(--blue); }
.consent-label a:hover { text-decoration: underline; }

.modal-honeypot {
  position: absolute;
  left: -9999px; top: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.modal-confirm-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00FF41;
  margin-bottom: 1.5rem;
}

.modal-confirm-body {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.75;
}

.modal-close-confirm {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: 1px solid var(--border);
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  margin-top: 2rem;
  transition: color 0.2s, border-color 0.2s;
}

.modal-close-confirm:hover { color: var(--text); border-color: var(--muted); }

.modal-close-confirm:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .modal-inner { padding: 2rem 1.5rem; }
  .modal-close { top: 1rem; right: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .modal, .modal-bar, .modal-next, .modal-submit { transition: none; }
  .modal-step { animation: none; }
}

/* ── NAV ─────────────────────────────────── */
.logo-link { display: block; line-height: 0; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

header.on-dark .nav-link { color: rgba(232, 237, 242, 0.7); }

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.cta-nav {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border: none;
  padding: 0.6rem 1.25rem;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: background 0.2s ease, clip-path 0.35s cubic-bezier(0.77, 0, 0.18, 1);
}

.cta-nav:hover {
  background: var(--blue-deep);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.cta-nav:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: background 0.2s;
}

header.on-dark .nav-toggle-bar { background: var(--text); }

.nav-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 6rem 1.5rem 2rem;
    background: var(--panel);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 90;
    border-bottom: 1px solid var(--border);
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }

  .nav-link { font-size: 0.95rem; }

  .cta-nav { width: 100%; text-align: center; }

  .nav-toggle { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav, .nav-link, .cta-nav { transition: none; }
}

/* ── INNER HERO (service/about pages) ────────── */
.inner-hero {
  padding: 10rem calc(4rem) 5rem calc(72px + 4.5rem);
  max-width: 900px;
}

.inner-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.inner-hero-desc {
  max-width: 560px;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2rem;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--muted-2);
  margin-bottom: 2.5rem;
}

.price-tag .price-meta {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── DELIVERABLES ────────────────────────────── */
.deliverables {
  padding: 6rem calc(4rem) 6rem calc(72px + 4.5rem);
  border-bottom: 1px solid var(--border);
  max-width: 760px;
}

.deliverables ul {
  list-style: none;
  margin-top: 1.5rem;
}

.deliverables li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 1px;
  background: var(--blue);
}

/* ── FIT GRID ────────────────────────────────── */
.fit-section {
  padding: 6rem calc(4rem) 6rem calc(72px + 4.5rem);
  border-bottom: 1px solid var(--border);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.fit-col h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.fit-col.yes h3 { color: #00FF41; }
.fit-col.no h3  { color: var(--muted-2); }

.fit-col ul { list-style: none; }

.fit-col li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1rem;
}

.fit-col li svg { flex-shrink: 0; margin-top: 0.3rem; width: 14px; height: 14px; }

.fit-col.yes li svg { color: #00FF41; }
.fit-col.no li svg  { color: var(--muted-2); }

@media (max-width: 768px) {
  .inner-hero, .deliverables, .fit-section, .credibility-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .fit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
