:root {
  --bg: #0A0A0B;
  --bg-soft: #111114;
  --bg-card: #16161B;
  --line: #1F1F26;
  --line-strong: #2A2A33;
  --text: #FAFAFA;
  --text-muted: #8A8A93;
  --text-dim: #5C5C66;
  --accent: #9947EB;
  --accent-soft: rgba(153, 71, 235, 0.14);
  --accent-line: rgba(153, 71, 235, 0.40);
  --light-bg: #FAFAF7;
  --light-line: #E8E6E0;
  --light-text: #0A0A0B;
  --light-muted: #5C5C66;
  --max: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(64px, 9vw, 120px) 0; }
.section-light { background: var(--light-bg); color: var(--light-text); }

/* Type */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 6px 12px; border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.section-light .eyebrow { color: var(--light-muted); border-color: var(--light-line); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.08; font-weight: 600; }
h1 { font-size: clamp(40px, 6.4vw, 84px); letter-spacing: -0.035em; line-height: 1.02; font-weight: 600; }
h2 { font-size: clamp(32px, 4.6vw, 56px); letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 2vw, 26px); }
.lede { font-size: clamp(16px, 1.4vw, 20px); color: var(--text-muted); max-width: 640px; }
.section-light .lede { color: var(--light-muted); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 11, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 14px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-muted); font-size: 14px; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  transition: transform 0.1s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 20px -10px rgba(153, 71, 235, 0.6), 0 2px 6px -2px rgba(153, 71, 235, 0.35);
}
.btn-primary:hover {
  background: #B47AF0;
  box-shadow: 0 14px 30px -10px rgba(153, 71, 235, 0.8), 0 4px 10px -2px rgba(153, 71, 235, 0.45);
  transform: translateY(-1px);
}
.btn-ghost { color: var(--text); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--text-muted); background: var(--bg-soft); }
.section-light .btn-ghost { color: var(--light-text); border-color: var(--light-line); }
.section-light .btn-ghost:hover { border-color: var(--light-text); background: #fff; }
.btn-arrow::after {
  content: '→'; transition: transform 0.15s;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* Hero */
.hero { padding-top: clamp(64px, 10vw, 140px); padding-bottom: clamp(48px, 7vw, 96px); position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 500px at 80% -10%, var(--accent-soft), transparent 60%),
              radial-gradient(700px 400px at 0% 100%, rgba(120, 80, 220, 0.08), transparent 60%);
}
.hero-spark {
  position: absolute; inset: auto 0 0 0; width: 100%; height: 70%;
  pointer-events: none; opacity: 0.85;
  mask-image: linear-gradient(to right, transparent 0%, #000 35%, #000 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 35%, #000 100%);
}
.hero-inner { position: relative; }
.stat-trend {
  display: inline-block; margin-left: 6px; color: var(--accent);
  font-size: 0.55em; font-weight: 500; transform: translateY(-0.3em);
  letter-spacing: 0;
}
.hero h1 { margin: 24px 0 28px; max-width: 18ch; }
.hero h1 .accent { color: var(--accent); }
.hero .lede { font-size: clamp(17px, 1.6vw, 22px); max-width: 620px; color: #c8c8d0; }
.hero-ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 40px; display: flex; gap: 28px; flex-wrap: wrap; align-items: center;
  color: var(--text-dim); font-size: 13px;
}
.hero-platforms { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.hero-platforms img {
  width: 22px; height: 22px; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.55;
  transition: opacity 0.2s, transform 0.2s;
}
.hero-platforms img:hover { opacity: 1; transform: scale(1.15); }
.hero-reach {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  color: var(--accent); font-size: 12px; font-weight: 500;
  letter-spacing: 0.02em;
}
.reach-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(153, 71, 235, 0.2);
  animation: reachPulse 2s ease-in-out infinite;
}
@keyframes reachPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(153, 71, 235, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(153, 71, 235, 0); }
}

/* Stats band */
.stats {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat { padding: 36px var(--pad); border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-num {
  font-size: clamp(36px, 3.6vw, 56px); font-weight: 600;
  letter-spacing: -0.035em; color: var(--text); line-height: 1;
}
.stat-num .accent { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 10px; }
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}

/* Section header */
.sh { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin-bottom: 56px; }
.sh-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
.sh-row .sh { margin-bottom: 0; }

/* Manifesto / slogan */
.manifesto {
  padding: clamp(72px, 10vw, 140px) var(--pad);
  text-align: center; position: relative; overflow: hidden;
}
.manifesto::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 360px at 50% 0%, var(--accent-soft), transparent 60%);
}
.manifesto .wrap { position: relative; max-width: 880px; }
.manifesto-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 32px;
}
.manifesto-eyebrow span {
  width: 28px; height: 1px; background: var(--line-strong); display: inline-block;
}
.manifesto-line {
  font-size: clamp(28px, 3.6vw, 48px); line-height: 1.18;
  letter-spacing: -0.025em; font-weight: 600;
  max-width: 22ch; margin: 0 auto 28px;
}
.manifesto-line .accent { color: var(--accent); }
.manifesto-body {
  font-size: clamp(15px, 1.3vw, 18px); color: var(--text-muted);
  max-width: 58ch; margin: 0 auto; line-height: 1.6;
}

/* Differentiators */
.diffs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.diff {
  padding: 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color 0.15s, transform 0.15s;
}
.diff:hover {
  border-color: var(--accent-line); transform: translateY(-3px);
  box-shadow: 0 12px 32px -16px rgba(153, 71, 235, 0.35);
}
.diff-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  color: var(--accent); display: grid; place-items: center;
  margin-bottom: 20px; font-size: 18px;
}
.diff h3 { margin-bottom: 10px; }
.diff p { color: var(--text-muted); font-size: 15px; }
@media (max-width: 860px) { .diffs { grid-template-columns: 1fr; } }

/* Logo strip */
.logos {
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 0; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-soft);
  overflow: hidden;
}
.logo-cell {
  padding: 26px 12px; text-align: center;
  border-right: 1px solid var(--line);
  font-weight: 600; font-size: 13px; color: var(--text);
  letter-spacing: -0.01em;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: background 0.2s, transform 0.2s;
}
.logo-cell img {
  width: auto; height: 34px; max-width: 90%; object-fit: contain;
  transition: transform 0.2s;
}
.logo-cell:last-child { border-right: 0; }
.logo-cell:hover { background: var(--bg-card); transform: translateY(-2px); }
.logo-cell:hover img { transform: scale(1.05); }
@media (max-width: 1000px) {
  .logos { grid-template-columns: repeat(4, 1fr); }
  .logo-cell:nth-child(4) { border-right: 0; }
  .logo-cell:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .logos { grid-template-columns: repeat(2, 1fr); }
  .logo-cell { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .logo-cell:nth-child(odd) { border-right: 1px solid var(--line) !important; }
  .logo-cell:nth-last-child(-n+2) { border-bottom: 0 !important; }
}

/* Cases */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-card); overflow: hidden;
  transition: transform 0.2s, border-color 0.15s;
}
.case:hover {
  transform: translateY(-4px); border-color: var(--accent-line);
  box-shadow: 0 16px 40px -20px rgba(153, 71, 235, 0.35);
}
.case-thumb {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  background: linear-gradient(135deg, #1a1a22, #0d0d12);
}
.case-thumb img { width: 100%; height: 100%; object-fit: cover; }
.case-thumb::after {
  content: '▶'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px);
  color: #fff; display: grid; place-items: center; font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.case-body { padding: 24px; }
.case-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.case h3 { font-size: 22px; margin-bottom: 8px; }
.case p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.case-metric {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 13px;
}
.case-metric strong { color: var(--text); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.case-metric .label { color: var(--text-dim); }
@media (max-width: 920px) { .cases { grid-template-columns: 1fr; } }

/* Platforms */
.platforms {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 0; border: 1px solid var(--light-line); border-radius: var(--radius);
  background: #fff;
}
.plat {
  padding: 32px 20px; text-align: center;
  border-right: 1px solid var(--light-line);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.plat:last-child { border-right: 0; }
.plat-icon { font-size: 28px; display: flex; align-items: center; justify-content: center; height: 32px; }
.plat-icon img { width: 28px; height: 28px; object-fit: contain; transition: transform 0.2s; }
.plat:hover .plat-icon img { transform: scale(1.1); }
.plat-name { font-size: 13px; font-weight: 500; color: var(--light-text); }
.plat-meta { font-size: 11px; color: var(--light-muted); }
@media (max-width: 900px) {
  .platforms { grid-template-columns: repeat(4, 1fr); }
  .plat { border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
  .plat:nth-child(4n) { border-right: 0; }
}
@media (max-width: 500px) { .platforms { grid-template-columns: repeat(2, 1fr); }
  .plat:nth-child(2n) { border-right: 0; } .plat:nth-child(4n) { border-right: 1px solid var(--light-line); }
}

/* Regions */
.regions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.region {
  padding: 24px; background: var(--bg-card);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.region-name { font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.region-detail { color: var(--text-muted); font-size: 13px; }
@media (max-width: 800px) { .regions { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .regions { grid-template-columns: 1fr; } }

/* Process */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step {
  padding: 28px 24px 28px 0; counter-increment: step; position: relative;
  border-right: 1px solid var(--light-line);
}
.step:last-child { border-right: 0; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-size: 13px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.05em; display: block; margin-bottom: 14px;
}
.step h4 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--light-muted); }
@media (max-width: 820px) { .process { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; } .step:nth-child(-n+2) { border-bottom: 1px solid var(--light-line); padding-bottom: 32px; }
  .step:nth-child(n+3) { padding-top: 32px; padding-right: 24px; }
}
@media (max-width: 480px) { .process { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--light-line); padding: 24px 0; }
  .step:last-child { border-bottom: 0; }
}

/* Pricing teaser */
.pricing-teaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pkg {
  padding: 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-card); display: flex; flex-direction: column;
}
.pkg-title { font-size: 14px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.pkg-price { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; }
.pkg-price small { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.pkg-sub { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }
.pkg ul { list-style: none; margin-bottom: 28px; flex: 1; }
.pkg li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: #c8c8d0; }
.pkg li::before { content: '— '; color: var(--accent); }
.pkg li:last-child { border-bottom: 0; }
@media (max-width: 920px) { .pricing-teaser { grid-template-columns: 1fr; } }

/* FAQ */
.faqs { max-width: 820px; }
.faq {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq:last-child { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 18px; font-weight: 500; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--accent); transition: transform 0.2s; }
.faq[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding-top: 12px; color: var(--text-muted); font-size: 15px; max-width: 70ch; }
.section-light .faq { border-color: var(--light-line); }
.section-light .faq-a { color: var(--light-muted); }

/* Final CTA */
.cta-final {
  margin: 0 auto; max-width: 900px; text-align: center;
  padding: clamp(48px, 8vw, 96px) var(--pad);
  background: linear-gradient(135deg, #5336E2 0%, #9947EB 50%, #9D26D9 100%);
  border-radius: 24px; color: #fff;
  box-shadow: 0 30px 80px -30px rgba(153, 71, 235, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px 300px at 20% 0%, rgba(255, 255, 255, 0.12), transparent 60%),
              radial-gradient(500px 300px at 100% 100%, rgba(76, 29, 149, 0.4), transparent 70%);
}
.cta-final > * { position: relative; }
.cta-final h2 { color: #fff; margin-bottom: 16px; }
.cta-final p { color: rgba(255, 255, 255, 0.9); max-width: 540px; margin: 0 auto 32px; }
.cta-final .btn-primary { background: #0A0A0B; color: #fff; }
.cta-final .btn-primary:hover { background: #000; }

/* Footer */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-grid h5 { font-size: 13px; font-weight: 500; color: var(--text); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--text-muted); font-size: 14px; }
.footer-grid a:hover { color: var(--text); }
.footer-grid p { color: var(--text-muted); font-size: 14px; max-width: 320px; margin-top: 12px; }
.footer-slogan { color: var(--accent) !important; font-style: italic; font-weight: 500; margin-top: 16px !important; font-size: 15px !important; letter-spacing: -0.01em; }
.footer-bot {
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  color: var(--text-dim); font-size: 13px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* Forms (contact) */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 640px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bg-card); border: 1px solid var(--line-strong);
  border-radius: 8px; color: var(--text); font: inherit; font-size: 15px;
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--accent);
}
.field textarea { min-height: 120px; resize: vertical; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* Page header (non-home) */
.page-header { padding: clamp(80px, 10vw, 140px) 0 clamp(48px, 6vw, 80px); }
.page-header h1 { font-size: clamp(40px, 5.4vw, 68px); margin-bottom: 20px; max-width: 18ch; }
.page-header .lede { font-size: clamp(17px, 1.5vw, 20px); max-width: 640px; }

/* Pricing page */
.price-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column;
  padding: 36px 32px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-card);
}
.price-card.featured { border-color: var(--accent-line); background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg-card) 40%); }
.price-card h3 { font-size: 22px; margin-bottom: 6px; }
.price-card .pkg-sub { font-size: 14px; }
.price-card .price { font-size: 36px; font-weight: 600; letter-spacing: -0.03em; margin: 24px 0 6px; }
.price-card .price small { font-size: 14px; color: var(--text-muted); font-weight: 400; }
.price-card .price-note { color: var(--text-muted); font-size: 13px; margin-bottom: 28px; }
.price-card ul { list-style: none; margin-bottom: 32px; flex: 1; }
.price-card li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.price-card li::before { content: '✓ '; color: var(--accent); font-weight: 600; }
.price-card li:last-child { border-bottom: 0; }
@media (max-width: 980px) { .price-grid { grid-template-columns: 1fr; } }

/* Cases page */
.case-detail {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px;
  padding: 36px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-card); margin-bottom: 24px;
}
.case-detail h3 { font-size: 28px; margin-bottom: 8px; }
.case-detail .desc { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; }
.case-detail .metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.case-detail .metric {
  padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg-soft);
}
.case-detail .metric-num { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.case-detail .metric-num.accent { color: var(--accent); }
.case-detail .metric-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.case-detail .creators { margin-top: 24px; }
.case-detail .creators-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 12px; }
.case-detail .creators-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.case-detail .creator-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 8px; font-size: 13px; transition: border-color 0.15s;
}
.case-detail .creator-link:hover { border-color: var(--accent); }
.case-detail .creator-link .platform { color: var(--text-dim); font-size: 11px; }
.case-detail .vids { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.case-detail .vid {
  position: relative; aspect-ratio: 16 / 9; border-radius: 8px;
  overflow: hidden; background: #000;
}
.case-detail .vid img { width: 100%; height: 100%; object-fit: cover; }
.case-detail .vid::after {
  content: '▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; background: rgba(0,0,0,0.6);
  display: grid; place-items: center; font-size: 16px; color: #fff;
  border: 1px solid rgba(255,255,255,0.25); transition: background 0.15s;
}
.case-detail .vid:hover::after { background: var(--accent); border-color: var(--accent); }
@media (max-width: 900px) { .case-detail { grid-template-columns: 1fr; } }
