/* Slorify Cup — public site */
:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --fg: #F4F3EE;
  --muted: rgba(244, 243, 238, 0.62);
  --line: rgba(244, 243, 238, 0.14);
  --accent: #D52328;
  --accent-2: #E44549;
  --accent-ink: #ffffff;
  --accent-rgb: 213, 35, 40;
  --card: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  --r: 18px;
  --r-lg: 28px;
  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Inter Tight", system-ui, sans-serif;
  --max: 1120px;
  --pad: clamp(16px, 4vw, 40px);
  --header-h: 68px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  min-height: 100dvh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
address { font-style: normal; }
iframe { border: 0; max-width: 100%; }
.skip {
  position: absolute; top: -100px; left: 12px; z-index: 400;
  padding: 10px 16px; border-radius: 8px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
}
.skip:focus { top: calc(12px + var(--safe-t)); outline: 2px solid #fff; outline-offset: 2px; }

/* ── Nav: desktop bar, mobile dropdown under header (burger stays tappable) ── */
.pnav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(5, 5, 5, 0.92);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(244,243,238,0.08);
  padding-top: var(--safe-t);
}
.pnav-edge {
  height: 2px;
  background: linear-gradient(90deg, transparent 4%, var(--accent) 28%, #fff 50%, var(--accent) 72%, transparent 96%);
  opacity: .9;
}
.pnav-inner {
  display: flex; align-items: center; gap: 16px;
  max-width: var(--max); margin: 0 auto;
  padding: 10px var(--pad);
  min-height: var(--header-h);
}
.pnav-brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; min-width: 0; }
.pnav-logo {
  width: 44px; height: 36px; border-radius: 8px; object-fit: contain;
  background: transparent; padding: 0; border: 0;
}
.pnav-brand-text {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--display); font-size: 14px; font-weight: 800; letter-spacing: 0.06em;
  white-space: nowrap;
}
.pnav-brand-sep { color: var(--accent); }
.pnav-brand-l2 { color: var(--accent); }
.pnav-ed {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 18px; margin-left: 8px; padding: 0 5px;
  border: 1px solid rgba(var(--accent-rgb),0.55); border-radius: 4px;
  font-size: 10px; letter-spacing: 0.08em; color: var(--accent);
}
.pnav-tools { display: none; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.pnav-cta-sm {
  display: none;
  align-items: center; justify-content: center;
  min-height: 44px; padding: 0 14px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 800; font-size: 13px; letter-spacing: 0.04em;
}
.pnav-links {
  display: flex; align-items: center; gap: 2px; margin-left: auto;
}
.pnav-links > a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 12px;
  font-size: 14px; font-weight: 600; color: #C9C9C9; border-radius: 999px;
  transition: color .18s, background .18s;
}
.pnav-links > a:hover, .pnav-links > a.is-active { color: var(--fg); background: rgba(244,243,238,0.06); }
.pnav-links > a.pnav-cta {
  margin-left: 8px; padding: 0 16px; min-height: 42px;
  background: var(--accent); color: var(--accent-ink); font-weight: 800;
}
.pnav-links > a.pnav-cta:hover { background: var(--accent-2); }
.pnav-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 10px rgba(var(--accent-rgb),0.7);
  margin-right: 6px; flex-shrink: 0;
}
.pnav-links > a.is-live { color: var(--accent); }
.pnav-burger {
  display: none;
  width: 44px; height: 44px; padding: 0;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(244,243,238,0.04); color: var(--fg); cursor: pointer;
  position: relative; z-index: 3;
  align-items: center; justify-content: center;
}
.pnav-burger-icon {
  display: flex; flex-direction: column; gap: 5px; width: 18px;
}
.pnav-burger-icon span {
  display: block; width: 18px; height: 2px; background: var(--fg); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.pnav-burger[aria-expanded="true"] .pnav-burger-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pnav-burger[aria-expanded="true"] .pnav-burger-icon span:nth-child(2) { opacity: 0; }
.pnav-burger[aria-expanded="true"] .pnav-burger-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.pnav-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 1;
  background: rgba(0,0,0,.55); border: 0; padding: 0; cursor: pointer;
}

@media (max-width: 900px) {
  .pnav-tools { display: flex; }
  .pnav-cta-sm { display: inline-flex; }
  .pnav-burger { display: inline-flex; }
  .pnav-inner { position: relative; z-index: 3; }
  .pnav-links {
    display: none;
    position: fixed;
    top: calc(var(--header-h) + var(--safe-t));
    left: 0; right: 0; z-index: 2;
    margin: 0; padding: 8px var(--pad) calc(16px + var(--safe-b));
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #0b0b0b;
    border-bottom: 1px solid var(--line);
    max-height: calc(100dvh - var(--header-h) - var(--safe-t));
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .pnav-links.is-open { display: flex; }
  .pnav-links > a {
    min-height: 48px; padding: 12px 14px; border-radius: 12px; justify-content: flex-start; font-size: 16px;
  }
  .pnav-links > a.pnav-cta { margin: 8px 0 0; justify-content: center; }
  .pnav-backdrop.is-on { display: block; }
}

@media (max-width: 380px) {
  .pnav-brand-text { display: none; }
  .pnav-cta-sm { padding: 0 12px; font-size: 12px; }
}

/* ── Hero ── */
.phero {
  position: relative; overflow: clip;
  padding: 28px var(--pad) 56px;
  min-height: min(78vh, 760px);
}
.phero-stage {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.phero-hall {
  width: 100%; height: 100%; object-fit: cover; object-position: 78% 46%;
  opacity: .88; filter: saturate(1.1) contrast(1.12);
}
.phero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5,5,5,.9) 36%, rgba(5,5,5,.45) 54%, rgba(5,5,5,.18) 100%),
    linear-gradient(180deg, rgba(5,5,5,.28) 0%, transparent 34%, rgba(5,5,5,.78) 100%);
}
.phero-bg-word {
  position: absolute; left: -2%; top: 4%; font-family: var(--display);
  font-size: clamp(120px, 28vw, 320px); font-weight: 900; letter-spacing: -0.08em;
  color: transparent; -webkit-text-stroke: 1px rgba(244,243,238,0.055);
  pointer-events: none; white-space: nowrap; line-height: 0.75; z-index: 1;
}
.phero-container { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; }
.phero-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-areas: "copy visual" "rest visual";
  gap: 8px 32px;
  align-items: center;
}
.phero-copy { grid-area: copy; }
.phero-visual { grid-area: visual; }
.phero-rest { grid-area: rest; }
.phero-kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.phero-edition {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 4px;
  border: 1px solid rgba(244,243,238,0.22);
  background: rgba(5,5,5,.45);
  font-family: var(--display); font-size: 11px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg);
}
.phero-edition::before {
  content: ""; width: 6px; height: 6px; border-radius: 1px; background: var(--accent);
  box-shadow: 0 0 10px rgba(var(--accent-rgb),0.8);
}
.phero-tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px;
  border: 1px solid rgba(var(--accent-rgb),0.42); border-radius: 999px;
  background: rgba(var(--accent-rgb),0.08); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); font-weight: 700;
}
.phero-h {
  margin: 18px 0 14px; font-family: var(--display);
  font-size: clamp(2.35rem, 7.4vw, 5.6rem); line-height: 0.9;
  letter-spacing: -0.055em; font-weight: 900; text-transform: uppercase;
  display: flex; flex-direction: column; gap: 2px;
  overflow-wrap: anywhere;
  text-shadow: 0 18px 50px rgba(0,0,0,.55);
}
.phero-h-mid { color: var(--accent); font-style: italic; }
.phero-sub { margin: 0 0 18px; font-size: clamp(15px, 1.5vw, 17px); line-height: 1.55; color: #C0C0C0; max-width: 36em; }
.phero-facts {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
}
.phero-facts li {
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
  padding-right: 22px; border-right: 1px solid rgba(244,243,238,0.12);
}
.phero-facts li:last-child { border-right: 0; padding-right: 0; }
.phero-fact-k { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.phero-fact-v { font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: -0.03em; }
.phero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px;
  border-radius: 999px; font-weight: 800; font-size: 14px; letter-spacing: 0.04em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .22s, border-color .2s, color .2s;
}
.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  border-color: rgba(var(--accent-rgb),0.55); box-shadow: 0 14px 40px rgba(var(--accent-rgb),0.28);
}
.btn-primary:hover { transform: translateY(-1px); background: var(--accent-2); }
.btn-ghost { background: transparent; color: var(--fg); border-color: rgba(244,243,238,0.18); }
.btn-ghost:hover { border-color: rgba(var(--accent-rgb),0.5); color: var(--accent); background: rgba(var(--accent-rgb),0.06); }
.phero-visual { position: relative; isolation: isolate; }
.phero-glow {
  position: absolute; left: 18%; right: 12%; bottom: 4%; height: 42%;
  background: radial-gradient(ellipse at center, rgba(var(--accent-rgb),0.42), transparent 68%);
  filter: blur(18px); z-index: 0; pointer-events: none;
  animation: cupGlow 4.8s ease-in-out infinite;
}
@keyframes cupGlow {
  50% { opacity: .7; transform: scale(1.06); }
}
.phero-visual-frame {
  position: relative; z-index: 1; width: 100%; max-width: 460px; margin-left: auto;
  aspect-ratio: 880 / 803;
  background: transparent; border: 0; box-shadow: none;
}
.phero-visual-frame img, .phero-visual-frame picture {
  width: 100%; height: auto; object-fit: contain; display: block;
  -webkit-mask-image: radial-gradient(ellipse 72% 78% at 50% 46%, #000 46%, transparent 78%);
  mask-image: radial-gradient(ellipse 72% 78% at 50% 46%, #000 46%, transparent 78%);
}

.pcountdown {
  position: relative; z-index: 2;
  margin: 36px auto 0; text-align: center; max-width: 560px;
}
.pcountdown-k {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 12px;
}
.pcountdown-grid {
  display: flex; justify-content: center; gap: 8px;
}
.pcountdown-grid > div {
  flex: 1; min-width: 0; max-width: 110px;
  padding: 12px 8px 10px; border-radius: 14px;
  background: rgba(255,255,255,0.012);
  border: 1px solid rgba(244,243,238,0.055);
}
.pcountdown-grid b {
  display: block; font-family: var(--display);
  font-size: clamp(26px, 5vw, 40px); font-weight: 900;
  letter-spacing: -0.05em; font-variant-numeric: tabular-nums; line-height: 1;
}
.pcountdown-grid span {
  display: block; margin-top: 6px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.pcountdown-due {
  font-family: var(--display); font-weight: 800; font-size: clamp(18px, 3vw, 24px);
  letter-spacing: -0.03em;
}

.phero-values {
  list-style: none; margin: 44px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px;
}
.phero-value {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 198px; min-width: 0; padding: 22px 22px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(5,5,5,0.35) 100%),
    rgba(10,10,12,0.72);
  border: 1px solid rgba(244,243,238,0.1);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.phero-value::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 3px;
  background: linear-gradient(180deg, var(--accent), transparent 85%);
  opacity: .95;
}
.phero-value::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),0.85), transparent 70%);
}
.phero-value-n {
  position: absolute; right: 10px; top: -6px; z-index: 0;
  font-family: var(--display); font-weight: 900; font-size: 92px; line-height: 1;
  letter-spacing: -0.08em; color: transparent;
  -webkit-text-stroke: 1px rgba(244,243,238,0.08);
  pointer-events: none; user-select: none;
}
.phero-value-h {
  position: relative; z-index: 1;
  margin: 0 0 10px; font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px); font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.phero-value-p {
  position: relative; z-index: 1;
  margin: 0; max-width: 28em;
  color: rgba(244,243,238,0.72); font-size: 14.5px; line-height: 1.5;
}
.phero-value:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb),0.45);
  box-shadow: 0 22px 50px rgba(var(--accent-rgb),0.16);
}
.phero-value[data-n="01"] {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(var(--accent-rgb),0.22), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(5,5,5,0.4) 100%);
}
.phero-value[data-n="01"] .phero-value-h { color: var(--accent); }
.phero-value[data-n="02"] .phero-value-h { font-style: italic; letter-spacing: 0.08em; }
.phero-value[data-n="03"] {
  background:
    radial-gradient(90% 70% at 0% 100%, rgba(244,243,238,0.06), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(5,5,5,0.4) 100%);
}
@media (hover: none) {
  .phero-value:hover { transform: none; }
}

.pstrip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 14px 0; }
.pstrip-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.pstrip-set { display: flex; align-items: center; gap: 28px; padding-right: 28px; font-family: var(--display); font-weight: 800; letter-spacing: 0.18em; font-size: 13px; }
.pstrip-word { color: var(--fg); }
.pstrip-sep { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes pulse { 50% { opacity: .55; transform: scale(.85); } }
.pnav-live-dot.pulse, .pnav-dot { animation: pulse 2.4s ease-in-out infinite; }
.pnav-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px rgba(var(--accent-rgb),0.7);
}

/* ── Layout ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); min-width: 0; }
.section { padding: 56px 0; }
.page-head { padding-top: 32px; padding-bottom: 8px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 700;
}
.h2 {
  margin: 10px 0 12px; font-family: var(--display); font-size: clamp(28px, 7vw, 52px);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.02; text-transform: uppercase;
  overflow-wrap: anywhere;
}
.h2 span { color: var(--accent); font-style: italic; }
.lede { color: var(--muted); max-width: 38em; line-height: 1.55; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.card {
  position: relative; padding: 28px; border-radius: 20px; background: var(--card);
  border: 1px solid rgba(var(--accent-rgb),0.18); min-width: 0;
}
.card h3 { margin: 0 0 10px; font-family: var(--display); font-size: clamp(22px, 4vw, 28px); font-weight: 800; letter-spacing: -0.03em; }
.card p, .card address { margin: 0; color: var(--muted); line-height: 1.6; }
.meta { display: flex; flex-direction: column; gap: 0; margin-top: 18px; }
.meta-row {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(244,243,238,0.06);
  align-items: start;
}
.meta-row:last-child { border-bottom: 0; }
.meta-k { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.meta-v { font-weight: 700; text-align: right; overflow-wrap: anywhere; min-width: 0; }
.card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.map-embed {
  margin-top: 18px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 16 / 10; background: #111;
}
.map-embed iframe { width: 100%; height: 100%; display: block; }
.map-facade {
  width: 100%; height: 100%; min-height: 180px; border: 0; cursor: pointer;
  background: #141414; color: var(--fg); font: inherit; font-weight: 700;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 16px;
}
.map-facade:hover { color: var(--accent); }

/* ── Scoreboard / ticker ── */
.live-board { display: grid; gap: 16px; }
.score-card {
  padding: 22px; border-radius: 20px; background: var(--card);
  border: 1px solid rgba(var(--accent-rgb),0.28); min-width: 0;
}
.score-top {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  margin-bottom: 14px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  flex-wrap: wrap;
}
.live-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb),0.42); background: rgba(var(--accent-rgb),0.08);
  color: var(--accent); font-weight: 800; font-size: 11px; letter-spacing: 0.08em;
}
.score-grid { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); gap: 10px; align-items: center; }
.score-team {
  display: flex; align-items: center; gap: 8px; min-width: 0;
  font-family: var(--display); font-weight: 800; font-size: clamp(15px, 3.2vw, 24px); letter-spacing: -0.03em;
}
.score-team span { min-width: 0; overflow-wrap: anywhere; }
.score-team.right { justify-content: flex-end; text-align: right; }
.score-nums {
  font-family: var(--display); font-weight: 900; font-size: clamp(32px, 8vw, 56px);
  letter-spacing: -0.06em; color: var(--accent); display: flex; gap: 6px; align-items: baseline; flex-shrink: 0;
}
.score-colon { opacity: .5; }

.ticker-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.ticker-item {
  display: grid; grid-template-columns: 52px minmax(0,1fr); gap: 12px; padding: 14px 0;
  border-bottom: 1px solid rgba(244,243,238,0.06);
}
.ticker-min { font-family: var(--display); font-weight: 800; color: var(--accent); font-variant-numeric: tabular-nums; }
.ticker-type { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.ticker-text { font-weight: 600; overflow-wrap: anywhere; }
.ticker-item.is-goal .ticker-text { color: var(--accent); font-family: var(--display); font-size: 18px; font-weight: 800; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); gap: 14px; }
.team-card {
  padding: 20px; border-radius: 16px; background: var(--card); border: 1px solid var(--line);
  min-height: 120px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; min-width: 0;
}
.team-name { font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: -0.03em; overflow-wrap: anywhere; }
.team-meta { color: var(--muted); font-size: 13px; overflow-wrap: anywhere; }
.pill { display: inline-flex; padding: 4px 10px; border-radius: 999px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; background: rgba(var(--accent-rgb),0.1); color: var(--accent); }

.match-list { display: flex; flex-direction: column; gap: 10px; }
.match-row {
  display: grid;
  grid-template-columns: 120px minmax(0,1fr) auto minmax(0,1fr);
  gap: 10px; align-items: center;
  padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255,255,255,0.02);
  min-width: 0;
}
.match-row.is-live { border-color: rgba(var(--accent-rgb),0.4); }
.match-time { font-variant-numeric: tabular-nums; color: var(--muted); font-size: 13px; }
.match-score { font-family: var(--display); font-weight: 900; font-size: 20px; color: var(--accent); flex-shrink: 0; }
.match-team { display: flex; align-items: center; gap: 6px; min-width: 0; }
.match-team span { overflow-wrap: anywhere; }
.match-team.right { justify-content: flex-end; text-align: right; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -4px; padding: 0 4px; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 480px; }
.table th { text-align: left; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 10px 8px; border-bottom: 1px solid var(--line); }
.table td { padding: 12px 8px; border-bottom: 1px solid rgba(244,243,238,0.06); }
.table td.num { font-variant-numeric: tabular-nums; text-align: right; font-weight: 700; }

/* ── Form ── */
.form { display: flex; flex-direction: column; gap: 16px; }
.form-wrap { max-width: 720px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; min-height: 48px; color: var(--fg); outline: none; width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: color-mix(in oklab, var(--accent), transparent 40%);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.15);
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.check a { text-decoration: underline; }
.form-msg { padding: 14px 16px; border-radius: 12px; font-weight: 600; }
.form-msg.ok { background: rgba(34, 197, 94, 0.14); color: #86efac; }
.form-msg.err { background: rgba(239,68,68,0.12); color: #fca5a5; }
.field-hint { font-size: 13px; color: var(--muted); }
.flash {
  max-width: var(--max); margin: 16px auto 0; padding: 14px 18px;
  border-radius: 14px; font-weight: 600; line-height: 1.45;
}
.flash.ok {
  background: rgba(34, 197, 94, 0.14); color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.35);
}
.form-success-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,.72);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.form-success-card {
  max-width: 440px; width: 100%;
  background: #111; border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 20px; padding: 28px 24px; text-align: center;
}
.form-success-card h2 {
  margin: 0 0 10px; font-family: var(--display); font-size: 28px;
  letter-spacing: -0.03em; color: #86efac;
}
.form-success-card p { margin: 0; color: var(--muted); line-height: 1.5; }

/* ── CTA ── */
.pcta { padding: 24px 0 64px; }
.pcta-main {
  padding: 32px; border-radius: 20px;
  background: radial-gradient(circle at 20% 10%, rgba(var(--accent-rgb),0.12), transparent 40%), var(--card);
  border: 1px solid rgba(var(--accent-rgb),0.22);
}
.pcta-h {
  font-family: var(--display); font-size: clamp(28px, 7vw, 56px); font-weight: 900;
  letter-spacing: -0.04em; margin: 8px 0 12px; text-transform: uppercase; line-height: 1.02;
}

/* ── Footer ── */
.pfoot { border-top: 1px solid var(--line); padding-bottom: var(--safe-b); }
.pfoot-strip { height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.pfoot-grid {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px 28px; padding: 40px 0 28px;
}
.pfoot-h {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  margin: 0 0 14px; font-weight: 700;
}
.pfoot-h::after { content: ""; display: block; width: 28px; height: 2px; background: var(--accent); margin-top: 8px; }
.pfoot-mark { font-family: var(--display); font-weight: 900; letter-spacing: 0.06em; margin-bottom: 10px; }
.pfoot-mark i { color: var(--accent); font-style: normal; }
.pfoot-blurb { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; max-width: 28em; }
.pfoot-logo {
  width: 52px; height: 42px; object-fit: contain; border-radius: 0; background: transparent; margin-bottom: 12px;
  border: 0;
}
.pfoot-addr { margin: 0; color: var(--fg); line-height: 1.55; font-size: 15px; }
.pfoot-addr .muted { color: var(--muted); font-size: 13px; display: block; margin-top: 4px; }
.pfoot-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pfoot-list a { color: #D8D8D8; }
.pfoot-list a:hover { color: var(--accent); }
.pfoot-maps {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  color: var(--accent); font-weight: 700; font-size: 14px;
}
.pfoot-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 16px 0 28px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
.pfoot-legal { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.pfoot-legal a:hover { color: var(--accent); }

.empty { padding: 28px 0; color: var(--muted); }
.prose { max-width: 720px; }
.prose p { margin: 0 0 16px; font-size: 17px; line-height: 1.7; color: #E6E4DC; }
.prose h2 { margin: 28px 0 10px; font-family: var(--display); font-size: clamp(22px, 4vw, 30px); letter-spacing: -0.03em; }
.prose .btn { margin-right: 8px; margin-top: 8px; }

.rules { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.rule {
  display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 16px;
  padding: 20px 20px 22px; border-radius: 18px;
  background: var(--card); border: 1px solid rgba(var(--accent-rgb),0.16);
}
.rule-n {
  font-family: var(--display); font-weight: 900; font-size: 18px; letter-spacing: -0.04em;
  color: var(--accent); padding-top: 2px;
}
.rule-h { margin: 0 0 8px; font-family: var(--display); font-size: clamp(18px, 3vw, 22px); letter-spacing: -0.03em; }
.rule p { margin: 0 0 10px; color: #E6E4DC; line-height: 1.55; }
.rule p:last-child { margin-bottom: 0; }
.rule-note {
  font-size: 14px; color: var(--muted); line-height: 1.5;
  padding: 10px 12px; border-left: 2px solid var(--accent);
  background: rgba(var(--accent-rgb),0.06); border-radius: 0 10px 10px 0;
}

.clock-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 8px 0 16px; flex-wrap: wrap; }
.clock-face {
  font-family: var(--display); font-weight: 900; font-size: clamp(32px, 8vw, 48px);
  letter-spacing: -0.06em; color: var(--accent); font-variant-numeric: tabular-nums;
}
.clock-meta { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

.crest, .crest-sm, .crest-lg {
  object-fit: contain; background: #111; border: 1px solid var(--line); border-radius: 10px; flex-shrink: 0;
}
.crest-sm { width: 28px; height: 28px; }
.crest-lg { width: 64px; height: 64px; margin-bottom: 4px; }
.crest-fallback {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; color: var(--accent); background: rgba(var(--accent-rgb),0.1);
}

.quick-nav {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 8px;
}
.quick-nav a {
  display: inline-flex; align-items: center; min-height: 36px; padding: 0 12px;
  border-radius: 999px; border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--muted);
}
.quick-nav a:hover { color: var(--fg); border-color: rgba(var(--accent-rgb),0.4); }

@media (prefers-reduced-motion: reduce) {
  .pstrip-track, .pnav-live-dot, .pnav-dot, .phero-glow { animation: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 900px) {
  .phero { padding-top: 20px; padding-bottom: 36px; min-height: 0; }
  .phero-hall { object-position: 82% 38%; opacity: .55; }
  .phero-cols, .grid-2, .phero-values, .pfoot-grid, .form-row { grid-template-columns: 1fr; }
  .phero-cols { grid-template-areas: "copy" "visual" "rest"; gap: 12px; }
  .phero-visual { max-width: 240px; margin: 0 auto; }
  .phero-visual-frame { max-width: 240px; margin: 0 auto; }
  .phero-h { margin-bottom: 4px; }
  .phero-bg-word { display: none; }
  .phero-facts li { padding-right: 14px; gap: 0; }
  .phero-fact-v { font-size: 16px; }
  .pcountdown { margin-top: 28px; }
  .phero-values { margin-top: 28px; gap: 12px; }
  .phero-value { min-height: 0; padding: 20px 18px 18px; border-radius: 18px; }
  .phero-value-n { font-size: 72px; top: -4px; }
  .section { padding: 40px 0; }
  .card, .pcta-main, .score-card { padding: 20px; }
  .page-head { padding-top: 24px; }
}

@media (max-width: 640px) {
  .rule { grid-template-columns: 40px minmax(0, 1fr); padding: 16px; gap: 10px; }
  .rule-n { font-size: 15px; }
  .match-row {
    grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
    grid-template-areas: "time time time" "home score away";
  }
  .match-time { grid-area: time; }
  .score-grid { gap: 6px; }
  .pfoot-bottom { flex-direction: column; }
  .meta-row { grid-template-columns: 1fr; gap: 4px; }
  .meta-v { text-align: left; }
}

@media (max-width: 400px) {
  .btn { width: 100%; }
  .phero-actions { flex-direction: column; align-items: stretch; }
}
