/* illegalsoccer.com */

:root {
  --bg: #0f1216;
  --bg-2: #161a20;
  --line: rgba(255, 255, 255, .10);
  --text: #f2efe8;
  --text-2: #d9d6cf;
  --muted: #9a9ca3;
  --mint: #6ff0a7;
  --red: #e8455f;
  --blue: #4a80ea;

  --display: "Roboto Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1100px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, p, ul, figure { margin: 0; padding: 0; }
.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.ico { width: 1em; height: 1em; fill: currentColor; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .02em;
  text-decoration: none; color: #0f1216; line-height: 1;
  background: var(--mint);
  border: 0;
  padding: .8rem 1.5rem; font-size: 1.35rem;
  transition: transform .1s ease, background .15s ease;
}
.btn:hover { background: #8cf5b9; transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }
.btn--lg { font-size: 1.7rem; padding: 1rem 2.2rem; }

.h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: .95; letter-spacing: .01em; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(560px, 82vh, 820px);
  display: flex; align-items: flex-end;
}
.hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.55) saturate(.8);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15, 18, 22, .15) 0%, rgba(15, 18, 22, .35) 45%, rgba(15, 18, 22, .92) 82%, var(--bg) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto;
  padding: 12rem 0 3.5rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
}
.hero__title {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(3.4rem, 9vw, 7.5rem); line-height: .92; letter-spacing: 0;
}
.hero__tagline { font-size: clamp(1.1rem, 1.8vw, 1.35rem); max-width: 40ch; color: var(--text-2); }
.hero__inner .btn { margin-top: .75rem; }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } .hero { background: var(--bg-2); } }

/* Sections */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section { border-top: 1px solid var(--line); }
.section__head { margin-bottom: 2.25rem; display: flex; align-items: baseline; gap: 1.5rem; flex-wrap: wrap; }
.section__sub { color: var(--muted); }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.feature figcaption { margin-top: .9rem; color: var(--muted); line-height: 1.45; }
.feature strong { color: var(--text); font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 1.35rem; letter-spacing: .02em; margin-right: .3rem; }
@media (max-width: 760px) { .features { grid-template-columns: 1fr; } }

/* Update log */
.update {
  display: grid; grid-template-columns: 160px 1fr; gap: 2rem;
  padding: 2.25rem 0; border-top: 1px solid var(--line);
}
.update__when { display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; }
.update__when > * { position: sticky; top: 84px; }
.date {
  display: inline-block; font-family: var(--display); font-weight: 800; font-size: 1.35rem; line-height: 1;
  padding: .5rem .75rem; background: var(--bg-2); border: 1px solid var(--line);
}
.tag {
  display: inline-block; font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  font-size: .85rem; line-height: 1; padding: .35rem .5rem; background: var(--mint); color: #0f1216;
}
.update__when .tag { top: 132px; }
.update__body { max-width: 68ch; }
.update__body h3 {
  font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .02em;
  font-size: 1.35rem; line-height: 1.1; margin: 1.6rem 0 .5rem;
}
.update__body h3:first-child { margin-top: .25rem; }
.update__body ul { padding-left: 1.2rem; }
.update__body li { margin: .35rem 0; color: var(--text-2); }
.update__body li::marker { color: var(--mint); }
@media (max-width: 640px) {
  .update { grid-template-columns: 1fr; gap: 1rem; }
  .update__when { flex-direction: row; align-items: center; }
  .update__when > * { position: static; }
}

/* Roadmap */
.roadmap { list-style: none; border-top: 1px solid var(--line); }
.roadmap li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--line);
  font-family: var(--display); font-weight: 700; font-size: 1.6rem; line-height: 1;
}
.roadmap__status { font-family: var(--body); font-weight: 500; font-size: 1rem; color: var(--muted); }
