/* ═══════════════════════════════════════════════════════════════════════════
   Jobeezy homepage — 2026 premium layer  (scope: /index.html only)
   Loaded AFTER brand.css + homepage-polish.css. Never edits brand.css.
   Direction: Apple-premium evolution of the Voltfield identity. Keeps the
   volt accent (#d6ff3e) + Inter, sheds the hard neobrutalist offset shadows
   for soft layered depth, glass, and cinematic device framing.
   Connective motif: "it works while you don't" — night → sunrise.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Soft, layered depth (replaces hard `Npx Npx 0` offsets on the homepage) */
  --depth-1: 0 1px 2px rgba(20, 18, 16, 0.04), 0 2px 8px rgba(20, 18, 16, 0.05);
  --depth-2: 0 2px 6px rgba(20, 18, 16, 0.06), 0 14px 30px -12px rgba(20, 18, 16, 0.14);
  --depth-3: 0 6px 16px rgba(20, 18, 16, 0.08), 0 40px 80px -28px rgba(20, 18, 16, 0.30);
  --depth-float: 0 10px 24px -10px rgba(20, 18, 16, 0.22), 0 30px 60px -30px rgba(20, 18, 16, 0.35);
  /* Soft volt glow (radial, not a 1px ring) */
  --volt-soft: 0 0 0 1px rgba(47, 42, 40, 0.06), 0 18px 50px -16px rgba(167, 200, 40, 0.45);
  --volt-rim: 0 0 0 1.5px rgba(47, 42, 40, 0.9);
  /* Night palette for the overnight motif */
  --night-0: #161a2e;
  --night-1: #1f2440;
  --dawn-1: #3a2f4d;
  --dawn-2: #8a5a48;
  --sunrise: #f0a35e;
  /* Premium easing */
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-emph: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Global homepage refinements ─────────────────────────────────────────── */
/* Smooth scrolling for anchor jumps, premium text rendering. */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Soften the neobrutalist primary/ghost buttons into premium pills with
   real depth + a volt sheen on hover. Scoped to the homepage <main>. */
main .btn-sharp {
  border-radius: 14px;
  border: 1px solid transparent;
  transition: transform var(--dur-2) var(--ease-soft), box-shadow var(--dur-2) var(--ease-soft),
    background var(--dur-2) var(--ease-soft);
  will-change: transform;
}
main .btn-sharp-primary {
  background: var(--surface-deep);
  color: #fff;
  box-shadow: var(--depth-2);
}
main .btn-sharp-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--depth-3), var(--volt-soft);
}
main .btn-sharp-primary::after {
  /* volt underglow swipe */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(214, 255, 62, 0.18) 50%, transparent 70%);
  opacity: 0;
  transition: opacity var(--dur-2) var(--ease-soft);
  pointer-events: none;
}
main .btn-sharp-primary { position: relative; overflow: hidden; }
main .btn-sharp-primary:hover::after { opacity: 1; }
main .btn-sharp-ghost {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--fg);
  box-shadow: var(--depth-1);
}
main .btn-sharp-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--surface-deep);
  box-shadow: var(--depth-2);
}

/* Reusable glass surface */
.glass {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--depth-2);
}

/* Reveal-on-scroll primitive (JS adds .is-in). */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CINEMATIC DEVICE FRAME  (.dvc) — shared by hero + interview
   Realistic titanium bezel, dynamic-island, screen inner-shadow + glare.
   ═══════════════════════════════════════════════════════════════════════════ */
.dvc {
  --dvc-w: 300px;
  --dvc-r: 46px;
  width: var(--dvc-w);
  position: relative;
  aspect-ratio: 300 / 620;
  margin-inline: auto;
}
.dvc-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--dvc-r);
  padding: 10px;
  background: linear-gradient(150deg, #4a4540 0%, #2a2521 42%, #3b3531 70%, #211d1a 100%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    var(--depth-3);
  overflow: hidden;
}
.dvc-screen {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: calc(var(--dvc-r) - 11px);
  background: #fafaf7;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(20, 18, 16, 0.18);
}
.dvc-island {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 24px;
  border-radius: 999px;
  background: #0c0a09;
  z-index: 6;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.dvc-glare {
  position: absolute;
  inset: 0;
  border-radius: var(--dvc-r);
  pointer-events: none;
  z-index: 7;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 32%);
  mix-blend-mode: screen;
}

/* ── In-phone app UI (refined to match the real app) ─────────────────────── */
.appui { position: absolute; inset: 0; display: flex; flex-direction: column; padding: 40px 14px 14px; font-family: var(--font-sans); }
.appui-status { display: flex; justify-content: space-between; align-items: center; var(--fs-body); font-weight: 700; color: #2f2a28; padding: 0 4px 8px; }
.appui-status-ic { display: inline-flex; gap: 5px; color: #2f2a28; }
.appui-head { display: flex; align-items: center; justify-content: space-between; padding: 2px 4px 12px; }
.appui-hello { var(--fs-body); font-weight: 800; letter-spacing: -0.02em; color: #2f2a28; }
.appui-sub { var(--fs-body); color: #6b7280; margin-top: 2px; }
.appui-ava { width: 34px; height: 34px; border-radius: 50%; background: var(--surface-deep); color: #d6ff3e; font-weight: 800; var(--fs-body); display: grid; place-items: center; }
.appui-feed { display: flex; flex-direction: column; gap: 9px; overflow: hidden; }

.jc {
  background: #fff;
  border: 1px solid rgba(20, 18, 16, 0.08);
  border-radius: 16px;
  padding: 11px 12px;
  box-shadow: var(--depth-1);
}
.jc-row { display: flex; align-items: center; gap: 10px; }
.jc-mark { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; font-weight: 800; var(--fs-body); color: #fff; flex-shrink: 0; }
.jc-body { flex: 1; min-width: 0; }
.jc-title { var(--fs-body); font-weight: 700; color: #2f2a28; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jc-meta { var(--fs-body); color: #6b7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jc-applied-pill { margin-top: 9px; display: inline-flex; align-items: center; gap: 6px; var(--fs-body); font-weight: 700; color: #2f2a28; background: var(--accent); border-radius: 999px; padding: 4px 9px; }
.jc-applied-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #2f2a28; }
.jc-ghost { opacity: 0.55; }
.jc-ghost .jc-title { text-decoration: line-through; text-decoration-color: rgba(180, 35, 24, 0.6); }
.jc-mark-ghost { background: #d6d3cc; color: #8a857d; }

/* Animated SVG fit-score ring */
.fit-ring { position: relative; width: 40px; height: 40px; flex-shrink: 0; }
.fit-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.fit-ring-track { fill: none; stroke: rgba(20, 18, 16, 0.1); stroke-width: 4; }
.fit-ring-bar { fill: none; stroke-width: 4; stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 1.1s var(--ease-soft); }
.fit-ring.is-in .fit-ring-bar { stroke-dashoffset: var(--off, 8); }
.fit-ring-num { position: absolute; inset: 0; display: grid; place-items: center; var(--fs-body); font-weight: 800; color: #2f2a28; }
.fit-good .fit-ring-bar { stroke: #1f9d57; }
.fit-ok .fit-ring-bar { stroke: #d6a93e; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — living scene (aura + device + orbiting glass moment cards)
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-stage { position: relative; display: grid; place-items: center; min-height: 480px; }
.hero-aura {
  position: absolute;
  width: 120%;
  height: 120%;
  left: -10%;
  top: -8%;
  background:
    radial-gradient(42% 38% at 60% 38%, rgba(214, 255, 62, 0.42), transparent 70%),
    radial-gradient(50% 50% at 38% 70%, rgba(167, 226, 177, 0.30), transparent 72%);
  filter: blur(8px);
  z-index: 0;
  animation: auraFloat 14s var(--ease-soft) infinite alternate;
}
@keyframes auraFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.08); }
}
.hero-dvc { position: relative; z-index: 2; --dvc-w: 286px; transform: rotate(0.5deg); transition: transform var(--dur-3) var(--ease-soft); }
.hero-stage:hover .hero-dvc { transform: rotate(0deg) translateY(-4px); }

/* Orbiting glass "moment" cards */
.hero-orbit {
  position: absolute;
  z-index: 3;
  border-radius: 16px;
  padding: 10px 13px;
  font-family: var(--font-sans);
  var(--fs-body);
  font-weight: 700;
  color: #2f2a28;
  letter-spacing: -0.01em;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--depth-float);
  animation: orbitBob 6s var(--ease-soft) infinite alternate;
}
.hero-orbit-fit { top: 12%; left: -4%; --bob: -8px; }
.hero-orbit-iv { bottom: 20%; right: -6%; --bob: 9px; animation-delay: -2s; }
.hero-orbit-night { bottom: 6%; left: 4%; --bob: -6px; animation-delay: -4s; }
.hero-orbit small { display: block; var(--fs-body); font-weight: 600; color: #6b7280; letter-spacing: 0.02em; text-transform: uppercase; }
.hero-orbit-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(214, 255, 62, 0.3); margin-right: 6px; }
@keyframes orbitBob {
  0% { transform: translateY(0); }
  100% { transform: translateY(var(--bob, 8px)); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-aura, .hero-orbit, .hero-dvc { animation: none !important; }
}
@media (max-width: 620px) {
  .hero-orbit-fit { left: 0; }
  .hero-orbit-iv { right: 0; }
  .hero-orbit { var(--fs-body); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS — "while you were reading this" (live, not vanity metrics)
   ═══════════════════════════════════════════════════════════════════════════ */
.stats26 { padding: clamp(40px, 5vw, 72px) 0; background: var(--bg); border-top: 1px solid var(--border-subtle); }
.stats26-head { text-align: center; margin-bottom: clamp(28px, 3.2vw, 44px); }
.stats26-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); var(--fs-body); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-muted); background: rgba(255, 255, 255, 0.7); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 999px; box-shadow: var(--depth-1);
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #1f9d57; box-shadow: 0 0 0 0 rgba(31, 157, 87, 0.5); animation: livePulse 2s ease-out infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(31, 157, 87, 0.5); } 100% { box-shadow: 0 0 0 9px rgba(31, 157, 87, 0); } }
.stats26-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(26px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.035em; color: var(--fg); margin-top: 14px; }
.stats26-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 20px); max-width: 1000px; margin-inline: auto; }
.stat26 {
  position: relative; overflow: hidden;
  background: var(--surface-warm); border: 1px solid var(--border); border-radius: 22px;
  padding: clamp(20px, 2.4vw, 30px); box-shadow: var(--depth-2);
  transition: transform var(--dur-2) var(--ease-soft), box-shadow var(--dur-2) var(--ease-soft);
}
.stat26:hover { transform: translateY(-4px); box-shadow: var(--depth-3); }
.stat26::before { /* volt corner bloom */
  content: ""; position: absolute; top: -40%; right: -30%; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 255, 62, 0.5), transparent 70%); filter: blur(6px); pointer-events: none;
}
.stat26-num {
  position: relative; font-family: var(--font-mono); font-weight: 500; font-variant-numeric: tabular-nums;
  font-size: clamp(34px, 4.4vw, 56px); line-height: 1; letter-spacing: -0.03em; color: var(--fg);
}
.stat26-num .tick { color: #1f9d57; var(--fs-body)em; vertical-align: super; margin-left: 6px; font-weight: 600; opacity: 0; transition: opacity 0.3s; }
.stat26-num .tick.show { opacity: 1; }
.stat26-label { position: relative; margin-top: 12px; var(--fs-body); font-weight: 600; color: var(--fg-secondary); letter-spacing: -0.01em; max-width: 22ch; }
.stat26-spark { position: relative; display: block; width: 100%; height: 28px; margin-top: 16px; overflow: visible; }
.stat26-spark path { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 1px 4px rgba(167, 200, 40, 0.5)); stroke-dasharray: 260; stroke-dashoffset: 260; transition: stroke-dashoffset 1.4s var(--ease-soft); }
.stat26.is-in .stat26-spark path { stroke-dashoffset: 0; }
.stat26-foot { text-align: center; margin-top: 22px; var(--fs-body); color: var(--fg-subtle); font-style: italic; }
@media (max-width: 760px) {
  .stats26-grid { grid-template-columns: 1fr; max-width: 460px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CINEMA — "overnight filmstrip" (scroll-scrubbed night → sunrise)
   ═══════════════════════════════════════════════════════════════════════════ */
.cine26 {
  position: relative; overflow: hidden;
  padding: clamp(72px, 9vw, 128px) 0;
  /* --dawn: 0 (deep night) … 1 (sunrise), driven by JS scroll-scrub */
  --dawn: 0;
}
.cine26-sky {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--night-0), var(--dawn-2) calc(var(--dawn) * 100%)) 0%,
      color-mix(in srgb, var(--night-1), var(--sunrise) calc(var(--dawn) * 85%)) 60%,
      color-mix(in srgb, var(--dawn-1), #ffd9a8 calc(var(--dawn) * 100%)) 100%);
  transition: background 0.4s linear;
}
.cine26-sun { /* rising sun glow, opacity follows dawn */
  position: absolute; left: 50%; bottom: -160px; transform: translateX(-50%); width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 138, 0.9), rgba(240, 163, 94, 0.4) 45%, transparent 70%);
  opacity: calc(var(--dawn) * 0.95); z-index: 0; pointer-events: none; transition: opacity 0.4s linear;
}
.cine26-stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: calc(1 - var(--dawn)); transition: opacity 0.4s linear;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 18%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1.2px 1.2px at 28% 42%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.6px 1.6px at 52% 12%, rgba(255,255,255,0.85), transparent),
    radial-gradient(1.1px 1.1px at 72% 30%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 88% 16%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1.2px 1.2px at 40% 64%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.3px 1.3px at 64% 72%, rgba(255,255,255,0.55), transparent);
}
.cine26-inner { position: relative; z-index: 2; }
.cine26-head { text-align: center; margin-bottom: clamp(28px, 3vw, 44px); }
.cine26-head .eyebrow-lg { display: inline-block; font-family: var(--font-mono); var(--fs-body); letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; text-shadow: 0 0 18px rgba(214, 255, 62, 0.5); }
.cine26-head h2 { font-family: var(--font-display); font-weight: 900; color: #fff; font-size: clamp(32px, 4.4vw, 58px); line-height: 1.02; letter-spacing: -0.04em; text-shadow: 0 2px 30px rgba(0,0,0,0.4); }
.cine26-head h2 em { font-style: normal; color: var(--accent); }

.cine26-stage { display: grid; grid-template-columns: 132px minmax(0, 300px) 1fr; gap: clamp(20px, 3vw, 52px); align-items: center; max-width: 1040px; margin-inline: auto; }

/* time rail */
.cine26-rail { position: relative; height: 380px; align-self: center; padding-left: 18px; }
.cine26-rail-line { position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: rgba(255,255,255,0.22); border-radius: 2px; }
.cine26-rail-fill { position: absolute; left: 5px; top: 6px; width: 2px; background: var(--accent); border-radius: 2px; height: calc(var(--dawn) * 100%); max-height: calc(100% - 12px); box-shadow: 0 0 10px rgba(214,255,62,0.7); transition: height 0.4s linear; }
.cine26-tick { position: absolute; left: 0; transform: translateY(-50%); display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); var(--fs-body); color: rgba(255,255,255,0.75); white-space: nowrap; }
.cine26-tick::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); border: 1.5px solid rgba(255,255,255,0.5); flex-shrink: 0; }
.cine26-tick.is-on { color: #fff; font-weight: 600; }
.cine26-tick.is-on::before { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 10px rgba(214,255,62,0.8); }

/* device + beats */
.cine26-dvc { --dvc-w: 300px; z-index: 2; box-shadow: var(--depth-3), 0 40px 90px -30px rgba(0,0,0,0.6); }
.cbeat { position: absolute; inset: 0; padding: 40px 14px 16px; display: flex; flex-direction: column; opacity: 0; transform: scale(0.98); transition: opacity 0.5s var(--ease-soft), transform 0.5s var(--ease-soft); pointer-events: none; }
.cbeat.is-on { opacity: 1; transform: none; }
.cbeat-eyebrow { font-family: var(--font-mono); var(--fs-body); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #6b7280; padding: 0 4px 10px; }

/* beat 1 — sign up */
.cb-field { background: #f3f3ef; border: 1px solid rgba(20,18,16,0.12); border-radius: 12px; padding: 12px 14px; margin: 0 4px 10px; }
.cb-field-label { var(--fs-body); color: #6b7280; font-weight: 600; }
.cb-field-val { var(--fs-body); color: #2f2a28; font-weight: 600; margin-top: 3px; }
.cb-btn { margin: 6px 4px 0; background: var(--surface-deep); color: #d6ff3e; text-align: center; font-weight: 700; var(--fs-body); padding: 13px; border-radius: 12px; }

/* beat 2 — résumé scan */
.cb-paper { position: relative; margin: 0 4px; background: #fff; border: 1px solid rgba(20,18,16,0.1); border-radius: 12px; padding: 16px 14px; overflow: hidden; box-shadow: var(--depth-1); }
.cb-line { height: 7px; border-radius: 3px; background: #e7e6e0; margin-bottom: 9px; transition: background 0.3s; }
.cb-line.lit { background: linear-gradient(90deg, #c6e85a, #e7e6e0); }
.cb-beam { position: absolute; left: 0; right: 0; height: 30px; top: -30px; background: linear-gradient(180deg, transparent, rgba(214,255,62,0.55), transparent); box-shadow: 0 0 18px rgba(214,255,62,0.7); }
.cbeat.is-on .cb-beam { animation: scanBeam 2.2s var(--ease-soft) infinite; }
@keyframes scanBeam { 0% { top: -30px; } 100% { top: 100%; } }

/* beat 3 — preferences */
.cb-pref { display: flex; align-items: center; justify-content: space-between; margin: 0 4px 9px; background: #fff; border: 1px solid rgba(20,18,16,0.1); border-radius: 12px; padding: 11px 13px; box-shadow: var(--depth-1); }
.cb-pref-txt { var(--fs-body); font-weight: 600; color: #2f2a28; }
.cb-toggle { width: 38px; height: 22px; border-radius: 999px; background: #d8d6cf; position: relative; flex-shrink: 0; transition: background 0.3s; }
.cb-toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.3); transition: left 0.3s var(--ease-soft); }
.cb-pref.on .cb-toggle { background: var(--accent); }
.cb-pref.on .cb-toggle::after { left: 18px; }

/* beat 4 — matched & applied */
.cb-count { text-align: center; font-family: var(--font-mono); var(--fs-body); color: #6b7280; padding: 0 4px 8px; font-weight: 600; }
.cb-count b { color: #2f2a28; var(--fs-body); }

.cine26-beats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.cine26-beat-cap { display: flex; gap: 14px; align-items: flex-start; opacity: 0.42; transition: opacity 0.4s var(--ease-soft); }
.cine26-beat-cap.is-on { opacity: 1; }
.cine26-beat-cap b { display: grid; place-items: center; width: 30px; height: 30px; flex-shrink: 0; border-radius: 9px; font-family: var(--font-mono); var(--fs-body); font-weight: 700; background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.cine26-beat-cap.is-on b { background: var(--accent); color: #2f2a28; border-color: var(--accent); box-shadow: 0 0 16px rgba(214,255,62,0.5); }
.cine26-beat-cap-h { font-family: var(--font-display); font-weight: 800; var(--fs-body); color: #fff; letter-spacing: -0.02em; }
.cine26-beat-cap-p { var(--fs-body); color: rgba(255,255,255,0.7); margin-top: 3px; line-height: 1.4; }

@media (max-width: 920px) {
  .cine26-stage { grid-template-columns: 1fr; justify-items: center; gap: 28px; }
  .cine26-rail { display: none; }
  .cine26-beats { width: 100%; max-width: 360px; }
}
@media (prefers-reduced-motion: reduce) {
  .cbeat.is-on .cb-beam { animation: none; display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMPARISON — "who's it working for?" split-screen (drag to flip)
   ═══════════════════════════════════════════════════════════════════════════ */
.vs26 { padding: clamp(64px, 8vw, 112px) 0; background: var(--bg); }
.vs26-head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 4vw, 52px); }
.vs26-head h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(30px, 4.2vw, 56px); line-height: 1.02; letter-spacing: -0.04em; color: var(--fg); }
.vs26-head h2 em { font-style: normal; background: var(--surface-deep); color: var(--accent); padding: 0 0.16em; border-radius: 6px; }
.vs26-head p { font-size: clamp(15px, 1.2vw, 18px); color: var(--fg-muted); margin-top: 16px; line-height: 1.5; }

.vs26-split { position: relative; max-width: 1040px; margin-inline: auto; border-radius: 28px; overflow: hidden; box-shadow: var(--depth-3); display: grid; grid-template-columns: 1fr 1fr; isolation: isolate; }
.vs26-col { position: relative; padding: clamp(26px, 3vw, 44px); min-height: 380px; }
.vs26-them { background: #ece9e3; color: #6b6760; }
.vs26-them .vs26-col-tag { color: #8a857d; }
.vs26-us { background: linear-gradient(165deg, #2f2a28, #211d1b); color: #fff; }
.vs26-col-tag { font-family: var(--font-mono); var(--fs-body); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.vs26-col-h { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.2vw, 28px); letter-spacing: -0.025em; margin: 10px 0 20px; }
.vs26-us .vs26-col-h em { font-style: normal; color: var(--accent); }
.vs26-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.vs26-list li { display: flex; gap: 11px; align-items: flex-start; var(--fs-body); line-height: 1.4; font-weight: 500; }
.vs26-ic { flex-shrink: 0; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; var(--fs-body); font-weight: 800; margin-top: 1px; }
.vs26-them .vs26-ic { background: rgba(180, 35, 24, 0.12); color: #b42318; }
.vs26-us .vs26-ic { background: var(--accent); color: #2f2a28; }
/* the "you do the work" side feels heavy/cluttered: faint stacked ghost rows */
.vs26-them::after { content: "endless scroll · copy-paste · re-tailor · repeat"; position: absolute; bottom: 18px; left: clamp(26px,3vw,44px); right: clamp(26px,3vw,44px); font-family: var(--font-mono); var(--fs-body); letter-spacing: 0.04em; color: #b6b0a6; text-transform: uppercase; }
.vs26-us::after { content: "you sleep · we apply · you interview"; position: absolute; bottom: 18px; left: clamp(26px,3vw,44px); right: clamp(26px,3vw,44px); font-family: var(--font-mono); var(--fs-body); letter-spacing: 0.04em; color: rgba(214,255,62,0.8); text-transform: uppercase; }
/* draggable divider */
.vs26-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--accent); transform: translateX(-50%); z-index: 4; box-shadow: 0 0 18px rgba(214,255,62,0.7); }
.vs26-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; border-radius: 50%; background: var(--accent); border: 2px solid #2f2a28; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; var(--fs-body); color: #2f2a28; box-shadow: var(--depth-2); }
@media (max-width: 720px) {
  .vs26-split { grid-template-columns: 1fr; }
  .vs26-divider, .vs26-handle { display: none; }
  .vs26-col { min-height: auto; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RIDES (interview) — premium device scene  (markup-only swap of the device)
   ═══════════════════════════════════════════════════════════════════════════ */
.rides-scene--2026 { position: relative; display: grid; place-items: center; min-height: 480px; }
.rides-scene--2026 .rides-aura {
  position: absolute; width: 110%; height: 110%; left: -5%; top: -5%; z-index: 0; filter: blur(8px);
  background: radial-gradient(44% 40% at 56% 42%, rgba(109, 40, 217, 0.18), transparent 70%), radial-gradient(40% 40% at 40% 70%, rgba(214,255,62,0.22), transparent 72%);
}
.rides-dvc { position: relative; z-index: 2; --dvc-w: 290px; transform: rotateY(-7deg) rotate(-0.5deg); transition: transform var(--dur-3) var(--ease-soft); }
.rides-scene--2026:hover .rides-dvc { transform: rotateY(0deg) translateY(-4px); }
.iv { position: absolute; inset: 0; padding: 40px 14px 16px; display: flex; flex-direction: column; font-family: var(--font-sans); }
.iv-eyebrow { font-family: var(--font-mono); var(--fs-body); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #6b7280; padding: 0 4px 10px; }
.iv-card { background: #fff; border: 1px solid rgba(20,18,16,0.1); border-radius: 16px; padding: 13px; box-shadow: var(--depth-1); }
.iv-card-top { display: flex; gap: 10px; align-items: center; }
.iv-logo { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-weight: 800; var(--fs-body); }
.iv-title { var(--fs-body); font-weight: 700; color: #2f2a28; }
.iv-sub { var(--fs-body); color: #6b7280; }
.iv-count { margin-top: 12px; display: flex; align-items: baseline; gap: 8px; }
.iv-count b { font-family: var(--font-mono); var(--fs-body); font-weight: 500; color: #2f2a28; letter-spacing: -0.02em; }
.iv-count span { var(--fs-body); color: #6b7280; }
.iv-when { margin-top: 10px; display: flex; justify-content: space-between; var(--fs-body); font-weight: 600; color: #2f2a28; border-top: 1px solid rgba(20,18,16,0.08); padding-top: 10px; }
.iv-list { list-style: none; margin: 14px 0 0; padding: 0; }
.iv-list li { display: flex; gap: 10px; align-items: center; var(--fs-body); font-weight: 600; color: #2f2a28; padding: 8px 0; }
.iv-tick { width: 18px; height: 18px; border-radius: 6px; display: grid; place-items: center; background: var(--accent); border: 1px solid #2f2a28; var(--fs-body); font-weight: 800; flex-shrink: 0; opacity: 0; transform: scale(0.6); transition: opacity 0.4s var(--ease-soft), transform 0.4s var(--ease-spring); }
.rides-scene--2026.is-in .iv-tick { opacity: 1; transform: none; }
.rides-scene--2026.is-in .iv-list li:nth-child(2) .iv-tick { transition-delay: 0.15s; }
.rides-scene--2026.is-in .iv-list li:nth-child(3) .iv-tick { transition-delay: 0.3s; }
.iv-wave { display: flex; align-items: flex-end; gap: 3px; height: 30px; margin-top: 12px; padding: 0 2px; }
.iv-wave span { flex: 1; background: var(--accent); border-radius: 2px; height: 30%; animation: ivWave 1.1s var(--ease-soft) infinite alternate; }
.iv-wave span:nth-child(even) { animation-delay: -0.4s; }
.iv-wave span:nth-child(3n) { animation-delay: -0.7s; }
@keyframes ivWave { 0% { height: 18%; } 100% { height: 90%; } }
/* orbiting glass cards */
.rides-orbit { position: absolute; z-index: 3; border-radius: 14px; padding: 10px 12px; var(--fs-body); font-weight: 700; color: #2f2a28; background: rgba(255,255,255,0.74); backdrop-filter: blur(14px) saturate(1.5); -webkit-backdrop-filter: blur(14px) saturate(1.5); border: 1px solid rgba(255,255,255,0.8); box-shadow: var(--depth-float); animation: orbitBob 6s var(--ease-soft) infinite alternate; }
.rides-orbit small { display: block; var(--fs-body); font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: 0.02em; }
.rides-orbit-talk { top: 14%; right: -6%; --bob: -8px; }
.rides-orbit-conf { bottom: 16%; left: -4%; --bob: 8px; animation-delay: -3s; }
.rides-conf-bar { width: 90px; height: 6px; border-radius: 3px; background: rgba(20,18,16,0.1); margin-top: 6px; overflow: hidden; }
.rides-conf-bar i { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 3px; transition: width 1.2s var(--ease-soft); }
.rides-scene--2026.is-in .rides-conf-bar i { width: 86%; }
@media (prefers-reduced-motion: reduce) {
  .rides-dvc, .rides-orbit, .iv-wave span { animation: none !important; }
  .rides-dvc { transform: none; }
}
@media (max-width: 620px) {
  .rides-dvc { transform: none; --dvc-w: 270px; }
  .rides-orbit-talk { right: 0; }
  .rides-orbit-conf { left: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MANIFESTO — full-bleed dark "night" band (the page's punctuation)
   ═══════════════════════════════════════════════════════════════════════════ */
.manifesto {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 140% at 50% -10%, #3a342f 0%, #2f2a28 45%, #211d1b 100%) !important;
  padding-top: clamp(80px, 9vw, 132px) !important;
  padding-bottom: clamp(80px, 9vw, 132px) !important;
}
.manifesto::before { /* faint volt aurora */
  content: ""; position: absolute; width: 700px; height: 360px; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(214, 255, 62, 0.12), transparent 65%); filter: blur(20px); pointer-events: none;
}
.manifesto::after { /* subtle grain */
  content: ""; position: absolute; inset: 0; opacity: 0.04; pointer-events: none; mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,0.6) 0.5px, transparent 0.6px); background-size: 4px 4px;
}
.manifesto .manifesto-text { position: relative; z-index: 2; color: #f4f2ec !important; }
.manifesto .manifesto-text em {
  font-style: normal; background: transparent !important; color: var(--accent) !important; padding: 0 !important;
  position: relative; -webkit-text-fill-color: var(--accent);
}
/* volt underline that "draws" when the band reveals (JS adds .is-in) */
.manifesto .manifesto-text em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 0.09em; background: var(--accent);
  border-radius: 2px; transform: scaleX(0); transform-origin: left; box-shadow: 0 0 14px rgba(214,255,62,0.7);
  transition: transform 0.8s var(--ease-soft);
}
.manifesto.is-in .manifesto-text em::after { transform: scaleX(1); }
.manifesto.is-in .manifesto-text em:last-child::after { transition-delay: 0.25s; }
@media (prefers-reduced-motion: reduce) {
  .manifesto .manifesto-text em::after { transform: scaleX(1); transition: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DOWNLOAD — premium "choose your way in" trio (Web is the hero path)
   ═══════════════════════════════════════════════════════════════════════════ */
.download-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 12px !important; max-width: 100%; }
.dl-card {
  background: var(--surface-warm) !important; border: 1px solid var(--border) !important;
  border-radius: 22px !important; box-shadow: var(--depth-2) !important; padding: 14px 16px !important;
  transition: transform var(--dur-2) var(--ease-soft), box-shadow var(--dur-2) var(--ease-soft), border-color var(--dur-2) var(--ease-soft) !important;
  min-height: auto !important;
  overflow: hidden;
}
.dl-card:hover { transform: translateY(-3px) !important; box-shadow: var(--depth-3) !important; }
.dl-ico { color: var(--fg); }
/* all three download cards: flex column so the footer pins to the bottom and
   the middle preview fills the card (no "blank box" look). */
.dl-card { display: flex !important; flex-direction: column; }
.dl-card-foot { margin-top: auto; }
.dl-big {
  font-size: 13px !important;
  line-height: 1.15 !important;
  white-space: normal !important;
  word-break: break-word;
}
.dl-web { position: relative; overflow: hidden; background: linear-gradient(165deg, #f7fbe6, var(--surface-warm)) !important; border-color: rgba(47,42,40,0.5) !important; }
.dl-web:hover { border-color: #2f2a28 !important; box-shadow: var(--depth-3), var(--volt-soft) !important; }
/* inline "instant" badge (no longer an absolute overlay over the label) */
.dl-web-badge { align-self: flex-start; margin-top: 14px; font-family: var(--font-mono); var(--fs-body); font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #2f2a28; background: var(--accent); border-radius: 999px; padding: 4px 11px; box-shadow: var(--depth-1); }

/* iPhone + Android cards: device-relevant notification micro-previews */
.dl-device { margin-top: 10px; height: 56px; border-radius: 10px; overflow: hidden; display: flex; align-items: center; padding: 8px; border: 1px solid rgba(20, 18, 16, 0.1); }
.dl-device-ios { background: radial-gradient(120% 120% at 30% 0%, #232838, #0e1016); }
.dl-device-android { background: #e9ebe4; }
.dl-notif { display: flex; align-items: center; gap: 6px; width: 100%; padding: 6px 7px; border-radius: 8px; box-shadow: var(--depth-1); transform: translateY(-140%); opacity: 0; animation: dlNotifIn 4.4s var(--ease-soft) infinite; }
.dl-notif-ios { background: rgba(255, 255, 255, 0.14); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.18); }
.dl-notif-ios .dl-notif-tx b, .dl-notif-ios .dl-notif-meta { color: #fff; }
.dl-notif-ios .dl-notif-tx span { color: rgba(255, 255, 255, 0.78); }
.dl-notif-android { background: #fff; }
.dl-device-android .dl-notif { animation-delay: -2.2s; }
.dl-notif-ic { width: 20px; height: 20px; border-radius: 6px; background: #0a0c10; color: var(--accent); font-family: var(--font-display); font-weight: 800; var(--fs-body); display: grid; place-items: center; flex-shrink: 0; }
.dl-notif-tx { flex: 1; min-width: 0; line-height: 1.2; font-size: 10px; }
.dl-notif-tx b { display: block; font-size: 10px; font-weight: 800; color: #2f2a28; }
.dl-notif-tx span { display: block; font-size: 9px; color: #6b7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dl-notif-meta { font-size: 9px; font-weight: 600; color: #9aa2ae; flex-shrink: 0; align-self: flex-start; }
@keyframes dlNotifIn {
  0% { transform: translateY(-140%); opacity: 0; }
  10%, 84% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-140%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .dl-notif { animation: none; transform: none; opacity: 1; }
}
/* tiny live browser-chrome micro-preview inside the web card */
.dl-browser { margin-top: 10px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(20,18,16,0.12); background: #fff; box-shadow: var(--depth-1); }
.dl-browser-bar { display: flex; align-items: center; gap: 4px; padding: 5px 7px; background: #ecebe5; }
.dl-browser-bar i { width: 5px; height: 5px; border-radius: 50%; background: #c9c6bd; }
.dl-browser-url { margin-left: 6px; flex: 1; height: 9px; border-radius: 4px; background: #fff; var(--fs-body); color: #6b7280; display: flex; align-items: center; padding: 0 5px; font-family: var(--font-mono); font-size: 9px; }
.dl-browser-body { height: 38px; padding: 6px; display: flex; flex-direction: column; gap: 4px; }
.dl-browser-row { height: 9px; border-radius: 3px; background: #eceae3; }
.dl-browser-row.lit { background: linear-gradient(90deg, var(--accent), #eceae3); }
@media (max-width: 860px) { .download-grid { grid-template-columns: 1fr !important; max-width: 420px; margin-inline: auto; } }

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ — "the honest stuff" (conversational, not a stock accordion)
   ═══════════════════════════════════════════════════════════════════════════ */
.faq26 { padding: clamp(64px, 8vw, 112px) 0; background: var(--surface-warm); border-top: 1px solid var(--border-subtle); }
.faq26-head { text-align: center; margin-bottom: clamp(28px, 3.4vw, 48px); }
.faq26-head .eyebrow-lg { display: inline-block; font-family: var(--font-mono); var(--fs-body); letter-spacing: 0.24em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 16px; }
.faq26-head h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 3.8vw, 50px); letter-spacing: -0.035em; color: var(--fg); line-height: 1.04; }
.faq26-thread { max-width: 680px; margin-inline: auto; display: flex; flex-direction: column; gap: 16px; }
.faq26-q { align-self: flex-end; max-width: 80%; background: var(--surface-deep); color: #fff; border-radius: 18px 18px 4px 18px; padding: 13px 17px; var(--fs-body); font-weight: 600; box-shadow: var(--depth-2); cursor: pointer; transition: transform var(--dur-1) var(--ease-soft); border: none; text-align: left; font-family: var(--font-sans); width: fit-content; }
.faq26-q:hover { transform: translateY(-1px); }
.faq26-q::after { content: " ›"; color: var(--accent); font-weight: 800; transition: transform 0.3s; display: inline-block; }
.faq26-item.open .faq26-q::after { transform: rotate(90deg); }
.faq26-a { align-self: flex-start; max-width: 84%; background: #fff; color: var(--fg-secondary); border: 1px solid var(--border); border-radius: 4px 18px 18px 18px; padding: 0 17px; var(--fs-body); line-height: 1.55; box-shadow: var(--depth-1); max-height: 0; overflow: hidden; opacity: 0; visibility: hidden; transition: max-height 0.45s var(--ease-soft), opacity 0.3s var(--ease-soft), padding 0.45s var(--ease-soft), visibility 0s linear 0.45s; }
.faq26-item.open .faq26-a { max-height: 320px; opacity: 1; visibility: visible; padding: 14px 17px; transition: max-height 0.45s var(--ease-soft), opacity 0.3s var(--ease-soft), padding 0.45s var(--ease-soft), visibility 0s; }
.faq26-item { display: flex; flex-direction: column; gap: 10px; }
.faq26-a b { color: var(--fg); }
.faq26-a .volt { color: #1f9d57; font-weight: 700; }
.faq26-avatar { display: inline-flex; align-items: center; gap: 8px; var(--fs-body); font-weight: 700; color: var(--fg-muted); margin-bottom: 4px; align-self: flex-start; }
.faq26-avatar i { width: 22px; height: 22px; border-radius: 50%; background: var(--surface-deep); color: var(--accent); display: grid; place-items: center; var(--fs-body); font-style: normal; }
@media (prefers-reduced-motion: reduce) {
  .faq26-a { transition: none; }
}

/* FAQ: original chat-thread look is kept at every width. On desktop the
   answers simply start expanded (handled in JS) — still tap-to-toggle. */

/* Final CTA email form: premium flush pill (replaces the brutalist hard-offset
   box + fixes the stray/curved button corners). overflow:hidden clips the
   input + button flush to the rounded ends. */
main .cta-v22-form {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--depth-2);
  background: #fff;
}
main .cta-v22-form input { padding: 18px 20px; }
main .cta-v22-form .btn-sharp,
main .cta-v22-form .btn-sharp-primary {
  border-radius: 0 !important;
  box-shadow: none !important;
  border-left: 1px solid var(--border);
  transform: none !important;
}
main .cta-v22-form .btn-sharp-primary:hover { background: var(--accent); color: #2f2a28; transform: none !important; }
main .cta-v22-form .btn-sharp-primary::after { display: none; }
