:root {
  --black: #030403;
  --panel: #101410;
  --lime: #9be22d;
  --white: #ffffff;
  --muted: #9ba29b;
  --line: rgba(255, 255, 255, 0.17);
  --page: min(1320px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.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;
  top: -80px;
  left: 18px;
  z-index: 100;
  padding: 11px 16px;
  background: var(--lime);
  color: var(--black);
  font-weight: 900;
  border-radius: 6px;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 70px;
  padding: 0 max(24px, calc((100% - 1400px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  background: rgba(2, 3, 2, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.header-brand img { width: 46px; height: 46px; object-fit: contain; }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  color: white;
  border: 1px solid var(--line);
  border-radius: 5px;
  cursor: pointer;
}
.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 150ms ease, opacity 150ms ease;
}
.menu-button:hover,
.menu-button:focus-visible { color: var(--lime); border-color: var(--lime); }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
  padding: 29px 0 27px;
  color: #d9ddd9;
  transition: color 150ms ease;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 2px;
  background: var(--lime);
  transition: right 150ms ease;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active { color: var(--lime); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after { right: 0; }

.header-action {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--lime);
  color: var(--black);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 150ms ease, transform 150ms ease;
}
.header-action:hover,
.header-action:focus-visible { background: white; transform: translateY(-1px); }

.header-tools {
  display: flex;
  align-items: center;
  gap: 13px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 7px;
}

.header-socials span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 465px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: #070907;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.38)),
    url('assets/website-hero.png');
  background-size: cover;
  background-position: center 67%;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.1) 55%, #030403 100%),
    radial-gradient(circle at 50% 48%, transparent 0, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.58) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(155, 226, 45, 0.07) 18.2% 18.4%, transparent 18.6% 100%),
    repeating-linear-gradient(90deg, transparent 0 15%, rgba(255, 255, 255, 0.025) 15.1% 15.2%);
}
.hero-content {
  width: min(820px, calc(100% - 36px));
  padding: 28px 0 24px;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.92);
}
.hero-logo {
  width: clamp(130px, 16vw, 210px);
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.8));
}
.hero-kicker {
  width: fit-content;
  margin: 2px auto 0;
  padding: 0 32px;
  font-size: clamp(24px, 3.25vw, 43px);
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-transform: uppercase;
}
.hero-kicker::after {
  content: '';
  display: block;
  width: min(460px, 86%);
  height: 4px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, transparent, var(--lime) 18%, var(--lime) 82%, transparent);
}
.hero h1 {
  margin: 12px 0 0;
  font-size: clamp(16px, 1.85vw, 24px);
  font-weight: 800;
  letter-spacing: 0.31em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero h1 span { color: var(--lime); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  margin-top: 17px;
}
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 2px solid var(--lime);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: none;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-solid { background: var(--lime); color: var(--black); }
.button-solid:hover,
.button-solid:focus-visible { background: white; border-color: white; }
.button-outline { background: rgba(0, 0, 0, 0.58); color: white; }
.button-outline:hover,
.button-outline:focus-visible { background: var(--lime); color: var(--black); }
.quick-facts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #030403;
  border-top: 1px solid rgba(155, 226, 45, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.quick-facts article {
  min-height: 143px;
  padding: 22px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.quick-facts article:last-child { border-right: 0; }
.fact-icon {
  width: 31px;
  height: 31px;
  color: var(--lime);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ball-icon circle:not(:first-child) {
  fill: currentColor;
  stroke: none;
}
.quick-facts h2 {
  margin: 0 0 5px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quick-facts p { margin: 0; color: #939a93; font-size: 10px; line-height: 1.5; }

.lifestyle-banner {
  min-height: 112px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
    url('assets/website-hero.png') center 73% / cover;
  border-bottom: 1px solid rgba(155, 226, 45, 0.2);
}
.lifestyle-banner p,
.lifestyle-banner strong {
  margin: 0;
  font-size: clamp(23px, 3.1vw, 40px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}
.lifestyle-banner strong { color: var(--lime); }
.lifestyle-banner span {
  margin-top: 11px;
  color: #d2d7d2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section { width: var(--page); margin: 0 auto; padding: clamp(86px, 10vw, 138px) 0; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 30px 84px;
}
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2,
.organizer-intro h2,
.company h2,
.support h2 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}
.section-heading > p:last-child,
.organizer-intro > p:last-child,
.company-copy,
.support-copy { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 62px;
}
.platform-card {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 62%), var(--panel);
  border: 1px solid var(--line);
  transition: border-color 160ms ease, transform 160ms ease;
}
.platform-card:hover { border-color: var(--lime); transform: translateY(-3px); }
.card-index {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--lime);
  border: 1px solid rgba(155, 226, 45, 0.65);
  border-radius: 50%;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
}
.platform-card p {
  margin: 0 0 7px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.platform-card h3 { margin: 0 0 14px; font-size: clamp(33px, 4vw, 54px); text-transform: uppercase; }
.platform-card span { display: block; max-width: 560px; color: #9fa69f; line-height: 1.65; }

.organizers {
  width: 100%;
  padding-right: max(24px, calc((100% - 1320px) / 2));
  padding-left: max(24px, calc((100% - 1320px) / 2));
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(60px, 9vw, 130px);
  background: var(--lime);
  color: var(--black);
}
.organizer-intro .eyebrow { color: #375900; }
.organizer-intro > p:last-child { max-width: 700px; margin-top: 30px; color: #2e3b27; }
.organizer-list { border-top: 2px solid rgba(0, 0, 0, 0.72); }
.organizer-list article {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.organizer-list > article > span { font-family: Georgia, 'Times New Roman', serif; font-size: 20px; }
.organizer-list h3 { margin: 0 0 6px; font-size: 18px; text-transform: uppercase; }
.organizer-list p { margin: 0; color: #33402e; line-height: 1.55; }

.company,
.support { display: grid; grid-template-columns: 1fr 0.78fr; gap: clamp(60px, 9vw, 130px); }
.company-copy p { margin: 0 0 24px; }
.company-copy span {
  display: inline-block;
  margin-top: 8px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.support {
  width: 100%;
  padding-right: max(24px, calc((100% - 1320px) / 2));
  padding-left: max(24px, calc((100% - 1320px) / 2));
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.support-copy a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 18px 0;
  color: var(--lime);
  border-top: 1px solid var(--lime);
  border-bottom: 1px solid var(--lime);
  font-size: clamp(17px, 2.2vw, 26px);
  font-weight: 900;
}

.site-footer {
  width: var(--page);
  min-height: 168px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 54px; height: 54px; object-fit: contain; }
.footer-brand div,
.footer-meta { display: flex; flex-direction: column; gap: 5px; }
.footer-brand strong { text-transform: uppercase; }
.footer-brand span,
.footer-meta { color: var(--muted); font-size: 11px; }
.footer-meta { align-items: flex-end; }
.footer-meta a { color: var(--lime); font-weight: 900; }

.page-main { min-height: calc(100vh - 238px); }
.page-hero {
  position: relative;
  min-height: 340px;
  padding: 80px max(24px, calc((100% - 1320px) / 2));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.4) 62%, rgba(0, 0, 0, 0.72)),
    url('assets/website-hero.png') center 62% / cover;
  border-bottom: 1px solid rgba(155, 226, 45, 0.24);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 45%, #030403 112%);
}
.page-hero-content { width: min(760px, 100%); }
.page-hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.86;
  text-transform: uppercase;
}
.page-hero p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: #d2d7d2;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}
.content-section { width: var(--page); margin: 0 auto; padding: 82px 0; }
.content-section + .content-section { border-top: 1px solid var(--line); }
.content-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  margin-bottom: 42px;
}
.content-heading h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-transform: uppercase;
}
.content-heading > p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.info-card {
  min-height: 250px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 65%), var(--panel);
  border: 1px solid var(--line);
}
.info-card .card-index { margin-bottom: 54px; }
.info-card h2,
.info-card h3 { margin: 0 0 13px; font-size: 25px; text-transform: uppercase; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.info-card a { display: inline-block; margin-top: 22px; color: var(--lime); font-weight: 900; }
.status-panel {
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  background: var(--lime);
  color: var(--black);
}
.status-panel h2 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 48px); text-transform: uppercase; }
.status-panel p { max-width: 760px; margin: 0; color: #2c3a25; line-height: 1.65; }
.status-panel .button { border-color: var(--black); text-shadow: none; }
.status-panel .button-outline { background: var(--black); color: white; }
.status-actions { display: flex; max-width: 580px; justify-content: flex-end; flex-wrap: wrap; gap: 10px; }
.status-actions .button { white-space: nowrap; }
.detail-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.detail-list article { padding: 27px 24px 27px 0; border-bottom: 1px solid var(--line); }
.detail-list article:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.detail-list h3 { margin: 0 0 9px; text-transform: uppercase; }
.detail-list p { margin: 0; color: var(--muted); line-height: 1.6; }
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(44px, 8vw, 110px); }
.contact-details h2 { margin: 0 0 20px; font-size: clamp(35px, 5vw, 62px); line-height: 0.98; text-transform: uppercase; }
.contact-details p { color: var(--muted); line-height: 1.7; }
.contact-details .button { margin-top: 24px; }
.contact-details .support-route-note { max-width: 560px; margin-top: 18px; font-size: 13px; }
.contact-email {
  display: block;
  margin-top: 30px;
  padding: 18px 0;
  color: var(--lime);
  border-top: 1px solid var(--lime);
  border-bottom: 1px solid var(--lime);
  font-size: clamp(17px, 2.2vw, 25px);
  font-weight: 900;
}
.contact-notice { padding: 30px; background: var(--panel); border: 1px solid var(--line); }
.contact-notice h3 { margin: 0 0 14px; text-transform: uppercase; }
.contact-notice p { margin: 0 0 20px; color: var(--muted); line-height: 1.7; }
.contact-notice p:last-child { margin-bottom: 0; }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.more-card {
  min-height: 235px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 65%), var(--panel);
  border: 1px solid var(--line);
}
.more-card.linked { transition: border-color 150ms ease, transform 150ms ease; }
.more-card.linked:hover,
.more-card.linked:focus-visible { border-color: var(--lime); transform: translateY(-3px); }
.more-card.restricted { border-color: rgba(255, 255, 255, 0.25); }
.more-tag {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.more-card h2 { margin: 0 0 11px; font-size: 24px; text-transform: uppercase; }
.more-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.availability,
.more-link { font-size: 11px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.availability { color: #b9beb9; }
.more-link { color: var(--lime); }

.function-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.function-card {
  min-height: 305px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 65%), var(--panel);
  border: 1px solid var(--line);
  transition: border-color 150ms ease, transform 150ms ease;
}
.function-card:hover,
.function-card:focus-visible { border-color: var(--lime); transform: translateY(-3px); }
.function-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--lime);
  border: 1px solid rgba(155, 226, 45, 0.62);
  border-radius: 50%;
  font-size: 21px;
  font-weight: 900;
}
.function-card h2 { margin: 0 0 12px; font-size: 27px; text-transform: uppercase; }
.function-card p { margin: 0; color: var(--muted); line-height: 1.62; }
.function-card strong { color: var(--lime); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.function-label { display: block; margin-bottom: 10px; color: #f3b74e; font-size: 10px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.create-function { border-color: rgba(243, 183, 78, 0.3); }
.compact-functions { grid-template-columns: repeat(4, 1fr); }
.compact-functions .function-card { min-height: 270px; }
.organizer-functions { width: 100%; padding-right: max(24px, calc((100% - 1320px) / 2)); padding-left: max(24px, calc((100% - 1320px) / 2)); background: #0b0d0b; }

.home-scorecard { padding-top: 94px; padding-bottom: 94px; }
.scorecard-heading { margin-bottom: 44px; }
.scorecard-shell {
  padding: clamp(22px, 4vw, 42px);
  background: linear-gradient(145deg, rgba(155, 226, 45, 0.06), transparent 50%), #0d100d;
  border: 1px solid rgba(155, 226, 45, 0.46);
  border-radius: 10px;
}
.scorecard-options { display: flex; flex-wrap: wrap; align-items: end; gap: 14px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.scorecard-options label { display: grid; gap: 7px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.scorecard-options select {
  min-width: 100px;
  height: 42px;
  padding: 0 34px 0 12px;
  background: #050605;
  color: white;
  border: 1px solid var(--line);
  border-radius: 5px;
  font: inherit;
}
.scorecard-options span { margin-left: auto; padding: 10px 13px; color: var(--lime); border: 1px solid rgba(155, 226, 45, 0.5); border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.scoreboard { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(18px, 4vw, 54px); padding: 44px 0 30px; }
.score-team { display: grid; justify-items: center; gap: 18px; }
.score-team input {
  width: min(100%, 300px);
  padding: 10px;
  background: transparent;
  color: white;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: none;
  text-align: center;
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 900;
  text-transform: uppercase;
}
.score-team input:focus { border-color: var(--lime); }
.score-team output { font-size: clamp(76px, 12vw, 150px); font-weight: 900; letter-spacing: -0.08em; line-height: 0.8; }
.score-divider { color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: 0.15em; }
.score-buttons { display: grid; grid-template-columns: repeat(2, 64px); gap: 10px; }
.score-buttons button,
.score-utility {
  min-height: 48px;
  background: #050605;
  color: white;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 26px;
  font-weight: 900;
  cursor: pointer;
}
.score-buttons button:last-child { background: var(--lime); color: var(--black); border-color: var(--lime); }
.score-buttons button:hover,
.score-buttons button:focus-visible,
.score-utility:hover,
.score-utility:focus-visible { border-color: var(--lime); color: var(--lime); }
.score-buttons button:last-child:hover,
.score-buttons button:last-child:focus-visible { background: white; color: var(--black); border-color: white; }
.score-status { margin: 0; padding: 17px; color: #d7dcd7; background: rgba(255,255,255,0.035); text-align: center; font-weight: 800; }
.score-status.winner { color: var(--black); background: var(--lime); }
.scorecard-footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 22px; }
.scorecard-footer > div { display: flex; gap: 10px; }
.score-utility { min-height: 42px; padding: 0 17px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.score-utility:disabled { opacity: 0.38; cursor: default; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .menu-button { display: block; grid-column: 3; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 10px 24px 22px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: rgba(2, 3, 2, 0.99);
    border-bottom: 1px solid var(--line);
  }
  .nav-open .site-nav { display: flex; }
  .site-nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .site-nav a::after { bottom: 8px; }
  .nav-open .menu-button > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-open .menu-button > span:nth-child(2) { opacity: 0; }
  .nav-open .menu-button > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .header-tools { display: none; }
  .quick-facts { grid-template-columns: repeat(3, 1fr); }
  .quick-facts article:nth-child(3) { border-right: 0; }
  .quick-facts article:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .section-heading,
  .organizers,
  .company,
  .support,
  .content-heading,
  .contact-layout { grid-template-columns: 1fr; }
  .content-grid,
  .more-grid,
  .function-grid,
  .compact-functions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --page: calc(100% - 28px); }
  .site-header { min-height: 64px; padding: 0 14px; }
  .header-brand img { width: 42px; height: 42px; }
  .header-brand span { display: none; }
  .site-nav { padding-right: 14px; padding-left: 14px; font-size: 10px; }
  .site-nav a { padding: 15px 0; }
  .hero { min-height: 690px; background-position: 58% center; }
  .hero-content { padding-top: 74px; }
  .hero-logo { width: 142px; }
  .hero-kicker { padding: 0 10px; font-size: 25px; }
  .hero h1 { font-size: 15px; letter-spacing: 0.22em; }
  .hero-actions,
  .hero-actions .button { width: 100%; }
  .registration-note { font-size: 9px; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .quick-facts article,
  .quick-facts article:nth-child(3) { min-height: 145px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .quick-facts article:nth-child(even) { border-right: 0; }
  .quick-facts article:nth-last-child(-n + 2) { border-bottom: 0; }
  .lifestyle-banner { min-height: 220px; }
  .lifestyle-banner p,
  .lifestyle-banner strong { display: block; font-size: 27px; }
  .lifestyle-banner span { max-width: 330px; }
  .section { padding-top: 82px; padding-bottom: 82px; }
  .section-heading h2,
  .organizer-intro h2,
  .company h2,
  .support h2 { font-size: 40px; }
  .platform-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .platform-card { min-height: 300px; }
  .organizers,
  .support { padding-right: 18px; padding-left: 18px; }
  .site-footer { min-height: 210px; align-items: flex-start; justify-content: center; flex-direction: column; }
  .footer-meta { align-items: flex-start; }
  .page-hero { min-height: 300px; padding: 60px 18px; }
  .page-hero h1 { font-size: 54px; }
  .content-section { padding: 62px 0; }
  .content-grid,
  .detail-list,
  .more-grid,
  .function-grid,
  .compact-functions { grid-template-columns: 1fr; }
  .detail-list article,
  .detail-list article:nth-child(even) { padding: 24px 0; border-left: 0; }
  .status-panel { grid-template-columns: 1fr; }
  .status-panel .button { width: 100%; }
  .status-actions { display: grid; width: 100%; max-width: none; grid-template-columns: 1fr; }
  .scoreboard { grid-template-columns: 1fr; gap: 28px; }
  .score-divider { margin: -5px 0; }
  .score-team output { font-size: 92px; }
  .scorecard-options span { width: 100%; margin-left: 0; text-align: center; }
  .scorecard-footer { align-items: stretch; flex-direction: column; }
  .scorecard-footer > div { display: grid; grid-template-columns: repeat(2, 1fr); }
  .scorecard-footer .button { width: 100%; }
}

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