/* Zelf-gehoste fonts (geen Google-servers, zie privacy policy) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/SpaceGrotesk-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/SpaceGrotesk-700.woff2') format('woff2');
}

/* Project First League — site stylesheet */
:root {
  --bg: #1a1a20;
  --bg-soft: #22222a;
  --bg-card: #26262e;
  --line: #40404a;
  --text: #e8e8f0;
  --text-soft: #b0b0c0;
  --primary: #3b98ff;
  --accent: #00d4ff;
  --gold: #ffa600;
  --radius: 14px;
  --maxw: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(26, 26, 32, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; color: var(--text); font-family: "Space Grotesk", sans-serif; }
.brand:hover { text-decoration: none; }
.brand img { width: 40px; height: 40px; border-radius: 8px; }
nav ul { display: flex; gap: 26px; list-style: none; align-items: center; }
nav a { color: var(--text-soft); font-weight: 500; font-size: .95rem; }
nav a:hover, nav a.active { color: var(--text); text-decoration: none; }
nav a.cta {
  background: var(--primary); color: #fff; padding: 9px 18px;
  border-radius: 999px; font-weight: 600;
}
nav a.cta:hover { background: var(--accent); color: #06222e; }
#menu-btn { display: none; background: none; border: 0; color: var(--text); font-size: 1.7rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 88px;
  text-align: center;
  background:
    linear-gradient(rgba(26,26,32,.78), rgba(26,26,32,.97)),
    url("../img/photo-1431324155629-1a6deb1dec8d.jpeg") center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.2rem);
  line-height: 1.08; margin-bottom: 18px; letter-spacing: -.03em;
}
.hero h1 span {
  background: linear-gradient(100deg, var(--primary), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  max-width: 640px; margin: 0 auto 32px; color: var(--text-soft);
  font-size: 1.15rem;
}
.hero-small {
  padding: 70px 0 50px;
  background: linear-gradient(rgba(26,26,32,.85), rgba(26,26,32,.99)),
    url("../img/photo-1517927033932-b3d18e61fb3a.jpeg") center/cover no-repeat;
}
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 999px;
  font-weight: 600; font-size: 1rem;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--accent); color: #06222e; text-decoration: none; }
.btn-ghost { border: 1px solid var(--line); color: var(--text); margin-left: 10px; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* hero extras */
.live-badge {
  display: inline-block; margin-bottom: 22px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(0, 212, 255, .12); border: 1px solid rgba(0, 212, 255, .35);
  color: var(--accent); font-size: .85rem; font-weight: 600; letter-spacing: .02em;
}
.store-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 6px; }
.btn-store {
  display: inline-flex; flex-direction: row; align-items: center; gap: 12px;
  background: #000; border: 1px solid var(--line); color: #fff;
  padding: 10px 22px; border-radius: 12px; line-height: 1.25; text-align: left;
  transition: transform .2s ease, border-color .2s ease;
}
.btn-store:hover { transform: translateY(-2px); }
.btn-store svg { width: 26px; height: 26px; fill: #fff; flex: 0 0 auto; }
.btn-store .store-text { display: flex; flex-direction: column; }
.btn-store:hover { border-color: var(--accent); text-decoration: none; }
.store-small { font-size: .68rem; color: var(--text-soft); }
.store-big { font-size: 1.05rem; font-weight: 700; }

/* city chips */
.city-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.city-chip {
  padding: 14px 30px; border-radius: 999px; font-weight: 700; font-size: 1.05rem;
  background: var(--bg-card); border: 1px solid var(--accent); color: var(--text);
}
.city-chip.soon { border-style: dashed; border-color: var(--line); color: var(--text-soft); font-weight: 500; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.alt { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker {
  color: var(--accent); text-transform: uppercase; letter-spacing: .14em;
  font-size: .8rem; font-weight: 700; margin-bottom: 10px;
}
h1, h2, h3, h4 { font-family: "Space Grotesk", sans-serif; }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 14px; letter-spacing: -.02em; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }
.section-intro { max-width: 700px; color: var(--text-soft); margin-bottom: 40px; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  position: relative; overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0 auto auto 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,.4); }
.card:hover::before { transform: scaleX(1); }
.card p { color: var(--text-soft); font-size: .95rem; }
.card .icon { font-size: 1.9rem; margin-bottom: 12px; display: block; }
.card img.role { width: 72px; height: 72px; margin-bottom: 12px; }

/* steps */
.step { display: flex; gap: 18px; align-items: flex-start; }
.step + .step { margin-top: 26px; }
.step .num {
  flex: 0 0 42px; height: 42px; border-radius: 50%;
  background: var(--primary); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.step p { color: var(--text-soft); }

/* tables */
table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .95rem; }
th, td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
th { background: var(--bg-card); }
td { color: var(--text-soft); }

/* lists */
ul.checks { list-style: none; }
ul.checks li { padding-left: 28px; position: relative; margin-bottom: 10px; color: var(--text-soft); }
ul.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* CTA band */
.cta-band {
  text-align: center; padding: 64px 0;
  background: linear-gradient(120deg, rgba(59,152,255,.16), rgba(0,212,255,.10));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { color: var(--text-soft); margin-bottom: 26px; }

/* legal pages */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.25rem; margin: 36px 0 10px; }
.legal h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--text-soft); font-size: .96rem; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal .meta { color: var(--text-soft); margin-bottom: 26px; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 44px 0 36px; background: var(--bg-soft); }
.footer-grid { display: flex; flex-wrap: wrap; gap: 34px; justify-content: space-between; align-items: flex-start; }
footer h4 { margin-bottom: 10px; font-size: .95rem; }
footer ul { list-style: none; }
footer li { margin-bottom: 7px; }
footer a { color: var(--text-soft); font-size: .92rem; }
footer a:hover { color: var(--accent); }
.copyright { margin-top: 30px; color: var(--text-soft); font-size: .85rem; text-align: center; }

/* responsive */
@media (max-width: 860px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  #menu-btn { display: block; }
  nav ul {
    display: none; position: absolute; right: 0; top: 68px;
    flex-direction: column; background: var(--bg-soft);
    width: 100%; padding: 18px 24px; border-bottom: 1px solid var(--line);
    gap: 16px; align-items: flex-start;
  }
  nav ul.open { display: flex; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .btn-ghost { margin-left: 0; margin-top: 10px; }
}

/* ---------- Immersive extras ---------- */
.hero::after {
  content: ""; position: absolute; pointer-events: none;
  width: 720px; height: 720px; right: -220px; top: -220px;
  background: radial-gradient(circle, rgba(59,152,255,.22), transparent 65%);
}
/* stats */
.stats-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin: 8px 0 30px; }
.stat { text-align: center; padding: 0 26px; }
.stat .num {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.8rem); color: var(--text);
  background: linear-gradient(100deg, var(--primary), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .lbl { color: var(--text-soft); font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 860px) {
}
