/* ===================================================================
 * LiveSpark LP — Styles (Premium Edition)
 * Deep navy + aurora + holographic accents + textured glass
 * =================================================================*/

:root {
  /* Backgrounds — slightly warmer near-black with depth */
  --bg-0: #05060F;
  --bg-1: #0A0C1C;
  --bg-2: #11142A;

  /* Glass panels */
  --panel: rgba(22, 26, 50, 0.55);
  --panel-2: rgba(30, 35, 65, 0.6);
  --panel-border: rgba(255, 255, 255, 0.07);
  --panel-border-strong: rgba(150, 180, 255, 0.22);

  /* Text */
  --text: #ECEEF8;
  --text-2: #B8C0D8;
  --text-3: #7C86A6;
  --text-muted: #525C7E;

  /* Brand palette — richer, jewel-toned */
  --brand-blue:   #4D89FF;
  --brand-indigo: #6E63FF;
  --brand-purple: #A855F7;
  --brand-pink:   #EC4899;
  --brand-cyan:   #22D3EE;
  --brand-mint:   #5EEAD4;
  --brand-gold:   #FFC56B;

  /* Signature gradients */
  --grad-cta:    linear-gradient(135deg, #4D89FF 0%, #7E5BFF 45%, #B14FFF 100%);
  --grad-cta-hi: linear-gradient(135deg, #6BA0FF 0%, #9978FF 45%, #C766FF 100%);
  --grad-aurora: linear-gradient(120deg, #4D89FF 0%, #A855F7 50%, #22D3EE 100%);
  --grad-holo:   linear-gradient(120deg, #5EEAD4 0%, #6BA0FF 25%, #B14FFF 55%, #EC4899 80%, #FFC56B 100%);
  --grad-gold:   linear-gradient(135deg, #FFD789 0%, #FFB347 50%, #F472B6 100%);

  /* Radii */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  /* Shadows */
  --shadow-card: 0 10px 40px -16px rgba(0, 0, 0, 0.6),
                 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --shadow-glow-blue:   0 18px 60px -20px rgba(77, 137, 255, 0.55);
  --shadow-glow-purple: 0 18px 60px -20px rgba(168, 85, 247, 0.5);
  --shadow-glow-gold:   0 18px 60px -20px rgba(255, 197, 107, 0.4);

  --container: 1160px;
}

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

html, body {
  margin: 0; padding: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Multi-layer aurora background with subtle motion */
body {
  position: relative;
  min-height: 100vh;
  background: var(--bg-0);
  overflow-x: hidden;
}

/* Animated background layers (mounted by JS into #bg-stage) */
.bg-stage {
  position: fixed !important;
  inset: 0 !important;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
.bg-stage > * {
  position: absolute;
}
.bg-stage canvas.bg-shooters {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bg-aurora {
  position: absolute;
  width: 130vw; height: 130vh;
  left: -15vw; top: -15vh;
  background:
    radial-gradient(ellipse 40% 30% at 30% 30%, rgba(168, 85, 247, 0.42), transparent 60%),
    radial-gradient(ellipse 35% 25% at 70% 50%, rgba(77, 137, 255, 0.32), transparent 60%),
    radial-gradient(ellipse 30% 25% at 50% 80%, rgba(34, 211, 238, 0.22), transparent 60%),
    radial-gradient(ellipse 30% 25% at 85% 20%, rgba(236, 72, 153, 0.18), transparent 60%);
  filter: blur(60px);
  animation: auroraSpin 38s linear infinite, auroraBreathe 14s ease-in-out infinite alternate;
  transform-origin: 50% 50%;
}
@keyframes auroraSpin   { from { transform: rotate(0deg) scale(1); } to { transform: rotate(360deg) scale(1); } }
@keyframes auroraBreathe { 0% { opacity: 0.85; } 100% { opacity: 1; } }

.bg-aurora-2 {
  position: absolute;
  width: 110vw; height: 110vh;
  left: -5vw; top: -5vh;
  background:
    radial-gradient(ellipse 50% 35% at 80% 30%, rgba(110, 99, 255, 0.30), transparent 65%),
    radial-gradient(ellipse 45% 30% at 15% 70%, rgba(94, 234, 212, 0.18), transparent 65%);
  filter: blur(80px);
  mix-blend-mode: screen;
  animation: auroraSpin2 52s linear infinite reverse;
}
@keyframes auroraSpin2 { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(170, 190, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170, 190, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 30%, transparent 80%);
  opacity: 0.6;
}

.bg-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.85), transparent 50%),
    radial-gradient(1px 1px at 80% 70%, rgba(255,255,255,0.7), transparent 50%),
    radial-gradient(1.5px 1.5px at 60% 20%, rgba(180,200,255,0.7), transparent 50%),
    radial-gradient(1px 1px at 35% 85%, rgba(220,200,255,0.6), transparent 50%),
    radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,0.55), transparent 50%),
    radial-gradient(1px 1px at 10% 60%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(1.5px 1.5px at 45% 12%, rgba(190,210,255,0.7), transparent 50%),
    radial-gradient(1px 1px at 72% 92%, rgba(255,255,255,0.5), transparent 50%);
  background-size: 800px 800px, 600px 600px, 700px 700px, 500px 500px, 900px 900px, 650px 650px, 750px 750px, 580px 580px;
  animation: stardrift 90s linear infinite, twinkle 4s ease-in-out infinite alternate;
}
@keyframes stardrift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-220px, 110px, 0); }
}
@keyframes twinkle {
  0%   { opacity: 0.55; }
  100% { opacity: 1; }
}

/* Cursor follow glow (driven by JS, falls back gracefully) */
.bg-cursor {
  position: absolute;
  width: 600px; height: 600px;
  left: -300px; top: -300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.16), transparent 65%);
  pointer-events: none;
  transition: transform 0.3s ease-out;
  will-change: transform;
  filter: blur(20px);
}

/* Shooting stars canvas */
.bg-shooters {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#root { position: relative; z-index: 1; }

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

.num { font-family: "Inter", "SF Pro Display", system-ui, sans-serif; font-feature-settings: "tnum"; letter-spacing: -0.02em; }

/* ============================================== Container ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================== Header ======== */
.header {
  position: sticky; top: 0;
  z-index: 50;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  gap: 18px;
}
.brand {
  display: inline-flex; align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.005em;
  min-width: 0;
}
.brand-mark { width: 30px; height: 30px; filter: drop-shadow(0 4px 14px rgba(110, 99, 255, 0.5)); }
.brand-mark-img {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.header .brand-mark-img {
  /* keep header logo crisp on pure black: no blend, no glow */
  mix-blend-mode: normal;
  filter: none;
}
.footer .brand-mark-img {
  mix-blend-mode: normal;
  filter: none;
}

.nav { display: flex; align-items: center; gap: 30px; min-width: 0; }
.nav-link {
  font-size: 13.5px;
  color: var(--text-2);
  transition: color .2s;
  position: relative;
}
.nav-link:hover { color: var(--text); }
.nav-link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--grad-cta);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .2s;
}
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}
.lang-toggle-btn {
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-2);
  background: transparent;
  border: 0;
  padding: 4px 8px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .15s, background .15s, transform .15s;
}
.lang-toggle-btn:hover { color: var(--text); }
.lang-toggle-btn.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(110, 99, 255, 0.45), rgba(168, 85, 247, 0.45));
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.35) inset, 0 4px 14px -4px rgba(168, 85, 247, 0.45);
}
.lang-toggle-divider {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.18);
  user-select: none;
}

/* Pricing footnote */
.pricing-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
}

@media (max-width: 880px) {
  .nav-link { display: none; }
  .nav-cta { display: inline-flex !important; }
  .lang-toggle { margin-left: auto; }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 40px);
    padding-left: 0;
    padding-right: 0;
  }
  .header-inner { height: 64px; gap: 10px; }
  .brand { gap: 8px; font-size: 16px; }
  .header .brand-mark-img { width: 32px !important; height: 32px !important; }
  .nav { gap: 8px; margin-left: auto; }
  .nav-cta { display: none !important; }
  .lang-toggle {
    margin-left: 0;
    padding: 3px 5px;
    flex-shrink: 0;
  }
  .lang-toggle-btn {
    padding: 4px 7px;
    font-size: 11px;
  }
}

/* ============================================== Buttons ======= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.015em;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .25s ease, background .25s, border-color .25s, filter .25s;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow:
    0 10px 28px -10px rgba(110, 99, 255, 0.65),
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset;
}
.btn-primary::before {
  /* glossy sheen */
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 50%);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--grad-cta-hi);
  box-shadow:
    0 14px 38px -10px rgba(168, 85, 247, 0.7),
    0 1px 0 rgba(255,255,255,0.28) inset;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(170, 190, 255, 0.4);
}

.btn-sm { height: 38px; padding: 0 16px; font-size: 13px; border-radius: 10px; }
.btn-lg { height: 56px; padding: 0 30px; font-size: 16px; border-radius: 14px; }

@media (max-width: 480px) {
  .btn-lg {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    font-size: 15px;
  }
}

/* ============================================== Sections ====== */
.section { padding: 84px 0; position: relative; scroll-margin-top: 96px; }
.section-tight { padding: 48px 0; scroll-margin-top: 96px; }

/* Section eyebrow badge */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C7D2FF;
  background: linear-gradient(135deg, rgba(77,137,255,0.12), rgba(168,85,247,0.12));
  border: 1px solid rgba(170, 190, 255, 0.22);
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad-aurora);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}

.section-title {
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 800;
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.section-title .holo {
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  text-align: center;
  color: var(--text-2);
  margin: 0 auto 44px;
  max-width: 640px;
}
.section-head { text-align: center; margin-bottom: 36px; }
.section-head .eyebrow { display: inline-flex; }

/* ============================================== Hero ========== */
.hero { padding: 56px 0 40px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-grid > * { min-width: 0; }
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-title {
  font-size: clamp(36px, 6.2vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 18px 0 22px;
  text-wrap: balance;
}
.hero-title .accent {
  background: var(--grad-holo);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: holoShift 8s ease-in-out infinite;
}
@keyframes holoShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-sub {
  color: var(--text-2);
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.9;
  margin: 0 0 30px;
  white-space: pre-line;
  max-width: 480px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 26px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  font-size: 12.5px;
  color: var(--text-3);
}
.hero-badge { display: inline-flex; align-items: center; gap: 6px; }
.hero-badge svg {
  color: var(--brand-cyan);
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.6));
}

@media (max-width: 560px) {
  .hero { padding: 42px 0 32px; }
  .hero-grid { gap: 34px; }
  .hero-title {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1.13;
  }
  .hero-sub { font-size: 14.5px; margin-bottom: 24px; }
  .hero-ctas { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 12px;
  }
  .hero-badge { min-width: 0; }
  .hero-demo { border-radius: 22px; }
  .hero-demo-inner { padding: 10px; border-radius: 21px; }
  .stream-mock-img { border-radius: 16px; }
}

/* Hero demo frame — premium holographic ring */
.hero-demo {
  position: relative;
  width: 100%;
  min-width: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(110,165,255,0.6) 0%,
    rgba(168,85,247,0.45) 35%,
    rgba(34,211,238,0.5) 70%,
    rgba(236,72,153,0.4) 100%);
  box-shadow:
    0 40px 80px -30px rgba(110, 99, 255, 0.5),
    0 20px 50px -20px rgba(34, 211, 238, 0.25);
}
.hero-demo-inner {
  position: relative;
  border-radius: calc(var(--radius-xl) - 1px);
  padding: 16px;
  background: linear-gradient(160deg, #0d1126 0%, #0a0c1c 100%);
  overflow: hidden;
}
.hero-demo-inner::before {
  /* corner glow */
  content: "";
  position: absolute;
  width: 50%; height: 60%;
  top: -10%; right: -10%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.45), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-demo-inner::after {
  content: "";
  position: absolute;
  width: 45%; height: 50%;
  bottom: -10%; left: -10%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.4), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

/* Hero stream mock image */
.stream-mock-img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 6px);
  box-shadow:
    0 30px 80px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(170, 190, 255, 0.08) inset;
}

/* ============================================== Stats ========= */
/* Stats — hero-stat + satellite layout */
.stats {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .stats { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 38px 0; }
  .stats { width: 100%; }
  .stat-card { min-width: 0; width: 100%; padding: 22px 20px; border-radius: 14px; }
  .stat-hero { padding: 24px 22px; }
  .stat-hero-row,
  .stat-sat-top {
    gap: 8px;
    min-width: 0;
  }
  .stat-hero-label,
  .stat-sat-label {
    min-width: 0;
  }
  .delta-pill,
  .stat-sat-meta {
    font-size: 10px;
    padding: 4px 8px;
  }
  .stat-mega {
    font-size: clamp(58px, 18vw, 78px);
  }
  .stat-sat-value {
    font-size: 42px;
  }
  .stat-sat-mid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .stat-sat-extra {
    text-align: left;
  }
}

.stat-card {
  position: relative;
  display: flex; align-items: center; gap: 18px;
  padding: 26px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.stat-card::before {
  content: "";
  position: absolute; left: 12%; right: 12%; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(170, 190, 255, 0.45), transparent);
}
.stat-card:hover { transform: translateY(-3px); border-color: var(--panel-border-strong); }

/* Hero stat card (left, takes 1.6fr) */
.stat-hero {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 32px;
  background:
    radial-gradient(ellipse 70% 100% at 0% 100%, rgba(168, 85, 247, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(34, 211, 238, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0)),
    var(--panel);
  border-color: rgba(170, 190, 255, 0.22);
}
.stat-hero-row {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22e07a;
  box-shadow: 0 0 0 4px rgba(34, 224, 122, 0.18), 0 0 12px rgba(34, 224, 122, 0.7);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 224, 122, 0.18), 0 0 12px rgba(34, 224, 122, 0.7); }
  50%      { box-shadow: 0 0 0 7px rgba(34, 224, 122, 0.05), 0 0 18px rgba(34, 224, 122, 0.95); }
}
.live-tag {
  font-family: "Inter", sans-serif;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.18em;
  color: #6cf0a4;
}
.stat-hero-label {
  font-size: 12.5px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.stat-mega {
  font-size: clamp(60px, 9vw, 104px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  background: var(--grad-holo);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: holoShift 8s ease-in-out infinite;
  display: flex; align-items: baseline; gap: 6px;
  font-family: "Inter", sans-serif;
}
.stat-mega .plus {
  font-size: 0.55em;
  -webkit-text-stroke: 1.5px rgba(170, 190, 255, 0.5);
  -webkit-text-fill-color: transparent;
  background: none;
  color: transparent;
  font-weight: 800;
}
.stat-mega .unit {
  font-size: 0.22em;
  font-weight: 700;
  color: var(--text-2);
  -webkit-text-fill-color: var(--text-2);
  background: none;
  letter-spacing: 0.04em;
  margin-left: 4px;
}

/* Sparkline below mega */
.sparkline {
  width: 100%;
  height: 36px;
  margin-top: 4px;
}
.sparkline path.fill { fill: url(#sparkFill); }
.sparkline path.line {
  fill: none;
  stroke: url(#sparkStroke);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sparkline circle.head {
  fill: #fff;
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.9));
}

.delta-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 224, 122, 0.12);
  border: 1px solid rgba(34, 224, 122, 0.28);
  color: #6cf0a4;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Satellite stat (right column, stacked) */
.stat-sat {
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 22px 24px;
  justify-content: space-between;
}
.stat-sat-top {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
}
.stat-sat-label { font-size: 11.5px; color: var(--text-3); margin: 0; letter-spacing: 0.04em; }
.stat-sat-meta {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(34, 224, 122, 0.10);
  border: 1px solid rgba(34, 224, 122, 0.22);
  color: #6cf0a4;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.stat-sat-mid {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px;
}
.stat-sat-value {
  font-family: "Inter", sans-serif;
  font-size: 48px; font-weight: 900; line-height: 1.05;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #ffffff 0%, #b9c4ec 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex; align-items: baseline; gap: 4px;
}
.stat-sat-value .unit {
  font-size: 14px; font-weight: 600; color: var(--text-2);
  -webkit-text-fill-color: var(--text-2);
  background: none;
  margin-left: 2px;
}
.stat-sat-extra {
  font-size: 11px;
  color: var(--text-3);
  text-align: right;
  line-height: 1.5;
}
.stat-sat-extra strong {
  color: #c5d0ff;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
}

/* Progress bar */
.stat-progress {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}
.stat-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4D89FF, #A855F7, #22D3EE);
  background-size: 200% 100%;
  animation: progressShift 4s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.55);
  transition: width 1.6s cubic-bezier(.2,.7,.2,1);
}
@keyframes progressShift {
  0%, 100% { background-position: 0% 0; }
  50%      { background-position: 100% 0; }
}
.stat-progress-foot {
  display: flex; justify-content: space-between;
  font-size: 10.5px;
  color: var(--text-muted);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* Custom thumb dots row */
.stat-thumbs {
  display: flex; gap: 6px;
  align-items: center;
}
.stat-thumb {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(170, 190, 255, 0.18);
  background: linear-gradient(135deg, var(--c1, rgba(168,85,247,0.4)), var(--c2, rgba(77,137,255,0.4)));
  display: grid; place-items: center;
  color: rgba(255,255,255,0.85);
  box-shadow: 0 4px 12px -6px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.15);
}
.stat-thumb.empty {
  background: rgba(255, 255, 255, 0.04);
  border-style: dashed;
  border-color: rgba(170, 190, 255, 0.18);
  color: rgba(170, 190, 255, 0.4);
}
.stat-thumb svg { opacity: 0.95; }

.stat-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(77,137,255,.22), rgba(168,85,247,.22));
  border: 1px solid rgba(170, 190, 255, 0.18);
  color: #CED9FF;
  flex-shrink: 0;
  box-shadow: 0 6px 20px -8px rgba(110, 99, 255, 0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}
.stat-label { font-size: 12px; color: var(--text-3); margin: 0 0 2px; letter-spacing: 0.02em; }
.stat-value {
  font-size: 30px; font-weight: 800; line-height: 1.05;
  background: linear-gradient(180deg, #ffffff 0%, #b9c4ec 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-value .unit { font-size: 13px; font-weight: 600; color: var(--text-2); margin-left: 5px; -webkit-text-fill-color: var(--text-2); }
.stats-note {
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
  margin: 14px 4px 0;
}

/* ============================================== Features ====== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 820px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex; align-items: flex-start; gap: 20px;
  transition: transform .3s, border-color .3s, background .3s;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 0% 0%, rgba(110, 99, 255, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--panel-border-strong);
  background: rgba(28, 35, 65, 0.7);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
  border: 1px solid rgba(170, 190, 255, 0.2);
  background: linear-gradient(135deg, rgba(77,137,255,.25), rgba(168,85,247,.22));
  color: #DCE5FF;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 8px 24px -10px rgba(110, 99, 255, 0.5);
}
.feature-icon.tone-bolt   { background: linear-gradient(135deg, rgba(255, 197, 107, 0.3), rgba(236, 72, 153, 0.25)); color: #FFE0A0; box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 24px -10px rgba(255, 197, 107, 0.5); }
.feature-icon.tone-spark  { background: linear-gradient(135deg, rgba(168, 85, 247, 0.32), rgba(77, 137, 255, 0.28)); color: #E0CCFF; }
.feature-icon.tone-yen    { background: linear-gradient(135deg, rgba(94, 234, 212, 0.28), rgba(34, 211, 238, 0.28)); color: #C2F5E8; box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 8px 24px -10px rgba(34, 211, 238, 0.5); }
.feature-title { font-size: 18px; font-weight: 700; margin: 6px 0 6px; }
.feature-body { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.75; }

/* ============================================== SEO Intro ====== */
.seo-intro {
  padding-top: 28px;
}
.seo-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 30px;
  align-items: stretch;
}
.seo-intro-copy {
  padding: 34px 0;
}
.seo-intro-copy .section-title {
  text-align: left;
  font-size: clamp(30px, 4vw, 52px);
  max-width: 780px;
  margin-bottom: 18px;
}
.seo-intro-copy p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 2;
  max-width: 660px;
  margin: 0 0 14px;
}
.seo-intro-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-border-strong);
  background:
    linear-gradient(145deg, rgba(22, 26, 50, 0.78), rgba(13, 16, 32, 0.7)),
    radial-gradient(circle at 85% 10%, rgba(34, 211, 238, 0.18), transparent 38%),
    radial-gradient(circle at 10% 90%, rgba(168, 85, 247, 0.18), transparent 40%);
  box-shadow: var(--shadow-card), var(--shadow-glow-blue);
  padding: 26px;
}
.seo-intro-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-70%);
  pointer-events: none;
}
.seo-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.seo-point-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.seo-point {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  min-height: 150px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 12, 26, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.seo-point-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #DCC8FF;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.32), rgba(34, 211, 238, 0.22));
}
.seo-point h3 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.45;
}
.seo-point p {
  margin: 0;
  color: var(--text-2);
  font-size: 12.5px;
  line-height: 1.75;
}
@media (max-width: 900px) {
  .seo-intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .seo-intro-copy {
    padding: 12px 0 0;
  }
}
@media (max-width: 620px) {
  .seo-intro {
    padding-top: 10px;
  }
  .seo-intro-copy .section-title {
    font-size: 28px;
  }
  .seo-intro-copy p {
    font-size: 13.5px;
    line-height: 1.9;
  }
  .seo-intro-panel {
    padding: 18px;
    border-radius: 18px;
  }
  .seo-point-grid {
    grid-template-columns: 1fr;
  }
  .seo-point {
    min-height: 0;
    padding: 16px;
  }
}

/* ============================================== Section headline ==== */
.section-headline {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}
@media (max-width: 720px) { .section-headline { flex-direction: column; align-items: flex-start; } }
.section-headline-left h2 {
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 800;
  margin: 12px 0 6px;
  letter-spacing: -0.01em;
}
.section-headline-left p { color: var(--text-2); margin: 0; font-size: 14.5px; }
.section-headline-right { color: var(--text-muted); font-size: 12px; max-width: 280px; text-align: right; line-height: 1.7; }
@media (max-width: 720px) { .section-headline-right { text-align: left; } }

/* ============================================== Popular Overlays === */
.overlay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 980px) { .overlay-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .overlay-grid { grid-template-columns: 1fr; } }

@media (max-width: 560px) {
  .section-headline {
    gap: 14px;
    margin-bottom: 24px;
  }
  .section-headline-left h2 {
    font-size: 28px;
  }
  .overlay-card {
    grid-template-columns: minmax(120px, 42%) 1fr;
    gap: 16px;
    padding: 16px;
  }
  .overlay-card-body { padding: 4px 0; }
  .overlay-card-title { font-size: 16px; }
  .overlay-card-body p { font-size: 12.5px; line-height: 1.7; }
}

@media (max-width: 380px) {
  .overlay-card {
    grid-template-columns: 1fr;
  }
  .overlay-card .vp-wrap-outer {
    max-width: 220px;
    margin: 0 auto;
  }
}

.overlay-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex; gap: 18px; align-items: stretch;
  transition: transform .3s, border-color .3s;
  overflow: hidden;
}
.overlay-card::before {
  content: "";
  position: absolute;
  width: 200%; height: 200%;
  top: -50%; left: -100%;
  background: radial-gradient(ellipse 30% 40% at 50% 50%, var(--card-glow, rgba(110, 99, 255, 0.18)), transparent 70%);
  opacity: 0;
  transition: opacity .35s, transform .8s;
  pointer-events: none;
}
.overlay-card:hover {
  transform: translateY(-5px);
  border-color: var(--panel-border-strong);
}
.overlay-card:hover::before { opacity: 1; transform: translateX(50%); }

.overlay-card .vp-wrap-outer {
  width: 42%;
  flex-shrink: 0;
  position: relative;
}
.overlay-card-body {
  display: flex; flex-direction: column; justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.overlay-card-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--card-icon-bg, linear-gradient(135deg, rgba(77,137,255,.28), rgba(168,85,247,.24)));
  color: var(--card-icon-fg, #DCE5FF);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.overlay-card-title { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.overlay-card-body p { font-size: 13.5px; color: var(--text-2); margin: 0; line-height: 1.75; }

/* Per-card themed accents */
.overlay-card[data-tone="piggy"]    { --card-glow: rgba(255, 159, 200, 0.22); --card-icon-bg: linear-gradient(135deg, rgba(236, 72, 153, 0.28), rgba(255, 197, 107, 0.22)); --card-icon-fg: #FFC4DD; }
.overlay-card[data-tone="body"]     { --card-glow: rgba(168, 85, 247, 0.25); --card-icon-bg: linear-gradient(135deg, rgba(168, 85, 247, 0.32), rgba(77, 137, 255, 0.26)); --card-icon-fg: #DCC8FF; }
.overlay-card[data-tone="truck"]    { --card-glow: rgba(94, 234, 212, 0.22); --card-icon-bg: linear-gradient(135deg, rgba(34, 211, 238, 0.28), rgba(94, 234, 212, 0.28)); --card-icon-fg: #B6F2E5; }
.overlay-card[data-tone="toybox"]   { --card-glow: rgba(255, 197, 107, 0.22); --card-icon-bg: linear-gradient(135deg, rgba(255, 197, 107, 0.3), rgba(236, 72, 153, 0.22)); --card-icon-fg: #FFE0A0; }
.overlay-card[data-tone="counter"]  { --card-glow: rgba(77, 137, 255, 0.22); --card-icon-bg: linear-gradient(135deg, rgba(77, 137, 255, 0.32), rgba(110, 99, 255, 0.28)); --card-icon-fg: #BFD2FF; }
.overlay-card[data-tone="calendar"] { --card-glow: rgba(94, 234, 212, 0.22); --card-icon-bg: linear-gradient(135deg, rgba(94, 234, 212, 0.28), rgba(168, 85, 247, 0.22)); --card-icon-fg: #C5F1E2; }

.popular-foot {
  text-align: center;
  margin-top: 32px;
  color: var(--text-3);
  font-size: 13px;
}

/* ============================================== VideoPreview === */
.vp-wrap {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0c1024;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.6);
}
.vp-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.vp-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(168, 85, 247, 0.4), transparent 60%),
    radial-gradient(circle at 50% 90%, rgba(77, 137, 255, 0.32), transparent 70%),
    linear-gradient(160deg, #1a1f3d 0%, #0a0c1c 100%);
}
.vp-ph-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 14px 14px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
}
.vp-ph-glow {
  position: absolute;
  width: 70%; height: 70%;
  top: 15%; left: 15%;
  background: radial-gradient(circle, rgba(140,180,255,0.45), transparent 65%);
  filter: blur(28px);
  animation: phPulse 3.5s ease-in-out infinite;
}
@keyframes phPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.08); }
}
.vp-ph-icon {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(110, 99, 255, 0.5);
}
.vp-label {
  position: absolute;
  left: 8px; bottom: 8px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.6);
  color: #fff;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  line-height: 1;
}
.vp-label-sample {
  font-size: 8.5px;
  background: var(--grad-cta);
  padding: 2px 5px;
  border-radius: 4px;
  margin-left: 2px;
}

/* ============================================== Custom section ===== */
.custom-panel {
  position: relative;
  background:
    radial-gradient(ellipse 40% 100% at 100% 0%, rgba(168, 85, 247, 0.3), transparent 60%),
    radial-gradient(ellipse 40% 100% at 0% 100%, rgba(34, 211, 238, 0.18), transparent 60%),
    linear-gradient(135deg, rgba(35, 42, 80, 0.7) 0%, rgba(28, 22, 60, 0.7) 100%);
  border: 1px solid rgba(170, 190, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-glow-purple);
}
.custom-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(170, 190, 255, 0.4), transparent 30%, transparent 70%, rgba(236, 72, 153, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
@media (max-width: 820px) {
  .custom-panel { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
  .custom-panel .vp-wrap-outer { max-width: 240px; margin: 0 auto; }
}

@media (max-width: 560px) {
  .custom-panel {
    padding: 24px 20px;
    border-radius: 18px;
  }
  .custom-title { font-size: 25px; }
  .custom-body { font-size: 13.5px; }
}
.custom-eyebrow { margin-bottom: 12px; }
.custom-title {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, #fff 0%, #c8d3ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.custom-sub { color: var(--text-2); margin: 0 0 16px; font-size: 14.5px; }
.custom-body { color: var(--text-2); margin: 0 0 24px; font-size: 14px; line-height: 1.9; white-space: pre-line; }

/* ============================================== HowTo ========= */
.howto-row {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  gap: 12px;
  align-items: stretch;
  position: relative;
}
@media (max-width: 820px) {
  .howto-row { grid-template-columns: 1fr; gap: 8px; }
  .howto-arrow { transform: rotate(90deg); justify-self: center; padding: 4px 0; }
}
.howto-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex; align-items: center; gap: 14px;
  position: relative;
  overflow: hidden;
}
.howto-card::before {
  content: "";
  position: absolute; left: 18px; right: 18px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(170, 190, 255, 0.4), transparent);
}
.howto-num {
  font-family: "Inter", sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em;
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 2px;
}
.howto-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(77,137,255,.24), rgba(34,211,238,.22));
  color: #BFE0FF;
  border: 1px solid rgba(170, 200, 255, 0.18);
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.howto-title { font-size: 16px; font-weight: 700; margin: 0; }
.howto-body { font-size: 13px; color: var(--text-3); margin: 2px 0 0; }
.howto-arrow {
  display: grid; place-items: center;
  color: var(--text-muted);
}
.howto-note {
  text-align: center;
  margin: 28px 0 0;
  color: var(--text-3);
  font-size: 13px;
}

/* ============================================== Pricing ======= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .3s, border-color .3s;
  overflow: hidden;
}
.plan::before {
  content: "";
  position: absolute; left: 12%; right: 12%; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(170, 190, 255, 0.4), transparent);
}
.plan:hover { transform: translateY(-3px); border-color: var(--panel-border-strong); }

.plan-featured {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168, 85, 247, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(77,137,255,0.14), rgba(168,92,246,0.10) 40%, rgba(22, 26, 50, 0.7));
  border: 1px solid rgba(170, 190, 255, 0.4);
  box-shadow: var(--shadow-glow-purple), 0 0 0 1px rgba(170, 190, 255, 0.12) inset;
  transform: translateY(-10px);
}
.plan-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-aurora);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}
@media (max-width: 880px) { .plan-featured { transform: none; } }

.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--grad-cta);
  color: #fff;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(168, 85, 247, 0.7), inset 0 1px 0 rgba(255,255,255,0.3);
  z-index: 2;
  text-transform: none;
}
.plan-name {
  font-family: "Inter", sans-serif;
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.22em;
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0 0 6px;
}
.plan-featured .plan-name { background: var(--grad-holo); -webkit-background-clip: text; background-clip: text; }
.plan-sub { font-size: 12.5px; color: var(--text-3); margin: 0 0 24px; }
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  font-family: "Inter", sans-serif;
  margin-bottom: 24px;
}
.plan-price-main {
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #ffffff, #b9c4ec);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.plan-price-period { color: var(--text-3); font-size: 13px; }
.plan-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  border-top: 1px solid var(--panel-border);
}
.plan-feature {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--panel-border);
  font-size: 13.5px;
}
.plan-feature.no { color: var(--text-muted); }
.plan-feature .label { display: flex; align-items: center; gap: 8px; }
.feature-mark {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.feature-mark.ok {
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.25), rgba(34, 211, 238, 0.25));
  color: #5EEAD4;
  box-shadow: 0 0 12px rgba(94, 234, 212, 0.3);
}
.feature-mark.no {
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
}
.plan-cta { margin-top: auto; }

/* ============================================== FAQ =========== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.faq-item[open] {
  border-color: var(--panel-border-strong);
  background: rgba(28, 35, 65, 0.65);
}
.faq-summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-q { display: flex; align-items: center; gap: 14px; }
.faq-q::before {
  content: "Q";
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 13px;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(77,137,255,0.22), rgba(168,85,247,0.2));
  border: 1px solid rgba(170, 190, 255, 0.25);
  color: #BFD2FF;
  display: grid; place-items: center;
}
.faq-chevron { transition: transform .25s; color: var(--text-3); flex-shrink: 0; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--brand-cyan); }
.faq-body {
  padding: 0 24px 22px 64px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.85;
}

/* ============================================== Final CTA ===== */
.final-cta {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(34, 211, 238, 0.28), transparent 70%),
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(168, 85, 247, 0.32), transparent 70%),
    linear-gradient(135deg, #1a1f3d 0%, #1A1B36 100%);
  border: 1px solid rgba(170, 190, 255, 0.22);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(110, 99, 255, 0.55);
}
.final-cta::before {
  /* twinkling stars */
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255,255,255,0.6) 1.2px, transparent 1.6px),
    radial-gradient(circle at 88% 78%, rgba(255,255,255,0.5) 1.2px, transparent 1.6px),
    radial-gradient(circle at 32% 88%, rgba(255,255,255,0.55) 1px, transparent 1.4px),
    radial-gradient(circle at 78% 28%, rgba(255,255,255,0.5) 1px, transparent 1.4px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4) 1px, transparent 1.4px),
    radial-gradient(circle at 18% 70%, rgba(180,200,255,0.45) 1px, transparent 1.4px),
    radial-gradient(circle at 65% 12%, rgba(220,200,255,0.5) 1px, transparent 1.4px);
  background-size: 240px 220px, 200px 240px, 260px 200px, 220px 260px, 280px 240px, 240px 200px, 220px 240px;
  pointer-events: none;
  opacity: 0.7;
  animation: starblink 6s ease-in-out infinite alternate;
}
@keyframes starblink {
  0%   { opacity: 0.55; }
  100% { opacity: 0.85; }
}
.final-cta::after {
  /* outer holographic ring */
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.5), transparent 35%, transparent 65%, rgba(168, 85, 247, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
@media (max-width: 780px) {
  .final-cta { grid-template-columns: 1fr; padding: 36px 28px; text-align: center; }
}
.final-cta-title { font-size: clamp(22px, 3vw, 28px); font-weight: 800; margin: 0 0 10px; letter-spacing: -0.005em; }
.final-cta-sub { color: var(--text-2); margin: 0; font-size: 14.5px; }
.final-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 780px) { .final-cta-btns { justify-content: center; } }

@media (max-width: 560px) {
  .final-cta {
    padding: 32px 20px;
    border-radius: 20px;
  }
  .final-cta-btns {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

/* ============================================== Footer ======== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #000;
  padding: 36px 0 44px;
  margin-top: 40px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-links {
  display: flex; gap: 26px; flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-3);
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-muted); font-family: "Inter", sans-serif; }

@media (max-width: 640px) {
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .footer-links {
    gap: 14px 20px;
    line-height: 1.6;
  }
}

/* ============================================== Legal ======== */
.legal {
  padding-top: 60px;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.legal-card {
  background: rgba(22, 26, 50, 0.42);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.legal-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
}
.legal-body {
  margin: 0;
  color: var(--text-3);
  font-size: 12.5px;
  line-height: 1.8;
}

@media (max-width: 820px) {
  .legal-grid { grid-template-columns: 1fr; }
}

/* ============================================== Stream Demo (Hero) === */
.stream-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0a0d18;
  border-radius: 16px;
  overflow: hidden;
}
/* Streamer photo area — richer, subtler */
.streamer-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, rgba(255, 220, 200, 0.38), transparent 45%),
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(110, 70, 200, 0.55), transparent 65%),
    radial-gradient(ellipse 100% 100% at 30% 20%, rgba(236, 72, 153, 0.25), transparent 55%),
    linear-gradient(180deg, #2d1f55 0%, #161333 100%);
}
.streamer-photo::before {
  /* soft light rays */
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 60px,
      rgba(255, 255, 255, 0.025) 60px,
      rgba(255, 255, 255, 0.025) 62px
    );
  mix-blend-mode: overlay;
}
.streamer-photo::after {
  /* glass reflection sweep */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.06) 50%, transparent 70%);
  animation: sweep 7s ease-in-out infinite;
}
@keyframes sweep {
  0%, 100% { transform: translateX(-30%); opacity: 0; }
  50%      { transform: translateX(30%); opacity: 1; }
}

.streamer-silhouette {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56%;
  height: 88%;
  pointer-events: none;
}

/* Top-left: live + viewers + streamer card */
.stream-overlays { position: absolute; inset: 0; padding: 12px; }

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  background: linear-gradient(135deg, #ff3b5c, #ff6385);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 5px;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px -2px rgba(255, 59, 92, 0.6);
}
.live-pill::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: livedot 1.6s ease-in-out infinite;
}
@keyframes livedot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.viewer-pill {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10.5px; font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 4px 9px;
  border-radius: 5px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
}

.streamer-card {
  margin-top: 8px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 7px 10px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.streamer-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb6c1 0%, #c084fc 100%);
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.comments {
  position: absolute;
  left: 12px;
  bottom: 50px;
  display: flex; flex-direction: column; gap: 5px;
  max-width: 38%;
}
.comment {
  font-size: 10px;
  color: #f0f3ff;
  background: rgba(0,0,0,0.55);
  padding: 5px 9px;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 5px;
  line-height: 1.3;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.08);
  width: fit-content;
  animation: cmtFloat 0.6s ease-out backwards;
}
.comment:nth-child(1) { animation-delay: 0.1s; }
.comment:nth-child(2) { animation-delay: 0.3s; }
.comment:nth-child(3) { animation-delay: 0.5s; }
.comment:nth-child(4) { animation-delay: 0.7s; }
@keyframes cmtFloat {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.comment .name { color: #6FA8FF; font-weight: 700; flex-shrink: 0; }

/* Gift counters at bottom */
.gift-bar {
  position: absolute;
  left: 12px; right: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.gift-row {
  display: flex; gap: 6px; align-items: center;
  background: rgba(0,0,0,0.55);
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
}
.gift-icon {
  width: 20px; height: 20px;
  border-radius: 6px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.gift-icon.heart  { background: linear-gradient(135deg, rgba(255, 64, 100, 0.4), rgba(255, 100, 130, 0.3)); color: #ff7090; box-shadow: 0 0 10px rgba(255, 100, 130, 0.4); }
.gift-icon.star   { background: linear-gradient(135deg, rgba(255, 200, 80, 0.35), rgba(255, 180, 60, 0.3)); color: #ffd56b; box-shadow: 0 0 10px rgba(255, 200, 80, 0.35); }
.gift-icon.gift   { background: linear-gradient(135deg, rgba(120, 200, 255, 0.35), rgba(80, 150, 255, 0.3)); color: #8acfff; box-shadow: 0 0 10px rgba(120, 200, 255, 0.35); }
.gift-count { font-size: 11px; color: #fff; font-weight: 800; font-family: "Inter", sans-serif; }

/* Right-side panels — piggy + ranking */
.piggy-card {
  position: absolute;
  right: 14px;
  top: 14px;
  background: linear-gradient(160deg, rgba(40, 30, 80, 0.88), rgba(20, 18, 50, 0.88));
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(170, 190, 255, 0.22);
  width: 122px;
  font-size: 10px;
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}
.piggy-card-title {
  display: flex; align-items: center; gap: 5px;
  font-size: 9.5px; color: var(--text-3);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.piggy-amount {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFD789 0%, #FFB347 60%, #F472B6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 20px rgba(255, 197, 107, 0.35);
}
.piggy-shape {
  width: 44px; height: 36px;
  margin: 6px auto 4px;
  color: #ff95c2;
  filter: drop-shadow(0 4px 8px rgba(255, 105, 180, 0.4));
}
.piggy-shape svg { width: 100%; height: 100%; }

.ranking {
  position: absolute;
  right: 14px;
  bottom: 56px;
  background: linear-gradient(160deg, rgba(40, 30, 80, 0.88), rgba(20, 18, 50, 0.88));
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(170, 190, 255, 0.22);
  width: 122px;
  font-size: 9.5px;
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}
.ranking-title { font-size: 9.5px; color: var(--text-3); margin-bottom: 5px; letter-spacing: 0.04em; }
.ranking-row {
  display: flex; align-items: center; gap: 6px;
  padding: 2.5px 0;
  font-size: 10px;
}
.ranking-row .rk {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  font-size: 8.5px; font-weight: 800;
  color: #c8d3ff;
}
.ranking-row .rk.gold {
  background: linear-gradient(135deg, #FFD789, #FFB347);
  border-color: rgba(255, 215, 137, 0.5);
  color: #6b4500;
  box-shadow: 0 0 10px rgba(255, 197, 107, 0.5);
}
.ranking-row .rk.silver {
  background: linear-gradient(135deg, #E5EAF5, #B8C0D8);
  color: #2a3045;
}
.ranking-row .rk.bronze {
  background: linear-gradient(135deg, #d99b6c, #b67644);
  color: #fff;
}
.ranking-row .nm {
  flex: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  color: #ddd;
}
.ranking-row .ct { color: var(--text-3); font-family: "Inter", sans-serif; font-feature-settings: "tnum"; }

/* small screens */
@media (max-width: 540px) {
  .stream-screen { aspect-ratio: 4 / 5; }
  .piggy-card, .ranking { width: 38%; }
  .comments { max-width: 50%; }
}

/* ============================================== Marquee ====== */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track.reverse { animation-direction: reverse; animation-duration: 40s; }
.marquee-item {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3.4vw, 36px);
  letter-spacing: 0.005em;
  line-height: 1;
  background: var(--grad-holo);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  animation: holoShift 8s ease-in-out infinite;
  opacity: 0.85;
}
.marquee-item.outline {
  -webkit-text-stroke: 1px rgba(170, 190, 255, 0.32);
  -webkit-text-fill-color: transparent;
  background: none;
  color: transparent;
  opacity: 0.7;
}
.marquee-dot {
  display: inline-flex; align-items: center;
  font-size: clamp(18px, 2.4vw, 26px);
  color: rgba(170, 190, 255, 0.4);
  font-weight: 600;
  line-height: 1;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================== Punchline ==== */
.punchline {
  padding: 48px 0 56px;
  text-align: center;
  position: relative;
}
.punchline-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
}
.punchline-title {
  font-size: clamp(40px, 7.5vw, 88px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 auto;
  max-width: 1000px;
  text-wrap: balance;
}
.punchline-title .holo {
  background: var(--grad-holo);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: holoShift 8s ease-in-out infinite;
}
.punchline-title .stroke {
  -webkit-text-stroke: 1.2px rgba(190, 206, 255, 0.68);
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-shadow: none;
  filter: none;
  paint-order: stroke;
}
.punchline-sub {
  margin: 28px auto 0;
  color: var(--text-2);
  max-width: 560px;
  font-size: 15px;
  line-height: 1.9;
}

/* ============================================== Tone shift band */
.tone-band {
  position: relative;
  margin: 40px 0;
  padding: 80px 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(168, 85, 247, 0.18), transparent 70%),
    linear-gradient(180deg, #0d1024 0%, #060814 100%);
  border-top: 1px solid rgba(170, 190, 255, 0.12);
  border-bottom: 1px solid rgba(170, 190, 255, 0.12);
}
.tone-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 25% 30%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1px 1px at 75% 70%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(1.5px 1.5px at 55% 50%, rgba(180,200,255,0.55), transparent 50%);
  background-size: 400px 400px, 350px 350px, 500px 500px;
  pointer-events: none;
  opacity: 0.7;
}

/* ============================================== Mobile polish == */
@media (max-width: 560px) {
  .container {
    width: calc(100vw - 56px) !important;
    max-width: calc(100vw - 56px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .header .container {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }
  .hero-grid,
  .stats,
  .feature-grid,
  .seo-intro-grid,
  .overlay-grid,
  .pricing-grid,
  .faq-list,
  .legal-grid {
    width: calc(100vw - 56px) !important;
    max-width: calc(100vw - 56px) !important;
    margin-left: auto;
    margin-right: auto;
  }
  .lang-toggle {
    transform: scale(0.92);
    transform-origin: right center;
  }
  .nav {
    margin-right: 18px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-demo,
  .stat-card,
  .feature-card,
  .seo-intro-panel,
  .custom-panel,
  .plan,
  .faq-item,
  .legal-card,
  .final-cta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .section-title,
  .section-title .holo,
  .hero-title,
  .custom-title,
  .final-cta-title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero-title {
    font-size: clamp(34px, 10vw, 42px);
  }
  .section-title {
    font-size: 24px;
    line-height: 1.42;
  }
  .stats {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .stat-card {
    padding: 22px 20px;
    border-radius: 14px;
  }
  .stat-hero {
    padding: 24px 22px;
  }
  .stat-hero-row,
  .stat-sat-top,
  .stat-sat-mid {
    min-width: 0;
  }
  .delta-pill,
  .stat-sat-meta {
    display: none;
  }
  .stat-sat-mid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .stat-sat-extra {
    text-align: left;
  }
  .stat-progress-foot {
    gap: 8px;
  }
  .stat-progress-foot span:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .seo-intro-copy .section-title {
    font-size: 24px;
    line-height: 1.38;
  }
  .seo-point {
    grid-template-columns: 40px minmax(0, 1fr);
  }
  .seo-point-icon {
    width: 40px;
    height: 40px;
  }
}

/* ============================================== Utility ====== */
.muted { color: var(--text-3); }
.center { text-align: center; }
