:root {
  --bg: #f4f7f8;
  --surface: #ffffff;
  --surface-2: #eef3f5;
  --ink: #13232c;
  --muted: #60707a;
  --line: #d8e0e4;
  --accent: #ff3d00;
  --accent-dark: #d83100;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(19, 35, 44, 0.12);
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(255, 61, 0, 0.5);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: var(--accent);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 247, 248, 0.94);
  border-bottom: 1px solid rgba(216, 224, 228, 0.8);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav a[aria-current="page"],
.nav a:hover {
  background: var(--ink);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switcher a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.language-switcher a[aria-current="true"],
.language-switcher a:hover {
  background: var(--accent);
  color: #fff;
}

.hero {
  padding: 76px 0 64px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 54px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #40515b;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

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

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.microcopy {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.match-board {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid #b8d5c4;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    #1f7a45;
  background-size: 52px 52px, auto, auto;
  box-shadow: var(--shadow);
}

.pitch-lines {
  position: absolute;
  inset: 28px;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 10px;
}

.pitch-lines::before,
.pitch-lines::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.68);
}

.pitch-lines::before {
  inset: 0 auto 0 50%;
  width: 0;
}

.pitch-lines::after {
  width: 116px;
  height: 116px;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.match-card {
  position: absolute;
  width: min(300px, calc(100% - 56px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(19, 35, 44, 0.18);
}

.match-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-card strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
}

.match-card p {
  margin: 8px 0 0;
  line-height: 1.35;
}

.live-card {
  right: 28px;
  top: 42px;
}

.team-card {
  left: 28px;
  top: 236px;
}

.venue-card {
  right: 42px;
  bottom: 34px;
}

.phone-stage {
  position: relative;
  min-height: 580px;
}

.phone {
  position: absolute;
  width: 286px;
  margin: 0;
  overflow: hidden;
  border: 10px solid #101d25;
  border-radius: 34px;
  background: #101d25;
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  border-radius: 22px;
}

.phone-front {
  right: 0;
  top: 10px;
  z-index: 2;
}

.phone-back {
  left: 0;
  bottom: 4px;
  transform: rotate(-4deg);
  opacity: 0.94;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding-top: 38px;
}

.muted {
  background: var(--surface-2);
}

.section-head {
  max-width: 720px;
  margin-bottom: 32px;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.18;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 56px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  gap: 2px;
  padding-left: 22px;
  border-left: 4px solid var(--accent);
}

[dir="rtl"] .check-list li {
  padding-right: 22px;
  padding-left: 0;
  border-right: 4px solid var(--accent);
  border-left: 0;
}

.check-list strong {
  color: var(--ink);
}

.check-list span {
  color: var(--muted);
}

.quote-panel,
.statement-panel,
.contact-block,
.card,
.policy-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.quote-panel {
  padding: 34px;
}

.quote-panel p {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 850;
  line-height: 1.12;
}

.statement-panel {
  padding: 32px;
  background: var(--ink);
}

.statement-panel span {
  color: #8fa3ad;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.statement-panel p {
  margin: 14px 0 0;
  color: #fff;
  font-size: 28px;
  font-weight: 850;
  line-height: 1.12;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  min-height: 230px;
  padding: 24px;
}

.card-number {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--accent-dark);
  font-weight: 900;
}

.card p {
  margin-bottom: 0;
}

.page-hero {
  padding: 74px 0 52px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-block {
  padding: 26px;
}

.large-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent-dark);
  font-size: 20px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.policy-wrap {
  max-width: 900px;
}

.policy-section {
  padding: 26px;
  margin-bottom: 14px;
}

.policy-section h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.policy-section ul {
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.policy-section li + li {
  margin-top: 10px;
}

.site-footer {
  padding: 46px 0 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer-bottom {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .contact-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .match-board {
    min-height: 520px;
    max-width: 430px;
    margin-inline: auto;
  }

  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-list li:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    display: grid;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    display: grid;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    justify-content: space-between;
    border-radius: var(--radius);
  }

  .header-actions {
    width: 100%;
    justify-content: stretch;
  }

  .language-switcher {
    width: 100%;
    overflow-x: auto;
    justify-content: space-between;
    border-radius: var(--radius);
  }

  .nav a {
    white-space: nowrap;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 54px;
  }

  .match-board {
    min-height: 430px;
  }

  .match-card {
    width: calc(100% - 44px);
    padding: 15px;
  }

  .live-card,
  .team-card,
  .venue-card {
    left: 22px;
    right: auto;
  }

  .live-card {
    top: 28px;
  }

  .team-card {
    top: 170px;
  }

  .venue-card {
    bottom: 22px;
  }

  .phone {
    width: 220px;
    border-width: 8px;
    border-radius: 28px;
  }

  .phone img {
    border-radius: 18px;
  }

  .section {
    padding: 58px 0;
  }

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

  .feature-list li:last-child {
    grid-column: auto;
  }
}
