:root {
  --bg: #fffdf9;
  --ink: #111119;
  --muted: #5e5b68;
  --purple: #6d35f2;
  --purple-dark: #4f20c7;
  --yellow: #ffe55b;
  --soft: #f6f0ff;
  --soft-2: #fff7df;
  --line: #e8e3f2;
  --dark: #07051d;
  --green: #1fb15c;
  --shadow: 0 24px 70px rgba(29, 16, 72, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}
img, svg { max-width: 100%; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 76px 0; }
.soft-bg { background: linear-gradient(135deg, #fffaf0 0%, #f7f2ff 100%); }
.dark-section { background: radial-gradient(circle at 20% 10%, #211050, var(--dark) 58%); color: #fff; }

.site-header {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand { display: inline-flex; gap: 10px; align-items: center; font-weight: 900; text-transform: uppercase; text-decoration: none; line-height: 0.92; letter-spacing: -0.04em; }
.brand-icon { width: 38px; height: 38px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 12px; color: var(--purple); box-shadow: 4px 4px 0 var(--yellow); }
.header-note { font-family: Kalam, cursive; font-size: 22px; font-weight: 700; }

.eyebrow { color: var(--purple); text-transform: uppercase; letter-spacing: .06em; font-size: 12px; font-weight: 900; margin: 0 0 18px; }
h1, h2, h3 { letter-spacing: -0.055em; line-height: 0.98; margin: 0; }
h1 { font-size: clamp(46px, 7.2vw, 86px); font-weight: 900; }
h2 { font-size: clamp(34px, 4vw, 54px); font-weight: 900; }
h3 { font-size: 20px; font-weight: 850; }
h1 span, h2 span { color: var(--purple); }
.hero h1 span { display: block; font-family: Kalam, cursive; font-size: .78em; color: var(--purple); text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 9px; text-underline-offset: -1px; }
p { color: var(--muted); }
strong { color: var(--ink); }
.dark-section p, .dark-section small { color: rgba(255,255,255,.75); }
.dark-section h2 span { color: var(--yellow); }

.hero { padding-top: 40px; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 58px; align-items: center; }
.hero-lede { font-size: 20px; max-width: 530px; margin: 26px 0; }
.optin-form { display: grid; gap: 12px; max-width: 430px; }
.optin-form input {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 16px 18px; font: inherit; outline: none; transition: .2s;
}
.optin-form input:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(109,53,242,.12); }
button, .button {
  border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: #fff; font-weight: 900; text-decoration: none;
  padding: 17px 24px; border-radius: 10px; box-shadow: 0 12px 24px rgba(109,53,242,.24); transition: transform .2s, box-shadow .2s;
}
button:hover, .button:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(109,53,242,.31); }
button:disabled { opacity: .72; cursor: wait; }
.privacy, .tiny { font-size: 13px; margin: 4px 0 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.hero-art { display: flex;flex-direction: column;align-items: center;gap: 32px; }
.course-box {width: 100%;max-width: 320px;min-height: 34px;padding: 34px;border-radius: 14px;background: linear-gradient(145deg, #05030d, #1d1245);color: #fff;box-shadow: var(--shadow);border-left: 12px solid #0e0a20;}
.course-box small { text-transform: uppercase; font-weight: 800; color: #fff; opacity: .8; }
.course-box strong { display: block; margin: 18px 0; color: #fff; text-transform: uppercase; font-size: 44px; line-height: .94; letter-spacing: -.06em; }
.course-box strong::first-line { color: #fff; }
.course-box p { color: rgba(255,255,255,.82); font-weight: 700; }
.course-box .envelope { position: absolute; right: 28px; top: 28px; color: var(--yellow); font-size: 32px; }
.module-card {width: 100%;max-width: 400px;background: #fff;padding: 30px;border-radius: 18px;box-shadow: var(--shadow);}
.module-card ol { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; counter-reset: module; }
.module-card li { counter-increment: module; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 13px; font-weight: 700; color: var(--muted); }
.module-card li:before { content: counter(module); display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 10px; background: var(--purple); color: #fff; border-radius: 50%; font-size: 11px; }
.sticky-note {width: 100%;max-width: 350px;background: #fff4ba;padding: 24px;border-radius: 10px;transform: rotate(-3deg);box-shadow: var(--shadow);font-family: Kalam, cursive;font-weight: 700;}
.sticky-note p { margin: 5px 0; color: #17131f; }

.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.align-top { align-items: start; }
.blank-doc { background: #17131f; border-radius: 20px; padding: 14px; box-shadow: var(--shadow); min-height: 305px; }
.blank-doc .doc-top { display: flex; gap: 6px; margin-bottom: 14px; }
.blank-doc .doc-top span { width: 10px; height: 10px; background: #d6d2dc; border-radius: 50%; }
.blank-doc p { background: #fff; margin: 0; padding: 20px 20px 8px; color: #aaa; }
.blank-doc .cursor { background: #fff; min-height: 230px; padding: 20px; position: relative; }
.blank-doc .cursor:before { content: ''; width: 3px; height: 30px; background: #111; position: absolute; left: 24px; top: 24px; animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }

.idea-map { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center; }
.idea-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 12px; display: grid; gap: 8px; box-shadow: 0 10px 25px rgba(29,16,72,.06); }
.idea-card strong { font-size: 13px; }
.email-node { grid-column: 1 / -1; justify-self: center; width: 88px; height: 70px; display: grid; place-items: center; border: 3px solid var(--purple); border-radius: 18px; font-size: 42px; color: var(--purple); background: #fff; margin-top: 14px; }
.idea-map p { grid-column: 1 / -1; font-family: Kalam, cursive; font-size: 22px; color: var(--ink); margin: 0; background: linear-gradient(transparent 58%, rgba(109,53,242,.18) 0); display: inline; }

.sizzle-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.line-laptop { position: relative; min-height: 310px; }
.screen { width: 330px; height: 210px; border: 4px solid rgba(255,255,255,.86); border-radius: 18px; display: grid; place-items: center; font-size: 82px; color: var(--yellow); }
.base { width: 390px; height: 26px; border: 4px solid rgba(255,255,255,.86); border-radius: 4px 4px 22px 22px; margin-left: -30px; }
.mug { position: absolute; left: 0; bottom: 4px; transform: translateX(-20px); border: 3px solid rgba(255,255,255,.86); border-radius: 10px; padding: 12px; color: #fff; font-size: 12px; text-transform: uppercase; font-weight: 900; }
.benefit-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 34px 0; }
.benefit-row div { border-left: 1px solid rgba(255,255,255,.22); padding-left: 18px; }
.benefit-row strong { color: #fff; display: block; line-height: 1.2; }
.benefit-row small { display: block; margin-top: 5px; }

.section-heading { text-align: center; margin-bottom: 36px; }
.card-grid { display: grid; gap: 18px; }
.card-grid.six { grid-template-columns: repeat(6, 1fr); }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 18px; min-height: 250px; box-shadow: 0 10px 25px rgba(29,16,72,.06); }
.info-card span { display: block; font-size: 32px; margin-bottom: 18px; }
.info-card p { font-size: 14px; margin-bottom: 0; }

.bonus-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 54px; align-items: center; }
.prompt-pad { background: #fff; width: 270px; min-height: 320px; border: 2px solid var(--ink); border-radius: 18px; padding: 26px; box-shadow: 12px 12px 0 rgba(109,53,242,.18); transform: rotate(-4deg); }
.prompt-pad strong { display: block; text-transform: uppercase; font-size: 25px; line-height: 1.05; margin-bottom: 28px; }
.prompt-pad ul { padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; list-style: none; }
.prompt-pad li { border: 1px solid var(--line); border-radius: 8px; padding: 9px; color: var(--green); font-weight: 900; }
.check-list, .green-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 10px; }
.check-list li:before { content: '✓'; color: var(--purple); font-weight: 900; margin-right: 10px; }
.green-list li:before { content: '✓'; display: inline-grid; place-items: center; width: 19px; height: 19px; background: var(--green); color: #fff; border-radius: 50%; font-size: 12px; margin-right: 10px; }

.fit-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 40px; align-items: center; }
.mascot-card { background: linear-gradient(135deg, #fff, #fff8d9); border: 1px solid var(--line); border-radius: 26px; padding: 38px; box-shadow: var(--shadow); text-align: center; }
.mascot { font-size: 92px; }
mark { background: var(--yellow); padding: 0 4px; }

.optin-strip { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 30px; box-shadow: var(--shadow); }
.horizontal { max-width: none; grid-template-columns: 1fr 1fr auto; align-items: center; }

.site-footer { padding: 32px 0; border-top: 1px solid var(--line); }
.site-footer p { margin: 0; font-size: 14px; }

.thank-you-page { background: radial-gradient(circle at top right, #f2e9ff, #fffdf9 38%); }
.thank-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: stretch; }
.thank-card, .services-card { background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 42px; box-shadow: var(--shadow); }
.success-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-size: 30px; font-weight: 900; margin-bottom: 22px; }
.thank-card h1 { font-size: clamp(38px, 4.4vw, 64px); }
blockquote { margin: 28px 0; padding: 24px; border-left: 6px solid var(--purple); background: var(--soft); border-radius: 14px; font-family: Kalam, cursive; font-size: 25px; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0; }
.service-list div { border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.service-list span { color: var(--purple); font-size: 26px; display: block; margin-bottom: 8px; }
.service-list strong { display: block; }
.service-list small { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 980px) {
  .hero-grid, .split-grid, .sizzle-grid, .bonus-grid, .fit-grid, .optin-strip, .thank-grid { grid-template-columns: 1fr; }
  .card-grid.six { grid-template-columns: repeat(2, 1fr); }
  .benefit-row { grid-template-columns: repeat(2, 1fr); }
  .horizontal { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container, .site-header { width: min(100% - 26px, 1120px); }
  .section-pad { padding: 54px 0; }
  .header-note { display: none; }
  .hero-art { min-height: auto; display: grid; gap: 18px; }
  .course-box, .module-card, .sticky-note { position: static; width: 100%; transform: none; }
  .idea-map, .card-grid.six, .service-list, .benefit-row { grid-template-columns: 1fr; }
  .prompt-pad { width: 100%; transform: none; }
  .line-laptop { min-height: 240px; }
  .screen { width: 100%; }
  .base { width: 100%; margin-left: 0; }
  h1 { font-size: 46px; }
  h2 { font-size: 35px; }
  .thank-card, .services-card { padding: 28px; }
}
