﻿:root,
html[data-theme="studio"] {
  --bg: #020617;
  --bg-2: #0b1220;
  --panel: #0f172a;
  --panel-2: #1e293b;
  --line: rgba(148, 163, 184, 0.18);
  --line-hot: rgba(148, 163, 184, 0.34);
  --text: #f1f5f9;
  --text-soft: #cbd5e1;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --accent: #3b82f6;
  --accent-2: #60a5fa;
  --accent-deep: #052bce;
  --accent-soft: rgba(59, 130, 246, 0.16);
  --accent-a: 59, 130, 246;
  --accent-deep-a: 5, 43, 206;
  --btn-fg: #f8fafc;
  --success: #22c55e;
  --danger: #f87171;
  --glow: rgba(59, 130, 246, 0.28);
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", Consolas, monospace;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --glass: rgba(15, 23, 42, 0.62);
  --glass-strong: rgba(15, 23, 42, 0.82);
  --glass-border: rgba(255, 255, 255, 0.1);
  --wash-rgb: 2, 6, 23;
  --orb: rgba(5, 43, 206, 0.28);
  --orb-2: rgba(56, 189, 248, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="classic"] {
  --bg: #0a0b0d;
  --bg-2: #12141a;
  --panel: #161922;
  --panel-2: #1c202b;
  --line: #2a3040;
  --line-hot: #3d465c;
  --text: #f4f1ea;
  --text-soft: #d8d2c6;
  --muted: #9a9488;
  --muted-2: #6f6a60;
  --accent: #e0a84a;
  --accent-2: #f0c06a;
  --accent-deep: #b87a28;
  --accent-soft: rgba(224, 168, 74, 0.16);
  --accent-a: 224, 168, 74;
  --accent-deep-a: 184, 122, 40;
  --btn-fg: #1a1208;
  --success: #6ecf9a;
  --danger: #e0898f;
  --glow: rgba(224, 168, 74, 0.18);
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", Consolas, monospace;
  --radius: 2px;
  --radius-sm: 2px;
  --radius-pill: 2px;
  --glass: rgba(22, 25, 34, 0.85);
  --glass-strong: rgba(18, 20, 26, 0.95);
  --glass-border: #2a3040;
  --wash-rgb: 10, 11, 13;
  --orb: rgba(224, 168, 74, 0.22);
  --orb-2: rgba(70, 90, 130, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
em { font-style: normal; }

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

.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(42, 48, 64, 0.9);
  background: rgba(10, 11, 13, 0.55);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.brand-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 26px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 11px 16px;
  border: 1px solid var(--line-hot);
  background: var(--panel);
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.nav-cta:hover {
  border-color: var(--accent);
  background: var(--panel-2);
  transform: translateY(-1px);
}

.menu {
  display: none;
  width: 42px;
  background: none;
  border: 0;
  color: #fff;
  padding: 0;
}
.menu span {
  display: block;
  height: 1px;
  margin: 8px 0;
  background: #fff;
}

/* â€”â€” Hero: one composition â€”â€” */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 85% 20%, var(--orb), transparent 60%),
    radial-gradient(ellipse 40% 35% at 10% 85%, var(--orb-2), transparent 55%),
    linear-gradient(165deg, var(--bg-2) 0%, var(--bg) 52%, #06101f 100%);
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(var(--wash-rgb), 0.94) 0%, rgba(var(--wash-rgb), 0.62) 42%, rgba(var(--wash-rgb), 0.18) 70%, transparent 100%),
    linear-gradient(180deg, transparent 52%, rgba(var(--wash-rgb), 0.9) 100%);
  z-index: 2;
}

.hero-scan {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(var(--accent-a), 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-a), 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  animation: scan-drift 22s linear infinite;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 52vw;
  height: 52vw;
  right: -6%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-a), 0.22), rgba(var(--accent-deep-a), 0.06) 45%, transparent 70%);
  filter: blur(10px);
  animation: glow-breathe 7s ease-in-out infinite;
  z-index: 1;
}

.hero-frame {
  position: absolute;
  right: clamp(4%, 8vw, 12%);
  top: 50%;
  transform: translateY(-42%);
  width: min(520px, 46vw);
  border: 1px solid var(--line-hot);
  background: linear-gradient(160deg, var(--panel-2), var(--bg-2) 70%, var(--bg));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 70px var(--glow);
  z-index: 1;
  animation: frame-rise 1.1s var(--ease) both;
}

.window-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
}
.window-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.window-chrome span:nth-child(1) { background: var(--accent); }
.window-chrome span:nth-child(2) { background: var(--accent-2); }
.window-chrome span:nth-child(3) { background: var(--muted); }
.window-chrome strong {
  margin-left: 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--text-soft);
}
.window-chrome em {
  margin-left: auto;
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.window-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 280px;
}
.window-side {
  border-right: 1px solid var(--line);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(var(--wash-rgb), 0.55);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--success);
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: pulse 1.8s infinite;
}
.window-main {
  padding: 36px 28px;
}
.window-label {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.window-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(var(--accent-a), 0.12);
  overflow: hidden;
  margin-bottom: 28px;
}
.window-bar i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  animation: bar-fill 2.4s ease-out both;
}
.window-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.window-chips span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 8px 10px;
  border: 1px solid var(--line-hot);
  background: rgba(var(--accent-a), 0.08);
  color: var(--accent-2);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding: clamp(110px, 16vh, 160px) clamp(20px, 5vw, 72px) clamp(56px, 8vh, 96px);
}

.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.8s infinite;
}

.brand-hero {
  margin: 16px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(92px, 17vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: var(--text);
  text-shadow: 0 0 50px var(--glow);
  animation: brand-in 0.95s var(--ease) both;
}

.tagline {
  margin: 0 0 28px;
  max-width: 36ch;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.7vw, 19px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--text-soft);
  animation: fade-up 0.9s 0.15s both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  animation: fade-up 0.9s 0.28s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.2s, filter 0.2s, background 0.2s, border-color 0.2s;
}
.btn-primary {
  background: linear-gradient(110deg, var(--accent), var(--accent-deep));
  color: var(--btn-fg);
  border: 0;
  box-shadow: 0 0 28px rgba(var(--accent-a), 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.btn-primary.is-muted {
  opacity: 0.55;
  filter: grayscale(0.25);
  box-shadow: none;
}
.btn-ghost {
  border: 1px solid var(--line-hot);
  background: rgba(22, 25, 34, 0.75);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.auth-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 44ch;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  animation: fade-up 0.9s 0.4s both;
  cursor: pointer;
}
.auth-notice input {
  margin-top: 3px;
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

/* Sections */
.section {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 12vw, 120px) clamp(20px, 5vw, 72px);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.section-head h2 em {
  color: var(--accent);
}
.section-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
  max-width: 48ch;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.feature-list li {
  display: grid;
  grid-template-columns: 64px 1.1fr 1.4fr;
  gap: 24px;
  align-items: baseline;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.feat-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.feature-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.25;
}
.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
}

.format-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.format-row article {
  min-height: 160px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  transition: background 0.25s, transform 0.25s;
}
.format-row article:last-child { border-right: 0; }
.format-row article:hover {
  background: var(--panel);
  transform: translateY(-3px);
}
.format-row img {
  height: 28px;
  width: auto;
  filter: brightness(1.12);
}
.format-row-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
}
.format-row-mark .dolby {
  width: 36px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.format-row-mark strong {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.uhd {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.uhd span {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}
.uhd i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  border-top: 1px solid var(--line-hot);
  border-bottom: 1px solid var(--line-hot);
  padding: 2px 0;
  color: var(--accent-2);
}
.format-row small {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.fineprint {
  margin: 18px 0 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted-2);
}

.service-tools {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 22px;
  flex-wrap: wrap;
}
.service-tools strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.service-tools-note {
  font-size: 13px;
  color: var(--muted-2);
}
.service-group {
  margin-bottom: 28px;
}
.service-group:last-child {
  margin-bottom: 0;
}
.service-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.service-group-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.service-group-head span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-2);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  min-height: 96px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  transition: background 0.2s, transform 0.2s;
}
.service-card:hover {
  background: var(--panel);
  transform: translateY(-2px);
}
.service-icon {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-hot);
  background: var(--panel);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-2);
}
.service-icon span,
.service-icon img {
  grid-area: 1 / 1;
}
.service-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  z-index: 1;
}
.service-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.service-card p {
  margin: 4px 0 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}
.services-note {
  margin: 22px 0 0;
  max-width: 68ch;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.services-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.service-more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding: 22px 20px;
  border: 1px solid var(--line-hot);
  background:
    radial-gradient(circle at 100% 0%, var(--accent-soft), transparent 45%),
    var(--panel);
}
.service-more p {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

/* â€”â€” Service status board â€”â€” */
.status-page {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 70% 45% at 12% 0%, rgba(var(--accent-a), 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 18%, var(--orb-2), transparent 50%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 42%, #06101f 100%);
}
.status-page main {
  max-width: 100%;
  overflow-x: clip;
}
.status-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(var(--accent-a), 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-a), 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
}
.status-page > *:not(.noise):not(.status-atmosphere) {
  position: relative;
  z-index: 1;
}
.status-page .nav a[aria-current="page"] {
  color: var(--text);
}
.status-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 72px) 28px;
}
.status-hero h1 {
  margin: 14px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 76px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-weight: 700;
  animation: fade-up 0.7s both;
}
.status-hero .tagline {
  max-width: min(48ch, 100%);
  margin: 0 0 20px;
  color: var(--text-soft);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  font-weight: 400;
  overflow-wrap: anywhere;
  animation: fade-up 0.7s 0.08s both;
}
.status-hero .auth-notice {
  animation: fade-up 0.7s 0.16s both;
}
.status-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted-2);
  animation: fade-up 0.7s 0.24s both;
}
.status-meta em {
  color: var(--accent);
  font-weight: 700;
}
.status-board {
  padding-top: 12px;
  padding-bottom: clamp(56px, 8vw, 88px);
  max-width: 100%;
  min-width: 0;
}
.status-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.status-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.status-filter {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(18, 20, 26, 0.9);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 12px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.status-filter:hover,
.status-filter.is-active {
  border-color: var(--accent);
  color: var(--text);
  background: var(--panel);
}
.status-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: min(100%, 260px);
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(18, 20, 26, 0.9);
}
.status-search span {
  color: var(--muted-2);
  font-size: 14px;
}
.status-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  height: 42px;
}
.status-table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  border: 1px solid var(--line);
  background: rgba(18, 20, 26, 0.78);
  -webkit-overflow-scrolling: touch;
}
.status-table {
  width: max(100%, 720px);
  border-collapse: collapse;
  text-align: left;
}
.status-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--panel);
  border-bottom: 1px solid var(--line-hot);
  white-space: nowrap;
}
.status-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(42, 48, 64, 0.9);
  vertical-align: middle;
}
.status-table tbody tr:last-child td {
  border-bottom: 0;
}
.status-table tbody tr:hover td {
  background: rgba(28, 32, 43, 0.55);
}
.status-service {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}
.status-logo {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  font-size: 10px;
}
.status-logo img {
  width: 20px;
  height: 20px;
}
.status-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.status-group {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--muted);
  white-space: nowrap;
}
.status-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 0;
  white-space: nowrap;
}
.status-pill.working {
  color: var(--success);
}
.status-pill.available {
  color: var(--accent);
}
.status-pill.working::before,
.status-pill.available::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  vertical-align: 0;
  background: currentColor;
}
.status-empty {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.status-footnote {
  margin: 18px 0 0;
  max-width: 70ch;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted-2);
}

/* â€”â€” Pricing / Choose your access â€”â€” */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(165deg, var(--glass-strong), var(--bg-2) 55%, var(--bg));
  min-height: 100%;
  transition: border-color 0.25s, transform 0.25s;
}
.price-card:hover {
  border-color: var(--line-hot);
  transform: translateY(-3px);
}
.price-card.featured {
  border-color: var(--accent);
  background:
    radial-gradient(circle at 100% 0%, var(--accent-soft), transparent 42%),
    linear-gradient(165deg, var(--panel-2), var(--bg-2) 60%, var(--bg));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.price-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0 12px;
}
.price-amount strong {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 52px);
  letter-spacing: -0.035em;
  font-weight: 700;
  line-height: 1;
}
.price-amount span {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.price-lead {
  margin: 0 0 20px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  max-width: 28ch;
}
.price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
  display: grid;
  gap: 10px;
}
.price-features li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 1px;
  background: var(--accent);
}
.price-card .btn {
  width: 100%;
}
.pricing-note {
  margin: 22px 0 0;
  max-width: 68ch;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.pricing-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* â€”â€” Checkout page â€”â€” */
.checkout-page {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 45% at 12% 0%, rgba(var(--accent-a), 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 18%, var(--orb-2), transparent 50%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 42%, #06101f 100%);
}
.checkout-page > *:not(.noise):not(.status-atmosphere) {
  position: relative;
  z-index: 1;
}
.checkout-page .nav a[aria-current="page"] {
  color: var(--text);
}
.checkout-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 72px) 12px;
}
.checkout-hero h1 {
  margin: 14px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 76px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-weight: 700;
  animation: fade-up 0.7s both;
}
.checkout-hero .tagline {
  max-width: min(54ch, 100%);
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  font-weight: 400;
  animation: fade-up 0.7s 0.08s both;
}
.checkout-panel {
  padding-top: 28px;
  padding-bottom: clamp(56px, 8vw, 96px);
  max-width: 820px;
}
.checkout-form,
.checkout-success {
  border: 1px solid var(--line-hot);
  background:
    radial-gradient(circle at 100% 0%, var(--accent-soft), transparent 40%),
    linear-gradient(160deg, var(--panel), var(--bg-2) 55%, var(--bg));
  padding: clamp(28px, 4vw, 40px);
}
.checkout-step {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.checkout-step:last-of-type {
  border-bottom: 0;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.checkout-step-label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.checkout-step h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-weight: 700;
}
.checkout-help {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.plan-pick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.plan-option {
  cursor: pointer;
}
.plan-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.plan-option-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 128px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  background: rgba(10, 11, 13, 0.45);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.plan-option:hover .plan-option-body,
.plan-option input:checked + .plan-option-body {
  border-color: var(--accent);
  background: rgba(28, 32, 43, 0.9);
  transform: translateY(-2px);
}
.plan-option-body strong {
  font-size: 16px;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.plan-option-body em {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.plan-option-body small {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.plan-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.checkout-fields {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}
.checkout-fields label {
  display: grid;
  gap: 8px;
}
.checkout-fields label span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.checkout-fields label span i {
  font-style: normal;
  color: var(--muted-2);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.checkout-fields input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text);
  outline: none;
  border-radius: var(--radius);
}
.checkout-fields input:focus {
  border-color: var(--accent);
}
.pay-pick {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.pay-option {
  cursor: pointer;
}
.pay-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pay-option span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 72px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  background: rgba(10, 11, 13, 0.45);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.pay-option span em {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.pay-option:hover span,
.pay-option input:checked + span {
  border-color: var(--accent);
  background: rgba(28, 32, 43, 0.9);
}
.checkout-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(10, 11, 13, 0.4);
}
.checkout-summary span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.checkout-summary strong {
  font-size: 16px;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.checkout-auth {
  max-width: none;
  margin-bottom: 22px;
  animation: none;
}
.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.checkout-error {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--danger);
}
.checkout-success h2 {
  margin: 12px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-weight: 700;
}
.checkout-success > p {
  margin: 0 0 24px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}
.checkout-receipt {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(10, 11, 13, 0.4);
}
.checkout-receipt dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.checkout-receipt dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  word-break: break-word;
}
.checkout-next {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.checkout-next li { margin-bottom: 6px; }

.download {
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
}
.download-panel {
  position: relative;
  padding: clamp(40px, 6vw, 64px);
  border: 1px solid var(--line-hot);
  background:
    radial-gradient(circle at 90% 10%, var(--accent-soft), transparent 40%),
    linear-gradient(145deg, var(--panel-2), var(--bg-2) 60%, var(--bg));
  overflow: hidden;
}
.download-panel h2 {
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 700;
}
.download-panel > p {
  max-width: 52ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}
.auth-inline {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.6;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.platform-card {
  padding: 22px 20px;
  border: 1px solid var(--line);
  background: rgba(10, 11, 13, 0.45);
}
.platform-card h3 {
  margin: 10px 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.platform-card > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  max-width: 36ch;
}
.platform-os {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.platform-note {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted-2);
  max-width: 40ch;
}
@media (max-width: 820px) {
  .platform-grid { grid-template-columns: 1fr; }
}

.license-note {
  max-width: 62ch;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}
.license-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.disclaimer {
  max-width: 1180px;
  margin: 0 auto 40px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-left: 1px solid var(--accent);
  border-right: 1px solid var(--line);
  background: var(--bg-2);
}
.disclaimer strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  max-width: 78ch;
}

footer {
  min-height: 110px;
  padding: 28px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
footer p {
  margin: 0 auto;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.02em;
}
footer p a { color: var(--text-soft); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 20px;
  font-size: 13px;
  font-weight: 500;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal="visible"] {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  50% { opacity: 0.35; transform: scale(0.75); }
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
@keyframes scan-drift {
  from { background-position: 0 0; }
  to { background-position: 80px 80px; }
}
@keyframes frame-rise {
  from { opacity: 0; transform: translateY(calc(-42% + 36px)); }
  to { opacity: 1; transform: translateY(-42%); }
}
@keyframes brand-in {
  from { opacity: 0; transform: translateY(20px); letter-spacing: -0.01em; }
  to { opacity: 1; transform: none; letter-spacing: -0.045em; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes bar-fill {
  from { width: 0; }
}

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

@media (max-width: 980px) {
  .nav-cta { display: none; }
  .nav .theme-switch { margin-left: auto; }
  .menu { display: block; margin-left: 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    margin: 0;
    padding: 20px;
    flex-direction: column;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .hero-frame {
    width: min(420px, 70vw);
    opacity: 0.55;
    right: -4%;
  }
  .hero-wash {
    background:
      linear-gradient(90deg, rgba(var(--wash-rgb), 0.96) 0%, rgba(var(--wash-rgb), 0.8) 55%, rgba(var(--wash-rgb), 0.42) 100%),
      linear-gradient(180deg, transparent 50%, rgba(var(--wash-rgb), 0.92) 100%);
  }
  .feature-list li {
    grid-template-columns: 48px 1fr;
    gap: 12px 18px;
  }
  .feature-list p { grid-column: 1 / -1; }
  .format-row { grid-template-columns: repeat(2, 1fr); }
  .format-row article:nth-child(2n) { border-right: 0; }
  .format-row article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-pick { grid-template-columns: 1fr; }
  .pay-pick { grid-template-columns: 1fr 1fr; }
  .checkout-fields { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { height: 68px; padding: 0 16px; }
  .brand-mark { font-size: 22px; }
  .hero-copy { padding: 100px 16px 48px; }
  .brand-hero { font-size: 22vw; }
  .hero-frame { display: none; }
  .cta-row { flex-direction: column; }
  .btn { width: 100%; }
  .section { padding: 72px 16px; }
  .feature-list li { grid-template-columns: 1fr; }
  .format-row { grid-template-columns: 1fr; }
  .format-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .format-row article:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .status-hero { padding: 96px 16px 24px; }
  .status-hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .status-hero .tagline { max-width: 100%; width: 100%; }
  .status-table { width: max(100%, 640px); }
  .status-table thead th,
  .status-table tbody td { padding: 12px 14px; }
  .status-search { min-width: 100%; width: 100%; }
  .status-meta { gap: 8px 16px; }
  .service-more { flex-direction: column; align-items: stretch; }
  .download-panel { padding: 28px 18px; }
  .checkout-hero { padding: 96px 16px 12px; }
  .checkout-actions { flex-direction: column; }
  .checkout-actions .btn { width: 100%; }
  .checkout-receipt { grid-template-columns: 1fr; }
  .pay-pick { grid-template-columns: 1fr; }
  .checkout-summary { grid-template-columns: 1fr; }
  .disclaimer { margin: 0 16px 28px; padding: 22px 18px; border-right: 0; }
  footer {
    flex-direction: column;
    text-align: center;
    padding: 32px 16px;
  }
  footer p { margin: 0; }
}

/* —— Theme switcher —— */
.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--glass);
  backdrop-filter: blur(14px);
}
.theme-switch-label {
  display: none;
  margin: 0 6px 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.theme-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.theme-switch button:hover { color: var(--text); }
.theme-switch button.is-active {
  background: rgba(var(--accent-a), 0.18);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(var(--accent-a), 0.35);
}
.nav .theme-switch { margin-left: 4px; }
.footer-theme {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1100px) {
  .theme-switch-label { display: inline; }
}

/* —— Studio glass polish (Techarin-inspired) —— */
html[data-theme="studio"] .nav {
  border-bottom-color: rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(20px);
}
html[data-theme="studio"] .nav-cta,
html[data-theme="studio"] .btn,
html[data-theme="studio"] .btn-ghost,
html[data-theme="studio"] .btn-primary {
  border-radius: var(--radius-pill);
}
html[data-theme="studio"] .btn-primary {
  background: linear-gradient(110deg, var(--accent), var(--accent-deep));
  color: var(--btn-fg);
  box-shadow: 0 10px 36px rgba(var(--accent-deep-a), 0.35);
}
html[data-theme="studio"] .btn-ghost,
html[data-theme="studio"] .nav-cta {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
html[data-theme="studio"] .hero-frame,
html[data-theme="studio"] .price-card,
html[data-theme="studio"] .platform-card,
html[data-theme="studio"] .download-panel,
html[data-theme="studio"] .checkout-form,
html[data-theme="studio"] .checkout-success,
html[data-theme="studio"] .format-row,
html[data-theme="studio"] .service-card,
html[data-theme="studio"] .service-icon,
html[data-theme="studio"] .service-more,
html[data-theme="studio"] .status-table-wrap,
html[data-theme="studio"] .status-search,
html[data-theme="studio"] .status-filter,
html[data-theme="studio"] .plan-option-body,
html[data-theme="studio"] .pay-option span,
html[data-theme="studio"] .checkout-summary,
html[data-theme="studio"] .checkout-receipt,
html[data-theme="studio"] .checkout-fields input,
html[data-theme="studio"] .disclaimer {
  border-radius: var(--radius);
  border-color: var(--glass-border, rgba(255, 255, 255, 0.1));
}
html[data-theme="studio"] .hero-frame {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.85), rgba(2, 6, 23, 0.92));
  backdrop-filter: blur(22px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 0 80px var(--glow);
  overflow: hidden;
}
html[data-theme="studio"] .price-card,
html[data-theme="studio"] .platform-card,
html[data-theme="studio"] .service-card,
html[data-theme="studio"] .download-panel,
html[data-theme="studio"] .checkout-form,
html[data-theme="studio"] .checkout-success,
html[data-theme="studio"] .service-more {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.04), transparent 42%),
    var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}
html[data-theme="studio"] .price-card.featured {
  border-color: rgba(var(--accent-a), 0.55);
  box-shadow: 0 24px 70px rgba(var(--accent-deep-a), 0.28);
}
html[data-theme="studio"] .format-row {
  overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(16px);
  gap: 0;
}
html[data-theme="studio"] .format-row article:hover,
html[data-theme="studio"] .service-card:hover,
html[data-theme="studio"] .price-card:hover {
  background: rgba(30, 41, 59, 0.72);
}
html[data-theme="studio"] .brand-hero {
  background: linear-gradient(120deg, #f8fafc 10%, var(--accent-2) 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 40px var(--glow));
}
html[data-theme="studio"] .hero-glow {
  background: radial-gradient(circle, var(--orb), transparent 68%);
}
html[data-theme="studio"] .noise { opacity: 0.02; }
html[data-theme="studio"] .status-filter.is-active,
html[data-theme="studio"] .status-filter:hover {
  background: rgba(var(--accent-a), 0.16);
}
html[data-theme="studio"] .window-chips span {
  border-radius: var(--radius-sm);
}
html[data-theme="studio"] footer {
  border-top-color: rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.85);
}

/* Classic keeps sharp cinema graphite edges */
html[data-theme="classic"] .theme-switch,
html[data-theme="classic"] .theme-switch button {
  border-radius: 2px;
}
html[data-theme="classic"] .btn-primary {
  color: var(--btn-fg);
}

