/* ========================================================================
   De Idea a Negocio en un Día — Landing v2
   ========================================================================
   Visual system notes:
   - Plus Jakarta Sans for display + body. JetBrains Mono for code/prompts.
   - Dark sections: #170B38 with subtle dot/line grid + radial purple/yellow
     glows. Hairlines at rgba(255,255,255,0.08).
   - Light sections: #FAFBFF with hairline borders rgba(80,40,160,0.10),
     soft purple shadows.
   - CTAs: yellow #FFD41F → text #3D1F85, only for purchase intent.
   - Accent purple #7C52EA → labels, icons, links, hover borders.
   - Orange #F98D21 → urgency / price badge only.
   - Yellow highlight bar behind one word in hero, matching the brand logo.
   ====================================================================== */

:root {
  /* Brand */
  --bg-dark:        #170B38;
  --bg-dark-2:      #0D0620;
  --bg-light:       #FAFBFF;
  --bg-light-2:     #F5F3FF;
  --bg-card:        #FFFFFF;

  --accent:         #7C52EA;
  --accent-dim:     #5E3BC4;
  --accent-soft:    #C4AEFF;
  --accent-yellow:  #FFD41F;
  --accent-orange:  #F98D21;
  --color-deep:     #3D1F85;

  --text:           #160C33;
  --text-muted:     #5A5870;
  --text-on-dark:   #EDE8FF;
  --text-on-dark-2: rgba(237,232,255,0.62);

  --line-dark:      rgba(255,255,255,0.08);
  --line-dark-2:    rgba(255,255,255,0.14);
  --line-light:     rgba(80,40,160,0.10);
  --line-light-2:   rgba(124,82,234,0.28);

  /* Type */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, monospace;
  --font-script: 'Caveat', 'Plus Jakarta Sans', cursive;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ── Layout primitives ─────────────────────────────────────────────────── */
.wrap {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.wrap--narrow { width: min(960px, 100%); }

section { position: relative; }

.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-light { background: var(--bg-light); color: var(--text); }
.section-tint { background: var(--bg-light-2); color: var(--text); }

.section-pad { padding-block: clamp(72px, 9vw, 112px); }

/* Universal grid backdrop for dark sections */
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}

/* ── Eyebrow / section header ──────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-5);
}
.section-dark .eyebrow { color: var(--accent-soft); }
.eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.section-title {
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
  text-wrap: balance;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-muted);
  max-width: 58ch;
  line-height: 1.6;
  text-wrap: pretty;
}
.section-dark .section-sub { color: var(--text-on-dark-2); }

/* ── Nav ───────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(23, 11, 56, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-on-dark);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}
.nav__brand-mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 30% 30%, #FFD41F 0%, #F5B100 100%);
  display: grid; place-items: center;
  color: var(--color-deep);
  font-weight: 800;
  font-size: 12px;
  box-shadow:
    0 0 0 1px rgba(255,212,31,0.35),
    0 4px 14px rgba(255,212,31,0.25);
}
.nav__brand-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-on-dark-2);
  margin-left: 4px;
  border-left: 1px solid var(--line-dark);
  padding-left: 10px;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-yellow);
  color: var(--color-deep);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px 8px 14px;
  border-radius: 8px;
  letter-spacing: -0.005em;
  transition: transform 0.14s var(--ease-spring), box-shadow 0.18s, background 0.18s;
  box-shadow:
    0 0 0 1px rgba(255,212,31,0.4),
    0 6px 18px rgba(255,212,31,0.18);
}
.nav__cta:hover { background: #FFE15B; transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(255,212,31,0.55), 0 10px 24px rgba(255,212,31,0.32); }
.nav__cta-price {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(61,31,133,0.12);
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: none;
  transition: transform 0.14s var(--ease-spring), box-shadow 0.18s, background 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent-yellow);
  color: var(--color-deep);
  box-shadow:
    0 0 0 1px rgba(255,212,31,0.55),
    0 8px 24px rgba(255,212,31,0.22),
    inset 0 -2px 0 rgba(61,31,133,0.18);
}
.btn--primary:hover {
  background: #FFE15B;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,212,31,0.7),
    0 14px 36px rgba(255,212,31,0.35),
    inset 0 -2px 0 rgba(61,31,133,0.18);
}
.btn--primary:active { transform: translateY(0); }
.btn--primary--glow {
  box-shadow:
    0 0 0 1px rgba(255,212,31,0.55),
    0 10px 30px rgba(255,212,31,0.28),
    inset 0 -2px 0 rgba(61,31,133,0.18);
}
.btn--ghost-light {
  background: rgba(255,255,255,0.04);
  color: var(--text-on-dark);
  border: 1px solid var(--line-dark-2);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.30); }
.btn--ghost-dark {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--line-light);
}
.btn--ghost-dark:hover { border-color: var(--line-light-2); transform: translateY(-1px); }

/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(124,82,234,0.32) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(255,212,31,0.10) 0%, transparent 60%),
    var(--bg-dark);
  color: var(--text-on-dark);
  overflow: hidden;
  padding-block: clamp(64px, 8vw, 96px) clamp(72px, 9vw, 120px);
  border-bottom: 1px solid var(--line-dark);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-soft);
  padding: 6px 12px 6px 8px;
  background: rgba(124,82,234,0.10);
  border: 1px solid rgba(124,82,234,0.28);
  border-radius: 100px;
  margin-bottom: var(--space-6);
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-yellow);
  box-shadow: 0 0 12px var(--accent-yellow);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero__title {
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: var(--space-5);
}
.hero__title-hl {
  position: relative;
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--color-deep);
  padding: 0 14px 4px;
  border-radius: 4px;
  font-style: normal;
  transform: rotate(-1.5deg);
  margin-inline: 4px;
}
.hero__title-hl::after {
  content: '';
  position: absolute;
  left: -18px; top: 50%;
  width: 14px; height: 14px;
  border: 2.5px solid var(--accent);
  border-right: none;
  border-bottom: none;
  transform: translateY(-100%) rotate(35deg);
}

.hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-on-dark);
  opacity: 0.78;
  max-width: 50ch;
  margin-bottom: var(--space-7);
  line-height: 1.55;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: var(--space-5);
}

.hero__compat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-on-dark-2);
  flex-wrap: wrap;
}
.hero__compat-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

/* ── Hero visual — product showcase ────────────────────────────────────── */
.hero__visual {
  position: relative;
  height: clamp(420px, 50vw, 580px);
  perspective: 1600px;
}
@media (max-width: 920px) {
  .hero__visual { height: 480px; }
}

/* Main "guide cover" card */
.guide-card {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(280px, 28vw, 360px);
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124,82,234,0.45) 0%, transparent 60%),
    linear-gradient(180deg, #1F1346 0%, #0D0620 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(124,82,234,0.20),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translate(-50%, -50%) rotate(-4deg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  z-index: 3;
  transition: transform 0.6s var(--ease);
}
.hero__visual:hover .guide-card { transform: translate(-50%, -50%) rotate(-2deg) translateY(-6px); }

.guide-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 28px;
}
.guide-card__corner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.guide-card__corner::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-yellow);
}
.guide-card__title {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 8px;
}
.guide-card__title-hl {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--color-deep);
  padding: 0 6px 2px;
  border-radius: 3px;
}
.guide-card__divider {
  width: 36px; height: 2px;
  background: var(--accent);
  margin: 18px 0 12px;
}
.guide-card__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-on-dark-2);
  line-height: 1.6;
}
.guide-card__meta strong { color: #fff; font-weight: 500; }

.guide-card__bottom {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-on-dark-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.guide-card__author { color: #fff; font-weight: 500; }
.guide-card__version {
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid var(--line-dark-2);
  border-radius: 3px;
  letter-spacing: 0.06em;
}

/* Floating prompt cards */
.prompt-float {
  position: absolute;
  background: rgba(13,6,32,0.85);
  border: 1px solid var(--line-dark-2);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-on-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 20px 50px -10px rgba(0,0,0,0.5),
    0 0 0 1px rgba(124,82,234,0.10);
  width: 240px;
  z-index: 2;
}
.prompt-float__head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 6px;
  font-weight: 500;
}
.prompt-float__head::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}
.prompt-float__body {
  color: var(--text-on-dark);
  opacity: 0.85;
}
.prompt-float__body .var { color: var(--accent-yellow); }

.prompt-float--a {
  top: 8%;
  left: -6%;
  transform: rotate(-6deg);
  animation: float-a 7s ease-in-out infinite;
}
.prompt-float--b {
  top: 50%;
  right: -8%;
  transform: rotate(5deg);
  animation: float-b 8s ease-in-out infinite;
  width: 220px;
}
.prompt-float--c {
  bottom: 4%;
  left: 4%;
  transform: rotate(3deg);
  animation: float-c 9s ease-in-out infinite;
  width: 200px;
}
@keyframes float-a { 0%,100% { transform: rotate(-6deg) translateY(0); } 50% { transform: rotate(-5deg) translateY(-10px); } }
@keyframes float-b { 0%,100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-8px); } }
@keyframes float-c { 0%,100% { transform: rotate(3deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-6px); } }

/* Timeline strip below hero visual */
.hero__timeline {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,6,32,0.85);
  border: 1px solid var(--line-dark-2);
  border-radius: 100px;
  padding: 7px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-on-dark);
  white-space: nowrap;
  z-index: 4;
  backdrop-filter: blur(8px);
}
.hero__timeline-dot {
  width: 5px; height: 5px;
  background: var(--accent-yellow);
  border-radius: 50%;
}
.hero__timeline-bar {
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-yellow));
  border-radius: 2px;
}

@media (max-width: 920px) {
  .prompt-float--a { left: 2%; top: 4%; }
  .prompt-float--b { right: 2%; }
  .prompt-float--c { left: 6%; bottom: 8%; }
}
@media (max-width: 540px) {
  .prompt-float--a, .prompt-float--c { display: none; }
  .prompt-float--b { right: -4%; top: 40%; }
  .guide-card { width: 250px; }
}

/* ── Stat band ─────────────────────────────────────────────────────────── */
.stat-band {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stat-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: clamp(28px, 4vw, 44px);
  gap: 0;
}
@media (max-width: 720px) {
  .stat-band__grid { grid-template-columns: repeat(2, 1fr); }
}
.stat-cell {
  padding: 12px 18px;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-cell:last-child { border-right: none; }
@media (max-width: 720px) {
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); padding-bottom: 24px; }
  .stat-cell:nth-child(n+3) { padding-top: 24px; }
}
.stat-cell__head {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-cell__num {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  font-feature-settings: 'tnum';
}
.stat-cell__num em { color: var(--accent-yellow); font-style: normal; }
.stat-cell__unit {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-soft);
  margin-left: 2px;
}
.stat-cell__label {
  font-size: 13px;
  color: var(--text-on-dark-2);
  line-height: 1.4;
  margin-top: 4px;
}

/* ── Pain cards ────────────────────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}
@media (max-width: 880px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-light-2);
  box-shadow: 0 24px 48px -16px rgba(124,82,234,0.20);
}
.pain-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: var(--space-4);
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pain-card__num::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.pain-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
  color: var(--text);
}
.pain-card__body {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.pain-card__glyph {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--accent);
  opacity: 0.18;
}

/* ── Solution split ────────────────────────────────────────────────────── */
.sol-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-8);
  align-items: start;
}
@media (max-width: 920px) { .sol-split { grid-template-columns: 1fr; gap: 56px; } }

.sol-list { display: grid; gap: var(--space-4); }
.sol-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-4);
  padding: 20px 4px;
  border-bottom: 1px dashed var(--line-light);
}
.sol-row:last-child { border-bottom: none; }
.sol-row__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(124,82,234,0.10), rgba(124,82,234,0.04));
  border: 1px solid var(--line-light-2);
  display: grid; place-items: center;
  color: var(--accent);
}
.sol-row__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.sol-row__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Prompt console — solution side */
.prompt-console {
  position: relative;
  background: var(--bg-dark);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-dark-2);
  box-shadow:
    0 30px 80px -20px rgba(80,40,160,0.45),
    0 0 0 1px rgba(124,82,234,0.08);
  overflow: hidden;
  color: var(--text-on-dark);
}
.console__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid var(--line-dark);
}
.console__head-left { display: flex; align-items: center; gap: 8px; }
.console__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.console__dot:nth-child(1) { background: #FF5F57; }
.console__dot:nth-child(2) { background: #FEBC2E; }
.console__dot:nth-child(3) { background: #28C840; }
.console__title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-on-dark-2);
  letter-spacing: 0.06em;
}
.console__pill {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-soft);
  padding: 3px 8px;
  border: 1px solid var(--line-dark-2);
  border-radius: 100px;
}
.console__body {
  padding: 20px 18px 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
}
.console__line {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: baseline;
}
.console__num {
  color: rgba(255,255,255,0.18);
  font-size: 11px;
  text-align: right;
  user-select: none;
}
.console__text { color: var(--text-on-dark); opacity: 0.82; }
.console__kw { color: var(--accent-yellow); }
.console__var { color: var(--accent-soft); }
.console__cmt { color: rgba(255,255,255,0.32); }
.console__caret {
  display: inline-block;
  width: 8px; height: 1.05em;
  background: var(--accent-yellow);
  vertical-align: -2px;
  margin-left: 2px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.console__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.015);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-on-dark-2);
}
.console__foot-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: rgba(124,82,234,0.12);
  border-radius: 4px;
  color: var(--accent-soft);
}

/* ── Credibility ───────────────────────────────────────────────────────── */
.cred-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-8);
  align-items: start;
  margin-top: var(--space-8);
}
@media (max-width: 920px) { .cred-split { grid-template-columns: 1fr; gap: 56px; } }

.author-card {
  position: sticky;
  top: 88px;
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: var(--r-xl);
  padding: var(--space-7) var(--space-6) var(--space-6);
  text-align: center;
  box-shadow: 0 20px 60px -20px rgba(124,82,234,0.18);
  overflow: hidden;
}
@media (max-width: 920px) { .author-card { position: static; } }
.author-card::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 220px;
  background: radial-gradient(ellipse at top, rgba(124,82,234,0.16), transparent 65%);
  pointer-events: none;
}
.author-card > * { position: relative; }

.author-portrait {
  width: 128px; height: 128px;
  margin: 0 auto var(--space-4);
  position: relative;
}
.author-portrait__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 220deg, var(--accent), var(--accent-yellow), var(--accent));
  padding: 1.5px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.author-portrait__disk {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, #3D1F85 0%, #1A0D45 100%);
  display: grid; place-items: center;
  box-shadow: inset 0 -8px 24px rgba(0,0,0,0.30);
  overflow: hidden;
}
.author-portrait__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.author-portrait__disk::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 110%, rgba(23,11,56,0.45) 0%, transparent 55%);
  pointer-events: none;
}
.author-portrait__verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 28px; height: 28px;
  background: var(--accent-yellow);
  color: var(--color-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 0 0 3px var(--bg-card);
  z-index: 2;
}

.author-name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
}
.author-sig {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--accent);
  line-height: 1;
  margin: 6px 0 4px;
  transform: rotate(-3deg);
  display: inline-block;
}
.author-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}
.author-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: var(--space-4) 0;
  border-block: 1px solid var(--line-light);
  padding-block: 12px;
}
.author-stat {
  text-align: center;
  border-right: 1px solid var(--line-light);
}
.author-stat:last-child { border-right: none; }
.author-stat__num {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.author-stat__lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.author-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: var(--space-4);
}
.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--line-light);
  background: var(--bg-light);
  color: var(--text-muted);
}

.cred-body { display: grid; gap: var(--space-6); }
.cred-block__title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.cred-block__body {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 60ch;
}

/* Case study — shipped artifacts */
.case-card {
  background: linear-gradient(180deg, #1F1346 0%, #0D0620 100%);
  color: var(--text-on-dark);
  border: 1px solid var(--line-dark-2);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(124,82,234,0.30);
}
.case-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(124,82,234,0.30) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 100% 100%, rgba(255,212,31,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.case-card > * { position: relative; }
.case-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.case-card__label-tag {
  background: var(--accent-yellow);
  color: var(--color-deep);
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.case-card__url {
  color: var(--accent-soft);
  border: 1px solid var(--line-dark-2);
  padding: 2px 8px;
  border-radius: 4px;
}

.case-card__quote {
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.65;
  color: #fff;
  font-weight: 400;
  margin-bottom: var(--space-5);
  text-wrap: pretty;
}
.case-card__quote::before {
  content: '"';
  font-family: var(--font-mono);
  color: var(--accent-yellow);
  margin-right: 4px;
  font-weight: 700;
}
.case-card__quote::after {
  content: '"';
  font-family: var(--font-mono);
  color: var(--accent-yellow);
  margin-left: 2px;
  font-weight: 700;
}

.artifacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: var(--space-5);
}
@media (max-width: 720px) { .artifacts { grid-template-columns: repeat(2, 1fr); } }

.artifact {
  background: rgba(0,0,0,0.30);
  border: 1px solid var(--line-dark-2);
  border-radius: 10px;
  padding: 12px;
  position: relative;
  min-height: 110px;
  overflow: hidden;
}
.artifact__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 8px;
}
.artifact__title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.artifact__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-on-dark-2);
  margin-top: 4px;
}
.artifact__icon {
  position: absolute;
  bottom: 10px; right: 10px;
  color: var(--accent);
  opacity: 0.5;
}

.case-card__result {
  border-top: 1px solid var(--line-dark);
  padding-top: var(--space-4);
  font-size: 13px;
  color: var(--text-on-dark-2);
  line-height: 1.65;
}
.case-card__result strong { color: var(--accent-yellow); font-weight: 500; }

/* ── Includes — bento grid ─────────────────────────────────────────────── */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}
@media (max-width: 920px) { .includes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .includes-grid { grid-template-columns: 1fr; } }

.include-card {
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.include-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-light-2);
  box-shadow: 0 14px 36px -14px rgba(124,82,234,0.20);
}
.include-card--wide { grid-column: span 3; }
.include-card--mid { grid-column: span 2; }
@media (max-width: 920px) {
  .include-card--wide, .include-card--mid { grid-column: span 2; }
}
@media (max-width: 540px) {
  .include-card--wide, .include-card--mid { grid-column: span 1; }
}

.include-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: var(--space-5);
}
.include-card__index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.include-card__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(124,82,234,0.10), rgba(124,82,234,0.04));
  border: 1px solid var(--line-light-2);
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.include-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.include-card__body {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: auto;
}

/* Includes — featured prompt card */
.include-card--feature {
  grid-column: span 3;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(124,82,234,0.25) 0%, transparent 60%),
    linear-gradient(180deg, #1F1346 0%, #0D0620 100%);
  border: 1px solid var(--line-dark-2);
  color: var(--text-on-dark);
  padding: var(--space-6);
}
.include-card--feature .include-card__title { color: #fff; }
.include-card--feature .include-card__body { color: var(--text-on-dark-2); }
.include-card--feature .include-card__index { color: var(--accent-soft); }
.include-card--feature .include-card__icon {
  background: linear-gradient(145deg, rgba(124,82,234,0.30), rgba(124,82,234,0.10));
  border-color: rgba(124,82,234,0.40);
  color: var(--accent-soft);
}
.include-card--feature::after {
  content: '40+';
  position: absolute;
  bottom: -22px; right: -10px;
  font-size: 156px;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  line-height: 1;
}

@media (max-width: 920px) {
  .include-card--feature { grid-column: span 2; }
}
@media (max-width: 540px) {
  .include-card--feature { grid-column: span 1; }
}

/* Bonus */
.bonus-card {
  margin-top: var(--space-5);
  background: var(--bg-card);
  border: 1px solid rgba(249,141,33,0.30);
  border-radius: var(--r-lg);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--accent-orange);
}
.bonus-tag {
  background: var(--accent-orange);
  color: #1A0800;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}
.bonus-card__text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}
.bonus-card__text strong { color: var(--text); font-weight: 700; }
.bonus-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-orange);
  padding: 4px 10px;
  border: 1px solid rgba(249,141,33,0.30);
  border-radius: 100px;
  background: rgba(249,141,33,0.06);
}

/* ── CTA final ─────────────────────────────────────────────────────────── */
.cta-final {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124,82,234,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255,212,31,0.14) 0%, transparent 60%),
    linear-gradient(180deg, #0D0620 0%, #170B38 50%, #0D0620 100%);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-align: center;
}
.cta-final .section-title { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-final .section-title em { color: var(--accent-yellow); }
.cta-final .section-sub { margin-inline: auto; margin-bottom: var(--space-7); }
.cta-final .eyebrow { color: var(--accent-soft); margin-inline: auto; justify-content: center; }

.price-block {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-6);
  padding: 16px 22px;
  background: rgba(0,0,0,0.30);
  border: 1px solid var(--line-dark-2);
  border-radius: 100px;
}
.price-main {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.price-main small {
  font-size: 14px;
  color: var(--text-on-dark-2);
  font-weight: 500;
  letter-spacing: 0;
}
.price-old {
  font-size: 17px;
  color: rgba(196,174,255,0.42);
  text-decoration: line-through;
  text-decoration-color: rgba(196,174,255,0.42);
}
.price-tag {
  background: var(--accent-orange);
  color: #1A0800;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: 0 0 18px rgba(249,141,33,0.30);
}

.cta-trust {
  margin-top: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-on-dark-2);
}
.cta-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cta-trust__item svg { color: var(--accent-soft); }

/* ── Cheat sheet form ──────────────────────────────────────────────────── */
.cheat-wrap {
  max-width: 560px;
  margin: var(--space-8) auto 0;
}
.cheat-form {
  display: flex;
  gap: 8px;
  background: var(--bg-card);
  padding: 6px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  box-shadow: 0 14px 40px -14px rgba(124,82,234,0.18);
}
@media (max-width: 560px) {
  .cheat-form { flex-direction: column; padding: 12px; }
}
.cheat-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  border-radius: 8px;
  min-width: 0;
}
.cheat-input::placeholder { color: #9890B8; }
.cheat-input:focus { background: var(--bg-light-2); }
.cheat-form button { flex-shrink: 0; }
.cheat-note {
  margin-top: var(--space-3);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cheat-success {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--line-light-2);
  border-radius: var(--r-md);
  padding: var(--space-6);
  text-align: center;
}
.cheat-success__icon { font-size: 32px; margin-bottom: 8px; }
.cheat-success__title { font-weight: 700; color: var(--accent); margin-bottom: 6px; }
.cheat-success__body { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Cheat sheet preview — small "PDF" mockup */
.cheat-preview {
  position: relative;
  max-width: 240px;
  margin: var(--space-6) auto 0;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(180deg, #fff 0%, #F5F3FF 100%);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 18px 16px;
  box-shadow: 0 18px 50px -10px rgba(124,82,234,0.30);
  transform: rotate(-2deg);
  font-family: var(--font-mono);
  text-align: left;
  font-size: 9px;
  line-height: 1.5;
  color: var(--text-muted);
}
.cheat-preview__title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.2;
}
.cheat-preview__line {
  height: 5px;
  background: rgba(124,82,234,0.12);
  border-radius: 2px;
  margin-bottom: 4px;
}
.cheat-preview__line--short { width: 60%; }
.cheat-preview__step {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 6px;
  margin-bottom: 8px;
}
.cheat-preview__num {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 16px; height: 16px;
  display: grid; place-items: center;
  font-size: 8px;
  font-weight: 700;
}
.cheat-preview__stamp {
  position: absolute;
  bottom: 14px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--accent);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 3px 6px;
  border: 1px solid rgba(124,82,234,0.30);
  border-radius: 100px;
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.foot {
  background: var(--bg-dark-2);
  color: var(--text-on-dark-2);
  border-top: 1px solid var(--line-dark);
  padding-block: var(--space-7);
}
.foot__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}
.foot__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #fff;
}
.foot__copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(196,174,255,0.42);
  letter-spacing: 0.04em;
}
.foot__links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.foot__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent-soft);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.foot__link:hover { opacity: 1; }

/* ── Reveal animations ─────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="d1"] { transition-delay: 0.08s; }
[data-reveal="d2"] { transition-delay: 0.16s; }
[data-reveal="d3"] { transition-delay: 0.24s; }
[data-reveal="d4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
