:root {
  --pitch: #0a1f14;
  --pitch-mid: #143528;
  --chalk: #f4f7f2;
  --mist: #d8e4d6;
  --lime: #c8f542;
  --lime-deep: #9bc41a;
  --ink: #0e1612;
  --muted: #5c6b60;
  --line: rgba(200, 245, 66, 0.35);
  --font-display: "Oswald", sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--chalk);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: linear-gradient(to bottom, rgba(10, 31, 20, 0.85), transparent);
  color: var(--chalk);
  mix-blend-mode: normal;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--lime);
  color: var(--lime);
}

.nav-cta:hover {
  background: var(--lime);
  color: var(--pitch);
}

@media (max-width: 640px) {
  .nav a:not(.nav-cta) {
    display: none;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--chalk);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  animation: hero- ken 18s var(--ease) forwards;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 31, 20, 0.92) 0%, rgba(10, 31, 20, 0.55) 48%, rgba(10, 31, 20, 0.35) 100%),
    linear-gradient(to top, rgba(10, 31, 20, 0.95) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 14vh, 8rem) clamp(1.25rem, 5vw, 4rem) clamp(2.5rem, 6vh, 4rem);
  max-width: 42rem;
}

.brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--lime);
  animation: rise 0.9s var(--ease) both;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 4.2vw, 2.6rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  animation: rise 0.9s var(--ease) 0.12s both;
}

.lede {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 34rem;
  color: var(--mist);
  animation: rise 0.9s var(--ease) 0.22s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s var(--ease) 0.32s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lime);
  color: var(--pitch);
}

.btn-primary:hover {
  background: var(--lime-deep);
  color: var(--pitch);
}

.btn-ghost {
  background: transparent;
  color: var(--chalk);
  border: 1px solid rgba(244, 247, 242, 0.45);
}

.btn-ghost:hover {
  border-color: var(--chalk);
}

.btn-block {
  width: 100%;
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 5vw, 4rem);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-lede {
  margin: 0 0 2.5rem;
  max-width: 36rem;
  color: var(--muted);
}

.sports {
  background: var(--chalk);
}

.sport-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
}

@media (min-width: 900px) {
  .sport-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sport-grid li {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sport-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.6s var(--ease);
}

.sport-grid li:hover img {
  transform: scale(1.03);
}

.sport-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sport-grid p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.how {
  background: var(--pitch);
  color: var(--chalk);
}

.how .section-lede {
  color: var(--mist);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--lime);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.steps h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.steps p {
  margin: 0;
  color: var(--mist);
  font-size: 0.95rem;
}

/* —— Upload —— */
.upload {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(200, 245, 66, 0.12), transparent 55%),
    var(--chalk);
}

.upload-panel {
  max-width: 560px;
}

.upload-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.field input,
.field select {
  font: inherit;
  font-weight: 400;
  padding: 0.85rem 1rem;
  border: 1px solid #c5d2c4;
  background: #fff;
  color: var(--ink);
  border-radius: 0;
}

.field input:focus,
.field select:focus {
  outline: 2px solid var(--lime);
  outline-offset: 1px;
}

.dropzone {
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 10rem;
  padding: 1.75rem 1rem;
  border: 1.5px dashed var(--pitch-mid);
  background: rgba(20, 53, 40, 0.04);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.dropzone:hover,
.dropzone.is-drag {
  border-color: var(--lime-deep);
  background: rgba(200, 245, 66, 0.12);
}

.dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  padding: 0;
  border: none;
}

.drop-title {
  font-size: 1rem;
  font-weight: 600;
}

.drop-hint,
.file-name {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}

.file-name:not([hidden]) {
  display: block;
  margin-top: 0.5rem;
  color: var(--pitch-mid);
  font-weight: 600;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-status.error {
  color: #a11f1f;
}

.form-status.ok {
  color: var(--pitch-mid);
}

.site-footer {
  padding: 2.5rem clamp(1.25rem, 5vw, 4rem);
  background: var(--pitch);
  color: var(--mist);
  text-align: center;
}

.footer-brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
}

.site-footer a {
  color: var(--lime);
}

.fineprint {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  opacity: 0.75;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-ken {
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .brand,
  .hero h1,
  .lede,
  .hero-actions,
  .hero-media img {
    animation: none;
  }
  .hero-media img {
    transform: none;
  }
}
