:root {
  color-scheme: dark;
  --ink: #07090c;
  --surface: #10141a;
  --text: #f5f7f8;
  --muted: #aeb6bd;
  --line: rgba(255, 255, 255, 0.13);
  --pitch: #2a7d57;
  --accent: #e3413b;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: Arial, sans-serif;
}

.field-markings {
  position: fixed;
  inset: 0 0 0 58%;
  overflow: hidden;
  background: var(--surface);
  opacity: 0.82;
  pointer-events: none;
}

.field-markings span {
  position: absolute;
  display: block;
  border-color: rgba(255, 255, 255, 0.14);
}

.touchline {
  inset: 8vh 5vw;
  border: 1px solid;
}

.halfway {
  top: 8vh;
  bottom: 8vh;
  left: 50%;
  border-left: 1px solid;
}

.center-circle {
  top: 50%;
  left: 50%;
  width: min(26vw, 340px);
  aspect-ratio: 1;
  border: 1px solid;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.site-nav,
.home-main,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-nav {
  padding-top: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--pitch);
  font-size: 0.72rem;
}

.home-main {
  align-self: center;
  padding-block: 48px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.intro {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-top: 34px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.primary-link:hover {
  background: #c93430;
  transform: translateY(-2px);
}

.site-footer {
  padding-bottom: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 760px) {
  body {
    overflow: auto;
  }

  .field-markings {
    inset: 46% -35% -12% 25%;
  }

  .site-nav,
  .home-main,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .home-main {
    padding-block: 72px 150px;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5.5rem);
  }
}
