:root {
  --paper: #f3f0e8;
  --surface: #fffdf8;
  --ink: #101329;
  --muted: #63677a;
  --line: #d8d5ce;
  --blue: #1547ff;
  --blue-dark: #0b2db5;
  --red: #ff4b3e;
  --lime: #d9ff52;
  --radius: 22px;
  --shadow: 0 18px 55px rgba(16, 19, 41, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(16, 19, 41, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 41, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
p { margin: 0; }
img { max-width: 100%; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-head,
main,
footer {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}
.site-head {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy b { font-size: 14px; text-transform: uppercase; letter-spacing: .07em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.head-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.head-status i,
.live-line i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255,75,62,.12);
}
.watch-link { justify-self: end; font-weight: 800; text-decoration: none; }
.watch-link span { color: var(--blue); }

.hero {
  min-height: 650px;
  padding: 88px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  gap: 70px;
  align-items: center;
}
.eyebrow,
.mini-label {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span {
  display: inline-block;
  margin-right: 12px;
  padding: 7px 10px;
  color: white;
  background: var(--blue);
  border-radius: 5px;
}
h1 {
  max-width: 690px;
  margin: 28px 0 26px;
  font-size: clamp(60px, 7.2vw, 104px);
  line-height: .85;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
h1 em {
  display: block;
  margin: 14px 0 10px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .48em;
  font-weight: 400;
  letter-spacing: -.035em;
  text-transform: lowercase;
}
.hero-lead { max-width: 650px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 34px; }
.primary-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 850;
  text-decoration: none;
}
.primary-button:hover { background: var(--blue-dark); transform: translate(1px,1px); box-shadow: 4px 4px 0 var(--ink); }
.text-button { font-weight: 800; text-underline-offset: 5px; }

.match-ticket {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 13px 13px 0 var(--blue);
}
.match-ticket::before,
.match-ticket::after {
  content: "";
  position: absolute;
  top: 82px;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}
.match-ticket::before { left: -19px; }
.match-ticket::after { right: -19px; }
.ticket-top,
.ticket-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 30px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ticket-top { border-bottom: 1px dashed var(--line); }
.ticket-bottom { border-top: 1px dashed var(--line); color: var(--muted); }
.teams { display: grid; grid-template-columns: 1fr 100px 1fr; align-items: center; padding: 45px 25px 50px; }
.team { display: grid; justify-items: center; text-align: center; }
.flag {
  width: 82px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 950;
}
.team-eng .flag { color: white; background: var(--red); box-shadow: inset 0 0 0 8px #fff, inset 0 0 0 10px var(--ink); }
.team-arg .flag { background: #74cef8; box-shadow: inset 0 -24px 0 white, inset 0 24px 0 #74cef8; }
.team strong { font-size: 20px; }
.team small { margin-top: 6px; color: var(--muted); }
.kickoff { display: grid; justify-items: center; }
.kickoff span { font-size: 32px; font-weight: 950; letter-spacing: -.05em; }
.kickoff small { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.kickoff b { margin-top: 16px; padding: 8px; border-radius: 50%; color: var(--ink); background: var(--lime); font-size: 11px; }

.watch-section {
  margin-top: 20px;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}
.section-label { display: flex; align-items: center; gap: 12px; }
.section-label span { display: grid; place-items: center; width: 33px; height: 24px; border-radius: 99px; color: var(--ink); background: var(--lime); font-size: 11px; font-weight: 900; }
.section-label p { font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.watch-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin: 32px 0 25px; }
.watch-head h2 { margin: 7px 0 0; font-size: clamp(30px, 4.8vw, 58px); line-height: 1; letter-spacing: -.05em; }
.watch-head > p { max-width: 390px; color: #aeb4cc; font-size: 14px; line-height: 1.55; }
.live-line { display: flex; align-items: center; gap: 10px; color: #aeb4cc; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.video-shell { overflow: hidden; border: 1px solid #353a52; border-radius: 17px; background: #050711; }
.video-wrapper { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; }
.dreams-player { width: 100%; height: 100%; min-height: 100%; background: #050711 url('/assets/match-stadium.webp') center / cover no-repeat; }
.player-note { margin: 18px 3px 1px; color: #8f96b0; font-size: 12px; line-height: 1.55; }

.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 18px 0 110px; }
.quick-grid article { padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,253,248,.75); }
.quick-grid span { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.quick-grid strong { display: block; margin-top: 15px; font-size: 22px; letter-spacing: -.035em; }
.quick-grid p { margin-top: 5px; color: var(--muted); font-size: 13px; }

.match-guide { display: block; }
.guide-header { max-width: 850px; margin: 0 auto 95px; text-align: center; }
.guide-header .section-label { justify-content: center; }
.guide-header h2 { margin: 24px 0 22px; font-size: clamp(42px, 6.5vw, 78px); line-height: .98; letter-spacing: -.06em; }
.guide-header > p { max-width: 670px; margin: auto; color: var(--muted); font-size: 18px; line-height: 1.65; }
.story-block { display: grid; grid-template-columns: 180px 1fr; max-width: 980px; margin: 0 auto 115px; }
.story-number { color: var(--blue); font: italic 110px/.8 Georgia, serif; }
.story-copy h3,
.routes h3,
.rule-board h3,
.watch-points h3,
.history h3,
.next-stop h3,
.how-to h3,
.faq h3 { margin: 12px 0 26px; font-size: clamp(32px, 4.2vw, 52px); line-height: 1.03; letter-spacing: -.05em; }
.story-copy p { margin-top: 17px; font-family: Georgia, "Times New Roman", serif; font-size: 19px; line-height: 1.78; }
.mini-label { color: var(--blue); }

.routes { margin-bottom: 115px; }
.routes-head { max-width: 760px; margin-bottom: 45px; }
.route-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.route-card { overflow: hidden; border: 2px solid var(--ink); border-radius: 22px; background: var(--surface); }
.route-card header { display: flex; align-items: center; gap: 15px; padding: 25px; border-bottom: 1px solid var(--line); }
.route-card header > span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; color: white; background: var(--ink); font-size: 11px; font-weight: 950; }
.argentina-route header > span { color: var(--ink); background: #74cef8; }
.route-card header div { display: grid; }
.route-card header strong { font-size: 22px; }
.route-card header small { margin-top: 5px; color: var(--muted); }
.route-card ol { margin: 0; padding: 0; list-style: none; }
.route-card li { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; padding: 15px 25px; border-bottom: 1px solid var(--line); align-items: center; }
.route-card li b { color: var(--blue); font-size: 18px; }
.route-card li small { color: var(--muted); text-align: right; }
.route-card > p { padding: 25px; color: var(--muted); line-height: 1.7; }

.rule-board { margin-bottom: 115px; padding: 50px; border-radius: 25px; color: white; background: var(--blue); }
.rule-board .mini-label { color: var(--lime); }
.rule-copy { max-width: 850px; }
.rule-copy p:not(.mini-label) { max-width: 750px; margin-top: 17px; color: #d9e1ff; font-size: 17px; line-height: 1.7; }
.rule-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 22px; align-items: center; margin-top: 45px; }
.rule-steps div { min-height: 150px; padding: 25px; border: 1px solid rgba(255,255,255,.28); border-radius: 15px; background: rgba(255,255,255,.08); }
.rule-steps b { display: block; margin-bottom: 9px; color: var(--lime); font-size: 46px; }
.rule-steps span { color: #d9e1ff; font-size: 13px; line-height: 1.4; }
.rule-steps i { color: var(--lime); font-size: 24px; font-style: normal; }

.watch-points { display: grid; grid-template-columns: .78fr 1.22fr; gap: 75px; margin-bottom: 115px; }
.points-intro > p:last-child { color: var(--muted); font-size: 17px; line-height: 1.7; }
.watch-points ol { margin: 0; padding: 0; border-top: 2px solid var(--ink); list-style: none; }
.watch-points li { display: grid; grid-template-columns: 50px 1fr; gap: 15px; padding: 22px 5px; border-bottom: 1px solid var(--line); }
.watch-points li > span { color: var(--blue); font-size: 12px; font-weight: 900; }
.watch-points strong { font-size: 17px; }
.watch-points li p { margin-top: 7px; color: var(--muted); font-size: 14px; line-height: 1.55; }

.history { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; margin-bottom: 115px; }
.history-copy > p:last-child { color: var(--muted); font-size: 16px; line-height: 1.7; }
.history-list { border-top: 2px solid var(--ink); }
.history-list div { display: grid; grid-template-columns: 70px 120px 1fr; gap: 12px; padding: 20px 5px; border-bottom: 1px solid var(--line); align-items: center; }
.history-list time { color: var(--blue); font-weight: 900; }
.history-list span { color: var(--muted); font-size: 12px; text-transform: uppercase; }
.history-list b { text-align: right; }
.history-list .current { padding-inline: 14px; background: var(--lime); }

.next-stop { margin-bottom: 115px; }
.next-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.next-grid div { padding: 32px; border: 2px solid var(--ink); border-radius: 18px; background: var(--surface); }
.next-grid div:first-child { box-shadow: 8px 8px 0 var(--red); }
.next-grid div:last-child { box-shadow: 8px 8px 0 var(--blue); }
.next-grid span { color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.next-grid strong { display: block; margin: 15px 0 7px; font-size: 28px; }
.next-grid p { color: var(--muted); }

.how-to { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; margin-bottom: 115px; padding: 50px; border-radius: 24px; background: var(--ink); color: white; }
.how-to .mini-label { color: var(--lime); }
.how-to ol { margin: 0; padding: 0; list-style: none; }
.how-to li { display: grid; grid-template-columns: 40px 1fr; gap: 15px; align-items: center; padding: 17px 0; border-bottom: 1px solid #363b51; }
.how-to li span { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; color: var(--ink); background: var(--lime); font-weight: 900; }
.how-to li p { color: #c3c8da; line-height: 1.55; }

.faq { max-width: 930px; margin: 0 auto 115px; }
.faq-list { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 25px 45px 25px 0; cursor: pointer; font-size: 18px; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 20px; right: 8px; color: var(--blue); font-size: 28px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 760px; padding: 0 45px 25px 0; color: var(--muted); line-height: 1.7; }

.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-bottom: 70px; padding: 40px; border: 2px solid var(--ink); border-radius: 22px; background: var(--lime); }
.final-cta span { font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.final-cta h2 { margin: 7px 0 0; font-size: clamp(30px, 5vw, 55px); letter-spacing: -.05em; }
.final-cta a { padding: 16px 20px; border-radius: 8px; color: white; background: var(--ink); font-weight: 850; text-decoration: none; white-space: nowrap; }

footer { display: grid; grid-template-columns: .7fr 1.5fr .5fr; gap: 35px; align-items: center; padding: 45px 0 55px; border-top: 1px solid var(--ink); }
footer > p { color: var(--muted); font-size: 12px; line-height: 1.6; }
.copyright { text-align: right; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 50px; padding-top: 70px; }
  .match-ticket { max-width: 650px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .watch-points,
  .history { grid-template-columns: 1fr; gap: 35px; }
  .history-copy { max-width: 650px; }
  footer { grid-template-columns: 1fr 1.6fr; }
  .copyright { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 700px) {
  .site-head,
  main,
  footer { width: min(100% - 24px, 1240px); }
  .site-head { min-height: 64px; grid-template-columns: 1fr auto; }
  .head-status { display: none; }
  .brand-mark { width: 36px; }
  .brand-copy small { display: none; }
  .watch-link { font-size: 13px; }
  .hero { min-height: auto; padding: 54px 0 55px; gap: 38px; }
  h1 { margin-top: 22px; font-size: clamp(51px, 16vw, 72px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { gap: 20px; }
  .primary-button { min-height: 48px; padding-inline: 19px; }
  .match-ticket { margin-right: 7px; box-shadow: 7px 7px 0 var(--blue); }
  .ticket-top,
  .ticket-bottom { padding: 17px 20px; font-size: 9px; }
  .ticket-top span:last-child,
  .ticket-bottom span:last-child { text-align: right; }
  .teams { grid-template-columns: 1fr 74px 1fr; padding: 32px 12px 36px; }
  .flag { width: 64px; }
  .team strong { font-size: 16px; }
  .team small { font-size: 10px; }
  .kickoff span { font-size: 25px; }
  .watch-section { padding: 13px; border-radius: 18px; }
  .watch-section > .section-label { margin: 10px 7px 0; }
  .watch-head { display: block; margin: 24px 7px 17px; }
  .watch-head > p { margin-top: 14px; }
  .video-shell { border-radius: 10px; }
  .player-note { margin: 14px 7px 5px; }
  .quick-grid { gap: 8px; margin-bottom: 80px; }
  .quick-grid article { padding: 17px 14px; }
  .quick-grid strong { margin-top: 10px; font-size: 18px; }
  .guide-header { margin-bottom: 70px; text-align: left; }
  .guide-header .section-label { justify-content: flex-start; }
  .guide-header h2 { font-size: 43px; }
  .guide-header > p { font-size: 16px; }
  .story-block { grid-template-columns: 1fr; margin-bottom: 80px; }
  .story-number { margin-bottom: 30px; font-size: 78px; }
  .story-copy p { font-size: 17px; line-height: 1.72; }
  .routes,
  .rule-board,
  .watch-points,
  .history,
  .next-stop,
  .how-to,
  .faq { margin-bottom: 80px; }
  .route-columns { grid-template-columns: 1fr; }
  .route-card li { grid-template-columns: 52px 1fr; padding-inline: 18px; }
  .route-card li small { grid-column: 2; text-align: left; }
  .rule-board { padding: 30px 20px; border-radius: 18px; }
  .rule-steps { grid-template-columns: 1fr; gap: 10px; }
  .rule-steps div { min-height: auto; }
  .rule-steps i { transform: rotate(90deg); text-align: center; }
  .watch-points { gap: 25px; }
  .history { gap: 20px; }
  .history-list div { grid-template-columns: 60px 1fr; }
  .history-list b { grid-column: 1 / -1; text-align: left; }
  .history-list span { text-align: right; }
  .next-grid { grid-template-columns: 1fr; }
  .how-to { grid-template-columns: 1fr; gap: 20px; padding: 30px 20px; }
  .final-cta { display: block; padding: 27px 20px; }
  .final-cta a { display: flex; justify-content: space-between; margin-top: 24px; }
  footer { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
}

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