@font-face {
  font-family: "Libre Franklin";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/libre-franklin-latin.woff2") format("woff2");
}

:root {
  color-scheme: light dark;
  --violet: #5a34d6;
  --violet-dark: #3b2196;
  --violet-soft: #f2eefc;
  --gold: #e0a458;
  --gold-hover: #e7ba7c;
  --green: #269247;
  --ink: #14161c;
  --muted: #57564f;
  --faint: #7c7a72;
  --canvas: #fafaf7;
  --surface: #ffffff;
  --surface-soft: #f2f1ec;
  --line: #e5e3dc;
  --line-strong: #d2cfc6;
  --plum: #211042;
  --on-dark: #fafaf7;
  --on-dark-muted: rgba(250, 250, 247, 0.72);
  --focus: 0 0 0 3px rgba(90, 52, 214, 0.34);
  --radius-small: 8px;
  --radius: 14px;
  --radius-large: 20px;
  --shadow: 0 18px 56px rgba(20, 22, 28, 0.09);
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --enter-ease: cubic-bezier(0.25, 0.1, 0.3, 1);
  --shell: min(1240px, calc(100vw - 64px));
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f8f7f2;
    --muted: #c9c5ce;
    --faint: #98939f;
    --canvas: #100d16;
    --surface: #1b1721;
    --surface-soft: #211b2a;
    --line: #39323f;
    --line-strong: #514859;
    --violet-soft: #211936;
    --green: #7fdf9c;
    --focus: 0 0 0 3px rgba(224, 164, 88, 0.52);
    --shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--canvas);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.flow-motion {
  scroll-behavior: auto;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:where(a, button, input, textarea, summary):focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

::selection {
  color: #14161c;
  background: #e0a458;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(96px, 11vw, 168px);
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
}

.button-large {
  min-height: 54px;
  padding-inline: 25px;
  font-size: 15px;
}

.button-gold {
  color: #14161c;
  background: var(--gold);
  border-color: var(--gold);
}

.button-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.button-quiet {
  color: var(--on-dark);
  background: rgba(20, 13, 34, 0.5);
  border-color: rgba(250, 250, 247, 0.24);
}

.button-quiet:hover {
  background: rgba(20, 13, 34, 0.76);
  border-color: rgba(250, 250, 247, 0.42);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-strong);
}

.button-outline:hover {
  background: var(--surface-soft);
}

.button-ink {
  color: var(--canvas);
  background: var(--ink);
  border-color: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Navigation */
.site-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 76px;
  color: var(--on-dark);
}

.nav-row {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img,
.brand picture {
  width: 32px;
  height: 32px;
  flex: none;
}

.nav-menu {
  margin-left: auto;
}

.nav-menu summary {
  display: none;
}

.nav-menu nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(250, 250, 247, 0.76);
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--on-dark);
}

.nav-actions {
  display: flex;
  gap: 8px;
}

/* Hero */
.hero-flow {
  position: relative;
  height: 120dvh;
  background: #000;
}

.hero {
  --hero-progress: 0;
  --cursor-x: 0;
  --cursor-y: 0;
  --spot-x: 72%;
  --spot-y: 42%;
  --hero-product-y: 0px;
  --hero-product-scale: 0.99;
  position: relative;
  position: sticky;
  top: 0;
  min-height: 100dvh;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--on-dark);
  background: #000;
  isolation: isolate;
}

.hero-video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(calc(var(--cursor-x) * 4px), calc(var(--cursor-y) * 3px), 0) scale(calc(1.04 + var(--hero-progress) * 0.025));
  transform-origin: center;
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-poster {
  z-index: -3;
  background: #120c20 url("/assets/hero/constellation-poster.jpg") center / cover no-repeat;
  opacity: 0;
}

.hero-video {
  z-index: -2;
  object-fit: cover;
  object-position: 59% center;
  opacity: 0;
}

.hero-scrim {
  z-index: -1;
  background: #000;
}

.hero-layout {
  position: relative;
  min-height: 100dvh;
  padding-block: clamp(132px, 16vh, 172px) 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 54vw);
  opacity: var(--hero-copy-opacity, 1);
  transform: translate3d(0, var(--hero-copy-y, 0), 0) scale(var(--hero-copy-scale, 1));
  transform-origin: left center;
  will-change: transform, opacity;
}

.hero-copy > * {
  animation: hero-copy-enter 300ms var(--enter-ease) both;
}

.hero-kicker {
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(58px, 5.7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 530px;
  margin-top: 24px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.48;
  color: var(--on-dark-muted);
}

.hero .button-row {
  margin-top: 28px;
}

.hero .button-quiet {
  display: none;
}

.hero-product {
  position: absolute;
  z-index: 1;
  top: 57%;
  left: 50%;
  width: min(1180px, calc(100vw - 96px));
  margin: 0;
  transform: translate3d(calc(-50% + var(--cursor-x) * 8px), calc(var(--hero-product-y) + var(--cursor-y) * 6px), 0) scale(var(--hero-product-scale));
  transform-origin: top center;
  will-change: transform;
}

.hero-product::before {
  position: absolute;
  z-index: -1;
  inset: -24px 15% auto;
  height: 118px;
  border-radius: 50%;
  background: rgba(224, 164, 88, 0.4);
  filter: blur(38px);
  transform: translate3d(calc(var(--cursor-x) * -12px), calc(var(--cursor-y) * -8px), 0);
  transition: transform 160ms cubic-bezier(0.4, 0, 0.6, 1);
  content: "";
}

.hero-product-frame {
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(247, 214, 170, 0.42);
  border-radius: 18px 18px 0 0;
  background: rgba(13, 9, 22, 0.92);
  box-shadow: 0 0 0 1px rgba(224, 164, 88, 0.12), 0 -14px 60px rgba(224, 164, 88, 0.22), 0 28px 80px rgba(0, 0, 0, 0.58);
  animation: hero-product-enter 300ms var(--enter-ease) both;
}

.hero-product img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

@keyframes hero-copy-enter {
  from {
    opacity: 0.72;
    filter: blur(2px);
    transform: translateY(8px);
  }
}

@keyframes hero-product-enter {
  from {
    opacity: 0.72;
    filter: blur(2px);
    transform: translateY(8px) scale(0.995);
  }
}

/* Offer */
.offer {
  --offer-opacity: 1;
  --offer-y: 0px;
  min-height: 72dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.offer-grid {
  display: block;
}

.offer-grid h2 {
  max-width: 1040px;
  font-size: clamp(54px, 7vw, 106px);
  line-height: 0.96;
  opacity: var(--offer-opacity);
  transform: translate3d(0, var(--offer-y), 0) scale(var(--offer-scale, 1));
  transform-origin: left center;
  will-change: transform, opacity;
}

.offer-grid h2 span {
  color: var(--violet);
}

.offer-grid > p:last-child {
  max-width: 54ch;
  margin-top: 34px;
  font-size: 19px;
  color: var(--muted);
  opacity: var(--offer-body-opacity, 1);
  transform: translate3d(0, var(--offer-body-y, 0), 0);
  will-change: transform, opacity;
}

/* Command Desk */
.product {
  --product-copy-opacity: 1;
  --product-copy-y: 0px;
  --product-copy-scale: 1;
  --product-media-opacity: 0;
  --product-media-y: 12px;
  --product-media-scale: 0.98;
  --product-list-opacity: 0;
  --product-list-y: 12px;
  position: relative;
  height: 180dvh;
  padding: 0;
  overflow: clip;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.command-layout {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
}

.command-copy {
  position: absolute;
  top: 50%;
  left: 0;
  max-width: 860px;
  opacity: var(--product-copy-opacity);
  transform: translate3d(0, calc(-50% + var(--product-copy-y)), 0) scale(var(--product-copy-scale));
  transform-origin: left center;
  will-change: transform, opacity;
}

.command-copy h2 {
  margin-top: 0;
  font-size: clamp(52px, 6.4vw, 94px);
}

.command-copy > p:not(.section-label) {
  max-width: 58ch;
  margin-top: 28px;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--muted);
}

.command-list {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
  opacity: var(--product-list-opacity);
  transform: translate3d(0, var(--product-list-y), 0);
  will-change: transform, opacity;
}

.command-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.command-list strong {
  font-weight: 700;
}

.command-list span {
  color: var(--muted);
}

.command-media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1500px, calc(100vw - 32px));
  margin: 0;
  opacity: var(--product-media-opacity);
  transform: translate3d(-50%, calc(-50% + var(--product-media-y)), 0) scale(var(--product-media-scale));
  transform-origin: center;
  will-change: transform, opacity;
}

.command-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-large);
  background: var(--surface-soft);
  box-shadow: 0 28px 90px rgba(20, 22, 28, 0.14);
  transform-origin: center bottom;
}

.command-media img {
  width: 100%;
  height: min(760px, 66dvh);
  object-fit: contain;
}

/* Sticky story */
.story {
  position: relative;
  background: var(--canvas);
}

.story-heading {
  min-height: 72dvh;
  display: grid;
  align-content: center;
  grid-template-columns: 2fr 8fr 2fr;
  gap: 28px;
}

.story-heading h2 {
  font-size: clamp(58px, 7.2vw, 108px);
}

.story-heading > p:last-child {
  align-self: end;
  max-width: 24ch;
  color: var(--muted);
}

.story-stack {
  position: relative;
}

.story-panel {
  --panel-clip: 0%;
  --panel-radius: 0px;
  --panel-opacity: 0.2;
  --panel-y: 12px;
  --panel-scale: 1;
  position: sticky;
  top: 0;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.story-panel:nth-child(1) { z-index: 1; }
.story-panel:nth-child(2) { z-index: 2; }
.story-panel:nth-child(3) { z-index: 3; }

.story-sell {
  background: var(--surface);
}

.story-install {
  background: var(--violet-soft);
}

.story-prove {
  color: var(--on-dark);
  background: var(--plum);
  border-color: rgba(250, 250, 247, 0.16);
}

.story-panel-inner {
  display: grid;
  grid-template-columns: 2fr 8fr 2fr;
  gap: 28px;
  align-items: end;
  opacity: var(--panel-opacity);
  transform: translate3d(0, var(--panel-y), 0) scale(var(--panel-scale));
  transform-origin: center;
  will-change: transform, opacity;
}

/* Static fallback stays complete when JavaScript, fine-pointer motion, or motion consent is absent. */
html:not(.flow-ready) .hero-flow {
  height: auto;
}

html:not(.flow-ready) .hero {
  position: relative;
}

html:not(.flow-ready) .hero-video,
html:not(.flow-ready) .hero-poster,
html:not(.flow-ready) .hero-copy,
html:not(.flow-ready) .offer-grid h2,
html:not(.flow-ready) .offer-grid > p:last-child {
  opacity: 1;
  transform: none;
}

html:not(.flow-ready) .offer {
  min-height: auto;
}

html:not(.flow-ready) .product {
  height: auto;
  padding-block: clamp(112px, 12vw, 190px);
  overflow: visible;
}

html:not(.flow-ready) .command-layout {
  position: relative;
  height: auto;
  overflow: visible;
}

html:not(.flow-ready) .command-copy,
html:not(.flow-ready) .command-media,
html:not(.flow-ready) .command-list {
  position: static;
  opacity: 1;
  transform: none;
}

html:not(.flow-ready) .command-media {
  margin: clamp(68px, 8vw, 112px) 50% 0;
  transform: translateX(-50%);
}

html:not(.flow-ready) .command-media img {
  height: auto;
}

html:not(.flow-ready) .command-list {
  margin-top: 48px;
}

html:not(.flow-ready) .story-panel {
  clip-path: none;
}

html:not(.flow-ready) .story-panel-inner {
  opacity: 1;
  transform: none;
}

.story-verb {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
}

.story-prove .story-verb {
  color: var(--gold);
}

.story-panel h3 {
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.96;
}

.story-panel-inner > p:last-child {
  max-width: 26ch;
  color: var(--muted);
}

.story-prove .story-panel-inner > p:last-child {
  color: var(--on-dark-muted);
}

/* Proof */
.proof {
  position: relative;
  z-index: 2;
  background: var(--surface);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) minmax(420px, 6fr);
  gap: clamp(64px, 10vw, 154px);
}

.proof-heading {
  align-self: start;
  position: sticky;
  top: 96px;
}

.proof-heading h2 {
  margin-top: 0;
  font-size: clamp(48px, 5vw, 74px);
}

.proof-points {
  border-top: 1px solid var(--line-strong);
}

.proof-point {
  min-height: 210px;
  display: grid;
  align-content: center;
  grid-template-columns: 4fr 5fr;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.proof-name {
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.proof-point > p:last-child {
  color: var(--muted);
}

/* Pricing */
.pricing {
  border-top: 1px solid var(--line);
}

.pricing-heading {
  max-width: 820px;
}

.pricing-heading h2 {
  margin-top: 0;
  font-size: clamp(54px, 6.3vw, 92px);
}

.pricing-heading > p:last-child {
  max-width: 46ch;
  margin-top: 26px;
  color: var(--muted);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  margin-top: 72px;
}

.price-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.price-card:nth-child(1),
.price-card:nth-child(2) {
  grid-column: 1 / span 3;
}

.price-card:nth-child(1) {
  grid-row: 1;
}

.price-card:nth-child(2) {
  grid-row: 2;
}

.price-card:nth-child(3) {
  grid-column: 4 / span 4;
  grid-row: 1 / span 2;
}

.price-card:nth-child(4) {
  grid-column: 8 / span 3;
  grid-row: 1 / span 2;
}

.price-card.is-recommended {
  color: var(--on-dark);
  background: var(--plum);
  border-color: var(--plum);
  box-shadow: var(--shadow);
}

.price-name {
  font-size: 15px;
  font-weight: 700;
}

.price-badge {
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.price-amount {
  margin-top: 18px;
  font-variant-numeric: tabular-nums;
}

.price-figure {
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.is-recommended .price-figure {
  font-size: clamp(56px, 6vw, 88px);
}

.price-per {
  font-size: 14px;
  color: var(--faint);
}

.is-recommended .price-per {
  color: var(--on-dark-muted);
}

.price-description {
  max-width: 32ch;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.is-recommended .price-description {
  color: var(--on-dark-muted);
}

.price-cta {
  align-self: flex-start;
  margin-top: auto;
}

.price-card.is-recommended .price-cta {
  color: #14161c;
}

.price-note {
  max-width: 76ch;
  margin-top: 30px;
  font-size: 14px;
  color: var(--muted);
}

.price-note a,
.faq-list a {
  color: var(--violet);
  text-underline-offset: 3px;
}

/* FAQ */
.faq {
  padding-top: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: clamp(56px, 9vw, 140px);
}

.faq h2 {
  font-size: clamp(44px, 4.8vw, 72px);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 24px 44px 24px 0;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 21px;
  font-size: 22px;
  font-weight: 400;
  color: var(--violet);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 62ch;
  padding: 0 44px 25px 0;
  color: var(--muted);
}

/* Audience */
.audience {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.audience-grid {
  display: grid;
  grid-template-columns: 2fr 8fr 2fr;
  gap: 28px;
}

.audience h2 {
  font-size: clamp(52px, 6.8vw, 102px);
}

.audience h2 span {
  color: var(--violet);
}

.audience-grid > p:last-child {
  align-self: end;
  max-width: 26ch;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  color: var(--on-dark);
  background: var(--plum);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(360px, 4fr);
  gap: clamp(56px, 10vw, 140px);
  align-items: center;
}

.cta-copy h2 {
  font-size: clamp(54px, 6.4vw, 94px);
}

.cta-copy > p {
  max-width: 49ch;
  margin-top: 28px;
  color: var(--on-dark-muted);
}

.cta-copy .button-row {
  margin-top: 34px;
}

.final-cta .button-outline {
  color: var(--on-dark);
  border-color: rgba(250, 250, 247, 0.34);
}

.final-cta .button-outline:hover {
  background: rgba(250, 250, 247, 0.08);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 28px;
  letter-spacing: -0.035em;
}

.contact-form > p:not(.form-status) {
  margin: -6px 0 4px;
  font-size: 15px;
  color: var(--muted);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--canvas);
}

.contact-form textarea {
  min-height: 92px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
}

.contact-form .button {
  justify-self: start;
  margin-top: 4px;
}

.contact-form .button:disabled {
  opacity: 0.52;
  pointer-events: none;
}

.form-status {
  min-height: 24px;
  font-size: 14px;
  color: var(--muted);
}

.form-status.is-ok {
  color: var(--green);
}

.form-status.is-err {
  color: #c1402c;
}

@media (prefers-color-scheme: dark) {
  .form-status.is-err {
    color: #ef8d7c;
  }
}

/* Footer */
.footer {
  padding-top: 72px;
  background: var(--canvas);
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 2fr 2fr 2fr;
  gap: 44px;
}

.footer-brand > p {
  max-width: 30ch;
  margin-top: 20px;
  color: var(--muted);
}

.footer-brand > a:last-child {
  display: inline-block;
  margin-top: 14px;
  color: var(--violet);
}

.footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer nav p {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.footer nav a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.footer nav a:hover {
  color: var(--ink);
}

.footer-legal {
  margin-top: 64px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--faint);
}

/* Motion is opt-in so content stays readable when scripts fail. */
.motion-ready .reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(12px);
  transition: opacity 1000ms var(--enter-ease), filter 1000ms var(--enter-ease), transform 1000ms var(--enter-ease);
}

.motion-ready .reveal.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 960px) {
  :root {
    --shell: min(100% - 40px, 820px);
  }

  .hero-flow {
    height: auto;
  }

  .hero {
    position: relative;
  }

  .hero-video,
  .hero-poster,
  .hero-copy {
    transform: none;
  }

  .hero-product {
    --hero-product-y: 0px;
    --hero-product-scale: 1;
  }

  .offer {
    min-height: auto;
  }

  .offer-grid h2,
  .offer-grid > p:last-child {
    opacity: 1;
    transform: none;
  }

  .product {
    height: auto;
    padding-block: clamp(112px, 12vw, 190px);
    overflow: visible;
  }

  .command-layout {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .command-copy,
  .command-media,
  .command-list {
    position: static;
    opacity: 1;
    transform: none;
  }

  .command-media {
    width: min(1280px, calc(100vw - 32px));
    margin: clamp(68px, 8vw, 112px) 50% 0;
    transform: translateX(-50%);
  }

  .command-media img {
    height: auto;
  }

  .command-list {
    margin-top: 48px;
  }

  .story-panel {
    clip-path: none;
  }

  .story-panel-inner {
    opacity: 1;
    transform: none;
  }

  .nav-menu nav {
    gap: 18px;
  }

  .nav-actions .button-quiet {
    display: none;
  }

  .offer-grid,
  .story-heading,
  .story-panel-inner,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid > p:last-child,
  .story-heading > p:last-child,
  .story-panel-inner > p:last-child,
  .audience-grid > p:last-child {
    align-self: auto;
  }

  .offer-grid h2,
  .offer-grid > p:last-child {
    grid-column: auto;
  }

  .offer-grid > p:last-child,
  .audience-grid > p:last-child {
    max-width: 48ch;
  }

  .proof-grid,
  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .proof-heading {
    position: static;
  }

  .price-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .price-card:nth-child(n) {
    min-height: 330px;
    grid-column: auto;
    grid-row: auto;
  }

  .price-card.is-recommended {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 700px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  body {
    font-size: 16px;
  }

  .section-pad {
    padding-block: 88px;
  }

  .site-nav,
  .nav-row {
    height: 68px;
  }

  .brand {
    font-size: 18px;
  }

  .nav-menu {
    position: relative;
    margin-left: auto;
  }

  .nav-menu summary {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(250, 250, 247, 0.28);
    border-radius: var(--radius-small);
    font-size: 14px;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
  }

  .nav-menu summary::-webkit-details-marker {
    display: none;
  }

  .nav-menu nav {
    position: absolute;
    top: 50px;
    right: 0;
    width: min(290px, calc(100vw - 32px));
    display: none;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(250, 250, 247, 0.18);
    border-radius: var(--radius);
    background: rgba(20, 13, 34, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  }

  .nav-menu[open] nav {
    display: grid;
  }

  .nav-menu a {
    padding: 10px;
    font-size: 16px;
    color: var(--on-dark);
  }

  .nav-actions .button-gold {
    display: none;
  }

  .hero-layout {
    padding-block: 104px 0;
  }

  .hero-video {
    object-position: 58% center;
  }

  .hero-scrim {
    background: #000;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-kicker {
    margin-bottom: 16px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(44px, 12vw, 58px);
  }

  .hero-lead {
    max-width: 32ch;
    margin-top: 18px;
    font-size: 16px;
  }

  .hero .button-row {
    margin-top: 22px;
  }

  .hero-product {
    top: 60%;
    width: calc(100vw - 32px);
  }

  .hero-product-frame {
    padding: 4px;
    border-radius: 14px 14px 0 0;
  }

  .hero-product img {
    border-radius: 8px 8px 0 0;
  }

  .button-large {
    min-height: 50px;
    padding-inline: 18px;
  }

  .offer-grid h2,
  .audience h2 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .product {
    min-height: auto;
  }

  .command-media {
    width: calc(100vw - 32px);
    margin-top: 56px;
  }

  .command-frame {
    border-radius: var(--radius);
  }

  .command-copy h2,
  .story-heading h2,
  .proof-heading h2,
  .pricing-heading h2,
  .cta-copy h2 {
    font-size: clamp(42px, 11.5vw, 56px);
  }

  .command-copy > p:not(.section-label) {
    font-size: 17px;
  }

  .command-list {
    margin-top: 42px;
  }

  .command-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .story-heading {
    min-height: 62dvh;
    padding-block: 88px;
  }

  .story-panel {
    min-height: 82dvh;
    padding-block: 92px 56px;
  }

  .story-panel-inner {
    align-items: start;
  }

  .story-panel h3 {
    font-size: clamp(44px, 12vw, 60px);
  }

  .story-panel-inner > p:last-child {
    max-width: 34ch;
  }

  .proof-grid {
    gap: 52px;
  }

  .proof-point {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 30px;
  }

  .price-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .price-card:nth-child(n) {
    min-height: 300px;
  }

  .price-card.is-recommended {
    min-height: 390px;
  }

  .faq {
    padding-top: 8px;
  }

  .faq-grid {
    gap: 36px;
  }

  .faq summary {
    font-size: 17px;
  }

  .cta-grid {
    gap: 52px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .hero .button-row,
  .cta-copy .button-row {
    display: grid;
  }

  .hero .button,
  .cta-copy .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video {
    display: none;
  }

  .hero-flow {
    height: auto;
  }

  .hero {
    position: relative;
  }

  .hero-poster,
  .hero-copy,
  .hero-product-frame,
  .offer-grid h2,
  .offer-grid > p:last-child {
    opacity: 1;
    transform: none;
  }

  .offer {
    min-height: auto;
  }

  .product {
    height: auto;
    padding-block: clamp(112px, 12vw, 190px);
  }

  .command-layout {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .command-copy,
  .command-media,
  .command-list {
    position: static;
    opacity: 1;
    transform: none;
  }

  .command-media {
    margin: clamp(68px, 8vw, 112px) 50% 0;
    transform: translateX(-50%);
  }

  .command-media img {
    height: auto;
  }

  .command-list {
    margin-top: 48px;
  }

  .story-panel {
    position: relative;
    min-height: 78dvh;
    clip-path: none;
  }

  .story-panel-inner {
    opacity: 1;
    transform: none;
  }

  .motion-ready .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .command-frame {
    opacity: 1;
    transform: none;
  }
}
