/* ---------- tokens ---------- */
:root {
  color-scheme: dark;

  --marquee-gap: clamp(2.2rem, 5vw, 4rem);

  --bg: #05070f;
  --surface: rgba(19, 27, 54, 0.62);
  --stroke: rgba(139, 160, 220, 0.16);
  --stroke-strong: rgba(170, 190, 255, 0.52);

  --text: #eaeefb;
  --text-muted: #a5b0d4;
  --text-dim: #9ba7cd;

  --violet: #6d3bf5;
  --blue: #2d5bff;
  --azure: #22a7f0;
  --cyan: #22d3ee;
  --teal: #14c8a0;

  --grad: linear-gradient(112deg, var(--violet) 0%, var(--blue) 46%, var(--azure) 78%, var(--cyan) 100%);
  --grad-soft: linear-gradient(112deg, rgba(109, 59, 245, 0.22), rgba(45, 91, 255, 0.18) 48%, rgba(34, 211, 238, 0.16));

  /* one radius system: pill for interactive, 22px cards, 14px small tiles */
  --r-pill: 999px;
  --r-card: 22px;
  --r-tile: 14px;

  --shadow-lift: 0 18px 40px -18px rgba(4, 8, 24, 0.9), 0 2px 0 rgba(255, 255, 255, 0.05) inset;
  --shadow-deep: 0 40px 90px -40px rgba(6, 10, 32, 0.95);

  --pad-x: clamp(1.15rem, 4vw, 3rem);
  --gap: clamp(1rem, 1.6vw, 1.5rem);
  --sec-y: clamp(4.5rem, 9vw, 8.5rem);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Onest", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Unbounded", "Onest", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
main:focus { outline: none; }

.skip {
  position: absolute; left: 50%; top: 0; translate: -50% -120%;
  z-index: 90; padding: 0.7rem 1.2rem; border-radius: 0 0 var(--r-tile) var(--r-tile);
  background: var(--blue); color: #fff; font-weight: 600;
  transition: translate 0.18s ease;
}
.skip:focus { translate: -50% 0; }

.wrap { width: 100%; max-width: 1220px; margin-inline: auto; padding-inline: var(--pad-x); }

/* top-of-page target and sticky-header sentinel: needs real area to be observable */
#top { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }

/* ---------- background field ---------- */
#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.veil {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 70% at 50% -10%, rgba(109, 59, 245, 0.20), transparent 60%),
    radial-gradient(90% 60% at 100% 12%, rgba(34, 211, 238, 0.10), transparent 65%),
    linear-gradient(180deg, rgba(5, 7, 15, 0.34) 0%, rgba(5, 7, 15, 0.66) 52%, rgba(5, 7, 15, 0.86) 100%);
}
.page { position: relative; z-index: 2; }

/* ---------- header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}
.hdr.is-stuck {
  background: rgba(6, 9, 22, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--stroke);
}
.hdr .wrap { display: flex; align-items: center; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: 0.6rem; margin-right: auto; }
.brand-word {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: 0.01em;
}
.brand svg { width: 34px; height: 34px; }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-pill);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav a:hover { color: var(--text); background: rgba(140, 160, 230, 0.1); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.16s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn svg { width: 19px; height: 19px; flex: none; fill: currentColor; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 14px 32px -16px rgba(45, 91, 255, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 42px -16px rgba(45, 91, 255, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.btn-primary:active { transform: translateY(0) scale(0.985); }

.btn-ghost {
  background: rgba(20, 29, 58, 0.72);
  border-color: var(--stroke-strong);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(31, 43, 82, 0.86); border-color: rgba(180, 200, 255, 0.45); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0) scale(0.985); }

.btn-sm { min-height: 42px; padding: 0.55rem 1.05rem; font-size: 0.93rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: calc(100dvh - 72px);
  display: grid;
  align-items: center;
  padding-top: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  align-items: center;
  gap: clamp(2rem, 4.5vw, 4rem);
}
.hero h1 {
  font-size: clamp(2.3rem, 1.45rem + 3.1vw, 3.45rem);
  max-width: 19ch;
}
.hero h1 .grad {
  background: linear-gradient(100deg, #9d7cff, var(--azure) 46%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy { position: relative; z-index: 1; }
.hero-copy::before {
  content: "";
  position: absolute;
  inset: -14% 0 -16% 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(62% 58% at 36% 50%, rgba(5, 7, 15, 0.85), rgba(5, 7, 15, 0.5) 56%, transparent 80%);
}

.hero-sub {
  margin-top: 1.35rem;
  max-width: 46ch;
  color: var(--text-muted);
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.2rem);
}
.hero-cta { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* 3D brand object */
.stage { perspective: 1100px; display: grid; place-items: center; }
.disc {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background:
    radial-gradient(56% 56% at 30% 20%, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.05) 48%, transparent 72%),
    linear-gradient(148deg, rgba(60, 78, 150, 0.9) 0%, rgba(21, 30, 68, 0.94) 54%, rgba(7, 11, 26, 0.96) 100%);
  border: 1px solid rgba(170, 195, 255, 0.2);
  box-shadow:
    0 74px 130px -55px rgba(0, 0, 0, 0.95),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 20px 26px 54px -32px rgba(170, 200, 255, 0.24),
    inset -28px -36px 72px -28px rgba(3, 6, 15, 0.9);
}
.disc::before {
  content: "";
  position: absolute;
  inset: -7%;
  border-radius: 50%;
  background: conic-gradient(from 200deg, rgba(109, 59, 245, 0.5), rgba(34, 211, 238, 0.4), rgba(20, 200, 160, 0.35), rgba(109, 59, 245, 0.5));
  filter: blur(46px);
  opacity: 0.42;
  z-index: -1;
}
.disc-hex {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.5;
  background-image:
    linear-gradient(60deg, rgba(146, 172, 255, 0.09) 25%, transparent 25.5%, transparent 74.5%, rgba(146, 172, 255, 0.09) 75%),
    linear-gradient(-60deg, rgba(146, 172, 255, 0.09) 25%, transparent 25.5%, transparent 74.5%, rgba(146, 172, 255, 0.09) 75%),
    linear-gradient(0deg, rgba(146, 172, 255, 0.07) 25%, transparent 25.5%, transparent 74.5%, rgba(146, 172, 255, 0.07) 75%);
  background-size: 46px 80px;
}
.disc-mark {
  position: relative;
  width: 52%;
  margin-bottom: 9%;
  transform: translateZ(46px);
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.6));
}
.disc-word {
  position: absolute;
  bottom: 13%;
  transform: translateZ(30px);
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3.2vw, 2.15rem);
  letter-spacing: 0.02em;
  color: #f2f5ff;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.7);
}

/* ---------- section furniture ---------- */
.sec { padding-block: var(--sec-y); position: relative; }
.sec-head { max-width: 60ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.sec-head h2 { font-size: clamp(1.7rem, 1.1rem + 1.9vw, 2.45rem); }
.sec-head p { margin-top: 1rem; color: var(--text-muted); max-width: 52ch; }
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* ---------- sources bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
  perspective: 1400px;
}
.cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border: 1px solid var(--stroke);
  border-radius: var(--r-card);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}
.cell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(120, 170, 255, 0.16), transparent 62%);
}
.cell > h3, .cell > p, .cell > .chips { position: relative; z-index: 1; }
.cell:hover { transform: translateY(-6px); border-color: var(--stroke-strong); box-shadow: var(--shadow-deep), 0 0 0 1px rgba(150, 180, 255, 0.14); }
.cell:hover::after { opacity: 1; }

.cell-a { grid-column: span 4; }
.cell-b { grid-column: span 2; }
.cell-c { grid-column: span 2; }
.cell-d { grid-column: span 4; }
.cell-e { grid-column: span 3; }
.cell-f { grid-column: span 3; }

/* per-cell visual variation */
.cell-a { background: var(--grad-soft), var(--surface); }
.cell-a::before {
  content: "";
  position: absolute;
  right: -60px; top: -70px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 59, 245, 0.5), transparent 62%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}
.cell-d::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(150, 180, 255, 0.22) 1px, transparent 1.6px);
  background-size: 17px 17px;
  mask-image: linear-gradient(255deg, #000 5%, transparent 62%);
}
.cell-f { background: linear-gradient(200deg, rgba(20, 200, 160, 0.16), rgba(34, 211, 238, 0.07) 45%, transparent 70%), var(--surface); }

.cell h3 { font-size: clamp(1.12rem, 1rem + 0.5vw, 1.42rem); }
.cell p { color: var(--text-muted); font-size: 0.99rem; }

/* platform chip row */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(139, 160, 220, 0.14);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--stroke-strong);
  border-radius: var(--r-pill);
  background: rgba(10, 16, 36, 0.72);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: transform 0.16s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.chip svg { width: 17px; height: 17px; fill: currentColor; opacity: 0.92; }
.chip .mono {
  display: grid;
  place-items: center;
  width: 17px; height: 17px;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.92;
}
.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(190, 210, 255, 0.6);
  background: rgba(24, 36, 74, 0.9);
  box-shadow: 0 10px 24px -14px rgba(45, 91, 255, 0.9);
}
.chip:active { transform: translateY(0) scale(0.97); }
.chip::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.6px solid currentColor;
  border-top: 1.6px solid currentColor;
  rotate: 45deg;
  opacity: 0.45;
  margin-left: 0.1rem;
}

/* ---------- pricing ledger ---------- */
/* gradient numerals cannot survive a bright wave dot behind them */
#prices::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(5, 7, 15, 0.55);
}

.ledger { border-top: 1px solid var(--stroke); }
.row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--stroke);
}
@supports (grid-template-columns: subgrid) {
  .ledger {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content max-content;
  }
  .row {
    grid-column: 1 / -1;
    grid-template-columns: subgrid;
  }
}
.row-lead h3 { font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem); }
.row-lead p { margin-top: 0.5rem; color: var(--text-muted); max-width: 44ch; font-size: 0.97rem; }
.price {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.9rem);
  letter-spacing: -0.03em;
  /* fixed gradient window so a short price samples the same colours as a long one */
  background: linear-gradient(100deg, #9d7cff, var(--azure) 46%, var(--cyan)) 0 0 / 210px 100% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  text-align: right;
  line-height: 1.04;
}
.price-alt {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.52em;
}
.price-alt small { display: inline; margin-left: 0.4em; font-size: 0.7rem; }
.price small {
  display: block;
  margin-top: 0.25rem;
  font-family: "Onest", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-dim);
  -webkit-text-fill-color: var(--text-dim);
}
.price-from {
  display: inline;
  margin-right: 0.34em;
  font-family: "Onest", system-ui, sans-serif;
  font-size: 0.36em;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  vertical-align: 0.42em;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}
.ledger-note { margin-top: 1.6rem; color: var(--text-muted); font-size: 0.94rem; max-width: 54ch; }

/* ---------- flow ---------- */
.flow {
  --seg: clamp(1.2rem, 3vw, 2.4rem);
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--seg);
}
/* one rule per gap so the line stops at the centre of the last node */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 8px;
  right: calc(-1 * (var(--seg) + 8px));
  top: 9px;
  height: 2px;
  opacity: 0.6;
}
.step:nth-child(1)::after { background: linear-gradient(90deg, var(--blue), var(--azure)); }
.step:nth-child(2)::after { background: linear-gradient(90deg, var(--azure), var(--cyan)); }
.step:nth-child(3)::after { background: linear-gradient(90deg, var(--cyan), var(--teal)); }
.step { position: relative; padding-top: 2.4rem; }
.step::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--azure);
  box-shadow: 0 0 0 4px rgba(34, 167, 240, 0.16);
}
.step h3 { font-size: 1.08rem; }
.step p { margin-top: 0.55rem; color: var(--text-muted); font-size: 0.95rem; }

/* ---------- marquee ---------- */
.strip {
  position: relative;
  padding-block: clamp(2rem, 4vw, 3rem);
  border-block: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(12, 18, 40, 0.5), rgba(6, 10, 24, 0.2));
  overflow: hidden;
}
.strip::before, .strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(50px, 12vw, 160px);
  z-index: 2;
  pointer-events: none;
}
.strip::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.strip::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.track { display: flex; width: max-content; gap: var(--marquee-gap); animation: slide 34s linear infinite; }
.track > * { flex: none; display: grid; place-items: center; }
.track svg { width: clamp(26px, 3.4vw, 36px); height: clamp(26px, 3.4vw, 36px); fill: rgba(215, 226, 255, 0.62); transition: fill 0.2s ease; }
.track .mono {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: rgba(215, 226, 255, 0.62);
}
@keyframes slide { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(calc(-50% - var(--marquee-gap) / 2), 0, 0); } }
@media (prefers-reduced-motion: reduce) { .track { animation: none; } }

/* ---------- contact ---------- */
.contact { position: relative; }
.contact-box {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--stroke-strong);
  border-radius: var(--r-card);
  background: var(--grad-soft), rgba(11, 17, 38, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-deep);
  text-align: center;
  overflow: hidden;
}
.contact-box::before {
  content: "";
  position: absolute;
  left: 50%; top: -55%;
  width: 620px; height: 620px;
  translate: -50% 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 91, 255, 0.35), transparent 62%);
  filter: blur(40px);
  pointer-events: none;
}
.contact-box h2 { position: relative; font-size: clamp(1.7rem, 1.15rem + 1.8vw, 2.3rem); }
.contact-box p { position: relative; margin: 1.1rem auto 0; max-width: 46ch; color: var(--text-muted); }
.contact-cta { position: relative; margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* ---------- footer ---------- */
.ftr { border-top: 1px solid var(--stroke); padding-block: 2.6rem 3.2rem; }
.ftr .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem; }
.ftr-nav { display: flex; flex-wrap: wrap; gap: 0.35rem 1.4rem; margin-left: auto; }
.ftr-nav a { color: var(--text-muted); font-size: 0.94rem; }
.ftr-nav a:hover { color: var(--text); }

/* ---------- reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: rise 0.75s cubic-bezier(0.16, 1, 0.3, 1) both; }
  .hero-copy > .hero-sub { animation-delay: 90ms; }
  .hero-copy > .hero-cta { animation-delay: 180ms; }
  .js .rv { opacity: 0; transform: translateY(26px); }
  .js .rv.in { opacity: 1; transform: none; transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); transition-delay: var(--d, 0ms); }
}

@media (prefers-reduced-motion: no-preference) and (hover: hover) {
  .disc { animation: drift 7.5s ease-in-out infinite; }
}

@keyframes rise {
  from { transform: translateY(20px); }
  to { transform: none; }
}
@keyframes drift {
  0%, 100% { translate: 0 -6px; }
  50% { translate: 0 10px; }
}

/* ---------- responsive ---------- */
/* two even columns as soon as the 4/2 bento would squeeze a chip row */
@media (max-width: 1160px) {
  .cell-a, .cell-b, .cell-c, .cell-d, .cell-e, .cell-f { grid-column: span 3; }
}

@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .stage { order: -1; }
  .disc { width: min(62%, 300px); }
  .hero h1 { max-width: 20ch; }
  .flow { grid-template-columns: repeat(2, 1fr); row-gap: 2.4rem; }
  .step:not(:last-child)::after { display: none; }
  .step { padding-top: 2.1rem; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .bento { grid-template-columns: 1fr; }
  .cell-a, .cell-b, .cell-c, .cell-d, .cell-e, .cell-f { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .row { grid-template-columns: 1fr; row-gap: 1.1rem; }
  .row .btn { justify-self: start; }
  .price { text-align: left; }
  .flow { grid-template-columns: 1fr; }
  .hero-cta .btn, .contact-cta .btn { width: 100%; }
  .disc { width: min(70%, 250px); }
  .hero { padding-top: 1.25rem; }
  .ftr-nav { margin-left: 0; width: 100%; }
}

/* narrow phones: full-size pills put one platform per line */
@media (max-width: 480px) {
  .chip { padding: 0.5rem 0.72rem; font-size: 0.85rem; gap: 0.32rem; }
  .chip::after { display: none; }
}

/* short portrait screens: keep both CTAs above the fold */
@media (max-width: 700px) and (max-height: 700px) {
  .disc { width: min(46%, 158px); }
  .hero h1 { font-size: clamp(1.85rem, 1.2rem + 2vw, 2.2rem); }
  .hero-sub { margin-top: 0.9rem; }
  .hero-cta { margin-top: 1.4rem; }
}

/* landscape phones: the disc sits beside the copy instead of above it */
@media (max-width: 1024px) and (max-height: 620px) {
  .hero { min-height: 0; padding-top: 1.25rem; padding-bottom: 2rem; }
  .hero .wrap { grid-template-columns: minmax(0, 1fr) auto; gap: 1.5rem; }
  .stage { order: 0; }
  .disc { width: min(26vw, 160px); }
  .hero h1 { font-size: clamp(1.6rem, 0.9rem + 2.4vw, 2.3rem); max-width: 26ch; }
  .hero-sub { margin-top: 0.8rem; font-size: 1rem; }
  .hero-cta { margin-top: 1.2rem; gap: 0.6rem; }
  .hero-cta .btn { width: auto; }
}

@media (prefers-reduced-transparency: reduce) {
  .cell, .contact-box, .hdr.is-stuck { backdrop-filter: none; background-color: #0b1128; }
  .btn-ghost, .chip { background-color: #131b38; }
}
