:root {
  color-scheme: dark;
  --bg: #08090b;
  --surface: #101216;
  --surface-2: #15181d;
  --surface-3: #1b1f25;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f4f1eb;
  --muted: #aaa9a5;
  --red: #f2192d;
  --red-dark: #8f0c18;
  --amber: #ffb648;
  --green: #6be3b0;
  --blue: #85b8ff;
  --max: 1240px;
  --header-height: 72px;
  --scroll-progress: 0;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(242, 25, 45, 0.06), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: "Alliance No.2", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 5px;
}

::selection {
  background: var(--red);
  color: white;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--amber));
  box-shadow: 0 0 20px rgba(242, 25, 45, 0.65);
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
  width: min(calc(100% - 40px), 1440px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  line-height: 0;
}

.wordmark img {
  display: block;
  width: 136px;
  height: auto;
}

.wordmark-radio {
  color: var(--text);
}

.wordmark-tedu {
  color: var(--red);
}

.wordmark-signal {
  position: relative;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(242, 25, 45, 0.14);
}

.site-nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  min-width: 0;
  margin-inline: auto;
  gap: 6px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.045em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--red);
  content: "";
  transition: transform 220ms var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="location"] {
  color: var(--text);
}

.site-nav a.is-active::after,
.site-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.language-switch {
  min-width: 92px;
  height: 36px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-left: auto;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--text);
  background: rgba(255,255,255,.035);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .04em;
  transition: border-color 180ms ease, background 180ms ease;
}

.language-switch:hover {
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.08);
}

.language-switch-code {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.header-live {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(242, 25, 45, 0.5);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(242, 25, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 25, 45, 0); }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  overflow: hidden;
  align-items: center;
  padding: calc(var(--header-height) + 80px) 0 88px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--bg) 6%, transparent 48%, rgba(242,25,45,.05));
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  top: 2%;
  right: -15%;
  width: 54vw;
  aspect-ratio: 1;
  border: 1px solid rgba(242, 25, 45, 0.35);
  box-shadow:
    inset 0 0 120px rgba(242, 25, 45, 0.08),
    0 0 120px rgba(242, 25, 45, 0.05);
}

.hero-glow-two {
  right: 14%;
  bottom: -24%;
  width: 34vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 182, 72, 0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(42px, 8vh, 92px);
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: var(--text);
}

.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(3.8rem, 8.25vw, 8.6rem);
  font-weight: 880;
  letter-spacing: -0.072em;
  line-height: 0.85;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 241, 235, 0.55);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 560px) auto;
  align-items: end;
  justify-content: space-between;
  margin-top: clamp(50px, 8vh, 90px);
  gap: 40px;
}

.hero-bottom p {
  margin: 0;
  color: #c4c2bd;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 200ms var(--ease),
    background 200ms ease,
    border-color 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.button-primary:hover {
  background: #ff263b;
}

.button-ghost {
  background: rgba(255,255,255,.025);
}

.button-ghost:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
}

.signal-console {
  margin-top: clamp(46px, 9vh, 100px);
  padding: 16px 0 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.console-meta {
  display: flex;
  justify-content: space-between;
  color: #777b82;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.console-status {
  color: var(--green);
}

.signal-bars {
  height: 52px;
  display: flex;
  align-items: center;
  gap: max(4px, .55vw);
}

.signal-bars i {
  width: 100%;
  height: 10%;
  border-radius: 1px;
  background: linear-gradient(to top, var(--red), var(--amber));
  transform-origin: center;
  animation: wave 1.4s ease-in-out infinite alternate;
}

.signal-bars i:nth-child(4n) { height: 72%; animation-delay: -.5s; }
.signal-bars i:nth-child(4n + 1) { height: 26%; animation-delay: -.9s; }
.signal-bars i:nth-child(4n + 2) { height: 48%; animation-delay: -.2s; }
.signal-bars i:nth-child(4n + 3) { height: 88%; animation-delay: -.7s; }

@keyframes wave {
  from { transform: scaleY(.45); opacity: .45; }
  to { transform: scaleY(1); opacity: 1; }
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #888;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--red), transparent);
}

.section-intro,
.platform-section,
.tech-stack,
.why-section,
.closing-cta {
  position: relative;
  padding: clamp(110px, 15vw, 210px) 0;
}

.intro-grid,
.why-grid {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 60px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--red);
  font-family: "Alliance No.2", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.3;
  text-transform: none;
}

.section-intro h2,
.section-heading h2,
.tech-stack > .container > h2,
.why-section h2,
.closing-cta h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6.2vw, 6.8rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: .95;
}

.intro-copy,
.section-heading > p:last-child {
  max-width: 620px;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.product-story {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 160px) 0;
  border-top: 1px solid var(--line);
}

.product-story::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--tone, var(--red));
  content: "";
}

.tone-focus { --tone: #e4ff6b; }
.tone-ai { --tone: var(--red); }
.tone-jingle { --tone: #ff5967; }
.tone-study { --tone: #72dfb3; }
.tone-vote { --tone: #ff3144; }
.tone-mobile { --tone: #85b8ff; }
.tone-jukebox { --tone: #ffb648; }
.tone-open { --tone: #b89cff; }
.tone-onair { --tone: #65d6a6; }
.tone-codec { --tone: #ff9b52; }
.tone-ticket { --tone: #f7de76; }
.tone-erp { --tone: #8c7bff; }
.tone-library { --tone: #2f6cff; }

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.product-reverse .product-copy {
  order: 2;
}

.product-reverse .media-frame,
.product-reverse .ticket-visual {
  order: 1;
}

.product-copy {
  position: relative;
  z-index: 2;
}

.product-number {
  margin-bottom: 52px;
  color: #484c53;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.product-copy h2 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(2.35rem, 4.7vw, 5.5rem);
  font-weight: 850;
  letter-spacing: -0.058em;
  line-height: .95;
}

.product-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 30px 0 0;
  color: #b4b3af;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.feature-list {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-bottom: 1px solid var(--line);
  color: #d2d0ca;
  font-size: 13px;
}

.feature-list li::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border: 1px solid var(--tone, var(--red));
  content: "";
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-bottom: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 830;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(.35);
  transform-origin: left;
  background: var(--tone, var(--red));
  content: "";
  transition: transform 260ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.media-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  transform: translate3d(0, var(--parallax, 0px), 0);
  transition: transform 80ms linear;
}

.media-landscape {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 32px 90px rgba(0,0,0,.35);
}

.frame-chrome {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: #7c8189;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: .08em;
}

.stream-server-flow {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.15fr) auto minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  padding: clamp(28px, 5vw, 64px);
  background:
    radial-gradient(circle at 50% 45%, rgba(184,156,255,.18), transparent 38%),
    linear-gradient(145deg, #15171c, #0b0c0f);
}

.stream-node {
  min-width: 0;
  padding: clamp(18px, 2.5vw, 30px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.stream-node span {
  display: block;
  margin-bottom: 10px;
  color: #7c8189;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: .12em;
}

.stream-node strong {
  display: block;
  color: var(--text);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.15;
}

.stream-node-primary {
  border-color: rgba(184,156,255,.58);
  background: rgba(184,156,255,.12);
  box-shadow: 0 0 46px rgba(184,156,255,.12);
}

.stream-arrow {
  color: #777d87;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
}

@media (max-width: 760px) {
  .stream-server-flow {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

  .stream-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
}

.media-landscape img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.media-mobile-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-mobile-photo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(72vh, 720px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0,0,0,.35);
}

.product-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-logo-ai {
  max-width: 138px;
  max-height: 64px;
  margin: -8px 0 24px;
}

.media-study img {
  aspect-ratio: 1.68;
  object-position: center top;
}

.media-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-shell {
  position: relative;
  width: min(100%, 290px);
  height: 520px;
  overflow: hidden;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 42px;
  background: #030405;
  box-shadow:
    0 44px 100px rgba(0,0,0,.6),
    inset 0 0 0 2px rgba(255,255,255,.05);
}

.phone-shell::before {
  position: absolute;
  z-index: 3;
  top: 86px;
  right: -4px;
  width: 4px;
  height: 76px;
  border-radius: 0 4px 4px 0;
  background: #31343a;
  content: "";
}

.phone-shell img {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  object-fit: cover;
}

.tone-ai .phone-shell img {
  object-position: center 30%;
}

.tone-vote .phone-shell img {
  object-position: center 38%;
}

.media-phone figcaption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #81858d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ticket-visual {
  width: 100%;
  min-width: 0;
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  transform: translate3d(0, var(--parallax, 0px), 0) rotate(-1deg);
  filter: drop-shadow(0 40px 70px rgba(0,0,0,.38));
}

.tone-ticket .product-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
}

.ticket-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 56px);
  background:
    radial-gradient(circle at 90% 5%, rgba(255,255,255,.45), transparent 24%),
    #f2d75c;
  color: #111;
}

.ticket-main p {
  margin: 0;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.ticket-main p span {
  color: #bd1021;
}

.ticket-brands {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ticket-brand-radiotedu {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 4px;
  background: #101114;
  line-height: 0;
}

.ticket-brand-radiotedu img {
  width: 112px;
  height: auto;
}

.ticket-brand-times {
  color: rgba(0,0,0,.55);
  font-size: 1.4rem;
  font-weight: 800;
}

.ticket-brand-redbull {
  width: min(158px, 36%);
  height: auto;
}

.ticket-main h3 {
  margin: 18px 0 0;
  max-width: 100%;
  font-size: clamp(2.7rem, 4.8vw, 5.35rem);
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: .78;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.ticket-meta {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: end;
  gap: 18px;
  padding-top: 20px;
  border-top: 2px solid rgba(0,0,0,.35);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.ticket-meta span:last-child {
  text-align: right;
}

.ticket-stub {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-left: 2px dashed rgba(0,0,0,.35);
  background: #ead04f;
  color: #111;
}

.ticket-stub::before,
.ticket-stub::after {
  position: absolute;
  left: -15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  content: "";
}

.ticket-stub::before { top: -14px; }
.ticket-stub::after { bottom: -14px; }

.ticket-stub span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  writing-mode: vertical-rl;
}

.qr-pattern {
  width: 84px;
  aspect-ratio: 1;
  border: 9px solid #111;
  background:
    linear-gradient(90deg, #111 14%, transparent 14% 28%, #111 28% 42%, transparent 42% 57%, #111 57% 71%, transparent 71%),
    linear-gradient(#111 14%, transparent 14% 28%, #111 28% 42%, transparent 42% 57%, #111 57% 71%, transparent 71%);
  background-size: 26px 26px;
}

.platform-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #0b0c0f;
  background-size: 80px 80px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .72fr;
  align-items: end;
  margin-bottom: 72px;
  gap: 50px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading > p:last-child {
  margin: 0;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.platform-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10,11,14,.88);
  transition:
    transform 280ms var(--ease),
    background 280ms ease;
}

.platform-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: var(--surface-2);
}

.platform-featured {
  background:
    linear-gradient(145deg, rgba(242,25,45,.18), transparent 55%),
    var(--surface);
}

.platform-brand {
  min-height: 92px;
  display: flex;
  align-items: center;
  margin: -30px -30px 30px;
  padding: 20px 24px;
  border-bottom: 1px solid #dadce0;
  background: #fff;
}

.platform-brand-logo {
  display: block;
  width: auto;
  max-width: 178px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}

.platform-legal {
  max-width: 92ch;
  margin: 24px 0 0;
  color: #777b82;
  font-size: 11px;
  line-height: 1.55;
}

.platform-code,
.stack-index {
  color: #60646b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: .1em;
}

.platform-icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 0 30px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
}

.platform-icon::before,
.platform-icon::after {
  position: absolute;
  content: "";
}

.icon-car::before {
  inset: 18px 12px 14px;
  border: 3px solid var(--red);
  border-radius: 6px 6px 3px 3px;
}

.icon-car::after {
  right: 17px;
  bottom: 9px;
  left: 17px;
  height: 8px;
  border-right: 6px solid var(--text);
  border-left: 6px solid var(--text);
}

.icon-cast::before {
  right: 11px;
  bottom: 11px;
  width: 37px;
  height: 37px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
  border-radius: 0 8px 0 0;
}

.icon-cast::after {
  bottom: 14px;
  left: 14px;
  width: 31px;
  height: 31px;
  border: solid var(--text);
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 4px;
  box-shadow: -9px 9px 0 -6px var(--red);
}

.icon-tv::before {
  inset: 14px 10px 18px;
  border: 3px solid var(--red);
  border-radius: 5px;
}

.icon-tv::after {
  right: 20px;
  bottom: 10px;
  left: 20px;
  height: 3px;
  background: var(--text);
}

.icon-watch::before {
  inset: 14px;
  border: 3px solid var(--red);
  border-radius: 14px;
}

.icon-watch::after {
  top: 20px;
  bottom: 20px;
  left: 30px;
  width: 3px;
  transform: rotate(-35deg);
  background: var(--text);
  transform-origin: bottom;
}

.icon-audio::before {
  top: 16px;
  bottom: 16px;
  left: 17px;
  width: 12px;
  background: var(--red);
  clip-path: polygon(0 36%, 40% 36%, 100% 0, 100% 100%, 40% 64%, 0 64%);
}

.icon-audio::after {
  top: 20px;
  right: 14px;
  width: 20px;
  height: 20px;
  border: 3px solid var(--text);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(45deg);
}

.icon-download::before {
  top: 14px;
  left: 28px;
  width: 8px;
  height: 29px;
  background: var(--red);
  clip-path: polygon(30% 0, 70% 0, 70% 55%, 100% 55%, 50% 100%, 0 55%, 30% 55%);
}

.icon-download::after {
  right: 13px;
  bottom: 11px;
  left: 13px;
  height: 12px;
  border: solid var(--text);
  border-width: 0 3px 3px;
}

.platform-card h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -.035em;
}

.platform-card p {
  margin: 14px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.capability-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #858990;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.capability-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(107,227,176,.5);
}

.tech-stack {
  border-top: 1px solid var(--line);
}

.tech-stack > .container > h2 {
  max-width: 1050px;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stack-grid article {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stack-grid p {
  margin: 0 0 32px;
  color: var(--red);
  font-family: "Alliance No.2", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.stack-grid h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: -.05em;
  line-height: 1;
}

.stack-grid small {
  margin-top: 16px;
  color: #777b82;
  font-size: 12px;
}

.why-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.why-section h2 span {
  color: var(--red);
}

.why-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 54px;
  gap: 40px;
}

.why-copy p {
  margin: 0;
  color: #b6b4af;
  font-size: 1.05rem;
}

.impact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.impact-row div {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-row strong {
  color: var(--red);
  font-size: clamp(3rem, 5vw, 5.2rem);
  letter-spacing: -.07em;
  line-height: 1;
}

.impact-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.why-orbit {
  position: absolute;
  border: 1px solid rgba(242,25,45,.16);
  border-radius: 50%;
  pointer-events: none;
}

.why-orbit-one {
  top: -20%;
  right: -16%;
  width: 52vw;
  aspect-ratio: 1;
}

.why-orbit-two {
  right: 5%;
  bottom: -50%;
  width: 30vw;
  aspect-ratio: 1;
}

.closing-cta {
  min-height: 72vh;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(242,25,45,.12), transparent 44%),
    var(--bg);
}

.closing-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
}

.closing-inner .eyebrow {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #050607;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
}

.footer-inner p {
  margin: 0;
  color: #6f737a;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .site-nav {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .header-live {
    display: none;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .95fr);
    gap: 52px;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .closing-inner {
    grid-template-columns: 1fr;
  }

  .closing-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 108px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .header-inner {
    width: calc(100% - 24px);
    position: relative;
    align-items: flex-start;
    gap: 0;
    padding-top: 15px;
  }

  .wordmark img {
    width: 112px;
  }

  .site-nav {
    position: absolute;
    right: -12px;
    bottom: 0;
    left: 0;
    height: 48px;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    margin-right: 0;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 32px), transparent 100%);
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    min-height: 44px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    font-size: 11px;
  }

  .language-switch {
    min-width: 52px;
    height: 32px;
    padding: 0 9px;
  }

  .language-switch-label {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding-top: calc(var(--header-height) + 46px);
    padding-bottom: 80px;
    align-items: flex-start;
  }

  .hero-kicker {
    margin-bottom: 52px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 13vw, 4.35rem);
    overflow-wrap: anywhere;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }

  .signal-console {
    margin-top: 64px;
  }

  .signal-bars {
    gap: 4px;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .why-grid,
  .section-heading,
  .product-grid,
  .tone-ticket .product-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .why-grid {
    gap: 28px;
  }

  .product-reverse .product-copy,
  .product-reverse .media-frame,
  .product-reverse .ticket-visual {
    order: initial;
  }

  .product-grid {
    gap: 58px;
  }

  .product-story {
    padding: 76px 0;
  }

  .product-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
    line-height: .96;
  }

  .product-number {
    margin-bottom: 34px;
  }

  .media-frame {
    transform: none;
  }

  .media-phone {
    justify-self: center;
  }

  .phone-shell {
    width: min(100%, 260px);
    height: 460px;
  }

  .media-mobile-photo img {
    max-height: 620px;
  }

  .ticket-visual {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, auto) 76px;
    transform: none;
  }

  .ticket-main {
    padding: 28px;
  }

  .ticket-main h3 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: .84;
  }

  .ticket-meta {
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
  }

  .ticket-meta span:last-child {
    grid-column: 1 / -1;
    text-align: left;
  }

  .ticket-brands {
    flex-wrap: wrap;
    gap: 10px;
  }

  .ticket-brand-radiotedu img {
    width: 96px;
  }

  .ticket-brand-redbull {
    width: 132px;
  }

  .ticket-stub {
    flex-direction: row;
    gap: 20px;
    border-top: 2px dashed rgba(0,0,0,.35);
    border-left: 0;
  }

  .ticket-stub span {
    writing-mode: horizontal-tb;
  }

  .ticket-stub::before {
    top: -15px;
    left: -14px;
  }

  .ticket-stub::after {
    top: -15px;
    right: -14px;
    bottom: auto;
    left: auto;
  }

  .qr-pattern {
    width: 62px;
    border-width: 7px;
    background-size: 19px 19px;
  }

  .section-heading {
    gap: 26px;
  }

  .platform-grid,
  .stack-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 270px;
    padding: 26px;
  }

  .platform-brand {
    min-height: 82px;
    margin: -26px -26px 26px;
    padding: 18px 20px;
  }

  .platform-brand-logo {
    max-width: 164px;
    max-height: 40px;
  }

  .platform-legal {
    margin-top: 20px;
    font-size: 10px;
  }

  .stack-grid article {
    min-height: 230px;
  }

  .why-copy {
    grid-template-columns: 1fr;
  }

  .impact-row {
    grid-template-columns: 1fr;
  }

  .impact-row div {
    min-height: 140px;
  }

  .closing-cta {
    min-height: 70vh;
  }

  .section-heading h2,
  .why-grid > h2,
  .closing-cta h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.codec-statement {
  max-width: 62ch;
  color: #d8d6d1;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.78;
}

.codec-statement a {
  color: var(--text);
  font-weight: 760;
  text-decoration-line: underline;
  text-decoration-color: var(--tone);
  text-decoration-thickness: 2px;
  text-underline-offset: .24em;
  background: linear-gradient(to top, color-mix(in srgb, var(--tone) 22%, transparent) 0 38%, transparent 38% 100%);
}

.codec-statement a:hover {
  background-color: color-mix(in srgb, var(--tone) 13%, transparent);
}

.codec-statement a:focus-visible {
  outline: 2px solid var(--tone);
  outline-offset: 4px;
}

.codec-visual {
  min-height: 430px;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 46%, rgba(255,155,82,.13), transparent 58%),
    #101114;
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.codec-visual__body {
  min-height: 388px;
  display: grid;
  align-content: center;
  gap: 34px;
  padding: clamp(28px, 5vw, 58px);
}

.codec-signal-console {
  width: 100%;
  margin: 0;
  padding: 18px 0;
}

.codec-signal-console .signal-bars {
  height: clamp(94px, 12vw, 134px);
}

.codec-readouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border: 1px solid var(--line);
}

.codec-readouts div {
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.codec-readouts div:last-child {
  border-right: 0;
}

.codec-readouts dt {
  margin-bottom: 7px;
  color: #777b82;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: .1em;
}

.codec-readouts dd {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 780;
}

@media (max-width: 760px) {
  .codec-visual {
    min-height: 350px;
  }

  .codec-visual__body {
    min-height: 308px;
    gap: 24px;
    padding: 28px 18px;
  }

  .codec-signal-console {
    margin-top: 0;
  }

  .codec-signal-console .signal-bars {
    height: 88px;
  }

  .codec-readouts {
    grid-template-columns: 1fr;
  }

  .codec-readouts div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 13px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .codec-readouts div:last-child {
    border-bottom: 0;
  }

  .codec-readouts dt {
    margin-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .js [data-reveal],
  .js [data-reveal].is-visible,
  [data-parallax] {
    opacity: 1;
    transform: none;
  }
}
