/* =========================================================
   Soccer Merge Madness — Pitch Sweep landing
   Light stadium sunset · hexagonal features · beam ladder
   ========================================================= */

:root {
  --bg: #fff7ec;
  --bg-soft: #ffe8cc;
  --ink: #1a2744;
  --ink-soft: #4a5568;
  --gold: #f0a020;
  --gold-deep: #d4880a;
  --gold-glow: rgba(240, 160, 32, 0.45);
  --sky: #2f7fe0;
  --sky-deep: #1f63b8;
  --pitch: #2f9b52;
  --pitch-deep: #1f7a3d;
  --cream: #fffaf3;
  --line: rgba(26, 39, 68, 0.1);
  --shadow: 0 18px 40px rgba(26, 39, 68, 0.12);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Nunito", sans-serif;
  --nav-h: 72px;
  --wrap: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  color: inherit;
}

.cursor-pointer {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - 2rem, 720px);
}

/* ---------- Atmosphere ---------- */
.pitch-sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.pitch-sky__glow {
  position: absolute;
  inset: -20% 10% auto;
  height: 55%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 186, 80, 0.55), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(47, 127, 224, 0.18), transparent 45%);
}

.pitch-sky__haze {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #fff4e4 0%, transparent 35%),
    linear-gradient(180deg, transparent 55%, rgba(47, 155, 82, 0.08) 100%);
}

.pitch-sky__turf {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -8%;
  height: 28%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(47, 155, 82, 0.07) 0 48px,
      rgba(47, 155, 82, 0.12) 48px 96px
    );
  clip-path: ellipse(70% 80% at 50% 100%);
}

/* ---------- Scoreboard nav ---------- */
.scoreboard {
  position: sticky;
  top: 0.75rem;
  z-index: 80;
  width: min(100% - 1.5rem, 1080px);
  margin: 0.75rem auto 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0.75rem 0.55rem 0.85rem;
  background: rgba(255, 250, 243, 0.88);
  border: 2px solid rgba(26, 39, 68, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(26, 39, 68, 0.08);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.scoreboard.is-scrolled {
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 14px 36px rgba(26, 39, 68, 0.14);
}

.scoreboard__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.scoreboard__brand img {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(26, 39, 68, 0.15);
}

.scoreboard__links {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 0.35rem;
}

.scoreboard__links a {
  position: relative;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.scoreboard__links a:hover,
.scoreboard__links a:focus-visible {
  color: var(--ink);
  background: rgba(240, 160, 32, 0.14);
  outline: none;
}

.scoreboard__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.scoreboard__burger {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(26, 39, 68, 0.05);
  transition: background 0.2s var(--ease);
}

.scoreboard__burger:hover {
  background: rgba(240, 160, 32, 0.18);
}

.scoreboard__burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.scoreboard__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.scoreboard__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.scoreboard__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: calc(var(--nav-h) + 0.5rem);
  left: 0.75rem;
  right: 0.75rem;
  z-index: 70;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-drawer[hidden] {
  display: none;
}

.nav-drawer a {
  padding: 0.75rem 0.9rem;
  font-weight: 700;
  border-radius: 12px;
  transition: background 0.2s var(--ease);
}

.nav-drawer a:hover {
  background: rgba(240, 160, 32, 0.14);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.btn:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

.btn i {
  width: 1.1rem;
  height: 1.1rem;
}

.btn--lg {
  padding: 0.9rem 1.45rem;
  font-size: 1.05rem;
}

.btn--gold {
  background: linear-gradient(180deg, #ffc14d 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: #1a2744;
  box-shadow: 0 8px 0 #b87408, 0 12px 24px var(--gold-glow);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 #b87408, 0 16px 28px var(--gold-glow);
}

.btn--gold:active {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #b87408, 0 8px 16px var(--gold-glow);
}

.btn--sky {
  background: linear-gradient(180deg, #5aa2f0 0%, var(--sky) 55%, var(--sky-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 0 #174f96, 0 12px 24px rgba(47, 127, 224, 0.35);
}

.btn--sky:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 #174f96, 0 16px 28px rgba(47, 127, 224, 0.4);
}

.btn--sky:active {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #174f96, 0 8px 16px rgba(47, 127, 224, 0.35);
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.sec-head h2 {
  margin: 0.35rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

.sec-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.sec-kicker {
  display: inline-block;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: rgba(47, 155, 82, 0.12);
  color: var(--pitch-deep);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sec-head--light .sec-kicker {
  background: rgba(255, 255, 255, 0.18);
  color: #ffe7b0;
}

.sec-head--light h2,
.sec-head--light p {
  color: #fff;
}

.sec-head--light p {
  opacity: 0.88;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 1rem;
}

.hero__plane {
  position: relative;
  width: min(100% - 1.5rem, 1100px);
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero__art img {
  width: 100%;
  aspect-ratio: 1024 / 500;
  object-fit: cover;
  object-position: center top;
}

.hero__fade {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(26, 39, 68, 0.55) 70%, rgba(15, 40, 24, 0.75));
  pointer-events: none;
}

.hero__turf {
  position: relative;
  margin-top: -3.5rem;
  padding: 2rem 1.5rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(47, 155, 82, 0.95), var(--pitch-deep));
  border-radius: 28px 28px 32px 32px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(31, 122, 61, 0.28);
  overflow: hidden;
}

.hero__turf::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 42px,
      rgba(255, 255, 255, 0.06) 42px 84px
    ),
    radial-gradient(circle at 50% 0%, rgba(255, 220, 120, 0.25), transparent 55%);
  pointer-events: none;
}

.hero__brand,
.hero__title,
.hero__lead,
.hero__cta {
  position: relative;
  z-index: 1;
}

.hero__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.hero__title {
  margin: 0 0 0.75rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__title em {
  font-style: normal;
  color: #ffe27a;
  text-shadow: 0 0 24px rgba(255, 226, 122, 0.45);
}

.hero__lead {
  margin: 0 0 1.35rem;
  max-width: 42ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Honeycomb features ---------- */
.honeycomb {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  justify-items: stretch;
}

.hex {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #ffe9c8);
  border: 2px solid rgba(240, 160, 32, 0.22);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  overflow: visible;
}

.hex:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(26, 39, 68, 0.14);
}

.hex--accent {
  background: linear-gradient(145deg, #fff6d8, #ffd27a);
  border-color: rgba(212, 136, 10, 0.35);
}

.hex__inner {
  padding: 1.5rem 1.35rem 1.55rem;
  text-align: center;
}

.hex__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  /* Hex badge only on the icon — keeps body text fully readable */
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  background: rgba(47, 127, 224, 0.14);
  color: var(--sky-deep);
}

.hex--accent .hex__icon {
  background: rgba(212, 136, 10, 0.22);
  color: var(--gold-deep);
}

.hex__icon i {
  width: 24px;
  height: 24px;
}

.hex h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
}

.hex p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ---------- Beam ladder ---------- */
.ladder {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 180, 60, 0.35), transparent 50%),
    linear-gradient(180deg, #1e3a6e 0%, #163056 40%, #0f2744 100%);
  overflow: hidden;
}

.ladder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(80, 160, 255, 0.15), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255, 200, 80, 0.12), transparent 40%);
  pointer-events: none;
}

.beam-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
  position: relative;
}

.beam-steps::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #ffe27a, #f0a020, #ffe27a);
  box-shadow: 0 0 18px rgba(255, 226, 122, 0.55);
}

.beam-step {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "orb copy"
    "orb shot";
  gap: 0.75rem 1rem;
  align-items: start;
}

.beam-step__orb {
  grid-area: orb;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #fff6c8, #f0a020);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 0 0 4px rgba(255, 226, 122, 0.35), 0 0 24px rgba(240, 160, 32, 0.55);
  z-index: 1;
}

.beam-step__copy {
  grid-area: copy;
  color: #fff;
  padding-top: 0.25rem;
}

.beam-step__copy h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.beam-step__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.beam-step__shot {
  grid-area: shot;
  margin: 0;
  width: min(42vw, 180px);
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  transform: rotate(-3deg);
}

.beam-step--flip .beam-step__shot {
  transform: rotate(3deg);
  justify-self: end;
}

.beam-step__shot img {
  width: 100%;
  aspect-ratio: 576 / 1024;
  object-fit: cover;
}

/* ---------- Sideline gallery ---------- */
.gallery {
  padding-bottom: 2rem;
}

.sideline {
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
}

.sideline__track {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  width: max-content;
  padding: 1.5rem 1.5rem 0.5rem;
  margin-inline: auto;
}

.phone {
  margin: 0;
  width: min(52vw, 220px);
  flex-shrink: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
  background: #111;
  transition: transform 0.25s var(--ease);
}

.phone img {
  width: 100%;
  aspect-ratio: 576 / 1024;
  object-fit: cover;
}

.phone--tilt-l {
  transform: rotate(-6deg) translateY(18px);
}

.phone--tilt-r {
  transform: rotate(6deg) translateY(18px);
}

.phone--lift {
  transform: translateY(-8px) scale(1.04);
  z-index: 2;
}

.phone:hover {
  transform: translateY(-6px) rotate(0deg) scale(1.02);
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(26, 39, 68, 0.05);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-deep);
  transition: transform 0.2s var(--ease);
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--ink-soft);
}

/* ---------- Download podium ---------- */
.download {
  padding-top: 2rem;
}

.podium {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2rem 1.5rem;
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 200, 80, 0.35), transparent 45%),
    linear-gradient(135deg, #fffaf0, #ffe2b0 55%, #d8f0df);
  border: 2px solid rgba(240, 160, 32, 0.25);
  box-shadow: var(--shadow);
}

.podium__copy .sec-kicker {
  margin-bottom: 0.5rem;
}

.podium__copy h2 {
  margin: 0.35rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.podium__copy p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

.podium__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.podium__visual {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 200px;
}

.podium__steps {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
}

.podium__block {
  flex: 1;
  display: grid;
  place-items: center;
  border-radius: 12px 12px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

.podium__block--1 {
  height: 120px;
  background: linear-gradient(180deg, #ffc14d, var(--gold-deep));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.podium__block--2 {
  height: 88px;
  background: linear-gradient(180deg, #7eb6f5, var(--sky-deep));
}

.podium__block--3 {
  height: 64px;
  background: linear-gradient(180deg, #6ed492, var(--pitch-deep));
}

.podium__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 12px 20px rgba(26, 39, 68, 0.25));
  animation: float-soft 3.5s ease-in-out infinite;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* ---------- Footer ---------- */
.footer {
  padding: 2.5rem 0 3rem;
  border-top: 2px dashed rgba(47, 155, 82, 0.25);
  margin-top: 1rem;
}

.footer__inner {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer__brand img {
  border-radius: 8px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  font-weight: 700;
}

.footer__links a {
  color: var(--sky-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

.footer__links a:hover {
  color: var(--gold-deep);
}

.footer__copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ---------- Modal ---------- */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 48, 0.55);
  backdrop-filter: blur(4px);
}

.modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 24px;
  background: var(--cream);
  text-align: center;
  box-shadow: var(--shadow);
  animation: modal-in 0.28s var(--ease);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal__x {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease);
}

.modal__x:hover {
  background: rgba(26, 39, 68, 0.06);
}

.modal__x i {
  width: 18px;
  height: 18px;
}

.modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(240, 160, 32, 0.18);
  color: var(--gold-deep);
}

.modal__icon i {
  width: 28px;
  height: 28px;
}

.modal__card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.modal__card p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}

body.modal-open {
  overflow: hidden;
}

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .scoreboard__links {
    display: flex;
  }

  .scoreboard__burger {
    display: none;
  }

  .honeycomb {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem 1rem;
    align-items: stretch;
  }

  .hex {
    max-width: none;
    grid-column: span 2;
  }

  .hex:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .hex:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .hex__inner {
    padding: 1.65rem 1.4rem 1.7rem;
  }

  .beam-steps::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .beam-step {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "copy orb shot";
    align-items: center;
    gap: 1.25rem;
  }

  .beam-step--flip {
    grid-template-areas: "shot orb copy";
  }

  .beam-step__copy {
    text-align: right;
  }

  .beam-step--flip .beam-step__copy {
    text-align: left;
  }

  .beam-step__shot {
    width: 200px;
    justify-self: start;
  }

  .beam-step--flip .beam-step__shot {
    justify-self: end;
  }

  .podium {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 2.5rem;
  }

  .hero__turf {
    margin-top: -4.5rem;
    padding: 2.5rem 2rem 2rem;
  }
}

@media (min-width: 1024px) {
  .hero__turf {
    display: grid;
    grid-template-columns: 1.2fr auto;
    grid-template-areas:
      "brand brand"
      "title cta"
      "lead cta";
    column-gap: 2rem;
    align-items: end;
  }

  .hero__brand {
    grid-area: brand;
  }

  .hero__title {
    grid-area: title;
    margin-bottom: 0.5rem;
  }

  .hero__lead {
    grid-area: lead;
    margin-bottom: 0;
  }

  .hero__cta {
    grid-area: cta;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .scoreboard__brand span {
    max-width: 9.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hex__inner {
    padding: 1.35rem 1.15rem 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .podium__icon {
    animation: none;
  }
}
