:root {
  --bg: #07131a;
  --bg-deep: #030b10;
  --surface: rgba(12, 27, 34, 0.74);
  --surface-strong: rgba(8, 18, 24, 0.94);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f1e8;
  --muted: #b9c7ce;
  --green: #72d04b;
  --green-deep: #2b7d2d;
  --blue: #35a8ff;
  --orange: #ff922c;
  --gold: #ffe77a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 244, 189, 0.16), transparent 20%),
    radial-gradient(circle at top left, rgba(255, 153, 73, 0.36), transparent 26%),
    radial-gradient(circle at top right, rgba(53, 168, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #102632 0%, #07131a 42%, #030b10 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.9));
  pointer-events: none;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: clamp(780px, 100vh, 980px);
  padding: 28px clamp(20px, 5vw, 64px) 72px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: 7%;
  width: min(1300px, 120vw);
  height: min(700px, 55vw);
  border: 2px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 0 0 20px rgba(255, 255, 255, 0.03),
    0 0 140px rgba(132, 204, 255, 0.12);
  clip-path: inset(0 0 50% 0);
}

.hero::after {
  bottom: -220px;
  width: 160%;
  height: 420px;
  background:
    linear-gradient(180deg, rgba(122, 209, 71, 0.08), rgba(62, 140, 53, 0.42)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 120px,
      rgba(0, 0, 0, 0.02) 120px,
      rgba(0, 0, 0, 0.02) 240px
    );
  border-top: 2px solid rgba(255, 255, 255, 0.18);
  filter: blur(1px);
}

.topbar,
.hero-layout,
.section {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 52px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 3px solid var(--text);
  border-radius: 4px;
  rotate: 45deg;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.brand-copy strong,
.brand-copy span,
.eyebrow,
h1,
h2,
h3,
.button,
.mode-card-copy strong,
.mode-card-copy span,
.hero-stats strong,
.feature-index,
.lineup-number,
.score-strip strong {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

.brand-copy strong {
  font-size: 1.25rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.95rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-link,
.topbar-launch {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.topbar-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 4px;
}

.topbar-launch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.hero-layout,
.squad-section,
.play-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.hero-copy {
  max-width: 690px;
  padding-top: clamp(20px, 5vw, 60px);
}

.hero-copy > * {
  animation: fade-up 700ms ease both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 140ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 210ms;
}

.hero-copy > :nth-child(5) {
  animation-delay: 280ms;
}

.hero-copy > :nth-child(6) {
  animation-delay: 350ms;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 1.05rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

h1 {
  max-width: 8ch;
  font-size: clamp(4.5rem, 11vw, 8.8rem);
}

h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

h3 {
  font-size: 2rem;
}

.lead,
.section-heading p,
.feature-card p,
.squad-copy p,
.tactic-item span,
.play-copy p,
.cta-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
}

.lead {
  max-width: 62ch;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 1.12rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #051014;
  background: linear-gradient(135deg, #ffe77a, #ff922c 44%, #ff6f47 100%);
  box-shadow: 0 16px 36px rgba(255, 122, 54, 0.25);
}

.button-contrast {
  color: #031014;
  background: linear-gradient(135deg, #dbffd1, #72d04b 48%, #3fbf90 100%);
  box-shadow: 0 16px 34px rgba(86, 196, 104, 0.24);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  max-width: 740px;
}

.hero-stats li,
.feature-card,
.tactic-item,
.cta-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-stats li {
  min-height: 124px;
  padding: 18px;
  border-radius: 24px;
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
  color: var(--green);
}

.hero-stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.launch-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at right center, rgba(114, 208, 75, 0.18), transparent 32%);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.launch-copy {
  display: grid;
  gap: 6px;
}

.launch-label {
  color: var(--orange);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.launch-copy strong {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.1;
}

.launch-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.hero-stage {
  position: relative;
  min-height: 680px;
}

.stadium-glow {
  position: absolute;
  inset: 7% 8% auto;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02) 55%, transparent 75%),
    radial-gradient(circle at 50% 18%, rgba(255, 236, 184, 0.52), transparent 44%);
  filter: blur(6px);
  animation: pulse-glow 7s ease-in-out infinite;
}

.mode-card {
  position: absolute;
  top: 9%;
  right: 8%;
  width: min(360px, 100%);
  min-height: 470px;
  padding: 28px;
  border-radius: 28px;
  border: 3px solid rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(23, 23, 24, 0.5), rgba(11, 30, 38, 0.75)),
    radial-gradient(circle at 55% 30%, rgba(255, 205, 128, 0.48), transparent 36%);
  box-shadow:
    var(--shadow),
    0 0 120px rgba(255, 191, 115, 0.18);
  animation: card-drift 6s ease-in-out infinite;
}

.mode-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2)),
    linear-gradient(90deg, rgba(16, 81, 107, 0.35), transparent 42%, rgba(255, 145, 86, 0.16));
  mix-blend-mode: screen;
}

.mode-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.mode-card-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
}

.mode-overline {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
}

.mode-card-copy strong {
  display: block;
  color: var(--blue);
  font-size: clamp(3.3rem, 8vw, 4.7rem);
  line-height: 0.9;
}

.mode-card-copy span:last-child {
  display: block;
  font-size: 2.35rem;
}

.players {
  position: absolute;
  inset: auto 0 0;
  height: 73%;
}

.player {
  position: absolute;
  bottom: 22px;
  border-radius: 54px 54px 18px 18px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
}

.player::before,
.player::after {
  content: "";
  position: absolute;
}

.player::before {
  left: 50%;
  top: -46px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  translate: -50% 0;
  background: linear-gradient(180deg, #f0c2a2, #986449);
}

.player::after {
  left: 50%;
  bottom: -72px;
  width: 78px;
  height: 100px;
  translate: -50% 0;
  background:
    linear-gradient(
      90deg,
      transparent 0 14px,
      currentColor 14px 29px,
      transparent 29px 47px,
      currentColor 47px 62px,
      transparent 62px 78px
    );
  border-radius: 0 0 18px 18px;
}

.player-red {
  left: 20%;
  width: 76px;
  height: 210px;
  rotate: -1deg;
  color: #661a26;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 223, 223, 0.16), transparent 28%),
    linear-gradient(180deg, #ff6c4d 0 34%, #84203b 34% 58%, #652133 58% 100%);
}

.player-blue {
  right: 20%;
  width: 102px;
  height: 260px;
  color: #1f5c99;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #31a7ff 0 35%, #d2d8d9 35% 63%, #2788d2 63% 100%);
}

.player-blue::before {
  width: 62px;
  height: 62px;
}

.hero-signal {
  position: absolute;
  left: 0;
  bottom: 4%;
  display: grid;
  gap: 6px;
  max-width: 240px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(6, 16, 24, 0.74);
  box-shadow: var(--shadow);
}

.hero-signal span {
  color: var(--green);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
}

.hero-signal strong {
  font-size: 1.1rem;
  line-height: 1.35;
}

.mode-badge {
  position: absolute;
  left: 50%;
  bottom: -42px;
  width: 86px;
  height: 86px;
  translate: -50% 0;
  rotate: 45deg;
  border-radius: 18px;
  border: 4px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, rgba(20, 45, 66, 0.96), rgba(10, 25, 40, 0.96));
  box-shadow: var(--shadow);
}

.mode-badge::before,
.mode-badge::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  rotate: -45deg;
}

.mode-badge::before {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.mode-badge::after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid #20354a;
  box-shadow:
    0 0 0 11px transparent,
    -10px 0 0 -7px #20354a,
    10px 0 0 -7px #20354a;
}

.hero-ribbon {
  position: absolute;
  top: 4%;
  right: -8%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(2, 10, 18, 0.72);
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  rotate: 36deg;
}

.section {
  padding: clamp(74px, 10vw, 120px) clamp(20px, 5vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-dark {
  background: linear-gradient(180deg, rgba(2, 10, 16, 0.62), rgba(4, 15, 22, 0.18));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 320px;
  padding: 24px;
  border-radius: 26px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.feature-card:hover,
.tactic-item:hover,
.lineup-card:hover {
  transform: translateY(-6px);
}

.feature-index {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 1.35rem;
}

.feature-card h3 {
  max-width: 10ch;
}

.feature-card p {
  margin-top: 16px;
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(114, 208, 75, 0.26), transparent 45%);
}

.squad-section {
  position: relative;
}

.tactic-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.tactic-item {
  padding: 18px 20px;
  border-radius: 22px;
}

.tactic-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.lineup-board {
  position: relative;
  min-height: 620px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(8, 24, 18, 0.88), rgba(6, 30, 15, 0.92)),
    repeating-linear-gradient(
      180deg,
      rgba(122, 209, 71, 0.11) 0,
      rgba(122, 209, 71, 0.11) 56px,
      rgba(67, 146, 44, 0.22) 56px,
      rgba(67, 146, 44, 0.22) 112px
    );
  box-shadow: var(--shadow);
}

.lineup-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.pitch,
.pitch::before,
.pitch::after {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.34);
}

.pitch {
  inset: 24px;
  border-radius: 24px;
}

.pitch::before {
  content: "";
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  translate: -50% -50%;
}

.pitch::after {
  content: "";
  top: 50%;
  left: 24px;
  right: 24px;
  border-width: 1px;
  translate: 0 -50%;
}

.lineup-card {
  position: absolute;
  width: 180px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 13, 18, 0.72);
  backdrop-filter: blur(10px);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.lineup-number {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 2rem;
  color: var(--orange);
}

.lineup-card strong,
.lineup-card span {
  display: block;
}

.lineup-card span:last-child {
  margin-top: 4px;
  color: var(--muted);
}

.captain {
  top: 10%;
  left: 50%;
  translate: -50% 0;
}

.playmaker {
  top: 37%;
  left: 25%;
}

.wing {
  top: 34%;
  right: 10%;
}

.anchor {
  bottom: 12%;
  left: 42%;
}

.play-section {
  align-items: center;
}

.phone-showcase {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-showcase::before {
  content: "";
  position: absolute;
  width: 66%;
  height: 66%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 168, 255, 0.24), transparent 70%);
  filter: blur(16px);
}

.phone-frame {
  position: relative;
  width: min(460px, 100%);
  padding: 18px;
  border-radius: 42px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, #20242a, #080b11 80%);
  box-shadow:
    var(--shadow),
    0 0 120px rgba(255, 255, 255, 0.06);
  transform: rotate(-4deg);
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 34%;
  height: 24px;
  translate: -50% 0;
  border-radius: 999px;
  background: #04070b;
  z-index: 2;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.4), transparent 25%),
    linear-gradient(180deg, rgba(211, 233, 255, 0.24), rgba(19, 29, 48, 0.12) 24%, rgba(5, 63, 24, 0.42) 42%, rgba(5, 29, 18, 0.84) 100%),
    linear-gradient(180deg, #0f1a25, #0a1016 50%, #08110f 100%);
}

.score-strip {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(6, 12, 18, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.score-strip span {
  color: #cfd9e3;
  font-size: 0.9rem;
}

.score-strip strong {
  font-size: 2rem;
}

.mini-pitch {
  position: absolute;
  inset: 90px 18px 18px;
  border-radius: 26px;
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(255, 255, 255, 0.48) 49.8%, rgba(255, 255, 255, 0.48) 50.2%, transparent 50.4%),
    linear-gradient(180deg, rgba(130, 216, 84, 0.22), rgba(24, 118, 39, 0.42)),
    repeating-linear-gradient(
      180deg,
      rgba(100, 196, 62, 0.2) 0,
      rgba(100, 196, 62, 0.2) 54px,
      rgba(39, 123, 42, 0.32) 54px,
      rgba(39, 123, 42, 0.32) 108px
    );
  border: 2px solid rgba(255, 255, 255, 0.28);
}

.mini-pitch::before,
.mini-pitch::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 82px;
  height: 160px;
  translate: 0 -50%;
  border: 2px solid rgba(255, 255, 255, 0.36);
}

.mini-pitch::before {
  left: -2px;
  border-right: 0;
}

.mini-pitch::after {
  right: -2px;
  border-left: 0;
}

.mini-player,
.mini-ball {
  position: absolute;
  border-radius: 50%;
}

.mini-player {
  width: 26px;
  height: 26px;
  top: 48%;
}

.team-a {
  left: 42%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(53, 168, 255, 0.18);
}

.team-b {
  left: 58%;
  background: #ff5e42;
  box-shadow: 0 0 0 8px rgba(255, 94, 66, 0.18);
}

.mini-ball {
  width: 12px;
  height: 12px;
  left: 50%;
  top: 54%;
  background: #fff4df;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.control {
  position: absolute;
  bottom: 24px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 10, 16, 0.32);
}

.control-left {
  left: 24px;
}

.control-right {
  right: 24px;
}

.cta-section {
  padding-top: 40px;
}

.cta-panel {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 56px);
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(255, 146, 44, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.cta-panel .hero-actions {
  justify-content: center;
}

.cta-panel h2 {
  max-width: 11ch;
  margin: 0 auto;
  line-height: 0.9;
}

.cta-panel h2 span {
  display: block;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes card-drift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-1.2deg);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout,
  .squad-section,
  .play-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 620px;
  }

  .launch-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .mode-card {
    position: relative;
    top: auto;
    right: auto;
    margin: 40px auto 0;
  }

  .hero-signal {
    left: 5%;
    bottom: 0;
  }

  .hero-ribbon {
    right: 8%;
    top: 0;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 20px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    max-width: none;
    font-size: clamp(3.6rem, 22vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.5rem, 14vw, 3.8rem);
  }

  .hero-stats,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-signal {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 16px;
    max-width: none;
  }

  .mode-card {
    width: 100%;
    min-height: 420px;
    padding: 22px;
  }

  .player-red {
    left: 14%;
  }

  .player-blue {
    right: 14%;
  }

  .lineup-board {
    min-height: 720px;
  }

  .lineup-card {
    width: 150px;
  }

  .captain {
    top: 8%;
  }

  .playmaker {
    top: 32%;
    left: 8%;
  }

  .wing {
    top: 31%;
    right: 4%;
  }

  .anchor {
    bottom: 9%;
    left: 50%;
    translate: -50% 0;
  }

  .phone-frame {
    padding: 14px;
    border-radius: 34px;
    transform: rotate(0deg);
  }

  .phone-screen {
    min-height: 500px;
  }

  .cta-panel h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
    max-width: 9ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
