:root {
  --navy:#071b35;
  --blue:#1267c8;
  --cyan:#62d6ff;
  --green:#29c481;
  --ink:#102033;
  --muted:#5b6b7f;
  --line:#d8e2ee;
  --soft:#f4f8fc;
  --white:#ffffff;
  --shadow:0 26px 70px rgba(7,27,53,0.16);
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  margin:0;
  color:var(--ink);
  background:var(--white);
  font-family:"Hiragino Sans","Yu Gothic","YuGothic","Noto Sans JP",system-ui,sans-serif;
  line-height:1.8;
}
a {
  color:inherit;
  text-decoration:none;
}
img {
  display:block;
  max-width:100%;
}
button,input,select,textarea {
  font:inherit;
}
.site-header {
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:72px;
  padding:0 clamp(20px,5vw,72px);
  background:rgba(255,255,255,0.92);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}
.brand,
.nav {
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:850;
}
.brand {
  color:var(--navy);
  font-size:1.1rem;
}
.brand-mark {
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  border-radius:8px;
  color:var(--white);
  background:var(--navy);
}
.nav {
  gap:clamp(16px,3vw,34px);
  color:#26374b;
  font-size:0.92rem;
}
.hero {
  display:flex;
  align-items:center;
  min-height:clamp(520px,68svh,720px);
  padding:clamp(64px,8vw,112px) clamp(20px,5vw,72px);
  color:var(--white);
  background:
    linear-gradient(90deg,rgba(3,12,24,0.9) 0%,rgba(7,27,53,0.76) 46%,rgba(7,27,53,0.22) 100%),
    url("./assets/soccer-field.jpg") center / cover no-repeat;
  overflow:hidden;
}
.hero-copy {
  max-width:880px;
}
.label {
  margin:0 0 14px;
  color:var(--green);
  font-size:0.78rem;
  font-weight:900;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
h1,h2,h3,p {
  margin-top:0;
}
h1 {
  margin-bottom:24px;
  color:var(--white);
  font-size:clamp(3rem,6.2vw,6rem);
  line-height:1.05;
  letter-spacing:0;
}
h2 {
  margin-bottom:20px;
  color:var(--navy);
  font-size:clamp(2rem,3.5vw,3.35rem);
  line-height:1.25;
  letter-spacing:0;
}
h3 {
  margin-bottom:12px;
  color:var(--navy);
  font-size:1.17rem;
  line-height:1.45;
}
.lead {
  max-width:650px;
  margin-bottom:34px;
  color:rgba(255,255,255,0.8);
  font-size:clamp(1rem,1.35vw,1.12rem);
}
.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:12px 22px;
  border:1px solid transparent;
  border-radius:8px;
  font-weight:850;
  line-height:1.35;
  cursor:pointer;
  transition:160ms ease;
}
.button:hover,
.cards article:hover,
.record-grid article:hover {
  transform:translateY(-4px);
}
.primary {
  color:var(--white);
  background:var(--blue);
  border-color:var(--blue);
}
.secondary {
  color:var(--white);
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.26);
}
.hero-visual {
  position:relative;
  min-height:560px;
  border:1px solid rgba(255,255,255,0.16);
  border-radius:12px;
  background:linear-gradient(120deg,rgba(98,214,255,0.14),transparent 38%),linear-gradient(180deg,rgba(255,255,255,0.08),rgba(255,255,255,0.02));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.stadium-lights {
  position:absolute;
  inset:-20% -10% auto;
  height:58%;
  background:radial-gradient(circle at 20% 15%,rgba(255,255,255,0.95),transparent 5%),radial-gradient(circle at 32% 18%,rgba(255,255,255,0.75),transparent 5%),radial-gradient(circle at 72% 14%,rgba(255,255,255,0.9),transparent 5%),radial-gradient(circle at 84% 18%,rgba(255,255,255,0.7),transparent 5%),linear-gradient(180deg,rgba(98,214,255,0.24),transparent 70%);
  filter:blur(1px);
}
.hero-pitch {
  position:absolute;
  left:7%;
  right:7%;
  bottom:7%;
  height:62%;
  border:2px solid rgba(255,255,255,0.72);
  border-radius:10px;
  background:repeating-linear-gradient(90deg,rgba(255,255,255,0.04) 0 40px,transparent 40px 80px),linear-gradient(135deg,#0d7d59,#075138);
  transform:perspective(760px) rotateX(58deg);
  transform-origin:center bottom;
}
.line {
  position:absolute;
  border-color:rgba(255,255,255,0.72);
}
.line.center {
  top:0;
  bottom:0;
  left:50%;
  border-left:2px solid rgba(255,255,255,0.72);
}
.line.circle {
  width:120px;
  height:120px;
  left:calc(50% - 60px);
  top:calc(50% - 60px);
  border:2px solid rgba(255,255,255,0.72);
  border-radius:50%;
}
.line.box {
  width:18%;
  height:48%;
  top:26%;
  border:2px solid rgba(255,255,255,0.72);
}
.line.box.left {
  left:-2px;
  border-left:0;
}
.line.box.right {
  right:-2px;
  border-right:0;
}
.ball {
  position:absolute;
  left:calc(50% - 9px);
  top:calc(50% - 9px);
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--white);
  box-shadow:0 0 0 8px rgba(255,255,255,0.18);
}
.match-board {
  position:absolute;
  right:26px;
  bottom:28px;
  width:min(360px,calc(100% - 52px));
  padding:18px;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:12px;
  background:rgba(7,27,53,0.78);
  box-shadow:0 24px 60px rgba(0,0,0,0.32);
  backdrop-filter:blur(16px);
}
.board-head,
.board-row {
  display:grid;
  grid-template-columns:68px 1fr auto;
  align-items:center;
  gap:10px;
}
.board-head {
  grid-template-columns:1fr auto;
  margin-bottom:10px;
}
.board-row {
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,0.13);
  font-size:0.86rem;
}
.board-row i {
  padding:2px 8px;
  border-radius:999px;
  color:var(--cyan);
  background:rgba(98,214,255,0.12);
  font-style:normal;
  font-size:0.75rem;
  font-weight:900;
}
.board-row.active i {
  color:#9dffd0;
  background:rgba(41,196,129,0.16);
}
.trust-strip {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#061426;
  border-top:1px solid rgba(255,255,255,0.12);
}
.trust-strip div {
  padding:24px clamp(20px,5vw,72px);
  border-right:1px solid rgba(255,255,255,0.1);
}
.trust-strip strong {
  display:block;
  color:var(--white);
  font-size:1.15rem;
}
.trust-strip span {
  color:rgba(255,255,255,0.62);
}
.photo-story {
  display:grid;
  grid-template-columns:minmax(320px,0.9fr) minmax(0,1fr);
  gap:clamp(28px,5vw,72px);
  align-items:center;
  padding:clamp(54px,7vw,90px) clamp(20px,5vw,72px);
  background:#ffffff;
}
.photo-story figure {
  margin:0;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 28px 70px rgba(7,27,53,0.16);
}
.photo-story img {
  width:100%;
  height:clamp(360px,48vw,560px);
  object-fit:cover;
  object-position:center;
}
.photo-story-copy {
  max-width:720px;
}
.photo-story-copy h2 {
  font-size:clamp(2rem,3vw,3rem);
}
.photo-story-copy p:not(.label) {
  color:var(--muted);
}
.section {
  padding:clamp(74px,9vw,118px) clamp(20px,5vw,72px);
}
.split,
.policy,
.contact {
  display:grid;
  grid-template-columns:minmax(280px,0.82fr) minmax(0,1fr);
  gap:clamp(34px,7vw,94px);
}
.dark {
  color:rgba(255,255,255,0.72);
  background:#02070d;
}
.dark h2 {
  color:var(--white);
}
.dark .body-copy,
.dark .body-copy p {
  color:rgba(255,255,255,0.9);
}
.body-copy,
.section-head p,
.contact p,
.cards p,
.record-grid p,dd,td {
  color:var(--muted);
}
.section-head {
  max-width:900px;
  margin-bottom:34px;
}
.flow {
  background:linear-gradient(180deg,#f7fbff 0%,#ffffff 100%);
}
.formation-board {
  display:grid;
  grid-template-columns:minmax(360px,1fr) minmax(320px,0.75fr);
  gap:22px;
  align-items:stretch;
}
.formation-pitch {
  position:relative;
  min-height:520px;
  border:2px solid rgba(255,255,255,0.72);
  border-radius:14px;
  background:
    radial-gradient(circle at 54% 50%,rgba(255,255,255,0.12),transparent 13%),
    repeating-linear-gradient(90deg,rgba(255,255,255,0.04) 0 56px,transparent 56px 112px),
    linear-gradient(135deg,#0d7d59,#075138);
  box-shadow:var(--shadow);
  overflow:hidden;
  isolation:isolate;
}
.formation-pitch::before {
  content:"";
  position:absolute;
  inset:22px;
  border:2px solid rgba(255,255,255,0.7);
  border-radius:10px;
}
.formation-pitch::after {
  content:"";
  position:absolute;
  z-index:4;
  left:50%;
  top:50%;
  width:16px;
  height:16px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 8px rgba(255,255,255,0.16),0 0 34px rgba(98,214,255,0.9);
  animation:formation-ball 5.4s cubic-bezier(.65,0,.35,1) infinite;
}
.half-line {
  position:absolute;
  top:22px;
  bottom:22px;
  left:50%;
  border-left:2px solid rgba(255,255,255,0.7);
}
.center-circle {
  position:absolute;
  width:118px;
  height:118px;
  left:calc(50% - 59px);
  top:calc(50% - 59px);
  border:2px solid rgba(255,255,255,0.7);
  border-radius:50%;
}
.penalty,
.goal {
  position:absolute;
  top:31%;
  height:38%;
  border:2px solid rgba(255,255,255,0.7);
}
.half-line,
.center-circle,
.penalty,
.goal {
  z-index:1;
}
.penalty {
  width:18%;
}
.goal {
  width:6%;
  top:41%;
  height:18%;
}
.penalty.left,
.goal.left {
  left:22px;
  border-left:0;
}
.penalty.right,
.goal.right {
  right:22px;
  border-right:0;
}
.player {
  position:absolute;
  z-index:2;
  width:18px;
  height:18px;
  border:3px solid var(--white);
  border-radius:50%;
  box-shadow:0 0 0 8px rgba(255,255,255,0.12);
  animation:formation-shift 4.8s ease-in-out infinite;
  will-change:transform;
}
.home {
  background:#62d6ff;
}
.away {
  background:#ffca5f;
  animation-direction:reverse;
}
.p1 {
  left:7%;
  top:50%;
}
.p2 {
  left:18%;
  top:22%;
}
.p3 {
  left:18%;
  top:40%;
}
.p4 {
  left:18%;
  top:60%;
}
.p5 {
  left:18%;
  top:78%;
}
.p6 {
  left:35%;
  top:28%;
}
.p7 {
  left:35%;
  top:50%;
}
.p8 {
  left:35%;
  top:72%;
}
.p9 {
  left:47%;
  top:35%;
}
.p10 {
  left:47%;
  top:65%;
}
.p11 {
  left:54%;
  top:50%;
}
.p12 {
  right:7%;
  top:50%;
}
.p13 {
  right:18%;
  top:22%;
}
.p14 {
  right:18%;
  top:40%;
}
.p15 {
  right:18%;
  top:60%;
}
.p16 {
  right:18%;
  top:78%;
}
.p17 {
  right:35%;
  top:28%;
}
.p18 {
  right:35%;
  top:50%;
}
.p19 {
  right:35%;
  top:72%;
}
.p20 {
  right:47%;
  top:35%;
}
.p21 {
  right:47%;
  top:65%;
}
.p22 {
  right:54%;
  top:50%;
}
.formation-pitch .p2,
.formation-pitch .p6,
.formation-pitch .p9,
.formation-pitch .p13,
.formation-pitch .p17,
.formation-pitch .p20 {
  animation-name:formation-press;
}
.formation-pitch .p4,
.formation-pitch .p8,
.formation-pitch .p10,
.formation-pitch .p15,
.formation-pitch .p19,
.formation-pitch .p21 {
  animation-name:formation-cover;
}
.formation-pitch .p1,
.formation-pitch .p5,
.formation-pitch .p11,
.formation-pitch .p12,
.formation-pitch .p16,
.formation-pitch .p22 {
  animation-delay:.35s;
}
.formation-pitch .p3,
.formation-pitch .p7,
.formation-pitch .p14,
.formation-pitch .p18 {
  animation-delay:.75s;
}
.flow-steps,
.cards,
.policy-list,
.record-grid {
  display:grid;
  gap:16px;
  margin:0;
  padding:0;
  list-style:none;
}
.flow-steps {
  grid-template-columns:1fr;
}
.flow-steps li,
.cards article,
.record-grid article,
.policy-list article {
  padding:24px;
  border:1px solid var(--line);
  border-radius:10px;
  background:var(--white);
}
.flow-steps span,
.cards span,
.record-grid span {
  display:inline-block;
  margin-bottom:16px;
  color:var(--blue);
  font-weight:950;
}
.muted {
  background:var(--soft);
}
.cards {
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.cards article,
.record-grid article {
  box-shadow:0 12px 34px rgba(7,27,53,0.07);
  transition:160ms ease;
}
.categories {
  background:var(--white);
}
table {
  width:100%;
  min-width:620px;
  border-collapse:collapse;
  border:1px solid var(--line);
  background:var(--white);
  box-shadow:var(--shadow);
}
th,td {
  padding:22px 26px;
  text-align:left;
  border-bottom:1px solid var(--line);
}
th {
  color:var(--navy);
  background:#eef6ff;
}
td:first-child {
  color:var(--navy);
  font-weight:900;
}
.policy {
  color:rgba(255,255,255,0.72);
  background:var(--navy);
}
.policy h2,
.policy h3 {
  color:var(--white);
}
.policy-list article {
  border-color:rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.06);
}
.record {
  background:linear-gradient(135deg,rgba(7,27,53,0.06),rgba(18,103,200,0.08)),#ffffff;
}
.record-grid {
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.record-grid article {
  min-height:230px;
}
.related-records {
  background:#ffffff;
}
.related-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.related-grid article {
  min-height:150px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:10px;
  background:linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
  box-shadow:0 12px 34px rgba(7,27,53,0.06);
}
.related-grid span {
  display:inline-flex;
  margin-bottom:18px;
  padding:4px 10px;
  border-radius:999px;
  color:var(--blue);
  background:#eaf4ff;
  font-size:0.78rem;
  font-weight:900;
}
.related-grid h3 {
  margin:0;
  font-size:1.05rem;
}
.related-note {
  max-width:900px;
  margin:28px 0 0;
  color:var(--muted);
}
.contact {
  background:var(--soft);
}
form {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--white);
  box-shadow:var(--shadow);
}
label {
  display:grid;
  gap:8px;
  color:var(--navy);
  font-size:0.92rem;
  font-weight:850;
}
input,select,textarea {
  width:100%;
  border:1px solid #cbd5e1;
  border-radius:8px;
  padding:12px 13px;
  outline:none;
}
.full {
  grid-column:1 / -1;
}
dl {
  margin:0;
  border-top:1px solid var(--line);
}
dl div {
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  gap:24px;
  padding:22px 0;
  border-bottom:1px solid var(--line);
}
dt {
  color:var(--navy);
  font-weight:950;
}
dd {
  margin:0;
}
.site-footer {
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:26px clamp(20px,5vw,72px);
  color:rgba(255,255,255,0.76);
  background:#02070d;
}

@media (max-width:1050px) {
  .hero,
.photo-story,
.split,
.policy,
.contact,
.formation-board {
  grid-template-columns:1fr;
}
.cards,
.record-grid,
.related-grid,
.trust-strip {
  grid-template-columns:repeat(2,1fr);
}
}

@media (max-width:720px) {
  .site-header {
  position:static;
  align-items:flex-start;
  flex-direction:column;
  padding-block:16px;
}
.nav {
  width:100%;
  overflow-x:auto;
  white-space:nowrap;
}
.hero {
  grid-template-columns:1fr;
  padding-top:46px;
}
.photo-story img {
  height:360px;
}
.hero-actions,
.button {
  width:100%;
}
.hero-visual,
.formation-pitch {
  min-height:420px;
}
.match-board {
  right:16px;
  bottom:16px;
  width:calc(100% - 32px);
}
.cards,
.record-grid,
.related-grid,
.trust-strip,form {
  grid-template-columns:1fr;
}
.trust-strip div {
  border-right:0;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
dl div {
  grid-template-columns:1fr;
  gap:6px;
}
.site-footer {
  flex-direction:column;
}
}
 .officers {
  background:linear-gradient(135deg,#f7fbff,#fff)}
.officer-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  align-items:start}
.officer-card {
  min-height:100%;
  padding:26px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  box-shadow:0 12px 34px rgba(7,27,53,
.07)}
.officer-head {
  display:grid;
  grid-template-columns:68px 1fr;
  gap:16px;
  align-items:center;
  margin-bottom:20px}
.person-icon {
  display:grid;
  place-items:center;
  width:64px;
  height:64px;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,var(--blue),var(--navy));
  font-weight:950;
  font-size:1.25rem;
  box-shadow:0 14px 30px rgba(18,103,200,
.24)}
.officer-head h3 {
  margin:0;
  color:var(--navy);
  font-size:1.35rem}
.role {
  margin:2px 0;
  color:var(--muted);
  font-weight:850}
.tagline {
  display:inline-flex;
  margin:0;
  padding:3px 10px;
  border-radius:999px;
  color:var(--green);
  background:rgba(41,196,129,
.1);
  font-size:.82rem;
  font-weight:900}
.officer-card p {
  color:var(--muted);
  font-size:.92rem}

@media(max-width:1050px) {
  .officer-grid {
  grid-template-columns:repeat(2,1fr)}
}

@media(max-width:720px) {
  .officer-grid {
  grid-template-columns:1fr}
}

.hero-visual {
  background:radial-gradient(circle at 54% 30%,rgba(98,214,255,.28),transparent 20%),linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
}

.hero-visual::before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(110deg,transparent 0 38%,rgba(98,214,255,.13) 42%,transparent 49%),radial-gradient(circle at 50% 96%,rgba(41,196,129,.28),transparent 42%);
  animation:scan-glow 4.5s ease-in-out infinite;
}

.speed-lines {
  position:absolute;
  inset:0;
  overflow:hidden;
}

.speed-lines span {
  position:absolute;
  left:-30%;
  width:44%;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,transparent,rgba(98,214,255,.75),transparent);
  opacity:.62;
  transform:rotate(-13deg);
  animation:dash 3.2s linear infinite;
}

.speed-lines span:nth-child(1) { top:22%; animation-delay:0s; }
.speed-lines span:nth-child(2) { top:37%; animation-delay:.8s; }
.speed-lines span:nth-child(3) { top:55%; animation-delay:1.6s; }
.speed-lines span:nth-child(4) { top:70%; animation-delay:2.4s; }

.hero-pitch {
  left:5%;
  right:5%;
  bottom:1%;
  height:78%;
  border-radius:14px;
  transform:perspective(760px) rotateX(56deg) rotateZ(-2deg);
  box-shadow:0 34px 80px rgba(0,0,0,.42);
}

.run-lane {
  position:absolute;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.92),rgba(98,214,255,.68),transparent);
  transform-origin:left center;
  animation:route-pulse 2.6s ease-in-out infinite;
}

.lane-one {
  left:20%;
  top:38%;
  width:48%;
  transform:rotate(18deg);
}

.lane-two {
  left:42%;
  top:60%;
  width:34%;
  transform:rotate(-24deg);
  animation-delay:.9s;
}

.hero-player {
  position:absolute;
  z-index:3;
  width:20px;
  height:20px;
  border:3px solid #fff;
  border-radius:50%;
  background:var(--cyan);
  box-shadow:0 0 0 9px rgba(98,214,255,.16),0 8px 24px rgba(0,0,0,.28);
}

.hp1 { left:24%; top:34%; animation:player-sprint 3.4s ease-in-out infinite; }
.hp2 { left:42%; top:50%; background:#ffca5f; animation:player-sprint 3.6s ease-in-out infinite reverse; }
.hp3 { left:56%; top:38%; animation:player-sprint 3.1s ease-in-out infinite .45s; }
.hp4 { left:66%; top:64%; background:#ffca5f; animation:player-sprint 3.8s ease-in-out infinite .7s; }
.hp5 { left:76%; top:47%; animation:player-sprint 3.2s ease-in-out infinite 1s; }

.hero-ball {
  position:absolute;
  z-index:4;
  left:50%;
  top:50%;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 8px rgba(255,255,255,.18),0 0 28px rgba(98,214,255,.9);
  animation:ball-drive 3.8s cubic-bezier(.65,0,.35,1) infinite;
}

.score-ribbon {
  position:absolute;
  left:26px;
  top:26px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 13px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  color:#fff;
  background:rgba(7,27,53,.54);
  box-shadow:0 20px 48px rgba(0,0,0,.22);
  backdrop-filter:blur(14px);
  font-size:.82rem;
  font-weight:900;
}

.score-ribbon span { color:#9dffd0; }
.score-ribbon b { color:rgba(255,255,255,.82); }

@keyframes dash {
  to { transform:translateX(330%) rotate(-13deg); }
}

@keyframes scan-glow {
  50% { opacity:.65; transform:translateX(4%); }
}

@keyframes route-pulse {
  50% { opacity:.35; filter:drop-shadow(0 0 12px rgba(98,214,255,.8)); }
}

@keyframes player-sprint {
  50% { transform:translate(16px,-12px) scale(1.08); }
}

@keyframes ball-drive {
  0% { transform:translate(-80px,48px); }
  35% { transform:translate(24px,-28px); }
  68% { transform:translate(116px,38px); }
  100% { transform:translate(-80px,48px); }
}

@keyframes formation-shift {
  0%,100% { transform:translate(0,0) scale(1); }
  50% { transform:translate(10px,-7px) scale(1.08); }
}

@keyframes formation-press {
  0%,100% { transform:translate(0,0) scale(1); }
  45% { transform:translate(16px,5px) scale(1.1); }
  68% { transform:translate(7px,-9px) scale(1.04); }
}

@keyframes formation-cover {
  0%,100% { transform:translate(0,0) scale(1); }
  50% { transform:translate(-12px,8px) scale(1.07); }
}

@keyframes formation-ball {
  0% { transform:translate(-140px,58px); }
  22% { transform:translate(-42px,-34px); }
  48% { transform:translate(18px,18px); }
  72% { transform:translate(118px,-46px); }
  100% { transform:translate(-140px,58px); }
}

/* Hero visual upgrade */
.hero {
  position:relative;
  background:
    linear-gradient(90deg,rgba(3,12,24,.92) 0%,rgba(7,27,53,.76) 48%,rgba(7,27,53,.28) 100%),
    linear-gradient(180deg,rgba(3,12,24,.18),rgba(3,12,24,.46)),
    url("./assets/soccer-field.jpg") center / cover no-repeat;
}

.hero::before {
  content:"";
  position:absolute;
  inset:auto -10% -22% -10%;
  height:40%;
  background:linear-gradient(180deg,transparent,rgba(3,12,24,.5));
  pointer-events:none;
}

.hero-copy {
  position:relative;
  z-index:2;
}

h1 {
  text-shadow:0 24px 80px rgba(0,0,0,.46);
}

.hero-visual {
  isolation:isolate;
  border-color:rgba(98,214,255,.24);
  background:
    radial-gradient(circle at 52% 30%,rgba(98,214,255,.32),transparent 20%),
    linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,255,255,.025));
  box-shadow:0 30px 90px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.04);
}

.hero-visual::after {
  content:"";
  position:absolute;
  inset:0;
  z-index:6;
  background:
    linear-gradient(180deg,rgba(255,255,255,.08),transparent 24%),
    radial-gradient(circle at 50% 116%,rgba(0,0,0,.72),transparent 42%);
  pointer-events:none;
}

.stadium-lights {
  z-index:2;
}

.stadium-bowl {
  position:absolute;
  left:6%;
  right:6%;
  top:12%;
  z-index:1;
  height:32%;
  border-radius:50% 50% 18px 18px / 70% 70% 18px 18px;
  background:
    repeating-linear-gradient(90deg,rgba(255,255,255,.12) 0 2px,transparent 2px 12px),
    linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,.03));
  opacity:.55;
  transform:perspective(700px) rotateX(62deg);
  box-shadow:0 20px 80px rgba(98,214,255,.2);
}

.speed-lines {
  z-index:4;
}

.hero-pitch {
  z-index:2;
  left:3%;
  right:3%;
  bottom:-2%;
  height:82%;
  transform:perspective(820px) rotateX(57deg) rotateZ(-2deg);
  box-shadow:0 38px 90px rgba(0,0,0,.48);
}

.hero-pitch::after {
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 68% 42%,rgba(98,214,255,.2),transparent 20%),
    linear-gradient(90deg,rgba(255,255,255,.09),transparent 30% 70%,rgba(255,255,255,.08));
  mix-blend-mode:screen;
  pointer-events:none;
}

.lane-three {
  left:28%;
  top:52%;
  width:54%;
  transform:rotate(-5deg);
  animation-delay:1.45s;
}

.tactical-hud {
  position:absolute;
  right:24px;
  top:24px;
  z-index:4;
  display:grid;
  gap:8px;
}

.tactical-hud span {
  min-width:58px;
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  color:rgba(255,255,255,.78);
  background:rgba(7,27,53,.42);
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  backdrop-filter:blur(10px);
  font-size:.78rem;
  font-weight:900;
  text-align:center;
}

.score-ribbon {
  border-color:rgba(157,255,208,.24);
  background:rgba(3,12,24,.62);
}

.hero-visual .score-ribbon,
.hero-visual .tactical-hud {
  display:none;
}
