/* Funnel landing pages — dark, full-bleed, video-first.
   No cards. Sections divided by background color and vertical breath only.
   Brand colors layered over a near-black base. */

:root {
  /* Base — near-black with a drop of warmth. Change to #000 for pure black. */
  --c-bg:        #06030B;
  --c-bg-2:      #0E0717; /* alternating section, ~5% lighter */
  --c-bg-3:      #14092A; /* deepest accent — sits between bg and purple */

  --c-purple-deep:  #4D2B8C;
  --c-purple-light: #85409D;
  --c-gold:         #EEA727;
  --c-yellow:       #FFEF5F;

  --c-text:         #F0EADB; /* warm off-white */
  --c-text-muted:   #B5AC9A; /* warm grey for secondary copy on dark — readable, no purple tint */
  --c-text-on-gold: #1F1235;

  --c-line:    rgba(255, 255, 255, 0.10);
  --c-line-2:  rgba(255, 255, 255, 0.18);

  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}

body {
  /* Subtle grain to keep the black from feeling flat. */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='1' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06  0 0 0 0 0.04  0 0 0 0 0.10  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
  background-attachment: fixed;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.app { display: block; }

/* ============ NAV (just the wordmark) ============ */
.nav {
  width: 100%;
  padding: 26px 24px;
}
.nav-inner {
  max-width: 720px;
  margin: 0 auto;
}
.brand {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.brand:hover { color: var(--c-text); }

/* ============ SECTIONS — full-bleed, no cards ============ */
.section {
  width: 100%;
  padding: 88px 0;
}
.section-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-hero    { background: var(--c-bg);    padding: 32px 0 96px; }
.section-proof   { background: var(--c-bg-2); }
.section-timeline { background: var(--c-bg); }
.section-fit     { background: var(--c-bg-2); }
.section-mirror     { background: var(--c-bg-2); }
.section-experience { background: var(--c-bg); }
.section-method     { background: var(--c-bg-2); }
.section-musab      { background: var(--c-bg-2); }
.section-pricing { background: var(--c-bg-3); }
.section-faq     { background: var(--c-bg); }
.section-quote   { background: var(--c-bg);    padding: 120px 0; }
.section-final   { background: var(--c-bg-3);  text-align: center; }
.section-install { background: var(--c-bg-2); }
.section-or      { background: var(--c-bg); }
.section-success-tg { background: var(--c-bg); }

/* ============ HERO ============ */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 24px;
}
.section-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: -0.012em;
  margin-bottom: 22px;
  color: var(--c-text);
}
.lede {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--c-text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

/* ============ VIDEO ============ */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 60px -20px rgba(133, 64, 157, 0.32);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ CTA ============ */
.cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.section-final .cta-row { align-items: center; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  background: var(--c-gold);
  color: var(--c-text-on-gold);
  font-family: inherit;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 12px 32px -10px rgba(238, 167, 39, 0.55);
}
.btn-primary:hover {
  background: var(--c-yellow);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px -10px rgba(255, 239, 95, 0.6);
}
.btn-primary[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-line-2);
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.alt-link {
  display: inline-block;
  margin-top: 4px;
  background: transparent;
  border: 0;
  padding: 6px 0;
  font-family: inherit;
  font-size: 14px;
  color: var(--c-text-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color var(--transition);
}
.alt-link:hover { color: var(--c-gold); }

/* ============ IDENTITY ROW (under hero) ============ */
.identity {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.identity .portrait {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-purple-light);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.identity .who {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-text-muted);
}
.identity .who strong { color: var(--c-text); font-weight: 600; }

/* ============ SECTION LABELS + HEADINGS ============ */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 18px;
}
.section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.008em;
  margin-bottom: 24px;
  color: var(--c-text);
  max-width: 600px;
}
.section-final h2 {
  margin-left: auto;
  margin-right: auto;
}

/* ============ PROOF (no card — just paragraphs of body copy) ============ */
.proof-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  max-width: 560px;
}
.proof-body p { margin-bottom: 16px; }
.proof-body p:last-child { margin-bottom: 0; }

/* Soft visual separation for the channel bridge line at the end of proof-body. */
.proof-body .proof-bridge {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
  color: var(--c-text-muted);
  font-size: 16px;
}

/* ============ URGENCY NOTE (subtle gold-bordered callout, while-it's-small framing) ============ */
.urgency-note {
  margin-top: 24px;
  padding: 16px 20px;
  border-left: 3px solid var(--c-gold);
  background: rgba(238, 167, 39, 0.06);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-text-muted);
  max-width: 580px;
  border-radius: 0 4px 4px 0;
}
.urgency-note strong {
  color: var(--c-text);
  font-weight: 600;
}
.urgency-note p { margin: 0; }
.section-final .urgency-note {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* ============ DELIVERABLES (community page — three numbered outcome blocks) ============ */
.deliverables {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 640px;
}
.deliverables li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.deliverable-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--c-gold);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  padding-top: 4px;
}
.deliverable-body strong {
  display: block;
  font-size: 19px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.deliverable-body p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--c-text-muted);
  margin: 0;
}

/* ============ TIMELINE (community page — week-rhythm) ============ */
.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}
.timeline-list li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.timeline-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.timeline-marker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  flex-shrink: 0;
  width: 130px;
  padding-top: 4px;
  line-height: 1.4;
}
.timeline-body {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--c-text);
}

/* ============ FIT LIST (community page — who's in here) ============ */
.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
}
.fit-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-line);
}
.fit-list li:last-child { border-bottom: 0; }
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
}

/* ============ MIRROR / METHOD BLOCKS (embark page — long-form prose sections) ============ */
.mirror-body,
.method-body {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--c-text);
  max-width: 640px;
}
.mirror-body p { margin-bottom: 18px; }
.mirror-body p:last-child { margin-bottom: 0; }
.mirror-body strong {
  color: var(--c-text);
  font-weight: 600;
}
.method-body {
  font-size: 18px;
  margin-bottom: 22px;
  max-width: 680px;
}
.method-body:last-of-type { margin-bottom: 0; }
.method-body em {
  font-style: italic;
  color: var(--c-text-muted);
}
.section-method h2 {
  margin-bottom: 36px;
  font-size: 38px;
  line-height: 1.15;
}
@media (min-width: 720px) {
  .section-method h2 {
    font-size: 46px;
  }
}

/* ============ COURSE EXPERIENCE GRID (embark page — what the course feels like) ============ */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 720px;
}
@media (min-width: 720px) {
  .experience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 48px;
  }
}
.experience-item strong {
  display: block;
  font-size: 18.5px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.experience-item p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--c-text-muted);
  margin: 0;
}

/* ============ BONUS BLOCK (embark page — the bonus list at end of deliverables) ============ */
.bonus-block {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
  max-width: 640px;
}
.bonus-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.bonus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.bonus-list li {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--c-text-muted);
  position: relative;
  padding-left: 14px;
}
.bonus-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-weight: 700;
}

/* ============ GUARANTEE CALLOUT (embark page — under pricing tiers) ============ */
.guarantee-callout {
  margin-top: 36px;
  padding: 28px 32px;
  border: 2px solid var(--c-gold);
  background: rgba(238, 167, 39, 0.06);
  border-radius: 8px;
  max-width: 720px;
  text-align: center;
}
.guarantee-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.guarantee-body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--c-text);
  margin: 0;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 720px) {
  .guarantee-label {
    font-size: 28px;
  }
}

/* ============ MUSAB INVOLVEMENT (embark page — statement-style block) ============ */
.musab-statement {
  font-size: 19px;
  line-height: 1.65;
  color: var(--c-text);
  max-width: 640px;
  margin: 0;
  position: relative;
  padding-left: 22px;
  border-left: 3px solid var(--c-gold);
}
@media (min-width: 720px) {
  .musab-statement {
    font-size: 21px;
    padding-left: 28px;
  }
}

/* ============ PRICING TIERS (membership page — two-card pricing layout) ============ */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 720px;
  margin-bottom: 40px;
}
@media (min-width: 720px) {
  .tiers {
    grid-template-columns: 1fr 1fr;
  }
}
.tier-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.tier-card-inner {
  border-color: var(--c-gold);
  background: linear-gradient(180deg, rgba(238, 167, 39, 0.06), transparent);
  box-shadow: 0 24px 60px -20px rgba(238, 167, 39, 0.18);
}
.tier-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.tier-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1;
  margin-bottom: 8px;
}
.tier-price span {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  margin-left: 4px;
  letter-spacing: normal;
}
.tier-tagline {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-top: 18px;
  margin-bottom: 6px;
  font-style: italic;
}
.tier-price-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 4px;
}
.tier-price-old {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--c-text-muted);
  text-decoration: line-through;
  line-height: 1;
}
.tier-billing {
  font-size: 13px;
  color: var(--c-text-muted);
  margin: 4px 0 0;
  font-style: italic;
}
.tier-badge {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-text-on-gold);
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 18px 0 22px;
  align-self: flex-start;
}
.tier-monthly-alt {
  font-size: 13px;
  color: var(--c-text-muted);
  text-align: center;
  margin: 12px 0 12px;
  font-style: italic;
}
.tier-divider-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 20px;
  margin-bottom: 4px;
}
.tier-features-exclusive {
  margin-top: 0 !important;
}
.tier-features-exclusive li {
  font-weight: 600;
  color: var(--c-text);
}
.tier-features-exclusive li::before {
  background: var(--c-yellow);
  width: 8px;
  height: 8px;
  top: 17px;
}
.tier-features {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}
.tier-features li {
  padding: 12px 0 12px 22px;
  position: relative;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-line);
}
.tier-features li:last-child {
  border-bottom: 0;
}
.tier-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
}
.tier-card .btn-primary {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}
.founding-note {
  margin-top: 8px;
  padding: 22px 26px;
  border-left: 3px solid var(--c-gold);
  background: rgba(238, 167, 39, 0.06);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--c-text);
  max-width: 720px;
  border-radius: 0 4px 4px 0;
}
.founding-note strong {
  color: var(--c-gold);
  font-weight: 600;
}

/* ============ FAQ (community page — Q + A blocks) ============ */
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
}
.faq-list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
}
.faq-list li:last-child { border-bottom: 0; }
.faq-q {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.faq-a {
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text-muted);
  margin: 0;
}

@media (max-width: 480px) {
  .deliverables li { gap: 16px; }
  .deliverable-num { width: 36px; font-size: 24px; }
  .timeline-list li { flex-direction: column; gap: 6px; }
  .timeline-marker { width: auto; }
}

.magnet-thumb {
  width: 140px;
  height: 198px;
  margin: 40px 0 0;
  border-radius: 4px;
  background: var(--c-purple-deep) center/cover no-repeat;
  box-shadow:
    0 28px 60px -16px rgba(0, 0, 0, 0.6),
    0 12px 30px -8px rgba(133, 64, 157, 0.42);
}

/* ============ QUOTE SECTION ============ */
.quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 110px;
  line-height: 0.6;
  color: var(--c-gold);
  margin-bottom: 28px;
  display: block;
}
.section-quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.32;
  letter-spacing: -0.005em;
  color: var(--c-text);
  margin-bottom: 24px;
  max-width: 660px;
}
.section-quote .signature {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  color: var(--c-text-muted);
}

/* ============ FINAL CTA SECTION ============ */
.section-final .lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============ FALLBACK SECTIONS (install + email-it) ============ */
.fallback-stack { display: none; }
.fallback-stack.visible { display: block; }

.install-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.install-row .btn-outline { min-width: 150px; }

/* ============ SUCCESS SECTION (Telegram tap acknowledgement) ============ */
.section-success-tg { display: none; }
.section-success-tg.visible { display: block; }

/* ============ HIDE PRIMARY CONTENT ON SUCCESS ============ */
.app.is-success .nav,
.app.is-success .section-hero,
.app.is-success .section-proof,
.app.is-success .section-quote,
.app.is-success .section-final,
.app.is-success .fallback-stack { display: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .section-hero { padding: 24px 0 64px; }
  .section-quote { padding: 80px 0; }
  .section-hero h1 { font-size: 36px; }
  .section h2 { font-size: 28px; }
  .lede { font-size: 16px; margin-bottom: 28px; }
  .quote-mark { font-size: 80px; margin-bottom: 16px; }
  .section-quote blockquote { font-size: 22px; }
  .magnet-thumb { width: 110px; height: 156px; }
  .video-wrap { margin-bottom: 28px; border-radius: 4px; }
  .btn-primary { padding: 16px 24px; font-size: 12.5px; }
}

@media (min-width: 720px) {
  .section { padding: 112px 0; }
  .section-hero { padding: 40px 0 120px; }
  .section-hero h1 { font-size: 64px; }
  .section h2 { font-size: 46px; }
  .section-quote blockquote { font-size: 34px; }
}
