/* =========================================================================
   O Estagiário — hotsite. CSS puro, sem dependências.
   Sistema 8pt · tipografia do sistema (Segoe UI no Windows, como o app).
   ========================================================================= */

:root {
  /* Marca + neutros (paleta sóbria; o pastel do ícone só aparece no brilho do herói) */
  --brand: #1F6FEB;
  --brand-dark: #0B5FD0;
  --brand-soft: #EAF1FE;
  --ink: #0F172A;
  --body: #45556A;
  --muted: #6B7A90;
  --bg: #FFFFFF;
  --bg-alt: #F6F8FC;
  --line: #E7EBF2;
  --success: #16A34A;
  --navy: #0B1B33;

  /* Tipografia: pilha do sistema → Segoe UI no Windows (mesma fonte do app), San Francisco no Apple. */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;

  /* Espaçamento (grade de 8pt) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 1px rgba(15,23,42,.04);
  --shadow-md: 0 10px 30px rgba(15,23,42,.08), 0 2px 8px rgba(15,23,42,.04);
  --shadow-lg: 0 30px 70px rgba(15,23,42,.14), 0 8px 24px rgba(15,23,42,.06);

  --container: 1200px;
  --pad-x: clamp(20px, 5vw, 80px);
}

/* ---------------------------- Reset / base ---------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.125rem;          /* 18px */
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
h1, h2, h3 { color: var(--ink); line-height: 1.1; margin: 0; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.container-narrow { max-width: 760px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: var(--s-3) var(--s-4); border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 6px; }

.eyebrow {
  font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); margin-bottom: var(--s-4);
}
.eyebrow-light { color: #9DBDF6; }

/* ---------------------------- Botões ---------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  font-family: inherit; font-size: 1rem; font-weight: 600; line-height: 1;
  padding: 14px 22px; border-radius: var(--radius-pill); border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-lg { padding: 17px 28px; font-size: 1.0625rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(31,111,235,.28); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(31,111,235,.34); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { color: var(--ink); border-color: #CFD8E6; transform: translateY(-1px); }

/* ---------------------------- Cabeçalho ---------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-elevated { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(15,23,42,.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: var(--s-5); }
.brand { display: inline-flex; align-items: center; gap: var(--s-3); color: var(--ink); font-weight: 700; }
.brand:hover { color: var(--ink); }
.brand-mark { border-radius: 9px; box-shadow: var(--shadow-sm); }
.brand-name { font-size: 1.125rem; letter-spacing: -0.01em; }

.nav { display: flex; gap: var(--s-6); }
.nav a { color: var(--body); font-size: .9375rem; font-weight: 500; }
.nav a:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: var(--s-3); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-mobile { display: none; flex-direction: column; gap: var(--s-2); padding: var(--s-4) var(--pad-x) var(--s-6); border-bottom: 1px solid var(--line); background: #fff; }
.menu-mobile a { color: var(--ink); font-weight: 600; padding: var(--s-3) 0; }
.menu-mobile .btn { margin-top: var(--s-3); }

/* ---------------------------- Herói ---------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 104px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(2.25rem, 1.3rem + 3.6vw, 4rem); margin-bottom: var(--s-5); }
.hero .lead { font-size: clamp(1.125rem, 1rem + .55vw, 1.375rem); color: var(--body); max-width: 36ch; margin-bottom: var(--s-6); }
.hero .lead strong { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-6); }
.hero-trust { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); color: var(--muted); font-size: .9375rem; }
.hero-trust li { position: relative; padding-left: 22px; }
.hero-trust li::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 14px; height: 14px; transform: translateY(-50%);
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
}

/* Brilho pastel (eco do ícone) atrás do mockup — o ÚNICO toque colorido da página */
.hero-visual { position: relative; }
.hero-glow {
  position: absolute; inset: -12% -8% -12% -4%; z-index: -1; filter: blur(46px); opacity: .5;
  background:
    radial-gradient(40% 50% at 20% 30%, rgba(31,111,235,.45), transparent 70%),
    radial-gradient(40% 45% at 80% 25%, rgba(236,128,160,.40), transparent 70%),
    radial-gradient(45% 50% at 70% 85%, rgba(60,196,140,.38), transparent 70%);
}

/* Mockup do app (HTML/CSS) */
.app-window { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.win-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #FBFCFE; border-bottom: 1px solid var(--line); }
.win-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #DEE4EE; }
.win-title { margin-left: 10px; font-size: .8125rem; color: var(--muted); font-weight: 600; }
.win-body { display: grid; grid-template-columns: 168px 1fr; min-height: 332px; }
.win-nav { padding: 12px; background: #FAFBFE; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.win-nav-item { font-size: .8125rem; color: var(--body); padding: 9px 12px; border-radius: 9px; font-weight: 500; }
.win-nav-item.is-active { background: var(--brand-soft); color: var(--brand-dark); font-weight: 600; }
.win-content { padding: 22px 24px; }
.win-h { font-size: 1.25rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; margin-bottom: 16px; }
.win-stats { display: flex; gap: 28px; margin-bottom: 20px; }
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat-label { font-size: .6875rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.stat-num { font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.win-card { border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin-bottom: 12px; background: #fff; box-shadow: var(--shadow-sm); }
.win-card-row { display: flex; align-items: center; gap: 12px; }
.win-card-text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.win-card-text strong { color: var(--ink); font-size: .9375rem; }
.win-card-text span { color: var(--muted); font-size: .8125rem; }
.doc-ico { width: 30px; height: 30px; border-radius: 8px; background: var(--brand-soft); flex: none; position: relative; }
.doc-ico::after { content:""; position:absolute; inset: 8px; border-radius: 3px; background: linear-gradient(transparent 40%, var(--brand) 40%, var(--brand) 52%, transparent 52%, transparent 70%, var(--brand) 70%, var(--brand) 82%, transparent 82%); opacity:.5; }
.doc-ico-ok { background: #E7F6EE; }
.doc-ico-ok::after { background: none; }
.badge { font-size: .6875rem; font-weight: 700; padding: 5px 10px; border-radius: var(--radius-pill); flex: none; }
.badge-run { background: var(--brand-soft); color: var(--brand-dark); }
.badge-ok { background: #E7F6EE; color: #15803D; }
.win-progress { height: 6px; border-radius: 3px; background: var(--line); margin-top: 12px; overflow: hidden; }
.win-progress span { display: block; height: 100%; width: 76%; background: var(--brand); border-radius: 3px; }
.win-card-done { opacity: .92; }

/* ---------------------------- Faixa de confiança ---------------------------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--bg-alt); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); padding-block: var(--s-7); }
.trust-item { display: flex; gap: var(--s-3); align-items: flex-start; }
.trust-ico { flex: none; width: 42px; height: 42px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--brand); box-shadow: var(--shadow-sm); }
.trust-ico svg { width: 22px; height: 22px; }
.trust-item strong { display: block; color: var(--ink); font-size: 1rem; }
.trust-item p { font-size: .875rem; color: var(--muted); margin-top: 2px; }

/* ---------------------------- Seções ---------------------------- */
.section { padding-block: clamp(64px, 8vw, 128px); }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin: 0 auto clamp(40px, 5vw, 72px); text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem); margin-bottom: var(--s-4); }
.section-sub { font-size: 1.125rem; color: var(--body); }
.section-head-light h2 { color: #fff; }
.section-sub-light { color: #B9C7DD; }

/* Cards de recurso */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-6) var(--s-5); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #DCE4F0; }
.card-ico { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px; background: var(--brand-soft); color: var(--brand); margin-bottom: var(--s-4); }
.card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.1875rem; margin-bottom: var(--s-3); }
.card p { font-size: .9375rem; color: var(--body); }

/* Por dentro: os agentes */
.cards.cards-3 { grid-template-columns: repeat(3, 1fr); }
.agent-tag { display: inline-block; font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); background: var(--brand-soft); padding: 5px 11px; border-radius: var(--radius-pill); margin-bottom: var(--s-4); }
.learn-note { margin-top: var(--s-6); background: var(--brand-soft); border: 1px solid #D6E4FD; border-radius: var(--radius); padding: var(--s-5) var(--s-6); color: var(--body); font-size: 1.0625rem; }
.learn-note strong { color: var(--ink); font-weight: 600; }
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); margin-top: var(--s-5); }
.mode { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-6); box-shadow: var(--shadow-sm); }
.mode-accent { border-color: #CFE0FD; box-shadow: 0 12px 30px rgba(31,111,235,.10); }
.mode-head { display: flex; align-items: baseline; gap: var(--s-3); margin-bottom: var(--s-3); }
.mode-kicker { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.mode h3 { font-size: 1.1875rem; }
.mode p { color: var(--body); font-size: .9375rem; }

/* Passos */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); counter-reset: step; }
.step { position: relative; padding-top: var(--s-2); }
.step-num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 700; font-size: 1.125rem; margin-bottom: var(--s-4); }
.step h3 { font-size: 1.25rem; margin-bottom: var(--s-3); }
.step p { font-size: .9375rem; color: var(--body); }

/* Mergulhos de recurso */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.feature + .feature { margin-top: clamp(56px, 7vw, 112px); }
.feature-reverse .feature-text { order: 2; }
.feature h2 { font-size: clamp(1.625rem, 1.1rem + 1.6vw, 2.125rem); margin-bottom: var(--s-4); }
.feature-text > p { color: var(--body); margin-bottom: var(--s-5); }
.ticks { display: grid; gap: var(--s-3); }
.ticks li { position: relative; padding-left: 30px; color: var(--body); font-size: 1rem; }
.ticks li strong { color: var(--ink); font-weight: 600; }
.ticks li::before {
  content:""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: #E7F6EE no-repeat center/12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
}

/* Visuais dos mergulhos */
.feature-visual { display: grid; place-items: center; }
.mini-doc, .review-card, .fanout { width: 100%; max-width: 420px; }
.mini-doc { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 28px; aspect-ratio: 4/3; }
.mini-doc-bar { height: 12px; width: 45%; background: var(--ink); border-radius: 4px; margin-bottom: 22px; }
.mini-line { height: 9px; border-radius: 4px; background: var(--line); margin-bottom: 12px; }
.mini-line.w-100 { width: 100%; } .mini-line.w-90 { width: 90%; } .mini-line.w-80 { width: 80%; }
.mini-line.w-70 { width: 70%; } .mini-line.w-60 { width: 60%; }
.mini-table { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.mini-table span { height: 22px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 5px; }
.mini-stamp { position: absolute; right: 20px; bottom: 18px; width: 52px; height: 52px; border-radius: 50%; background: #E7F6EE; color: var(--success); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.mini-stamp svg { width: 28px; height: 28px; }

.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: var(--s-6); display: grid; gap: var(--s-4); }
.review-row { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 500; font-size: .9375rem; }
.rev-ok { flex: none; width: 24px; height: 24px; border-radius: 50%; background: #E7F6EE no-repeat center/14px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E"); }
.review-verdict { margin-top: var(--s-2); text-align: center; font-weight: 700; color: #15803D; background: #E7F6EE; padding: 12px; border-radius: 10px; letter-spacing: .02em; }

.fanout { display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--s-4); align-items: center; }
.fanout-list { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); padding: 16px; display: grid; gap: 9px; }
.fanout-list span { font-size: .75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.fanout-list i { height: 8px; border-radius: 4px; background: var(--line); }
.fanout-arrow { color: var(--brand); } .fanout-arrow svg { width: 26px; height: 26px; }
.fanout-docs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fanout-docs span { aspect-ratio: 3/4; background: #fff; border: 1px solid var(--line); border-radius: 7px; box-shadow: var(--shadow-sm); position: relative; }
.fanout-docs span::after { content:""; position:absolute; left: 8px; right: 8px; top: 10px; height: 5px; background: var(--brand-soft); border-radius: 3px; box-shadow: 0 9px 0 var(--bg-alt), 0 18px 0 var(--bg-alt); }

/* ---------------------------- Segurança ---------------------------- */
.security { background: radial-gradient(120% 120% at 80% 0%, #13294A 0%, var(--navy) 55%); color: #C7D3E6; }
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.sec-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding: var(--s-6) var(--s-5); }
.sec-item h3 { color: #fff; font-size: 1.0625rem; margin-bottom: var(--s-3); }
.sec-item p { font-size: .9375rem; color: #AEBCD3; }

/* ---------------------------- Para quem ---------------------------- */
.usecases { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.usecase { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-5); box-shadow: var(--shadow-sm); }
.usecase strong { display: block; color: var(--ink); margin-bottom: var(--s-2); font-size: 1.0625rem; }
.usecase span { font-size: .9375rem; color: var(--body); }

/* ---------------------------- FAQ ---------------------------- */
.faq { display: grid; gap: var(--s-3); }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: var(--s-5); font-weight: 600; color: var(--ink); font-size: 1.0625rem; display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--brand); font-weight: 400; line-height: 1; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 var(--s-5) var(--s-5); }
.faq-a p { color: var(--body); font-size: 1rem; }

/* ---------------------------- CTA final ---------------------------- */
.cta-final { padding-block: clamp(64px, 8vw, 120px); background: var(--bg-alt); border-top: 1px solid var(--line); }
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem); margin-bottom: var(--s-4); }
.cta-inner > p { color: var(--body); font-size: 1.125rem; margin-bottom: var(--s-6); }
.cta-mail { margin-top: var(--s-5); color: var(--muted); font-size: .9375rem; }

/* ---------------------------- Rodapé ---------------------------- */
.site-footer { border-top: 1px solid var(--line); padding-block: var(--s-7); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: var(--s-3); }
.footer-brand img { border-radius: 8px; }
.footer-brand strong { display: block; color: var(--ink); }
.footer-brand span { font-size: .875rem; color: var(--muted); }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; font-size: .875rem; }
.footer-meta span { color: var(--muted); }

/* ---------------------------- Revelar on-scroll ---------------------------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------------------------- Responsivo ---------------------------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 540px; margin-inline: auto; width: 100%; }
  .hero .lead { max-width: none; }
  .cards, .trust-grid, .sec-grid, .usecases { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: var(--s-5); }
  .feature, .feature-reverse .feature-text { grid-template-columns: 1fr; order: 0; }
  .feature-visual { order: -1; }
}
@media (max-width: 720px) {
  .nav, .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { height: 64px; }
  .cards, .trust-grid, .sec-grid, .usecases, .modes { grid-template-columns: 1fr; }
  .win-body { grid-template-columns: 120px 1fr; }
  .win-stats { gap: 18px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
}
