/* Magnetic - dark lander, layout rebuilt from The Real World reference, owned code */

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('assets/fonts/inter-700.woff2') format('woff2'); }

:root {
  --bg: #08090C;
  --bg-raise: #0C0D11;
  --panel: #101116;
  --panel-2: #15161C;
  --line: rgba(255,255,255,.07);
  --line-strong: rgba(255,255,255,.12);
  --ink: #FFFFFF;
  --dim: #A5A8B0;
  --faint: #6B6F79;
  --accent: #2F6BFF;
  --accent-lite: #6FA6FF;
  --accent-deep: #1E52DB;
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;
  --maxw: 1180px;
  --glow-blue: 0 0 60px rgba(47,107,255,.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
::selection { background: rgba(47,107,255,.4); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.042em; line-height: 1.04; }
h1 { font-size: clamp(40px, 5.2vw, 68px); }
h2 { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.08; }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; letter-spacing: -0.035em; }
h4 { font-size: 19px; letter-spacing: -0.03em; line-height: 1.25; }

/* the metallic sheen headline from the reference */
.metal {
  background: linear-gradient(96deg, #8A8B8F 0%, #D6D7DA 16%, #FFFFFF 40%, #F2F3F5 58%, #BFC0C4 80%, #8C8D91 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lede { font-size: clamp(16px, 1.35vw, 19px); color: var(--dim); line-height: 1.55; letter-spacing: -0.014em; }
.eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--faint);
}
.eyebrow.blue { color: var(--accent-lite); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 17px; font-weight: 700; letter-spacing: -0.02em;
  padding: 17px 40px; border-radius: 999px; position: relative; isolation: isolate;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); }
.btn:active { transform: translateY(0); }
.btn-blue {
  color: #fff;
  background: linear-gradient(180deg, #7FB2FF 0%, #4285F8 46%, #2F6BFF 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -2px 6px rgba(15,50,140,.5),
    0 6px 18px rgba(47,107,255,.42),
    0 0 52px rgba(47,107,255,.55);
}
/* the fine sparkle grain on the reference button */
.btn-blue::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,.55) .6px, transparent .7px);
  background-size: 7px 7px; opacity: .35; mix-blend-mode: overlay;
}
.btn-ghost {
  color: var(--ink); background: rgba(255,255,255,.05);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); }
.btn-lg { font-size: 19px; padding: 20px 52px; }

/* ---------- nav ---------- */
.nav { position: fixed; top: 18px; left: 0; right: 0; z-index: 60; padding: 0 24px; }
.nav-bar {
  max-width: 1180px; margin: 0 auto; height: 62px;
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(30,31,37,.82) 0%, rgba(14,15,19,.82) 100%);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 18px 50px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
  transition: box-shadow .3s ease, background .3s ease;
}
@media (prefers-reduced-transparency: reduce) { .nav-bar { background: #14151A; backdrop-filter: none; } }
.nav.scrolled .nav-bar { box-shadow: 0 22px 60px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.08); }
.nav-menu-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 34px 0 32px; height: 100%;
  border-right: 1px solid var(--line);
  font-size: 14px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  transition: color .15s ease;
}
.nav-menu-btn:hover { color: var(--accent-lite); }
.burger { display: flex; flex-direction: column; gap: 4px; width: 20px; }
.burger i { height: 2px; border-radius: 2px; background: currentColor; display: block; }
.burger i:nth-child(1) { width: 20px; }
.burger i:nth-child(2) { width: 13px; }
.burger i:nth-child(3) { width: 20px; }
.nav-brand {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 11px;
}
.nav-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 20%, #7FB2FF 0%, #2F6BFF 55%, #143A9E 100%);
  box-shadow: 0 4px 14px rgba(47,107,255,.5), inset 0 1px 0 rgba(255,255,255,.4);
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-mark svg { width: 17px; height: 17px; }
.nav-wordmark { font-size: 18px; font-weight: 700; letter-spacing: -0.03em; }
.nav-cta {
  margin-left: auto; display: inline-flex; align-items: center; gap: 9px;
  height: 100%; padding: 0 32px;
  border-left: 1px solid var(--line);
  font-size: 14px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  transition: color .15s ease;
}
.nav-cta:hover { color: var(--accent-lite); }
.nav-cta svg { width: 15px; height: 15px; }
/* slide-out menu */
.menu-panel {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(4,5,7,.86); backdrop-filter: blur(26px) saturate(130%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .28s ease;
}
.menu-panel.open { opacity: 1; pointer-events: auto; }
.menu-links { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.menu-links a {
  font-size: clamp(30px, 5vw, 52px); font-weight: 700; letter-spacing: -0.045em;
  padding: 8px 20px; color: #8C9099; transition: color .18s ease;
}
.menu-links a:hover { color: #fff; }
.menu-close {
  position: absolute; top: 26px; right: 30px; width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; font-size: 22px; color: var(--dim);
}
.menu-close:hover { color: #fff; background: rgba(255,255,255,.06); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 122px 0 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* the crossed light sweeps behind the hero */
.sweep {
  position: absolute; left: 50%; top: 56%;
  width: 172%; height: 230px;
  transform: translate(-50%, -50%);
}
/* the reference's streaks are brightest at the left and right edges and fall
   away behind the centre, so the headline still sits on black */
.sweep i {
  position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(90deg,
    rgba(198,228,255,.95) 0%, rgba(120,180,255,.85) 12%, rgba(60,130,250,.45) 28%,
    rgba(47,107,255,.06) 46%, rgba(47,107,255,.06) 54%, rgba(60,130,250,.45) 72%,
    rgba(120,180,255,.85) 88%, rgba(198,228,255,.95) 100%);
  filter: blur(52px);
}
.sweep-a { transform: rotate(-13deg); }
.sweep-b { transform: rotate(13deg); opacity: .8; }
.sweep-c { transform: rotate(-4deg) scaleY(.55); opacity: .55; }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(56% 48% at 50% 30%, rgba(8,9,12,.94) 0%, rgba(8,9,12,.6) 60%, rgba(8,9,12,0) 100%),
    linear-gradient(180deg, var(--bg) 0%, rgba(8,9,12,0) 18%, rgba(8,9,12,0) 76%, var(--bg) 100%);
}

/* background reels: real vertical cuts looping behind the hero.
   decorative only, so they are dim, aria-hidden and cannot be clicked */
.float-reel {
  position: absolute; z-index: 1; opacity: .82;
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 30px 60px rgba(0,0,0,.8), 0 4px 14px rgba(0,0,0,.6);
  pointer-events: none; user-select: none;
  transition: translate .35s cubic-bezier(.22,.61,.36,1);
}
.float-reel video {
  display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover;
  filter: brightness(.32) saturate(.66) contrast(.92) blur(1.5px);
  transform: scale(1.06); /* hides the blur's soft edge */
}
/* keeps them sitting behind the copy rather than competing with it */
.float-reel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,12,.42) 0%, rgba(8,9,12,.66) 100%);
}
.fr-1 { width: 190px; left: -58px; top: 208px; transform: rotate(-9deg); }
.fr-2 { width: 148px; left: 66px;  top: 548px; transform: rotate(7deg); }
.fr-3 { width: 166px; left: -34px; top: 884px; transform: rotate(-13deg); }
.fr-4 { width: 186px; right: -58px; top: 176px; transform: rotate(9deg); }
.fr-5 { width: 148px; right: 58px;  top: 524px; transform: rotate(-7deg); }
.fr-6 { width: 170px; right: -34px; top: 862px; transform: rotate(12deg); }

@media (prefers-reduced-motion: no-preference) {
  .float-reel { animation: bob 9s ease-in-out infinite alternate; }
  .fr-2 { animation-duration: 11s; }
  .fr-3 { animation-duration: 8s; }
  .fr-4 { animation-duration: 12s; }
  .fr-5 { animation-duration: 10s; }
  .fr-6 { animation-duration: 13s; }
}
@keyframes bob { from { translate: 0 0; } to { translate: 0 -18px; } }

.hero-inner { position: relative; z-index: 3; text-align: center; }

.pill-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 5px 22px 5px 5px; border-radius: 999px;
  background: rgba(19,20,25,.9); border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  font-size: 15px; font-weight: 600; letter-spacing: -0.015em;
  box-shadow: 0 10px 34px rgba(0,0,0,.6);
}
.pill-badge b {
  padding: 8px 18px; border-radius: 999px; font-weight: 700; color: #fff;
  white-space: nowrap;
  background: linear-gradient(180deg, #7FB2FF 0%, #3B7DF5 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 0 26px rgba(47,107,255,.6);
}
.hero h1 { margin: 24px 0 0; }
.hero .lede { margin: 20px auto 0; max-width: 600px; }

/* VSL card */
.vsl { position: relative; margin: 38px auto 0; max-width: 760px; }
.vsl-glow {
  position: absolute; inset: -8% -4%; z-index: 0; border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(120,180,255,.55) 0%, rgba(47,107,255,0) 70%);
  filter: blur(52px);
}
.vsl-frame {
  position: relative; z-index: 1;
  aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden;
  background: #0B0C10;
  border: 1.5px solid rgba(190,220,255,.9);
  box-shadow:
    0 0 0 1px rgba(47,107,255,.4),
    0 30px 80px rgba(0,0,0,.75),
    0 0 90px rgba(47,107,255,.5);
}
.vsl-frame img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.92) saturate(.95); }
.vsl-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  background: linear-gradient(180deg, rgba(6,8,14,.28) 0%, rgba(6,8,14,.58) 100%);
}
.vsl-play {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,.24); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.4);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  transition: transform .2s ease, background .2s ease;
}
.vsl-play svg { width: 30px; height: 30px; margin-left: 5px; }
.vsl-frame:hover .vsl-play { transform: scale(1.06); background: rgba(255,255,255,.34); }
.vsl-soon {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px; border-radius: 999px;
  background: rgba(10,12,18,.7); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #D6DCE6;
}
.vsl-soon .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent-lite);
  box-shadow: 0 0 10px var(--accent-lite);
}
@media (prefers-reduced-motion: no-preference) { .vsl-soon .dot { animation: pulse 2s ease-in-out infinite; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.vsl-note { margin-top: 12px; font-size: 12.5px; color: var(--faint); letter-spacing: -0.01em; }

.hero-cta { margin-top: 32px; }
.social-proof {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--dim);
}
.avatars { display: flex; }
.avatars img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--bg); margin-left: -12px;
  box-shadow: 0 3px 10px rgba(0,0,0,.6);
}
.avatars img:first-child { margin-left: 0; }
.social-proof b { color: #fff; font-weight: 700; }

/* value strip */
.strip { position: relative; z-index: 3; margin-top: 52px; padding-bottom: 56px; }
.strip-row {
  display: flex; align-items: center; justify-content: center;
  gap: 34px; flex-wrap: wrap;
}
.strip-item { display: flex; align-items: center; gap: 14px; }
.strip-item > svg { width: 34px; height: 34px; flex: 0 0 34px; color: #E7E9ED; }
.strip-item .t { font-size: clamp(20px, 2vw, 26px); font-weight: 700; letter-spacing: -0.035em; }
.strip-arrow { width: 34px; height: 20px; color: var(--accent); flex: 0 0 34px; }

/* ---------- generic section ---------- */
.section { position: relative; padding: 84px 0; }
.section-head { max-width: 880px; margin: 0 auto 48px; text-align: center; }
.section-head .chip { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,.045); border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--dim); letter-spacing: -0.01em;
}
.chip svg { width: 13px; height: 13px; color: var(--accent-lite); }

/* two-up split */
.split { display: grid; grid-template-columns: 1.04fr 1fr; gap: 56px; align-items: center; }
.split.flip .split-media { order: 2; }
.split-media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
  aspect-ratio: 4 / 3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,12,0) 40%, rgba(8,9,12,.6) 100%);
}
.split-copy h2 { margin: 18px 0 20px; font-size: clamp(28px, 3.5vw, 44px); }
.split-copy .lede + .lede { margin-top: 16px; }
.split-copy .btn { margin-top: 32px; }

/* ---------- community feed (the reference's scrolling wall of member posts) ---------- */
.feed-wrap { position: relative; }
.feed {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  height: 780px; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.feed-col { overflow: hidden; }
/* the track holds the same cards twice, so -50% lands exactly on the second copy.
   cards use margin-bottom rather than gap or the halves would not line up */
.feed-track { display: flex; flex-direction: column; will-change: transform; }
@media (prefers-reduced-motion: no-preference) {
  .feed-track { animation: feedUp 66s linear infinite; }
  .feed-col:nth-child(2) .feed-track { animation: feedDown 82s linear infinite; }
  .feed-col:nth-child(3) .feed-track { animation: feedUp 74s linear infinite; }
  .feed-col:nth-child(4) .feed-track { animation: feedDown 90s linear infinite; }
  .feed:hover .feed-track, .feed:focus-within .feed-track { animation-play-state: paused; }
}
@keyframes feedUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes feedDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.fc {
  margin-bottom: 16px; border-radius: 13px; padding: 14px 15px 12px;
  background: #10161F; border: 1px solid rgba(255,255,255,.075);
  box-shadow: 0 10px 26px rgba(0,0,0,.5);
}
.fc-top { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.fc-av { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex: 0 0 30px; }
.fc-name { font-size: 13.5px; font-weight: 700; letter-spacing: -0.015em; white-space: nowrap; }
.fc-name.c1 { color: #6FA6FF; } .fc-name.c2 { color: #4BD07E; }
.fc-name.c3 { color: #A98BFA; } .fc-name.c4 { color: #F2B33D; }
.fc-badges { display: inline-flex; gap: 3px; flex: 0 0 auto; }
.fc-badges svg { width: 11px; height: 11px; }
.fc-time { margin-left: auto; font-size: 10.5px; color: #5C6270; white-space: nowrap; overflow: hidden; text-overflow: clip; min-width: 0; }
.fc-msg { font-size: 13.5px; line-height: 1.46; color: #D3D7DE; letter-spacing: -0.012em; }
.fc-msg b { color: #6FA6FF; font-weight: 600; }
.fc-att { margin-top: 10px; border-radius: 9px; overflow: hidden; background: #0A0D13; }
.fc-att img, .fc-att video { width: 100%; display: block; object-fit: cover; }
.fc-att.tall img, .fc-att.tall video { aspect-ratio: 3 / 4; }
.fc-att.wide img, .fc-att.wide video { aspect-ratio: 16 / 10; }

/* the nested stat panel the reference shows inside some posts */
.fc-embed {
  margin-top: 10px; border-radius: 9px; padding: 13px 14px;
  background: #0A0D13; border: 1px solid rgba(255,255,255,.07);
}
.fc-embed .lbl { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #5C6270; }
.fc-embed .big { font-size: 24px; font-weight: 700; letter-spacing: -0.04em; margin-top: 4px; }
.fc-embed .big.up { color: #4BD07E; }
.fc-embed .sub { font-size: 11.5px; color: #737985; margin-top: 3px; }
.fc-embed .bars { display: flex; align-items: flex-end; gap: 2px; height: 34px; margin-top: 10px; }
.fc-embed .bars i { flex: 1; background: linear-gradient(180deg, #6FA6FF, #2F6BFF); border-radius: 1px; }
.fc-sample {
  display: inline-block; margin-top: 9px; padding: 3px 8px; border-radius: 5px;
  font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.06); color: #6B7280; border: 1px solid rgba(255,255,255,.07);
}
.fc-react { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.rx {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 8px; border-radius: 7px; font-size: 11.5px; font-weight: 600; color: #9BA1AC;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.06);
  cursor: default;
}
.rx-add { color: #666C78; padding: 3px 9px; }
.feed-note { margin-top: 24px; text-align: center; font-size: 13px; color: var(--faint); }

/* ---------- versus ---------- */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.vs-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--panel);
  min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
}
.vs-card .vs-img { position: absolute; inset: 0; z-index: 0; }
.vs-card .vs-img img { width: 100%; height: 100%; object-fit: cover; }
.vs-card .vs-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,12,.12) 0%, rgba(8,9,12,.5) 42%, rgba(8,9,12,.93) 76%, #08090C 100%);
}
.vs-card > * { position: relative; z-index: 1; }
.vs-card.cold .vs-img img { filter: grayscale(.9) brightness(.85); }
.vs-card.warm { border-color: rgba(47,107,255,.4); box-shadow: 0 0 70px rgba(47,107,255,.22); }
.vs-tag {
  align-self: flex-start; margin-bottom: auto;
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(12,13,18,.75); border: 1px solid var(--line-strong); backdrop-filter: blur(10px);
}
.vs-card h3 { margin-bottom: 14px; }
.vs-card p { color: var(--dim); font-size: 15px; line-height: 1.55; max-width: 400px; }
.vs-card .btn { margin-top: 26px; align-self: flex-start; font-size: 15px; padding: 14px 30px; }

/* ---------- feature cards ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feat {
  border-radius: var(--r-lg); padding: 36px;
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  transition: border-color .25s ease, transform .25s ease;
}
.feat:hover { border-color: rgba(47,107,255,.4); transform: translateY(-4px); }
.feat-ico {
  width: 52px; height: 52px; border-radius: 15px; margin-bottom: 24px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(47,107,255,.28) 0%, rgba(47,107,255,.08) 100%);
  border: 1px solid rgba(47,107,255,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.feat-ico svg { width: 24px; height: 24px; color: var(--accent-lite); }
.feat h3 { margin-bottom: 12px; }
.feat > p { color: var(--dim); font-size: 15px; line-height: 1.55; }
.feat ul { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
.feat li {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px; border-radius: 12px;
  background: rgba(255,255,255,.035); border: 1px solid var(--line);
  font-size: 14.5px; letter-spacing: -0.015em; color: #D8DBE1;
}
.feat li svg { width: 15px; height: 15px; flex: 0 0 15px; color: var(--accent-lite); }

/* ---------- crew / network ---------- */
.crew { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.crew-card {
  border-radius: var(--r-lg); padding: 32px;
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1px solid var(--line);
}
.crew-card .n { font-size: 42px; font-weight: 700; letter-spacing: -0.05em; color: #fff; }
.crew-card .n em { font-style: normal; color: var(--accent-lite); }
.crew-card h4 { margin: 14px 0 10px; }
.crew-card p { color: var(--dim); font-size: 14.5px; line-height: 1.55; }

/* ---------- final cta ---------- */
.finale { position: relative; padding: 130px 0 120px; overflow: hidden; text-align: center; }
.finale .sweep { top: 50%; height: 150px; opacity: .75; }
.finale-inner { position: relative; z-index: 3; }
.finale h2 { max-width: 920px; margin: 20px auto 20px; }
.finale .lede { max-width: 560px; margin: 0 auto; }
.finale .btn { margin-top: 40px; }

/* ---------- faq ---------- */
.faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: var(--r-md); border: 1px solid var(--line);
  background: var(--panel); overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open { border-color: rgba(47,107,255,.4); }
.faq-q {
  width: 100%; text-align: left; padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 17px; font-weight: 600; letter-spacing: -0.025em;
}
.faq-q .ic {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  color: var(--dim); font-size: 17px; line-height: 1; transition: transform .25s ease, color .2s ease;
}
.faq-item.open .ic { transform: rotate(45deg); color: var(--accent-lite); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a p { padding: 0 28px 26px; color: var(--dim); font-size: 15px; line-height: 1.6; max-width: 620px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 60px 0 46px; }
.footer-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer p { color: var(--faint); font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer-cols { display: flex; gap: 72px; flex-wrap: wrap; }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 15px; color: var(--dim); padding: 5px 0; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-base {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--faint);
}

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  /* no marquee: drop the clip and the duplicate copy, let the columns sit in flow */
  .feed { height: auto; -webkit-mask-image: none; mask-image: none; }
  .feed-col { overflow: visible; }
  .feed-track > div[aria-hidden="true"] { display: none; }
  .rv { opacity: 1; transform: none; transition: none; }
  .float-reel { animation: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.flip .split-media { order: 0; }
  .feed { grid-template-columns: repeat(3, 1fr); height: 720px; }
  .feed-col:nth-child(4) { display: none; }
  .crew { grid-template-columns: 1fr; }
  .fr-2, .fr-5 { display: none; }
  .fr-1 { width: 138px; left: -52px; top: 250px; }
  .fr-3 { width: 124px; left: -44px; top: 760px; }
  .fr-4 { width: 136px; right: -52px; top: 214px; }
  .fr-6 { width: 126px; right: -44px; top: 742px; }
}
@media (max-width: 720px) {
  .vsl-play { width: 62px; height: 62px; }
  .vsl-play svg { width: 22px; height: 22px; }
  .vsl-soon { font-size: 11px; padding: 7px 14px; letter-spacing: .1em; }
  .vsl-overlay { gap: 14px; }
  .nav-menu-btn { padding: 0 20px; font-size: 12px; gap: 10px; }
  .nav-cta { padding: 0 20px; font-size: 12px; }
  .nav-cta span { display: none; }
  .nav-wordmark { display: none; }
  .hero { padding-top: 128px; }
  .pill-badge { font-size: 13px; gap: 10px; padding-right: 16px; }
  .pill-badge b { padding: 7px 14px; }
  .strip-row { flex-direction: column; gap: 22px; }
  .strip-arrow { transform: rotate(90deg); }
  .feed { grid-template-columns: repeat(2, 1fr); height: 640px; }
  .feed-col:nth-child(n+3) { display: none; }
  .versus { grid-template-columns: 1fr; }
  /* the stacked card is taller, so the copy lands mid-photo and needs more scrim */
  .vs-card .vs-img::after {
    background: linear-gradient(180deg, rgba(8,9,12,.2) 0%, rgba(8,9,12,.72) 36%, rgba(8,9,12,.96) 66%, #08090C 100%);
  }
  .features { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .feat, .vs-card, .crew-card { padding: 26px; }
  .vs-card { min-height: 420px; }
  .btn-lg { font-size: 17px; padding: 17px 34px; }
  .footer-cols { gap: 40px; }
  .float-reel { display: none; }
}
@media (max-width: 460px) {
  /* two narrow columns still read as a feed; one column reads as a blog */
  .feed { grid-template-columns: repeat(2, 1fr); gap: 10px; height: 620px; }
  .feed-col:nth-child(n+3) { display: none; }
  .fc { padding: 11px 11px 9px; margin-bottom: 10px; border-radius: 11px; }
  .fc-msg { font-size: 12px; }
  .fc-name { font-size: 12px; }
  .fc-av { width: 24px; height: 24px; flex: 0 0 24px; }
  .fc-time { display: none; }
  .fc-embed .big { font-size: 19px; }
  .rx { font-size: 10.5px; padding: 2px 6px; }
}
