/* ============================================================
   FighterStrong — Global Styles
   Design: Black scaffold, white text, bold type, pill buttons
   ============================================================ */

:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #aaaaaa;
  --gray-dark: #222222;
  --gray-mid: #444444;
  --radius-pill: 999px;
  --radius-card: 12px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1100px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { color: var(--gray); font-size: 1.05rem; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 100px 0; }

/* ── Nav ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--white);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; color: var(--black) !important; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); }
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ── Store Badges ─────────────────────────────────────────── */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.2s, transform 0.1s;
}
.store-badge:hover { opacity: 0.88; transform: translateY(-1px); }
.store-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge .badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge .badge-sub { font-size: 0.7rem; font-weight: 500; opacity: 0.65; }
.store-badge .badge-main { font-size: 1rem; font-weight: 800; }
.store-badge-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.store-badge-outline:hover { border-color: var(--white); }
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 180px 0 120px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid var(--gray-mid);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}
.hero h1 {
  max-width: 820px;
  margin: 0 auto 28px;
}
.hero h1 span { color: var(--gray); }
.hero p {
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1.15rem;
  line-height: 1.7;
}
.hero .store-badges { justify-content: center; margin-bottom: 60px; }
.hero-scroll-hint {
  color: var(--gray-mid);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Section Headers ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 540px; margin: 0 auto; }

/* ── Value Props ─────────────────────────────────────────── */
.value-props { background: var(--black); }
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.prop-card {
  background: var(--gray-dark);
  border-radius: var(--radius-card);
  padding: 36px 32px;
}
.prop-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}
.prop-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.prop-card p { font-size: 0.95rem; }

/* ── How It Works ────────────────────────────────────────── */
.how-it-works { border-top: 1px solid var(--gray-dark); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.step {
  padding: 40px 32px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 40%;
  width: 1px;
  background: var(--gray-dark);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step p { font-size: 0.9rem; }

/* ── Program Overview ────────────────────────────────────── */
.program { background: var(--gray-dark); }
.program-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.program-content h2 { margin-bottom: 20px; }
.program-content p { margin-bottom: 20px; }
.program-schedule {
  background: var(--black);
  border-radius: var(--radius-card);
  padding: 32px;
}
.schedule-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row .day-label { font-weight: 700; font-size: 0.9rem; }
.schedule-row .sets {
  display: flex;
  gap: 8px;
}
.set-chip {
  background: var(--gray-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.set-chip.rest {
  background: transparent;
  border: 1px solid var(--gray-mid);
  color: var(--gray);
}

/* ── Pricing ─────────────────────────────────────────────── */
.pricing { border-top: 1px solid var(--gray-dark); }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 740px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--gray-dark);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  border: 1px solid transparent;
}
.pricing-card.featured {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.pricing-card.featured p { color: rgba(0,0,0,0.6); }
.pricing-card.featured .price-note { color: rgba(0,0,0,0.5); }
.plan-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.pricing-card.featured .plan-name { color: rgba(0,0,0,0.5); }
.price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.price-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 28px;
}
.feature-list {
  list-style: none;
  margin-bottom: 32px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--gray);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-card.featured .feature-list li { color: rgba(0,0,0,0.65); border-color: rgba(0,0,0,0.08); }
.feature-list li:last-child { border-bottom: none; }
.feature-list .check { color: var(--white); font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .feature-list .check { color: var(--black); }
.btn-dark {
  background: var(--black);
  color: var(--white);
}

/* ── CTA ─────────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  border-top: 1px solid var(--gray-dark);
  padding: 120px 0;
}
.cta-section h2 { margin-bottom: 20px; }
.cta-section p { max-width: 480px; margin: 0 auto 48px; font-size: 1.05rem; }
.cta-section .store-badges { justify-content: center; }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--gray-dark);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: -0.02em; }
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.8rem; color: var(--gray-mid); }

/* ── Legal Pages ─────────────────────────────────────────── */
.legal-page {
  padding: 140px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}
.legal-page h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.legal-meta {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-dark);
}
.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 48px;
  margin-bottom: 14px;
}
.legal-page p, .legal-page li { color: var(--gray); line-height: 1.8; margin-bottom: 14px; }
.legal-page ul, .legal-page ol { padding-left: 24px; }
.legal-page a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.legal-page strong { color: var(--white); }
.legal-page hr { border: none; border-top: 1px solid var(--gray-dark); margin: 40px 0; }

/* ── Support Page ────────────────────────────────────────── */
.support-page {
  padding: 140px 0 80px;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}
.support-sidebar h2 { font-size: 1.1rem; margin-bottom: 16px; }
.support-sidebar p { font-size: 0.9rem; }
.contact-box {
  background: var(--gray-dark);
  border-radius: var(--radius-card);
  padding: 28px;
  margin-top: 24px;
}
.contact-box .contact-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.contact-box a { font-weight: 700; font-size: 0.95rem; }
.faq-list { }
.faq-item {
  border-bottom: 1px solid var(--gray-dark);
  padding: 28px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-q { font-weight: 700; font-size: 1rem; margin-bottom: 10px; color: var(--white); }
.faq-a { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .hero { padding: 140px 0 80px; }

  .nav-links { display: none; }

  .program-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }

  .step:not(:last-child)::after { display: none; }
  .steps { gap: 1px; background: var(--gray-dark); }
  .step { background: var(--black); }

  .support-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .store-badges { flex-direction: column; align-items: center; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
}
