/* KLYNE — black / white + Klein blue (#002FA7) */
:root {
  --bg: #070708;
  --bg-elevated: #101012;
  --bg-soft: #16161a;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f4f4f5;
  --muted: #9a9aa3;
  --accent: #4d7cff;
  --accent-2: #8eacff;
  --accent-dim: rgba(0, 47, 167, 0.28);
  --grad: linear-gradient(145deg, #002FA7 0%, #0a3dcc 48%, #1e56e8 100%);
  --grad-soft: linear-gradient(135deg, rgba(0, 47, 167, 0.4), rgba(77, 124, 255, 0.18));
  --glass-bg: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.05) 40%,
    rgba(77, 124, 255, 0.06) 100%
  );
  --glass-border: rgba(255, 255, 255, 0.22);
  --glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Figtree", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 68px;
  --container: 1360px;
  --container-pad: 4vw;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(77, 124, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 60%, rgba(142, 172, 255, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Liquid Glass surface utility */
.liquid-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.06) 28%,
    transparent 52%
  );
  pointer-events: none;
  mix-blend-mode: soft-light;
}

html.intro-skip .intro-overlay {
  display: none !important;
}

html.intro-skip #site {
  visibility: visible;
}

html.intro-skip body.is-intro,
html.intro-skip body.intro-done {
  overflow: auto;
}

html.intro-skip body.is-intro .nav,
html.intro-skip body.is-intro .hero__content,
html.intro-skip body.is-intro .hero__scroll,
html.intro-skip body.intro-done .nav,
html.intro-skip body.intro-done .hero__content,
html.intro-skip body.intro-done .hero__scroll {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

/* Logo stage: lives in .hero (no fullscreen black plate over the page) */
.logo-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent !important;
}

.logo-stage canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  pointer-events: none;
  background: transparent !important;
}

/* Splash / settle: lift stage above black overlay (must also lift #site stacking context) */
body.is-intro .site,
body.is-settling .site {
  z-index: 45;
}

body.is-intro .logo-stage,
body.is-settling .logo-stage {
  position: fixed;
  inset: 0;
  z-index: 55;
}

body.is-intro .logo-stage canvas {
  pointer-events: auto;
}

body.intro-done .logo-stage {
  z-index: 1;
  pointer-events: none;
}

/* Black overlay under logo during splash */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background:
    radial-gradient(ellipse 55% 40% at 50% 46%, rgba(77, 124, 255, 0.1), transparent 68%),
    #050506;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1.15s var(--ease);
}

.logo-splash-static {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78vw, 900px);
  height: auto;
  transform: translate(-50%, -50%) scale(0.88);
  pointer-events: none;
  user-select: none;
  z-index: 2;
  opacity: 0;
  animation: splash-logo-in 0.4s var(--ease) forwards;
}

@keyframes splash-logo-in {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.intro-overlay--out .logo-splash-static,
.logo-splash-static.is-hidden,
body.intro-done .logo-splash-static {
  opacity: 0;
  animation: none;
  transition: opacity 0.2s var(--ease);
}

.intro-overlay--out {
  opacity: 0;
}

body.is-settling .site {
  transition: opacity 0.7s var(--ease) 0.15s;
}

.site {
  position: relative;
  z-index: 10;
  opacity: 1;
}

body.is-intro .nav,
body.is-intro .hero__content,
body.is-intro .hero__scroll {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--ease) 0.2s;
}

body.is-settling .nav,
body.is-settling .hero__content,
body.is-settling .hero__scroll,
body.intro-done .nav,
body.intro-done .hero__content,
body.intro-done .hero__scroll {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.85s var(--ease) 0.25s;
}

@media (prefers-reduced-motion: reduce) {
  .logo-splash-static {
    animation: none;
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .intro-overlay {
    transition: none;
  }
}

body.is-intro .noise,
body.is-settling .noise {
  z-index: 45;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button {
  font: inherit;
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2 * var(--container-pad)));
  margin-inline: auto;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.028;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav__inner {
  width: min(var(--container), calc(100% - 2 * var(--container-pad)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}

.nav__brand img {
  height: 22px;
  width: auto;
  opacity: 0.95;
}

.nav__links {
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 0.1rem;
  padding: 0.28rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.nav__links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(244, 244, 245, 0.58);
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav__links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
}

.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.btn--nav {
  padding: 0.55rem 1rem;
  font-size: 0.84rem;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  padding: 0.2rem;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.lang-btn__opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: rgba(244, 244, 245, 0.38);
  transition: color 0.2s, background 0.2s;
}

.lang-btn__opt.is-current {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.lang-btn:hover .lang-btn__opt:not(.is-current) {
  color: rgba(244, 244, 245, 0.72);
}

.lang-btn:focus-visible {
  outline: 2px solid rgba(244, 244, 245, 0.35);
  outline-offset: 2px;
}

.menu-toggle {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 15px;
  height: 1.5px;
  background: var(--text);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 15px;
  height: 1.5px;
  background: var(--text);
}

.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .menu-toggle { display: none; }
}

@media (max-width: 899px) {
  .nav__inner {
    display: flex;
    justify-content: space-between;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, color 0.25s, border-color 0.25s;
}

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

.btn--primary {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(240, 242, 255, 0.88) 100%
  );
  color: #0a0a0b;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 8px 28px rgba(77, 124, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn--primary:hover {
  background: #fff;
  box-shadow:
    0 12px 36px rgba(77, 124, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.btn--grad {
  background: var(--grad);
  color: #0a0a0b;
}

.btn--grad:hover {
  box-shadow: 0 8px 36px rgba(122, 132, 196, 0.28);
}

.btn svg { width: 1em; height: 1em; }

/* ——— Hero (logo-only first screen) ——— */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #070708;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(28vh, 220px);
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(7, 7, 8, 0.45) 55%,
    #070708 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 2 * var(--container-pad)));
  height: 100%;
  min-height: 0;
  padding-top: var(--nav-h);
  padding-bottom: 7rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__content > * { pointer-events: auto; }

.hero__brand-space {
  width: min(38vw, 420px);
  height: clamp(78px, 12vh, 128px);
  transform: translateY(-2.5vh);
}

.hero__scroll {
  position: absolute;
  bottom: clamp(1rem, 2.8vh, 1.75rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: rgba(244, 244, 245, 0.92);
  text-decoration: none;
  transition: color 0.25s, transform 0.25s var(--ease), background 0.25s;
  animation: scrollCue 2.4s ease-in-out infinite;
}

.hero__scroll:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hero__scroll.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.hero__scroll-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.hero__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(244, 244, 245, 0.55);
  border-radius: 12px;
  display: grid;
  place-items: start center;
  padding-top: 6px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 1px rgba(77, 124, 255, 0.12), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero__scroll-mouse span {
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.hero__scroll-chevron {
  width: 18px;
  height: 18px;
  opacity: 0.75;
  color: var(--accent);
}

@keyframes scrollCue {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0.15; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ——— Pitch (second full viewport) ——— */
.pitch {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: calc(var(--nav-h) + 1.5rem) 0 4rem;
  margin-top: 0;
  background:
    radial-gradient(ellipse 55% 42% at 50% 18%, rgba(77, 124, 255, 0.09), transparent 62%),
    #070708;
}

.pitch::before {
  display: none;
}

.pitch__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
  padding-top: 0;
}

.pitch__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 14ch;
  text-wrap: balance;
  text-align: center;
  margin-inline: auto;
}

.pitch__title span {
  color: var(--accent);
}

.pitch__side {
  max-width: 34rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 0.35rem;
  margin-inline: auto;
}

.pitch__lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 400;
  text-align: center;
  max-width: 40ch;
}

.pitch__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* legacy hero text helpers kept for safety */
.hero__meta,
.hero__title,
.hero__side,
.hero__lead,
.hero__ctas { display: none; }

/* ——— Sections ——— */
section {
  padding: clamp(4.25rem, 9vw, 7rem) 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(139, 143, 212, 0.22);
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 16ch;
}

.section-head p {
  color: var(--muted);
  max-width: 26rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ——— Trust / platforms ——— */
.trust {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(0.5rem, 2vw, 1rem);
  background: transparent;
}

.trust__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2rem);
  width: 100%;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 4vw, 2.75rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.trust__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  width: 100%;
  margin: 0;
  color: rgba(244, 244, 245, 0.55);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust__eyebrow::before,
.trust__eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.trust__eyebrow span {
  flex: 0 1 auto;
  text-align: center;
  white-space: nowrap;
}

.trust__logos {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-items: stretch;
  gap: 0.85rem 1.25rem;
  width: 100%;
  margin: 0;
  padding: 0.5rem 0 0.2rem;
}

@media (min-width: 640px) {
  .trust__logos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.1rem 1.5rem;
  }
}

.trust__logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 52px;
  padding: 0.35rem 0.4rem;
  color: rgba(244, 244, 245, 0.92);
}

.trust__logos img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.trust__logos span {
  font-size: clamp(0.94rem, 1.2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
  opacity: 0.92;
  transition: opacity 0.25s var(--ease);
}

.trust__logos li:hover img,
.trust__logos li:hover span {
  opacity: 1;
}

.trust__logos li:hover img {
  transform: translateY(-1px);
}

.trust__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(244, 244, 245, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.trust__more svg {
  width: 14px;
  height: 14px;
}

.trust__more:hover {
  color: var(--accent);
}

/* legacy platforms aliases (distribution pages still use grid) */
.platforms {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #0b0b0d;
}

.platforms__label {
  text-align: center;
  color: rgba(244, 244, 245, 0.55);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
}

.platforms__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.1rem 1.6rem;
  max-width: 46rem;
  margin-inline: auto;
}

.platforms__grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.platforms__grid img {
  height: 26px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  opacity: 0.72;
  transition: opacity 0.25s var(--ease);
}

.platforms__grid > div:hover img {
  opacity: 1;
}

.platforms__item {
  display: contents;
}

/* ——— Feature showcase (legacy, kept for other pages) ——— */
.feature-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .feature-grid { grid-template-columns: 1.2fr 1fr; }
}

.feature-main {
  position: relative;
  min-height: 400px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(20, 22, 32, 0.85) 45%,
    rgba(12, 12, 16, 0.95) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.18) 0%, transparent 35%),
    url("../images/feature-distribution.png") right bottom / min(72%, 440px) auto no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.feature-main > * { position: relative; z-index: 1; }

.feature-main h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 700;
  max-width: 12ch;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.feature-main .note {
  font-size: 0.75rem;
  color: rgba(244, 244, 245, 0.55);
  max-width: 30ch;
  margin-top: 0.85rem;
  line-height: 1.45;
}

.feature-side {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .feature-side { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .feature-side { grid-template-columns: 1fr; }
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  opacity: 0.88;
}

.feature-card__body { padding: 1.3rem 1.4rem 1.45rem; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ——— Platform bento (SoundXpand-inspired) ——— */
.platform-section {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.platform-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: end;
}

.platform-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 14ch;
  text-wrap: balance;
}

.platform-head__title span {
  color: rgba(244, 244, 245, 0.42);
  font-weight: 600;
  font-style: italic;
}

.platform-head__lead {
  color: var(--muted);
  max-width: 28rem;
  font-size: 0.98rem;
  line-height: 1.65;
  padding-bottom: 0.35rem;
}

.platform-bento {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .platform-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .platform-bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(148px, auto);
    gap: 1rem;
  }

  .p-card--main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
}

.p-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(77, 124, 255, 0.06), transparent 55%),
    #101012;
  transition: border-color 0.25s, background 0.25s;
}

.p-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.p-card__icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 0.15rem;
}

.p-card__icon svg {
  width: 100%;
  height: 100%;
}

.p-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.p-card h3 em {
  font-style: normal;
  color: var(--accent);
}

.p-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 44ch;
}

.p-card--main {
  justify-content: flex-start;
  min-height: 280px;
  background:
    radial-gradient(ellipse 70% 55% at 70% 80%, rgba(77, 124, 255, 0.1), transparent 60%),
    #101012;
}

.p-card--main h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  max-width: 18ch;
}

.p-card--main p {
  max-width: 52ch;
}

.p-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.p-card__tags span,
.p-card__tag-more {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(244, 244, 245, 0.78);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.p-card__tag-more {
  color: var(--accent);
  border-color: rgba(77, 124, 255, 0.45);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.p-card__tag-more:hover {
  background: rgba(77, 124, 255, 0.1);
  border-color: rgba(77, 124, 255, 0.7);
}

.p-card--stat {
  min-height: 200px;
}

.p-card__metric {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(244, 244, 245, 0.92);
}

.p-card__metric span {
  color: #fff;
}

.p-card__split {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  font-size: 0.85rem;
  color: rgba(244, 244, 245, 0.8);
  width: fit-content;
}

.p-card__dots {
  display: inline-flex;
  align-items: center;
}

.p-card__dots i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid #0b0b0d;
  display: block;
}

.p-card__dots i:nth-child(1) { background: #3a3a42; margin-right: -5px; }
.p-card__dots i:nth-child(2) { background: #8a8a96; margin-right: -5px; }
.p-card__dots i:nth-child(3) { background: var(--accent); }

.p-card__badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
  color: #0b0b0d;
  background: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .p-card { transition: none; }
}

/* ——— Capabilities ——— */
.caps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 700px) {
  .caps { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1000px) {
  .caps { grid-template-columns: repeat(4, 1fr); }
}

.cap {
  padding: 1.4rem 1.2rem;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.3s, border-color 0.3s, transform 0.35s var(--ease);
}

.cap:hover {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.cap__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.16),
    rgba(77, 124, 255, 0.12)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cap h4 {
  font-size: 0.98rem;
  font-weight: 650;
  margin-bottom: 0.28rem;
}

.cap p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ——— Split ——— */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.split__visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  aspect-ratio: 4/3;
}

.split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(122, 132, 196, 0.18), transparent 55%);
  pointer-events: none;
}

.split__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.split__copy p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

/* ——— Publishing visual ——— */
.publishing {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.pub-visual {
  position: relative;
}

.pub-board {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.2rem, 2.4vw, 1.55rem);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(77, 124, 255, 0.14), transparent 55%),
    linear-gradient(165deg, #141418 0%, #0c0c0f 100%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.pub-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
  pointer-events: none;
}

.pub-board__top,
.pub-streams,
.pub-ledger,
.pub-board__foot {
  position: relative;
  z-index: 1;
}

.pub-board__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.pub-board__eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.45);
}

.pub-board__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text);
}

.pub-board__chip {
  flex-shrink: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(77, 124, 255, 0.35);
  background: rgba(77, 124, 255, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pub-streams {
  display: grid;
  gap: 0.75rem;
}

.pub-stream {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.pub-stream--live {
  border-color: rgba(77, 124, 255, 0.28);
  background: rgba(77, 124, 255, 0.08);
}

.pub-stream__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.pub-stream__meta span {
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: rgba(244, 244, 245, 0.92);
}

.pub-stream__meta em {
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(244, 244, 245, 0.45);
}

.pub-stream__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.pub-stream__bar::after {
  content: "";
  display: block;
  width: var(--fill, 50%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(244, 244, 245, 0.55), rgba(244, 244, 245, 0.28));
}

.pub-stream--live .pub-stream__bar::after {
  background: var(--grad);
}

.pub-ledger {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.pub-ledger li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pub-ledger__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(77, 124, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(77, 124, 255, 0.15);
}

.pub-ledger strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: rgba(244, 244, 245, 0.92);
}

.pub-ledger em {
  display: block;
  margin-top: 0.12rem;
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(244, 244, 245, 0.42);
}

.pub-ledger__status {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(77, 124, 255, 0.9);
}

.pub-ledger__status--warn {
  color: #d4b58a;
}

.pub-board__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.15rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(244, 244, 245, 0.5);
}

.pub-board__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8fd4a8;
  box-shadow: 0 0 0 0 rgba(143, 212, 168, 0.45);
  animation: pub-pulse 2.4s var(--ease) infinite;
}

@keyframes pub-pulse {
  0% { box-shadow: 0 0 0 0 rgba(143, 212, 168, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(143, 212, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(143, 212, 168, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .pub-board__pulse {
    animation: none;
  }
}

/* ——— Stats ——— */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

@media (min-width: 800px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat {
    border-left: 1px solid var(--line);
    padding-inline: 1.5rem;
  }
  .stat:first-child {
    border-left: none;
    padding-left: 0;
  }
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.035em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ——— FAQ ——— */
.faq-grid {
  display: grid;
  gap: 0.35rem 3rem;
}

@media (min-width: 800px) {
  .faq-grid { grid-template-columns: 1fr 1fr; }
}

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

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--text);
  transition: color 0.2s;
}

.faq-item button:hover,
.faq-item.open button {
  color: #8eacff;
}

.faq-item button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--accent);
}

.faq-item.open button svg { transform: rotate(180deg); }

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq-item.open .faq-item__body { grid-template-rows: 1fr; }
.faq-item__body > div { overflow: hidden; }

.faq-item__body p {
  padding-bottom: 1.15rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.faq-more {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ——— CTA ——— */
.cta-band {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(77, 124, 255, 0.1) 40%,
    rgba(142, 172, 255, 0.08) 100%
  );
  padding: clamp(1.85rem, 4vw, 2.6rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.22) 0%,
    transparent 40%,
    transparent 100%
  );
  pointer-events: none;
}

.cta-band > * { position: relative; z-index: 1; }

.cta-band h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.cta-band p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ——— Footer ——— */
.footer {
  border-top: 1px solid var(--line);
  padding: 3.25rem 0 2rem;
  margin-top: 1rem;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.75rem;
}

@media (min-width: 700px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer__brand img {
  height: 22px;
  margin-bottom: 0.85rem;
}

.footer__brand p {
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 24ch;
  line-height: 1.55;
}

.footer__col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
  padding: 0.28rem 0;
  transition: opacity 0.2s, color 0.2s;
}

.footer__col a:hover {
  opacity: 1;
  color: #8eacff;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ——— Mobile menu ——— */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(7, 7, 8, 0.97);
  backdrop-filter: blur(20px);
  padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.35s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.02em;
}

/* ——— Reveal ——— */
[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0.001;
    transform: translateY(24px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  }

  [data-reveal].in {
    opacity: 1;
    transform: none;
  }

  [data-reveal-delay="1"] { transition-delay: 0.1s; }
  [data-reveal-delay="2"] { transition-delay: 0.2s; }
  [data-reveal-delay="3"] { transition-delay: 0.3s; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ——— Subpages ——— */
body.subpage .site { opacity: 1; }

.nav__links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
}

.page-hero {
  padding: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4rem)) 0 clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}

.page-hero--compact {
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.page-hero__label {
  display: inline-flex;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 1.1rem;
  font-optical-sizing: auto;
  text-wrap: balance;
}

.page-hero h1 span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero__lead {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.7vw, 1.15rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -0.01em;
  max-width: 38rem;
  text-wrap: pretty;
}

.page-hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 900px) {
  .page-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

.page-hero--split {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero--split .page-hero__label {
  margin-bottom: 1rem;
}

.page-hero--split h1 {
  max-width: 14ch;
}

.page-hero--split .page-hero__lead {
  margin-bottom: 0;
}

.page-hero__media {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(77, 124, 255, 0.14), transparent 70%),
    #0a0a0c;
  isolation: isolate;
}

.page-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 40%;
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(7, 7, 8, 0.18), transparent 42%);
}

.content-block {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.content-block--tight {
  padding-top: 0;
}

.prose {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 62ch;
}

.prose p + p { margin-top: 1rem; }

.media-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  aspect-ratio: 16 / 10;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  padding: 1.6rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.step-card__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.step-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ——— Platforms catalog (SoundXpand-style stores page) ——— */
.page-hero--platforms h1 {
  max-width: 14ch;
}

.page-hero__actions {
  margin-top: 1.5rem;
}

.platforms-section {
  padding: 0 0 clamp(3.5rem, 7vw, 5.5rem);
}

.platform-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.platform-filter {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 244, 245, 0.72);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.platform-filter:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.platform-filter.is-active {
  color: #070708;
  background: #f4f4f5;
  border-color: #f4f4f5;
}

.platform-count {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.35rem;
}

.platform-count strong {
  color: var(--text);
  font-weight: 700;
}

.platforms-catalog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .platforms-catalog { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .platforms-catalog { grid-template-columns: repeat(3, 1fr); }
}

.platform-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 168px;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s;
}

.platform-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.055);
}

.platform-card.is-hidden {
  display: none;
}

.platform-card__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 52px;
  max-width: 100%;
}

.platform-card__logo img {
  max-height: 40px;
  max-width: min(100%, 220px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.platform-card__logo--text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.platform-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-wrap: balance;
  margin: 0;
  margin-top: auto;
}

.platform-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.platform-card__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: rgba(244, 244, 245, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .stores-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .stores-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1100px) {
  .stores-grid { grid-template-columns: repeat(5, 1fr); }
}

.store-tile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  min-height: 76px;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.store-tile:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.store-tile img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.95;
}

.store-tile__name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-tile--wordmark {
  justify-content: center;
}

.store-tile--wordmark img {
  width: auto;
  max-width: 100%;
  height: 26px;
}

.faq-category {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.faq-category h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.faq-category > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.login-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem;
}

.login-shell {
  width: min(420px, 100%);
}

.login-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.login-back:hover { color: var(--text); }

.login-card {
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.login-card h1 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.login-card__lead {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.field input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::placeholder { color: rgba(154, 154, 163, 0.7); }

.field input:focus {
  outline: none;
  border-color: rgba(77, 124, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(77, 124, 255, 0.12);
}

.login-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.login-actions .btn { justify-content: center; width: 100%; }

.login-legal {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

.login-legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-divider {
  border-top: 1px solid var(--line);
}

/* ——— Apply / Signup split ——— */
.apply-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg);
}

@media (min-width: 960px) {
  .apply-page {
    grid-template-columns: minmax(380px, 0.9fr) minmax(440px, 1.1fr);
  }
}

.apply-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 28vh;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 45%, rgba(77, 124, 255, 0.16), transparent 58%),
    radial-gradient(ellipse 40% 35% at 70% 70%, rgba(142, 172, 255, 0.08), transparent 55%),
    #070708;
}

@media (min-width: 960px) {
  .apply-visual {
    min-height: 100vh;
    min-height: 100dvh;
    position: sticky;
    top: 0;
    padding: clamp(2rem, 5vw, 4rem);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
}

.apply-visual__frame {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: auto;
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: transparent;
}

.apply-visual__frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  display: block;
  filter: drop-shadow(0 10px 36px rgba(255, 255, 255, 0.12));
}

.apply-visual__fade {
  display: none;
}

.apply-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3.5rem);
  background:
    radial-gradient(ellipse 70% 40% at 80% 0%, rgba(77, 124, 255, 0.12), transparent 55%),
    var(--bg);
}

.apply-panel__inner {
  width: min(460px, 100%);
  margin-inline: auto;
}

.apply-panel .login-back { margin-bottom: 1.75rem; }

.apply-kicker {
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.apply-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.55rem;
}

.apply-panel__lead {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 36ch;
}

.role-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.role-option {
  position: relative;
  cursor: pointer;
}

.role-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.role-option__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-height: 78px;
  padding: 0.85rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.role-option__card strong {
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.role-option__card span {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.35;
}

.role-option:hover .role-option__card {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.role-option input:checked + .role-option__card {
  border-color: rgba(77, 124, 255, 0.55);
  background: linear-gradient(160deg, rgba(77, 124, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 24px rgba(0, 0, 0, 0.2);
}

.role-option input:focus-visible + .role-option__card {
  outline: 2px solid rgba(77, 124, 255, 0.55);
  outline-offset: 2px;
}

.field-row {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 520px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239a9aa3' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}

.field textarea {
  min-height: 88px;
  resize: vertical;
  line-height: 1.5;
}

.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(77, 124, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(77, 124, 255, 0.12);
}

.field textarea::placeholder { color: rgba(154, 154, 163, 0.7); }

.apply-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.35rem 0 1.15rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.apply-check input {
  margin-top: 0.15rem;
  accent-color: #4d7cff;
  flex-shrink: 0;
}

.apply-check a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.apply-submit {
  width: 100%;
  justify-content: center;
}

.apply-foot {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.apply-foot a {
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: border-color 0.2s, color 0.2s;
}

.apply-foot a:hover {
  color: #8eacff;
  border-bottom-color: rgba(77, 124, 255, 0.6);
}

@media (max-width: 959px) {
  .apply-visual {
    min-height: 0;
    max-height: none;
    padding: 2rem 1.5rem 1rem;
  }

  .apply-visual__frame {
    width: min(78vw, 300px);
  }
}

/* ——— Distribution page ——— */
.dist-hero {
  padding: calc(var(--nav-h) + clamp(2.25rem, 5vw, 3.5rem)) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dist-hero__inner {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 960px) {
  .dist-hero__inner {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.22fr);
    gap: clamp(2rem, 4vw, 3.25rem);
  }
}

.dist-hero__copy .section-label {
  margin-bottom: 1rem;
}

.dist-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
  max-width: 12ch;
  margin-bottom: 1.15rem;
  text-wrap: balance;
}

.dist-hero__lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  font-weight: 500;
  line-height: 1.65;
  max-width: 36rem;
  margin-bottom: 1.75rem;
  text-wrap: pretty;
}

.dist-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.9rem;
}

.dist-hero__visual {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b0b0b;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.48);
}

.dist-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.dist-strip {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dist-strip__logos {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .dist-strip__logos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }
}

.dist-strip__logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  color: rgba(244, 244, 245, 0.9);
}

.dist-strip__logos img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.92;
}

.dist-strip__logos span {
  font-size: clamp(0.82rem, 1.05vw, 0.95rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: 0.9;
}

.dist-strip__note {
  margin-top: 1.15rem;
  text-align: center;
}

.dist-strip__note a {
  color: rgba(244, 244, 245, 0.62);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.dist-strip__note a:hover {
  color: var(--accent);
}

.dist-intro {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.dist-intro .section-label {
  margin-bottom: 0.75rem;
}

.dist-intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.85rem;
  text-wrap: balance;
}

.dist-intro p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 52ch;
  text-wrap: pretty;
}

.dist-process {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 900px) {
  .dist-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.dist-process__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 900px) {
  .dist-process__item {
    padding: 1.75rem 1.5rem 1.75rem 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dist-process__item:first-child {
    padding-left: 0;
  }

  .dist-process__item:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.dist-process__idx {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding-top: 0.2rem;
}

.dist-process__item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.dist-process__item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.dist-points {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 800px) {
  .dist-points {
    grid-template-columns: 1fr 1fr;
  }
}

.dist-points article {
  padding: 1.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 800px) {
  .dist-points article {
    padding: 1.75rem 1.75rem 1.75rem 0;
  }

  .dist-points article:nth-child(odd) {
    padding-right: 1.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dist-points article:nth-child(even) {
    padding-left: 1.75rem;
  }
}

.dist-points h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.dist-points p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 42ch;
}
