:root {
  --bg: #090909;
  --panel: #111111;
  --text: #ffffff;
  --muted: #a9a9a9;
  --lime: #c8ff00;
  --line: #2a2a2a;
  --paper: #f4f4ef;
  --ink: #111111;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(9,9,9,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #202020;
}
.brand-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: -.04em;
  font-size: clamp(18px, 4vw, 26px);
}
.brand span { color: var(--lime); }
.powered { color: #9b9b9b; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(200,255,0,.16), transparent 30%),
    linear-gradient(135deg, #161616 0%, #080808 58%, #050505 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}
.hero-inner { position: relative; z-index: 2; width: min(1120px, 100%); margin: 0 auto; padding: 70px 20px 72px; }
.eyebrow { color: var(--lime); font-weight: 800; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.eyebrow.dark { color: #5c7600; }
.hero h1, .form-heading h2, .why h2, .success h2 {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: -.055em;
  line-height: .94;
  margin: 0;
}
.hero h1 { font-size: clamp(52px, 11vw, 112px); max-width: 900px; }
.hero-kicker { margin: 18px 0 8px; color: var(--lime); font: 800 clamp(28px, 6vw, 52px)/1 Inter, sans-serif; }
.hero-copy { max-width: 700px; color: #d7d7d7; font-size: clamp(18px, 3.7vw, 24px); line-height: 1.45; }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px 12px; color: #9f9f9f; font-weight: 700; font-size: 12px; margin: 24px 0; }

.cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 16px 24px;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.02em;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.cta:hover { transform: translateY(-1px); }
.cta.primary, .cta.submit { background: var(--lime); color: #0c0c0c; }
.cta.submit { width: 100%; font-size: 19px; margin-top: 18px; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #242424;
  border-bottom: 1px solid #242424;
  background: #0e0e0e;
}
.proof-strip > div { padding: 26px 20px; text-align: center; border-right: 1px solid #242424; }
.proof-strip > div:last-child { border-right: none; }
.proof-big { display: block; font-weight: 900; font-size: 18px; }
.proof-small { display: block; color: #858585; font-size: 12px; margin-top: 5px; }

.why { background: var(--paper); color: var(--ink); }
.section-inner { max-width: 1120px; margin: 0 auto; padding: 72px 20px; }
.narrow { max-width: 820px; }
.why h2 { font-size: clamp(36px, 7vw, 72px); }
.why p { font-size: 20px; line-height: 1.6; color: #333; }

.form-section { background: #0c0c0c; padding: 60px 16px 80px; }
.form-shell { max-width: 820px; margin: 0 auto; background: #121212; border: 1px solid #292929; border-radius: 22px; padding: clamp(22px, 5vw, 44px); box-shadow: 0 20px 80px rgba(0,0,0,.4); }
.form-heading { margin-bottom: 34px; }
.form-heading h2 { font-size: clamp(42px, 8vw, 76px); }
.form-heading p { color: #aaa; margin: 12px 0 0; }

.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: 1fr 1fr; }
.field { margin-bottom: 18px; }
.field label, .video-card label { display: block; font-weight: 800; margin-bottom: 9px; line-height: 1.25; }
.field label span, .video-card label span { color: var(--lime); }
input, select, textarea {
  width: 100%;
  border: 1px solid #343434;
  background: #0a0a0a;
  color: white;
  border-radius: 10px;
  padding: 15px 14px;
  font: inherit;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(200,255,0,.12); }
textarea { resize: vertical; }
.counter { text-align: right; color: #666; font-size: 12px; margin-top: 5px; }

.video-card { border: 1px solid rgba(200,255,0,.38); background: linear-gradient(180deg, rgba(200,255,0,.08), rgba(200,255,0,.025)); padding: 22px; border-radius: 14px; margin: 8px 0 22px; }
.video-label { color: var(--lime); font-size: 11px; font-weight: 900; letter-spacing: .13em; margin-bottom: 8px; }
.video-card label { font-size: clamp(22px, 5vw, 34px); font-family: "Archivo Black", sans-serif; letter-spacing: -.04em; }
.video-card p { color: #9a9a9a; font-size: 13px; line-height: 1.5; }
.video-card strong { color: #ddd; font-size: 14px; }
.divider { height: 1px; background: var(--line); margin: 28px 0; }

.consent { display: flex; gap: 11px; align-items: flex-start; color: #bcbcbc; line-height: 1.45; font-size: 13px; }
.consent input { width: auto; margin-top: 3px; accent-color: var(--lime); }
.free-note { color: #8d8d8d; text-align: center; font-size: 12px; }
.error { color: #ff8585; text-align: center; min-height: 20px; }

.success { text-align: center; padding: 24px 4px 4px; }
.success-icon { font-size: 54px; }
.success h2 { font-size: clamp(42px, 8vw, 72px); margin-top: 14px; }
.success-lead { color: var(--lime); font-weight: 900; font-size: 24px; }
.success p { color: #b7b7b7; line-height: 1.6; }
.success .cta { margin-top: 16px; }

.disclaimer { background: #070707; border-top: 1px solid #1f1f1f; }
.disclaimer .section-inner { padding-top: 26px; padding-bottom: 26px; }
.disclaimer p { color: #777; font-size: 12px; line-height: 1.6; margin: 0; }

footer { padding: 42px 20px; text-align: center; border-top: 1px solid #1d1d1d; }
footer p { color: #666; font-size: 12px; }

@media (max-width: 720px) {
  .brand-wrap { align-items: flex-start; }
  .powered { display: none; }
  .hero { min-height: auto; }
  .hero-inner { padding-top: 58px; padding-bottom: 58px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > div { border-right: 0; border-bottom: 1px solid #242424; }
  .proof-strip > div:last-child { border-bottom: 0; }
  .grid.two { grid-template-columns: 1fr; gap: 0; }
  .form-section { padding-inline: 10px; }
  .form-shell { border-radius: 16px; }
}

/* Uploadcare video option */
.video-choice-intro { margin: 0 0 18px; }
.video-option {
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
}
.video-option-title {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.video-or {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #777;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  margin: 14px 0;
}
.video-or::before, .video-or::after { content: ""; height: 1px; background: #333; flex: 1; }
uc-file-uploader-regular {
  display: block;
  --uc-primary-color: #c8ff00;
  --uc-primary-foreground: #0c0c0c;
  --uc-border-radius: 10px;
}
.upload-status { margin: 10px 0 0 !important; color: #8f8f8f !important; }
.upload-status.active { color: #e7e7e7 !important; }
.upload-status.success { color: var(--lime) !important; font-weight: 800; }
.upload-status.failed { color: #ff8585 !important; font-weight: 700; }


/* Featured athlete scouting profile */
.featured-athlete { background: #090909; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.featured-head { display:flex; justify-content:space-between; align-items:end; gap:24px; margin-bottom:28px; }
.featured-head h2 { font-family:"Archivo Black",sans-serif; font-size:clamp(42px,8vw,82px); line-height:.95; letter-spacing:-.055em; margin:0; }
.featured-sub { font-weight:800; letter-spacing:.08em; color:#bdbdbd; }
.featured-stamp { border:2px solid var(--lime); color:var(--lime); font-weight:900; line-height:.9; padding:14px; text-align:center; transform:rotate(2deg); }
.scout-card { border:1px solid #2b2b2b; background:linear-gradient(145deg,#151515,#0c0c0c); border-radius:18px; overflow:hidden; }
.vitals { display:grid; grid-template-columns:repeat(5,1fr); border-bottom:1px solid #2b2b2b; }
.vitals div { padding:18px; border-right:1px solid #2b2b2b; }
.vitals div:last-child { border-right:0; }
.vitals span { display:block; color:#777; font-size:10px; font-weight:800; letter-spacing:.12em; margin-bottom:6px; }
.vitals strong { font-size:14px; }
.resume { padding:26px; }
.resume-title { color:var(--lime); font-weight:900; letter-spacing:.12em; font-size:11px; margin-bottom:8px; }
.resume-row { display:grid; grid-template-columns:42px 1fr; gap:10px; border-top:1px solid #252525; padding:14px 0; align-items:start; }
.resume-row span { color:var(--lime); font-weight:900; }
.resume-row p { margin:0; color:#ddd; line-height:1.45; }
.scout-card blockquote { margin:0; padding:26px; background:linear-gradient(90deg,rgba(200,255,0,.12),rgba(200,255,0,.02)); border-top:1px solid rgba(200,255,0,.25); font-size:clamp(20px,3vw,28px); font-weight:800; line-height:1.35; }
.scout-card cite { display:block; margin-top:14px; color:var(--lime); font-size:10px; font-style:normal; letter-spacing:.12em; }
@media(max-width:720px){.featured-head{align-items:flex-start}.featured-stamp{font-size:11px}.vitals{grid-template-columns:1fr 1fr}.vitals div{border-bottom:1px solid #2b2b2b}.vitals div:nth-child(even){border-right:0}.vitals div:last-child{grid-column:1/-1}.resume{padding:20px}.scout-card blockquote{padding:20px}}


/* Featured athlete hero image */
.featured-photo-wrap{margin:24px 0 28px;border:1px solid rgba(255,255,255,.16);background:#050505;overflow:hidden;box-shadow:0 18px 50px rgba(0,0,0,.28)}
.featured-photo{display:block;width:100%;height:auto;object-fit:cover}
@media(max-width:700px){.featured-photo-wrap{margin:18px -4px 22px}.featured-photo{min-height:230px;object-fit:cover;object-position:center}}
