:root {
  --navy: #0f2f6f;
  --navy-deep: #0b2350;
  --field: #388e3c;
  --field-deep: #2e7d32;
  --amber: #f59e0b;
  --amber-bright: #fbbf24;
  --cream: #faf7f0;
  --white: #ffffff;
  --ink: #1f2937;
  --slate: #64748b;
  --line: #e5e0d6;
  --shadow: 0 10px 30px rgba(15, 47, 111, 0.10);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--navy); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(11, 35, 80, 0.97);
  color: #fff;
  backdrop-filter: blur(6px);
}
.site-header .inner {
  max-width: 1080px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.brand-lockup { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.brand-lockup img { width: 38px; height: 38px; }
.brand-lockup .b-name { font-weight: 900; font-size: 18px; letter-spacing: .3px; line-height: 1.1; }
.brand-lockup .b-tag { display: block; font-weight: 600; font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--amber-bright); }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.site-nav a {
  color: #fff; text-decoration: none; font-weight: 700; font-size: 15px;
  padding: 8px 14px; border-radius: 999px; transition: background .15s ease;
}
.site-nav a:hover { background: rgba(255,255,255,0.14); }
.site-nav a.active { background: rgba(255,255,255,0.18); }

/* Hero */
.hero {
  background: radial-gradient(1200px 500px at 70% -10%, rgba(30,86,160,.55), transparent 60%),
              linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 70%, var(--field) 70.5%, var(--field-deep) 100%);
  color: #fff;
}
.hero .inner {
  max-width: 1080px; margin: 0 auto; padding: 76px 20px 96px; text-align: center;
}
.eyebrow {
  display: inline-block; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 999px; padding: 7px 16px; margin-bottom: 20px;
}
.eyebrow.paper { background: #e7f6e8; color: var(--field-deep); border-color: #bbe6c2; }
.hero h1 {
  margin: 0 auto 16px; max-width: 760px;
  font-size: clamp(34px, 6vw, 60px); font-weight: 900; line-height: 1.05; letter-spacing: -1px;
}
.hero h1 .accent { color: var(--amber-bright); }
.hero .sub {
  max-width: 620px; margin: 0 auto 32px;
  font-size: clamp(17px, 2.4vw, 21px); font-weight: 600; color: rgba(255,255,255,0.92);
}
.hero .facts {
  margin: 26px auto 0; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.hero .facts span {
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12); border-radius: 999px; padding: 6px 13px;
}

/* Buttons */
.btn {
  display: inline-block; border: none; cursor: pointer;
  border-radius: 999px; padding: 15px 28px;
  font-size: 17px; font-weight: 900; text-decoration: none; text-align: center;
  transition: transform .06s ease, box-shadow .06s ease, background .15s ease;
}
.btn:active { transform: translateY(2px); }
.btn.primary { background: linear-gradient(160deg, var(--amber-bright), var(--amber)); color: #4a2b00; box-shadow: 0 6px 0 #b45309, 0 12px 24px rgba(0,0,0,0.25); }
.btn.primary:hover { filter: brightness(1.06); }
.btn.ghost-btn { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.75); }
.btn.ghost-btn:hover { background: rgba(255,255,255,0.12); }
.btn.dark { background: var(--navy); color: #fff; box-shadow: 0 6px 0 var(--navy-deep); }
.btn.row-btn { display: flex; gap: 8px; justify-content: center; align-items: center; }

/* Sections */
.section { padding: 64px 20px; }
.section .inner { max-width: 1080px; margin: 0 auto; }
.section.center-head { text-align: center; }
.section h2 {
  font-size: clamp(26px, 4vw, 40px); font-weight: 900; letter-spacing: -0.5px;
  color: var(--navy); margin: 0 0 8px; line-height: 1.1;
}
.section .lead { max-width: 620px; margin: 0 auto 36px; font-size: 18px; font-weight: 600; color: var(--slate); }
.section.center-head .lead { margin-left: auto; margin-right: auto; }
.white-bg { background: var(--white); }
.green-band { background: linear-gradient(160deg, var(--field), var(--field-deep)); color: #fff; }

/* Pillar cards */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.pillar {
  background: var(--white); border: 1px solid var(--line); border-radius: 22px;
  padding: 26px 24px; box-shadow: var(--shadow); text-align: left;
}
.pillar .p-icon { font-size: 40px; }
.pillar h3 { margin: 10px 0 6px; font-size: 21px; font-weight: 900; color: var(--navy); }
.pillar p { margin: 0 0 14px; color: var(--slate); font-weight: 600; }
.status { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; border-radius: 999px; padding: 5px 12px; }
.status.live { background: #e7f6e8; color: var(--field-deep); }

/* Feature (product) band */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.feature .art { display: flex; justify-content: center; }
.feature .art .phone {
  width: 100%; max-width: 340px; aspect-ratio: 3 / 5;
  border-radius: 34px; padding: 12px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--field) 100%);
  box-shadow: 0 24px 60px rgba(15,47,111,.35);
  transform: rotate(-3deg);
}
.feature .art .phone .screen {
  background: var(--white); border-radius: 24px; height: 100%;
  padding: 16px 14px; color: var(--ink);
  display: flex; flex-direction: column; gap: 10px; font-size: 14px;
}
.feature .art .phone .screen .mini-q { font-weight: 900; font-size: 15px; color: var(--navy); }
.feature .art .phone .screen .mini-opt {
  border: 3px solid #e2e8f0; border-radius: 12px; padding: 9px 10px; font-weight: 800;
  display: flex; gap: 8px; align-items: center;
}
.feature .art .phone .screen .mini-opt.good { background: #dcfce7; border-color: #16a34a; }
.feature .art .phone .screen .mini-opt .let {
  flex: 0 0 22px; height: 22px; border-radius: 50%; background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 900; display: flex; align-items: center; justify-content: center;
}
.feature .art .art-cap { text-align: center; font-size: 13px; font-weight: 700; color: var(--slate); margin-top: 14px; }

.bullets { list-style: none; padding: 0; margin: 20px 0 26px; }
.bullets li {
  padding: 8px 0 8px 34px; position: relative; font-weight: 700; font-size: 17px;
}
.bullets li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #e7f6e8; color: var(--field-deep);
  font-weight: 900; font-size: 14px; text-align: center; line-height: 24px;
}
.green-band .bullets li::before { background: rgba(255,255,255,0.2); color: #fff; }
.green-band h2, .green-band p, .green-band .lead { color: #fff; }

/* Game page */
.game-page { text-align: center; padding: 90px 20px; }
.game-page .inner { max-width: 640px; margin: 0 auto; }
.game-page h1 { font-size: clamp(36px, 6vw, 56px); font-weight: 900; color: var(--navy); letter-spacing: -1px; }
.game-page .lead { font-size: 18px; font-weight: 600; color: var(--slate); margin: 0 auto 30px; }
.big-play { font-size: 22px; padding: 18px 46px; }
.tags { margin-top: 32px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.tags span {
  font-size: 13px; font-weight: 800; color: var(--navy);
  background: #e7f6e8; border: 1px solid #bbe6c2; border-radius: 999px; padding: 7px 14px;
}

/* CTA band */
.cta {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: #fff; text-align: center; padding: 64px 20px; border-radius: 28px;
  margin: 0 20px; box-shadow: 0 24px 60px rgba(11,35,80,.35);
}
.cta h2 { color: #fff; margin-bottom: 8px; }
.cta .lead { color: rgba(255,255,255,0.9); margin-bottom: 26px; }
.cta .inner { max-width: 640px; margin: 0 auto; }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.8); margin-top: 64px; }
.site-footer .inner {
  max-width: 1080px; margin: 0 auto; padding: 40px 20px 28px;
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center;
}
.site-footer .f-brand { display: flex; align-items: center; gap: 10px; font-weight: 900; color: #fff; font-size: 17px; }
.site-footer .f-brand img { width: 34px; height: 34px; }
.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 700; }
.site-footer a:hover { color: var(--amber-bright); }
.site-footer .f-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer .small-print { width: 100%; font-size: 13px; color: rgba(255,255,255,0.5); text-align: center; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 18px; }

/* 404 */
.notfound { text-align: center; padding: 90px 20px; }
.notfound h1 { font-size: 44px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.notfound p { color: var(--slate); font-weight: 600; margin-bottom: 24px; }

/* Guide pages */
.guide-page { background: var(--cream); }
.guide-hero {
  text-align: center;
  padding: 84px 20px 26px;
  background: radial-gradient(900px 400px at 75% -10%, rgba(30,86,160,.18), transparent 60%);
  border-bottom: 1px solid var(--line);
}
.guide-hero .inner, .guide-hero { max-width: 900px; margin: 0 auto; }
.guide-eyebrow {
  display: inline-block; background: #e7f6e8; border: 1px solid #bbe6c2;
  color: var(--field-deep); font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 999px; padding: 7px 16px; margin-bottom: 18px;
}
.guide-hero h1 {
  margin: 0 auto 14px; max-width: 820px;
  font-size: clamp(32px, 5.6vw, 54px); font-weight: 900; color: var(--navy);
  letter-spacing: -1px; line-height: 1.05;
}
.guide-hero .sub { max-width: 680px; margin: 0 auto; font-size: 17px; font-weight: 600; color: var(--slate); }
.guide-hero .chips {
  margin: 22px auto 0; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.guide-hero .chips span {
  font-size: 12.5px; font-weight: 800; color: var(--navy);
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px;
}
.disclaimer {
  max-width: 860px; margin: 24px auto 0; padding: 0 20px;
  text-align: center; font-size: 13px; font-weight: 700; color: var(--slate);
}

.g-section { padding: 52px 20px; }
.g-section .inner { max-width: 900px; margin: 0 auto; }
.g-section .g-kicker {
  display: block; font-size: 12px; font-weight: 900; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--field-deep); margin-bottom: 8px;
}
.g-section h2 {
  font-size: clamp(24px, 3.6vw, 36px); font-weight: 900; color: var(--navy);
  letter-spacing: -0.5px; margin: 0 0 12px; line-height: 1.12;
}
.g-section .g-lead { max-width: 700px; font-size: 17px; font-weight: 600; color: var(--slate); margin: 0 0 28px; }

.g-note {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--amber);
  border-radius: 14px; padding: 16px 18px; font-weight: 600; color: var(--ink);
  margin-top: 20px;
}
.g-note strong { color: var(--navy); }

.g-callout {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: #fff; border-radius: 18px; padding: 24px 26px; margin-top: 26px;
  box-shadow: var(--shadow);
}
.g-callout h3 { margin: 0 0 8px; color: var(--amber-bright); font-size: 20px; }
.g-callout p { margin: 0; color: rgba(255,255,255,0.92); font-weight: 600; }

.fig {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 18px; box-shadow: var(--shadow);
}
.fig svg { width: 100%; height: auto; display: block; }
.fig svg text { font-family: inherit; }
.fig-cap { margin: 12px 0 0; text-align: center; font-size: 13px; font-weight: 700; color: var(--slate); }
.fig-title { margin: 0 0 10px; font-size: 15px; font-weight: 900; color: var(--navy); text-align: center; }

.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.two-cols.soft { margin-top: 26px; }
.two-cols.soft .bullets { margin: 0; }
.two-cols .mini-h { margin: 0 0 10px; font-size: 17px; font-weight: 900; color: var(--navy); }
.soft-copy { margin: 0; color: var(--slate); font-weight: 600; }

.track-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 22px 22px 16px; box-shadow: var(--shadow);
}
.two-cols.match { align-items: stretch; }
.two-cols.match .track-card { height: 100%; }
.track-card h3 { margin: 0 0 4px; font-size: 21px; font-weight: 900; color: var(--navy); }
.track-card .track-sub { margin: 0 0 8px; color: var(--slate); font-weight: 600; font-size: 14.5px; }
.track-card .bullets li { font-size: 15px; }

.mob-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.mob-table th, .mob-table td {
  text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line);
}
.mob-table thead th { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--slate); }
.mob-table tbody tr:nth-child(even) { background: #f8f6f1; }
.mob-table tbody td:first-child { font-weight: 900; color: var(--navy); }

.event-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 6px;
}
.event-tile {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 14px; text-align: center; box-shadow: var(--shadow);
}
.event-tile svg { width: 84px; height: 66px; display: block; margin: 0 auto 8px; }
.event-tile h3 { margin: 0 0 6px; font-size: 16px; font-weight: 900; color: var(--navy); }
.event-tile p { margin: 0; font-size: 13.5px; font-weight: 600; color: var(--slate); }

.glossary {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 6px;
}
.gloss-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px;
  box-shadow: var(--shadow);
}
.gloss-item h3 { margin: 0 0 4px; font-size: 15.5px; font-weight: 900; color: var(--navy); }
.gloss-item p { margin: 0; font-size: 14px; font-weight: 600; color: var(--slate); }

.checklist {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 10px 22px 10px; box-shadow: var(--shadow);
}
.checklist ul { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative; padding: 16px 0 16px 40px;
  border-top: 1px solid var(--line); font-weight: 600; color: var(--ink);
}
.checklist li:first-child { border-top: none; }
.checklist li::before {
  content: "?"; position: absolute; left: 0; top: 14px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 900; font-size: 15px;
  text-align: center; line-height: 26px;
}
.checklist li strong { color: var(--navy); }

.g-section .bottom-line { text-align: center; }
.bottom-line .bl { max-width: 700px; margin: 0 auto 26px; font-size: 17px; font-weight: 600; color: var(--slate); }
.bottom-line .bl strong { color: var(--navy); }

@media (max-width: 820px) {
  .two-cols { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .event-grid { grid-template-columns: 1fr; }
}