/* QuantumTrader — публичный сайт, Apple HIG · light default */
:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --bg-elevated: #ffffff;
  --card-bg: #ffffff;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-hairline: rgba(17, 24, 60, 0.08);
  --text: #1d1d1f;
  --text-secondary: rgba(29, 29, 31, 0.62);
  --text-tertiary: rgba(29, 29, 31, 0.42);
  --accent: #007aff;
  --accent-soft: rgba(0, 122, 255, 0.12);
  --brand-ai-start: #4cc9f0;
  --brand-ai-mid: #6258e8;
  --brand-ai-end: #b15bf0;
  --ok: #248a3d;
  --radius-2xl: 28px;
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", system-ui, sans-serif;
  --max: 1280px;
  --max-wide: 1440px;
  --max-text: 720px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --topbar-bg: rgba(255, 255, 255, 0.7);
  --site-bg-base: #f5f5f7;
  --mock-panel: #ffffff;
  --mock-inset: #f2f2f7;
  /* Cryptomus-style accent gradient for hero CTAs / highlights */
  --grad-accent: linear-gradient(120deg, #4cc9f0 0%, #6258e8 52%, #b15bf0 100%);
  --grad-accent-soft: linear-gradient(120deg, rgba(76,201,240,.14), rgba(98,88,232,.13), rgba(177,91,240,.13));
  --glass-blur: blur(24px) saturate(180%);
  --shadow-float: 0 18px 60px rgba(17, 24, 60, 0.12), 0 4px 14px rgba(17, 24, 60, 0.06);
  --shadow-soft: 0 8px 30px rgba(17, 24, 60, 0.08);
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #000000;
  --bg-elevated: #1c1c1e;
  --card-bg: rgba(255, 255, 255, 0.08);
  --card-shadow: none;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.14);
  --text: #f5f5f7;
  --text-secondary: rgba(235, 235, 245, 0.62);
  --text-tertiary: rgba(235, 235, 245, 0.38);
  --accent: #0a84ff;
  --accent-soft: rgba(10, 132, 255, 0.18);
  --brand-ai-start: #00f2fe;
  --brand-ai-mid: #5ba4ff;
  --brand-ai-end: #2575fc;
  --ok: #30d158;
  --topbar-bg: rgba(0, 0, 0, 0.72);
  --site-bg-base: #000;
  --mock-panel: rgba(0, 0, 0, 0.45);
  --mock-inset: #141820;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 48% at 18% 12%, rgba(255, 170, 210, 0.42), transparent 58%),
    radial-gradient(ellipse 50% 46% at 82% 18%, rgba(170, 150, 255, 0.38), transparent 58%),
    radial-gradient(ellipse 55% 50% at 55% 78%, rgba(140, 190, 255, 0.36), transparent 60%),
    radial-gradient(ellipse 40% 36% at 8% 70%, rgba(180, 230, 230, 0.28), transparent 55%),
    var(--site-bg-base);
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  -webkit-mask-image: none;
  mask-image: none;
}
[data-theme="dark"] .site-bg::after { opacity: 0; }
[data-theme="dark"] .site-bg {
  background:
    radial-gradient(ellipse 70% 50% at 20% 10%, rgba(255, 120, 180, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 20%, rgba(120, 100, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 50% at 50% 85%, rgba(60, 140, 255, 0.16), transparent 55%),
    #05060a;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), 94vw);
  margin: 0 auto;
}
.wrap-wide { width: min(var(--max-wide), 95vw); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(180%) blur(20px);
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--glass-hairline);
}

.topbar-inner {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}
.logo-mark { width: 56px; height: 56px; flex: 0 0 auto; }
.logo em {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: none;
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a.active {
  color: var(--text);
  background: var(--glass);
}
.nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, #007aff 0%, #0055cc 100%);
  font-weight: 600;
}
.nav .nav-cta:hover {
  filter: brightness(1.08);
  color: #fff;
}
.nav .nav-login {
  color: var(--text);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav .nav-login svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav .nav-login-text { display: none; }
.nav .nav-login:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--glass-strong, var(--glass));
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.theme-toggle:hover { color: var(--text); background: var(--card-bg); }
[data-theme="dark"] .theme-toggle .icon-sun { display: inline; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: inline; }

.hero {
  padding: clamp(48px, 10vw, 96px) 0 clamp(32px, 6vw, 56px);
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 16px;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.hero.wide h1 { max-width: none; }
.hero p {
  color: var(--text-secondary);
  font-size: clamp(17px, 2.2vw, 21px);
  max-width: 36em;
  margin: 0 auto 28px;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s var(--ease), filter 0.2s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn.primary {
  background: var(--accent);
  color: #fff;
}
.btn.primary:hover { filter: brightness(1.06); }
.btn.ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
}
.btn.ghost:hover { background: rgba(0, 0, 0, 0.04); }
[data-theme="dark"] .btn.ghost:hover { background: rgba(255, 255, 255, 0.12); }

.section {
  padding: 80px 0;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--text-secondary);
  margin: 0 auto 36px;
  max-width: 32em;
  font-size: 17px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.card {
  background: var(--glass-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
[data-theme="dark"] .card {
  backdrop-filter: blur(24px);
  box-shadow: none;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.card p, .list {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
  font-size: 15px;
}
.list {
  padding-left: 1.1em;
}
.list li { margin-bottom: 6px; }
.list strong { color: var(--text); font-weight: 600; }

.kpi {
  grid-column: span 3;
  text-align: center;
  padding: 28px 20px;
}
.kpi .v {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.kpi .l {
  font-size: 13px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature { grid-column: span 4; }
.feature .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.panel { grid-column: span 6; }
.panel.wide { grid-column: span 12; }

.pricing-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}
.pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 12px 0 4px;
}
.pricing-card .period {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.pricing-card.featured {
  border-color: rgba(10, 132, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(10, 132, 255, 0.2);
}
.pricing-card .btn { margin-top: auto; width: 100%; }

.steps { grid-column: span 12; }
.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.step-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.45;
}
.section-lead {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 0 16px;
  line-height: 1.5;
}
.highlight-panel {
  border-color: rgba(0, 113, 227, 0.22);
  background: linear-gradient(145deg, rgba(0, 113, 227, 0.08), rgba(255, 255, 255, 0.9));
}
[data-theme="dark"] .highlight-panel {
  border-color: rgba(10, 132, 255, 0.28);
  background: linear-gradient(145deg, rgba(10, 132, 255, 0.08), rgba(255, 255, 255, 0.04));
}
.soft-panel {
  background: rgba(0, 0, 0, 0.03);
}
[data-theme="dark"] .soft-panel {
  background: rgba(255, 255, 255, 0.04);
}
.feature-grid.compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feature-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--mock-inset);
  border: 1px solid var(--glass-border);
}
.feature-mini strong {
  font-size: 15px;
  color: var(--text);
}
.feature-mini span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.list.checklist li { margin-bottom: 8px; }
.hint-inline {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 10px;
}
.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.text-link:hover { text-decoration: underline; }

.disclaimer {
  grid-column: span 12;
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  padding: 8px 0 32px;
  line-height: 1.5;
}

.footer {
  border-top: 1px solid var(--glass-hairline);
  padding: 28px 0 40px;
  font-size: 13px;
  color: var(--text-tertiary);
  text-align: center;
}
.footer a {
  color: var(--text-secondary);
  text-decoration: none;
}
.footer a:hover { color: var(--accent); }

.footer-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-meta {
  margin: 0;
  font-size: 13px;
  color: var(--text-tertiary);
}
.platform-credit--site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 18px;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
}
[data-theme="dark"] .platform-credit--site {
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.platform-credit--site .platform-credit-logos {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.platform-credit--site .platform-credit-logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  opacity: 1;
}
.platform-credit--site .platform-credit-logo.is-dark { display: none; }
[data-theme="dark"] .platform-credit--site .platform-credit-logo.is-light { display: none; }
[data-theme="dark"] .platform-credit--site .platform-credit-logo.is-dark { display: block; }
.platform-credit--site .platform-credit-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-tertiary);
}
.platform-credit--site .platform-credit-text strong {
  color: var(--text-secondary);
  font-weight: 600;
}

@media (max-width: 900px) {
  .kpi, .feature, .panel, .pricing-card { grid-column: span 12; }
  .step-row { grid-template-columns: 1fr; }
  .feature-grid.compact { grid-template-columns: 1fr; }
  .topbar-inner {
    height: auto;
    min-height: 52px;
    padding: 10px 0;
    flex-wrap: wrap;
  }
  .stats-grid .stat-card { grid-column: span 6; }
  .trial-inner { flex-direction: column; align-items: flex-start; }
}

/* ——— Marketing v2 ——— */
.site-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.site-glow-a { top: 10%; left: -10%; background: rgba(0, 113, 227, 0.35); animation: floatA 18s ease-in-out infinite; }
.site-glow-b { bottom: 5%; right: -5%; background: rgba(88, 86, 214, 0.25); animation: floatB 22s ease-in-out infinite; }
[data-theme="dark"] .site-glow-a { background: rgba(10, 132, 255, 0.5); }
[data-theme="dark"] .site-glow-b { background: rgba(94, 92, 230, 0.35); }
@keyframes floatA { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(40px, 30px); } }
@keyframes floatB { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, -20px); } }

.hero-marketing h1 { max-width: 18ch; }
.hero-marketing .hero-note {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 16px;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}
.hero-pulse { animation: pulseEyebrow 2.5s ease-in-out infinite; }
@keyframes pulseEyebrow { 0%, 100% { opacity: 1; } 50% { opacity: 0.65; } }

.btn-glow { box-shadow: 0 0 24px rgba(10, 132, 255, 0.35); }
.btn-glow:hover { box-shadow: 0 0 32px rgba(10, 132, 255, 0.5); }

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  animation: reveal-fallback 0.01s 1.2s forwards;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
@keyframes reveal-fallback {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; animation: none; }
}

.stats-grid { margin-bottom: 8px; }
.stat-card {
  grid-column: span 4;
  text-align: center;
  padding: 28px 16px;
}
.stat-card.accent { border-color: rgba(48, 209, 88, 0.35); }
.stat-val {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.stat-lbl {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 8px;
  line-height: 1.4;
}

.plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 10px;
}

.trial-banner { margin-bottom: 8px; }
.trial-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trial-inner h3 { margin: 0 0 8px; }
.trial-inner p { margin: 0; max-width: 42em; }

/* ---------- Cabinet showcase (marketing) ---------- */
.ui-showcase .section-head-v3 { margin-bottom: 22px; }
.cabinet-mock {
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
}
.cm-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--glass-border);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.35);
}
[data-theme="dark"] .cm-chrome { background: rgba(0, 0, 0, 0.25); }
.cm-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.14);
}
[data-theme="dark"] .cm-dot { background: rgba(255, 255, 255, 0.22); }
.cm-chrome-title { flex: 1; color: var(--text-secondary); margin-left: 6px; font-weight: 500; }
.cm-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(48, 209, 88, 0.22);
  color: var(--ok);
  letter-spacing: 0.04em;
}
.cm-layout {
  display: grid;
  grid-template-columns: 132px 1fr 200px;
  min-height: 340px;
}
.cm-nav {
  padding: 14px 10px;
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.22);
}
[data-theme="dark"] .cm-nav { background: rgba(0, 0, 0, 0.18); }
.cm-nav-item {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--text-secondary);
}
.cm-nav-item.is-active {
  background: rgba(98, 88, 232, 0.14);
  color: var(--text);
  font-weight: 600;
}
.cm-main { padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.cm-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(76, 201, 240, 0.14), rgba(98, 88, 232, 0.16));
  border: 1px solid rgba(98, 88, 232, 0.18);
}
.cm-hero h3 { margin: 0 0 4px; font-size: 15px; font-weight: 650; }
.cm-hero p { margin: 0; font-size: 12.5px; color: var(--text-secondary); }
.cm-switch {
  flex-shrink: 0;
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: var(--ok);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
.cm-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}
.cm-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.cm-metric {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--glass-border);
}
[data-theme="dark"] .cm-metric { background: rgba(255, 255, 255, 0.05); }
.cm-metric .lbl {
  display: block;
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}
.cm-metric .val { font-size: 15px; font-weight: 650; }
.cm-metric .hint { display: block; margin-top: 4px; font-size: 11px; color: var(--text-tertiary); }
.cm-chart {
  height: 72px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(10, 132, 255, 0.22), transparent 72%),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 28px);
  border: 1px solid var(--glass-border);
}
[data-theme="dark"] .cm-chart {
  background:
    linear-gradient(180deg, rgba(10, 132, 255, 0.28), transparent 72%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 28px);
}
.cm-side {
  padding: 14px 12px;
  border-left: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
[data-theme="dark"] .cm-side { background: rgba(0, 0, 0, 0.16); }
.cm-side-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin: 0 0 4px;
}
.cm-signal {
  padding: 10px 11px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--glass-border);
  font-size: 12px;
}
[data-theme="dark"] .cm-signal { background: rgba(255, 255, 255, 0.05); }
.cm-signal b { display: block; margin-bottom: 2px; font-weight: 650; }
.cm-signal span { color: var(--text-secondary); }
.cm-signal.is-ok b { color: var(--ok); }
.cm-signal.is-skip b { color: var(--text-tertiary); }
.cm-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.cm-callout {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
}
.cm-callout strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13.5px;
}
.cm-callout p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.mock-caption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 52em;
}
@media (max-width: 900px) {
  .cm-layout { grid-template-columns: 1fr; }
  .cm-nav, .cm-side { display: none; }
  .cm-metrics { grid-template-columns: 1fr; }
  .cm-callouts { grid-template-columns: 1fr; }
}

.steps .card { grid-column: span 4; }

@media (max-width: 900px) {
  .stats-grid .stat-card { grid-column: span 12; }
  .steps .card { grid-column: span 12; }
}

/* ---------- Alpha test ---------- */
.alpha-ribbon {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  padding: 9px 16px;
  font-size: 14px;
  color: var(--text);
  background: linear-gradient(90deg, rgba(0, 113, 227, 0.12), rgba(0, 199, 235, 0.1));
  border-bottom: 1px solid rgba(0, 113, 227, 0.18);
}
[data-theme="dark"] .alpha-ribbon {
  background: linear-gradient(90deg, rgba(10, 132, 255, 0.22), rgba(0, 242, 254, 0.16));
  border-bottom: 1px solid rgba(0, 242, 254, 0.28);
}
.alpha-ribbon b { color: var(--accent); }
[data-theme="dark"] .alpha-ribbon b { color: #7fd9ff; }
.alpha-ribbon a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 113, 227, 0.35);
}
[data-theme="dark"] .alpha-ribbon a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
.alpha-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 8px;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 122, 255, 0.08);
  border: 1px solid rgba(0, 122, 255, 0.35);
  vertical-align: middle;
}
.alpha-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: alpha-pulse 1.6s var(--ease) infinite;
}
@keyframes alpha-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.reward-grid .card .reward-ic,
.join-steps .card .step-num { color: var(--accent); }
.reward-grid .card { grid-column: span 4; }
.join-steps .card { grid-column: span 6; }
.alpha-cta-band {
  margin-top: 12px;
  padding: 30px 26px;
  text-align: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.18), rgba(0, 242, 254, 0.10));
  border: 1px solid var(--glass-border);
}
.faq-item { padding: 16px 0; border-bottom: 1px solid var(--glass-border); }
.faq-item h3 { margin: 0 0 6px; font-size: 16px; }
.faq-item p { margin: 0; color: var(--text-secondary); font-size: 15px; }
@media (max-width: 900px) {
  .reward-grid .card,
  .join-steps .card { grid-column: span 12; }
}

/* ═══════════════ Marketing v3 — wide glass redesign ═══════════════ */

/* Glass surface usable on light + dark */
.glass {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

/* Accent gradient CTA (Cryptomus-style) */
.btn.accent-grad {
  background: var(--grad-accent);
  color: #fff;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.32);
}
.btn.accent-grad:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* Pill with circular arrow (reference style) */
.pill-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 7px 7px 20px;
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.pill-arrow:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.pill-arrow .circ {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-elevated);
  font-size: 16px;
  transition: transform 0.25s var(--ease-spring), background 0.2s var(--ease);
}
.pill-arrow:hover .circ { transform: rotate(45deg); }
.pill-arrow.is-accent .circ { background: var(--accent); color: #fff; }

/* Chip row */
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* Wide hero (asymmetric, reference style) */
.hero-v3 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  text-align: left;
  padding: clamp(40px, 7vw, 84px) 0 clamp(32px, 5vw, 56px);
}
.hero-v3 .hero-eyebrow { margin-bottom: 16px; }
.hero-v3 h1 {
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  max-width: none;
}
.hero-v3 h1 .grad {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-v3 p { margin: 0 0 26px; max-width: 30em; font-size: clamp(16px, 1.5vw, 19px); }
.hero-v3 .cta-row { justify-content: flex-start; }
.hero-visual {
  position: relative;
  border-radius: var(--radius-2xl);
  padding: 22px;
  min-height: 340px;
  background: var(--grad-accent-soft);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  filter: blur(60px);
  background: rgba(0, 113, 227, 0.35);
  top: -60px; right: -40px;
}
.hero-visual .float-card {
  position: relative;
  z-index: 1;
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  padding: 18px;
}
.hero-visual .float-card + .float-card { margin-top: 14px; }

/* Orb hero (reference-5 style) */
.hero-visual--orb {
  background: transparent;
  border: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-visual--orb::before {
  width: 360px; height: 360px;
  background: rgba(150, 170, 255, 0.4);
  top: 10%; right: 8%;
  opacity: 0.7;
}
.hero-orb {
  width: 100%;
  max-width: 540px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(94, 92, 230, 0.22));
  animation: orbFloat 7s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes orbFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-visual--orb .float-card {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 11px 15px;
  min-width: 150px;
}
.hero-visual--orb .float-card .float-row { gap: 14px; white-space: nowrap; }
.hero-visual--orb .float-card--tl { top: 6%; left: 4%; animation: orbFloat 6s ease-in-out infinite; }
.hero-visual--orb .float-card--br { bottom: 10%; right: 4%; animation: orbFloat 8s ease-in-out infinite reverse; }
@media (max-width: 960px) {
  .hero-visual--orb { min-height: 320px; }
  .hero-visual--orb .float-card--tl { left: 6%; }
  .hero-visual--orb .float-card--br { right: 6%; }
}
.float-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.float-row .lbl { color: var(--text-tertiary); }
.float-row .val { font-weight: 700; letter-spacing: -0.02em; }
.float-row .val.ok { color: var(--ok); }
.spark {
  height: 56px;
  margin-top: 12px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(0, 113, 227, 0.28), transparent 75%),
    repeating-linear-gradient(90deg, rgba(17,24,60,0.05) 0 1px, transparent 1px 28px);
  position: relative;
  overflow: hidden;
}
.spark::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: translateX(-100%);
  animation: shimmer 3.2s var(--ease) infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%);} 60%,100% { transform: translateX(120%);} }

/* Bento / wide feature grid */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.bento .glass-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-2xl);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
[data-theme="dark"] .bento .glass-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.bento .glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 122, 255, 0.28);
}
.bento .span-3 { grid-column: span 3; }
.bento .span-2 { grid-column: span 2; }
.bento .span-4 { grid-column: span 4; }
.bento .span-6 { grid-column: span 6; }
.glass-card .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: var(--grad-accent-soft);
  color: var(--accent);
  margin-bottom: 16px;
}
.glass-card .ic svg { width: 24px; height: 24px; }
.glass-card h3 { margin: 0 0 8px; font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.glass-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.55; margin: 0; }

/* Section header left-aligned variant */
.section-head-v3 { max-width: var(--max-text); margin: 0 0 32px; }
.section-head-v3 .section-title { text-align: left; }
.section-head-v3 .section-sub { text-align: left; margin-left: 0; }

/* CTA band v3 */
.cta-band-v3 {
  margin: 24px 0 48px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--shadow-float);
}
.cta-band-v3 h2 { color: #fff; font-size: clamp(26px, 3.5vw, 40px); margin: 0 0 10px; letter-spacing: -0.02em; }
.cta-band-v3 p { color: rgba(255,255,255,.88); max-width: 40em; margin: 0 auto 24px; }
.cta-band-v3 .btn.ghost { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.3); }
.cta-band-v3 .btn.ghost:hover { background: rgba(255,255,255,.26); }
.cta-band-v3 .btn.primary { background: #fff; color: var(--accent); }

@media (max-width: 960px) {
  .hero-v3 { grid-template-columns: 1fr; text-align: left; }
  .hero-v3 .cta-row { justify-content: flex-start; }
  .bento .span-2, .bento .span-3, .bento .span-4 { grid-column: span 6; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento .glass-card { grid-column: 1 / -1 !important; }
  .cta-row { width: 100%; }
}

/* ============================================================
   HERO POD — 360 POD glass reference
   ============================================================ */
.hero-pod { margin: 0 0 44px; padding: 48px 0 28px; }
.pod-stage {
  position: relative;
  display: grid;
  grid-template-columns: 270px 1fr 270px;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "top    top    top"
    "left   center right";
  gap: 22px;
  min-height: 720px;
  padding: 26px;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 40px 100px rgba(90, 60, 140, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  isolation: isolate;
}
.pod-room {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(48% 44% at 50% 38%, rgba(255, 190, 220, 0.62), transparent 64%),
    radial-gradient(44% 40% at 50% 88%, rgba(160, 190, 255, 0.55), transparent 72%),
    radial-gradient(40% 52% at 10% 28%, rgba(210, 175, 255, 0.48), transparent 72%),
    radial-gradient(40% 52% at 90% 28%, rgba(170, 230, 230, 0.42), transparent 72%),
    linear-gradient(180deg, #f3eef8 0%, #f7f0f5 48%, #eaf0fb 100%);
  filter: blur(0);
}
.pod-room::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 42%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5));
}
[data-theme="dark"] .pod-room {
  background:
    radial-gradient(48% 44% at 50% 38%, rgba(255, 120, 180, 0.22), transparent 64%),
    radial-gradient(44% 40% at 50% 88%, rgba(80, 120, 255, 0.28), transparent 72%),
    radial-gradient(40% 52% at 10% 28%, rgba(140, 100, 255, 0.22), transparent 72%),
    radial-gradient(40% 52% at 90% 28%, rgba(60, 180, 200, 0.16), transparent 72%),
    linear-gradient(180deg, #12141c 0%, #0c0e14 100%);
}
[data-theme="dark"] .pod-room::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

/* Panels — frosted glass like 360 POD */
.pod-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(36px) saturate(180%);
  -webkit-backdrop-filter: blur(36px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    0 16px 40px rgba(70, 55, 110, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
[data-theme="dark"] .pod-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.pod-cap {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.pod-rail { z-index: 1; display: flex; flex-direction: column; gap: 18px; }
.pod-rail--left { grid-area: left; }
.pod-rail--right { grid-area: right; }

/* Top bar — floating pills */
.pod-topbar {
  grid-area: top;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pod-pills, .pod-toptools {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 8px 24px rgba(70, 55, 110, 0.08);
}
[data-theme="dark"] .pod-pills,
[data-theme="dark"] .pod-toptools {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}
.pod-pills a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 999px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.pod-pills a svg { width: 19px; height: 19px; }
.pod-pills a:hover { background: rgba(255, 255, 255, 0.72); color: var(--text); transform: translateY(-1px); }
.pod-pills a.active { background: var(--accent); color: #fff; box-shadow: 0 6px 16px rgba(0, 122, 255, 0.35); }
.pod-toptools { padding: 7px 8px 7px 18px; gap: 10px; }
.pod-search { font-size: 13px; color: var(--text-tertiary); white-space: nowrap; }
.pod-iconbtn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: none; cursor: pointer;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--text-secondary);
}
[data-theme="dark"] .pod-iconbtn { background: rgba(255, 255, 255, 0.1); }
.pod-iconbtn svg { width: 18px; height: 18px; }
.pod-iconbtn:hover { color: var(--accent); }

/* Gauges */
.pod-gauge, .pod-dial { position: relative; width: 140px; height: 140px; margin: 4px auto; }
.pod-gauge svg, .pod-dial svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.pod-gauge-bg { fill: none; stroke: rgba(90, 80, 130, 0.14); stroke-width: 11; }
.pod-gauge-fg { fill: none; stroke-width: 11; stroke-linecap: round; stroke: #6258e8; }
.pod-gauge-fg.alt { stroke: #4cc9f0; }
.pod-gauge-mid {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.pod-gauge-mid b { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; }
.pod-gauge-mid span { font-size: 11px; color: var(--text-tertiary); }
.pod-foot { margin: 0; font-size: 13px; color: var(--text-secondary); text-align: center; }
.pod-on { color: #22a06b; font-weight: 700; }
.pod-tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.pod-tags span {
  font-size: 11px; padding: 5px 10px; border-radius: 999px;
  background: var(--grad-accent-soft); color: var(--accent);
}

/* Center — brand-first inside pod */
.pod-center {
  grid-area: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8px;
}
.pod-logo-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 6px;
  filter: drop-shadow(0 12px 28px rgba(98, 88, 232, 0.35));
  animation: orbFloat 7s ease-in-out infinite;
}
.pod-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}
[data-theme="dark"] .pod-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}
.pod-orb {
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 0 -8px;
  filter: drop-shadow(0 26px 48px rgba(120, 80, 200, 0.32));
  animation: orbFloat 7s ease-in-out infinite;
  animation-delay: -1.5s;
}
.pod-center picture {
  display: block;
  width: 100%;
  max-width: 580px;
  margin: -6px auto 0;
  padding-bottom: 4px;
  overflow: visible;
}
.pod-title {
  margin: 0;
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.pod-title em {
  font-style: normal;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pod-tagline { margin: 14px 0 0; max-width: 44ch; color: #8e8e93; font-size: 20px; line-height: 1.45; font-weight: 400; }
[data-theme="dark"] .pod-tagline { color: rgba(235, 235, 245, 0.62); }
.pod-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 22px; }

/* Right list */
.pod-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 600;
}
.pod-panel-head .pod-tab { font-size: 11px; font-weight: 500; color: var(--text-tertiary); }
.pod-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.pod-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 8px; border-radius: 13px;
  transition: background 0.16s;
}
.pod-list li:hover { background: rgba(255, 255, 255, 0.55); }
.pod-ic {
  width: 30px; height: 30px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-accent-soft);
  color: var(--accent);
  font-weight: 700; font-size: 14px;
}
.pod-name { flex: 1; font-size: 13px; font-weight: 500; white-space: nowrap; }
.pod-spark {
  width: 42px; height: 16px; flex: 0 0 auto; border-radius: 4px;
  background:
    linear-gradient(90deg, transparent, transparent),
    repeating-linear-gradient(90deg, rgba(98, 88, 232, 0.0) 0 3px, rgba(98, 88, 232, 0.28) 3px 4px);
  -webkit-mask: linear-gradient(180deg, transparent 30%, #000 30%);
  opacity: 0.7;
}
.pod-score { font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums; }
.pod-score.up { color: #22a06b; }
.pod-score.dn { color: #d3506a; }

/* Playbar */
.pod-playbar { gap: 12px; }
.pod-play-row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.pod-live { display: inline-flex; align-items: center; gap: 7px; color: var(--text-secondary); }
.pod-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #22a06b; box-shadow: 0 0 0 0 rgba(34, 160, 107, 0.5); animation: podPulse 1.8s infinite; }
@keyframes podPulse { 0% { box-shadow: 0 0 0 0 rgba(34, 160, 107, 0.5); } 70% { box-shadow: 0 0 0 8px rgba(34, 160, 107, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 160, 107, 0); } }
.pod-play-val { font-weight: 700; font-variant-numeric: tabular-nums; }
.pod-controls { display: flex; align-items: center; justify-content: center; gap: 16px; font-size: 15px; color: var(--text-secondary); }
.pod-play-main { font-size: 20px; color: var(--accent); }
.pod-progress { height: 5px; border-radius: 999px; background: rgba(90, 80, 130, 0.16); overflow: hidden; }
.pod-progress span { display: block; width: 62%; height: 100%; border-radius: 999px; background: var(--grad-accent); }

/* Dark theme overlays for pod chrome */
[data-theme="dark"] .pod-panel,
[data-theme="dark"] .pod-pills,
[data-theme="dark"] .pod-toptools { background: rgba(30, 32, 42, 0.5); border-color: rgba(255, 255, 255, 0.1); }
[data-theme="dark"] .pod-eyebrow { background: rgba(30, 32, 42, 0.5); border-color: rgba(255, 255, 255, 0.1); }
[data-theme="dark"] .pod-stage { border-color: rgba(255, 255, 255, 0.1); }

/* Responsive */
@media (max-width: 1040px) {
  .pod-stage {
    grid-template-columns: 1fr;
    grid-template-areas: "top" "center" "left" "right";
    min-height: 0;
  }
  .pod-center { padding: 8px 0 4px; }
  .pod-rail { flex-direction: row; flex-wrap: wrap; }
  .pod-rail .pod-panel { flex: 1 1 240px; }
}
@media (max-width: 560px) {
  .pod-stage { padding: 14px; border-radius: 26px; }
  .pod-topbar { flex-direction: column; gap: 10px; }
  .pod-rail { flex-direction: column; }
}

/* ——— mkt12: mobile nav + glass polish ——— */
.topbar-inner { position: relative; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: var(--glass);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .topbar-inner > .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: var(--topbar-bg);
    backdrop-filter: saturate(180%) blur(20px);
    box-shadow: var(--shadow-soft);
    z-index: 30;
  }
  body.nav-open .topbar-inner > .nav { display: flex; }
  .topbar-inner > .nav a {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
  }
  .nav .nav-login { justify-content: center; }
  .nav .nav-login-text { display: inline; }
  .topbar-inner {
    flex-wrap: nowrap;
    padding: 8px 0;
  }
  .logo { font-size: 15px; min-width: 0; }
  .logo-mark { width: 40px; height: 40px; }
}

.glass-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
[data-theme="dark"] .glass-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

h1, h2, h3, .section-title, .pod-title {
  letter-spacing: -0.02em;
}

/* ============================================================
   mkt15 — super-premium glass (360 POD reference pack)
   ============================================================ */
:root {
  --glass-blur: blur(52px) saturate(190%);
  --glass: rgba(255, 255, 255, 0.16);
  --glass-strong: rgba(255, 255, 255, 0.26);
  --glass-border: rgba(255, 255, 255, 0.42);
  --shadow-float: 0 28px 72px rgba(90, 50, 140, 0.18), 0 6px 18px rgba(70, 50, 120, 0.08);
  --shadow-soft: 0 12px 40px rgba(90, 50, 140, 0.12);
  --site-bg-base: #f3eef8;
}

[data-theme="dark"] {
  --glass: rgba(255, 255, 255, 0.07);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.16);
  --site-bg-base: #0c0e14;
}

/* Light scene — vivid 360 POD pastels (pink / lavender / baby blue) */
.site-bg {
  background:
    radial-gradient(ellipse 70% 58% at 16% 8%, rgba(255, 170, 210, 0.55), transparent 58%),
    radial-gradient(ellipse 62% 52% at 88% 14%, rgba(170, 150, 255, 0.5), transparent 56%),
    radial-gradient(ellipse 68% 58% at 52% 92%, rgba(140, 190, 255, 0.48), transparent 60%),
    radial-gradient(ellipse 48% 42% at 72% 48%, rgba(180, 230, 230, 0.36), transparent 55%),
    radial-gradient(ellipse 42% 38% at 24% 58%, rgba(255, 190, 220, 0.32), transparent 55%),
    linear-gradient(165deg, #f6eef8 0%, #f3f0f8 42%, #eaf0fb 100%);
  animation: none;
  filter: none;
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  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.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: soft-light;
  -webkit-mask-image: none;
  mask-image: none;
}
[data-theme="dark"] .site-bg {
  background:
    radial-gradient(ellipse 70% 55% at 16% 12%, rgba(140, 110, 140, 0.18), transparent 58%),
    radial-gradient(ellipse 60% 50% at 88% 18%, rgba(100, 120, 170, 0.2), transparent 58%),
    radial-gradient(ellipse 65% 55% at 48% 90%, rgba(90, 110, 160, 0.16), transparent 60%),
    radial-gradient(ellipse 40% 35% at 70% 42%, rgba(80, 130, 150, 0.1), transparent 55%),
    #0c0e14;
}
[data-theme="dark"] .site-bg::after { opacity: 0.16; mix-blend-mode: overlay; }

.site-glow {
  width: 560px;
  height: 560px;
  filter: blur(100px);
  opacity: 0.42;
}
.site-glow-a { background: rgba(255, 140, 200, 0.45); }
.site-glow-b { background: rgba(120, 160, 255, 0.4); }
[data-theme="dark"] .site-glow-a { background: rgba(200, 100, 180, 0.32); }
[data-theme="dark"] .site-glow-b { background: rgba(90, 130, 255, 0.3); }

/* Transparent glass system */
.glass,
.glass-card,
.bento .glass-card,
.card.glass-card,
.stat-card.glass-card {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(48px) saturate(140%);
  -webkit-backdrop-filter: blur(48px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 18px 50px rgba(50, 55, 80, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .glass,
[data-theme="dark"] .glass-card,
[data-theme="dark"] .bento .glass-card,
[data-theme="dark"] .card.glass-card,
[data-theme="dark"] .stat-card.glass-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.glass-card:hover,
.bento .glass-card:hover,
.stat-card.glass-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 64px rgba(70, 50, 120, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.55);
}

/* Banner-style frosted glass pills (Crypto Pay promo reference) */
.chip {
  background: rgba(230, 240, 255, 0.55);
  backdrop-filter: blur(22px) saturate(190%);
  -webkit-backdrop-filter: blur(22px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 8px 24px rgba(90, 110, 160, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: rgba(40, 48, 72, 0.78);
}
[data-theme="dark"] .chip {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text-secondary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.pod-chip {
  background: rgba(230, 240, 255, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.pod-chip.is-on {
  background: rgba(98, 88, 232, 0.18) !important;
  border-color: rgba(120, 140, 255, 0.45) !important;
}

.site-bg {
  background:
    radial-gradient(ellipse 58% 48% at 18% 12%, rgba(255, 170, 210, 0.48), transparent 58%),
    radial-gradient(ellipse 50% 46% at 82% 18%, rgba(170, 150, 255, 0.44), transparent 58%),
    radial-gradient(ellipse 55% 50% at 55% 78%, rgba(140, 190, 255, 0.4), transparent 60%),
    radial-gradient(ellipse 40% 36% at 8% 70%, rgba(180, 230, 230, 0.32), transparent 55%),
    #f4f2f8;
}

/* Hero stage — floating glass capsule */
.pod-stage {
  border-radius: 48px;
  padding: 30px;
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  box-shadow:
    0 56px 140px rgba(90, 50, 140, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}
[data-theme="dark"] .pod-stage {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.pod-room {
  background:
    radial-gradient(52% 48% at 50% 34%, rgba(255, 180, 220, 0.62), transparent 64%),
    radial-gradient(48% 44% at 50% 88%, rgba(160, 190, 255, 0.55), transparent 70%),
    radial-gradient(44% 52% at 10% 30%, rgba(200, 170, 255, 0.48), transparent 70%),
    radial-gradient(44% 52% at 90% 30%, rgba(160, 230, 230, 0.42), transparent 70%),
    linear-gradient(180deg, rgba(245, 235, 248, 0.7) 0%, rgba(240, 236, 248, 0.45) 55%, rgba(230, 238, 250, 0.55) 100%);
  filter: none;
  animation: none;
  opacity: 1;
}
.pod-room::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 46%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42));
}
[data-theme="dark"] .pod-room {
  background:
    radial-gradient(52% 48% at 50% 34%, rgba(130, 100, 130, 0.22), transparent 64%),
    radial-gradient(48% 44% at 50% 88%, rgba(80, 100, 150, 0.24), transparent 70%),
    radial-gradient(44% 52% at 10% 30%, rgba(110, 95, 145, 0.18), transparent 70%),
    radial-gradient(44% 52% at 90% 30%, rgba(70, 120, 140, 0.14), transparent 70%),
    linear-gradient(180deg, #12151c 0%, #0c0e14 100%);
}
[data-theme="dark"] .pod-room::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
}

.pod-hero-glow {
  /* merged below in Center bloom */
  display: none;
}

.pod-panel,
.pod-panel--float {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(56px) saturate(180%);
  -webkit-backdrop-filter: blur(56px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 32px;
  box-shadow:
    0 24px 56px rgba(70, 50, 120, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.pod-panel--float:hover {
  transform: translateY(-5px);
  box-shadow:
    0 32px 72px rgba(90, 50, 140, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.65);
}
[data-theme="dark"] .pod-panel,
[data-theme="dark"] .pod-panel--float {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}

.pod-pills,
.pod-toptools {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(40px) saturate(170%);
  -webkit-backdrop-filter: blur(40px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 14px 36px rgba(50, 55, 80, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.pod-rail--left .pod-panel:first-child { margin-top: 0; }
.pod-rail--right .pod-panel:first-child { margin-top: 8px; }
.pod-rail--left .pod-panel:last-child { margin-top: 4px; }
.pod-rail--right .pod-panel:last-child { margin-top: 0; }

/* Center bloom — pink/lavender/cyan like 360 POD reference */
.pod-center { position: relative; }
.pod-hero-glow {
  display: block;
  position: absolute;
  left: 50%;
  top: 40%;
  width: min(720px, 110%);
  height: min(580px, 88%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 170, 210, 0.55) 0%, transparent 55%),
    radial-gradient(circle at 30% 60%, rgba(170, 150, 255, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 55%, rgba(140, 200, 255, 0.38) 0%, transparent 52%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
  animation: bloomBreath 10s ease-in-out infinite;
  opacity: 1;
}
@keyframes bloomBreath {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}
.pod-center > *:not(.pod-hero-glow) { position: relative; z-index: 1; }
.pod-logo-mark {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 14px 32px rgba(98, 88, 232, 0.45));
}
.pod-orb {
  max-width: 620px;
  margin: 0 0 -16px;
  filter: drop-shadow(0 32px 64px rgba(120, 80, 200, 0.42));
}
.pod-center picture {
  max-width: 640px;
}
.pod-title {
  font-size: clamp(48px, 6.4vw, 76px);
  font-weight: 300;
  letter-spacing: -0.038em;
}
.pill-arrow--glass {
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
}

/* Premium gauges */
.pod-gauge, .pod-dial { width: 148px; height: 148px; }
.pod-gauge-bg { stroke: rgba(255, 255, 255, 0.35); stroke-width: 12; }
[data-theme="dark"] .pod-gauge-bg { stroke: rgba(255, 255, 255, 0.12); }
.pod-gauge-fg { stroke-width: 12; filter: drop-shadow(0 0 6px rgba(98, 88, 232, 0.55)); }
.pod-gauge-mid b { font-size: 30px; font-weight: 650; letter-spacing: -0.04em; }

.pod-mode-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.pod-mode {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.18);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  cursor: default;
  backdrop-filter: blur(12px);
}
.pod-mode.is-on {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(0, 122, 255, 0.35);
}

.pod-tags { gap: 8px; }
.pod-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.18);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  cursor: default;
  backdrop-filter: blur(14px);
}
.pod-chip.is-on {
  color: var(--accent);
  background: rgba(0, 122, 255, 0.12);
  border-color: rgba(0, 122, 255, 0.35);
}
.pod-chip svg { flex-shrink: 0; }

/* Signals + playbar */
.pod-list li {
  border-radius: 16px;
  padding: 10px 10px;
}
.pod-list li:hover {
  background: rgba(255, 255, 255, 0.28);
}
.pod-ic {
  width: 34px;
  height: 34px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.pod-wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 28px;
  margin: 2px 0 4px;
}
.pod-wave i {
  display: block;
  width: 3px;
  border-radius: 99px;
  background: var(--grad-accent);
  opacity: 0.75;
  animation: waveBar 1.2s ease-in-out infinite;
}
.pod-wave i:nth-child(1) { height: 30%; animation-delay: 0s; }
.pod-wave i:nth-child(2) { height: 55%; animation-delay: 0.08s; }
.pod-wave i:nth-child(3) { height: 80%; animation-delay: 0.16s; }
.pod-wave i:nth-child(4) { height: 45%; animation-delay: 0.24s; }
.pod-wave i:nth-child(5) { height: 95%; animation-delay: 0.32s; }
.pod-wave i:nth-child(6) { height: 60%; animation-delay: 0.4s; }
.pod-wave i:nth-child(7) { height: 35%; animation-delay: 0.48s; }
.pod-wave i:nth-child(8) { height: 70%; animation-delay: 0.56s; }
.pod-wave i:nth-child(9) { height: 50%; animation-delay: 0.64s; }
.pod-wave i:nth-child(10) { height: 85%; animation-delay: 0.72s; }
.pod-wave i:nth-child(11) { height: 40%; animation-delay: 0.8s; }
.pod-wave i:nth-child(12) { height: 65%; animation-delay: 0.88s; }
@keyframes waveBar {
  0%, 100% { transform: scaleY(0.55); opacity: 0.55; }
  50% { transform: scaleY(1); opacity: 1; }
}

.pod-controls {
  gap: 10px;
}
.pod-ctrl {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--text-secondary);
  cursor: default;
  backdrop-filter: blur(12px);
}
.pod-ctrl--main {
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--accent);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(0, 122, 255, 0.35);
}
.pod-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.28);
}
.pod-progress span {
  box-shadow: 0 0 12px rgba(98, 88, 232, 0.55);
}

.topbar {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: saturate(180%) blur(28px);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
[data-theme="dark"] .topbar {
  background: rgba(8, 10, 16, 0.55);
}

/* Product loop + showcase shots */
.product-loop-frame {
  padding: 10px;
  overflow: hidden;
  border-radius: 22px;
}
.product-loop-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  background: #0b0e15;
}
.showcase-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.showcase-shot {
  margin: 0;
  padding: 10px;
  overflow: hidden;
}
.showcase-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.showcase-shot figcaption {
  margin: 10px 6px 4px;
  font-size: 13px;
  color: var(--text-secondary);
}
@media (max-width: 900px) {
  .showcase-shots { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .site-bg,
  .pod-room,
  .pod-hero-glow,
  .pod-wave i,
  .site-glow { animation: none !important; }
  .product-loop-video { display: none; }
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.faq-item {
  padding: 18px 20px;
}
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.faq-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.faq-item a { color: var(--accent); text-decoration: none; font-weight: 600; }
.faq-item a:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
}


