/* =============================================================
 *  CenterFlow — Landing experience ("lx-")
 *  Loaded ONLY by index.html, AFTER styles.css + theme.css.
 *  All classes are prefixed .lx- so nothing here leaks into the
 *  account / billing / dashboard pages that share styles.css.
 *
 *  Palette: reuses the warm-editorial tokens from theme.css.
 *  The hero + closing CTA are ALWAYS-DARK (via --band) so they
 *  read identically in light and dark mode — the cinematic
 *  "chapters" that bookend a warm-light body.
 * ============================================================= */

:root {
  /* Hero-local warm glow — fixed (hero is always dark in both themes) */
  --lx-night:       #0a1220;      /* deeper than --band for the void */
  --lx-night-2:     #13223a;
  --lx-hero-ink:    #eef4fb;
  --lx-hero-soft:   #a9bcd4;
  --lx-glow-terra:  #e0763a;      /* terracotta light */
  --lx-glow-gold:   #e6b64f;      /* warm gold */
  --lx-glow-green:  #6f9e79;      /* forest, cool counterweight */
  --lx-ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

/* Kill the page's default top padding so the hero can go full-bleed */
.lx-page main { position: relative; z-index: 2; }

/* ---- Reveal-on-enter motion system (global connective tissue) ---- */
.lx-reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition:
    opacity 0.8s var(--lx-ease),
    transform 0.8s var(--lx-ease),
    filter 0.8s var(--lx-ease);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: opacity, transform;
}
.lx-reveal.in { opacity: 1; transform: none; filter: none; }

@media (prefers-reduced-motion: reduce) {
  .lx-reveal { opacity: 1; transform: none; filter: none; transition: none; }
}

/* =============================================================
 *  NAV — glass, adapts across the dark→light seam
 * ============================================================= */
.lx-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease,
              border-color 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
}
/* Over the dark hero: light text, no chrome */
.lx-nav .lx-brand, .lx-nav .lx-nav-links a { color: var(--lx-hero-ink); }
.lx-nav .lx-brand-mark { box-shadow: 0 0 0 1px rgba(255,255,255,0.12); }

/* Once scrolled past the hero: frosted light bar */
.lx-nav.lx-nav--solid {
  background: color-mix(in srgb, var(--paper) 72%, transparent);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--line);
  padding-top: 12px; padding-bottom: 12px;
  box-shadow: 0 10px 30px -24px rgba(43,39,34,0.5);
}
.lx-nav.lx-nav--solid .lx-brand,
.lx-nav.lx-nav--solid .lx-nav-links a { color: var(--ink); }

.lx-brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
  letter-spacing: -0.01em; text-decoration: none;
}
.lx-brand-mark { width: 34px; height: 34px; border-radius: 9px; object-fit: cover; display: block; }
.lx-nav-links { display: flex; align-items: center; gap: clamp(12px, 2vw, 26px); }
.lx-nav-links a:not(.lx-btn) {
  font-family: var(--font-sans); font-weight: 600; font-size: 0.92rem;
  text-decoration: none; opacity: 0.86; transition: opacity 0.2s ease;
}
.lx-nav-links a:not(.lx-btn):hover { opacity: 1; }
@media (max-width: 620px) { .lx-nav-links .lx-hide-sm { display: none; } }

/* =============================================================
 *  BUTTONS — magnetic-ready, glass + gradient
 * ============================================================= */
.lx-btn {
  --tx: 0px; --ty: 0px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transform: translate(var(--tx), var(--ty));
  transition: transform 0.25s var(--lx-ease), box-shadow 0.25s ease,
              background-color 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.lx-btn .lx-arrow { transition: transform 0.25s var(--lx-ease); }
.lx-btn:hover .lx-arrow { transform: translateX(4px); }

.lx-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--lx-glow-terra), #b4531f);
  box-shadow: 0 10px 30px -10px rgba(224,118,58,0.6), inset 0 1px 0 rgba(255,255,255,0.25);
}
.lx-btn-primary:hover { filter: brightness(1.07); box-shadow: 0 16px 40px -12px rgba(224,118,58,0.7), inset 0 1px 0 rgba(255,255,255,0.3); }

/* Glass button — for the dark hero */
.lx-btn-glass {
  color: var(--lx-hero-ink);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lx-btn-glass:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.28); }

/* Solid-context ghost button (light body) */
.lx-btn-ghost { color: var(--ink); background: transparent; border-color: var(--line-strong); }
.lx-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* =============================================================
 *  HERO — always-dark cinematic chapter
 * ============================================================= */
.lx-hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px clamp(18px, 4vw, 48px) 90px;
  background: radial-gradient(120% 90% at 50% -10%, var(--lx-night-2), var(--lx-night) 60%);
  color: var(--lx-hero-ink);
  overflow: hidden;
  isolation: isolate;
}

/* Aurora blobs */
.lx-aurora { position: absolute; inset: -20% -10% 0; z-index: -3; pointer-events: none; }
.lx-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; mix-blend-mode: screen; }
.lx-blob-1 { width: 46vw; height: 46vw; left: -6vw; top: -6vw;
  background: radial-gradient(circle, var(--lx-glow-terra), transparent 68%);
  animation: lx-drift-1 24s ease-in-out infinite; }
.lx-blob-2 { width: 40vw; height: 40vw; right: -8vw; top: 4vw;
  background: radial-gradient(circle, var(--lx-glow-gold), transparent 66%);
  animation: lx-drift-2 30s ease-in-out infinite; }
.lx-blob-3 { width: 38vw; height: 38vw; left: 28vw; top: 30vh;
  background: radial-gradient(circle, var(--lx-glow-green), transparent 70%);
  opacity: 0.4; animation: lx-drift-3 34s ease-in-out infinite; }

@keyframes lx-drift-1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(8vw,6vh) scale(1.12)} }
@keyframes lx-drift-2 { 0%,100%{transform:translate(0,0) scale(1.05)} 50%{transform:translate(-7vw,5vh) scale(0.95)} }
@keyframes lx-drift-3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-5vw,-6vh) scale(1.15)} }

/* Sparkle canvas + grain sit above aurora, below content */
.lx-sparkles { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.lx-hero-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Bottom fade into the warm body (the seam) */
.lx-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 32vh; z-index: -1;
  background: linear-gradient(to bottom, transparent, var(--paper));
  pointer-events: none;
}

.lx-hero-inner {
  width: min(1180px, 100%); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 940px) { .lx-hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: 56px; } }

.lx-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--lx-glow-gold);
  margin: 0 0 22px;
}
.lx-eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: 0.7; }

.lx-h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.7rem, 6.4vw, 5.4rem); line-height: 0.98;
  letter-spacing: -0.025em; margin: 0 0 26px; color: var(--lx-hero-ink);
  text-wrap: balance;
}
.lx-h1 .lx-serif-em { font-style: italic; color: var(--lx-glow-terra); }

/* word-by-word reveal */
.lx-word { display: inline-block; overflow: hidden; vertical-align: top; }
.lx-word > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.9s var(--lx-ease);
  transition-delay: calc(var(--w, 0) * 55ms);
}
.lx-h1.in .lx-word > span { transform: none; }
@media (prefers-reduced-motion: reduce) { .lx-h1 .lx-word > span { transform: none; transition: none; } }

.lx-lede {
  font-family: var(--font-sans); font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55; color: var(--lx-hero-soft); max-width: 48ch; margin: 0 0 34px;
}
.lx-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.lx-hero-note { margin: 26px 0 0; font-size: 0.86rem; color: var(--lx-hero-soft); opacity: 0.85; }

/* ---- Product mock in a browser frame ---- */
.lx-mock-wrap { position: relative; perspective: 1400px; }
.lx-mock {
  position: relative; border-radius: 16px; overflow: hidden;
  background: #12213a;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04),
              inset 0 1px 0 rgba(255,255,255,0.08);
  transform: rotateX(6deg) rotateY(-6deg); transform-style: preserve-3d;
  transition: transform 0.4s var(--lx-ease);
}
.lx-mock-wrap:hover .lx-mock { transform: rotateX(2deg) rotateY(-2deg); }
.lx-mock-bar {
  display: flex; align-items: center; gap: 7px; padding: 11px 14px;
  background: #1a2c47; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lx-dot { width: 11px; height: 11px; border-radius: 50%; background: #55493a; }
.lx-dot:nth-child(1){ background:#e06a5c;} .lx-dot:nth-child(2){ background:#e0b24f;} .lx-dot:nth-child(3){ background:#6faa72;}
.lx-mock-url {
  margin-left: 10px; flex: 1; height: 22px; border-radius: 999px;
  background: rgba(255,255,255,0.05); display: flex; align-items: center;
  padding: 0 12px; font-family: var(--font-mono); font-size: 0.66rem; color: var(--lx-hero-soft);
}
.lx-mock-body { padding: 18px; display: grid; gap: 12px; background: linear-gradient(160deg, #14233b, #0c182c); }
.lx-mock-head { display: flex; align-items: center; justify-content: space-between; }
.lx-mock-title { font-family: var(--font-display); font-size: 1.05rem; color: var(--lx-hero-ink); }
.lx-mock-live { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; color: #8fca97; font-family: var(--font-sans); font-weight: 700; }
.lx-mock-live::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: #6faa72; box-shadow: 0 0 0 0 rgba(111,170,114,0.6); animation: lx-pulse 2s infinite; }
@keyframes lx-pulse { 0%{box-shadow:0 0 0 0 rgba(111,170,114,0.5)} 70%{box-shadow:0 0 0 8px rgba(111,170,114,0)} 100%{box-shadow:0 0 0 0 rgba(111,170,114,0)} }
.lx-mock-row {
  display: flex; align-items: center; gap: 12px; padding: 11px 13px; border-radius: 11px;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.05);
}
.lx-mock-av { width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--lx-glow-terra), var(--lx-glow-gold)); }
.lx-mock-row:nth-child(3) .lx-mock-av { background: linear-gradient(135deg, var(--lx-glow-green), #4d7a58); }
.lx-mock-line { flex: 1; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.12); }
.lx-mock-line.sm { width: 40%; height: 6px; margin-top: 6px; background: rgba(255,255,255,0.07); }
.lx-mock-pill { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  background: rgba(111,170,114,0.16); color: #8fca97; }
.lx-mock-pill.out { background: rgba(255,255,255,0.06); color: var(--lx-hero-soft); }

/* corner stat tiles */
.lx-stat-tile {
  position: absolute; z-index: 2; padding: 12px 15px; border-radius: 13px;
  background: rgba(12,22,40,0.6); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px -22px rgba(0,0,0,0.8);
}
.lx-stat-tile .n { font-family: var(--font-display); font-size: 1.5rem; color: var(--lx-hero-ink); line-height: 1; font-variant-numeric: tabular-nums; }
.lx-stat-tile .l { font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--lx-hero-soft); margin-top: 5px; }
.lx-stat-tl { top: -18px; left: -16px; }
.lx-stat-br { bottom: -18px; right: -14px; }
@media (max-width: 939px) { .lx-stat-tile { position: static; display: inline-block; margin: 10px 10px 0 0; } }

/* scroll cue */
.lx-scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lx-hero-soft); display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.7;
}
.lx-scroll-cue span { width: 1px; height: 34px; background: linear-gradient(var(--lx-glow-gold), transparent); animation: lx-cue 2.2s ease-in-out infinite; }
@keyframes lx-cue { 0%,100%{opacity:0.3; transform:scaleY(0.6)} 50%{opacity:1; transform:scaleY(1)} }

/* =============================================================
 *  WARM BODY — shared section scaffolding
 * ============================================================= */
.lx-section { position: relative; padding: clamp(72px, 11vw, 150px) clamp(18px, 4vw, 48px); }
.lx-wrap { width: min(1180px, 100%); margin: 0 auto; }
.lx-kicker { font-family: var(--font-sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; }
.lx-h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.04; letter-spacing: -0.02em; margin: 0 0 20px; color: var(--ink); text-wrap: balance; }
.lx-h2 .lx-serif-em { font-style: italic; color: var(--accent); }
.lx-section-lede { font-family: var(--font-sans); font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.55; color: var(--ink-soft); max-width: 54ch; margin: 0; }
.lx-section-head { max-width: 720px; margin: 0 0 clamp(40px, 6vw, 68px); }

/* ---- Value-word marquee ---- */
.lx-marquee { position: relative; overflow: hidden; padding: 26px 0; border-block: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.lx-marquee-track { display: flex; gap: 0; width: max-content; animation: lx-marq 34s linear infinite; }
.lx-marquee:hover .lx-marquee-track { animation-play-state: paused; }
.lx-marquee-track span { font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem, 3vw, 2.4rem); color: var(--ink); opacity: 0.75; padding: 0 30px; white-space: nowrap; }
.lx-marquee-track span::after { content: "·"; margin-left: 60px; color: var(--accent); opacity: 0.6; }
@keyframes lx-marq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .lx-marquee-track { animation: none; } }

/* ---- Bento grid ---- */
.lx-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(12px, 1.4vw, 18px); grid-auto-rows: minmax(150px, auto); }
@media (max-width: 860px) { .lx-bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lx-bento { grid-template-columns: 1fr; } }

.lx-tile {
  --mx: 50%; --my: 50%;
  position: relative; overflow: hidden;
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: 20px; border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--lx-ease), box-shadow 0.35s ease, border-color 0.3s ease;
  display: flex; flex-direction: column; gap: 10px;
}
.lx-tile::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
  background: radial-gradient(340px circle at var(--mx) var(--my), color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%);
}
.lx-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.lx-tile:hover::before { opacity: 1; }
.lx-tile-span4 { grid-column: span 4; grid-row: span 2; }
.lx-tile-span3 { grid-column: span 3; }
.lx-tile-span2 { grid-column: span 2; }
@media (max-width: 860px) {
  .lx-tile-span4, .lx-tile-span3, .lx-tile-span2 { grid-column: span 1; grid-row: auto; }
}
.lx-tile.flagship { background: linear-gradient(150deg, var(--accent-soft), var(--surface)); }
.lx-tile-tag { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent); }
.lx-tile h3 { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.7rem); margin: 0; color: var(--ink); letter-spacing: -0.01em; }
.lx-tile p { font-family: var(--font-sans); font-size: 0.96rem; line-height: 1.5; color: var(--ink-soft); margin: 0; max-width: 46ch; }
.lx-tile .lx-tile-foot { margin-top: auto; }
.lx-tile-link { font-family: var(--font-sans); font-weight: 700; font-size: 0.9rem; color: var(--accent); text-decoration: none; display: inline-flex; gap: 6px; align-items: center; }
.lx-tile-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #fff; font-weight: 800; font-family: var(--font-sans); font-size: 0.72rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); }

/* mini mock inside flagship tile */
.lx-tile-visual { margin-top: 8px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); padding: 12px; display: grid; gap: 8px; }
.lx-tile-visual .bar { height: 9px; border-radius: 999px; background: linear-gradient(90deg, var(--accent), transparent); }
.lx-tile-visual .bar:nth-child(2){ width: 70%; background: linear-gradient(90deg, var(--accent-2), transparent);}
.lx-tile-visual .bar:nth-child(3){ width: 45%; }

/* =============================================================
 *  SCROLLYTELLING — pinned panel, stepped captions
 * ============================================================= */
.lx-scrolly { position: relative; }
.lx-scrolly-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .lx-scrolly-grid { grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: start; } }

.lx-scrolly-steps { display: flex; flex-direction: column; }
.lx-step { padding: clamp(30px, 8vh, 90px) 0; border-top: 1px solid var(--line); }
.lx-step:first-child { border-top: none; }
.lx-step-n { font-family: var(--font-mono); font-size: 0.8rem; color: var(--taupe); font-variant-numeric: tabular-nums; }
.lx-step h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.3rem); margin: 10px 0 12px; color: var(--ink); letter-spacing: -0.015em; transition: color 0.3s ease; }
.lx-step p { font-family: var(--font-sans); font-size: 1.02rem; line-height: 1.55; color: var(--ink-soft); margin: 0; max-width: 44ch; }
.lx-step { opacity: 0.4; transition: opacity 0.4s ease; }
.lx-step.is-active { opacity: 1; }
.lx-step.is-active h3 { color: var(--accent); }

.lx-scrolly-stage { position: relative; }
@media (min-width: 900px) { .lx-scrolly-sticky { position: sticky; top: 18vh; } }
.lx-scrolly-visual {
  position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; min-height: 300px;
}
.lx-panel { position: absolute; inset: 0; opacity: 0; transform: scale(1.03); transition: opacity 0.6s var(--lx-ease), transform 0.6s var(--lx-ease);
  padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.lx-panel.is-active { opacity: 1; transform: none; }
.lx-panel-tag { font-family: var(--font-sans); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.lx-panel-1 { background: radial-gradient(120% 100% at 20% 0%, var(--accent-soft), var(--surface)); }
.lx-panel-2 { background: radial-gradient(120% 100% at 80% 0%, color-mix(in srgb, var(--accent-2) 20%, var(--surface)), var(--surface)); }
.lx-panel-3 { background: radial-gradient(120% 100% at 50% 0%, color-mix(in srgb, var(--gold) 22%, var(--surface)), var(--surface)); }
.lx-panel .row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: color-mix(in srgb, var(--surface) 70%, transparent); border: 1px solid var(--line); }
.lx-panel .av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--gold)); flex: none; }
.lx-panel .ln { flex: 1; height: 9px; border-radius: 999px; background: var(--line-strong); }
.lx-panel .chip { font-family: var(--font-sans); font-size: 0.64rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--ok-bg); color: var(--ok); }
.lx-panel .big { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem); color: var(--ink); font-variant-numeric: tabular-nums; }

/* =============================================================
 *  STAT BAND (count-up, honest capability figures)
 * ============================================================= */
.lx-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 40px); text-align: center; }
@media (max-width: 640px) { .lx-stats { grid-template-columns: 1fr; gap: 28px; } }
.lx-stat .n { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.lx-stat .n .u { color: var(--accent); }
.lx-stat .l { font-family: var(--font-sans); font-size: 0.95rem; color: var(--taupe); margin-top: 12px; }

/* =============================================================
 *  CLOSING CTA — dark reprise
 * ============================================================= */
.lx-cta {
  position: relative; overflow: hidden; isolation: isolate;
  margin: 0 clamp(12px, 3vw, 40px) clamp(24px, 4vw, 48px);
  border-radius: 28px;
  background: radial-gradient(120% 130% at 50% 0%, var(--lx-night-2), var(--lx-night));
  color: var(--lx-hero-ink);
  padding: clamp(60px, 10vw, 120px) clamp(24px, 5vw, 80px);
  text-align: center;
}
.lx-cta .lx-blob { opacity: 0.4; }
.lx-cta-inner { position: relative; z-index: 2; width: min(720px, 100%); margin: 0 auto; }
.lx-cta h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 18px; color: var(--lx-hero-ink); text-wrap: balance; }
.lx-cta h2 .lx-serif-em { font-style: italic; color: var(--lx-glow-terra); }
.lx-cta p { font-family: var(--font-sans); font-size: 1.1rem; color: var(--lx-hero-soft); margin: 0 0 32px; }

/* =============================================================
 *  FOOTER — quiet, warm
 * ============================================================= */
.lx-footer { padding: clamp(40px, 6vw, 64px) clamp(18px, 4vw, 48px); border-top: 1px solid var(--line); background: var(--surface-2); }
.lx-footer-inner { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 24px 40px; align-items: center; }
@media (max-width: 640px) { .lx-footer-inner { grid-template-columns: 1fr; } }
.lx-footer-brand { display: flex; align-items: center; gap: 12px; }
.lx-footer-brand strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.lx-footer-brand .m { font-size: 0.8rem; color: var(--taupe); }
.lx-footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.lx-footer-links a { font-family: var(--font-sans); font-weight: 600; font-size: 0.9rem; color: var(--ink-soft); text-decoration: none; }
.lx-footer-links a:hover { color: var(--accent); }
.lx-footer-fine { grid-column: 1 / -1; font-size: 0.78rem; color: var(--taupe); margin: 4px 0 0; }
