:root {
  color-scheme: dark;
  --bg: #08110d;
  --panel: #101d17;
  --text: #f4f8f2;
  --muted: #a8b8ad;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d7ff57;
  --accent-2: #5fe2c0;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 8%, rgba(95, 226, 192, 0.12), transparent 30%),
    linear-gradient(145deg, #08110d 0%, #0c1814 42%, #0e1512 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 17, 13, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.language-switch button {
  min-width: 42px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
}

.language-switch button.is-active {
  background: var(--accent);
  color: #09110d;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 75px);
  padding: clamp(28px, 5vw, 72px) clamp(18px, 5vw, 64px);
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 255, 87, 0.14), rgba(95, 226, 192, 0.1)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 36px);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.hero-media::after,
.hero-media.is-missing::before {
  position: absolute;
  inset: auto 24px 24px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.hero-media::after {
  content: "Peak Free Kick";
}

.hero-media.is-missing::before {
  content: "Image placeholder";
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.hero-copy {
  margin: 26px 0 0;
  color: #d5dfd8;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
}

.button.primary {
  background: var(--accent);
  color: #08110d;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.button.disabled {
  cursor: default;
  opacity: 0.72;
}

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

.stats div,
.feature-grid article,
.mode-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.stats div {
  padding: 18px;
}

.stats dt {
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
}

.stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 64px);
}

.section-heading {
  display: grid;
  gap: 2px;
  margin-bottom: 28px;
}

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

.feature-grid article,
.mode-list article {
  padding: 24px;
}

.feature-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.feature-grid p,
.mode-list p,
.policy-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.gallery-section {
  background: rgba(255, 255, 255, 0.035);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(95, 226, 192, 0.14), rgba(215, 255, 87, 0.08)),
    #122019;
}

.gallery figure.wide {
  min-height: 300px;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(8, 17, 13, 0.74);
  color: #eef5ee;
  font-size: 14px;
  font-weight: 700;
}

.gallery .placeholder::before {
  content: "Image placeholder";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--muted);
}

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

.mode-list article {
  min-height: 210px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.policy {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 0;
}

.policy-hero {
  padding-bottom: 34px;
}

.policy-hero h1 {
  font-size: clamp(44px, 7vw, 86px);
}

.policy-hero p:not(.eyebrow) {
  color: var(--muted);
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-content article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.policy-content h2 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.25;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
  }

  .hero,
  .feature-grid,
  .mode-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 300px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .nav-links {
    gap: 16px;
    font-size: 13px;
  }

  .language-switch button {
    min-width: 36px;
  }

  .stats,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery figure,
  .gallery figure.wide {
    min-height: 420px;
  }

  .gallery figure.wide:first-child {
    min-height: 250px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
