/* JC Robinson — Recruiting One-Sheet */
:root {
  --navy: #0a0a0a;
  --navy-mid: #1a1a1a;
  --royal: #2a2a2a;
  --royal-bright: #6b6b6b;
  --red: #c8102e;
  --red-bright: #e31837;
  --white: #ffffff;
  --muted: #b0b0b0;
  --card: #141414;
  --border: rgba(255, 255, 255, 0.12);
  --gold: #9a9a9a;
  --radius: 12px;
  --max: 1100px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: #000000;
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ——— Top bar ——— */
.topbar {
  background: linear-gradient(90deg, #000 0%, #222 50%, #000 100%);
  border-bottom: 2px solid var(--red);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* brand span handled by .num */

.nav-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.nav-pills a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav-pills a:hover {
  color: var(--white);
  border-color: var(--royal-bright);
  background: rgba(200, 16, 46, 0.2);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 2.5rem 0 3rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(43, 94, 168, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(200, 16, 46, 0.18), transparent 55%),
    var(--navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.85rem;
}

.hero-badge::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.hero h1 .nick {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.45em;
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.15em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.1rem 0 1.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: var(--card);
  border: 1px solid var(--border);
}

.chip.accent {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.chip.outline {
  background: transparent;
  border-color: var(--royal-bright);
  color: #a8c4ef;
}

.tagline {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34ch;
  margin-bottom: 1.5rem;
}

.tagline strong { color: var(--white); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.35);
}

.btn-primary:hover { background: var(--red-bright); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--royal-bright);
  background: rgba(43, 94, 168, 0.2);
}

.hero-photo {
  position: relative;
  justify-self: end;
  width: min(100%, 340px);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), var(--royal-bright));
  z-index: 0;
  opacity: 0.9;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  border-radius: 14px;
  border: 3px solid var(--navy);
}

.jersey-badge {
  position: absolute;
  bottom: -0.75rem;
  left: -0.75rem;
  z-index: 2;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ——— Sections ——— */
section {
  padding: 3rem 0;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* ——— Bio ——— */
.bio {
  background: var(--navy-mid);
  border-block: 1px solid var(--border);
}

.bio-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
}

.bio-text p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

.bio-text p strong { color: var(--white); }

.honor-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 140px;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--royal) 0%, var(--navy) 100%);
  border: 1px solid var(--royal-bright);
}

.honor-pill .big {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.honor-pill .sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* ——— Stats ——— */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  transition: border-color 0.2s, transform 0.15s;
}

.stat-card:hover {
  border-color: var(--royal-bright);
  transform: translateY(-2px);
}

.stat-card .label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.stat-card .value {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.stat-card .value.highlight { color: var(--red-bright); }

/* ——— Sports ——— */
.sports {
  background: var(--navy-mid);
  border-block: 1px solid var(--border);
}

.sports-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.sport-tile {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.sport-tile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--royal-bright));
}

.sport-tile .icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.sport-tile .name {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sport-tile .hint {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.sport-tile.primary {
  border-color: rgba(200, 16, 46, 0.45);
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.15), var(--card));
}

/* ——— Videos ——— */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.video-slot {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-slot h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.02) 12px,
      rgba(255, 255, 255, 0.02) 24px
    ),
    #0a1220;
  display: grid;
  place-items: center;
}

/* Paste YouTube/Vimeo iframe here — replace the placeholder div:
   <iframe src="YOUR_EMBED_URL" title="Highlight Reel" allowfullscreen
     allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
     style="position:absolute;inset:0;width:100%;height:100%;border:0;"></iframe>
*/
.video-placeholder {
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
}

.video-placeholder .play {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px solid var(--royal-bright);
  display: grid;
  place-items: center;
  margin: 0 auto 0.85rem;
  font-size: 1.25rem;
  color: var(--white);
  background: rgba(43, 94, 168, 0.3);
}

.video-placeholder p {
  font-size: 0.9rem;
  font-weight: 600;
}

.video-placeholder small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  opacity: 0.7;
}

/* ——— Gallery ——— */
.gallery {
  background: var(--navy-mid);
  border-block: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0.85rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: transform 0.35s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item.featured {
  grid-row: span 1;
}

.gallery-item.featured img { aspect-ratio: 3 / 4; }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
}

/* ——— Social ——— */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.social-link:hover {
  border-color: var(--royal-bright);
  background: rgba(200, 16, 46, 0.2);
  transform: translateY(-2px);
}

.social-link .handle {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.8rem;
}

.social-link .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--royal-bright);
}

.social-link.live .dot { background: #22c55e; }

/* ——— Footer / Contact ——— */
.footer {
  background: #060d18;
  border-top: 2px solid var(--red);
  padding: 2.75rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 40ch;
}

.contact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}

.contact-box h3 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.75rem;
}

.contact-line {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.contact-line strong {
  color: var(--white);
  display: inline-block;
  min-width: 5.5rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ——— Responsive ——— */
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-badge { justify-content: center; }
  .hero-badge::before { display: none; }
  .hero-meta, .cta-row { justify-content: center; }
  .tagline { margin-inline: auto; }
  .hero-photo {
    justify-self: center;
    order: -1;
    width: min(100%, 280px);
  }
  .jersey-badge { left: auto; right: -0.5rem; }
  .bio-card { grid-template-columns: 1fr; }
  .honor-pill { flex-direction: row; gap: 1rem; min-width: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-row { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.featured { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.featured { grid-column: auto; }
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.brand-logo {
  width: 36px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}
.brand-text { display: inline-flex; align-items: baseline; gap: 0.35rem; }
.brand .num { color: var(--red-bright); }
.hero-logo {
  width: 88px;
  height: auto;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}
@media (max-width: 720px) {
  .hero-logo { margin-inline: auto; }
}

.tiktok-feed { padding: 3.5rem 0 2rem; border-top: 1px solid var(--border); }
.tiktok-note { color: var(--muted); text-align: center; max-width: 36rem; margin: 0.5rem auto 1.25rem; font-size: 0.95rem; }
.tiktok-actions { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.tiktok-embed-wrap { display: flex; justify-content: center; min-height: 420px; }

/* ——— Mobile polish (phones) ——— */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
}
img, video, iframe {
  max-width: 100%;
  height: auto;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
}
.nav-pills {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: nowrap;
  padding-bottom: 0.15rem;
}
.nav-pills::-webkit-scrollbar { display: none; }
.nav-pills a {
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.btn, .cta-row a, .social-card, .contact-line a {
  touch-action: manipulation;
}
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 860px) {
  .container { width: min(100% - 1.25rem, var(--max)); }
  .topbar { padding: 0.55rem 0; }
  .topbar-inner { gap: 0.65rem; }
  .brand-text { font-size: 0.78rem; }
  .hero { padding: 1.5rem 0 2rem; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.75rem); line-height: 1.05; }
  .hero-photo { width: min(100%, 320px); }
  .hero-photo img { width: 100%; height: auto; object-fit: cover; border-radius: inherit; }
  .cta-row { flex-direction: column; align-items: stretch; gap: 0.65rem; }
  .cta-row .btn { width: 100%; }
  .section-title { font-size: clamp(1.45rem, 6vw, 1.9rem); }
  .bio-card { padding: 1.1rem; }
  .tiktok-embed-wrap { min-height: 360px; width: 100%; overflow: hidden; }
  .contact-line { word-break: break-word; }
  .contact-line strong { min-width: 4.5rem; }
  .footer-note { text-align: center; font-size: 0.8rem; padding: 0 0.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .nav-pills a { font-size: 0.68rem; padding: 0.4rem 0.65rem; }
  .chip { font-size: 0.72rem; }
  .sports-row { grid-template-columns: 1fr; }
  .stats-grid { gap: 0.65rem; }
  .hero-meta { justify-content: center; gap: 0.4rem; }
  .honor-pill { justify-content: center; }
}
@media (hover: none) {
  .nav-pills a:hover { background: transparent; }
}
