:root {
  --ink: #071321;
  --ink-soft: #0d1d2f;
  --ink-lift: #132740;
  --paper: #f5f3ec;
  --paper-deep: #ebe7dc;
  --white: #fffefa;
  --gold: #f5b82e;
  --gold-deep: #d99a09;
  --red: #ef4545;
  --green: #2aa867;
  --muted: #667281;
  --line: #d9d7cf;
  --shadow: 0 26px 80px rgba(3, 13, 24, 0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 15px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 900;
}
.skip-link:focus { top: 16px; }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: white;
  background: rgba(7, 19, 33, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.header-row { min-height: 70px; display: flex; align-items: center; gap: 34px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.brand strong { color: var(--gold); }
.brand-ball {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  color: var(--ink);
  font-size: 12px;
  background: conic-gradient(var(--red) 0 33%, var(--gold) 33% 66%, var(--green) 66%);
  border: 3px solid white;
}

.desktop-nav { display: flex; gap: 24px; margin-left: auto; }
.desktop-nav a {
  color: #aeb8c5;
  text-decoration: none;
  font-size: 12px;
  font-weight: 750;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: white; }

.market-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #dce3e9;
  font-size: 10px;
  font-weight: 800;
}
.market-chip i, .update-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(42, 168, 103, 0.13);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(900px 500px at 75% 18%, rgba(245, 184, 46, 0.14), transparent 62%),
    radial-gradient(650px 350px at 5% 70%, rgba(42, 168, 103, 0.1), transparent 66%),
    linear-gradient(145deg, #071321 0%, #09192a 52%, #06111e 100%);
}

.pitch-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 74px 74px;
  transform: perspective(700px) rotateX(62deg) scale(1.4) translateY(25%);
  transform-origin: center bottom;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  gap: 28px;
  align-items: end;
  padding-top: 78px;
  padding-bottom: 76px;
}

.overline {
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-copy > .overline { display: flex; gap: 12px; align-items: center; }
.hero-copy > .overline span + span { color: #7f90a4; }
.hero-copy > .overline span + span::before { content: "·"; margin-right: 12px; }

h1, h2, h3 { text-wrap: balance; }
.hero h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-family: "Arial Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(54px, 7.2vw, 91px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.hero h1 > span, .hero h1 em { display: block; }
.hero h1 em { color: var(--gold); font-style: normal; }
.headline-stop { display: inline-block; margin-left: 0.13em; }
.hero-intro {
  max-width: 650px;
  margin: 0 0 28px;
  color: #b8c2ce;
  font-size: 16px;
  line-height: 1.6;
}

.mobile-flow { display: none; }

.match-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-xl);
  background: rgba(12, 29, 48, 0.9);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.match-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 17px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
}
.match-meta > div { display: flex; flex-direction: column; gap: 4px; }
.match-meta span { color: #9eabb9; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; }
.match-meta strong { font-size: 12px; }
.update-badge { display: inline-flex; align-items: center; gap: 8px; }

.teams {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 24px 22px 20px;
  text-align: center;
}
.team { min-width: 0; }
.team strong { display: block; margin-top: 11px; font-size: 15px; line-height: 1.15; }
.team > span { display: block; margin-top: 5px; color: #8997a8; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.crest {
  width: 67px;
  height: 73px;
  margin: auto;
  display: grid;
  place-items: center;
  color: white;
  font-size: 16px;
  font-weight: 950;
  border: 2px solid rgba(245, 184, 46, 0.74);
  border-radius: 19px 19px 27px 27px;
  clip-path: polygon(50% 0, 94% 18%, 85% 74%, 50% 100%, 15% 74%, 6% 18%);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.05), 0 10px 26px rgba(0, 0, 0, 0.25);
}
.crest-home { background: linear-gradient(135deg, #192f52, #0b1728 70%); }
.crest-away { background: linear-gradient(135deg, #b63131, #561b24 70%); }
.kickoff span, .kickoff small { display: block; color: #8f9cac; font-size: 8px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.kickoff b { display: block; margin: 4px 0 5px; color: var(--gold); font-size: 16px; letter-spacing: -0.03em; }

.form-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 15px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(1, 8, 16, 0.22);
}
.form-strip > div { display: flex; justify-content: space-between; align-items: center; gap: 9px; }
.form-strip > div + div { flex-direction: row-reverse; }
.form-strip span { color: #8593a3; font-size: 8px; font-weight: 850; text-transform: uppercase; }
.form-pills { display: flex; gap: 4px; }
.form-pills b { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 5px; color: white; font-size: 8px; }
.form-pills .win { background: var(--green); }
.form-pills .draw { background: #747f8c; }
.form-pills .loss { background: var(--red); }

.match-actions { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 10px; padding: 16px 20px 20px; }
.button {
  min-height: 46px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, a:focus-visible { outline: 3px solid rgba(245, 184, 46, 0.55); outline-offset: 3px; }
.button-primary { color: var(--ink); background: linear-gradient(180deg, #ffcd55, var(--gold)); box-shadow: 0 10px 22px rgba(245, 184, 46, 0.17); }
.button-primary:hover { background: #ffd668; }
.button-quiet { color: white; background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.12); }
.button-quiet.is-following { color: var(--gold); border-color: rgba(245, 184, 46, 0.45); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 16px 4px 0;
  padding: 0;
  list-style: none;
  color: #93a1b0;
  font-size: 9px;
  font-weight: 750;
}
.trust-row li::before { content: "✓"; color: var(--green); margin-right: 7px; font-weight: 950; }

.snapshot {
  overflow: hidden;
  margin-bottom: 8px;
  padding: 0 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}
.fan-visual {
  position: relative;
  height: 184px;
  margin: 0 -24px 22px;
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  isolation: isolate;
  background-image: url("/matchday-fan.webp");
  background-repeat: no-repeat;
  background-position: 100% 44%;
  background-size: 188% auto;
}
.fan-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 33, 0.96) 0%, rgba(7, 19, 33, 0.42) 52%, rgba(7, 19, 33, 0.06) 100%),
    linear-gradient(0deg, rgba(7, 19, 33, 0.8) 0%, transparent 55%);
}
.fan-visual span {
  max-width: 155px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.snapshot-top { display: flex; justify-content: space-between; align-items: center; }
.snapshot-top > span { color: #8797a8; font-size: 9px; font-weight: 800; }
.snapshot h2 { margin: 12px 0 8px; font-size: 28px; letter-spacing: -0.04em; }
.snapshot-copy { margin: 0; color: #98a7b6; font-size: 12px; line-height: 1.6; }
.h2h-visual { margin: 24px 0; }
.h2h-numbers, .h2h-labels { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.h2h-numbers { align-items: end; color: #95a2b1; font-size: 11px; font-weight: 900; letter-spacing: 0.08em; }
.h2h-numbers b { color: white; font-size: 11px; }
.h2h-bar { display: grid; grid-template-columns: 3fr 2fr 1fr; gap: 3px; height: 7px; margin: 7px 0; overflow: hidden; border-radius: 999px; }
.h2h-bar i:nth-child(1) { background: var(--green); }
.h2h-bar i:nth-child(2) { background: #7b8794; }
.h2h-bar i:nth-child(3) { background: var(--red); }
.h2h-labels { color: #798899; font-size: 7px; font-weight: 800; text-transform: uppercase; }
.snapshot-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.snapshot-points div { padding: 13px 8px; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 12px; text-align: center; background: rgba(3, 12, 22, 0.25); }
.snapshot-points span { color: var(--gold); font-size: 17px; font-weight: 950; letter-spacing: -0.03em; }
.snapshot-points p { margin: 5px 0 0; color: #8292a3; font-size: 7px; line-height: 1.4; }
.trust-card { display: flex; gap: 12px; align-items: flex-start; margin-top: 15px; padding: 15px; border-radius: 14px; background: rgba(42, 168, 103, 0.09); border: 1px solid rgba(42, 168, 103, 0.19); }
.shield-check { flex: 0 0 auto; display: grid; place-items: center; width: 25px; height: 28px; color: #071b12; background: var(--green); clip-path: polygon(50% 0, 92% 15%, 82% 73%, 50% 100%, 18% 73%, 8% 15%); font-size: 11px; font-weight: 950; }
.trust-card strong { font-size: 10px; }
.trust-card p { margin: 5px 0 0; color: #8da79a; font-size: 8px; line-height: 1.5; }

.analysis-section { padding: 92px 0; background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(300px, 0.55fr); gap: 36px; align-items: end; margin-bottom: 34px; }
.section-heading h2, .options-section h2 { margin: 8px 0 0; font-size: clamp(39px, 5vw, 64px); line-height: 0.98; letter-spacing: -0.055em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.analysis-section .overline, .options-section .overline { color: #a77000; }
.analysis-grid { display: grid; grid-template-columns: 1.18fr 0.82fr; gap: 15px; }
.editorial-card, .data-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 18px 50px rgba(16, 24, 33, 0.05); }
.editorial-card { padding: 31px; }
.card-label { display: flex; align-items: center; gap: 10px; color: #6f7780; font-size: 9px; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
.card-label span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 8px; color: var(--ink); background: var(--gold); letter-spacing: 0; }
.editorial-card h3 { max-width: 600px; margin: 22px 0 13px; font-size: clamp(28px, 4vw, 42px); line-height: 1.03; letter-spacing: -0.045em; }
.editorial-card > p { max-width: 680px; margin: 0; color: #56616c; font-size: 14px; line-height: 1.75; }
.signal-list { display: grid; margin-top: 28px; border-top: 1px solid var(--line); }
.signal-list > div { display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line); color: #59636d; font-size: 11px; line-height: 1.5; }
.signal-list i { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; font-style: normal; font-weight: 950; }
.signal-up { color: #0d7443; background: #dff4e9; }
.signal-even { color: #7a5c15; background: #f6edcf; }
.signal-down { color: #a03737; background: #f7dfdf; }
.signal-list b { color: var(--ink); }
.data-stack { display: grid; gap: 15px; }
.data-card { padding: 25px; }
.comparison-row { display: grid; grid-template-columns: 1fr 25px 82px 25px; gap: 8px; align-items: center; margin-top: 20px; }
.comparison-row span { color: #5f6974; font-size: 10px; font-weight: 800; }
.comparison-row b { text-align: center; font-size: 13px; }
.comparison-row i { height: 7px; overflow: hidden; border-radius: 99px; background: #e5e1d7; }
.comparison-row em { display: block; width: var(--value); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green), var(--gold)); }
.side-key { display: flex; justify-content: space-between; margin: 16px 33px 0 auto; width: 110px; color: #9098a0; font-size: 7px; font-weight: 900; }
.compact-card { background: var(--ink); color: white; border-color: var(--ink); }
.compact-card .card-label { color: #94a1af; }
.compact-card p { margin: 22px 0 0; color: #bdc6d0; font-size: 18px; line-height: 1.45; font-weight: 750; }

.options-section { padding: 84px 0; color: white; background: var(--ink); }
.options-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr); gap: 70px; align-items: center; }
.options-copy { max-width: 640px; margin: 18px 0 24px; color: #aab5c1; font-size: 14px; line-height: 1.7; }
.age-open { min-width: 260px; }
.small-print { margin: 10px 0 0; color: #748395; font-size: 8px; }
.criteria-card { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-lg); background: var(--ink-soft); }
.criteria-card:focus { outline: none; }
.criteria-card.is-highlighted { border-color: rgba(245, 184, 46, 0.72); box-shadow: 0 0 0 4px rgba(245, 184, 46, 0.1); }
.criteria-head { display: flex; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.09); color: #9eabb9; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.criteria-head b { color: var(--gold); }
.criteria-card ol { margin: 0; padding: 0; list-style: none; }
.criteria-card li { display: grid; grid-template-columns: 31px 1fr; gap: 12px; align-items: center; padding: 15px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.criteria-card li:last-child { border-bottom: 0; }
.criteria-card li > span { color: var(--gold); font-size: 9px; font-weight: 950; }
.criteria-card li b { display: block; font-size: 11px; }
.criteria-card li small { display: block; margin-top: 4px; color: #8594a5; font-size: 8px; line-height: 1.4; }

.responsibility-strip { color: #e8edf2; background: #0d1d2f; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.responsibility-row { min-height: 64px; display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; }
.responsibility-row strong { color: var(--gold); font-size: 12px; }
.responsibility-row p { margin: 0; color: #9eabb8; font-size: 10px; }
.responsibility-row a { color: white; font-size: 9px; font-weight: 900; }

.site-footer { padding: 52px 0 24px; color: #b1bbc6; background: #050d17; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; }
.footer-grid p { max-width: 520px; color: #748292; font-size: 10px; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 12px 25px; }
.footer-links a { color: #aeb9c5; font-size: 9px; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.07); color: #667586; font-size: 8px; }

.mobile-action { display: none; }

.age-dialog {
  width: min(460px, calc(100% - 28px));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  padding: 0;
  color: white;
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}
.age-dialog::backdrop { background: rgba(1, 7, 13, 0.74); backdrop-filter: blur(6px); }
.age-dialog form { display: grid; gap: 11px; padding: 28px; }
.dialog-mark { display: grid; place-items: center; width: 53px; height: 53px; border-radius: 50%; color: var(--ink); background: var(--gold); font-size: 16px; font-weight: 950; }
.age-dialog h2 { margin: 4px 0 0; font-size: 34px; letter-spacing: -0.045em; }
.age-dialog p:not(.overline) { margin: 0 0 8px; color: #9fadb9; font-size: 12px; line-height: 1.65; }
.age-dialog .button-quiet { width: 100%; }

.toast {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: 24px;
  max-width: calc(100% - 32px);
  transform: translate(-50%, 20px);
  padding: 11px 14px;
  border-radius: 10px;
  color: white;
  background: #102238;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  font-size: 10px;
  font-weight: 800;
  transition: opacity 180ms ease, transform 180ms ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .market-chip { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; align-items: stretch; padding-top: 58px; }
  .snapshot { margin: 0; }
  .section-heading, .analysis-grid, .options-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 18px; }
  .options-grid { gap: 36px; }
}

@media (max-width: 620px) {
  :root { --radius-xl: 22px; --radius-lg: 18px; }
  .container { width: min(100% - 24px, 1160px); }
  .header-row { min-height: 58px; gap: 12px; }
  .brand { font-size: 15px; letter-spacing: -0.025em; }
  .brand-ball { width: 25px; height: 25px; border-width: 2px; }
  .market-chip { font-size: 8px; padding: 7px 8px; }
  .hero-grid { gap: 0; padding-top: 29px; padding-bottom: 42px; }
  .hero-copy { display: contents; }
  .hero-copy > .overline { order: 1; }
  .hero h1 {
    order: 2;
    width: 100%;
    margin: 11px 0 14px;
    font-size: clamp(36px, 11.5vw, 46px);
    line-height: 0.89;
    letter-spacing: -0.022em;
  }
  .hero h1 em { white-space: nowrap; }
  .headline-stop { margin-left: 0.16em; }
  .hero-intro { order: 3; margin: 0 0 16px; max-width: 35ch; font-size: 13.5px; line-height: 1.52; }
  .mobile-flow {
    position: relative;
    order: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 0 17px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    list-style: none;
    background: rgba(255, 255, 255, 0.035);
  }
  .mobile-flow li { display: flex; align-items: center; gap: 7px; min-width: 0; padding: 10px 9px; }
  .mobile-flow li + li { border-left: 1px solid rgba(255, 255, 255, 0.08); }
  .mobile-flow span { color: var(--gold); font-size: 8px; font-weight: 950; }
  .mobile-flow b { color: #c8d1da; font-size: 9px; letter-spacing: 0.02em; text-transform: uppercase; }
  .match-card { order: 5; width: 100%; }
  .match-meta { padding: 14px 15px; }
  .match-meta strong { font-size: 12.5px; }
  .update-badge { white-space: nowrap; }
  .teams { grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr); gap: 7px; padding: 20px 12px 17px; }
  .crest { width: 58px; height: 65px; font-size: 14px; }
  .team strong { min-height: 30px; margin-top: 9px; font-size: 12.5px; }
  .kickoff b { font-size: 12.5px; }
  .kickoff small { display: none; }
  .form-strip { gap: 12px; padding: 13px 14px; }
  .form-strip > div { display: grid; justify-content: start; gap: 7px; }
  .form-strip > div + div { display: grid; justify-content: end; direction: ltr; text-align: right; }
  .form-strip span { font-size: 7.5px; }
  .form-pills { direction: ltr; }
  .form-pills b { width: 18px; height: 18px; }
  .match-actions { grid-template-columns: 1fr; padding: 13px 14px 15px; }
  .match-actions .button { min-height: 49px; font-size: 12px; }
  .snapshot { order: 6; margin-top: 16px; padding: 0 20px 20px; }
  .fan-visual { height: 158px; margin: 0 -20px 19px; padding: 15px 17px; background-size: 193% auto; }
  .fan-visual span { max-width: 130px; font-size: 10px; }
  .snapshot h2 { font-size: 25px; }
  .snapshot-copy { font-size: 12.5px; }
  .snapshot-points p { font-size: 7.5px; }
  .trust-card strong { font-size: 10.5px; }
  .trust-card p { font-size: 8.5px; }
  .trust-row { order: 7; display: grid; gap: 8px; margin: 14px 2px 0; font-size: 9.5px; }
  .analysis-section { padding: 56px 0; }
  .section-heading { margin-bottom: 24px; }
  .section-heading h2, .options-section h2 { font-size: 37px; }
  .section-heading > p { font-size: 13.5px; line-height: 1.6; }
  .editorial-card, .data-card { padding: 21px; }
  .editorial-card h3 { font-size: 28px; }
  .editorial-card > p { font-size: 13.5px; line-height: 1.67; }
  .signal-list > div { grid-template-columns: 32px 1fr; font-size: 11.5px; }
  .comparison-row { grid-template-columns: 1fr 22px 64px 22px; }
  .options-section { padding: 56px 0; }
  .options-copy { font-size: 13.5px; line-height: 1.62; }
  .age-open { width: 100%; min-width: 0; }
  .responsibility-row { grid-template-columns: auto 1fr; gap: 8px 14px; padding: 16px 0; }
  .responsibility-row a { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; margin-bottom: 78px; }
  .mobile-action {
    position: fixed;
    z-index: 25;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    color: white;
    background: rgba(7, 19, 33, 0.95);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(130%);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .mobile-action.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-action > div { min-width: 0; }
  .mobile-action span { display: block; color: #7f8fa0; font-size: 7.5px; text-transform: uppercase; font-weight: 900; }
  .mobile-action b { display: block; max-width: 178px; margin-top: 3px; overflow: hidden; text-overflow: ellipsis; color: #dce3e9; font-size: 9.5px; white-space: nowrap; }
  .mobile-action a { flex: 0 0 auto; min-width: 104px; padding: 11px 13px; border-radius: 10px; color: var(--ink); background: var(--gold); text-align: center; text-decoration: none; font-size: 9.5px; font-weight: 950; }
}

@media (max-width: 350px) {
  .container { width: min(100% - 20px, 1160px); }
  .market-chip { display: none; }
  .hero h1 { font-size: 11.4vw; }
  .teams { grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr); }
  .crest { width: 52px; height: 59px; }
  .form-pills b { width: 16px; height: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
