:root {
  --bg: #101412;
  --bg-soft: #202522;
  --surface: #eef1f1;
  --surface-ink: #151818;
  --ink: #f6f8f7;
  --muted: #c4cdcd;
  --muted-dark: rgba(21, 24, 24, 0.72);
  --line: rgba(246, 248, 247, 0.16);
  --line-dark: rgba(21, 24, 24, 0.16);
  --accent: #c9d0d2;
  --green: #2da267;
  --green-deep: #123f2b;
  --coal: #070907;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.brand,
.eyebrow,
.button,
h1,
h2,
h3,
.stat__value,
.footer__brand {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 44px);
  border-bottom: 1px solid var(--line);
  background: rgba(16, 20, 18, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  color: rgba(246, 248, 247, 0.75);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(74px, 10vw, 112px) clamp(20px, 5vw, 44px) clamp(70px, 9vw, 104px);
  background: var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.96) 0%, rgba(8, 10, 8, 0.82) 52%, rgba(8, 10, 8, 0.7) 100%),
    linear-gradient(0deg, rgba(16, 20, 18, 0.95) 0%, rgba(16, 20, 18, 0.35) 52%, rgba(16, 20, 18, 0.82) 100%),
    image-set(
      url("uploads/stadium.webp") type("image/webp"),
      url("uploads/stadium.jpg") type("image/jpeg")
    );
  background-position: center;
  background-size: cover;
  filter: saturate(0.58) contrast(0.92) brightness(0.78);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(90deg, rgba(246, 248, 247, 0.018) 0 1px, transparent 1px 112px);
  pointer-events: none;
}

.hero__inner,
.section__inner,
.footer__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(240px, 0.42fr);
  gap: clamp(34px, 6vw, 68px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 11px 5px;
  border-left: 4px solid var(--accent);
  background: rgba(7, 9, 7, 0.54);
  color: #eef2f3;
  font-size: 1rem;
  line-height: 1;
}

h1 {
  max-width: 880px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 0.92;
  text-wrap: balance;
}

.hero__lead {
  max-width: 780px;
  margin: 26px 0 0;
  color: #d9dfdf;
  font-size: clamp(1.04rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--accent);
  color: var(--coal);
  font-size: 1.28rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #eef2f3;
  transform: translateY(-2px);
}

.button--dark {
  border-color: rgba(7, 9, 7, 0.18);
  background: var(--coal);
  color: var(--surface);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--green-deep);
  color: var(--surface);
}

.button--secondary {
  border-color: rgba(246, 248, 247, 0.24);
  background: transparent;
  color: var(--ink);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--accent);
  background: rgba(246, 248, 247, 0.1);
  color: var(--ink);
}

.mini-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.phone-frame {
  position: relative;
  width: min(100%, 288px);
  margin-left: auto;
  padding: 10px;
  border: 1px solid rgba(246, 248, 247, 0.2);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(246, 248, 247, 0.24), transparent 38%),
    rgba(7, 9, 7, 0.82);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.44), 0 0 0 8px rgba(246, 248, 247, 0.035);
}

.phone-frame img {
  width: 100%;
  height: clamp(390px, 52svh, 560px);
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(246, 248, 247, 0.12);
  border-radius: 22px;
  background: var(--coal);
}

.breadcrumb {
  margin-bottom: 24px;
  color: rgba(246, 248, 247, 0.64);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: rgba(246, 248, 247, 0.82);
  font-weight: 700;
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding: clamp(68px, 8vw, 104px) clamp(20px, 5vw, 44px);
  background: var(--bg-soft);
}

.section--paper {
  background: var(--surface);
  color: var(--surface-ink);
}

.section--deep {
  background: var(--bg);
}

.section__header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.62fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 38px;
}

h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  line-height: 0.94;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1;
}

p {
  margin: 0;
}

p + p {
  margin-top: 16px;
}

.section p,
.section li {
  color: var(--muted);
}

.section--paper p,
.section--paper li {
  color: var(--muted-dark);
}

.lead-copy {
  max-width: 860px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(246, 248, 247, 0.045);
}

.section--paper .card {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.56);
}

.card h3 {
  color: inherit;
}

.card p,
.card ul,
.card ol {
  margin-top: 12px;
}

.card ul,
.card ol {
  padding-left: 20px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.stat {
  padding: 22px;
  background: rgba(7, 9, 7, 0.52);
}

.stat__label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.stat__value {
  margin-top: 12px;
  color: #eef2f3;
  font-size: 2rem;
  line-height: 1;
}

.callout {
  margin-top: 34px;
  padding: 28px;
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  background: rgba(246, 248, 247, 0.055);
}

.section--paper .callout {
  background: rgba(18, 63, 43, 0.08);
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  gap: 16px;
  justify-content: center;
  margin-top: 38px;
}

.image-strip figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 248, 247, 0.14);
  border-radius: 18px;
  background: rgba(246, 248, 247, 0.04);
}

.image-strip img {
  width: 100%;
  aspect-ratio: 588 / 1280;
  object-fit: cover;
  object-position: top center;
}

.image-strip figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(246, 248, 247, 0.045);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq-list details p {
  margin-top: 12px;
}

.press-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.48fr);
  gap: 18px;
}

.site-footer {
  padding: 34px clamp(20px, 5vw, 44px);
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer__inner {
  display: grid;
  gap: 18px;
}

.footer__brand {
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer__links a,
.footer__links button {
  color: rgba(246, 248, 247, 0.72);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.footer__links button {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.footer__links a:hover,
.footer__links a:focus-visible,
.footer__links button:hover,
.footer__links button:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__meta {
  color: rgba(246, 248, 247, 0.58);
  font-size: 0.88rem;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(246, 248, 247, 0.2);
  border-radius: 8px;
  background: rgba(16, 20, 18, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  color: #eef2f3;
  font-size: 1.5rem;
}

.cookie-banner p {
  max-width: 620px;
  margin-top: 6px;
  color: rgba(246, 248, 247, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .hero__grid,
  .section__header,
  .grid,
  .grid--two,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: min(100%, 240px);
    margin: 0;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 660px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 58px;
  }

  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stat-grid,
  .image-strip {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .button {
    flex: 1 1 150px;
  }
}
