/* ════════════════════════════════
   HIRO NINJA — Athlete LP Styles
   (ninja athlete.html)
════════════════════════════════ */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #181818;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --white: #f5f5f5;
  --muted: #888;
}

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

/* ── FIXED CTA ── */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

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

@media (min-width: 500px) { .fixed-cta-text { display: block; } }

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(201,168,76,0.35);
}

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

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,168,76,0.08) 0%, transparent 65%),
              linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  position: relative;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(38px, 9vw, 80px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero h1 span {
  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, 3vw, 22px);
  color: var(--muted);
  margin: 20px 0 40px;
  max-width: 520px;
}

.hero-price { font-size: 14px; color: var(--muted); }
.hero-price strong { color: var(--white); }

/* ── SECTION COMMON ── */
section { padding: 80px 24px; }

.container { max-width: 860px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── PROBLEM ── */
.problem { background: var(--dark); }

.problem-list { list-style: none; display: grid; gap: 16px; }

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  padding: 20px;
  background: var(--card);
  border-radius: 6px;
  border-left: 3px solid #333;
}

.problem-list li::before {
  content: "×";
  color: #c0392b;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid #222;
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: var(--gold); }

.feature-icon { font-size: 30px; margin-bottom: 14px; }

.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }

.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── CYCLE ── */
.cycle { background: var(--dark); }

.cycle-steps { display: flex; flex-direction: column; gap: 0; max-width: 600px; }

.cycle-step { display: flex; align-items: flex-start; gap: 20px; position: relative; }

.cycle-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 48px;
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body { padding: 6px 0 36px; }
.step-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.step-body p { font-size: 14px; color: var(--muted); }

/* ── PRICING ── */
.pricing-card {
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 12px;
  padding: 40px 36px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.pricing-card .badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.price-main { font-size: 14px; color: var(--muted); margin-bottom: 6px; }

.price-number { font-size: 52px; font-weight: 900; line-height: 1; color: var(--white); }
.price-number span { font-size: 22px; font-weight: 400; }

.price-note { font-size: 13px; color: var(--muted); margin-top: 8px; margin-bottom: 32px; }

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

.price-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #222;
  font-size: 15px;
}

.price-items li::before { content: "✓"; color: var(--gold); font-weight: 900; flex-shrink: 0; }

.price-option {
  font-size: 13px;
  color: var(--muted);
  margin-top: -24px;
  margin-bottom: 36px;
  text-align: left;
  line-height: 1.8;
}

/* ── FAQ ── */
.faq-list { list-style: none; display: grid; gap: 16px; }

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

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

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 60%);
}

.final-cta h2 { font-size: clamp(28px, 6vw, 52px); font-weight: 900; margin-bottom: 16px; }
.final-cta p { color: var(--muted); font-size: 16px; margin-bottom: 36px; }

.btn-cta-lg {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  padding: 18px 52px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 30px rgba(201,168,76,0.4);
}

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

.final-note { margin-top: 20px; font-size: 13px; color: #555; }

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

/* ── IMAGE PLACEHOLDERS ── */
.hero-img-placeholder {
  position: absolute;
  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;
  text-align: center;
}

.section-img-frame {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(201,168,76,0.25);
  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;
  margin-bottom: 40px;
}

/* ── 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: 520px;
  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;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  body { padding-bottom: 76px; }
  section { padding: 56px 20px; }
  .hero { padding: 70px 20px 50px; }
  .section-lead { margin-bottom: 32px; }
  .problem-list li { font-size: 15px; padding: 14px 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 18px; }
  .price-number { font-size: 40px; }
  .price-items li { font-size: 14px; }
  .btn-cta-lg {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
  }
  .faq-item { padding: 18px 16px; }
  .final-cta p br { display: none; }
  .fixed-cta { padding: 10px 16px; }
  .btn-cta { padding: 12px 24px; font-size: 14px; }
  .guidelines { padding: 20px 16px; border-radius: 8px; }
  .guidelines-title { font-size: 12px; }
  .guidelines-list li { font-size: 12px; }
}
