/* accelerator.css - Accelerator program page layout
 * Owns: hero, two-column layout, reg card, tier toggle, schedule, outcomes
 * Does NOT own: nav, footer, buttons, shared tokens (styles.css)
 */

/* ── Hero ─────────────────────────────────────────────────────── */
.acc-hero {
  background: var(--fg);
  color: #fff;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.acc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(45,80,22,0.4) 0%, transparent 65%);
  pointer-events: none;
}

.acc-hero-inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

.acc-hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.acc-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: #fff;
  margin-bottom: 20px;
  max-width: 700px;
}

.acc-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.acc-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.acc-stat {
  display: flex;
  flex-direction: column;
}

.acc-stat-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.acc-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.acc-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.acc-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* ── Main two-column layout ───────────────────────────────────── */
.acc-body {
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

/* ── Left column ──────────────────────────────────────────────── */
.acc-content section {
  margin-bottom: 60px;
}

.acc-content section:last-child {
  margin-bottom: 0;
}

.acc-section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.acc-content h2 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--fg);
}

.acc-content p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

/* Schedule */
.acc-schedule {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.acc-day {
  display: flex;
  gap: 16px;
  padding: 14px 16px;
  background: var(--bg-deep);
  border-radius: 8px;
  align-items: flex-start;
}

.acc-day-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--fg);
  min-width: 72px;
  padding-top: 2px;
}

.acc-day-detail {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Outcomes */
.acc-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.acc-outcome {
  background: var(--bg-deep);
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Who this is for */
.acc-who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.acc-who-list li {
  padding: 12px 16px;
  background: var(--bg-deep);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
  position: relative;
  padding-left: 36px;
}

.acc-who-list li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 12px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

/* About Andre */
.acc-about {
  background: var(--bg-deep);
  border-radius: 12px;
  padding: 28px;
}

.acc-about h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.acc-about p {
  font-size: 0.88rem;
}

/* ── Right column - sticky reg card ──────────────────────────── */
.acc-sidebar {
  position: sticky;
  top: 80px;
}

.acc-reg-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.acc-reg-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--fg);
}

.acc-reg-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Tier tabs */
.tier-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  background: var(--bg-deep);
  border-radius: 10px;
  padding: 4px;
}

.tier-tab {
  flex: 1;
  padding: 8px 10px;
  border: none;
  background: transparent;
  border-radius: 7px;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-align: center;
}

.tier-tab.active {
  background: #fff;
  color: var(--fg);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Tier form panels */
.tier-form {
  display: none;
}

.tier-form.active {
  display: block;
}

/* Pricing */
.acc-price {
  margin-bottom: 16px;
}

.acc-price-amount {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.acc-price-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.acc-price-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.acc-price-features li {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.acc-price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Form fields */
.acc-field {
  margin-bottom: 12px;
}

.acc-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}

.acc-field input {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--fg);
  background: var(--bg);
  transition: border-color 0.15s;
  outline: none;
}

.acc-field input:focus {
  border-color: var(--accent);
}

.acc-submit-btn {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.3px;
}

.acc-submit-btn:hover:not(:disabled) {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45,80,22,0.25);
}

.acc-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.acc-form-error {
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 8px;
}

.acc-thanks {
  text-align: center;
  padding: 24px 0;
}

.acc-thanks-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.acc-thanks h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.acc-thanks p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.acc-reg-footer {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.55;
}

/* ── CTA Section ──────────────────────────────────────────────── */
.acc-cta-section {
  background: var(--accent);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}

.acc-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.acc-cta-section h2 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 16px;
}

.acc-cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  font-size: 1rem;
}

.acc-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--accent);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-ghost-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 11px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.btn-ghost-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ── Gumroad CTA Card ────────────────────────────────────────── */
.acc-gumroad-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.acc-gumroad-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--fg);
}

.acc-gumroad-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.acc-gumroad-tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.acc-gumroad-tier {
  padding: 14px 16px;
  background: var(--bg-deep);
  border-radius: 10px;
  border: 1.5px solid transparent;
  transition: border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.acc-gumroad-tier:hover {
  border-color: rgba(139, 111, 71, 0.4);
  box-shadow: 0 2px 12px rgba(139, 111, 71, 0.12);
}

.acc-gumroad-tier.is-premium:hover {
  border-color: rgba(45, 80, 22, 0.4);
  box-shadow: 0 2px 12px rgba(45, 80, 22, 0.12);
}

.acc-tier-premium {
  border-color: var(--gold);
}

.acc-tier-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.acc-tier-name {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--fg);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.acc-tier-price {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
}

.acc-tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.acc-tier-features li {
  font-size: 0.78rem;
  color: var(--fg-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.acc-tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.7rem;
}

.acc-tier-premium .acc-tier-features li::before {
  color: var(--gold);
}

/* Gold Get Access button */
.acc-gumroad-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gold, #C8922A);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(200, 146, 42, 0.35);
  margin-bottom: 14px;
}

.acc-gumroad-btn:hover {
  background: #B58022;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(200, 146, 42, 0.45);
}

.acc-gumroad-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(200, 146, 42, 0.3);
}

.acc-gumroad-btn-premium {
  background: #2D5016;
  box-shadow: 0 4px 14px rgba(45, 80, 22, 0.35);
}

.acc-gumroad-btn-premium:hover {
  background: #234012;
  box-shadow: 0 6px 18px rgba(45, 80, 22, 0.45);
}

.acc-gumroad-btn-premium:active {
  box-shadow: 0 2px 8px rgba(45, 80, 22, 0.3);
}

.acc-gumroad-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .acc-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .acc-sidebar {
    position: static;
  }

  .acc-outcomes {
    grid-template-columns: 1fr;
  }

  .acc-hero-stats {
    gap: 20px;
  }
}
