/* ===================================================================
   BetAI Pro — Landing (dark-first, data-dense)
=================================================================== */

:root {
  --color-primary: #3B82F6;
  --color-primary-600: #2563EB;
  --color-primary-700: #1E40AF;
  --color-on-primary: #FFFFFF;
  --color-secondary: #60A5FA;
  --color-accent: #F59E0B;       /* amber highlight / value */
  --color-accent-600: #D97706;
  --color-positive: #10B981;

  --c-blue: #3B82F6;
  --c-amber: #F59E0B;
  --c-green: #10B981;

  --font-sans: 'Fira Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Fira Code', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --container: 1140px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --nav-h: 68px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---- Dark theme (default) ---- */
[data-theme="dark"] {
  --bg: #0B1120;
  --bg-alt: #0E1626;
  --surface: #121C30;
  --surface-2: #18253D;
  --fg: #F1F5F9;
  --fg-muted: #AEBCD4;
  --fg-subtle: #7E8FAC;
  --border: #233149;
  --border-strong: #31425F;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .5);
  --shadow-md: 0 8px 22px rgba(0, 0, 0, .5);
  --shadow-lg: 0 26px 60px rgba(0, 0, 0, .6);
  --ring: rgba(96, 165, 250, .5);
  --glow: rgba(59, 130, 246, .22);
}

/* ---- Light theme ---- */
[data-theme="light"] {
  --bg: #F8FAFC;
  --bg-alt: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #EEF3FB;
  --fg: #0F1B33;
  --fg-muted: #44556F;
  --fg-subtle: #64748B;
  --border: #DBEAFE;
  --border-strong: #C3D6F5;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .05);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, .1);
  --shadow-lg: 0 22px 48px rgba(30, 64, 175, .16);
  --ring: rgba(37, 99, 235, .35);
  --glow: rgba(59, 130, 246, .14);
  --color-primary: #2563EB;
}

/* ---- Reset / base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0; font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--color-primary); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 1000; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 6px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: .98rem; padding: 11px 20px;
  border-radius: 12px; border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .12s var(--ease), background-color .18s var(--ease),
              box-shadow .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--lg { padding: 14px 26px; font-size: 1.05rem; border-radius: 14px; }
.btn--block { width: 100%; }
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-600));
  color: var(--color-on-primary); box-shadow: 0 8px 22px var(--glow);
}
.btn--primary:hover { box-shadow: 0 12px 30px var(--glow); filter: brightness(1.06); }
.btn--ghost { background: var(--surface); color: var(--fg); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-secondary); }
.btn--light { background: #fff; color: var(--color-primary-700); box-shadow: 0 10px 26px rgba(0,0,0,.25); }
.btn--light:hover { background: #EEF4FF; }

/* ---- Navbar ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 22px; height: var(--nav-h); }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.16rem; letter-spacing: -.02em; }
.brand__logo { width: 34px; height: 34px; object-fit: contain; flex: 0 0 auto; }
.footer .brand__logo { width: 30px; height: 30px; }
.brand__pro { color: var(--color-secondary); font-weight: 800; margin-left: 5px; }
.nav__links { display: flex; gap: 24px; margin-left: 8px; }
.nav__links a { color: var(--fg-muted); font-weight: 500; font-size: .95rem; transition: color .15s var(--ease); }
.nav__links a:hover { color: var(--color-secondary); }
.nav__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.theme-toggle {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px;
  border: 1px solid var(--border-strong); background: var(--surface); color: var(--fg-muted); cursor: pointer;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.theme-toggle:hover { color: var(--color-secondary); border-color: var(--color-primary); }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav__burger {
  display: none; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--border-strong);
  background: var(--surface); cursor: pointer; padding: 0; flex-direction: column; gap: 4px; align-items: center; justify-content: center;
}
.nav__burger span { width: 18px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex; flex-direction: column; gap: 4px; padding: 12px 24px 20px;
  border-bottom: 1px solid var(--border); background: var(--bg);
}
.mobile-menu a { padding: 12px 8px; color: var(--fg-muted); font-weight: 500; border-radius: 10px; }
.mobile-menu a:hover { background: var(--surface-2); color: var(--color-secondary); }
.mobile-menu .btn { margin-top: 8px; }

/* ---- Hero ---- */
.hero { position: relative; padding: clamp(48px, 8vw, 92px) 0 clamp(40px, 6vw, 72px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -25% -10% auto -10%; height: 680px; z-index: -1;
  background:
    radial-gradient(55% 60% at 80% 6%, var(--glow), transparent 70%),
    radial-gradient(45% 55% at 12% 0%, color-mix(in srgb, var(--color-accent) 14%, transparent), transparent 70%);
}
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.hero__title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
.grad { background: linear-gradient(120deg, var(--color-secondary), var(--color-accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { margin-top: 20px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--fg-muted); max-width: 40ch; }
.hero__sub strong { color: var(--color-accent); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; }
.hero__points li { display: inline-flex; align-items: center; gap: 8px; color: var(--fg-muted); font-size: .92rem; font-weight: 500; }

.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border-strong); font-size: .82rem; font-weight: 600; color: var(--fg-muted);
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-positive); box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-positive) 22%, transparent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .45; } }
.check { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: var(--color-positive); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Hero mockup (dashboard) ---- */
.hero__art { position: relative; }
.mock { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.mock__bar { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.mock__live { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; color: var(--color-positive); }
.mock__live i { width: 8px; height: 8px; border-radius: 50%; background: var(--color-positive); animation: pulse 2s ease-in-out infinite; }
.mock__title { margin-left: auto; font-weight: 600; font-size: .9rem; color: var(--fg-muted); }
.mock__body { padding: 20px; }

.match { display: flex; align-items: center; gap: 12px; justify-content: space-between; margin-bottom: 18px; }
.team { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .98rem; }
.team--right { flex-direction: row; }
.crest {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 700; color: #fff; flex: 0 0 auto;
}
.crest--a { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.crest--b { background: linear-gradient(135deg, #DC2626, #EA580C); }
.crest--c { background: linear-gradient(135deg, #F59E0B, #D97706); }
.match__vs { font-family: var(--font-mono); font-size: .8rem; color: var(--fg-subtle); font-weight: 600; }

.probs { display: grid; gap: 12px; margin-bottom: 18px; }
.prob__head { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: 6px; color: var(--fg-muted); font-weight: 600; }
.prob__head b { font-family: var(--font-mono); color: var(--fg); }
.bar { height: 9px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--color-primary), var(--color-secondary)); }
.bar i.bar--mute { background: var(--border-strong); }

.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.kpi { background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 12px; text-align: center; }
.kpi span { display: block; font-size: .7rem; color: var(--fg-subtle); margin-bottom: 4px; }
.kpi b { font-family: var(--font-mono); font-size: 1.05rem; }
.kpi--value { border-color: color-mix(in srgb, var(--color-accent) 45%, transparent); background: color-mix(in srgb, var(--color-accent) 10%, var(--surface-2)); }
.kpi--value b { color: var(--color-accent); }

.value-flag {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 12px;
  font-size: .88rem; font-weight: 600; color: var(--color-accent);
  background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-accent) 35%, transparent);
}
.value-flag svg { width: 18px; height: 18px; fill: currentColor; stroke: none; flex: 0 0 auto; }

.mock-chip {
  position: absolute; display: flex; align-items: center; gap: 9px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px; padding: 11px 15px; box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}
.mock-chip--1 { top: 5%; right: -6%; flex-direction: column; gap: 0; text-align: center; }
.mock-chip--1 .mono { font-size: 1.25rem; color: var(--color-positive); font-weight: 700; }
.mock-chip--1 small { font-size: .68rem; color: var(--fg-subtle); }
.mock-chip--2 { bottom: 7%; left: -7%; animation-delay: -2.5s; font-weight: 600; font-size: .84rem; }
.mock-chip--2 svg { width: 20px; height: 20px; fill: none; stroke: var(--color-secondary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .mock-chip, .badge__dot, .mock__live i { animation: none; } }

/* ---- Stats strip ---- */
.stats { border-block: 1px solid var(--border); background: var(--bg-alt); padding: 26px 0; }
.stats__label { text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-subtle); }
.stats__comps { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin-top: 16px; }
.stats__comps li { font-weight: 600; color: var(--fg-muted); font-size: 1rem; opacity: .9; }

/* ---- Sections ---- */
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--border); }
.section__head { max-width: 660px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.eyebrow { display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--color-secondary); margin-bottom: 12px; }
.section__title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; }
.section__lead { margin-top: 16px; font-size: 1.1rem; color: var(--fg-muted); }

/* ---- Grid + cards ---- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px; color: var(--c); background: color-mix(in srgb, var(--c) 15%, transparent); }
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.card p { color: var(--fg-muted); font-size: .97rem; }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.step__num {
  display: inline-grid; place-items: center; min-width: 48px; height: 40px; padding: 0 10px; border-radius: 11px;
  font-size: 1.05rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 18px;
  background: color-mix(in srgb, var(--color-primary) 14%, transparent); border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
}
.step h3 { font-size: 1.16rem; margin-bottom: 8px; }
.step p { color: var(--fg-muted); }

/* ---- Report preview ---- */
.preview__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.preview__copy .section__lead { margin-bottom: 22px; }
.ticks { display: grid; gap: 13px; }
.ticks li { display: flex; align-items: flex-start; gap: 10px; color: var(--fg-muted); }

.report { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-lg); }
.report__head { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: var(--fg-subtle); margin-bottom: 18px; }
.report__league { font-weight: 600; }
.report__conf b { color: var(--color-positive); }
.report__match { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 22px; }
.report__teams { text-align: center; display: flex; flex-direction: column; }
.report__teams b { font-size: 1.05rem; }
.report__teams small { color: var(--fg-subtle); font-size: .72rem; margin: 2px 0; }
.report__row { display: grid; grid-template-columns: 130px 1fr 48px; align-items: center; gap: 12px; margin-bottom: 12px; font-size: .88rem; color: var(--fg-muted); }
.report__row b { text-align: right; color: var(--fg); }
.report__foot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); text-align: center; }
.report__foot small { display: block; font-size: .7rem; color: var(--fg-subtle); margin-bottom: 4px; }
.report__foot b { font-size: 1.05rem; }
.report__value b { color: var(--color-accent); }

/* ---- Pricing ---- */
.billing-toggle { display: flex; justify-content: center; gap: 4px; padding: 5px; margin: 0 auto clamp(28px, 4vw, 40px); background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; width: max-content; }
.billing-toggle__btn { border: 0; background: transparent; cursor: pointer; font-family: inherit; font-weight: 600; font-size: .95rem; color: var(--fg-muted); padding: 9px 20px; border-radius: 999px; transition: background-color .18s var(--ease), color .18s var(--ease); }
.billing-toggle__btn.is-active { background: var(--surface); color: var(--fg); box-shadow: var(--shadow-sm); }
.save { font-size: .72rem; font-weight: 700; color: #fff; background: var(--color-accent-600); padding: 2px 7px; border-radius: 999px; margin-left: 4px; }

.pricing { align-items: stretch; }
.plan { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan--featured {
  border: 2px solid transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box, linear-gradient(135deg, var(--color-primary), var(--color-accent)) border-box;
  box-shadow: var(--shadow-lg);
}
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--color-primary), var(--color-primary-600)); color: #fff; font-size: .76rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; box-shadow: 0 6px 14px var(--glow); white-space: nowrap; }
.plan--offer { border-color: color-mix(in srgb, var(--color-accent) 45%, var(--border)); }
.plan__badge--offer { background: linear-gradient(135deg, var(--color-accent), var(--color-accent-600)); box-shadow: 0 6px 14px color-mix(in srgb, var(--color-accent) 40%, transparent); }
.plan__price .per s { color: var(--fg-subtle); text-decoration-thickness: 2px; }
.plan__name { font-size: 1.3rem; }
.plan__desc { color: var(--fg-muted); margin-top: 6px; font-size: .94rem; }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin: 20px 0; }
.plan__price .amount { font-size: 2.4rem; font-weight: 700; letter-spacing: -.03em; }
.plan__price .per { color: var(--fg-subtle); font-weight: 600; }
.plan__feats { margin-top: 24px; display: grid; gap: 12px; }
.plan__feats li { display: flex; align-items: flex-start; gap: 10px; color: var(--fg-muted); font-size: .95rem; }
.plan .btn { margin-top: 2px; }
.pricing__note { text-align: center; margin-top: 22px; font-size: .84rem; color: var(--fg-subtle); }

/* ---- FAQ ---- */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s var(--ease); }
.faq__item[open] { border-color: var(--border-strong); }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; font-size: 1.04rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: ""; flex: 0 0 auto; width: 12px; height: 12px; border-right: 2.5px solid var(--fg-subtle); border-bottom: 2.5px solid var(--fg-subtle); transform: rotate(45deg); transition: transform .2s var(--ease); margin-bottom: 4px; }
.faq__item[open] summary::after { transform: rotate(-135deg); margin-bottom: -4px; }
.faq__body { padding: 0 24px 22px; }
.faq__body p { color: var(--fg-muted); }

/* ---- Final CTA ---- */
.cta-final { padding: clamp(40px, 6vw, 72px) 0 clamp(40px, 6vw, 64px); }
.cta-final__box { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 68px) 24px; text-align: center; color: #fff; background: linear-gradient(135deg, var(--color-primary-700), var(--color-primary) 55%, var(--color-secondary)); box-shadow: var(--shadow-lg); }
.cta-final__box::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 85% -10%, rgba(255,255,255,.22), transparent 60%); }
.cta-final__box > * { position: relative; z-index: 1; }
.cta-final__box h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; }
.cta-final__box p { margin: 14px auto 28px; max-width: 46ch; font-size: 1.1rem; color: rgba(255,255,255,.92); }

/* ---- Responsible gambling ---- */
.responsible { padding: 0 0 clamp(40px, 6vw, 64px); }
.responsible__inner { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; }
.responsible__age { flex: 0 0 auto; font-family: var(--font-mono); font-weight: 700; font-size: .9rem; color: #fff; background: var(--color-accent-600); padding: 5px 10px; border-radius: 9px; }
.responsible p { font-size: .9rem; color: var(--fg-subtle); }
.responsible a { color: var(--color-secondary); text-decoration: underline; }

/* ---- Footer ---- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 48px 0 28px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 28px 48px; align-items: flex-start; justify-content: space-between; }
.footer__tag { color: var(--fg-subtle); margin-top: 12px; font-size: .95rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px 28px; }
.footer__links a { color: var(--fg-muted); font-weight: 500; transition: color .15s var(--ease); }
.footer__links a:hover { color: var(--color-secondary); }
.footer__legal { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--border); }
.footer__legal p { color: var(--fg-subtle); font-size: .88rem; }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===================================================================
   Responsive
=================================================================== */
@media (max-width: 980px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 860px) {
  .nav__links, .nav__login, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__grid, .preview__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 460px; margin-inline: auto; }
  .hero__sub { max-width: none; }
  .mock-chip--1 { right: 0; } .mock-chip--2 { left: 0; }
  .stats__comps { gap: 8px 18px; }
}

@media (max-width: 680px) {
  .grid--3, .steps, .pricing { grid-template-columns: 1fr; }
  .pricing { max-width: 420px; margin-inline: auto; }
  .container { padding-inline: 18px; }
  .hero__cta .btn { flex: 1 1 auto; }
  .report__row { grid-template-columns: 100px 1fr 42px; }
}

@media (min-width: 861px) { .mobile-menu { display: none !important; } }
