/* =========================================================
   WeOrbit · Landing page
   Visual language inherited from the prototype: deep cosmic
   indigo, mono labels, member-color identity, one periwinkle
   accent. Flat and restrained. No heavy glows.
   ========================================================= */

:root {
  --stage: #07081a;
  --ink: #0a0b1e;
  --ink-2: #11132e;
  --panel: #161a3a;
  --panel-2: #1c2147;
  --hair: #2a2d55;
  --hair-soft: #1e2147;
  --steel: #5e618f;
  --steel-2: #9a9dc8;
  --paper: #eef0ff;
  --paper-dim: #b9bce0;
  --lume: #8c9bff;
  --lume-dim: #4a4f8a;
  --blue: #6ea8e8;
  --red: #e890b0;
  --green: #7cc88f;
  --gold: #e8b04b;
  --radius: 11px;

  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  color: var(--paper);
  background:
    radial-gradient(900px 620px at 18% -6%, #18204e 0%, transparent 56%) fixed,
    radial-gradient(820px 720px at 92% 6%, #2a1840 0%, transparent 52%) fixed,
    var(--stage);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; }
button { font: inherit; }
::selection { background: var(--lume); color: #0a0b1e; }

/* Shared orbit mark, drawn from the app icon */
.page-nav__mark,
.page-mark {
  display: inline-block;
  background: var(--ink) url("./prototype/icon.svg") center / contain no-repeat;
  border: 1px solid var(--hair);
  border-radius: 6px;
  flex-shrink: 0;
}
.page-nav__mark { width: 22px; height: 22px; }
.page-mark { width: 56px; height: 56px; border-radius: 14px; }
.page-mark--lg { width: 84px; height: 84px; border-radius: 20px; border: 0; }

/* =========================================================
   Page chrome
   ========================================================= */
.page-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 40px);
  font-size: 12px;
  color: var(--steel-2);
  background: rgba(7, 8, 26, 0.72);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--hair-soft);
}
.page-nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .01em;
  font-size: 14px;
}
.page-nav__mark {
  background: radial-gradient(circle at 35% 30%, #e8b04b, #b06bd6 70%);
  border: 0;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}
.page-nav__meta { display: flex; align-items: center; gap: 10px; }
.page-nav__meta .sep { color: var(--hair); }
.page-nav__link {
  color: var(--lume);
  text-decoration: none;
  font-weight: 500;
  transition: opacity .15s;
}
.page-nav__link:hover { opacity: .7; }

.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px) 40px;
}

/* =========================================================
   Shared type / eyebrow / CTA
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--steel-2);
  padding: 6px 12px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: var(--ink-2);
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lume);
  position: relative;
}
.eyebrow__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--lume);
  opacity: 0;
  animation: live-pulse 2.4s ease-in-out infinite;
}
@keyframes live-pulse {
  0% { transform: scale(0.8); opacity: .55; }
  100% { transform: scale(2.4); opacity: 0; }
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .03em;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--hair);
  transition: transform .12s var(--ease), background .15s, border-color .15s;
}
.cta:active { transform: translateY(1px); }
.cta--primary {
  background: var(--lume);
  color: #0a0b1e;
  border-color: var(--lume);
  font-weight: 600;
}
.cta--primary:hover { background: #a3b0ff; border-color: #a3b0ff; }
.cta--primary svg { stroke: currentColor; }
.cta--ghost {
  background: var(--ink-2);
  color: var(--paper);
}
.cta--ghost:hover { background: var(--panel); border-color: var(--steel); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(48px, 8vw, 104px) 0 clamp(40px, 6vw, 72px);
}
.hero__left .page-mark { display: block; margin-bottom: 22px; }
.hero__title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -.03em;
  margin: 20px 0 24px;
}
.hero__title em { font-style: normal; font-weight: 300; color: var(--lume); }
.hero__lede {
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.6;
  color: var(--paper-dim);
  max-width: 54ch;
  margin: 0 0 32px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__hint {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .03em;
  color: var(--steel);
  margin: 16px 0 0;
}
.hero__stats {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--hair-soft);
}
.hero__stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero__stats span {
  font-family: var(--mono);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  color: var(--lume);
  letter-spacing: -.02em;
}
.hero__stats small {
  font-size: 12px;
  color: var(--steel-2);
  max-width: 15ch;
  line-height: 1.4;
}

.hero__right { display: flex; flex-direction: column; align-items: center; }
.hero__caption {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .03em;
  color: var(--steel);
  margin: 18px 0 0;
  transition: color .2s;
}

/* =========================================================
   Phone frame
   ========================================================= */
.phone {
  --phone-w: 340px;
  width: var(--phone-w);
  max-width: 88vw;
}
.phone--hero { --phone-w: 320px; }
.phone--featured { --phone-w: 360px; }
.phone__bezel {
  border-radius: 44px;
  padding: 10px;
  background: linear-gradient(160deg, #23264a, #0c0d22);
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 40px 90px -34px rgba(0,0,0,.85),
    0 0 0 1px #000;
}
.phone__screen {
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  background:
    radial-gradient(620px 420px at 20% -4%, #18204e 0%, transparent 58%),
    radial-gradient(560px 480px at 96% 6%, #2a1840 0%, transparent 54%),
    var(--ink);
  height: 680px;
  display: flex;
  flex-direction: column;
}
.phone--featured .phone__screen { height: 720px; }
.phone--hero .phone__screen { height: 660px; }

.status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 6px;
  color: var(--paper-dim);
  flex-shrink: 0;
}
.status__time { font-family: var(--mono); font-weight: 500; font-size: 14px; }
.status__icons { display: flex; gap: 7px; align-items: center; }
.status__icons svg { fill: var(--paper-dim); }

/* engraved label */
.etch {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
}
.etch--live { color: var(--lume); }
.etch--blue { color: var(--blue); }

/* screen body inside the phone */
.mock {
  flex: 1;
  padding: 4px 16px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* phone topbar (matches prototype) */
.mk-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 6px 2px;
}
.mk-top__space {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .01em;
}
.mk-top__code {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--steel);
  letter-spacing: .04em;
  margin-top: 2px;
}
.mk-top__acting {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel-2);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 5px 7px 5px 10px;
}
.mk-chip {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 700;
  color: #0a0b1e;
}

/* =========================================================
   Single-user app mock (hero) — topbar, feed, console.
   Mirrors the real Tier-B screen, minus the god-view switcher.
   ========================================================= */
.mk-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 2px;
  flex: 0 0 auto;
}
.mk-bar__day {
  font-family: "Orbitron", var(--mono);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--paper);
  border-bottom: 1px dashed rgba(160, 178, 255, .3);
  padding-bottom: 2px;
}
.mk-bar__me {
  width: 30px; height: 30px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1.5px color-mix(in srgb, var(--c) 60%, transparent);
}
.mk-bar__me img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* live-activity whisper, pinned just under the constellation */
.mk-feed {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  max-width: 94%;
  text-align: center;
  font-size: 11px;
  letter-spacing: .02em;
  color: var(--paper-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* focused-member console card */
.hconsole {
  flex: 0 0 auto;
  margin: 6px 2px 2px;
  background: rgba(20, 24, 54, .55);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--hair-soft);
  border-radius: 24px;
  padding: 6px 16px 16px;
  display: flex;
  flex-direction: column;
}
.hconsole__grip {
  width: 36px; height: 4px;
  border-radius: 100px;
  background: var(--steel);
  opacity: .55;
  margin: 2px auto 9px;
}
.hconsole__head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair-soft);
}
.hconsole__av {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1.5px color-mix(in srgb, var(--c) 55%, transparent);
}
.hconsole__av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hconsole__id { display: flex; flex-direction: column; flex: 1; }
.hconsole__name { font-size: 17px; font-weight: 600; color: var(--paper); }
.hconsole__lvl { font-family: var(--mono); font-size: 11px; color: var(--steel-2); }
.hconsole__tokens {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(232, 176, 75, .28);
  background: rgba(232, 176, 75, .12);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
}
.hconsole__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 22px 6px 4px;
}
.hconsole__etitle { font-size: 17px; font-weight: 600; color: var(--paper); }
.hconsole__esub {
  font-size: 13px;
  color: var(--paper-dim);
  max-width: 250px;
  line-height: 1.5;
}
.hconsole__cta {
  margin-top: 12px;
  min-width: 210px;
  text-align: center;
  padding: 13px 14px;
  border-radius: 14px;
  background: var(--lume);
  color: #0a0b1e;
  font-weight: 600;
  font-size: 14px;
}

/* =========================================================
   Constellation mock
   ========================================================= */
.constel {
  position: relative;
  flex: 1;
  margin-top: 4px;
  min-height: 0;
}
.constel__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.constel__lines line {
  stroke: rgba(140, 155, 255, 0.16);
  stroke-width: 0.4;
}
.orb {
  position: absolute;
  transform: translate(-50%, -50%);
  color: var(--c, #7cc88f);
}
/* each orb traces its own slow elliptical drift, so the whole family looks
   like it's genuinely in orbit (mirrors the prototype's float animation) */
.orb__float {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  animation: orb-drift var(--orb-dur, 18s) linear var(--orb-delay, 0s) infinite;
  will-change: transform;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(var(--rx, 9px), 0); }
  12.5% { transform: translate(calc(var(--rx, 9px) * 0.707), calc(var(--ry, 7px) * 0.707)); }
  25% { transform: translate(0, var(--ry, 7px)); }
  37.5% { transform: translate(calc(var(--rx, 9px) * -0.707), calc(var(--ry, 7px) * 0.707)); }
  50% { transform: translate(calc(var(--rx, 9px) * -1), 0); }
  62.5% { transform: translate(calc(var(--rx, 9px) * -0.707), calc(var(--ry, 7px) * -0.707)); }
  75% { transform: translate(0, calc(var(--ry, 7px) * -1)); }
  87.5% { transform: translate(calc(var(--rx, 9px) * 0.707), calc(var(--ry, 7px) * -0.707)); }
}
@media (prefers-reduced-motion: reduce) {
  .orb__float { animation: none; }
}
/* avatar = progress ring + disc; ring is the recognition meter */
.orb__av {
  position: relative;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
}
.orb--lg .orb__av { width: 70px; height: 70px; }
.orb__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.orb__ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 2.4;
}
.orb__ring-fg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 2.4;
  stroke-linecap: round;
}
.orb__disc {
  position: relative;
  width: 74%; height: 74%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  color: #0a0b1e;
  overflow: hidden;
  box-shadow:
    inset 0 -4px 8px rgba(0,0,0,0.28),
    0 7px 18px -7px rgba(0, 0, 0, 0.6);
}
.orb--lg .orb__disc { font-size: 20px; }
.orb__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.is-you .orb__disc {
  box-shadow:
    inset 0 -4px 8px rgba(0,0,0,0.28),
    0 0 0 2px color-mix(in srgb, var(--c) 70%, transparent),
    0 7px 20px -6px rgba(0, 0, 0, 0.65);
}
.orb__name { font-size: 12px; font-weight: 500; }
.orb__role {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--steel);
  letter-spacing: .03em;
}
.orb__you {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: .12em;
  color: #0a0b1e;
  background: var(--lume);
  border-radius: 100px;
  padding: 1px 6px;
  margin-top: 1px;
}
.orb__pending {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0b1e;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
}

/* frosted console at the base of the phone */
.mk-console {
  margin-top: auto;
  background: rgba(20, 22, 52, 0.62);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 15px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mk-console__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mk-console__head .orb__disc { width: 30px; height: 30px; font-size: 12px; box-shadow: none; }
.mk-console__id { display: flex; flex-direction: column; gap: 1px; }
.mk-console__name { font-size: 14px; font-weight: 600; }
.mk-console__lvl {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--steel);
  letter-spacing: .04em;
}
.mk-console__rule {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 12px 0;
}

/* duty rows */
.duty {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
}
.duty + .duty { border-top: 1px solid rgba(255,255,255,0.05); }
.duty__check {
  width: 22px; height: 22px;
  border-radius: 7px;
  border: 1.5px solid var(--hair);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: transparent;
}
.duty.is-done .duty__check {
  background: var(--green);
  border-color: var(--green);
  color: #0a0b1e;
}
.duty.is-done .duty__check svg { stroke: currentColor; }
.duty__body { flex: 1; min-width: 0; }
.duty__label { font-size: 13px; }
.duty.is-done .duty__label { color: var(--steel-2); text-decoration: line-through; }
.duty__by {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--steel);
  letter-spacing: .03em;
}
/* cadence: a boundary's own clock — asleep → live → overdue → done */
.duty__meta { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.duty__tag {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--steel-2);
  border: 1px solid var(--hair);
  border-radius: 5px;
  padding: 2px 5px;
}
.duty.is-live .duty__tag { color: var(--lume); border-color: rgba(140,155,255,0.45); }
.duty.is-overdue .duty__tag,
.duty.is-overdue .duty__label { color: #f0b07a; }
.duty.is-overdue .duty__tag { border-color: rgba(240,176,122,0.5); }
.duty.is-asleep { opacity: 0.45; }
.duty__tag--unset {
  border-style: dashed;
  border-color: var(--hair);
  color: var(--steel);
  text-transform: none;
}
.duty__state { font-family: var(--mono); font-size: 9px; color: var(--steel); letter-spacing: .03em; }
.duty.is-live .duty__state { color: var(--lume); }
.duty.is-overdue .duty__state { color: #f0b07a; }
.mk-rhythm {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--hair);
}

/* roles sheet mock */
.mk-sheet {
  margin-top: auto;
  background: rgba(16, 18, 44, 0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px 22px 18px 18px;
  padding: 16px 16px 18px;
}
.mk-sheet__grip {
  width: 36px; height: 4px; border-radius: 100px;
  background: var(--hair);
  margin: 0 auto 14px;
}
.mk-sheet__title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.mk-sheet__sub { font-size: 11px; color: var(--steel-2); line-height: 1.5; margin-bottom: 14px; }
.role {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border: 1px solid var(--hair);
  border-radius: 13px;
  margin-bottom: 9px;
}
.role.is-mine { border-color: var(--lume); background: rgba(140, 155, 255, 0.08); }
.role__dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.role__body { flex: 1; }
.role__name { font-size: 13px; font-weight: 500; }
.role__owner { font-family: var(--mono); font-size: 9px; color: var(--steel); letter-spacing: .03em; }
.role__state {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px solid var(--hair);
  border-radius: 100px;
  padding: 3px 8px;
}
.role__state--locked { color: var(--gold); border-color: rgba(232,176,75,0.4); }
.role__state--mine { color: #0a0b1e; background: var(--lume); border-color: var(--lume); }

/* recognition mock */
.recog {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.recog__token {
  align-self: center;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff2cf, var(--gold) 65%);
  display: grid;
  place-items: center;
  color: #5a3d05;
  box-shadow: 0 8px 30px -8px rgba(232,176,75,0.6);
}
.recog__token svg { width: 34px; height: 34px; }
.recog__caption { text-align: center; font-size: 13px; color: var(--paper-dim); line-height: 1.5; }
.recog__caption strong { color: var(--paper); font-weight: 600; }
.recog-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20, 22, 52, 0.62);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 11px 13px;
}
.recog-row .orb__disc { width: 30px; height: 30px; font-size: 12px; box-shadow: none; }
.recog-row__txt { font-size: 12px; line-height: 1.4; flex: 1; }
.recog-row__txt b { font-weight: 600; }
.recog-row__txt span { color: var(--steel-2); }
.recog-row__lvl {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
}

/* leveling mock */
.levels { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.level-card {
  background: rgba(20, 22, 52, 0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 13px 14px;
}
.level-card__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; }
.level-card__name { font-size: 13px; font-weight: 600; }
.level-card__lvl { font-family: var(--mono); font-size: 10px; color: var(--lume); }
.level-card__track { display: block; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.08); overflow: hidden; }
.level-card__fill { display: block; height: 100%; border-radius: 3px; }

/* =========================================================
   Features
   ========================================================= */
.features { padding: clamp(48px, 8vw, 96px) 0; }
.features__head { margin-bottom: 48px; }
.features__title,
.audience__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 18px 0 0;
}
.features__title em,
.audience__title em { font-style: normal; font-weight: 300; color: var(--lume); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature {
  background: var(--ink-2);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.feature__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--hair);
  background: var(--panel);
  display: grid;
  place-items: center;
  color: var(--lume);
  margin-bottom: 18px;
}
.feature h3 { font-size: 17px; font-weight: 600; letter-spacing: -.01em; margin: 0 0 10px; }
.feature p { font-size: 14px; line-height: 1.55; color: var(--paper-dim); margin: 0; }

/* =========================================================
   Bands
   ========================================================= */
.band { padding: clamp(40px, 7vw, 80px) 0; }
.band--feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.band__num,
.pair-item__head .band__num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lume);
  margin-bottom: 16px;
}
.band__caption h2,
.pair-item__head h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}
.band__caption p,
.pair-item__head p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--paper-dim);
  margin: 0 0 22px;
  max-width: 48ch;
}
.band__notes { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.band__notes li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--paper-dim);
}
.band__notes li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lume);
}
.band--feature .phone { justify-self: center; }

.pair-item__pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(232,176,75,0.4);
  border-radius: 999px;
  padding: 4px 10px 4px 22px;
  position: relative;
  margin-left: 10px;
}
.pair-item__pill::before {
  content: "";
  position: absolute;
  left: 9px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.band--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.pair-item { display: flex; flex-direction: column; align-items: center; }
.pair-item__head { width: 100%; max-width: 440px; }

/* =========================================================
   Audience
   ========================================================= */
.audience { padding: clamp(48px, 8vw, 96px) 0; }
.audience__head { margin-bottom: 48px; }
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.persona-card {
  background: var(--ink-2);
  border: 1px solid var(--hair-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.persona-card__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--lume);
  letter-spacing: .1em;
}
.persona-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -.01em; margin: 14px 0 12px; }
.persona-card p { font-size: 14px; line-height: 1.6; color: var(--paper-dim); margin: 0 0 18px; }
.persona-card__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--steel-2);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 5px 11px;
}

/* =========================================================
   Closing CTA
   ========================================================= */
.closing { padding: clamp(48px, 8vw, 96px) 0; display: flex; justify-content: center; text-align: center; }
.closing__inner { max-width: 600px; }
.install-icon { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 28px; }
.install-icon__tile {
  width: 84px; height: 84px;
  border-radius: 20px;
  background: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.8), 0 0 0 1px var(--hair);
}
.install-icon__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--steel-2);
}
.closing .eyebrow { margin-bottom: 18px; }
.closing__title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 16px 0 18px;
}
.closing__title em { font-style: normal; font-weight: 300; color: var(--lume); }
.closing__lede { font-size: 16px; line-height: 1.55; color: var(--paper-dim); margin: 0 0 32px; }
.closing__steps { display: flex; flex-direction: column; gap: 14px; text-align: left; margin: 0 auto 32px; max-width: 440px; }
.install-step { display: flex; align-items: center; gap: 14px; }
.install-step__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  background: var(--ink-2);
  color: var(--lume);
  font-family: var(--mono);
  font-size: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.install-step p { font-size: 14px; line-height: 1.5; color: var(--paper-dim); margin: 0; }
.install-step strong { color: var(--paper); font-weight: 600; }
.closing__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* =========================================================
   Footer
   ========================================================= */
.page-foot {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(40px, 6vw, 64px) 0 24px;
  border-top: 1px solid var(--hair-soft);
  margin-top: 24px;
}
.page-foot__brand { display: block; font-weight: 600; font-size: 16px; margin-bottom: 8px; }
.page-foot__tag { font-family: var(--mono); font-size: 12px; color: var(--steel); letter-spacing: .03em; }
.page-foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.page-foot__cols h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel-2);
  margin: 0 0 10px;
}
.page-foot__cols p { font-size: 13px; line-height: 1.6; color: var(--paper-dim); margin: 0; }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-revealed { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .hero,
  .band--feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .band--feature .band__caption,
  .band--feature .phone { margin: 0 auto; }
  .band--pair { grid-template-columns: 1fr; gap: 64px; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .audience__grid { grid-template-columns: 1fr; gap: 14px; }
  .page-foot { grid-template-columns: 1fr; }
  /* Lead with the copy, then show the orbit beneath it.
     Stats hold a 3-up grid so they stay aligned. */
  .hero { gap: 36px; }
  .hero__right { margin-top: 4px; }
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 460px;
  }
  .hero__stats small { max-width: none; }
}
@media (max-width: 640px) {
  .features__grid { grid-template-columns: 1fr; }
  .page-foot { grid-template-columns: 1fr; }
  .page-foot__cols { grid-template-columns: 1fr; gap: 22px; }
  .hero { padding-top: clamp(32px, 8vw, 56px); }
  .hero__title { font-size: clamp(38px, 11vw, 56px); }
  .hero__stats { gap: 12px; }
  .hero__stats span { font-size: 27px; }
  .phone--hero { --phone-w: 300px; }
  .page-nav__meta .sep,
  .page-nav__meta span:last-child { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .eyebrow__dot::after { animation: none; }
}
