/* =========================================================
   LeaseUp Bulldog — pure black, Geist, brand red #C8102E
   ========================================================= */

:root {
  --bg: #000000;
  --bg-elev: #0a0a0a;
  --bg-elev-2: #111111;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --ink: #ffffff;
  --ink-soft: rgba(255, 255, 255, 0.78);
  --ink-mute: rgba(255, 255, 255, 0.56);
  --ink-faint: rgba(255, 255, 255, 0.36);

  --accent: #C8102E;
  --accent-glow: #ff4757;
  --accent-light: #F87171;
  --accent-soft: rgba(200, 16, 46, 0.18);

  --font-display: 'Geist', system-ui, -apple-system, sans-serif;
  --font-body: 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'JetBrains Mono', monospace;

  --header-h: 72px;
  --max: 1440px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
html { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--accent); }
strong { font-weight: 700; color: var(--ink); }
button { font-family: inherit; }

/* =========================================================
   LOADER
   ========================================================= */
#loader {
  position: fixed; inset: 0;
  z-index: 1000;
  background: #000;
  display: grid; place-items: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  width: min(520px, 76vw);
  padding: 0 20px;
}

.loader-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.loader-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow), 0 0 4px #fff;
  animation: pulse 1.4s ease-in-out infinite;
}
.loader-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.loader-track {
  height: 2px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
#loader-bar {
  position: absolute; inset: 0 100% 0 0;
  background: linear-gradient(90deg, #6b0a18, var(--accent));
  box-shadow: 0 0 24px var(--accent-glow);
  transition: right 0.25s linear;
}

.loader-meta {
  margin-top: 14px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.loader-meta #loader-percent { color: var(--ink); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 60;
  display: flex; align-items: center;
  padding: 0 36px;
  gap: 32px;
  background: linear-gradient(180deg, rgba(0,0,0,0.78), rgba(0,0,0,0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
  height: 52px;
  background-image: url('/assets/wordmark-transparent.png');
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.3s var(--ease-out);
}
.brand:hover { opacity: 0.85; }
.brand .brand-mark,
.brand .brand-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav {
  display: flex; gap: 28px;
  margin-left: auto; margin-right: 8px;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease-out);
}
.nav a::after {
  content: ''; position: absolute;
  left: 0; bottom: 2px;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width 0.4s var(--ease-out);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255,255,255,0.02);
  transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.header-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px -8px rgba(200, 16, 46, 0.6);
}
.header-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero-standalone {
  position: relative;
  min-height: 100vh;
  padding: var(--header-h) 6vw 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
  overflow: hidden;
  z-index: 10;
}

.hero-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(200, 16, 46, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 16, 46, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 60% 65% at 50% 55%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 60% 65% at 50% 55%, #000 30%, transparent 75%);
}

.hero-glow {
  position: absolute;
  width: 75vw; height: 75vw;
  max-width: 1100px; max-height: 1100px;
  top: 50%; left: 50%;
  transform: translate(-50%, -45%);
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 16, 46, 0.22) 0%, rgba(200, 16, 46, 0.06) 30%, transparent 60%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 28px;
}
.section-label .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 1.4s ease-in-out infinite;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6.4vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 16ch;
}
.hero-heading .line { display: block; }
.hero-heading .line-accent { color: var(--accent); }
.hero-heading .word {
  display: inline-block;
  position: relative;
  overflow: visible;
  will-change: transform, opacity;
}
.hero-heading .word-inner {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 36px;
}
.hero-tagline strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out), background 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(200, 16, 46, 0.6), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  background: #db1837;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px rgba(200, 16, 46, 0.75), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-ghost {
  background: rgba(255,255,255,0.02);
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-lg { height: 60px; padding: 0 30px; font-size: 15px; }

.hero-trust {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.hero-trust .dot {
  width: 3px; height: 3px;
  background: var(--ink-faint);
  border-radius: 50%;
}

.hero-scroll {
  position: absolute;
  bottom: 96px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 3;
}
.hero-scroll-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--ink-faint), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: -50%;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--accent));
  animation: scroll-dot 1.8s var(--ease-out) infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

.hero-ticker {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  height: 36px;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero-ticker-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--ink-faint);
  animation: ticker 36s linear infinite;
  width: max-content;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* =========================================================
   CANVAS LAYER (frame-by-frame video)
   ========================================================= */
.canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: #000;
  clip-path: circle(0% at 50% 50%);
  will-change: clip-path;
}
#canvas {
  width: 100%; height: 100%;
  display: block;
}
.canvas-vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.45) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.18) 12%,
      rgba(0,0,0,0) 30%,
      rgba(0,0,0,0) 70%,
      rgba(0,0,0,0.22) 88%,
      rgba(0,0,0,0.65) 100%);
}

/* =========================================================
   DARK OVERLAY (covers stats moment)
   ========================================================= */
#dark-overlay {
  position: fixed; inset: 0;
  background: #000;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee-wrap {
  position: fixed;
  left: 0; right: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  white-space: nowrap;
}
.marquee-1 { top: 16vh; }
.marquee-2 { bottom: 14vh; }

.marquee-text {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 13vw;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: rgba(200,16,46,0.22);
  text-shadow: 0 0 60px rgba(200,16,46,0.18);
  padding-left: 6vw;
}
.marquee-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
  text-shadow: none;
  font-style: normal;
  font-size: 11vw;
}

/* =========================================================
   SCROLL CONTAINER + SECTIONS
   ========================================================= */
#scroll-container {
  position: relative;
  height: 500vh;
  z-index: 4;
}

.scroll-section {
  position: fixed;
  top: 0; bottom: 0;
  left: 0; right: 0;
  display: flex;
  align-items: center;                 /* vertically center content within the viewport */
  padding-top: calc(var(--header-h) + 12px);
  padding-bottom: 40px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  will-change: opacity, transform;
  pointer-events: none;
  transform: translateY(0);
}
.scroll-section.is-active {
  visibility: visible;
  pointer-events: auto;
}

/* Directional dark backdrop — viewport-locked, decoupled from section transforms.
   The section slides Y through this mask, the mask itself never moves. */
.section-mask {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
  transition: none;
}
#mask-left {
  background: linear-gradient(90deg,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.94) 42%,
    rgba(0,0,0,0.78) 58%,
    rgba(0,0,0,0.42) 75%,
    rgba(0,0,0,0.0) 92%);
}
#mask-right {
  background: linear-gradient(270deg,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.94) 42%,
    rgba(0,0,0,0.78) 58%,
    rgba(0,0,0,0.42) 75%,
    rgba(0,0,0,0.0) 92%);
}

/* How section spans full-width — uses column layout */
#how.scroll-section {
  flex-direction: column;
  justify-content: center;
  padding: 0 5vw;
}
#how .section-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.align-left {
  padding: 0 6vw 0 6vw;
  text-align: left;
  justify-content: flex-start;
}
.align-left .section-inner {
  max-width: 44vw;
  width: 100%;
}
.align-right {
  padding: 0 6vw 0 6vw;
  text-align: left;
  justify-content: flex-end;
}
.align-right .section-inner {
  max-width: 44vw;
  width: 100%;
}

.section-inner > * {
  will-change: transform, opacity;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 16ch;
}
.section-heading em {
  color: var(--accent);
}

.section-body {
  font-size: clamp(0.98rem, 1.15vw, 1.15rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: 20px;
  font-weight: 400;
}

.section-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  border-left: 2px solid var(--accent);
  padding-left: 14px;
  margin-top: 28px;
  max-width: 38ch;
  line-height: 1.6;
}

/* === CAPABILITIES LIST === */
.capability-list {
  list-style: none;
  margin-top: 18px;
  max-width: 46ch;
  display: grid;
  gap: 0;
}
.capability-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.capability-list li:last-child { border-bottom: 1px solid var(--line); }
.capability-list .cap-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding-top: 4px;
}
.capability-list h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.capability-list p {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--ink-mute);
}

/* === STATS / OPERATORS / CTA share a stacked centered layout === */
.section-stats,
.section-operators,
.section-cta {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: calc(var(--header-h) + 12px);
}

/* === STATS === */
.section-stats {
  padding: 0 5vw;
  text-align: center;
}
.stats-header {
  margin-bottom: 56px;
}
.stats-header .section-label {
  justify-content: center;
}
.stats-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: none;
  margin: 0 auto;
  text-wrap: balance;
}
.stats-heading em { color: var(--accent); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}
.stat:last-child { border-right: none; }

.stat-value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  line-height: 1;
  white-space: nowrap;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.stat-prefix {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  color: var(--accent);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  max-width: 18ch;
  line-height: 1.4;
}

/* === HOW (6-step grid) === */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
  max-width: 88vw;
  width: 88vw;
}
.how-step {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 20px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.how-step:hover {
  border-color: rgba(200, 16, 46, 0.4);
  transform: translateY(-2px);
}
.how-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 10px;
}
.how-step h3 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.how-step p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink-mute);
}

/* override align-left max-width on how section so grid can span wider */
#how .section-inner { max-width: 88vw; width: 88vw; }
#how .section-heading { max-width: 22ch; }

/* === OPERATORS / QUOTES === */
.section-operators {
  padding: 0 5vw;
  text-align: left;
}
.operators-header {
  max-width: 1320px;
  margin: 0 auto 36px;
}
.operators-header .section-heading {
  max-width: 22ch;
}
.operators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
}
.quote-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 18px;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.quote-card:hover {
  border-color: rgba(200, 16, 46, 0.45);
  transform: translateY(-3px);
}
.quote-text {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 24px;
  flex: 1;
}
.quote-mark {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 900;
  line-height: 0;
  display: inline-block;
  margin-right: 4px;
  vertical-align: -8px;
}
.quote-meta {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.quote-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.quote-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.quote-role {
  font-size: 0.78rem;
  color: var(--ink-mute);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* === PRICE === */
.price-card {
  margin-top: 28px;
  padding: 36px 0 0 0;
  border-top: 1px solid var(--line);
  max-width: 48ch;
}
.price-amount {
  display: flex; align-items: baseline; gap: 2px;
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 14px;
}
.price-currency {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 600;
  color: var(--ink-soft);
}
.price-value {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--accent);
}
.price-period {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--ink-mute);
  margin-left: 10px;
  font-weight: 500;
}
.price-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.price-note span { color: var(--accent); font-weight: 700; }
.price-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.price-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 0.9rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 1px;
  background: var(--accent);
}
.price-cta-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-top: 18px;
}

/* === CTA === */
.section-cta {
  text-align: center;
  padding: 0 6vw;
}
.cta-inner {
  max-width: 920px;
  margin: 0 auto;
}
.cta-inner .section-label { justify-content: center; }
.cta-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.4vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 32px;
}
.cta-heading .line { display: block; }
.cta-heading .line-accent {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(200, 16, 46, 0.4);
}
.cta-body {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.cta-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-faint);
  text-transform: uppercase;
  flex-wrap: wrap;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .operators-grid { grid-template-columns: 1fr; gap: 12px; }
  .operators-grid .quote-card:nth-child(n+3) { display: none; }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .site-header { padding: 0 20px; gap: 16px; }
  .header-cta { margin-left: auto; }
}

@media (max-width: 768px) {
  .hero-standalone { padding: var(--header-h) 5vw 0; }
  .hero-heading { font-size: clamp(2.4rem, 12vw, 4.2rem); }
  .hero-tagline { font-size: 1rem; }
  .hero-scroll { display: none; }
  .hero-trust { font-size: 10px; gap: 10px; }
  .hero-ticker { font-size: 10px; }

  .align-left, .align-right {
    padding: 0 5vw;
    justify-content: flex-start;
  }
  .align-left .section-inner,
  .align-right .section-inner {
    max-width: 100%;
    background: rgba(0,0,0,0.82);
    padding: 24px 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    backdrop-filter: blur(8px);
  }
  .section-heading { font-size: clamp(1.9rem, 8vw, 2.6rem); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 1px solid var(--line); padding: 24px 18px; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }

  .how-grid { grid-template-columns: 1fr; }
  #how .section-inner, #how .section-inner { max-width: 100%; width: 100%; }

  #scroll-container { height: 420vh; }

  .cta-heading { font-size: clamp(2.4rem, 11vw, 4rem); }
  .cta-meta { flex-direction: column; gap: 8px; }
}

/* =========================================================
   SMARTPHONE OPTIMIZATIONS
   ========================================================= */

/* Tablet/phone (≤ 720px) — comfortable but compact */
@media (max-width: 720px) {
  .site-header { padding: 0 16px; gap: 10px; height: 64px; }
  .brand { width: 168px; height: 40px; }
  .header-cta {
    height: 36px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 600;
    gap: 6px;
    white-space: nowrap;
  }
  .header-cta svg { width: 12px; height: 12px; }

  :root { --header-h: 64px; }
}

/* Phone (≤ 480px) — max compression */
@media (max-width: 480px) {
  .site-header { padding: 0 12px; gap: 8px; }
  .brand { width: 138px; height: 34px; }
  .header-cta {
    height: 32px;
    padding: 0 11px;
    font-size: 11px;
    letter-spacing: 0;
  }
  .header-cta svg { display: none; }
  .btn-lg { height: 52px; font-size: 14px; padding: 0 22px; }
  .btn { font-size: 13px; }
}

/* =========================================================
   MOBILE NAV — hamburger + slide-down drawer
   ========================================================= */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255,255,255,0.06); }
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.nav-toggle .nav-toggle-bar {
  display: block;
  width: 18px; height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s var(--ease-out), opacity 0.2s linear;
}
.nav-toggle .nav-toggle-bar + .nav-toggle-bar { margin-top: 4px; }
body.nav-open .nav-toggle .nav-toggle-bar:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
body.nav-open .nav-toggle .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle .nav-toggle-bar:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

.nav-drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 55;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
body.nav-open .nav-drawer-overlay { opacity: 1; }

@media (max-width: 860px) {
  .site-header .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-drawer-overlay { display: block; pointer-events: none; }
  body.nav-open .nav-drawer-overlay { pointer-events: auto; }

  .site-header .nav.nav-drawer {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 12px; right: 12px;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 14px;
    background: rgba(10,10,10,0.96);
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(200,16,46,0.08);
    z-index: 56;
    transform: translateY(-12px) scale(0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s var(--ease-out), opacity 0.32s var(--ease-out), visibility 0.32s;
  }
  body.nav-open .site-header .nav.nav-drawer {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header .nav.nav-drawer a {
    display: flex; align-items: center;
    padding: 14px 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .site-header .nav.nav-drawer a:last-child { border-bottom: none; }
  .site-header .nav.nav-drawer a::after { display: none; }
  .site-header .nav.nav-drawer a:active { background: rgba(200,16,46,0.08); }

  /* Body scroll lock when drawer open */
  body.nav-open { overflow: hidden; }
}

@media (max-width: 480px) {
  .nav-toggle { width: 36px; height: 36px; }
  .nav-toggle .nav-toggle-bar { width: 16px; }
}
