@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap');

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

:root {
  --yellow: #f5c518;
  --dark: #191818;
  --dark2: #111;
  --dark3: #0a0a0a;
  --border: #222;
  --text: #fff;
  --muted: #aaa;
  --muted2: #ccc;
  --red: #ff0000;
  --step-max: 760px;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

html { scroll-behavior: smooth; }

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
  line-height: 1.25;
}

/* ─── CLARITY ─── */
/* injected per-page */

/* ─── LOGO ─── */
.logo { width: 100px; height: auto; display: block; }

/* ─── HERO / HEADER ─── */
.site-header {
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.site-header .tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ─── LANDING PAGE HERO ─── */
.hero {
  padding: 60px 24px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
}

.hero h1 span { color: var(--yellow); }

.hero .subtext {
  color: var(--muted2);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ─── FORM CONTAINER ─── */
.form-container {
  max-width: 480px;
  margin: 0 auto 20px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

/* ─── BENEFIT BOXES ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 50px auto 0;
  padding: 0 24px;
}

.benefit-box {
  background: linear-gradient(145deg, var(--dark2), var(--dark3));
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.benefit-box h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--yellow);
}

.benefit-box ul { list-style: none; }

.benefit-box li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
  color: var(--muted2);
  font-size: 0.95rem;
}

.benefit-box li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 12px;
  top: 2px;
}

/* ─── STEP NAV STRIP ─── */
.step-nav {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  text-align: center;
}

.step-nav .steps-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
}

.step-nav .steps-list li a {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.step-nav .steps-list li a:hover,
.step-nav .steps-list li.active a {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}

/* ─── STEP PAGE LAYOUT ─── */
.step-page {
  max-width: var(--step-max);
  margin: 0 auto;
  padding: 50px 24px 80px;
}

.step-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.step-page h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 14px;
}

.step-page .step-intro {
  color: var(--muted2);
  font-size: 1.05rem;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

/* SUPPORT BOX */
.support-box {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  text-align: center;
  margin-top: 48px;
}
.support-box h3 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 10px;
}
.support-box p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
}
.support-box a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
.support-box a:hover { text-decoration: underline; }

/* START HERE BOX */
.start-here {
  background: #1a1900;
  border: 1px solid var(--yellow);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 40px;
}
.start-here h3 {
  font-size: 18px;
  color: var(--yellow);
  margin-bottom: 12px;
}
.start-here p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 0;
}


/* ─── FATIUS SAYS CALLOUT ─── */
.fatius-says {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, #1a1500, #110e00);
  border: 1px solid #3a2f00;
  border-left: 4px solid var(--yellow);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 32px 0;
}

.fatius-says .cat-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.fatius-says .says-text {
  font-size: 0.97rem;
  color: #e8d88a;
  font-style: italic;
  line-height: 1.6;
}

.fatius-says .says-text strong {
  font-style: normal;
  color: var(--yellow);
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── ACTION BOX ─── */
.action-box {
  background: linear-gradient(135deg, #001a08, #000f05);
  border: 1px solid #0d3318;
  border-left: 4px solid #22c55e;
  border-radius: 10px;
  padding: 24px 26px;
  margin: 28px 0;
}

.action-box .action-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #22c55e;
  margin-bottom: 8px;
}

.action-box p {
  font-size: 1rem;
  color: #c6f0d4;
  margin-bottom: 14px;
}

.action-box p:last-child { margin-bottom: 0; }

/* ─── CONTENT BLOCKS ─── */
.content-block {
  margin: 28px 0;
}

.content-block h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--text);
}

.content-block h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--yellow);
}

.content-block p {
  color: var(--muted2);
  margin-bottom: 14px;
}

.content-block ul {
  list-style: none;
  margin: 10px 0;
}

.content-block ul li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: var(--muted2);
}

.content-block ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

/* ─── TOOL CARD GRID ─── */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.tool-card {
  background: linear-gradient(145deg, var(--dark2), var(--dark3));
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: block;
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  border-color: var(--yellow);
}

.tool-card .tool-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 4px;
}

.tool-card .tool-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.tool-card .tool-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  background: rgba(245,197,24,0.12);
  color: var(--yellow);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
}

/* ─── PROMPT BOX ─── */
.prompt-box {
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px 22px;
  margin: 20px 0;
  position: relative;
}

.prompt-box .prompt-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.prompt-box pre {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #ffffff;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.6;
}

.copy-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.5px;
}

.copy-btn:hover {
  background: var(--yellow);
  color: #000;
}


/* ---- ROADMAP --- */
.roadmap-block {
  background: linear-gradient(135deg, #111, #0a0a0a);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: 10px;
  padding: 24px 26px;
  margin: 28px 0 36px;
}
.roadmap-block .roadmap-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.roadmap-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.roadmap-row:last-child { border-bottom: none; }
.roadmap-emoji { font-size: 1.2rem; flex-shrink: 0; line-height: 1.5; }
.roadmap-text { font-size: 0.93rem; color: var(--muted2); line-height: 1.5; }
.roadmap-text strong { color: var(--text); font-weight: 600; }

/* ---- TOOL CALLOUT --- */
.tool-callout {
  background: linear-gradient(135deg, #0a0f1a, #060c14);
  border: 1px solid #1a2a44;
  border-left: 4px solid #3b82f6;
  border-radius: 10px;
  padding: 18px 22px;
  margin: 20px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.tool-callout .tool-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.tool-callout .tool-body { font-size: 0.93rem; color: #a8c4e8; line-height: 1.6; }
.tool-callout .tool-body strong { color: #93c5fd; display: block; margin-bottom: 4px; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; }
.tool-callout .tool-body a { color: #60a5fa; }

.warn-inline {
  background: rgba(245,197,24,0.07);
  border-left: 3px solid var(--yellow);
  border-radius: 6px;
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 0.93rem;
  color: #e8d88a;
  line-height: 1.6;
}


/* ---- INTERACTIVE CHECKLIST --- */
.checklist-interactive { list-style: none; margin: 16px 0; }
.checklist-interactive li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--muted2);
  transition: color 0.2s;
  user-select: none;
}
.checklist-interactive li:last-child { border-bottom: none; }
.checklist-interactive li.checked { color: #4ade80; text-decoration: line-through; opacity: 0.6; }
.checklist-interactive li .check-box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.2s;
}
.checklist-interactive li.checked .check-box {
  background: #22c55e;
  border-color: #22c55e;
  color: #000;
  font-weight: 700;
}
.checklist-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  font-style: italic;
}


/* ─── UPSELL TEASE ─── */
.upsell-tease {
  background: linear-gradient(135deg, #0f0800, #1a1000);
  border: 1px solid #3d2c00;
  border-radius: 12px;
  padding: 26px 28px;
  margin: 40px 0 0;
  text-align: center;
}

.upsell-tease .upsell-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.upsell-tease h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

.upsell-tease p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--yellow);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  border-radius: 8px;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.35);
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: var(--yellow);
  color: #000;
}

.btn-next {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px;
  background: var(--yellow);
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
  border-radius: 10px;
  margin-top: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245,197,24,0.4);
}

.yt-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
  border-radius: 999px;
  font-size: 1.05rem;
  transition: all 0.25s ease;
  box-shadow: 0 10px 28px rgba(255,0,0,0.3);
}

.yt-button:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 40px rgba(255,0,0,0.5);
}

/* ─── PROGRESS BAR ─── */
.progress-bar-wrap {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
}

.progress-bar-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.progress-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 99px;
  transition: width 0.4s ease;
}

.progress-label {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

/* ─── SECTION DIVIDER ─── */
hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

/* ─── FOOTER ─── */
.footer {
  text-align: center;
  padding: 30px 20px;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

/* ─── THANK YOU PAGE ─── */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.thank-you-page .logo { margin: 0 auto 30px; }

.thank-you-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.thank-you-page h1 span { color: var(--yellow); }

.thank-you-page p {
  color: var(--muted2);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ─── PREPARING PAGE ─── */
.preparing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.spinner {
  margin: 24px auto;
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--yellow);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

/* ─── FINAL PAGE ─── */
.final-checklist {
  list-style: none;
  margin: 20px 0 30px;
}

.final-checklist li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--muted2);
  font-size: 0.97rem;
}

.final-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.paid-offer-box {
  background: linear-gradient(135deg, #0f0800, #1a1200);
  border: 1px solid #4a3500;
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
  margin: 50px 0;
}

.paid-offer-box .offer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.paid-offer-box h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 16px;
}

.paid-offer-box p {
  color: var(--muted2);
  max-width: 500px;
  margin: 0 auto 28px;
  font-size: 1rem;
  line-height: 1.7;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; padding: 0 16px; }
  .tool-grid { grid-template-columns: 1fr; }
  .step-nav .steps-list { gap: 4px; }
  .step-nav .steps-list li a { font-size: 11px; padding: 4px 9px; }
  .hero { padding: 40px 20px 30px; }
  .step-page { padding: 36px 20px 60px; }
  .paid-offer-box { padding: 28px 20px; }
}
