/* ════════════════════════════════
   HIRO NINJA — Athlete Trainer LP Styles
   (ninaja athlete trainer.html)
════════════════════════════════ */

:root {
  --black: #080808;
  --dark: #0f0f0f;
  --card: #131313;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --white: #f0f0f0;
  --muted: #777;
  --red: #e03131;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  padding-bottom: 88px;
}

/* ─── FIXED CTA ─── */
.fixed-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,0.25);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.fixed-bar-copy {
  font-size: 13px;
  color: var(--muted);
  display: none;
}

@media (min-width: 520px) { .fixed-bar-copy { display: block; } }

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #000;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 34px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(201,168,76,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 32px rgba(201,168,76,0.6);
}

.btn-lg {
  font-size: 17px;
  padding: 17px 52px;
  box-shadow: 0 0 36px rgba(201,168,76,0.45);
}

.btn-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 48px rgba(201,168,76,0.65);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 15%, rgba(201,168,76,0.09) 0%, transparent 65%),
    linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 72px;
  background: linear-gradient(180deg, transparent, var(--gold));
}

.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(38px, 9vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
}

.grad {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.hero-meta { margin-top: 22px; font-size: 13px; color: #4a4a4a; }

/* ─── STAT STRIP ─── */
.stats {
  background: var(--dark);
  border-top: 1px solid #181818;
  border-bottom: 1px solid #181818;
  padding: 36px 24px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  text-align: center;
}

.stat { flex: 1; min-width: 110px; }

.stat-n {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-d {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ─── SECTIONS ─── */
section { padding: 88px 24px; }
.container { max-width: 900px; margin: 0 auto; }

.label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.title {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 16px;
}

.lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.75;
}

/* ─── FOR WHOM ─── */
.for-whom { background: var(--dark); }

.whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.whom-card {
  background: var(--card);
  border: 1px solid #1e1e1e;
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 26px 22px;
}

.whom-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--gold-light); }
.whom-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── TIMELINE ─── */
.timeline-list { display: grid; gap: 0; }

.tl-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #1a1a1a;
  align-items: start;
}

.tl-item:last-child { border-bottom: none; }

.tl-phase {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 4px;
}

.tl-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 6px;
}

.tl-duration { font-size: 12px; color: var(--muted); text-align: right; }

.tl-content h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }

.tl-content ul { list-style: none; display: grid; gap: 7px; }

.tl-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.tl-content ul li::before {
  content: "→";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── BIG PROOF ─── */
.proof { background: var(--dark); text-align: center; }

.proof-number {
  font-size: clamp(72px, 18vw, 160px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-label { font-size: clamp(18px, 4vw, 30px); font-weight: 700; margin-top: 8px; margin-bottom: 16px; }

.proof-desc { font-size: 16px; color: var(--muted); max-width: 480px; margin: 0 auto; line-height: 1.7; }

/* ─── PRICING ─── */
.price-wrap { max-width: 560px; margin: 0 auto; }

.price-card {
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 44px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.price-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.price-lbl { font-size: 13px; color: var(--muted); margin-bottom: 4px; }

.price-amt {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-amt sup { font-size: 26px; font-weight: 400; vertical-align: super; }
.price-amt sub { font-size: 20px; font-weight: 400; }

.price-sub { font-size: 13px; color: var(--muted); margin: 10px 0 34px; }

.price-list { list-style: none; text-align: left; margin-bottom: 16px; }

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #1e1e1e;
  font-size: 15px;
  line-height: 1.5;
}

.price-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-note {
  font-size: 12px;
  color: var(--muted);
  text-align: left;
  line-height: 1.9;
  margin-bottom: 34px;
}

/* ─── FAQ ─── */
.faq-grid { display: grid; gap: 14px; }

.faq-card {
  background: var(--card);
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  padding: 26px 24px;
}

.faq-q { font-size: 16px; font-weight: 700; color: var(--gold-light); margin-bottom: 10px; }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── FINALE ─── */
.finale {
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 70%),
    var(--black);
}

.finale h2 { font-size: clamp(30px, 6vw, 54px); font-weight: 900; line-height: 1.1; margin-bottom: 18px; }
.finale p { font-size: 17px; color: var(--muted); margin-bottom: 42px; line-height: 1.75; }
.finale-note { margin-top: 22px; font-size: 13px; color: #444; }

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #222, transparent);
}

/* ─── IMAGE PLACEHOLDERS ─── */
.hero-img-placeholder {
  position: absolute !important;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(201,168,76,0.2);
  font-size: 12px;
  color: rgba(201,168,76,0.4);
  letter-spacing: 0.08em;
  pointer-events: none;
  z-index: 0 !important;
  text-align: center;
}

.proof-img-frame {
  max-width: 380px;
  height: 260px;
  margin: 44px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.03);
  border-radius: 8px;
  font-size: 13px;
  color: rgba(201,168,76,0.45);
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.8;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  body { padding-bottom: 76px; }
  section { padding: 56px 20px; }
  .hero { padding: 76px 20px 52px; }
  .lead { margin-bottom: 36px; }
  .stats { padding: 24px 16px; }
  .stats-inner { gap: 16px; }
  .stat-n { font-size: 30px; }
  .whom-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .price-card { padding: 32px 20px; }
  .price-amt { font-size: 48px; }
  .price-list li { font-size: 14px; }
  .btn-lg {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 15px;
  }
  .faq-card { padding: 20px 18px; }
  .finale p br { display: none; }
  .fixed-bar { padding: 10px 16px; }
  .guidelines { padding: 20px 16px; border-radius: 8px; width: 80%; margin-left: auto; margin-right: auto; }
  .guidelines-title { font-size: 12px; }
  .guidelines-list li { font-size: 12px; }
}

@media (max-width: 480px) {
  .tl-item { grid-template-columns: 1fr; gap: 12px; }
  .tl-phase { align-items: flex-start; }
  .tl-duration { text-align: left; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .process-step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .step-circle { flex-shrink: 0; margin: 0; }
  .process-step h3,
  .process-step p { text-align: left; }
}

/* ── GUIDELINES ── */
.guidelines {
  margin-top: 32px;
  background: var(--card);
  border: 1px solid #2a2a2a;
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 28px 32px;
  max-width: 560px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.guidelines-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.guidelines-list {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guidelines-list li {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: break-word;
}
