/* ==========================================================================
   Slingshot Sites — "turn your site around"
   Palette + type tokens up top; everything else reads from these.
   ========================================================================== */
:root {
  --void: #04040f;
  --deep: #070920;
  --indigo: #0f1236;
  --panel: rgba(18, 20, 58, .55);
  --line: rgba(170, 160, 255, .14);
  --line-strong: rgba(185, 168, 255, .32);

  --violet: #7c5cff;
  --lilac: #b9a8ff;
  --blue: #4f7dff;
  --ice: #9fd8ff;
  --ember: #ff8a4c;
  --pink: #ff5d8f;
  --plasma: linear-gradient(115deg, #ff8a4c 0%, #ff5d8f 100%);

  --text: #eeecff;
  --muted: #a4a2cc;
  --dim: #6f6d9c;

  --f-display: "Michroma", "Space Grotesk", system-ui, sans-serif;
  --f-sans: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 48px);
  --radius: 14px;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  position: relative;
  margin: 0;
  background: var(--void);
  color: var(--text);
  font: 400 17px/1.6 var(--f-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; color: inherit; }
::selection { background: var(--violet); color: #fff; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: #fff; color: #000; padding: 8px 14px; border-radius: 6px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--lilac); outline-offset: 3px; border-radius: 4px; }

/* ---------- Backdrop: stars, nebula, grid ---------- */
#stars { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -3; }
.nebula {
  position: fixed; inset: 0; z-index: -4; pointer-events: none;
  background:
    radial-gradient(40% 35% at 78% 22%, rgba(124, 92, 255, .30), transparent 70%),
    radial-gradient(35% 40% at 12% 70%, rgba(79, 125, 255, .20), transparent 70%),
    radial-gradient(30% 25% at 60% 95%, rgba(255, 93, 143, .10), transparent 70%),
    linear-gradient(180deg, #06071c 0%, #04040f 60%, #070720 100%);
}
.grid-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(170, 160, 255, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(170, 160, 255, .05) 1px, transparent 1px);
  background-size: 120px 120px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 85%);
}

/* Crosshair "+" markers (MARS_X / alpha-wave nod) */
.plus { position: absolute; width: 22px; height: 22px; pointer-events: none; }
.plus::before, .plus::after { content: ""; position: absolute; background: rgba(238, 236, 255, .7); }
.plus::before { left: 50%; top: 0; width: 1px; height: 100%; }
.plus::after { top: 50%; left: 0; height: 1px; width: 100%; }

/* ---------- Type helpers ---------- */
.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font: 500 12px/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase;
  color: var(--lilac);
}
.eyebrow i { width: 8px; height: 8px; background: var(--pink); box-shadow: 0 0 12px var(--pink); }
.kicker span { color: var(--dim); }
.kicker::after { content: ""; width: 48px; height: 1px; background: var(--line-strong); }

h2 {
  font: 500 clamp(2.1rem, 4.6vw, 4rem)/1.04 var(--f-sans);
  letter-spacing: -.035em;
  margin-top: 18px;
  text-wrap: balance;
}
h2 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--lilac) 0%, #8fb0ff 55%, var(--ice) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section__intro { margin-top: 20px; color: var(--muted); font-size: clamp(1.02rem, 1.3vw, 1.18rem); max-width: 58ch; }
.section__intro a { color: var(--lilac); text-underline-offset: 3px; }
.dim { color: var(--dim); }

/* ---------- Buttons ---------- */
.btn {
  --cut: 12px;
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 28px;
  font: 500 13px/1 var(--f-display); letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; border: 0; cursor: pointer;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  transition: transform .25s ease, filter .25s ease;
}
.btn span { position: relative; z-index: 1; }
.btn--plasma { background: var(--plasma); color: #1a0716; filter: drop-shadow(0 0 18px rgba(255, 93, 143, .45)); }
.btn--plasma:hover { transform: translateY(-2px); filter: drop-shadow(0 0 28px rgba(255, 120, 110, .7)); }
.btn--ghost { color: var(--text); background: rgba(185, 168, 255, .35); }
.btn--ghost::before {
  content: ""; position: absolute; inset: 1px; background: var(--deep);
  clip-path: inherit;
}
.btn--ghost:hover { background: var(--lilac); transform: translateY(-2px); }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 11px; --cut: 9px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center; gap: 32px;
  padding: 0 var(--gutter);
  transition: background .35s ease, height .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(6, 7, 26, .72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand__mark { flex: none; width: 34px; height: 34px; }
.brand__word { font: 400 17px/1 var(--f-display); letter-spacing: .12em; }
.brand__word span { color: var(--lilac); }
.nav { display: flex; gap: clamp(18px, 2.2vw, 30px); }
.nav a, .btn { white-space: nowrap; }
.nav a {
  font: 500 12px/1 var(--f-mono); letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--muted); position: relative; padding: 8px 0;
  transition: color .2s;
}
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--pink); transition: right .3s ease; }
.nav a:hover, .nav a.is-active { color: var(--text); }
.nav a:hover::after, .nav a.is-active::after { right: 0; }
.nav-toggle { display: none; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(5, 6, 22, .96); backdrop-filter: blur(10px);
  display: flex; align-items: center; padding: 100px var(--gutter) 40px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.mobile-nav a {
  display: flex; align-items: baseline; gap: 16px; text-decoration: none;
  font: 400 clamp(1.3rem, 6vw, 1.8rem)/1.2 var(--f-display); letter-spacing: .04em;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.mobile-nav small { font: 500 12px var(--f-mono); color: var(--pink); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 120px;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 3; }
.hero__title {
  margin-top: 26px;
  font: 400 clamp(2.4rem, 6.4vw, 6rem)/1.02 var(--f-display);
  letter-spacing: .02em; text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(4, 4, 15, .6);
}
.hero__title .line { display: block; }
.hero__title .line:last-child {
  background: linear-gradient(95deg, #fff 0%, var(--lilac) 45%, #ffb3c9 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: none;
  padding-bottom: .06em;
}
.hero__pre {
  display: block; margin-bottom: 14px;
  font: 500 clamp(1rem, 1.6vw, 1.35rem)/1 var(--f-sans); letter-spacing: 0; text-transform: none;
  color: var(--muted);
}
.hero__lede {
  margin-top: 28px; max-width: 46ch;
  font: 400 15px/1.75 var(--f-mono); color: #cfccf2;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__stats {
  list-style: none; padding: 0; margin: 56px 0 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px 28px;
}
.hero__stats li { display: flex; align-items: baseline; gap: 10px; }
.hero__stats b { font: 400 clamp(2rem, 3.6vw, 3.2rem)/1 var(--f-display); letter-spacing: -.02em; }
.hero__stats sup { font-size: .45em; vertical-align: top; position: relative; top: .15em; margin-right: 2px; color: var(--lilac); }
.hero__stats em { font: 400 clamp(1rem, 1.5vw, 1.3rem)/1 var(--f-sans); font-style: normal; color: var(--muted); }
.hero__stats .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text); opacity: .8; }

/* The planet stage — everything is laid out in a shared 900×800 box */
.hero__stage {
  position: absolute; z-index: 1;
  width: min(66vw, 1060px); aspect-ratio: 9 / 8;
  right: -9vw; top: 50%; translate: 0 -46%;
  pointer-events: none;
}
.hero__stage > * { position: absolute; }
.ring, .trajectory { inset: 0; width: 100%; height: 100%; overflow: visible; }
.planet--hero {
  left: 32.222%; top: 21.25%; width: 51.111%; height: 57.5%;
}
.planet-glow {
  left: 22%; top: 8%; width: 72%; height: 82%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(124, 92, 255, .45), rgba(79, 125, 255, .18) 55%, transparent 100%);
  filter: blur(20px);
}
.ring-band { fill: none; stroke-linecap: round; }
.ring-band.b1 { stroke: rgba(185, 168, 255, .16); stroke-width: 10; }
.ring-band.b2 { stroke: rgba(210, 196, 255, .34); stroke-width: 14; }
.ring-band.b3 { stroke: rgba(150, 170, 255, .22); stroke-width: 8; }
.ring-band.b4 { stroke: rgba(255, 180, 210, .16); stroke-width: 5; }

.traj-plot { fill: none; stroke: rgba(200, 186, 255, .6); stroke-width: 1.8; stroke-dasharray: 2 6; stroke-linecap: round; }
.traj-trail { fill: none; stroke-linecap: round; }
.traj-trail.t1 { stroke: #ffd2bd; stroke-width: 3; }
.traj-trail.t2 { stroke: rgba(255, 138, 76, .55); stroke-width: 4; }
.traj-trail.t3 { stroke: rgba(255, 93, 143, .22); stroke-width: 6; }
.traj-labels circle { fill: var(--void); stroke: var(--lilac); stroke-width: 1.5; }
.traj-labels text { font: 500 13px var(--f-mono); letter-spacing: .12em; fill: var(--lilac); }
.traj-labels text.dim { fill: var(--dim); }
.comet { opacity: 0; }

.hero .plus--a { left: var(--gutter); top: calc(var(--header-h) + 24px); }
.hero .plus--b { right: var(--gutter); bottom: 110px; }
.hero .plus--c { left: 48%; bottom: 60px; }

.scroll-cue {
  position: absolute; left: var(--gutter); bottom: 40px; z-index: 3;
  display: flex; align-items: center; gap: 16px; text-decoration: none;
  font: 500 11px/1 var(--f-mono); letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.scroll-cue i { position: relative; width: 90px; height: 1px; background: var(--line-strong); overflow: hidden; }
.scroll-cue i::after {
  content: ""; position: absolute; top: 0; left: -40%; width: 40%; height: 100%; background: var(--pink);
  animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue { to { left: 100%; } }

/* ---------- Ticker ---------- */
.ticker {
  position: relative; z-index: 2;
  display: flex; align-items: stretch;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 32, .6); backdrop-filter: blur(6px);
  overflow: hidden;
}
.ticker__label {
  flex: none; display: flex; align-items: center; padding: 0 22px;
  font: 500 11px/1 var(--f-mono); letter-spacing: .18em; text-transform: uppercase;
  color: #1a0716; background: var(--plasma);
}
.ticker__track { display: flex; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ticker__row { flex: none; display: flex; align-items: center; gap: 28px; padding: 18px 14px; animation: marquee 48s linear infinite; }
.ticker__row span { font: 400 15px/1 var(--f-mono); white-space: nowrap; color: var(--text); }
.ticker__row b { font-weight: 400; color: var(--dim); }
.ticker__row i { font-style: normal; color: var(--pink); font-size: 12px; }
@keyframes marquee { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .ticker__row { animation: none; } }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(80px, 10vw, 130px) 0; }
.section__head { max-width: 760px; }
.section__head--center { margin: 0 auto; text-align: center; }
.section__head--center .section__intro { margin-left: auto; margin-right: auto; }
.section__head--center .kicker { justify-content: center; }

/* 01 Maneuver */
.steps { position: relative; margin-top: 80px; }
.steps__path { position: absolute; left: 0; top: -21px; width: 100%; height: 120px; overflow: visible; z-index: 1; pointer-events: none; }
.steps__track, .steps__fill { fill: none; stroke-width: 1.5; }
.steps__fill { stroke-dasharray: 1; stroke-dashoffset: 1; }
.steps__track { stroke: var(--line-strong); stroke-dasharray: 2 6; }
.steps__fill { stroke: var(--pink); filter: drop-shadow(0 0 6px rgba(255, 93, 143, .8)); }
.steps__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  position: relative; padding: 130px 26px 30px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 20, 58, .5), rgba(10, 11, 34, .35));
  backdrop-filter: blur(6px);
  transition: border-color .4s, transform .4s;
}
.step:nth-child(odd) { margin-top: 0; }
.step__node {
  position: absolute; z-index: 2; left: 26px; top: 26px; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--deep);
  display: grid; place-items: center;
}
.step__node::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--dim); transition: background .4s, box-shadow .4s; }
.step.is-lit { border-color: rgba(255, 138, 110, .35); }
.step.is-lit .step__node::after { background: var(--pink); box-shadow: 0 0 16px var(--pink), 0 0 36px rgba(255, 138, 76, .6); }
.step__num { font: 500 12px/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--lilac); }
.step h3 { margin-top: 14px; font: 500 1.35rem/1.2 var(--f-sans); letter-spacing: -.01em; }
.step p:last-child { margin-top: 12px; color: var(--muted); font-size: 15.5px; }
.step code { font: 400 13px var(--f-mono); color: var(--ice); background: rgba(159, 216, 255, .08); padding: 2px 6px; border-radius: 4px; white-space: nowrap; }

/* 02 Turnaround */
.turnaround { padding: 0; }
.turnaround__pin { min-height: 100vh; display: flex; align-items: center; padding: 100px 0 60px; }
.turnaround__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.checks { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 30px; color: #d6d3f5; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 14px; height: 8px;
  border-left: 2px solid var(--pink); border-bottom: 2px solid var(--pink); transform: rotate(-45deg) translateY(-3px);
}
.turnaround__state {
  position: relative; margin-top: 40px; height: 20px; overflow: hidden;
  font: 500 12px/20px var(--f-mono); letter-spacing: .2em; text-transform: uppercase;
}
.turnaround__state span { position: absolute; left: 0; top: 0; transition: transform .4s, opacity .4s; }
.turnaround__state .is-before { color: var(--dim); }
.turnaround__state .is-after { color: var(--pink); transform: translateY(100%); opacity: 0; }
.turnaround.is-flipped .turnaround__state .is-before { transform: translateY(-100%); opacity: 0; }
.turnaround.is-flipped .turnaround__state .is-after { transform: none; opacity: 1; }

.flip { perspective: 1800px; }
.flip__card { position: relative; aspect-ratio: 16 / 11; transform-style: preserve-3d; will-change: transform; }
.flip__face { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.flip__face--back { transform: rotateY(180deg); }
.browser {
  height: 100%; display: flex; flex-direction: column; overflow: hidden;
  border-radius: 12px; border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8), 0 0 60px -10px rgba(124, 92, 255, .35);
}
.browser__bar {
  flex: none; display: flex; align-items: center; gap: 7px; padding: 11px 14px;
  background: #1a1c3d; border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.browser__bar i { width: 10px; height: 10px; border-radius: 50%; background: #3b3d66; }
.browser__bar span {
  margin-left: 12px; flex: 1; padding: 5px 12px; border-radius: 6px; background: rgba(255, 255, 255, .06);
  font: 400 12px/1.2 var(--f-mono); color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* The deliberately awful "before" site */
.old {
  flex: 1; background: #c0c0c0 repeating-linear-gradient(45deg, #c8c8c8 0 6px, #bcbcbc 6px 12px);
  font-family: "Times New Roman", Times, serif; color: #000; font-size: clamp(10px, 1.05vw, 14px);
  display: flex; flex-direction: column; overflow: hidden;
}
.old__banner {
  background: linear-gradient(#0000a8, #000070); color: #ffff00; text-align: center;
  font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive; font-size: 1.7em; font-weight: bold;
  padding: .5em; border: 3px outset #6c6cff; text-shadow: 2px 2px 0 #ff0000;
}
.old__marquee { background: #000; color: #00ff00; font-family: "Courier New", monospace; overflow: hidden; white-space: nowrap; padding: .25em 0; }
.old__marquee span { display: inline-block; padding-left: 100%; animation: oldmarquee 9s linear infinite; }
@keyframes oldmarquee { to { transform: translateX(-100%); } }
.old__body { display: flex; flex: 1; gap: .8em; padding: .8em; }
.old__side { list-style: none; margin: 0; padding: .6em; width: 26%; background: #ffffcc; border: 2px inset #999; color: #0000ee; line-height: 1.9; }
.old__main { flex: 1; background: #fff; border: 2px inset #999; padding: .8em; }
.old__h { font-size: 1.5em; font-weight: bold; color: #cc0000; font-family: "Comic Sans MS", "Chalkboard SE", cursive; }
.old__main u { color: #0000ee; }
.old__main p { margin-top: .5em; }
.old__construction {
  margin: .9em 0; padding: .5em; text-align: center; font-weight: bold; font-family: Impact, "Arial Black", sans-serif; letter-spacing: .1em;
  background: repeating-linear-gradient(-45deg, #ffd800 0 12px, #111 12px 24px); color: #fff; text-shadow: 1px 1px 0 #000, -1px -1px 0 #000;
}
.old__small { font-size: .8em; color: #666; font-style: italic; }
.old__counter span { background: #000; color: #0f0; font-family: "Courier New", monospace; padding: 0 .3em; letter-spacing: .1em; }

/* The modern "after" site */
.new { flex: 1; background: #f7f6fb; color: #121433; font-family: var(--f-sans); font-size: clamp(9px, 1vw, 13.5px); display: flex; flex-direction: column; overflow: hidden; }
.new__nav { display: flex; align-items: center; gap: 1.5em; padding: 1.1em 1.8em; border-bottom: 1px solid #e6e4f2; background: #fff; }
.new__nav b { font-size: 1.15em; letter-spacing: -.02em; margin-right: auto; }
.new__nav b span { color: #3d5afe; }
.new__links { display: flex; gap: 1.4em; color: #555879; }
.new__links i { font-style: normal; }
.new__btn { background: #3d5afe; color: #fff; padding: .6em 1.1em; border-radius: 999px; font-weight: 600; }
.new__hero {
  padding: 2.2em 1.8em 1.6em;
  background: radial-gradient(60% 90% at 90% 10%, rgba(61, 90, 254, .16), transparent 70%), linear-gradient(180deg, #fff, #f2f1fa);
}
.new__tag { font-size: .8em; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #3d5afe; }
.new__h { margin-top: .5em; font-size: 2.5em; font-weight: 600; line-height: 1.02; letter-spacing: -.04em; max-width: 14em; }
.new__p { margin-top: .8em; max-width: 34em; color: #555879; }
.new__ctas { display: flex; gap: .8em; margin-top: 1.4em; align-items: center; }
.new__ghost { padding: .6em 1.1em; border-radius: 999px; border: 1px solid #c9c7de; font-weight: 600; }
.new__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9em; padding: 0 1.8em 1.8em; margin-top: auto; }
.new__cards div { background: #fff; border: 1px solid #e6e4f2; border-radius: .8em; padding: 1em; display: flex; flex-direction: column; gap: .5em; box-shadow: 0 6px 18px -10px rgba(18, 20, 51, .25); }
.new__cards i { font-style: normal; font-size: 1.4em; }

/* 03 Worlds */
.worlds__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.urlbar {
  margin-top: 36px; display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-radius: 12px;
  border: 1px solid var(--line-strong); background: rgba(10, 12, 40, .75);
  box-shadow: 0 0 0 6px rgba(124, 92, 255, .06), 0 20px 50px -20px rgba(124, 92, 255, .5);
  font: 400 clamp(14px, 1.6vw, 19px)/1.2 var(--f-mono); color: var(--muted);
  overflow: hidden; white-space: nowrap;
}
.urlbar__lock svg { width: 18px; height: 18px; fill: none; stroke: #7ee2a8; stroke-width: 1.5; }
.urlbar__text { overflow: hidden; text-overflow: ellipsis; }
.urlbar__name { font-weight: 500; color: #fff; }
.urlbar__caret { display: inline-block; width: 2px; height: 1.05em; margin: 0 1px -3px; background: var(--pink); animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.worlds__note { margin-top: 14px; font: 400 13px var(--f-mono); color: var(--dim); }

.orbits { position: relative; aspect-ratio: 1; width: 100%; max-width: 620px; margin-left: auto; }
.orbits__rings { position: absolute; inset: 0; width: 100%; height: 100%; }
.orbits__rings ellipse { fill: none; stroke: var(--line-strong); stroke-width: 1; stroke-dasharray: 3 6; }
.planet--world { position: absolute; left: 36%; top: 36%; width: 28%; height: 28%; z-index: 5; filter: drop-shadow(0 0 40px rgba(79, 125, 255, .45)); }
.orbits__chips { position: absolute; inset: 0; }
.orbits__chips button {
  position: absolute; left: 0; top: 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 10px; border-radius: 999px; cursor: pointer;
  font: 500 12px/1 var(--f-mono); letter-spacing: .08em; text-transform: uppercase;
  background: rgba(12, 14, 44, .85); border: 1px solid var(--line-strong); color: var(--text);
  backdrop-filter: blur(6px); transition: border-color .25s, background .25s, color .25s;
  will-change: transform;
}
.orbits__chips button::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #fff, var(--lilac) 40%, var(--violet)); }
.orbits__chips button:hover, .orbits__chips button.is-active { border-color: var(--pink); background: rgba(40, 14, 44, .9); }
.orbits__chips button.is-active::before { background: radial-gradient(circle at 35% 35%, #fff, #ffb08a 40%, var(--pink)); box-shadow: 0 0 12px var(--pink); }

/* 04 Pricing */
.plans { margin-top: 70px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; max-width: 1040px; margin-left: auto; margin-right: auto; }
.plan {
  position: relative; padding: 40px clamp(24px, 3vw, 44px) 44px;
  border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 22, 64, .6), rgba(9, 10, 32, .5));
  backdrop-filter: blur(8px); overflow: hidden;
}
.plan::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--lilac), transparent); opacity: .6; }
.plan--orbit { border-color: rgba(255, 138, 110, .3); }
.plan--orbit::before { background: linear-gradient(90deg, transparent, var(--pink), transparent); }
.plan__label { font: 500 12px/1 var(--f-mono); letter-spacing: .2em; text-transform: uppercase; color: var(--lilac); }
.plan--orbit .plan__label { color: var(--pink); }
.plan__price { margin-top: 20px; font: 400 clamp(3rem, 5vw, 4.4rem)/1 var(--f-display); letter-spacing: -.03em; display: flex; align-items: flex-start; gap: 4px; }
.plan__price sup { font-size: .4em; margin-top: .25em; color: var(--muted); }
.plan__price small { align-self: flex-end; margin: 0 0 .5em 12px; font: 400 14px var(--f-mono); letter-spacing: .06em; color: var(--muted); }
.plan__desc { margin-top: 16px; color: var(--muted); }
.plans__plus { align-self: center; font: 400 36px/1 var(--f-display); color: var(--dim); }
.plans__total { margin-top: 40px; text-align: center; font: 400 15px var(--f-mono); color: var(--muted); }
.plans__total b { font: 400 22px var(--f-display); color: var(--text); margin: 0 6px; }
.plans__cta { margin-top: 30px; text-align: center; }

/* 05 FAQ */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.faq__grid .section__head { position: sticky; top: 120px; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 26px 50px 26px 0; font: 500 clamp(1.08rem, 1.5vw, 1.3rem)/1.35 var(--f-sans);
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after, .faq summary::before {
  content: ""; position: absolute; right: 8px; top: 50%; width: 16px; height: 1.5px; background: var(--lilac); transition: transform .3s;
}
.faq summary::before { transform: rotate(90deg); }
.faq details[open] summary::before { transform: rotate(0); }
.faq details[open] summary { color: var(--lilac); }
.faq summary:hover { color: var(--lilac); }
.faq details p { padding: 0 50px 28px 0; color: var(--muted); max-width: 62ch; }

/* 06 Contact */
.contact__panel {
  position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 80px);
  padding: clamp(32px, 6vw, 80px);
  border: 1px solid var(--line-strong); border-radius: 22px;
  background:
    radial-gradient(70% 90% at 0% 0%, rgba(124, 92, 255, .22), transparent 60%),
    radial-gradient(60% 80% at 100% 100%, rgba(255, 93, 143, .12), transparent 60%),
    rgba(9, 10, 32, .7);
  backdrop-filter: blur(10px);
}
.contact__panel .plus--tl { left: -11px; top: -11px; }
.contact__panel .plus--tr { right: -11px; top: -11px; }
.contact__panel .plus--bl { left: -11px; bottom: -11px; }
.contact__panel .plus--br { right: -11px; bottom: -11px; }
.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-content: start; }
.contact__form label { display: flex; flex-direction: column; gap: 8px; }
.contact__form label.full, .contact__form .full { grid-column: 1 / -1; }
.contact__form label > span { font: 500 11px/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.contact__form label em { font-style: normal; color: var(--dim); text-transform: none; letter-spacing: 0; }
.contact__form input, .contact__form textarea {
  width: 100%; padding: 15px 16px; border-radius: 10px;
  border: 1px solid var(--line-strong); background: rgba(4, 4, 15, .55); color: var(--text);
  font: 400 16px/1.4 var(--f-sans); transition: border-color .2s, box-shadow .2s;
}
.contact__form textarea { resize: vertical; min-height: 96px; }
.contact__form input::placeholder, .contact__form textarea::placeholder { color: var(--dim); }
.contact__form input:focus, .contact__form textarea:focus { outline: none; border-color: var(--lilac); box-shadow: 0 0 0 4px rgba(124, 92, 255, .2); }
.contact__form .is-invalid { border-color: var(--pink); }
.contact__submit { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 6px; }
.contact__status { font: 400 13px/1.5 var(--f-mono); color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { position: relative; padding: 40px 0 44px; border-top: 1px solid var(--line); overflow: hidden; }
.footer__big {
  font: 400 clamp(2.4rem, 10.4vw, 11rem)/.9 var(--f-display); letter-spacing: .02em; text-align: center;
  color: transparent; -webkit-text-stroke: 1px rgba(185, 168, 255, .28);
  background: linear-gradient(180deg, rgba(185, 168, 255, .16), transparent 80%); -webkit-background-clip: text; background-clip: text;
  user-select: none; white-space: nowrap;
}
.footer__row { margin-top: 36px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 30px; font: 400 13px var(--f-mono); color: var(--dim); }
.footer__row nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer__row a { text-decoration: none; color: var(--muted); }
.footer__row a:hover { color: var(--text); }

/* ---------- Rocket flight trail (flight.js) ---------- */
.flight { position: absolute; left: 0; top: 0; z-index: 4; pointer-events: none; overflow: visible; }
.flight__ghost { fill: none; stroke: rgba(185, 168, 255, .16); stroke-width: 1.5; stroke-dasharray: 2 7; stroke-linecap: round; }
.flight__line { fill: none; stroke: var(--pink); stroke-width: 1.5; stroke-linecap: round; filter: drop-shadow(0 0 5px rgba(255, 93, 143, .75)); }
.flight__rocket { opacity: 0; transition: opacity .3s; }
.flight__rocket.is-flying { opacity: 1; }
.rk__body { fill: #f3f0ff; }
.rk__fin { fill: var(--pink); }
.rk__win { fill: var(--violet); stroke: #fff; stroke-width: 1; }
.rk__flame { fill: #ffb08a; transform-origin: 0 8px; animation: flame .12s ease-in-out infinite alternate; filter: drop-shadow(0 0 4px #ff8a4c); }
@keyframes flame { from { transform: scaleY(.7) scaleX(.9); opacity: .8; } to { transform: scaleY(1.15); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .rk__flame { animation: none; } }

/* The launch button: an empty bay until the rocket docks */
.btn--launch { gap: 0; }
.btn__rocket {
  position: relative; z-index: 1; width: 0; height: 26px; margin-right: 0; opacity: 0;
  transform: rotate(45deg) scale(.4); overflow: visible;
  transition: width .4s ease, margin .4s ease, opacity .3s ease, transform .5s cubic-bezier(.2, 1.6, .4, 1);
}
.btn__rocket .rk__body { fill: #1a0716; }
.btn__rocket .rk__fin { fill: #fff; }
.btn__rocket .rk__win { fill: #fff; stroke: #1a0716; }
.btn__rocket .rk__flame { opacity: 0; animation: none; }
.btn--launch.is-docked .btn__rocket { width: 20px; margin-right: 12px; opacity: 1; transform: rotate(45deg) scale(1); }
.btn--launch.is-docked { animation: armed 2.4s ease-in-out infinite; }
@keyframes armed { 50% { filter: drop-shadow(0 0 30px rgba(255, 120, 110, .9)); } }
.btn--launch.is-igniting .btn__rocket { animation: liftoff .7s cubic-bezier(.5, 0, .9, .4) forwards; }
.btn--launch.is-igniting .btn__rocket .rk__flame { opacity: 1; animation: flame .08s ease-in-out infinite alternate; }
@keyframes liftoff {
  0%, 30% { transform: rotate(45deg) translate(0, 0); }
  10% { transform: rotate(45deg) translate(-1px, 1px); } 20% { transform: rotate(45deg) translate(1px, -1px); }
  100% { transform: rotate(45deg) translate(0, -120px); opacity: 0; }
}

/* ---------- Blast-off overlay (launch.js) ---------- */
.launch { position: fixed; inset: 0; z-index: 200; background: #030305; opacity: 0; transition: opacity .5s ease; display: grid; place-items: center; }
.launch[hidden] { display: none; }
.launch.is-open { opacity: 1; }
.launch__sky { position: absolute; inset: 0; width: 100%; height: 100%; }
.launch__copy { position: relative; text-align: center; padding: 0 20px; max-width: 900px; }
.launch__line {
  font: 500 clamp(12px, 1.5vw, 17px)/1.4 var(--f-sans); letter-spacing: .32em; text-transform: uppercase; color: #eceaf2;
  text-shadow: 0 0 18px rgba(0, 0, 0, .9);
  opacity: 0; filter: blur(6px); letter-spacing: .6em; transition: opacity 1s ease, filter 1s ease, letter-spacing 1.4s cubic-bezier(.2, .8, .2, 1);
}
.launch__line + .launch__line { margin-top: 26px; }
.launch__line { text-wrap: balance; }
@media (max-width: 640px) { .launch.is-l1 .launch__line:nth-child(1), .launch.is-l2 .launch__line:nth-child(2) { letter-spacing: .2em; } .launch__line { font-size: 11.5px; } }
.launch.is-l1 .launch__line:nth-child(1), .launch.is-l2 .launch__line:nth-child(2) { opacity: 1; filter: none; letter-spacing: .32em; }
.launch__note { margin-top: 42px; font: 400 13px/1.6 var(--f-mono); color: #9d9aae; opacity: 0; transition: opacity .8s ease; }
.launch__close { margin-top: 26px; opacity: 0; transition: opacity .8s ease .2s; pointer-events: none; }
.launch__close::before { background: #030305; }
.launch.is-done .launch__note, .launch.is-done .launch__close { opacity: 1; pointer-events: auto; }
.launch.is-still .launch__line { transition: none; }

/* ---------- HUD ---------- */
.hud {
  position: fixed; left: var(--gutter); bottom: 22px; z-index: 40;
  display: flex; align-items: center; gap: 14px;
  font: 500 11px/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--dim);
  padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(5, 6, 22, .72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.hud.is-on { opacity: 1; }
.hud b { color: var(--text); font-weight: 500; }
.hud__bar { width: 80px; height: 1px; background: var(--line-strong); position: relative; }
.hud__bar i { position: absolute; left: 0; top: -1px; height: 3px; width: 100%; background: var(--plasma); transform-origin: left; transform: scaleX(0); }

/* ---------- Reveal defaults (JS adds .js to <html>) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(30px); }
.js .hero__inner { opacity: 0; }
@media (prefers-reduced-motion: reduce) { .js .hero__inner { opacity: 1; } .js [data-reveal] { opacity: 1; transform: none; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .nav { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
    width: 46px; height: 46px; padding: 0 11px; margin-left: 4px;
    background: transparent; border: 1px solid var(--line-strong); border-radius: 10px; cursor: pointer; z-index: 60;
  }
  .nav-toggle span { display: block; height: 1.5px; background: var(--text); transition: transform .3s, opacity .3s; }
  .nav-toggle span:nth-child(2) { width: 70%; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .steps__list { grid-template-columns: repeat(2, 1fr); }
  .steps__path { display: none; }
  .step { padding-top: 90px; }
}

@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .hero { flex-direction: column; align-items: stretch; padding-top: calc(var(--header-h) + 24px); padding-bottom: 110px; }
  .hero__stage {
    position: relative; order: 2; right: auto; top: auto; translate: none;
    width: 150vw; margin: -10vw 0 -26vw -34vw;
  }
  .hero__stats { margin-top: 40px; }
  .hero .plus--a, .hero .plus--c { display: none; }
  .traj-labels { display: none; }
  .turnaround__grid, .worlds__grid, .faq__grid, .contact__panel { grid-template-columns: 1fr; }
  .faq__grid .section__head { position: static; }
  .orbits { margin: -14% auto -16%; }
  .turnaround .section__intro, .turnaround .checks { display: none; }
  .turnaround__grid { gap: 28px; }
  .turnaround__state { margin-top: 18px; }
  .plans { grid-template-columns: 1fr; }
  .plans__plus { justify-self: center; }
  .turnaround__pin { padding: 90px 0 70px; }
  .hud { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .header-cta { display: none; }
  .brand__word { font-size: 14px; }
  .brand__mark { width: 28px; height: 28px; }
  .hero__title { font-size: clamp(1.9rem, 9.6vw, 3rem); }
  .hero__lede { font-size: 14px; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .eyebrow { align-items: flex-start; line-height: 1.5; }
  .eyebrow i { flex: none; margin-top: 5px; }
  .hero__stats { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 0 26px; margin-top: 36px; }
  .hero__stats li { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero__stats b { font-size: 2rem; }
  .hero__stats em { font-size: .9rem; }
  .hero__stats .dot { display: none; }
  .steps__list { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .orbits__chips button { font-size: 10px; padding: 6px 10px 6px 8px; }
  .orbits__chips button::before { width: 9px; height: 9px; }
  .ticker__label { padding: 0 14px; font-size: 10px; }
  .footer__row { flex-direction: column; }
  .new__links { display: none; }
  .new__h { font-size: 2.1em; }
  .scroll-cue { display: none; }
}
