* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: #171717;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.splash {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: #171717;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: arrive .8s cubic-bezier(.2,.8,.2,1) both;
}

.logo {
  display: block;
  width: min(500px, 72vw);
  height: auto;
  filter: brightness(0) invert(1);
}

.head-kick-logo {
  display: block;
  width: min(520px, 80vw);
  max-height: 42vh;
  object-fit: contain;
}

.coming-soon {
  margin: 34px 0 0;
  color: #fff;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: .28em;
  line-height: 1;
  text-indent: .28em;
  text-transform: uppercase;
}

footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: center;
  color: rgba(255,255,255,.58);
  animation: rise .7s .25s ease both;
}

footer nav { display: flex; gap: 22px; }

footer a,
.back-link {
  color: inherit;
  font-size: 12px;
  text-decoration: none;
  transition: color .2s ease;
}

footer a:hover,
footer a:focus-visible,
.back-link:hover,
.back-link:focus-visible { color: #fff; }

.back-link {
  position: absolute;
  top: 28px;
  left: 30px;
  color: rgba(255,255,255,.58);
  font-weight: 700;
  letter-spacing: .08em;
}

@keyframes arrive {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 520px) {
  .logo { width: 78vw; }
  footer { bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .center, footer { animation: none; }
}

.legal-header {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 28px;
  display: flex;
  justify-content: space-between;
}

.legal-header a {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
}

.legal-header a:hover { color: #fff; }

.legal-page {
  width: min(760px, calc(100% - 48px));
  margin: 90px auto 120px;
}

.legal-label {
  margin: 0 0 24px;
  color: #ec2227;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.legal-page h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 84px);
  line-height: .95;
  letter-spacing: -.055em;
}

.updated {
  margin: 28px 0 70px;
  color: rgba(255,255,255,.48);
  font-size: 13px;
}

.legal-content { color: rgba(255,255,255,.67); }
.legal-content .intro { color: #fff; font-size: 20px; line-height: 1.6; }

.legal-content section {
  padding: 27px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.legal-content h2 { margin: 0 0 12px; color: #fff; font-size: 18px; }
.legal-content p { margin: 0; font-size: 15px; line-height: 1.75; }
.legal-content p + p { margin-top: 16px; }
.legal-content strong { color: #fff; }
.legal-content a { color: #fff; }

.legal-footer {
  position: static;
  padding: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 28px;
  animation: none;
  color: rgba(255,255,255,.48);
  font-size: 12px;
}
