@font-face {
  font-family: "VT323";
  src: url("assets/fonts/vt323-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --paper: #020303;
  --ink: #fbfbf5;
  --muted: #b8b7b1;
  --dim: #77766f;
  --line: rgba(255, 255, 255, 0.14);
  --surface: #0b0d0e;
  --surface-2: #161719;
  --surface-3: #232427;
  --green: #04d764;
  --lime: #d9f441;
  --yellow: #ffc62b;
  --orange: #ff8b24;
  --red: #ff3043;
  --blue: #1554ff;
  --purple: #dc38ff;
  --hot: #ff2a8b;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", "Roboto Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 138, 36, 0.16), transparent 30rem),
    linear-gradient(180deg, #040505 0%, var(--paper) 44%, #050607 100%);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 60%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--lime);
  color: #071007;
  font-weight: 950;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 3, 3, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-elevated {
  border-bottom-color: var(--line);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.nav-shell {
  width: min(100% - 32px, var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  width: 176px;
}

.brand-lockup img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.nav-cta,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a {
  color: var(--muted);
  padding: 8px 11px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  color: #120804;
  background: var(--orange);
  padding: 8px 14px;
}

.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 86px 0 72px;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 42px 0;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -38px -28px -28px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 3, 3, 0.94), rgba(2, 3, 3, 0.7) 64%, transparent);
  filter: blur(10px);
}

.hero-demo {
  position: absolute;
  z-index: 1;
  top: 51%;
  right: max(-14vw, -180px);
  width: min(78vw, 1180px);
  transform: translateY(-50%) rotate(-0.5deg);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-eyebrow {
  text-transform: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(4.3rem, 12vw, 7.4rem);
  font-weight: 1000;
}

h2 {
  font-size: clamp(2.35rem, 6.4vw, 5.2rem);
  font-weight: 1000;
}

h3 {
  font-size: 1.24rem;
  font-weight: 950;
  line-height: 1.1;
}

.hero-lede {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  font-weight: 850;
  line-height: 1.18;
}

.hero-sublede {
  max-width: 590px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  font-weight: 720;
}

.store-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.app-store-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: -10px;
  border-radius: 8px;
}

.app-store-link:hover {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}

.app-store-badge {
  width: auto;
  max-width: none;
  height: 48px;
}

.platform-status {
  max-width: 350px;
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
}

.platform-status span {
  display: block;
  color: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  border: 1px solid transparent;
  padding: 12px 18px;
}

.button-primary {
  color: #120604;
  background: linear-gradient(90deg, var(--orange), var(--hot));
  box-shadow: 0 0 28px rgba(255, 87, 45, 0.3);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
}

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

.launch-offer-section {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 32px), 1280px);
  margin: 0 auto 58px;
}

.launch-offer-chassis {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 50px minmax(0, 0.39fr) minmax(0, 0.61fr) 50px;
  aspect-ratio: 4.3 / 1;
  min-height: 0;
  border: 2px solid rgba(134, 107, 53, 0.58);
  border-radius: 14px;
  background:
    radial-gradient(circle at 27% 58%, rgba(255, 118, 33, 0.11), transparent 28%),
    linear-gradient(90deg, rgba(255, 139, 36, 0.035), transparent 43%),
    #030404;
  box-shadow:
    inset 0 0 0 3px #080908,
    inset 0 0 0 5px rgba(122, 102, 60, 0.28),
    inset 0 0 0 9px rgba(0, 0, 0, 0.72),
    inset 0 0 42px rgba(0, 0, 0, 0.94),
    0 24px 70px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(255, 126, 37, 0.06);
}

.launch-offer-chassis::before {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: -1;
  border: 1px solid rgba(153, 124, 66, 0.28);
  border-radius: 8px;
  pointer-events: none;
}

.hardware-screw {
  position: absolute;
  z-index: 5;
  width: 20px;
  height: 20px;
  border: 2px solid #292923;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #938e78, #403e35 38%, #11120f 73%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(145, 116, 58, 0.22),
    0 2px 5px rgba(0, 0, 0, 0.9);
}

.hardware-screw::before,
.hardware-screw::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #0b0b09;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
}

.hardware-screw::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.screw-top-left { top: 13px; left: 13px; transform: rotate(7deg); }
.screw-top-right { top: 13px; right: 13px; transform: rotate(-11deg); }
.screw-bottom-left { bottom: 13px; left: 13px; transform: rotate(-4deg); }
.screw-bottom-right { right: 13px; bottom: 13px; transform: rotate(14deg); }

.launch-meter {
  position: relative;
  z-index: 2;
  min-width: 0;
  background: linear-gradient(180deg, rgba(255, 139, 36, 0.04), transparent 20% 80%, rgba(255, 139, 36, 0.025));
}

.meter-scale {
  position: absolute;
  top: 15%;
  bottom: 16%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.meter-scale span {
  color: #667b2e;
  font-family: var(--mono);
  font-size: 0.5rem;
  font-weight: 900;
  line-height: 1;
}

.meter-ladder {
  position: absolute;
  top: 15%;
  bottom: 16%;
  display: grid;
  grid-template-rows: repeat(24, minmax(2px, 1fr));
  gap: 3px;
  width: 9px;
}

.meter-ladder i {
  display: block;
  min-height: 2px;
  border-radius: 1px;
  background: #4d4a28;
  box-shadow: 0 0 2px rgba(172, 171, 70, 0.12);
}

.launch-meter-left .meter-scale { right: 6px; }
.launch-meter-left .meter-ladder { left: 7px; opacity: 0.44; }
.launch-meter-right .meter-scale {
  left: 5px;
  width: 21px;
  align-items: flex-end;
  text-align: right;
}
.launch-meter-right .meter-ladder { right: 7px; animation: meter-stack-breathe 2.8s ease-in-out infinite; }

.launch-meter-left .meter-ladder i:nth-child(-n + 7) {
  background: #51402b;
}

.launch-meter-left .meter-ladder i:nth-child(n + 8):nth-child(-n + 16) {
  background: #4b4d29;
}

.launch-meter-left .meter-ladder i:nth-child(n + 17) {
  background: #394d29;
}

.launch-meter-right .meter-ladder i:nth-child(-n + 4) {
  background: #4d4a32;
  box-shadow: 0 0 2px rgba(172, 171, 70, 0.14);
}

.launch-meter-right .meter-ladder i:nth-child(n + 5):nth-child(-n + 7) {
  background: #ff5c63;
  box-shadow: 0 0 5px rgba(255, 92, 99, 0.7);
}

.launch-meter-right .meter-ladder i:nth-child(n + 8):nth-child(-n + 10) {
  background: #ff8f35;
  box-shadow: 0 0 5px rgba(255, 143, 53, 0.65);
}

.launch-meter-right .meter-ladder i:nth-child(n + 11):nth-child(-n + 14) {
  background: #ffc83a;
  box-shadow: 0 0 5px rgba(255, 200, 58, 0.62);
}

.launch-meter-right .meter-ladder i:nth-child(n + 15):nth-child(-n + 18) {
  background: #d3e949;
  box-shadow: 0 0 5px rgba(211, 233, 73, 0.58);
}

.launch-meter-right .meter-ladder i:nth-child(n + 19) {
  background: #72e65b;
  box-shadow: 0 0 5px rgba(114, 230, 91, 0.58);
}

@keyframes meter-stack-breathe {
  0%, 100% { filter: brightness(0.82); opacity: 0.8; }
  50% { filter: brightness(1.08); opacity: 1; }
}

.launch-offer-chassis::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 15px 15px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.4), #000);
}

.launch-price {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid var(--line);
  background: radial-gradient(circle at 54% 60%, rgba(255, 98, 42, 0.17), transparent 58%);
  padding: 28px 18px 18px;
}

.launch-offer-label {
  margin: 0;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.launch-price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
  margin-top: 4px;
  transform: translateX(10px);
}

.segment-glyph {
  position: relative;
  display: block;
  flex: 0 0 auto;
  transform: skewX(-8deg);
  transform-origin: center;
  filter:
    drop-shadow(0 0 7px rgba(255, 94, 43, 0.42))
    drop-shadow(0 0 17px rgba(255, 45, 124, 0.16));
}

.segment-zero {
  width: clamp(9.25rem, 12.6vw, 10rem);
  height: clamp(11.5rem, 16vw, 12.85rem);
}

.segment-dollar {
  width: clamp(5.75rem, 8.3vw, 6.6rem);
  height: clamp(9.25rem, 13.8vw, 10.9rem);
}

.segment {
  position: absolute;
  display: block;
  box-shadow:
    0 0 9px rgba(255, 70, 71, 0.56),
    inset 0 0 10px rgba(255, 230, 160, 0.18);
}

.segment-a,
.segment-d {
  left: 15%;
  width: 70%;
  height: 13%;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}

.segment-a { top: 0; }
.segment-d { bottom: 0; }

.segment-b,
.segment-c,
.segment-e,
.segment-f {
  width: 22%;
  height: 43%;
  clip-path: polygon(50% 0, 100% 12%, 100% 88%, 50% 100%, 0 88%, 0 12%);
}

.segment-b { top: 7%; right: 0; }
.segment-c { right: 0; bottom: 7%; }
.segment-e { bottom: 7%; left: 0; }
.segment-f { top: 7%; left: 0; }

.segment-g {
  top: 43.5%;
  left: 15%;
  width: 70%;
  height: 13%;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}

.segment-zero .segment-a,
.segment-zero .segment-d {
  background: linear-gradient(90deg, #ff9b2d 0%, #ff6f3b 46%, #ff2a8b 100%);
}

.segment-zero .segment-f,
.segment-zero .segment-e {
  background: linear-gradient(180deg, #ff9b2d, #ff7035);
}

.segment-zero .segment-b,
.segment-zero .segment-c {
  background: linear-gradient(180deg, #ff5270, #ff2a8b);
}

.segment-dollar .segment,
.dollar-stem {
  background: linear-gradient(135deg, #ffad2d, #ff8629);
}

.segment-dollar .segment-a,
.segment-dollar .segment-d,
.segment-dollar .segment-g {
  left: 17%;
  width: 66%;
  height: 12.5%;
}

.segment-dollar .segment-a { top: 8%; }
.segment-dollar .segment-g { top: 43.75%; }
.segment-dollar .segment-d { bottom: 8%; }

.segment-dollar .segment-f {
  top: 15%;
  left: 0;
  width: 23%;
  height: 32%;
}

.segment-dollar .segment-c {
  right: 0;
  bottom: 15%;
  width: 23%;
  height: 32%;
}

.dollar-stem {
  position: absolute;
  left: 43%;
  width: 14%;
  height: 11%;
  clip-path: polygon(35% 0, 100% 6%, 65% 100%, 0 94%);
  box-shadow: 0 0 9px rgba(255, 139, 36, 0.5);
}

.dollar-stem-top { top: 0; }
.dollar-stem-bottom { bottom: 0; }

.launch-offer-copy {
  align-self: stretch;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px 18px 52px;
}

.launch-offer-copy h2 {
  max-width: 960px;
  font-size: clamp(2.4rem, 3.2vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  word-spacing: 0.06em;
}

.launch-heading-line {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.launch-offer-lede {
  max-width: 630px;
  margin: 14px 0 0;
  color: #a7a69f;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 760;
  line-height: 1.4;
}

.launch-offer-cta {
  display: inline-flex;
  width: min(100%, 410px);
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(#020303, #020303) padding-box,
    linear-gradient(90deg, var(--orange), #ff6040 48%, var(--hot)) border-box;
  box-shadow: 0 0 24px rgba(255, 42, 139, 0.12);
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  text-decoration: none;
}

.launch-offer-cta-prompt {
  color: var(--orange);
}

.launch-offer-cta-text {
  color: var(--orange);
  background: linear-gradient(90deg, var(--orange), #ff6040 48%, var(--hot));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.launch-offer-cta:hover {
  background:
    linear-gradient(rgba(255, 42, 139, 0.12), rgba(255, 42, 139, 0.12)) padding-box,
    linear-gradient(90deg, var(--orange), #ff6040 48%, var(--hot)) border-box;
  transform: translateY(-1px);
}

.launch-offer-note {
  margin: 6px 0 0;
  color: #898883;
  font-size: clamp(0.875rem, 1.08vw, 1rem);
  font-weight: 760;
}

.launch-offer-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.launch-offer-facts div {
  display: flex;
  min-height: 62px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 12, 13, 0.92);
  padding: 12px 16px;
}

.launch-offer-facts dt {
  color: #85847d;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.launch-offer-facts dd {
  margin: 5px 0 0;
  font-size: 0.9rem;
  font-weight: 950;
  white-space: nowrap;
}

.launch-offer-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
  gap: 12px;
  margin-top: 12px;
  min-height: 86px;
  border: 1px solid rgba(121, 100, 56, 0.46);
  border-radius: 14px;
  background: rgba(5, 7, 7, 0.96);
  box-shadow:
    inset 0 0 0 4px #080909,
    inset 0 0 0 5px rgba(120, 99, 56, 0.16);
  padding: 10px 22px;
}

.launch-lcd {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr) auto) minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 64px;
  border: 1px solid rgba(137, 177, 65, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(193, 255, 87, 0.025) 0 0.8px, transparent 1px) 0 0 / 3px 3px,
    repeating-linear-gradient(0deg, rgba(193, 255, 87, 0.012) 0 1px, transparent 1px 3px),
    linear-gradient(180deg, #020603, #010201);
  box-shadow:
    inset 0 0 0 4px #010201,
    inset 0 0 18px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(187, 255, 75, 0.04);
  color: #a7e544;
  font-family: "VT323", var(--mono);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.05;
  padding: 12px 14px;
  text-align: center;
  text-shadow: 0 0 7px rgba(170, 245, 62, 0.45);
}

.launch-lcd i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 6px var(--orange);
}

.device-frame {
  position: relative;
  border-radius: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 15%),
    linear-gradient(180deg, #181a1b, #060707 34%, #010101);
  box-shadow:
    inset 0 0 0 5px #050606,
    inset 0 0 0 7px rgba(255, 255, 255, 0.08),
    var(--shadow),
    0 0 100px rgba(255, 47, 129, 0.14);
  padding: 18px 20px 20px;
}

.device-frame::before {
  content: "";
  position: absolute;
  inset: 7px 10% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.phone-side {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 8px;
  height: 88px;
  border-radius: 18px;
  background: linear-gradient(180deg, #020303, #0f1112 48%, #000);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(-50%);
}

.phone-side-left {
  left: 5px;
}

.phone-side-right {
  right: 5px;
}

.device-screen {
  position: relative;
  aspect-ratio: 1241 / 645;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: #000;
  box-shadow:
    0 0 0 6px #030404,
    inset 0 0 28px rgba(0, 0, 0, 0.88);
}

.device-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.07), transparent 24%, transparent 76%, rgba(255, 47, 129, 0.025));
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.ticker-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #070808;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 30px;
  padding: 18px 0 18px 30px;
}

.ticker-group span {
  flex: none;
  color: var(--lime);
  font-family: var(--mono);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-group span:nth-child(2n) {
  color: var(--orange);
}

.ticker-group span:nth-child(3n) {
  color: var(--blue);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 94px 0;
}

.band-deep {
  background: linear-gradient(180deg, #030404, #08090a);
}

.section-heading,
.content-grid,
.status-panel,
.contact-content,
.legal-content,
.legal-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-heading {
  max-width: 900px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.section-lede,
.feature-copy p,
.legal-shell p {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
  font-weight: 700;
}

.demo-section {
  background:
    linear-gradient(180deg, rgba(255, 139, 36, 0.09), rgba(21, 84, 255, 0.06)),
    #050606;
}

.demo-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: center;
}

.demo-video-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
  box-shadow:
    var(--shadow),
    0 0 70px rgba(255, 139, 36, 0.13);
}

.demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.screen-grid {
  width: min(100% - 32px, var(--max));
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.screen-card,
.knob-card,
.legal-panel,
.contact-form,
.contact-sidecar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.screen-card {
  padding: 16px;
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.screen-card h3,
.knob-card h3,
.legal-panel h2,
.contact-sidecar h2 {
  margin-top: 16px;
}

.screen-card p,
.knob-card p,
.legal-panel p,
.legal-panel li,
.contact-sidecar li {
  color: var(--muted);
  font-weight: 650;
}

.screen-card-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
  aspect-ratio: 2778 / 1845.75;
}

.screen-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.screen-card-media-transparent {
  padding: clamp(6px, 0.7vw, 10px);
}

.screen-card-media-transparent img {
  object-fit: contain;
}

.screen-card-media-portrait img {
  object-position: center 65%;
}

.stereo-feature {
  width: min(100% - 32px, var(--max));
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  border: 1px solid rgba(255, 139, 36, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 139, 36, 0.13), transparent 38%),
    rgba(255, 255, 255, 0.055);
  padding: clamp(20px, 3vw, 36px);
}

.stereo-screenshot {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.45));
  object-fit: contain;
  padding: 0;
}

.stereo-console {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 12%),
    linear-gradient(180deg, #303238, #0a0b0c 70%);
  box-shadow: inset 0 0 0 8px #111214, var(--shadow);
  padding: clamp(20px, 3vw, 34px);
}

.stereo-screen {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 14px;
  border: 2px solid #050605;
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 187, 65, 0.035) 1px, transparent 1px),
    #190f02;
  background-size: 100% 8px;
  box-shadow: inset 0 0 42px rgba(255, 153, 34, 0.16);
  padding: 18px;
}

.stereo-model,
.stereo-screen strong,
.stereo-controls span:not(.stereo-knob) {
  color: #ffb32c;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stereo-screen strong {
  text-shadow: 0 0 14px rgba(255, 179, 44, 0.66);
}

.stereo-bars {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 7px;
  align-items: end;
}

.stereo-bars i {
  height: var(--h);
  min-height: 12px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #fff06a, #ff8b24 44%, #d93e13);
  box-shadow: 0 0 12px rgba(255, 139, 36, 0.44);
}

.stereo-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 18px;
}

.stereo-controls span:not(.stereo-knob) {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: #18191b;
  padding: 8px 10px;
}

.stereo-knob {
  width: 52px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #5b5d61, #080909 64%);
  box-shadow: inset -6px -6px 12px #000, 0 0 0 4px #17181a;
}

.stereo-copy h3 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.stereo-copy p:last-child {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 700;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 12%, rgba(220, 56, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 12% 88%, rgba(255, 139, 36, 0.12), transparent 28rem),
    #050606;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: min(100% - 32px, var(--max));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--orange), var(--hot), var(--blue), transparent);
  opacity: 0.9;
}

.reviews-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.reviews-heading h2 {
  max-width: 790px;
}

.reviews-heading > p {
  max-width: 440px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
  font-weight: 700;
}

.review-frame {
  margin-top: 46px;
}

.review-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(86%, 980px);
  gap: 16px;
  margin: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 0 18px;
  list-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(255, 139, 36, 0.72) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.review-list::-webkit-scrollbar {
  height: 8px;
}

.review-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.review-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--hot));
}

.review-list:focus-visible {
  outline-offset: 8px;
}

.reviews-shell.is-single .review-list {
  grid-auto-columns: 1fr;
  overflow-x: hidden;
  scrollbar-width: none;
}

.reviews-shell.is-single .review-list::-webkit-scrollbar {
  display: none;
}

.review-slide {
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.review-card {
  position: relative;
  min-height: 430px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 139, 36, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(125deg, rgba(255, 139, 36, 0.1), transparent 34%),
    radial-gradient(circle at 92% 16%, rgba(21, 84, 255, 0.16), transparent 34%),
    rgba(10, 12, 13, 0.95);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    0 0 70px rgba(255, 42, 139, 0.08);
  padding: clamp(26px, 4.2vw, 54px);
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--hot) 44%, var(--blue) 74%, var(--lime));
}

.review-card-alt {
  border-color: rgba(21, 84, 255, 0.4);
  background:
    linear-gradient(125deg, rgba(21, 84, 255, 0.12), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(220, 56, 255, 0.17), transparent 36%),
    rgba(10, 12, 13, 0.96);
}

.review-card-alt::before {
  background: linear-gradient(90deg, var(--blue), var(--purple) 48%, var(--hot) 74%, var(--lime));
}

.review-card-alt h3 {
  color: var(--lime);
}

.review-card-alt .review-quote-mark {
  color: rgba(21, 84, 255, 0.16);
}

.review-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow);
}

.review-rating svg {
  width: 124px;
  height: auto;
  overflow: visible;
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(255, 198, 43, 0.32));
}

.review-rating strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.86rem;
}

.review-source {
  margin: 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-quote-mark {
  position: absolute;
  top: 52px;
  right: clamp(24px, 5vw, 64px);
  color: rgba(255, 139, 36, 0.13);
  font-family: Georgia, serif;
  font-size: clamp(9rem, 19vw, 17rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.review-card h3 {
  position: relative;
  z-index: 1;
  margin-top: clamp(32px, 5vw, 52px);
  color: var(--orange);
  font-family: var(--mono);
  font-size: clamp(0.9rem, 1.5vw, 1.08rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  max-width: 1010px;
  margin: 18px 0 34px;
}

.review-card blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3.15vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.review-card blockquote p + p {
  margin-top: 0.7em;
}

.review-card.review-card-long blockquote p {
  font-size: clamp(1.4rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

.review-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px 28px;
  margin-top: auto;
  padding: 24px clamp(168px, 18vw, 210px) 0 0;
  border-top: 1px solid var(--line);
}

.review-author {
  display: grid;
  gap: 2px;
}

.review-author strong {
  font-size: 1rem;
  font-weight: 950;
}

.review-author span {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.review-app-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.review-app-link:hover {
  color: var(--orange);
}

.review-app-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.review-index {
  position: absolute;
  right: clamp(18px, 3vw, 38px);
  bottom: -0.1em;
  z-index: 0;
  color: rgba(255, 255, 255, 0.026);
  font-family: var(--mono);
  font-size: clamp(6.5rem, 13vw, 10rem);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.review-card-placeholder {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 14% 18%, rgba(255, 139, 36, 0.15), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(220, 56, 255, 0.16), transparent 34%),
    rgba(10, 12, 13, 0.96);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.review-card-placeholder-blue {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 14% 18%, rgba(21, 84, 255, 0.18), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(217, 244, 65, 0.11), transparent 34%),
    rgba(10, 12, 13, 0.96);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.review-card-placeholder-pink {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 14% 18%, rgba(255, 42, 139, 0.16), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(255, 139, 36, 0.12), transparent 34%),
    rgba(10, 12, 13, 0.96);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.review-placeholder-status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-placeholder-status span {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 139, 36, 0.72);
}

.review-card-placeholder-blue .review-placeholder-status span {
  background: var(--lime);
  box-shadow: 0 0 18px rgba(217, 244, 65, 0.62);
}

.review-card-placeholder-pink .review-placeholder-status span {
  background: var(--hot);
  box-shadow: 0 0 18px rgba(255, 42, 139, 0.68);
}

.review-placeholder-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
  margin: auto 0;
  padding: 34px 0;
  transition: opacity 240ms ease, transform 240ms ease;
}

.reviews-shell.is-enhanced .review-slide:not(.is-active) .review-placeholder-copy {
  opacity: 0;
  transform: translateX(24px);
}

.review-placeholder-mark {
  width: 84px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 139, 36, 0.42);
  border-radius: 50%;
  background: rgba(255, 139, 36, 0.09);
  color: var(--orange);
  box-shadow: 0 0 42px rgba(255, 139, 36, 0.12);
}

.review-card-placeholder-blue .review-placeholder-mark {
  border-color: rgba(217, 244, 65, 0.38);
  background: rgba(217, 244, 65, 0.07);
  color: var(--lime);
  box-shadow: 0 0 42px rgba(21, 84, 255, 0.16);
}

.review-card-placeholder-pink .review-placeholder-mark {
  border-color: rgba(255, 42, 139, 0.4);
  background: rgba(255, 42, 139, 0.08);
  color: var(--hot);
  box-shadow: 0 0 42px rgba(255, 42, 139, 0.14);
}

.review-placeholder-mark svg {
  width: 54px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.review-card-placeholder h3 {
  max-width: 680px;
  margin-top: 30px;
  color: var(--ink);
  font-family: var(--font);
  font-size: clamp(2.55rem, 5.5vw, 5rem);
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: none;
}

.review-placeholder-copy > p {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 750;
}

.review-write-link {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--orange), var(--hot));
  color: #120604;
  font-size: 0.92rem;
  font-weight: 950;
  padding: 12px 17px;
  text-decoration: none;
  box-shadow: 0 0 32px rgba(255, 87, 45, 0.22);
}

.review-card-placeholder-blue .review-write-link {
  background: linear-gradient(90deg, var(--lime), #7de7ff);
  color: #05100c;
  box-shadow: 0 0 32px rgba(21, 84, 255, 0.2);
}

.review-card-placeholder-pink .review-write-link {
  background: linear-gradient(90deg, var(--hot), var(--orange));
  color: #16040d;
  box-shadow: 0 0 32px rgba(255, 42, 139, 0.22);
}

.review-write-link:hover {
  transform: translateY(-1px);
}

.review-write-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
}

.review-count {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.review-buttons {
  display: flex;
  gap: 9px;
}

.review-buttons button {
  width: 46px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  cursor: pointer;
}

.review-buttons button:hover:not(:disabled) {
  border-color: rgba(255, 139, 36, 0.62);
  background: rgba(255, 139, 36, 0.14);
  color: var(--orange);
}

.review-buttons button:disabled {
  opacity: 0.3;
  cursor: default;
}

.review-buttons svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.review-buttons svg[hidden] {
  display: none;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 54px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  align-items: center;
}

.feature-copy {
  max-width: 760px;
}

.tweak-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.tweak-list span {
  border: 1px solid rgba(255, 139, 36, 0.3);
  border-radius: 999px;
  background: rgba(255, 139, 36, 0.09);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 9px 12px;
  text-transform: uppercase;
}

.splash-tower {
  position: relative;
  max-height: 690px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #020303;
  box-shadow: var(--shadow);
}

.splash-tower img {
  width: 100%;
}

.listening-section {
  background:
    radial-gradient(circle at 15% 25%, rgba(21, 84, 255, 0.15), transparent 32%),
    radial-gradient(circle at 85% 72%, rgba(220, 56, 255, 0.13), transparent 30%),
    #050607;
}

.occasion-grid {
  width: min(100% - 32px, var(--max));
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.occasion-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: clamp(20px, 2.6vw, 30px);
}

.occasion-card > span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 900;
}

.occasion-card:nth-child(2n) > span {
  color: var(--orange);
}

.occasion-card:nth-child(3n) > span {
  color: var(--purple);
}

.occasion-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.control-section {
  background:
    linear-gradient(90deg, rgba(255, 139, 36, 0.12), transparent 42%, rgba(21, 84, 255, 0.1)),
    #060707;
}

.knob-grid {
  width: min(100% - 32px, var(--max));
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.knob-card {
  padding: 22px;
  min-height: 220px;
}

.dial {
  position: relative;
  width: 104px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(145deg, #3c3d40, #090a0b);
  box-shadow: inset -8px -8px 14px rgba(0, 0, 0, 0.42), inset 4px 4px 8px rgba(255, 255, 255, 0.08);
}

.dial::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  width: 5px;
  height: 32px;
  border-radius: 5px;
  background: var(--orange);
  transform-origin: 50% 38px;
  transform: translateX(-50%) rotate(var(--turn));
}

.dial-wind { --turn: 62deg; }
.dial-bass { --turn: 24deg; }
.dial-jiggle { --turn: 46deg; }
.dial-woo { --turn: 135deg; }

.dial-woo::after {
  background: var(--purple);
  box-shadow: 0 0 18px rgba(220, 56, 255, 0.6);
}

.privacy-snapshot {
  background: #020303;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: start;
}

.privacy-list {
  display: grid;
  gap: 14px;
}

.privacy-list p {
  margin: 0;
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 255, 255, 0.055);
  padding: 16px 18px;
  color: var(--muted);
  font-weight: 700;
}

.privacy-list strong {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--lime);
  font-weight: 900;
}

.compat-grid {
  width: min(100% - 32px, var(--max));
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.compat-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: clamp(20px, 2.6vw, 30px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.compat-card h3 {
  margin-top: 10px;
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  line-height: 1.02;
}

.compat-card p:last-child {
  color: var(--muted);
  font-weight: 700;
}

.compat-card-yes {
  border-color: rgba(4, 215, 100, 0.34);
  background: linear-gradient(180deg, rgba(4, 215, 100, 0.13), rgba(255, 255, 255, 0.055));
}

.compat-card-no {
  border-color: rgba(255, 48, 67, 0.34);
  background: linear-gradient(180deg, rgba(255, 48, 67, 0.13), rgba(255, 255, 255, 0.055));
}

.roadmap-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(220, 56, 255, 0.15), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(4, 215, 100, 0.13), transparent 30%),
    #040505;
}

.roadmap-section .status-panel {
  grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
}

.status-section {
  background:
    linear-gradient(180deg, transparent, rgba(255, 48, 67, 0.08)),
    #08090a;
}

.status-panel {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(22px, 4vw, 44px);
}

.status-panel > img {
  border-radius: 24px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.45);
}

.store-cta-panel {
  margin-top: 28px;
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.support-links a {
  text-underline-offset: 4px;
}

.player-preview {
  width: min(220px, 100%);
  height: auto;
  justify-self: center;
}

.legal-main {
  background: #040505;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 62px;
  background:
    linear-gradient(90deg, rgba(255, 139, 36, 0.14), transparent 55%),
    #050606;
}

.legal-shell {
  max-width: 900px;
}

.legal-shell h1 {
  font-size: clamp(3.3rem, 10vw, 7.8rem);
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: 42px 0 94px;
}

.legal-panel {
  padding: clamp(20px, 3vw, 32px);
}

.legal-panel h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
}

.legal-panel ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.legal-panel a {
  color: var(--lime);
  font-weight: 900;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  padding: 42px 0 94px;
}

.contact-form,
.contact-sidecar {
  padding: clamp(20px, 3vw, 32px);
}

.form-topper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.form-topper h2 {
  font-size: clamp(2.1rem, 5vw, 3.7rem);
}

.form-topper img {
  width: 72px;
  border-radius: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label,
fieldset {
  display: grid;
  gap: 7px;
}

label span,
legend {
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.42);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.choice-cloud {
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  grid-template-columns: repeat(5, minmax(0, auto));
  align-items: center;
  gap: 12px;
}

.choice-cloud legend {
  padding: 0 8px;
}

.choice-cloud label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.choice-cloud input {
  width: auto;
}

.wide-field {
  margin-top: 18px;
}

.wide-field small,
.form-note {
  color: var(--dim);
  font-weight: 750;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.form-actions button {
  cursor: pointer;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-result {
  margin-top: 18px;
  border-radius: var(--radius);
  background: rgba(4, 215, 100, 0.12);
  border: 1px solid rgba(4, 215, 100, 0.32);
  padding: 18px;
}

.form-result.is-error {
  background: rgba(255, 48, 67, 0.12);
  border-color: rgba(255, 48, 67, 0.34);
}

.form-result pre {
  overflow: auto;
  white-space: pre-wrap;
  color: var(--muted);
}

.contact-status {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(22px, 4vw, 34px);
}

.contact-status-success {
  border-color: rgba(4, 215, 100, 0.34);
  background: rgba(4, 215, 100, 0.12);
}

.contact-status-error {
  border-color: rgba(255, 48, 67, 0.34);
  background: rgba(255, 48, 67, 0.12);
}

.honey-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-sidecar {
  align-self: start;
  min-width: 0;
  position: sticky;
  top: 96px;
}

.contact-sidecar img {
  max-width: 210px;
}

.contact-sidecar h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-sidecar ul {
  padding-left: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #020303;
  padding: 38px 0;
}

.footer-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer-shell nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-shell a {
  color: var(--muted);
  font-weight: 850;
  text-decoration: none;
}

.footer-shell a:hover,
.footer-shell a[aria-current="page"] {
  color: var(--ink);
}

.footer-shell p {
  margin: 0;
  color: var(--dim);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-shell .apple-legal {
  grid-column: 1 / -1;
  max-width: 920px;
  justify-self: center;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.45;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .ticker-track {
    animation-duration: 28s !important;
  }

  .meter-ladder {
    animation: none !important;
    filter: none !important;
  }
}

@media (max-width: 1279px) and (min-width: 1120px) {
  .launch-offer-chassis {
    grid-template-columns: 44px minmax(0, 0.39fr) minmax(0, 0.61fr) 44px;
    aspect-ratio: auto;
    min-height: 320px;
  }

  .launch-price {
    padding-inline: 14px;
  }

  .launch-price-display {
    gap: 20px;
  }

  .launch-offer-copy {
    padding: 18px 16px 18px 40px;
  }

  .launch-offer-copy h2 {
    font-size: clamp(2.25rem, 3.27vw, 2.45rem);
  }
}

@media (max-width: 1119px) {
  .launch-offer-chassis {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    grid-template-rows: auto auto;
    aspect-ratio: auto;
    min-height: 0;
  }

  .launch-meter-left {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .launch-meter-right {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .launch-price {
    grid-column: 2;
    grid-row: 1;
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 34px 24px 26px;
  }

  .launch-price-display {
    transform: none;
  }

  .launch-offer-copy {
    grid-column: 2;
    grid-row: 2;
    padding: 36px;
  }

  .launch-heading-line {
    white-space: normal;
  }

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

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 10px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-copy {
    max-width: 100%;
    padding: 24px 0 420px;
    pointer-events: none;
  }

  .hero-copy > * {
    pointer-events: auto;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-demo {
    top: auto;
    bottom: 46px;
    right: 50%;
    width: min(900px, 108vw);
    transform: translateX(50%) rotate(-1deg);
  }

  .screen-grid,
  .knob-grid,
  .compat-grid,
  .occasion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-band,
  .stereo-feature,
  .reviews-heading,
  .content-grid,
  .demo-shell,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-sidecar {
    position: static;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .section[id] {
    scroll-margin-top: 156px;
  }

  .nav-shell {
    width: min(100% - 24px, var(--max));
    gap: 12px;
  }

  .brand-lockup {
    width: 136px;
  }

  .nav-cta {
    padding: 8px 10px;
  }

  .nav-links {
    gap: 4px;
    padding-bottom: 12px;
  }

  .nav-links a {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 0.84rem;
  }

  .hero-section {
    padding-bottom: 42px;
  }

  #hero-title {
    font-size: clamp(3.5rem, 18vw, 4.3rem);
  }

  #hero-title span {
    display: block;
  }

  .hero-copy {
    padding-bottom: 310px;
  }

  .launch-offer-section {
    width: min(calc(100% - 24px), 1280px);
    margin-bottom: 42px;
  }

  .launch-offer-chassis {
    grid-template-columns: 20px minmax(0, 1fr) 20px;
    min-height: 0;
  }

  .meter-scale {
    display: none;
  }

  .meter-ladder {
    top: 42px;
    bottom: 42px;
    width: 8px;
    gap: 3px;
  }

  .launch-meter-left .meter-ladder {
    left: 6px;
  }

  .launch-meter-right .meter-ladder {
    right: 6px;
  }

  .hardware-screw {
    width: 16px;
    height: 16px;
  }

  .hardware-screw::before,
  .hardware-screw::after {
    width: 8px;
    height: 2px;
  }

  .screw-top-left { top: 8px; left: 8px; }
  .screw-top-right { top: 8px; right: 8px; }
  .screw-bottom-left { bottom: 8px; left: 8px; }
  .screw-bottom-right { right: 8px; bottom: 8px; }

  .launch-price {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 30px 12px 24px;
  }

  .launch-offer-label {
    text-align: center;
  }

  .launch-price-display {
    gap: 10px;
    margin-top: 10px;
  }

  .segment-dollar {
    width: clamp(5.2rem, 26vw, 6.5rem);
    height: clamp(8rem, 40vw, 10.5rem);
  }

  .segment-zero {
    width: clamp(8.5rem, 43vw, 10rem);
    height: clamp(10.5rem, 55vw, 13rem);
  }

  .launch-offer-copy {
    padding: 32px 20px 36px;
  }

  .launch-offer-copy h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 0.98;
    word-spacing: 0.02em;
  }

  .launch-offer-cta {
    width: 100%;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .launch-lcd {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 8px;
    min-height: 88px;
    font-size: 1rem;
  }

  .launch-lcd i {
    display: none;
  }

  .launch-offer-facts,
  .screen-grid,
  .knob-grid,
  .compat-grid,
  .occasion-grid,
  .form-grid,
  .status-panel {
    grid-template-columns: 1fr;
  }

  .stereo-screen {
    min-height: 164px;
    padding: 14px;
  }

  .stereo-bars {
    gap: 4px;
  }

  .stereo-controls {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .roadmap-section .status-panel {
    grid-template-columns: 1fr;
  }

  .device-frame {
    border-radius: 26px;
    padding: 10px 11px 12px;
  }

  .device-screen {
    border-radius: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .choice-cloud {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .store-cta {
    align-items: flex-start;
  }

  .platform-status {
    flex-basis: 100%;
  }

  .button {
    width: 100%;
  }

  .review-list {
    grid-auto-columns: 92%;
  }

  .review-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .review-card blockquote p {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .review-card-placeholder h3 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .review-placeholder-copy {
    padding-block: 44px;
  }

  .review-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 0;
  }

  .review-source {
    width: 100%;
  }
}

@media (max-width: 419px) {
  .launch-lcd {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 359px) {
  .launch-price-display {
    gap: 6px;
  }

  .launch-offer-copy {
    padding-inline: 16px;
  }

  .launch-offer-cta {
    gap: 8px;
    font-size: 0.82rem;
    padding-inline: 10px;
  }
}

@media (forced-colors: active) {
  .segment-glyph {
    display: none;
  }

  .launch-price-display::after {
    content: "$0";
    color: CanvasText;
    font-family: var(--mono);
    font-size: clamp(7rem, 15vw, 11rem);
    font-weight: 900;
    line-height: 1;
  }

  .launch-offer-cta {
    border: 2px solid LinkText;
    background: Canvas;
  }

  .launch-offer-cta-text {
    background: none;
    color: LinkText;
    -webkit-text-fill-color: LinkText;
  }
}
