/* =========================================================
   Prodigy Athletic Gear — Spring Ball 2026 Landing Page
   Mobile-first. NFL Draft energy. Blue/red blocks.
   ========================================================= */

:root {
  --blue: #1A1AC7;
  --blue-dark: #12128F;
  --red: #BC1E2C;
  --red-dark: #8E1621;
  --black: #000000;
  --white: #FFFFFF;
  --gray: #F4F4F6;
  --gray-border: #D8D8DE;
  --text: #0A0A14;
  --text-muted: #54546A;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius: 4px;
  --container: 1200px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
h1, h2, h3, h4, p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* Focus visible for accessibility */
:focus-visible {
  outline: 3px solid #FFD600;
  outline-offset: 2px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, .display {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 18px 32px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--ghost:hover { background: var(--white); color: var(--blue); transform: translateY(-2px); }

.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover { background: var(--blue); transform: translateY(-2px); }

.btn--block { width: 100%; }
.btn--lg { padding: 22px 40px; font-size: 16px; }

/* ---------- URGENCY BAR ---------- */
.urgency-bar {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
}
.urgency-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.urgency-bar__dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* ---------- NAV ---------- */
.nav {
  background: var(--white);
  border-bottom: 2px solid var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__logo img {
  height: 32px;
  width: auto;
}
.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  padding: 10px 14px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__phone:hover { background: var(--black); color: var(--white); }
.nav__phone-label { display: none; }

@media (min-width: 600px) {
  .nav__logo img { height: 40px; }
  .nav__phone-label { display: inline; }
}

/* ---------- HERO ---------- */
.hero {
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: var(--red);
  transform: skewX(-12deg);
  opacity: 0.08;
  pointer-events: none;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 6px 12px;
  margin-bottom: 20px;
  border-radius: var(--radius);
}
.hero__title {
  font-size: clamp(36px, 9vw, 72px);
  margin-bottom: 20px;
}
.hero__title-accent {
  color: var(--white);
  background: var(--red);
  padding: 0 12px;
  display: inline-block;
  transform: skewX(-6deg);
}
.hero__sub {
  font-size: 16px;
  line-height: 1.5;
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.88);
}
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.hero__image img {
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

@media (min-width: 600px) {
  .hero__ctas { flex-direction: row; }
  .hero__sub { font-size: 18px; }
}
@media (min-width: 900px) {
  .hero { padding: 100px 0 120px; }
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
  }
  .hero__title { font-size: clamp(56px, 6vw, 88px); }
  .hero__sub { font-size: 20px; }
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: left;
  margin-bottom: 48px;
}
.section-head--center { text-align: center; }
.section-head--light { color: var(--white); }
.section-head--light .section-head__eyebrow { color: var(--white); background: var(--red); }
.section-head__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 6px 12px;
  margin-bottom: 16px;
  border-radius: var(--radius);
}
.section-head__title {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 0.95;
  margin-bottom: 12px;
}
.section-head__sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
}
.section-head--light .section-head__sub { color: rgba(255,255,255,0.85); }
.section-head--center .section-head__sub { margin: 12px auto 0; }

/* ---------- CREDIBILITY ---------- */
.credibility {
  background: var(--gray);
  padding: 56px 0;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.credibility__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 32px;
}
.credibility__item {
  text-align: left;
}
.credibility__icon {
  width: 48px; height: 48px;
  color: var(--blue);
  margin-bottom: 16px;
}
.credibility__icon svg { width: 100%; height: 100%; }
.credibility__item h3 {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--black);
}
.credibility__item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .credibility { padding: 80px 0; }
  .credibility__inner { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}

/* ---------- PRODUCTS ---------- */
.products {
  background:
    radial-gradient(circle at 12% 18%, rgba(26, 26, 199, 0.10) 0%, transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(15, 122, 59, 0.10) 0%, transparent 42%),
    linear-gradient(180deg, #f7f7fb 0%, #ffffff 50%, #f2f7f3 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.products::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 520px;
  height: 520px;
  background: linear-gradient(135deg, rgba(26, 26, 199, 0.08) 0%, transparent 60%);
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 0;
}
.products::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 520px;
  height: 520px;
  background: linear-gradient(315deg, rgba(15, 122, 59, 0.10) 0%, transparent 60%);
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 0;
}
.products__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.products__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .products { padding: 120px 0; }
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

/* Product card */
.product-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease;
}
.product-card .product-card__visual {
  border-top-left-radius: calc(var(--radius) - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
}
.product-card:hover { transform: translateY(-4px); }

.product-card__visual {
  aspect-ratio: 4 / 3;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card__visual--photo { padding: 16px; }
.product-card__visual--photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-card__visual--light { background: var(--white); border-bottom: 2px solid var(--black); }

.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  border-top: 2px solid var(--black);
}
.product-card__visual--light + .product-card__body { border-top: none; }

.product-card__name {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.product-card__price {
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.product-card__price-note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--red);
  padding: 4px 8px;
  border-radius: var(--radius);
  text-transform: uppercase;
}
.product-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

/* Typographic card (knee pads, no photo) */
.product-card--typographic .product-card__visual {
  background: var(--blue);
  color: var(--white);
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  position: relative;
}
.product-card--typographic .product-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.product-card--typographic .product-card__visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  background: var(--red);
}
.product-card__type-label {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.product-card__type-sub {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
}
.product-card__icon {
  width: 60px;
  height: 60px;
  color: var(--white);
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

/* Featured card */
.product-card--featured {
  border-width: 3px;
  border-color: var(--red);
  box-shadow: 8px 8px 0 var(--black);
}
.product-card--featured .product-card__visual {
  background: var(--gray);
}
.product-card__ribbon {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 8px 20px;
  border-radius: 2px;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(188, 30, 44, 0.35);
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .product-card--featured { transform: scale(1.04); }
  .product-card--featured:hover { transform: scale(1.04) translateY(-4px); }
}

/* ---------- BULK PRICING ---------- */
.bulk {
  background: var(--blue);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.bulk::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.bulk__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.tiers {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}
.tier {
  background: var(--white);
  color: var(--black);
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  border: 3px solid var(--white);
  position: relative;
  transition: transform 0.2s ease;
}
.tier:hover { transform: translateY(-4px); }
.tier__qty {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 8px;
}
.tier__price {
  font-size: 40px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.tier__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tier--highlight .tier__label { color: var(--red); }
.tier--best {
  background: var(--red);
  color: var(--white);
  border-color: var(--white);
}
.tier--best .tier__qty,
.tier--best .tier__price,
.tier--best .tier__label { color: var(--white); }
.tier__best-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.bulk__note {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 32px auto 0;
}

@media (min-width: 600px) {
  .tiers { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .bulk { padding: 120px 0; }
  .tiers { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* ---------- ORDER FORM ---------- */
.order-form {
  background: var(--red);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.order-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.order-form__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.form {
  background: var(--white);
  color: var(--text);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 3px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
}
.form__hp { display: none; }
.form__row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.form__field { display: flex; flex-direction: column; }
.form__field label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--black);
}
.form__field label span[aria-hidden] { color: var(--red); }
.form__optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-size: 11px;
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,26,199,0.15);
}
.form__field textarea { resize: vertical; }
.form__disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

@media (min-width: 700px) {
  .form { padding: 48px 40px; }
  .form__row { grid-template-columns: 1fr 1fr; }
  .form__field--full { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
  .order-form { padding: 120px 0; }
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--gray);
  padding: 64px 0;
}
.faq__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.faq__grid {
  display: grid;
  gap: 24px;
}
.faq__item {
  background: var(--white);
  padding: 28px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  border-left-width: 6px;
  border-left-color: var(--red);
}
.faq__item h3 {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--black);
}
.faq__item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .faq { padding: 100px 0; }
  .faq__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 0;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px 48px;
  display: grid;
  gap: 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__monogram {
  width: 56px;
  height: auto;
}
.footer__tagline {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}
.footer__contact p {
  font-size: 14px;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.8);
}
.footer__contact a:hover { color: var(--white); text-decoration: underline; }
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 42px;
  height: 42px;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: background 0.15s ease, color 0.15s ease;
}
.footer__social a:hover { background: var(--white); color: var(--black); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}
