:root {
  --blue: #1238d1;
  --blue-deep: #0b1c63;
  --blue-soft: #dce5ff;
  --cream: #f6f2e9;
  --paper: #fffdf8;
  --ink: #10163f;
  --yellow: #f7d84a;
  --red: #ff5d61;
  --mint: #8ce1c3;
  --line: rgba(16, 22, 63, .14);
  --shadow: 0 18px 54px rgba(9, 24, 89, .14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.section-shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -60px; padding: 12px 18px; background: white; border-radius: 12px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 12px;
  width: var(--shell);
  height: 72px;
  margin: 12px auto 0;
  padding: 0 14px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(17, 31, 92, .12);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue); background: var(--yellow); border-radius: 13px; transform: rotate(-4deg); }
.brand-mark svg { width: 28px; height: 28px; fill: currentColor; }
.brand > span:last-child { display: grid; line-height: 1; gap: 5px; }
.brand b { font-size: 17px; letter-spacing: .06em; }
.brand small { font-size: 8px; font-weight: 800; letter-spacing: .14em; color: var(--blue); }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.desktop-nav a { position: relative; }
.desktop-nav a:not(.nav-live)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--blue); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.nav-live { display: flex; align-items: center; gap: 7px; padding: 12px 16px; color: white; background: var(--blue-deep); border-radius: 13px; }
.nav-live span { width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,93,97,.18); }
.menu-button { display: none; width: 46px; height: 46px; padding: 12px; border: 0; background: var(--blue-deep); border-radius: 13px; }
.menu-button > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: white; border-radius: 3px; }
.mobile-nav { position: fixed; z-index: 90; top: 92px; left: 24px; right: 24px; padding: 16px; background: var(--paper); border-radius: 20px; box-shadow: var(--shadow); }
.mobile-nav a { display: block; padding: 14px 10px; border-bottom: 1px solid var(--line); font-weight: 700; }
.mobile-nav a:last-child { border: 0; color: var(--blue); }

.hero { min-height: 720px; padding: 70px 0 66px; display: grid; grid-template-columns: 1fr .96fr; align-items: center; gap: 55px; }
.eyebrow { margin: 0 0 18px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.eyebrow span { display: inline-block; margin-right: 8px; padding: 6px 10px; color: var(--paper); background: var(--blue); border-radius: 999px; letter-spacing: .1em; }
.hero h1 { margin: 0; font-size: clamp(70px, 8vw, 114px); line-height: .91; letter-spacing: -.07em; font-weight: 950; }
.hero h1 em { position: relative; display: inline-block; padding: 9px 13px 13px 8px; color: white; background: var(--blue); font-style: normal; letter-spacing: -.08em; transform: rotate(-1deg); }
.hero h1 em::after { content: "✦"; position: absolute; right: -35px; top: -28px; color: var(--yellow); font-size: 58px; text-shadow: 3px 3px 0 var(--ink); }
.hero-lead { max-width: 590px; margin: 30px 0 28px; color: #4b516f; font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 15px; border: 1px solid transparent; border-radius: 15px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue); box-shadow: 0 10px 24px rgba(18,56,209,.24); }
.button-primary span { font-size: 22px; }
.button-ghost { background: transparent; border-color: var(--line); }
.button-ghost:hover { background: white; }
.button-dark { color: white; background: var(--blue-deep); }
.event-strip { margin-top: 36px; padding-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; border-top: 1px solid var(--line); }
.event-strip div { display: grid; gap: 5px; }
.event-strip small { color: #777c96; font-size: 11px; }
.event-strip strong { font-size: 13px; }

.hero-stage { position: relative; height: 600px; overflow: hidden; background: var(--blue); border-radius: 42px; box-shadow: var(--shadow); isolation: isolate; }
.hero-stage::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle, white 2px, transparent 2px); background-size: 24px 24px; }
.hero-stage::after { content: "RACE  RACE  RACE"; position: absolute; left: -20px; right: -20px; bottom: 28px; overflow: hidden; color: rgba(255,255,255,.08); font-size: 80px; font-weight: 950; letter-spacing: -.04em; white-space: nowrap; }
.orbit { position: absolute; border: 2px solid rgba(255,255,255,.36); border-radius: 50%; }
.orbit-one { width: 440px; height: 440px; left: 70px; top: 120px; }
.orbit-two { width: 310px; height: 310px; left: 135px; top: 185px; border-color: var(--yellow); }
.stage-sticker { position: absolute; z-index: 5; left: 28px; top: 28px; padding: 14px; color: var(--blue-deep); background: var(--yellow); border: 3px solid var(--blue-deep); box-shadow: 6px 6px 0 var(--blue-deep); font-size: 12px; line-height: 1.05; font-weight: 950; transform: rotate(-7deg); }
.score-card { position: absolute; z-index: 5; top: 28px; right: 28px; padding: 16px 18px; display: grid; color: white; background: var(--blue-deep); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; transform: rotate(3deg); }
.score-card span { font-size: 10px; opacity: .75; }
.score-card strong { font-size: 27px; }
.score-card small { font-size: 10px; }
.coffee-cup { position: absolute; z-index: 3; filter: drop-shadow(0 24px 20px rgba(4,13,55,.28)); }
.cup-lid { position: absolute; z-index: 2; left: -6%; top: -8%; width: 112%; height: 10%; background: var(--blue-deep); border-radius: 30px 30px 8px 8px; }
.cup-body { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; background: var(--paper); clip-path: polygon(6% 0, 94% 0, 84% 100%, 16% 100%); }
.cup-body span { color: var(--blue); font-size: 13px; font-weight: 900; }
.cup-body b { color: var(--blue-deep); font-size: 22px; }
.cup-main { width: 210px; height: 330px; left: 175px; top: 170px; transform: rotate(2deg); }
.cup-main .cup-body { background: var(--yellow); }
.cup-main .cup-body span { color: var(--ink); font-size: 23px; }
.cup-main .cup-body b { font-size: 38px; }
.cup-left, .cup-right { width: 120px; height: 210px; top: 265px; opacity: .85; }
.cup-left { left: 72px; transform: rotate(-14deg); }
.cup-right { right: 60px; transform: rotate(13deg); }
.spark { position: absolute; z-index: 4; fill: var(--red); }
.spark-a { width: 62px; height: 62px; right: 68px; top: 170px; transform: rotate(12deg); }
.spark-b { width: 34px; height: 34px; left: 104px; top: 170px; fill: var(--yellow); }
.stage-caption { position: absolute; z-index: 6; left: 28px; bottom: 28px; display: flex; gap: 12px; color: white; }
.stage-caption > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--blue); background: white; border-radius: 50%; font-size: 11px; font-weight: 900; }
.stage-caption p { margin: 0; font-size: 12px; line-height: 1.45; }

.countdown-band { color: white; background: var(--blue-deep); }
.countdown-inner { min-height: 126px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.countdown-inner > p { margin: 0; font-size: 13px; font-weight: 700; }
.pulse-dot { display: inline-block; width: 9px; height: 9px; margin-right: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,93,97,.16); }
.countdown { display: flex; align-items: center; gap: 12px; }
.countdown div { display: flex; align-items: baseline; gap: 5px; }
.countdown strong { font-size: 42px; line-height: 1; font-variant-numeric: tabular-nums; }
.countdown small { color: #aeb9eb; font-size: 11px; }
.countdown i { color: var(--yellow); font-style: normal; font-size: 28px; }
.countdown-note { color: #aeb9eb; font-weight: 400 !important; }

.players-section { padding: 120px 0; }
.section-heading { margin-bottom: 52px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading h2, .prize-copy h2, .closing-cta h2 { margin: 0; font-size: clamp(42px, 5vw, 70px); line-height: 1.03; letter-spacing: -.055em; }
.section-heading > p { width: 390px; margin: 0 0 7px; color: #60667e; font-size: 15px; line-height: 1.75; }
.binding-status { margin: -22px 0 30px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; background: #e5f8ef; border: 1px solid #a0dec4; border-radius: 16px; color: #185f48; font-size: 13px; }
.binding-status > div { display: flex; align-items: center; gap: 12px; }
.binding-status p { margin: 0; }
.binding-status strong { margin-left: 10px; }
.status-icon { width: 28px; height: 28px; display: grid; place-items: center; color: white; background: #1d986e; border-radius: 50%; font-weight: 900; }
.player-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.player-card { position: relative; padding: 12px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 26px; transition: transform .25s ease, box-shadow .25s ease; }
.player-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.featured-flag { position: absolute; z-index: 4; right: -28px; top: 20px; width: 120px; padding: 7px 0; color: var(--ink); background: var(--yellow); font-size: 10px; font-weight: 900; text-align: center; transform: rotate(38deg); }
.player-portrait { position: relative; height: 310px; overflow: hidden; background: var(--blue-soft); border-radius: 18px; }
.player-portrait::before { content: ""; position: absolute; width: 230px; height: 230px; right: -50px; bottom: -30px; border: 25px solid rgba(255,255,255,.5); border-radius: 50%; }
.player-number { position: absolute; z-index: 2; left: 17px; top: 12px; color: rgba(16,22,63,.18); font-size: 68px; line-height: 1; font-weight: 950; letter-spacing: -.08em; }
.portrait-face { position: absolute; z-index: 2; left: 50%; top: 75px; width: 116px; height: 135px; background: #efb89c; border: 6px solid var(--ink); border-radius: 48% 48% 45% 45%; transform: translateX(-50%); }
.portrait-face::before { content: ""; position: absolute; left: -12px; top: -32px; width: 135px; height: 72px; background: var(--ink); border-radius: 70px 70px 25px 25px; transform: rotate(-3deg); }
.portrait-face::after { content: "•   •"; position: absolute; left: 0; right: 0; top: 48px; color: var(--ink); font-size: 16px; text-align: center; letter-spacing: 19px; transform: translateX(10px); }
.portrait-body { position: absolute; left: 50%; bottom: -65px; width: 230px; height: 190px; background: var(--blue); border: 6px solid var(--ink); border-radius: 95px 95px 25px 25px; transform: translateX(-50%); }
.portrait-body::before { content: "☕"; position: absolute; left: 50%; top: 30px; color: white; font-size: 45px; transform: translateX(-50%); }
.portrait-two { background: #ffe8b0; }
.portrait-two .portrait-face::before { border-radius: 28px 65px 24px 40px; transform: rotate(6deg); }
.portrait-two .portrait-body { background: var(--red); }
.portrait-three { background: #d7f3e8; }
.portrait-three .portrait-face::before { height: 58px; border-radius: 18px 18px 45px 45px; }
.portrait-three .portrait-body { background: #178161; }
.portrait-four { background: #eadfff; }
.portrait-four .portrait-face::before { left: -15px; top: -34px; width: 140px; height: 160px; background: transparent; border: 28px solid var(--ink); border-top-width: 44px; border-radius: 50%; }
.portrait-four .portrait-body { background: #704bc4; }
.portrait-five { background: #ffe0d4; }
.portrait-five .portrait-face::before { left: -10px; top: -30px; width: 132px; height: 76px; border-radius: 65px 26px 48px 32px; transform: rotate(-5deg); }
.portrait-five .portrait-body { background: #e7774d; }
.skill-tag { position: absolute; z-index: 5; right: 12px; bottom: 12px; padding: 8px 11px; color: white; background: var(--blue-deep); border-radius: 99px; font-size: 10px; font-weight: 800; }
.player-copy { min-height: 92px; padding: 18px 7px 14px; }
.player-copy > div { display: flex; align-items: baseline; justify-content: space-between; }
.player-copy p { margin: 0; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.player-copy h3 { margin: 0; font-size: 28px; }
.player-copy > span { display: block; margin-top: 7px; color: #747990; font-size: 12px; }
.select-buddy { width: 100%; height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; color: white; background: var(--blue); border: 0; border-radius: 13px; font-size: 13px; font-weight: 800; cursor: pointer; }
.select-buddy:hover { background: var(--blue-deep); }
.select-buddy:disabled { color: #7c8194; background: #ececf0; cursor: default; }
.select-buddy span { font-size: 20px; }
.demo-note { margin: 18px 0 0; color: #85899c; font-size: 11px; text-align: center; }

.how-section { padding: 112px 0; color: white; background: var(--blue); }
.section-heading.light .eyebrow { color: var(--yellow); }
.section-heading.light > p { color: #cbd5ff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps-grid article { position: relative; min-height: 300px; padding: 25px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.24); border-radius: 26px; }
.steps-grid article > span { position: absolute; right: 20px; top: 14px; color: rgba(255,255,255,.18); font-size: 70px; line-height: 1; font-weight: 950; }
.step-icon { width: 60px; height: 60px; display: grid; place-items: center; color: var(--blue-deep); background: var(--yellow); border: 3px solid var(--blue-deep); border-radius: 18px; box-shadow: 5px 5px 0 var(--blue-deep); font-size: 30px; font-weight: 900; transform: rotate(-3deg); }
.steps-grid h3 { margin: 55px 0 10px; font-size: 27px; }
.steps-grid p { min-height: 50px; margin: 0; color: #dbe1ff; font-size: 13px; line-height: 1.7; }
.steps-grid small { display: inline-block; margin-top: 18px; padding-top: 12px; color: var(--yellow); border-top: 1px solid rgba(255,255,255,.2); font-size: 11px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 13px; font-weight: 700; }
.text-link span { color: var(--yellow); font-size: 20px; }

.prize-section { padding: 120px 0; display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; }
.prize-visual { position: relative; min-height: 590px; display: grid; place-items: center; overflow: hidden; background: var(--yellow); border: 4px solid var(--ink); border-radius: 50% 50% 32px 32px; box-shadow: 18px 18px 0 var(--blue); }
.prize-visual::before, .prize-visual::after { content: "✦"; position: absolute; color: var(--red); font-size: 100px; }
.prize-visual::before { left: 35px; top: 70px; transform: rotate(-12deg); }
.prize-visual::after { right: 40px; bottom: 55px; transform: rotate(12deg); }
.prize-kicker { position: absolute; top: 32px; font-size: 11px; font-weight: 900; letter-spacing: .2em; }
.medal { position: relative; z-index: 2; width: 330px; height: 330px; display: grid; place-content: center; text-align: center; background: var(--paper); border: 8px solid var(--ink); border-radius: 50%; box-shadow: inset 0 0 0 10px var(--blue), 12px 14px 0 var(--ink); }
.medal > span { position: absolute; left: 85px; top: 93px; color: var(--blue); font-size: 34px; font-weight: 950; }
.medal strong { color: var(--blue); font-size: 125px; line-height: .86; letter-spacing: -.1em; }
.medal small { margin-top: 15px; font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.ribbon { position: absolute; z-index: 3; width: 180px; padding: 12px; color: white; background: var(--red); border: 4px solid var(--ink); font-weight: 950; text-align: center; }
.ribbon-left { left: -28px; bottom: 90px; transform: rotate(13deg); }
.ribbon-right { right: -30px; top: 112px; background: var(--blue); transform: rotate(-12deg); }
.prize-copy .eyebrow { margin-bottom: 16px; }
.customer-prize { margin: 35px 0 28px; padding: 25px; display: grid; grid-template-columns: 1fr auto; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 12px 32px rgba(22,34,92,.08); }
.customer-prize > span { align-self: end; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.customer-prize strong { grid-row: span 2; color: var(--blue); font-size: 66px; line-height: .9; letter-spacing: -.06em; }
.customer-prize strong small { font-size: 17px; }
.customer-prize p { max-width: 370px; margin: 8px 20px 0 0; color: #626880; font-size: 12px; line-height: 1.65; }
.check-list { margin: 0 0 32px; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: center; font-size: 14px; font-weight: 700; }
.check-list span { width: 24px; height: 24px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 50%; font-size: 11px; }

.fair-section { padding: 95px 0; color: white; background: var(--blue-deep); }
.fair-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.fair-title > span { display: inline-block; padding: 12px; color: var(--blue-deep); background: var(--yellow); border-radius: 8px; font-size: 12px; line-height: 1; font-weight: 950; transform: rotate(-5deg); }
.fair-title h2 { margin: 24px 0 0; font-size: 45px; line-height: 1.13; letter-spacing: -.05em; }
.fair-items { border-top: 1px solid rgba(255,255,255,.18); }
.fair-items article { padding: 24px 0; display: grid; grid-template-columns: 65px 1fr; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.18); }
.fair-items b { color: var(--yellow); font-size: 30px; }
.fair-items h3 { margin: 0 0 7px; font-size: 18px; }
.fair-items p { margin: 0; color: #b8c2e9; font-size: 13px; line-height: 1.65; }

.closing-cta { padding: 105px 0 120px; display: grid; grid-template-columns: 1fr 430px; gap: 70px; align-items: center; }
.closing-cta h2 { font-size: clamp(58px, 7vw, 90px); }
.cta-card { padding: 30px; display: grid; background: var(--paper); border: 2px solid var(--ink); border-radius: 28px; box-shadow: 12px 12px 0 var(--yellow); }
.cta-card p { margin: 0; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.cta-card strong { margin: 6px 0 0; font-size: 58px; letter-spacing: -.06em; }
.cta-card strong span { padding: 6px 10px; color: white; background: var(--red); border-radius: 8px; font-size: 13px; vertical-align: middle; }
.cta-card small { margin: 0 0 25px; color: #71768b; }

.site-footer { padding: 38px max(24px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; color: white; background: #080e35; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark { width: 38px; height: 38px; }
.footer-brand div { display: grid; gap: 5px; }
.footer-brand small { color: #9da7cf; font-size: 10px; }
.footer-links { display: flex; gap: 24px; font-size: 12px; font-weight: 700; }
.site-footer > p { grid-column: 1/-1; margin: 0; padding-top: 18px; color: #747fa9; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }

.binding-dialog { width: min(520px, calc(100vw - 30px)); padding: 0; border: 0; border-radius: 28px; box-shadow: 0 30px 90px rgba(3,10,52,.34); }
.binding-dialog::backdrop { background: rgba(5, 12, 50, .68); backdrop-filter: blur(5px); }
.binding-dialog form { position: relative; padding: 36px; background: var(--paper); }
.binding-dialog h2 { margin: 0 0 12px; font-size: 34px; letter-spacing: -.04em; }
.dialog-close { position: absolute; right: 18px; top: 18px; width: 36px; height: 36px; border: 0; background: #eeeff4; border-radius: 50%; font-size: 25px; cursor: pointer; }
.dialog-player { margin: 0 0 25px; padding: 14px 16px; color: var(--blue); background: var(--blue-soft); border-radius: 12px; font-size: 13px; }
.binding-dialog label:not(.consent) { margin-top: 15px; display: grid; gap: 8px; font-size: 12px; font-weight: 800; }
.binding-dialog input[type="text"], .binding-dialog input:not([type]) { width: 100%; }
.binding-dialog input[name] { height: 50px; padding: 0 15px; background: white; border: 1px solid #d7d9e3; border-radius: 12px; outline: 0; }
.binding-dialog input[name]:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18,56,209,.12); }
.consent { margin-top: 20px; display: flex; align-items: flex-start; gap: 10px; color: #62677d; font-size: 11px; line-height: 1.55; }
.consent input { margin-top: 2px; accent-color: var(--blue); }
.privacy-note { color: #9599aa; font-size: 10px; line-height: 1.55; }
.dialog-submit { width: 100%; margin-top: 8px; border: 0; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: -90px; padding: 14px 20px; color: white; background: var(--blue-deep); border-radius: 14px; box-shadow: var(--shadow); font-size: 13px; font-weight: 700; transform: translateX(-50%); transition: bottom .3s ease; }
.toast.show { bottom: 28px; }

@media (max-width: 1040px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a:not(.nav-live):nth-child(3) { display: none; }
  .hero { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-stage { height: 520px; }
  .cup-main { left: 25%; }
  .player-grid { grid-template-columns: repeat(3, 1fr); }
  .prize-section { gap: 45px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 600px); --radius-lg: 26px; }
  .site-header { top: 8px; height: 62px; margin-top: 8px; padding-left: 12px; }
  .brand-mark { width: 36px; height: 36px; border-radius: 11px; }
  .brand b { font-size: 14px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero { min-height: auto; padding: 68px 0 48px; grid-template-columns: 1fr; gap: 42px; }
  .hero h1 { font-size: clamp(60px, 20vw, 88px); }
  .hero h1 em::after { right: -19px; top: -20px; font-size: 40px; }
  .hero-lead { font-size: 15px; }
  .hero-actions .button { flex: 1; min-width: 150px; }
  .event-strip { grid-template-columns: 1fr 1fr; gap: 18px; }
  .event-strip div:last-child { grid-column: 1/-1; }
  .hero-stage { height: 510px; border-radius: 30px; }
  .cup-main { width: 180px; height: 290px; left: calc(50% - 90px); top: 150px; }
  .cup-left { left: 25px; }
  .cup-right { right: 25px; }
  .orbit-one { left: calc(50% - 210px); }
  .orbit-two { left: calc(50% - 155px); }
  .countdown-inner { padding: 26px 0; flex-direction: column; gap: 18px; }
  .countdown strong { font-size: 34px; }
  .countdown-note { text-align: center; }
  .players-section { padding: 82px 0; }
  .section-heading { margin-bottom: 36px; align-items: start; flex-direction: column; gap: 18px; }
  .section-heading > p { width: auto; }
  .section-heading h2, .prize-copy h2 { font-size: 44px; }
  .binding-status { align-items: start; flex-direction: column; }
  .player-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .player-card { padding: 8px; border-radius: 20px; }
  .player-portrait { height: 220px; }
  .player-number { font-size: 45px; }
  .portrait-face { top: 62px; width: 82px; height: 104px; border-width: 4px; }
  .portrait-face::before { left: -9px; width: 95px; height: 55px; }
  .portrait-face::after { top: 36px; font-size: 12px; letter-spacing: 12px; }
  .portrait-body { width: 160px; height: 135px; border-width: 4px; }
  .portrait-body::before { font-size: 31px; }
  .portrait-four .portrait-face::before { left: -12px; width: 100px; height: 130px; border-width: 20px; border-top-width: 34px; }
  .player-copy { min-height: 95px; }
  .player-copy > div { display: block; }
  .player-copy h3 { font-size: 24px; }
  .player-copy > span { font-size: 10px; }
  .how-section { padding: 82px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: 260px; }
  .prize-section { padding: 90px 0; grid-template-columns: 1fr; }
  .prize-visual { min-height: 480px; }
  .medal { width: 280px; height: 280px; }
  .medal strong { font-size: 105px; }
  .customer-prize { grid-template-columns: 1fr; }
  .customer-prize strong { grid-row: auto; margin: 15px 0; }
  .fair-section { padding: 78px 0; }
  .fair-grid { grid-template-columns: 1fr; gap: 45px; }
  .closing-cta { padding: 82px 0 100px; grid-template-columns: 1fr; gap: 38px; }
  .closing-cta h2 { font-size: 58px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 410px) {
  .player-grid { grid-template-columns: 1fr; }
  .player-portrait { height: 300px; }
  .portrait-face { top: 70px; width: 112px; height: 132px; }
  .portrait-face::before { width: 130px; }
  .portrait-body { width: 220px; height: 180px; }
  .countdown { gap: 7px; }
  .countdown strong { font-size: 29px; }
  .binding-dialog form { padding: 30px 22px; }
}

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

/* Layout refinement v2 */
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.hero { min-height: 680px; grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr); gap: 64px; }
.hero-copy { min-width: 0; }
.hero h1 { font-size: clamp(68px, 7vw, 102px); line-height: .94; }
.hero-stage { height: 560px; }
.section-heading h2, .prize-copy h2 { font-size: clamp(42px, 4.5vw, 64px); }
.section-heading > p { max-width: 390px; width: auto; }
.player-copy > div { gap: 12px; }
.player-copy h3 { flex: 0 0 auto; }
.site-footer { min-height: 150px; }

@media (max-width: 1040px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr); gap: 36px; }
  .hero h1 { font-size: clamp(62px, 7.5vw, 88px); }
  .hero-stage { height: 520px; }
}

@media (max-width: 760px) {
  .hero { padding-top: 54px; grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { max-width: 100%; font-size: clamp(58px, 17vw, 76px); line-height: .94; }
  .hero-lead { margin-top: 24px; }
  .hero-stage { height: 470px; }
  .cup-main { top: 137px; }
  .cup-left, .cup-right { top: 245px; }
  .event-strip { margin-top: 30px; }
  .section-heading h2, .prize-copy h2 { font-size: 40px; line-height: 1.08; }
  .player-grid { grid-template-columns: 1fr; gap: 14px; }
  .player-card {
    padding: 9px;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-rows: 1fr 46px;
    gap: 8px 12px;
    border-radius: 21px;
  }
  .player-card:hover { transform: none; box-shadow: none; }
  .player-portrait { grid-row: 1 / 3; height: 188px; border-radius: 14px; }
  .player-number { left: 10px; top: 9px; font-size: 42px; }
  .portrait-face { top: 50px; width: 74px; height: 92px; border-width: 4px; }
  .portrait-face::before { left: -8px; top: -23px; width: 84px; height: 46px; }
  .portrait-face::after { top: 33px; font-size: 11px; letter-spacing: 11px; }
  .portrait-body { bottom: -45px; width: 130px; height: 105px; border-width: 4px; }
  .portrait-body::before { top: 17px; font-size: 28px; }
  .portrait-four .portrait-face::before { left: -10px; top: -25px; width: 86px; height: 112px; border-width: 17px; border-top-width: 27px; }
  .skill-tag { right: 7px; bottom: 7px; padding: 6px 8px; font-size: 8px; }
  .featured-flag { right: 13px; top: 12px; width: auto; padding: 5px 8px; border-radius: 99px; transform: none; }
  .player-copy { min-width: 0; min-height: 0; padding: 12px 8px 4px 2px; }
  .player-copy > div { display: block; }
  .player-copy h3 { margin-top: 3px; font-size: 25px; }
  .player-copy > span { margin-top: 9px; font-size: 10px; line-height: 1.5; }
  .select-buddy { grid-column: 2; height: 46px; padding: 0 12px; border-radius: 12px; }
  .prize-section { gap: 56px; }
  .prize-visual { min-height: 430px; box-shadow: 10px 10px 0 var(--blue); }
  .medal { width: 250px; height: 250px; border-width: 6px; box-shadow: inset 0 0 0 8px var(--blue), 8px 10px 0 var(--ink); }
  .medal > span { left: 61px; top: 72px; }
  .medal strong { font-size: 92px; }
  .closing-cta h2 { font-size: 52px; line-height: 1.02; }
  .site-footer { padding-block: 32px; gap: 18px; }
  .site-footer > p { line-height: 1.6; }
}

@media (max-width: 370px) {
  .player-card { grid-template-columns: 116px minmax(0, 1fr); }
  .player-portrait { height: 178px; }
  .select-buddy { font-size: 11px; }
}

/* Readability pass: raise small-copy minimums */
body { font-size: 16px; }
.desktop-nav { font-size: 15px; }
.hero-lead { font-size: 18px; line-height: 1.85; }
.event-strip small { font-size: 12px; }
.event-strip strong { font-size: 14px; }
.countdown-inner > p { font-size: 14px; }
.countdown-note { font-size: 13px; }
.section-heading > p { font-size: 16px; line-height: 1.8; }
.player-copy p { font-size: 10px; }
.player-copy > span { font-size: 13px; line-height: 1.55; }
.select-buddy { font-size: 14px; }
.demo-note { font-size: 12px; line-height: 1.65; }
.steps-grid p { font-size: 14px; line-height: 1.75; }
.steps-grid small { font-size: 12px; }
.text-link { font-size: 14px; }
.customer-prize > span { font-size: 13px; }
.customer-prize p { font-size: 14px; line-height: 1.7; }
.check-list li { font-size: 15px; }
.fair-items p { font-size: 14px; line-height: 1.7; }
.footer-brand small { font-size: 11px; }
.footer-links { font-size: 13px; }
.site-footer > p { font-size: 11px; line-height: 1.65; }
.privacy-note { font-size: 11px; }

@media (max-width: 760px) {
  .hero-lead { font-size: 16px; line-height: 1.8; }
  .event-strip small { font-size: 12px; }
  .event-strip strong { font-size: 13px; }
  .section-heading > p { font-size: 15px; }
  .player-copy p { font-size: 10px; }
  .player-copy > span { font-size: 12px; line-height: 1.55; }
  .select-buddy { font-size: 12px; }
  .steps-grid p { font-size: 14px; }
  .steps-grid small { font-size: 12px; }
  .customer-prize p { font-size: 13px; }
  .check-list li { font-size: 14px; }
  .footer-links { font-size: 12px; }
  .site-footer > p { font-size: 11px; }
}

/* Store photo: real-world anchor for the event without competing with the primary CTA */
.store-section {
  padding: 104px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  align-items: center;
  gap: 64px;
}
.store-photo-card {
  position: relative;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(13, 23, 78, .14);
}
.store-photo-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 12, 48, .82));
  pointer-events: none;
}
.store-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  display: block;
  object-fit: cover;
  object-position: 46% center;
}
.store-photo-card figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 26px;
  display: grid;
  gap: 5px;
  color: white;
}
.store-photo-card figcaption span { color: var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.store-photo-card figcaption strong { font-size: 27px; line-height: 1.1; }
.store-copy h2 { margin: 0; font-size: clamp(44px, 4.6vw, 66px); line-height: 1.06; letter-spacing: -.055em; }
.store-copy > p:not(.eyebrow) { margin: 26px 0 30px; color: #5f657d; font-size: 16px; line-height: 1.85; }
.store-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.store-details div { padding: 17px 18px; display: grid; gap: 7px; background: white; border: 1px solid var(--line); border-radius: 16px; }
.store-details small { color: #777d95; font-size: 12px; }
.store-details strong { font-size: 14px; line-height: 1.45; }

@media (max-width: 1040px) {
  .store-section { grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr); gap: 38px; }
  .store-photo-card, .store-photo-card img { min-height: 420px; }
}

@media (max-width: 760px) {
  .store-section { padding: 72px 0 4px; grid-template-columns: 1fr; gap: 34px; }
  .store-photo-card, .store-photo-card img { min-height: 330px; }
  .store-photo-card { border-radius: 25px; }
  .store-photo-card figcaption { left: 22px; bottom: 21px; }
  .store-photo-card figcaption strong { font-size: 23px; }
  .store-copy h2 { font-size: 40px; line-height: 1.08; }
  .store-copy > p:not(.eyebrow) { margin: 22px 0 25px; font-size: 15px; line-height: 1.8; }
  .store-details { grid-template-columns: 1fr; }
  .store-details strong { font-size: 14px; }
}
