/* Fonts injected via next/font CSS variables — no CDN @import needed */

/* ─── DOMAIN REMINDER BANNER ──────────────────────────── */
.domain-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: rgba(20, 30, 55, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(66, 133, 244, 0.28);
  font-size: 0.82rem;
  color: rgba(240, 240, 245, 0.8);
}
.domain-banner-text { flex: 1; text-align: center; }
.domain-banner-link {
  color: #8ab4f8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.domain-banner-link:hover { color: #fff; }
.domain-banner-close {
  flex: 0 0 auto;
  background: none;
  border: none;
  color: rgba(240, 240, 245, 0.45);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}
.domain-banner-close:hover { color: #fff; }

.open-report-container {
  /* ── Vercel/Resend-style dark theme ──────────── */
  --bg: #000;
  --bg2: #0a0a0d;
  --surface: rgba(255, 255, 255, 0.04);
  --surface2: rgba(255, 255, 255, 0.07);
  --surface3: #0f0f12;
  --surface-hover: rgba(255, 255, 255, 0.07);

  /* ── Accent scales ──────────────────────────── */
  --accent: #4285f4;
  --accent2: #8ab4f8;
  --accent-light: #aecbfa;
  --accent-purple: #a78bfa;
  --accent-emerald: #34d399;
  --accent-amber: #fbbf24;
  --accent-pink: #f472b6;
  --accent-cyan: #7dd3fc;

  /* ── Text ──────────────────────────────────────────── */
  --text: #f0f0f5;
  --muted: rgba(240, 240, 245, 0.45);
  --muted2: rgba(240, 240, 245, 0.25);

  /* ── Borders & glow ────────────────────────────────── */
  --border: rgba(255, 255, 255, 0.08);
  --border-h: rgba(255, 255, 255, 0.16);
  --glow: rgba(66, 133, 244, 0.18);
  --glass-blur: blur(24px) saturate(180%);

  /* ── Depth shadow scale ───────────────────────────── */
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.30);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.40);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 6px 28px rgba(0, 0, 0, 0.55);
  --shadow-xl: 0 10px 40px rgba(0, 0, 0, 0.65);

  background: var(--bg);
  color: var(--text);
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  min-height: 100vh;
}

/* DOT-GRID OVERLAY (Vercel-style) */
.open-report-container::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 35%, transparent 100%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 35%, transparent 100%);
}

/* AMBIENT ORBS */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  animation: orbit 20s linear infinite;
  will-change: transform;
}
.orb-1 { width: 700px; height: 700px; background: rgba(66,133,244,0.07); top: -150px; right: -50px; }
.orb-2 { width: 500px; height: 500px; background: rgba(138,180,248,0.05); top: 40%; left: -100px; animation-direction: reverse; }

@keyframes orbit {
  0%   { transform: rotate(0deg) translateX(50px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

/* TYPOGRAPHY UTILITIES */
.display { font-family: var(--font-dm-sans), system-ui, sans-serif; font-weight: 700; }
.heading  { font-family: var(--font-dm-sans), system-ui, sans-serif; font-weight: 700; }

/* ─── FLOATING PILL NAV ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem 0.8rem 2rem;
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.04);
  animation: fadeDownPill 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeDownPill {
  from { opacity: 0; transform: translate(-50%, -30px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.nav-logo {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  border-radius: 8px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  aspect-ratio: 1;
  background: var(--accent);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 18px; height: 18px; }

.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.3s;
  border-radius: 4px;
}
.nav-links a:hover {
  color: var(--text);
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.nav-cta {
  background: var(--text);
  color: var(--bg);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ─── FOCUS VISIBLE — ACCESSIBILITY ─────────────────────────────── */
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.nav-cta:focus-visible,
.nav-logo:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 12rem 5%;
  overflow: hidden;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-family: var(--font-mono), monospace;
  font-weight: 400;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.1s both;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--accent); }
  50%       { opacity: 0.6; transform: scale(0.8); box-shadow: 0 0 2px var(--accent); }
}

.hero-title {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-feature-settings: 'ss01' 1;
  max-width: 820px;
  animation: fadeUp 1s 0.2s both;
  margin: 0;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(to right, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-sub {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -0.01em;
  animation: fadeUp 1s 0.3s both;
}
.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-actions {
  margin-top: 3.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.4s both;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(66, 133, 244, 0.3);
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
}

.btn-ghost {
  color: var(--text);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ─── LEVITATING HERO VISUAL ─────────────────────────────────────── */
.hero-visual {
  position: absolute;
  right: 2vw;
  top: 45%;
  width: 560px;
  animation: levitateMain 8s ease-in-out infinite, fadeUp 1.2s 0.5s both;
  perspective: 1000px;
  will-change: transform;
}

@keyframes levitateMain {
  0%, 100% { transform: translateY(-50%) rotateX(5deg) rotateY(-10deg); }
  50%       { transform: translateY(-55%) rotateX(0deg) rotateY(-5deg); }
}

.report-card {
  background: rgba(22, 22, 22, 0.85);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  transform-style: preserve-3d;
}

.report-topbar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.dot-red, .dot-yellow, .dot-green {
  width: 12px; height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.3);
}
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #28c840; }

.report-title-bar {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  height: 32px;
  border-radius: 100px;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.6rem;
}

.url-text {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-mono), 'Fira Code', 'Courier New', monospace;
}

.report-slide {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border-radius: 16px;
  padding: 2.5rem;
  min-height: 260px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.3);
}

.slide-accent-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 2px 15px var(--accent);
}

.slide-tag {
  display: inline-block;
  background: rgba(66,133,244,0.15);
  color: var(--accent2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.slide-h {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.slide-p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
}

.slide-chart {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bar {
  width: 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bar:nth-child(1) { height: 40px; }
.bar:nth-child(2) { height: 70px; background: var(--accent); box-shadow: 0 0 18px rgba(66,133,244,0.50); }
.bar:nth-child(3) { height: 50px; }
.bar:nth-child(4) { height: 90px; background: var(--accent2); box-shadow: 0 0 18px rgba(138,180,248,0.50); }
.bar:nth-child(5) { height: 60px; }

/* FLOATING MINI CARDS */
.mini-card {
  position: absolute;
  background: rgba(22, 22, 22, 0.90);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
  will-change: transform;
}
.mini-card-1 {
  bottom: -40px; left: -80px; width: 180px;
  animation: floatSlow 5s ease-in-out infinite alternate;
}
.mini-card-2 {
  top: 30px; right: -60px; width: 170px;
  animation: floatSlow 6s ease-in-out infinite alternate-reverse;
}

@keyframes floatSlowHero {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}
@keyframes floatSlow {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-20px); }
}

.mini-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.mini-val { font-family: var(--font-dm-sans), system-ui, sans-serif; font-weight: 700; font-size: 1.3rem; }
.mini-val.green  { color: var(--accent2);     text-shadow: 0 0 14px rgba(138,180,248,0.40); }
.mini-val.yellow { color: var(--accent-light); text-shadow: 0 0 14px rgba(174,203,250,0.35); }

/* ─── DIVIDER ────────────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin: 0;
}

/* ─── LOGOS STRIP ────────────────────────────────────────────────── */
.logos-section {
  padding: 5rem 5%;
  text-align: center;
}
.logos-label {
  font-family: var(--font-mono), monospace;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.logos-strip {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  opacity: 0.4;
  filter: grayscale(1);
  transition: opacity 0.3s;
}
.logos-strip:hover { opacity: 0.7; }
.logo-item {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

/* ─── LOGO TRACK ─────────────────────────────────────────────────── */
.logo-track {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.45;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  transition: opacity 0.3s;
}
.logo-track:hover { opacity: 0.72; }

/* ─── SHARE CARDS ────────────────────────────────────────────────── */
.share-cards-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.share-card {
  width: 290px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.share-card:hover {
  border-color: rgba(138, 180, 248, 0.28);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.share-card-thumb {
  width: 100%;
  height: 152px;
  position: relative;
  overflow: hidden;
}

.share-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.share-card-slide {
  padding: 1.2rem 1.2rem 0.6rem;
}

.share-card-slide-title {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.share-card-slide-body {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}

.share-card-mini-bars {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.share-card-mini-bar {
  width: 9px;
  border-radius: 2px 2px 0 0;
  background: rgba(255, 255, 255, 0.08);
}

.share-card-meta {
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.share-card-url {
  font-family: var(--font-mono), monospace;
  font-size: 0.68rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.share-card-views {
  font-family: var(--font-mono), monospace;
  font-size: 0.68rem;
  color: var(--accent2);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── FEATURES ───────────────────────────────────────────────────── */
.features { padding: 10rem 5%; position: relative; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono), monospace;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  background: none;
  padding: 0;
  border-radius: 0;
  border: none;
}

.section-title {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 650px;
  margin-bottom: 1.5rem;
}

.section-sub { color: var(--muted); font-size: 1.2rem; max-width: 500px; line-height: 1.7; margin-bottom: 6rem; }

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

.feature-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s;
}
.feature-cell:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(66, 133, 244, 0.10);
  border: none;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.feature-cell:hover .feature-icon-wrap {
  background: rgba(66, 133, 244, 0.18);
}
.feature-cell:hover .feature-icon-wrap svg { color: var(--accent2); }
.feature-icon-wrap svg { width: 20px; height: 20px; color: var(--accent2); transition: color 0.3s; }

.feature-name { font-family: var(--font-dm-sans), system-ui, sans-serif; font-weight: 700; font-size: 1.2rem; margin-bottom: 1rem; }
.feature-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin: 0; }

/* ─── HOW IT WORKS ───────────────────────────────────────────────── */
.how { padding: 10rem 5%; position: relative; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 6rem;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s;
}
.step:nth-child(even) { transform: translateY(30px); }
.step:hover { transform: translateY(-10px) scale(1.02); }
.step:nth-child(even):hover { transform: translateY(20px) scale(1.02); }

.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  margin: 0 auto 2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: all 0.3s;
}
.step:hover .step-num {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.step-name { font-family: var(--font-dm-sans), system-ui, sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.8rem; }
.step-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ─── SHOWCASE ───────────────────────────────────────────────────── */
.showcase {
  padding: 10rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  padding: 0;
}
.checklist li {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.05rem;
  color: var(--muted);
}
.checklist li .check {
  width: 24px; height: 24px;
  background: rgba(66,133,244,0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(66,133,244,0.15);
}
.checklist li .check svg { width: 12px; height: 12px; color: var(--accent); }

.showcase-preview {
  background: rgba(22, 22, 22, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  transition: border-color 0.3s;
}
.showcase-preview:hover { border-color: rgba(255,255,255,0.15); }

.chat-bubble { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 12px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}
.avatar.user { background: rgba(255,255,255,0.08); color: var(--text); }
.avatar.ai   { background: linear-gradient(135deg, #4285f4, #34a853); color: #fff; box-shadow: var(--shadow-md); }

.bubble-body { flex: 1; }
.bubble {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0 16px 16px 16px;
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}
.chat-bubble.user .bubble {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-radius: 16px 16px 0px 16px;
}

/* ─── CTA ────────────────────────────────────────────────────────── */
.cta {
  padding: 12rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}
.cta-glow {
  position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(66,133,244,0.14) 0%, rgba(138,180,248,0.06) 38%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: ctaPulse 5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%   { opacity: 0.8; transform: translate(-50%, -50%) scale(0.95); }
  100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}
.cta-actions { margin-top: 3.5rem; display: flex; justify-content: center; }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.report-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  overflow: hidden;
}

.footer-wordmark-wrapper {
  position: relative;
  line-height: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 80%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 80%);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 48px;
  padding: 64px 0;
}

.footer-wordmark {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: clamp(80px, 18vw, 160px);
  font-weight: 800;
  letter-spacing: -4px;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.07) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  padding-bottom: 80px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  max-width: 280px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 240px;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted2, rgba(255,255,255,0.25));
  margin-bottom: 0;
}

.footer-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}

.footer-icp {
  font-size: 12px;
  color: var(--muted2, rgba(255,255,255,0.25));
  text-decoration: none;
  transition: color 0.15s;
}

.footer-icp:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  gap: 64px;
  align-items: start;
  flex-shrink: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.15s;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav {
    gap: 2rem;
    width: 100%;
    justify-content: space-between;
  }
  .footer-brand {
    max-width: 100%;
  }
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SUPPRESS GLOBALS.CSS CSS-COUNTER ON LANDING STEPS ──────────── */
.open-report-container .step::before {
  content: none;
  display: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { width: 95%; padding: 0.8rem 1.5rem; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(even) { transform: none; }
  .showcase { grid-template-columns: 1fr; gap: 4rem; }
}

@media (max-width: 600px) {
  .hero { padding: 10rem 6%; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}

/* ─── ULTRA-WIDE CONTENT CAP ─────────────────────────────────────── */
@media (min-width: 1600px) {
  .features, .how, .showcase, .logos-section, .cta {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
  .report-footer {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ─── METEOR EFFECT ─────────────────────────────────────────────── */
.meteor-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  overflow: hidden;
}

.meteor {
  position: absolute;
  width: 250px;
  height: 1px;
  /* Multi-stop cold-blue atmospheric gradient: brilliant head → rapid falloff → long translucent tail */
  background: linear-gradient(
    to right,
    rgba(200, 230, 255, 1) 0%,
    rgba(200, 230, 255, 0.6) 8%,
    rgba(200, 230, 255, 0.2) 20%,
    rgba(200, 230, 255, 0.05) 50%,
    transparent 100%
  );
  border-radius: 100px;
  opacity: 0;
  box-shadow: 0 0 10px rgba(200, 230, 255, 0.4), 0 0 20px rgba(200, 230, 255, 0.1);
  will-change: transform, opacity;
  transform-origin: left center;
}

/* Coma (glowing nucleus at meteor head) */
.meteor::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 6px #fff,
    0 0 14px rgba(200, 230, 255, 0.9),
    0 0 28px rgba(200, 230, 255, 0.5);
}

@keyframes meteor-fall {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(-45deg) scale(var(--scale, 1));
  }
  15% {
    opacity: var(--max-opacity, 1);
  }
  100% {
    opacity: 0;
    transform: translate(-100vw, 100vh) rotate(-45deg) scale(var(--scale, 1));
  }
}

/* ─── METEOR SHOWER TRIGGER BUTTON ──────────────────────────────── */
.meteor-trigger {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 200;
  width: 52px;
  height: 52px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  /* Entrance animation */
  animation: triggerEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
}

@keyframes triggerEntrance {
  from { opacity: 0; transform: translateY(20px) scale(0.6); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.meteor-trigger-inner {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  /* Dark glass pill surface */
  background: rgba(12, 12, 18, 0.75);
  border: 1px solid rgba(200, 230, 255, 0.18);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.6),
    0 0 0 0 rgba(200, 230, 255, 0),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.meteor-trigger:hover .meteor-trigger-inner {
  border-color: rgba(200, 230, 255, 0.45);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(200, 230, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: scale(1.1);
}

.meteor-trigger:active .meteor-trigger-inner {
  transform: scale(0.95);
}

/* Orbiting ring that appears on hover */
.meteor-trigger-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(200, 230, 255, 0.2);
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.meteor-trigger:hover .meteor-trigger-ring {
  opacity: 1;
  transform: scale(1);
}

/* Pulsing ring animation when shower is active */
.meteor-trigger.shower-active .meteor-trigger-ring {
  opacity: 1;
  transform: scale(1);
  animation: triggerPulse 1.6s ease-in-out infinite;
  border-color: rgba(200, 230, 255, 0.5);
}
.meteor-trigger.shower-active .meteor-trigger-inner {
  border-color: rgba(200, 230, 255, 0.6);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(200, 230, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@keyframes triggerPulse {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 0.2; }
}

/* SVG icon inside the button */
.meteor-trigger-icon {
  width: 22px;
  height: 22px;
  color: rgba(200, 230, 255, 0.85);
  transition: color 0.3s, filter 0.3s;
  filter: drop-shadow(0 0 4px rgba(200, 230, 255, 0.4));
}

.meteor-trigger:hover .meteor-trigger-icon {
  color: rgba(220, 240, 255, 1);
  filter: drop-shadow(0 0 8px rgba(200, 230, 255, 0.8));
}

.meteor-trigger.shower-active .meteor-trigger-icon {
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(200, 230, 255, 1));
  animation: iconGlow 1.6s ease-in-out infinite alternate;
}

@keyframes iconGlow {
  from { filter: drop-shadow(0 0 6px rgba(200, 230, 255, 0.7)); }
  to   { filter: drop-shadow(0 0 16px rgba(200, 230, 255, 1)); }
}

/* Tooltip */
.meteor-trigger-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12, 12, 18, 0.92);
  border: 1px solid rgba(200, 230, 255, 0.15);
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
  color: rgba(200, 230, 255, 0.8);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
  backdrop-filter: blur(12px);
}

.meteor-trigger:hover .meteor-trigger-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 600px) {
  .meteor-trigger { bottom: 1.5rem; right: 1.5rem; }
}

/* ─── NAV USER MENU (avatar button inside .open-report-container) ─── */
.open-report-container .nav-user-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
  outline: none;
}
.open-report-container .nav-user-btn:hover {
  opacity: 0.85;
  transform: scale(1.06);
}
.open-report-container .nav-user-btn:focus-visible {
  outline: 2px solid #4285f4;
  outline-offset: 3px;
}
.open-report-container .nav-user-avatar {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  overflow: hidden;
  background: #161616;
}
.open-report-container .nav-user-fallback {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 50%;
}

/* ─── LANDING USER DROPDOWN (portaled to <body>, global scope) ────── */
.landing-user-dropdown {
  min-width: 210px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(255,255,255,0.04) inset;
  z-index: 9999;
  font-family: system-ui, -apple-system, sans-serif;
  animation-duration: 0.15s;
}

.landing-user-info {
  padding: 10px 10px 6px;
}

.landing-user-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e8eaed;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-user-email {
  font-size: 0.75rem;
  color: #9aa0a6;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-user-sep {
  background: rgba(255, 255, 255, 0.08);
  height: 1px;
  margin: 4px -2px;
}

.landing-user-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #9aa0a6;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.landing-user-item:hover,
.landing-user-item:focus {
  background: rgba(255, 255, 255, 0.06);
  color: #e8eaed;
}
.landing-user-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.landing-user-item:hover svg,
.landing-user-item:focus svg {
  opacity: 1;
}

.landing-user-signout {
  color: #f28b82;
}
.landing-user-signout:hover,
.landing-user-signout:focus {
  background: rgba(242, 139, 130, 0.10);
  color: #f28b82;
}

@media (max-width: 600px) {
  .landing-user-dropdown {
    min-width: 180px;
  }
}

/* ════════════════════════════════════════════════════════════════════
   ▼  REDESIGN — LIVE ENGAGEMENT SECTIONS
   ════════════════════════════════════════════════════════════════════ */

/* ─── HERO BEAM (radial spotlight from top) ──────────────────────── */
.hero-beam {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(66, 133, 244, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 50% 0%, rgba(167, 139, 250, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
}

.hero-trust {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  font-family: var(--font-mono), monospace;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  animation: fadeUp 1s 0.6s both;
}
.hero-trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulseGlow 2s infinite;
  margin-right: 0.2rem;
}
.hero-trust-sep { color: rgba(255,255,255,0.15); }

.live-pip {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: pulseGlow 1.6s infinite;
}

/* ─── HERO DANMAKU OVERLAY ───────────────────────────────────────── */
.hero-danmaku-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}
.hero-danmaku {
  position: absolute;
  white-space: nowrap;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85), 0 0 12px rgba(0, 0, 0, 0.5);
  left: 100%;
  opacity: 0;
  animation-name: danmakuFly;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  will-change: transform, opacity;
}
.hero-danmaku.lane-0 { top: 18%; }
.hero-danmaku.lane-1 { top: 42%; }
.hero-danmaku.lane-2 { top: 68%; }
@keyframes danmakuFly {
  0%   { transform: translateX(0); opacity: 0; }
  6%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateX(-680px); opacity: 0; }
}

/* ─── HERO ROCKET LAUNCH ─────────────────────────────────────────── */
.hero-rocket-layer {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 6;
}
.hero-rocket {
  position: absolute;
  bottom: 0;
  font-size: 1.6rem;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
  animation: rocketFlight 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-rocket:nth-child(odd)  { left: 28%; }
.hero-rocket:nth-child(even) { left: 62%; }
.hero-rocket-explode {
  position: absolute;
  top: -180px; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, rgba(255, 79, 216, 0.3) 40%, transparent 70%);
  animation: rocketExplode 0.7s 1.6s ease-out forwards;
}
@keyframes rocketFlight {
  0%   { transform: translate(0, 0) rotate(-12deg); opacity: 1; }
  60%  { transform: translate(-20px, -180px) rotate(-8deg); opacity: 1; }
  85%  { transform: translate(-40px, -240px) rotate(-4deg); opacity: 0.85; }
  100% { transform: translate(-50px, -260px) rotate(0deg);  opacity: 0; }
}
@keyframes rocketExplode {
  0%   { transform: translate(-50%, -50%) scale(0);   opacity: 1; }
  60%  { transform: translate(-50%, -50%) scale(1.4); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

.hero-rocket-btn {
  position: absolute;
  right: -20px;
  bottom: -30px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 79, 216, 0.18));
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #fff;
  border-radius: 100px;
  padding: 0.6rem 1.2rem 0.6rem 0.9rem;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 8px 24px rgba(255, 79, 216, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-rocket-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 32px rgba(255, 79, 216, 0.45), 0 0 24px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.7);
}
.hero-rocket-btn:active { transform: translateY(0) scale(0.98); }
.hero-rocket-btn-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
  animation: rocketBtnIdle 3s ease-in-out infinite;
}
@keyframes rocketBtnIdle {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%       { transform: translateY(-3px) rotate(-12deg); }
}

/* ─── LIVE STATS STRIP ───────────────────────────────────────────── */
.livestats {
  padding: 4rem 5%;
  text-align: center;
  position: relative;
  z-index: 2;
}
.livestats-label {
  font-family: var(--font-mono), monospace;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.livestats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.livestats-cell {
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
  transition: border-color 0.3s, box-shadow 0.3s;
}
.livestats-cell:hover {
  border-color: rgba(66, 133, 244, 0.4);
  box-shadow: 0 0 0 1px rgba(66, 133, 244, 0.15), 0 12px 32px -16px rgba(66, 133, 244, 0.4);
}
.livestats-num {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.livestats-pip {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulseGlow 2s infinite;
}
.livestats-cap {
  font-family: var(--font-mono), monospace;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ─── FEATURE SPOTLIGHTS ─────────────────────────────────────────── */
.feature-spotlight {
  padding: 8rem 5%;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}
.feature-spotlight.reverse > .spotlight-text  { order: 2; }
.feature-spotlight.reverse > .spotlight-visual { order: 1; }

.spotlight-text .section-title em {
  font-style: normal;
  background: linear-gradient(to right, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.spotlight-text .section-sub { margin-bottom: 2.5rem; max-width: 480px; }

.checklist .check-blue    { background: rgba(66, 133, 244, 0.16); color: var(--accent2); }
.checklist .check-amber   { background: rgba(251, 191, 36, 0.16); color: var(--accent-amber); }
.checklist .check-emerald { background: rgba(52, 211, 153, 0.16); color: var(--accent-emerald); }
.checklist li .check {
  font-family: var(--font-mono), monospace;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ─── DANMAKU STAGE ──────────────────────────────────────────────── */
.dm-stage {
  position: relative;
  height: 380px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 15, 20, 0.9), rgba(8, 8, 12, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.dm-slide {
  position: absolute;
  inset: 1.5rem;
  border-radius: 12px;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.07), rgba(167, 139, 250, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dm-slide-tag {
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
  color: var(--accent2);
  letter-spacing: 0.08em;
}
.dm-slide-h {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}
.dm-slide-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.dm-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.dm-msg {
  position: absolute;
  white-space: nowrap;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.95), 0 0 14px rgba(0, 0, 0, 0.6);
  left: 100%;
  opacity: 0;
  animation-name: dmFly;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  will-change: transform, opacity;
}
.dm-lane-0 { top: 12%; }
.dm-lane-1 { top: 42%; }
.dm-lane-2 { top: 72%; }
@keyframes dmFly {
  0%   { transform: translateX(0); opacity: 0; }
  6%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateX(-720px); opacity: 0; }
}
.dm-tier-badges {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  z-index: 10;
}
.dm-tier {
  font-family: var(--font-mono), monospace;
  font-size: 0.68rem;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  border: 1px solid;
  backdrop-filter: blur(12px);
}
.dm-tier-legendary { color: #ffd700; border-color: rgba(255, 215, 0, 0.5); background: rgba(255, 215, 0, 0.08); }
.dm-tier-onfire    { color: #fb923c; border-color: rgba(251, 146, 60, 0.5); background: rgba(251, 146, 60, 0.08); }
.dm-tier-hyped     { color: #a78bfa; border-color: rgba(167, 139, 250, 0.5); background: rgba(167, 139, 250, 0.08); }

/* ─── ROCKET STAGE ───────────────────────────────────────────────── */
.rk-stage {
  position: relative;
  height: 420px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 15, 20, 0.9), rgba(8, 8, 12, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  padding: 1.5rem;
}
.rk-launchpad {
  position: relative;
  height: 60%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.rk-fly {
  position: absolute;
  bottom: 0;
  font-size: 2rem;
  filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.7));
  animation: rkFly 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  will-change: transform;
}
.rk-fly-1 { left: 30%; animation-delay: 0s; }
.rk-fly-2 { left: 50%; animation-delay: 0.7s; }
.rk-fly-3 { left: 70%; animation-delay: 1.4s; }
@keyframes rkFly {
  0%   { transform: translateY(0) rotate(-12deg); opacity: 0; }
  10%  { opacity: 1; }
  60%  { transform: translateY(-160px) rotate(-6deg); opacity: 1; }
  85%  { transform: translateY(-220px) rotate(0deg); opacity: 0.5; }
  100% { transform: translateY(-240px) rotate(0deg); opacity: 0; }
}
.rk-explosion {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.55) 0%, rgba(255, 79, 216, 0.35) 40%, transparent 70%);
  animation: rkExplode 2.4s ease-out 1.6s infinite;
}
@keyframes rkExplode {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  20%  { transform: translate(-50%, -50%) scale(1.5); opacity: 0.7; }
  40%  { transform: translate(-50%, -50%) scale(2); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}
.rk-spark {
  position: absolute;
  top: 0; left: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 8px #ffd700;
  animation: rkSpark 2.4s ease-out 1.6s infinite;
}
.rk-spark-1 { --sx:  60px; --sy: -40px; background: #ffd700; box-shadow: 0 0 8px #ffd700; }
.rk-spark-2 { --sx: -60px; --sy: -50px; background: #fb923c; box-shadow: 0 0 8px #fb923c; }
.rk-spark-3 { --sx:  90px; --sy:  20px; background: #ff4fd8; box-shadow: 0 0 8px #ff4fd8; }
.rk-spark-4 { --sx: -90px; --sy:  30px; background: #fff;    box-shadow: 0 0 8px #fff; }
.rk-spark-5 { --sx:  30px; --sy: -80px; background: #a78bfa; box-shadow: 0 0 8px #a78bfa; }
.rk-spark-6 { --sx: -30px; --sy:  60px; background: #7dd3fc; box-shadow: 0 0 8px #7dd3fc; }
@keyframes rkSpark {
  0%   { transform: translate(-50%, -50%) translate(0, 0); opacity: 1; }
  100% { transform: translate(-50%, -50%) translate(var(--sx, 50px), var(--sy, -50px)); opacity: 0; }
}
.rk-leaderboard {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.rk-leaderboard-title {
  font-family: var(--font-mono), monospace;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.rk-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}
.rk-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 3.5s infinite linear;
  pointer-events: none;
}
.rk-row-name { color: var(--text); font-weight: 500; }
.rk-row-count { font-family: var(--font-mono), monospace; color: var(--muted); }
.rk-tier-champion { background: linear-gradient(90deg, rgba(255, 215, 0, 0.16), rgba(255, 215, 0, 0.04)); border: 1px solid rgba(255, 215, 0, 0.32); }
.rk-tier-champion .rk-row-count { color: #ffd700; }
.rk-tier-star     { background: linear-gradient(90deg, rgba(203, 213, 225, 0.14), rgba(203, 213, 225, 0.04)); border: 1px solid rgba(203, 213, 225, 0.25); }
.rk-tier-star     .rk-row-count { color: #cbd5e1; }
.rk-tier-mvp      { background: linear-gradient(90deg, rgba(251, 146, 60, 0.14), rgba(251, 146, 60, 0.04)); border: 1px solid rgba(251, 146, 60, 0.28); }
.rk-tier-mvp      .rk-row-count { color: #fb923c; }
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── LIVE SYNC STAGE ────────────────────────────────────────────── */
.sync-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  height: 320px;
}
.sync-screen {
  position: relative;
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(15, 15, 20, 0.92), rgba(8, 8, 12, 0.96));
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.sync-presenter { border-color: rgba(66, 133, 244, 0.32); box-shadow: 0 0 0 1px rgba(66, 133, 244, 0.15), var(--shadow-lg); }
.sync-audience  { border-color: rgba(52, 211, 153, 0.32); box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.15), var(--shadow-lg); }
.sync-screen-tag {
  font-family: var(--font-mono), monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.sync-presenter .sync-screen-tag { color: var(--accent2); }
.sync-audience  .sync-screen-tag { color: var(--accent-emerald); }
.sync-slide-num {
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.sync-slide-title {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-top: auto;
}
.sync-mode { display: flex; gap: 0.4rem; margin-top: 0.5rem; }
.sync-mode-pill {
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}
.sync-mode-pill.on {
  background: linear-gradient(90deg, rgba(66, 133, 244, 0.25), rgba(167, 139, 250, 0.18));
  border-color: rgba(66, 133, 244, 0.45);
  color: var(--text);
  box-shadow: 0 0 12px rgba(66, 133, 244, 0.3);
}
.sync-viewers { display: flex; gap: 0.3rem; align-items: center; margin-top: 0.5rem; }
.sync-viewer-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34d399);
  border: 2px solid rgba(8, 8, 12, 0.95);
  margin-left: -8px;
}
.sync-viewer-dot:first-child { margin-left: 0; }
.sync-viewer-more {
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
  color: var(--muted);
  margin-left: 0.5rem;
}
.sync-arrow {
  position: relative;
  width: 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sync-pulse {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: syncPulse 2s ease-in-out infinite;
}
.sync-pulse-2 { animation-delay: 0.66s; }
.sync-pulse-3 { animation-delay: 1.32s; }
@keyframes syncPulse {
  0%   { transform: translateX(-25px) scale(0.6); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateX(25px)  scale(0.6); opacity: 0; }
}

/* ─── ENGAGEMENT SUITE GRID ──────────────────────────────────────── */
.suite {
  padding: 8rem 5%;
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}
.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}
.suite-cell {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.suite-cell:hover {
  border-color: rgba(66, 133, 244, 0.45);
  box-shadow: 0 0 0 1px rgba(66, 133, 244, 0.18), 0 18px 40px -20px rgba(66, 133, 244, 0.45);
  transform: translateY(-3px);
}
.suite-thumb {
  height: 130px;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.1rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.suite-name {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}
.suite-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.suite-thumb-poll { padding: 0.85rem 1rem; align-items: stretch; flex-direction: column; gap: 0.4rem; justify-content: center; }
.poll-row { display: flex; align-items: center; gap: 0.6rem; }
.poll-label {
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
  width: 16px;
  color: var(--muted);
}
.poll-bar {
  flex: 1;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.poll-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  border-radius: 100px;
  transform-origin: left;
  animation: barFill 4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
.poll-row-a .poll-bar::after { background: var(--accent);         width: 62%; }
.poll-row-b .poll-bar::after { background: var(--accent-purple);  width: 28%; animation-delay: 0.3s; }
.poll-row-c .poll-bar::after { background: var(--accent-amber);   width: 18%; animation-delay: 0.6s; }
.poll-row-d .poll-bar::after { background: var(--accent-pink);    width: 9%;  animation-delay: 0.9s; }
@keyframes barFill {
  0%   { transform: scaleX(0); }
  60%  { transform: scaleX(1); }
  90%  { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

.suite-thumb-breakout { flex-direction: column; gap: 0.4rem; padding: 0.9rem; }
.breakout-card {
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  align-self: stretch;
}
.breakout-summary {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: 0.78rem;
  color: var(--accent-purple);
  align-self: flex-end;
  font-weight: 600;
}

.suite-thumb-wc { flex-wrap: wrap; gap: 0.45rem; padding: 0.9rem; }
.wc-word {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wc-1 { font-size: 1.5rem; color: var(--accent2); }
.wc-2 { font-size: 1rem;   color: var(--accent-emerald); }
.wc-3 { font-size: 1.2rem; color: var(--accent-pink); }
.wc-4 { font-size: 0.9rem; color: var(--accent-amber); }
.wc-5 { font-size: 1.3rem; color: var(--accent-purple); }
.wc-6 { font-size: 1rem;   color: var(--accent-cyan); }

.suite-thumb-emoji { gap: 0.5rem; flex-wrap: wrap; padding: 0.9rem; }
.ej {
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: ejFloat 3.5s ease-in-out infinite;
}
.ej-1 { animation-delay: 0s; }
.ej-2 { animation-delay: 0.4s; }
.ej-3 { animation-delay: 0.8s; }
.ej-4 { animation-delay: 1.2s; }
.ej-5 { animation-delay: 1.6s; }
.ej-6 { animation-delay: 2s; }
@keyframes ejFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.suite-thumb-nps { flex-direction: column; gap: 0.5rem; padding: 0.9rem; }
.nps-row { display: flex; gap: 0.2rem; flex-wrap: nowrap; }
.nps-pill {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono), monospace;
  font-size: 0.65rem;
  padding: 0.3rem 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted2);
}
.nps-pill-on {
  background: linear-gradient(180deg, var(--accent-emerald), rgba(52, 211, 153, 0.4));
  color: #000;
  font-weight: 700;
}
.nps-score {
  align-self: flex-end;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-emerald);
}

.suite-thumb-recap { flex-direction: column; gap: 0.35rem; padding: 0.9rem; align-items: stretch; }
.recap-row {
  font-family: var(--font-mono), monospace;
  font-size: 0.78rem;
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  border: 1px solid;
}
.recap-champion { color: #ffd700; border-color: rgba(255, 215, 0, 0.32); background: rgba(255, 215, 0, 0.06); }
.recap-star     { color: #cbd5e1; border-color: rgba(203, 213, 225, 0.25); background: rgba(203, 213, 225, 0.05); }
.recap-mvp      { color: #fb923c; border-color: rgba(251, 146, 60, 0.28); background: rgba(251, 146, 60, 0.05); }

/* ─── AI BUILDER (supporting) ────────────────────────────────────── */
.ai-support {
  padding: 8rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}
.ai-text .section-title { max-width: 460px; }
.ai-preview {
  background: rgba(15, 15, 20, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  transition: border-color 0.3s;
}
.ai-preview:hover { border-color: rgba(66, 133, 244, 0.3); }

/* ─── CTA refinements ────────────────────────────────────────────── */
.cta-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent), var(--accent-purple), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  margin-top: 1.25rem;
  font-family: var(--font-mono), monospace;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ─── HERO TITLE em (in hero-content wrapper) ────────────────────── */
.hero-content .hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent), var(--accent-purple), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── FEATURE-CELL HOVER GLOW UPGRADE ────────────────────────────── */
.feature-cell { transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s; }
.feature-cell:hover {
  border-color: rgba(66, 133, 244, 0.45);
  box-shadow: 0 0 0 1px rgba(66, 133, 244, 0.18), 0 24px 60px -28px rgba(66, 133, 244, 0.55);
  transform: translateY(-3px);
}

/* ─── BUTTON refinements ─────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 4px 14px rgba(66, 133, 244, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent2), var(--accent-light));
  box-shadow: 0 10px 28px rgba(66, 133, 244, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* ─── RESPONSIVE — new sections ──────────────────────────────────── */
@media (max-width: 900px) {
  .livestats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-spotlight { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 5%; }
  .feature-spotlight.reverse > .spotlight-text  { order: 1; }
  .feature-spotlight.reverse > .spotlight-visual { order: 2; }
  .suite-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-support { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 5%; }
  .sync-stage { grid-template-columns: 1fr; gap: 0.5rem; height: auto; }
  .sync-arrow { transform: rotate(90deg); height: 40px; }
  .hero-rocket-btn { right: 10px; bottom: -15px; }
}
@media (max-width: 600px) {
  .livestats-grid { grid-template-columns: 1fr; }
  .suite-grid { grid-template-columns: 1fr; }
  .dm-stage, .rk-stage { height: 320px; }
  .hero-danmaku-layer { display: none; }
  .hero-rocket-btn { display: none; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-danmaku, .dm-msg,
  .rk-fly, .rk-explosion, .rk-spark, .rk-row::before,
  .sync-pulse, .ej, .poll-bar::after,
  .orb, .meteor, .meteor-trigger,
  .hero-rocket, .hero-rocket-explode, .hero-rocket-btn-icon,
  .live-pip, .hero-trust-dot, .livestats-pip {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ─── TEMPLATE SHOWCASE (carousel) ──────────────────────── */
.tmpl-showcase {
  padding: 8rem 5%;
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

.tmpl-carousel-wrap {
  --tmpl-card-w: 340px;
  --tmpl-gap: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3.5rem;
}

.tmpl-viewport {
  flex: 1;
  overflow: hidden;
}

.tmpl-track {
  display: flex;
  gap: var(--tmpl-gap);
  transform: translateX(calc(var(--tmpl-offset, 0) * -1 * (var(--tmpl-card-w) + var(--tmpl-gap))));
  transition: transform 0.48s cubic-bezier(0.34, 1.2, 0.64, 1);
  will-change: transform;
}

.tmpl-card {
  flex: 0 0 var(--tmpl-card-w);
  width: var(--tmpl-card-w);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.tmpl-card:hover {
  border-color: rgba(66, 133, 244, 0.42);
  box-shadow: 0 0 0 1px rgba(66, 133, 244, 0.15), 0 18px 42px -22px rgba(66, 133, 244, 0.5);
  transform: translateY(-3px);
}

.tmpl-thumb {
  width: 100%;
  height: 172px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.2rem;
  box-sizing: border-box;
}

.tmpl-info {
  padding: 0.85rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}
.tmpl-cat {
  font-family: var(--font-mono), monospace;
  font-size: 0.62rem;
  color: var(--accent2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tmpl-name {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  margin: 0;
}
.tmpl-desc-text {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Nav arrows */
.tmpl-arrow {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, opacity 0.2s;
  padding: 0;
  line-height: 1;
}
.tmpl-arrow:hover:not(:disabled) {
  border-color: rgba(66, 133, 244, 0.5);
  background: rgba(66, 133, 244, 0.1);
}
.tmpl-arrow:disabled { opacity: 0.2; cursor: default; }

/* Dots */
.tmpl-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
}
.tmpl-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.tmpl-dot-on {
  background: var(--accent);
  transform: scale(1.45);
  box-shadow: 0 0 8px var(--accent);
}

/* ── Shared thumbnail helpers ── */
.t-bar { display: block; border-radius: 3px; flex-shrink: 0; }
.t-mono-label {
  font-family: var(--font-mono), monospace;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  opacity: 0.62;
  margin-bottom: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
}

/* ── 1 · Pitch Cover ── */
.tmpl-thumb-cover {
  background: linear-gradient(135deg, #1e1240 0%, #0d0820 100%);
  justify-content: flex-end;
}
.tmpl-thumb-cover::before {
  content: '';
  position: absolute;
  top: -18px; right: -14px;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.42) 0%, transparent 70%);
  pointer-events: none;
}
.tmpl-thumb-cover .t-mono-label { color: rgba(167, 139, 250, 0.7); }

/* ── 2 · Analytics Dashboard ── */
.tmpl-thumb-analytics {
  background: #090d18;
  gap: 0.45rem;
}
.t-kpi-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
}
.t-kpi-box {
  background: #111827;
  border: 1px solid #1e2a45;
  border-radius: 4px;
  padding: 0.3rem 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.t-kpi-val { font-family: var(--font-mono), monospace; font-size: 0.72rem; font-weight: 700; display: block; }
.t-kpi-key { font-size: 0.44rem; color: rgba(255, 255, 255, 0.3); letter-spacing: 0.05em; display: block; }
.t-bar-row { display: flex; gap: 3px; align-items: flex-end; height: 28px; }
.t-bar-col { flex: 1; border-radius: 2px 2px 0 0; }

/* ── 3 · Pricing Tiers ── */
.tmpl-thumb-pricing {
  background: #f8fafc;
  flex-direction: row;
  gap: 0.38rem;
  align-items: stretch;
  padding: 0.85rem 0.7rem;
}
.t-plan-col {
  flex: 1;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 0.4rem 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.t-plan-col.highlight {
  border-color: #6366f1;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.3);
}

/* ── 4 · Quarterly Roadmap ── */
.tmpl-thumb-roadmap {
  background: #0b1120;
  justify-content: center;
}
.t-timeline-row {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-top: 6px;
  width: 100%;
}
.t-timeline-row::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.t-tnode {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
}
.t-tnode-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid;
}
.t-tnode-q {
  font-family: var(--font-mono), monospace;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── 5 · Problem & Solution ── */
.tmpl-thumb-problem {
  background: #0f172a;
  flex-direction: row;
  padding: 0;
  gap: 0;
}
.t-half {
  flex: 1;
  height: 100%;
  padding: 0.9rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.t-half:last-child { border-right: none; }

/* ── 6 · Stats & KPIs ── */
.tmpl-thumb-stats {
  background: #0f172a;
  gap: 0.3rem;
}
.t-stat-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
  width: 100%;
}
.t-stat-box {
  border-radius: 5px;
  border: 1px solid;
  padding: 0.35rem 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.t-stat-num { font-family: var(--font-mono), monospace; font-size: 0.8rem; font-weight: 700; }
.t-stat-key { font-size: 0.44rem; color: rgba(255, 255, 255, 0.3); letter-spacing: 0.05em; }

/* ── 7 · Case Study ── */
.tmpl-thumb-case {
  background: #0f172a;
  gap: 0.4rem;
}
.t-case-metric-row { display: flex; gap: 0.3rem; }
.t-case-metric-box {
  flex: 1;
  background: rgba(52, 211, 153, 0.05);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 5px;
  padding: 0.45rem 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.t-case-num { font-family: var(--font-mono), monospace; font-size: 0.78rem; font-weight: 700; color: #34d399; }
.t-case-key { font-size: 0.42rem; color: rgba(255, 255, 255, 0.3); text-align: center; }

/* ── 8 · SWOT ── */
.tmpl-thumb-swot {
  background: #f0fdf4;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  gap: 0;
}
.t-swot-cell {
  flex: 0 0 50%;
  width: 50%;
  height: 50%;
  padding: 0.45rem 0.55rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.t-swot-cell-s { background: rgba(16,185,129,0.08); border-right: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
.t-swot-cell-w { background: rgba(239,68,68,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
.t-swot-cell-o { background: rgba(59,130,246,0.06); border-right: 1px solid rgba(0,0,0,0.06); }
.t-swot-cell-t { background: rgba(245,158,11,0.06); }
.t-swot-lbl {
  font-family: var(--font-mono), monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.t-swot-cell-s .t-swot-lbl { color: #15803d; }
.t-swot-cell-w .t-swot-lbl { color: #dc2626; }
.t-swot-cell-o .t-swot-lbl { color: #2563eb; }
.t-swot-cell-t .t-swot-lbl { color: #d97706; }

/* Responsive */
@media (max-width: 900px) {
  .tmpl-carousel-wrap { --tmpl-card-w: 260px; }
}
@media (max-width: 600px) {
  .tmpl-carousel-wrap { --tmpl-card-w: calc(100vw - 14% - 96px); }
}

/* latin-ext */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/7ab938503e4547a1-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/13971731025ec697-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/7ab938503e4547a1-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/13971731025ec697-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/7ab938503e4547a1-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/13971731025ec697-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/7ab938503e4547a1-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/13971731025ec697-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/7ab938503e4547a1-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/13971731025ec697-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: '__DM_Sans_Fallback_e64f39';src: local("Arial");ascent-override: 94.90%;descent-override: 29.66%;line-gap-override: 0.00%;size-adjust: 104.53%
}.__className_e64f39 {font-family: '__DM_Sans_e64f39', '__DM_Sans_Fallback_e64f39';font-style: normal
}.__variable_e64f39 {--font-dm-sans: '__DM_Sans_e64f39', '__DM_Sans_Fallback_e64f39'
}

/* cyrillic-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/2654dbf24aea7c5c-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/28d9a5bcdfe1d85c-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/f9ab74ff5df93b56-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/f884487c2e174fcf-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/f36144f235cd456e-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/58f386aa6b1a2a92-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/011e180705008d6f-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/7ba5fb2a8c88521c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/92eeb95d069020cc-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/d3ebbfd689654d3a-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/ef4d5661765d0e49-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/d29838c109ef09b4-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/e40af3453d7c920a-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/99dcf268bda04fe5-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/98e207f02528a563-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/73cb51aac9c97f90-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/d26bbd13d6b70f89-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/20535187d867b7b9-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/5356a6a4f2c8c8d8-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/db96af6b531dc71f-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: '__IBM_Plex_Mono_Fallback_131c8e';src: local("Arial");ascent-override: 76.16%;descent-override: 20.43%;line-gap-override: 0.00%;size-adjust: 134.59%
}.__className_131c8e {font-family: '__IBM_Plex_Mono_131c8e', '__IBM_Plex_Mono_Fallback_131c8e';font-style: normal
}.__variable_131c8e {--font-mono: '__IBM_Plex_Mono_131c8e', '__IBM_Plex_Mono_Fallback_131c8e'
}

