/* ===== Dota Coach — design tokens ===== */
:root {
  /* dark (default) */
  --bg: #0b0d12;
  --bg-2: #0f1218;
  --surface: #14171f;
  --surface-2: #1b1f2a;
  --border: #262b38;
  --border-strong: #343a4c;
  --text: #e7e9ee;
  --text-muted: #8b93a3;
  --text-faint: #5a6276;

  --accent: #e23a3a;        /* red CTA + critical */
  --accent-hover: #f04545;
  --gold: #c9a227;
  --green: #7ec850;
  --blue: #4a78c4;
  --purple: #8a6bd6;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --maxw: 1240px;
}


* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-feature-settings: "calt" 0; }

/* ===== layout ===== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

section { padding: 96px 0; border-top: 1px solid var(--border); }
section:first-of-type { border-top: none; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.section-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.section-eyebrow::before { content: ""; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: inline-block; }
.section-title { font-size: 44px; line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; margin: 0; max-width: 700px; }
.section-sub { color: var(--text-muted); max-width: 560px; margin: 16px 0 0; font-size: 17px; }
@media (max-width: 720px) { .section-title { font-size: 32px; } }

/* ===== header / nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(120%);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.01em; }
.brand { gap: 14px; }
.brand-logo { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; background: var(--surface-2); }
.brand-text { font-size: 17px; line-height: 1.1; }
.brand-text small { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }
.nav { }
.nav-inner { height: 76px; }
footer .brand-logo { width: 56px; height: 56px; }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ===== buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: var(--radius); font-size: 14px; font-weight: 600; border: 1px solid transparent; transition: all 0.15s; line-height: 1; white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--surface-2); border-color: var(--text-faint); }
.btn-tertiary { background: transparent; color: var(--text-muted); border-color: transparent; padding: 11px 0; }
.btn-tertiary:hover { color: var(--text); }
.btn-lg { padding: 16px 24px; font-size: 15px; }
.btn-xl { padding: 22px 32px; font-size: 17px; border-radius: 10px; }
.btn .arrow { transition: transform 0.15s; }
.btn:hover .arrow { transform: translateX(2px); }

/* ===== hero ===== */
.hero { padding: 80px 0 96px; border-top: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 8px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px color-mix(in oklab, var(--green) 18%, transparent); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero h1 { font-size: 64px; line-height: 1.04; font-weight: 800; letter-spacing: -0.03em; margin: 0 0 20px; text-wrap: balance; }
.hero h1 .accent { color: var(--accent); }
.hero h1 .underline { position: relative; white-space: nowrap; }
.hero-sub { font-size: 19px; color: var(--text-muted); margin: 0 0 36px; max-width: 540px; line-height: 1.5; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-meta { display: flex; gap: 24px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero-meta-item .num { font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 600; color: var(--text); }
.hero-meta-item .lbl { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

@media (max-width: 720px) { .hero h1 { font-size: 44px; } .hero-sub { font-size: 17px; } }

/* ===== coach panel (hero visual) ===== */
.coach-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 80px -30px rgba(0,0,0,0.5), 0 0 0 1px color-mix(in oklab, var(--border) 50%, transparent); }
.coach-head { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--surface-2); font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-muted); }
.coach-head .traffic { display: flex; gap: 6px; }
.coach-head .traffic span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.coach-head .live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; }
.coach-head .live .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 1.4s infinite; }

.coach-meta { display: grid; grid-template-columns: repeat(4, 1fr); padding: 14px 16px; gap: 12px; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.coach-meta div { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-faint); }
.coach-meta div b { display: block; font-weight: 600; color: var(--text); font-size: 13px; margin-top: 2px; letter-spacing: -0.01em; }
.coach-meta div.alert b { color: var(--accent); }
.coach-meta div.ok b { color: var(--green); }

.coach-body { padding: 18px 18px 4px; min-height: 320px; font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 1.5; }
.coach-line { display: grid; grid-template-columns: 60px 1fr; gap: 14px; padding: 8px 0; opacity: 0; animation: fadeIn 0.45s forwards; }
.coach-line .ts { color: var(--text-faint); font-size: 12px; padding-top: 1px; }
.coach-line .msg { color: var(--text); }
.coach-line .msg .tag { display: inline-block; padding: 1px 6px; border-radius: 3px; font-size: 11px; margin-right: 6px; font-weight: 600; letter-spacing: 0.02em; }
.coach-line .msg .tag.alert { background: color-mix(in oklab, var(--accent) 18%, transparent); color: var(--accent); }
.coach-line .msg .tag.tip { background: color-mix(in oklab, var(--gold) 18%, transparent); color: var(--gold); }
.coach-line .msg .tag.info { background: color-mix(in oklab, var(--blue) 18%, transparent); color: var(--blue); }
.coach-line .msg .tag.win { background: color-mix(in oklab, var(--green) 18%, transparent); color: var(--green); }
.coach-line .msg em { font-style: normal; color: var(--text-faint); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

.coach-foot { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-top: 1px solid var(--border); background: var(--surface-2); font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-muted); }
.coach-foot .wave { flex: 1; height: 22px; display: flex; align-items: center; gap: 2px; }
.coach-foot .wave span { display: inline-block; width: 3px; background: var(--text-faint); border-radius: 2px; animation: wave 1.1s ease-in-out infinite; }
@keyframes wave { 0%, 100% { height: 4px; } 50% { height: 18px; } }

/* ===== "как это звучит" — audio chips ===== */
.scenarios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .scenarios { grid-template-columns: 1fr; } }
.scenario { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 20px; transition: border-color 0.15s; }
.scenario:hover { border-color: var(--border-strong); }
.scenario-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; display: flex; align-items: center; gap: 10px; }
.scenario-tag .when { color: var(--accent); }
.scenario h3 { font-size: 19px; font-weight: 600; margin: 0; letter-spacing: -0.01em; line-height: 1.3; }
.scenario .ctx { font-size: 13px; color: var(--text-muted); line-height: 1.5; font-family: 'JetBrains Mono', monospace; padding: 12px 14px; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); }
.scenario .ctx b { color: var(--text); font-weight: 600; }

.audio-chip { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all 0.15s; margin-top: auto; font: inherit; text-align: left; width: 100%; }
.audio-chip:hover { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 6%, var(--surface-2)); }
.audio-chip .play { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; flex-shrink: 0; transition: background 0.15s, box-shadow 0.15s; }
.audio-chip .play svg { width: 12px; height: 12px; fill: #fff; margin-left: 2px; }
.audio-chip.playing { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 10%, var(--surface-2)); }
.audio-chip.playing .play { background: var(--accent-hover); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 28%, transparent); animation: chipPulse 1.4s ease-in-out infinite; }
.audio-chip.playing .play svg { margin-left: 0; }
@keyframes chipPulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 28%, transparent); }
  50%      { box-shadow: 0 0 0 8px color-mix(in oklab, var(--accent) 10%, transparent); }
}
.audio-chip .quote { font-size: 14px; line-height: 1.45; color: var(--text); }
.audio-chip .quote .speaker { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }

/* ===== feature grid ===== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 960px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features { grid-template-columns: 1fr; } }
.feature { padding: 32px; background: var(--surface); display: flex; flex-direction: column; gap: 12px; transition: background 0.15s; }
.feature:hover { background: var(--surface-2); }
.feature-icon { width: 32px; height: 32px; display: grid; place-items: center; color: var(--text-muted); margin-bottom: 4px; }
.feature h3 { font-size: 17px; font-weight: 600; margin: 0; letter-spacing: -0.005em; }
.feature p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0; }
.feature .tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ===== how it works ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; }
.step-num { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--accent); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.step-num::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.step h3 { font-size: 19px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.step p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0 0 16px; }
.step .stack { display: flex; flex-wrap: wrap; gap: 6px; }
.step .pill { font-family: 'JetBrains Mono', monospace; font-size: 11px; padding: 4px 8px; border-radius: 4px; background: var(--bg-2); border: 1px solid var(--border); color: var(--text-muted); }

/* ===== pricing / beta ===== */
.beta-card { background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 56px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 960px) { .beta-card { grid-template-columns: 1fr; padding: 36px; gap: 32px; } }
.beta-card .tag { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 8px; }
.beta-card .tag::before { content: ""; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.beta-card h2 { font-size: 38px; line-height: 1.1; font-weight: 700; margin: 0 0 16px; letter-spacing: -0.02em; }
.beta-card p { color: var(--text-muted); font-size: 16px; margin: 0 0 28px; max-width: 460px; }
.beta-card .checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.beta-card .checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text-muted); }
.beta-card .checks li b { color: var(--text); font-weight: 600; }
.beta-card .checks .ck { width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--green); color: var(--green); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.beta-card .checks .ck svg { width: 10px; height: 10px; }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); padding: 0; }
.faq-q { width: 100%; background: transparent; border: none; color: var(--text); font-size: 18px; font-weight: 600; padding: 24px 0; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 24px; letter-spacing: -0.01em; font-family: inherit; }
.faq-q .ic { width: 24px; height: 24px; flex-shrink: 0; border: 1px solid var(--border-strong); border-radius: 50%; display: grid; place-items: center; transition: transform 0.2s, border-color 0.15s; color: var(--text-muted); }
.faq-q:hover .ic { border-color: var(--text); color: var(--text); }
.faq-item[open] .faq-q .ic { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.faq-a { padding: 0 0 24px; color: var(--text-muted); font-size: 15px; line-height: 1.6; max-width: 700px; }
.faq-a code { font-family: 'JetBrains Mono', monospace; font-size: 13px; background: var(--surface-2); padding: 1px 6px; border-radius: 3px; color: var(--text); }

/* ===== footer ===== */
footer { padding: 64px 0 48px; border-top: 1px solid var(--border); background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-col h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin: 0 0 16px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; padding: 6px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin: 12px 0 0; max-width: 320px; line-height: 1.5; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; margin-top: 48px; border-top: 1px solid var(--border); font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-faint); }

/* ===== heroes section ===== */
/* Компактные карточки: auto-fill ~6 в ряд на десктопе (≈¼ прежней площади). */
.heroes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
@media (max-width: 560px) { .heroes-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); } }
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s cubic-bezier(.2,.7,.2,1), border-color 0.15s, background 0.18s;
}
.hero-card:hover { transform: translateY(-3px); border-color: var(--border-strong); background: var(--surface-2); }
.hero-card img {
  width: 100%;
  aspect-ratio: 234 / 130;   /* Steam dota_react portrait ratio */
  object-fit: cover;
  background: var(--bg-2);  /* fallback fill if CDN slow */
  display: block;
  border-bottom: 1px solid var(--border);
}
.hero-card .info { padding: 8px 10px 10px; display: flex; flex-direction: column; gap: 2px; }
.hero-card h3 { font-size: 13px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.hero-card .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== utility ===== */
.kbd { font-family: 'JetBrains Mono', monospace; font-size: 11px; padding: 2px 6px; border: 1px solid var(--border-strong); border-bottom-width: 2px; border-radius: 4px; background: var(--surface-2); color: var(--text-muted); }

/* ===== UTP / pitch section ===== */
.utp { padding: 96px 0; border-top: 1px solid var(--border); }
.utp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 960px) { .utp-grid { grid-template-columns: 1fr; } }
.utp-card { padding: 40px 36px; background: var(--surface); display: flex; flex-direction: column; gap: 18px; position: relative; overflow: hidden; transition: background 0.2s; }
.utp-card:hover { background: var(--surface-2); }
.utp-card .num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); letter-spacing: 0.08em; }
.utp-card .punch { font-size: 28px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
.utp-card .punch em { color: var(--accent); font-style: normal; }
.utp-card .body { color: var(--text-muted); font-size: 15px; line-height: 1.55; margin: 0; }
.utp-card .badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-muted); align-self: flex-start; margin-top: auto; }
.utp-card .badge .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px color-mix(in oklab, var(--green) 18%, transparent); animation: pulse 2s infinite; }

/* ===== reveal animations ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* highlight ring on hovered coach meta */
.coach-meta div { transition: background 0.2s; padding: 4px 8px; margin: -4px -8px; border-radius: 4px; }
.coach-meta div.alert { animation: alertFlash 3.6s ease-in-out infinite; }
@keyframes alertFlash {
  0%, 70%, 100% { background: transparent; }
  78%, 84% { background: color-mix(in oklab, var(--accent) 14%, transparent); }
}

/* hero badge subtle attention */
.hero-badge { animation: floatIn 0.8s cubic-bezier(.2,.7,.2,1); }
@keyframes floatIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* audio chip play button breathe */
.audio-chip .play { animation: playBreathe 3s ease-in-out infinite; }
@keyframes playBreathe {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 50%, transparent); }
  50% { box-shadow: 0 0 0 8px color-mix(in oklab, var(--accent) 0%, transparent); }
}

/* feature icon hover */
.feature { transition: background 0.2s, transform 0.2s; }
.feature:hover { transform: translateY(-2px); }
.feature-icon { transition: color 0.2s, transform 0.2s; }
.feature:hover .feature-icon { color: var(--accent); transform: scale(1.08); }

/* hero meta count up baseline */
.hero-meta-item .num { transition: color 0.3s; }

