:root {
  --black: #111111;
  --ink: #191919;
  --muted: #6f6f6f;
  --line: #e7e2dc;
  --soft: #f7f3ee;
  --white: #ffffff;
  --orange: #ff4b16;
  --orange-dark: #db3406;
  --success: #16834a;
  --danger: #c93626;
  --gold: #f5b037;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #eee8df;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; }
img { display: block; max-width: 100%; }

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255,75,22,0.12), transparent 34rem),
    linear-gradient(180deg, #f8f5f0 0%, #eee8df 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background:
    linear-gradient(110deg, rgba(17,17,17,0.98) 0%, rgba(17,17,17,0.94) 52%, rgba(255,75,22,0.78) 100%),
    radial-gradient(circle at 80% 20%, rgba(255,75,22,0.34), transparent 30rem);
  color: var(--white);
  padding: 24px clamp(18px, 5vw, 64px) 72px;
}
.hero__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(135deg, transparent 0 38%, rgba(255,255,255,0.06) 38% 39%, transparent 39% 100%),
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.1) 0 1px, transparent 1px);
  background-size: 180px 180px, 28px 28px, 36px 36px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.topbar, .hero__grid, .info-strip, .explain, .form-card, .footer { position: relative; z-index: 1; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}
.brand__logo {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,.28);
}
.brand__text { font-size: 14px; }
.topbar__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.topbar__chips span {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  backdrop-filter: blur(10px);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: clamp(24px, 6vw, 82px);
  align-items: center;
  max-width: 1180px;
  margin: 78px auto 0;
}
.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.76);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 4px;
  border-radius: 99px;
  background: var(--orange);
}
.eyebrow.dark { color: var(--orange); }
.hero h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(72px, 11vw, 148px);
  line-height: .86;
  letter-spacing: .015em;
  text-transform: uppercase;
  text-shadow: 0 16px 48px rgba(0,0,0,.34);
}
.hero h1 span {
  color: var(--orange);
  display: inline-block;
  transform: rotate(-1deg);
  text-shadow: 0 16px 48px rgba(255,75,22,.24);
}
.hero__lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 4px solid rgba(255,75,22,.24); outline-offset: 3px; }
.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(255,75,22,.28);
}
.btn--orange:hover { background: var(--orange-dark); }
.btn--ghost {
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.btn--light { background: #efe9e2; color: var(--ink); }
.btn--success { background: var(--success); color: var(--white); box-shadow: 0 18px 42px rgba(22,131,74,.18); }
.btn[disabled] { opacity: .62; cursor: wait; transform: none; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(95px, 1fr));
  gap: 12px;
  margin-top: 46px;
  max-width: 730px;
}
.hero__stats div {
  padding: 18px 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  border-radius: 22px;
  backdrop-filter: blur(10px);
}
.hero__stats strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 42px;
  line-height: .9;
  color: var(--orange);
}
.hero__stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.67);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.poster-card {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
  border-radius: 32px;
  padding: 14px;
  transform: rotate(2deg);
  box-shadow: 0 35px 100px rgba(0,0,0,.34);
}
.poster-card img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
.info-strip {
  max-width: 1180px;
  margin: -48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: var(--line);
}
.info-strip div {
  background: var(--white);
  padding: 24px;
}
.mini-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.info-strip strong { font-size: 18px; }
.explain, .form-card {
  max-width: 1180px;
  margin: 64px auto 0;
  padding: 0 clamp(18px, 4vw, 0px);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .6fr) minmax(0, 1fr);
  align-items: end;
  gap: 24px;
  margin-bottom: 20px;
}
.section-heading h2, .form-card h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(40px, 7vw, 76px);
  line-height: .92;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.explain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.explain__grid article {
  background: var(--white);
  border: 1px solid rgba(17,17,17,.06);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 50px rgba(17,17,17,.06);
}
.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--orange);
  font-weight: 900;
}
.explain h3 { margin: 18px 0 8px; font-size: 20px; }
.explain p { margin: 0; color: var(--muted); line-height: 1.6; }
.form-card {
  background: var(--white);
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 36px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 38px);
  overflow: hidden;
}
.form-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.deadline-badge {
  display: inline-flex;
  background: var(--black);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.progress-panel {
  margin-top: 26px;
  background: #f8f4ee;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid #efe4dc;
}
.progress-panel__top { display: flex; justify-content: space-between; font-weight: 900; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.progress-panel__top strong { color: var(--orange); }
.progress-bar { height: 8px; margin-top: 12px; background: #e7ddd3; border-radius: 999px; overflow: hidden; }
.progress-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--orange), var(--gold)); border-radius: 999px; transition: width .28s ease; }
.step-nav {
  display: flex;
  gap: 8px;
  padding: 14px 0 22px;
  overflow-x: auto;
}
.step-tab {
  min-width: max-content;
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: #f5efe8;
  font-weight: 900;
  cursor: pointer;
  font-size: 13px;
}
.step-tab.is-active { background: var(--orange); color: var(--white); }
.step-tab.is-done { background: rgba(22,131,74,.12); color: var(--success); }
.form-step { display: none; border-top: 1px solid var(--line); padding-top: 28px; }
.form-step.is-active { display: block; }
.step-title { margin-bottom: 22px; }
.step-title h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 42px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.step-title p { margin: 4px 0 0; color: var(--muted); line-height: 1.55; }
.notice {
  padding: 15px 16px;
  border-radius: 16px;
  margin-bottom: 22px;
  line-height: 1.55;
  border: 1px solid transparent;
}
.notice--orange { background: rgba(255,75,22,.08); border-color: rgba(255,75,22,.18); }
.notice--dark { background: rgba(17,17,17,.05); border-color: rgba(17,17,17,.08); }
.delegation-note {
  margin: -4px 0 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #111111;
  color: var(--white);
  font-weight: 900;
  letter-spacing: .02em;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.delegation-note span { color: var(--orange); }

.field { margin-bottom: 18px; }
.field label, .commitment-box h4 {
  display: block;
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 900;
  color: var(--ink);
}
.field label span { color: var(--danger); }
.field small { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; }
input[type="text"], input[type="tel"], input[type="email"], input[type="number"], input[type="date"], select, textarea {
  width: 100%;
  color: var(--ink);
  background: #fffdfb;
  border: 1.5px solid #e6ded6;
  border-radius: 16px;
  min-height: 50px;
  padding: 13px 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
textarea { resize: vertical; min-height: 112px; line-height: 1.5; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,75,22,.12); }
input.is-invalid, select.is-invalid, textarea.is-invalid { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(201,54,38,.10); }
.field-grid { display: grid; gap: 16px; }
.field-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice-row, .position-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.choice-row label, .position-grid label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid #e6ded6;
  border-radius: 999px;
  background: #fffdfb;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: all .18s ease;
}
.choice-row input, .position-grid input, .commitment-box input { accent-color: var(--orange); }
.choice-row label:has(input:checked), .position-grid label:has(input:checked) { border-color: var(--orange); color: var(--orange); background: rgba(255,75,22,.07); }
.choice-row label.is-invalid, .position-grid label.is-invalid {
  border-color: var(--danger);
  background: rgba(201,54,38,.06);
}
.file-zone.is-invalid {
  border-color: var(--danger);
  background: rgba(201,54,38,.06);
}

.button-row { display: flex; gap: 12px; margin-top: 28px; }
.button-row.right { justify-content: flex-end; }
.button-row.split { justify-content: space-between; }
.players-container { display: grid; gap: 18px; }
.player-card {
  border: 1px solid #e6ded6;
  border-radius: 24px;
  overflow: hidden;
  background: #fffdfb;
}
.player-card__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}
.player-card:nth-child(odd) .player-card__head { background: var(--orange); }
.player-num {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 34px;
  line-height: 1;
  opacity: .76;
  min-width: 46px;
}
.player-preview { flex: 1; font-weight: 900; }
.player-card__toggle { font-weight: 900; transition: transform .2s ease; }
.player-card.is-open .player-card__toggle { transform: rotate(180deg); }
.player-card__body { display: none; padding: 18px; }
.player-card.is-open .player-card__body { display: block; }
.file-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.file-zone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 168px;
  padding: 14px;
  text-align: center;
  border: 2px dashed #ded3c9;
  background: #f8f4ee;
  border-radius: 18px;
  cursor: pointer;
  overflow: hidden;
}
.file-zone:hover { border-color: var(--orange); background: rgba(255,75,22,.05); }
.file-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-zone__icon { font-size: 34px; }
.file-zone__title { display: block; margin-top: 8px; font-weight: 900; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.file-zone__hint { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.file-zone__preview { display: none; width: 100%; height: 132px; object-fit: cover; border-radius: 12px; margin-bottom: 8px; }
.file-zone.has-file { border-color: rgba(22,131,74,.7); background: rgba(22,131,74,.06); }
.file-zone.has-file .file-zone__preview { display: block; }
.summary-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}
.summary-block {
  border: 1px solid #e6ded6;
  border-radius: 22px;
  overflow: hidden;
  background: #fffdfb;
}
.summary-block h4 {
  margin: 0;
  padding: 13px 16px;
  background: #f8f4ee;
  color: var(--orange);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.summary-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 14px;
  padding: 11px 16px;
  border-top: 1px solid #efe7df;
  font-size: 14px;
}
.summary-row span:first-child { color: var(--muted); font-weight: 800; }
.summary-row strong { word-break: break-word; }
.commitment-box {
  display: grid;
  gap: 11px;
  padding: 18px;
  border-radius: 22px;
  background: #f8f4ee;
  border: 1px solid #efe4dc;
  margin: 22px 0;
}
.commitment-box h4 { margin-bottom: 2px; }
.commitment-box label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  line-height: 1.45;
}
.commitment-box input { width: 18px; height: 18px; margin-top: 1px; flex: none; }
.submission-status { margin-top: 18px; }
.submission-status > div {
  padding: 15px 16px;
  border-radius: 16px;
  line-height: 1.5;
  font-weight: 700;
}
.status-info { background: rgba(17,17,17,.06); color: var(--ink); }
.status-success { background: rgba(22,131,74,.10); color: #0d6d3b; border: 1px solid rgba(22,131,74,.18); }
.status-warning { background: rgba(245,176,55,.14); color: #765000; border: 1px solid rgba(245,176,55,.28); }
.status-error { background: rgba(201,54,38,.10); color: var(--danger); border: 1px solid rgba(201,54,38,.18); }
.footer {
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 34px clamp(18px, 4vw, 0px) 54px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}
.footer img { width: 60px; height: 60px; border-radius: 999px; background: var(--white); }
.footer strong { display: block; color: var(--ink); margin-bottom: 5px; }
.footer span { line-height: 1.5; }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; margin-top: 56px; }
  .hero__poster { max-width: 380px; }
  .info-strip { grid-template-columns: repeat(2, 1fr); margin-left: 18px; margin-right: 18px; }
  .section-heading { grid-template-columns: 1fr; }
  .explain__grid { grid-template-columns: 1fr; }
  .field-grid.three { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .hero { padding-left: 16px; padding-right: 16px; }
  .topbar { align-items: flex-start; }
  .topbar__chips { display: none; }
  .brand__logo { width: 50px; height: 50px; }
  .hero h1 { font-size: clamp(64px, 18vw, 92px); }
  .hero__lead { font-size: 16px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .info-strip { grid-template-columns: 1fr; }
  .form-card { margin-top: 44px; border-radius: 28px; }
  .form-card__header { flex-direction: column; }
  .field-grid.two, .file-grid { grid-template-columns: 1fr; }
  .summary-row { grid-template-columns: 1fr; gap: 3px; }
  .button-row.split { flex-direction: column; }
  .button-row .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
