/* ============================================
   DOLCEACADEMY — LANDING PAGE STYLES
   Y2K editorial · scrapbook · beginner-friendly
   ============================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- TOKENS ---------- */
:root {
  --bubble: #FF7FB8;
  --bubble-deep: #F13B93;
  --pastel: #FFD6E7;
  --pastel-2: #FFE6EF;
  --lavender: #D9CBFF;
  --lavender-2: #EDE6FF;
  --blue: #B8DEFF;
  --blue-2: #DFEEFF;
  --butter: #FFE99A;
  --butter-2: #FFF3C4;
  --cream: #FBF7F0;
  --paper: #FFFBF3;
  --mint: #C8F0D8;
  --ink: #1A1220;
  --ink-2: #3B2A44;
  --line: #1A1220;

  --f-display: 'Bricolage Grotesque', 'Archivo Black', system-ui, sans-serif;
  --f-black: 'Archivo Black', 'Bricolage Grotesque', sans-serif;
  --f-serif: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --f-hand: 'Caveat', 'Kalam', cursive;
  --f-marker: 'Kalam', 'Caveat', cursive;
  --f-body: 'Inter', system-ui, sans-serif;

  --shadow-hard: 4px 4px 0 var(--ink);
  --shadow-hard-lg: 8px 8px 0 var(--ink);
  --radius: 18px;
  --radius-sm: 10px;
}

/* ---------- BASE TYPE ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; }
p { max-width: 60ch; }

.hand { font-family: var(--f-hand); font-weight: 700; letter-spacing: 0; }
.serif-i { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.marker { font-family: var(--f-marker); font-weight: 700; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { position: relative; padding: 80px 0; }
@media (min-width: 768px) { section { padding: 120px 0; } }

/* ---------- SHARED PATTERNS ---------- */
.checker {
  background-image:
    linear-gradient(45deg, var(--pastel) 25%, transparent 25%),
    linear-gradient(-45deg, var(--pastel) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--pastel) 75%),
    linear-gradient(-45deg, transparent 75%, var(--pastel) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}
.iridescent {
  background: linear-gradient(135deg, #FFD6E7 0%, #D9CBFF 25%, #B8DEFF 50%, #C8F0D8 75%, #FFE99A 100%);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--f-black);
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-hard);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-pink { background: var(--bubble); color: var(--ink); }
.btn-yellow { background: var(--butter); color: var(--ink); }
.btn-cream { background: var(--paper); color: var(--ink); }
.btn-lav { background: var(--lavender); color: var(--ink); }
.btn-blue { background: var(--blue); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }

.btn-lg { padding: 20px 32px; font-size: 17px; }
.btn-sm { padding: 12px 18px; font-size: 13px; }

.btn .arrow { font-family: var(--f-black); font-size: 1.1em; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--ink);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-family: var(--f-serif);
  font-size: 22px;
  font-style: italic;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo .bow { font-family: var(--f-body); font-style: normal; }
.nav-links { display: none; gap: 24px; font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--bubble-deep); }
@media (min-width: 900px) { .nav-links { display: flex; } }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, var(--pastel-2) 0%, transparent 45%),
              radial-gradient(circle at 85% 30%, var(--lavender-2) 0%, transparent 45%),
              radial-gradient(circle at 50% 90%, var(--butter-2) 0%, transparent 50%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; gap: 60px; }
  .hero { padding-top: 60px; padding-bottom: 100px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--butter);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--f-black);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.eyebrow .dot { width: 8px; height: 8px; background: var(--bubble-deep); border-radius: 50%; border: 1.5px solid var(--ink); }

.hero h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(46px, 9vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 22px 0 18px;
}
.hero h1 .line-serif { font-family: var(--f-serif); font-style: italic; font-weight: 400; }
.hero h1 .highlight {
  background: var(--butter);
  padding: 0 8px;
  box-shadow: 0 4px 0 rgba(0,0,0,.06) inset;
  display: inline-block;
  transform: rotate(-1.2deg);
}
.hero h1 .bow { font-family: var(--f-body); font-weight: 400; display: inline-block; transform: rotate(6deg) translateY(-4px); }

.hero-sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 52ch;
  margin-bottom: 30px;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }
@media (min-width: 700px) { .hero-sub { font-size: 19px; } }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-reassure {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
}
.hero-reassure span { display: inline-flex; align-items: center; gap: 6px; }
.hero-reassure span::before { content: '✓'; color: var(--bubble-deep); font-weight: 900; }

/* Hero mockup collage */
.hero-collage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.collage-item { position: absolute; }
.collage-item.b1 { top: 4%; left: 2%; width: 52%; transform: rotate(-6deg); z-index: 3; }
.collage-item.b2 { top: 2%; right: 0%; width: 46%; transform: rotate(5deg); z-index: 2; }
.collage-item.b3 { bottom: 4%; left: 6%; width: 46%; transform: rotate(4deg); z-index: 4; }
.collage-item.b4 { bottom: 2%; right: 2%; width: 52%; transform: rotate(-4deg); z-index: 3; }
.collage-sticker {
  position: absolute;
  z-index: 5;
  font-family: var(--f-hand);
  font-size: 22px;
  font-weight: 700;
  padding: 10px 16px;
  background: var(--butter);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-8deg);
}
.collage-sticker.s1 { top: -2%; right: 30%; background: var(--bubble); }
.collage-sticker.s2 { bottom: 30%; left: -6%; background: var(--lavender); transform: rotate(10deg); }
.hero-heart {
  position: absolute;
  font-size: 42px;
  color: var(--bubble-deep);
  z-index: 6;
}
.hero-heart.h1 { top: 30%; right: -4%; transform: rotate(20deg); }
.hero-heart.h2 { bottom: 18%; right: 42%; font-size: 28px; color: var(--lavender); }

/* ---------- PRODUCT COVER (used everywhere) ---------- */
.cover {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  border: 2.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cover-emoji { font-size: 40px; margin-bottom: 8px; }
.cover-tag {
  font-family: var(--f-black);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  opacity: 0.7;
}
.cover-title {
  font-family: var(--f-serif);
  font-size: clamp(20px, 4vw, 28px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: auto;
}
.cover-sub {
  font-family: var(--f-body);
  font-size: 11px;
  line-height: 1.4;
  color: var(--ink-2);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1.5px dashed var(--ink);
}
.cover-brand {
  margin-top: 12px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
}
.cover-brand::before { content: '🎀 '; font-style: normal; }
.cover.c-pink { background: var(--pastel); }
.cover.c-lav { background: var(--lavender-2); }
.cover.c-blue { background: var(--blue-2); }
.cover.c-butter { background: var(--butter-2); }
.cover.c-mint { background: var(--mint); }
.cover .deco { position: absolute; }
.cover .deco.d-star { top: 12px; right: 14px; font-size: 22px; }
.cover .deco.d-heart { bottom: 60px; right: 14px; font-size: 18px; color: var(--bubble-deep); }

/* Polaroid wrap */
.polaroid {
  background: var(--paper);
  padding: 14px 14px 50px;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  position: relative;
}
.polaroid::after {
  content: attr(data-caption);
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  text-align: center;
  font-family: var(--f-hand);
  font-size: 20px;
  font-weight: 700;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-eyebrow {
  display: inline-block;
  font-family: var(--f-black);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bubble-deep);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section-title .serif-i { font-weight: 400; }
.section-lede {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 58ch;
}
@media (min-width: 700px) { .section-lede { font-size: 19px; } }

/* ============================================
   PROBLEM — Side-Hustle Rabbit Hole
   ============================================ */
.problem { background: var(--pastel-2); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 900px) { .problem-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.rabbit-hole {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto;
}
.rh-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--f-black);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--ink);
}
.rh-step .n {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid; place-items: center;
  font-size: 12px;
}
.rh-step:nth-child(odd) { background: var(--butter); transform: rotate(-1.5deg); margin-left: -10px; }
.rh-step:nth-child(even) { background: var(--lavender); transform: rotate(1.5deg); margin-right: -10px; }
.rh-arrow { text-align: center; font-family: var(--f-black); font-size: 22px; margin: -4px 0; }

.rabbit-callout {
  margin-top: 30px;
  padding: 20px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-1deg);
}
.rabbit-callout p { font-family: var(--f-serif); font-style: italic; font-size: 20px; line-height: 1.3; }

/* ============================================
   1000+ VIDEOS DIFFERENTIATOR
   ============================================ */
.diff { background: var(--ink); color: var(--paper); overflow: hidden; }
.diff-title {
  font-family: var(--f-black);
  font-size: clamp(48px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: center;
  text-transform: uppercase;
}
.diff-title .pink { color: var(--bubble); }
.diff-title .yellow { color: var(--butter); }
.diff-title .lav { color: var(--lavender); }
.diff-sub {
  text-align: center;
  max-width: 60ch;
  margin: 30px auto 0;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
}
.diff-roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 40px auto 0;
}
@media (min-width: 700px) { .diff-roles { grid-template-columns: repeat(4, 1fr); } }
.role-pill {
  padding: 14px 12px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--f-black);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid var(--paper);
}
.role-pill.strike { background: transparent; color: rgba(255,255,255,0.4); text-decoration: line-through; border-color: rgba(255,255,255,0.2); }

.tally-tape {
  margin-top: 50px;
  padding: 14px 0;
  background: var(--bubble);
  color: var(--ink);
  overflow: hidden;
  border-top: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  white-space: nowrap;
}
.tally-tape .marquee {
  display: inline-flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  font-family: var(--f-black);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tally-tape .marquee span::after { content: ' 🎀'; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================
   CHOOSE YOUR PATH
   ============================================ */
.paths { background: var(--cream); }
.paths-header { text-align: center; margin-bottom: 60px; }
.paths-header .section-lede { margin: 20px auto 0; }
.path-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 800px) { .path-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.path-card {
  padding: 30px 26px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.path-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.path-card:nth-child(1) { background: var(--pastel); }
.path-card:nth-child(2) { background: var(--butter-2); }
.path-card:nth-child(3) { background: var(--lavender-2); }
@media (min-width: 800px) {
  .path-card:nth-child(1) { transform: rotate(-1.5deg); }
  .path-card:nth-child(2) { transform: rotate(1deg); margin-top: 20px; }
  .path-card:nth-child(3) { transform: rotate(-0.5deg); }
  .path-card:hover { transform: translate(-3px, -3px) rotate(0); }
}
.path-icon { font-size: 46px; }
.path-tag {
  font-family: var(--f-black);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bubble-deep);
}
.path-name {
  font-family: var(--f-display);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.path-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.3;
  padding: 12px 0;
  border-top: 1.5px dashed var(--ink);
  border-bottom: 1.5px dashed var(--ink);
}
.path-arrow {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-black);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.path-arrow .go { width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; font-size: 18px; }

.still-unsure {
  margin-top: 60px;
  padding: 30px;
  background: var(--paper);
  border: 2px dashed var(--ink);
  border-radius: var(--radius);
  text-align: center;
}
.still-unsure h3 {
  font-family: var(--f-display);
  font-size: 26px;
  margin-bottom: 8px;
}
.still-unsure p { margin: 0 auto 20px; font-family: var(--f-serif); font-style: italic; font-size: 18px; }

/* ============================================
   PRODUCT SHOWCASE
   ============================================ */
.showcase-header { text-align: center; margin-bottom: 60px; }
.showcase-header .section-lede { margin: 20px auto 0; }

.product-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 800px) { .product-strip { grid-template-columns: repeat(4, 1fr); } }

/* ============================================
   PRODUCT DEEP-DIVE SECTION
   ============================================ */
.product-deep {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.product-deep + .product-deep { border-top: none; }
.product-deep.p-digital { background: var(--pastel-2); }
.product-deep.p-tiktok { background: var(--butter-2); }
.product-deep.p-faceless { background: var(--lavender-2); }
.product-deep.p-foundation { background: var(--blue-2); }

.pd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 900px) { .pd-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
.product-deep:nth-child(even) .pd-media { order: 2; }
@media (max-width: 899px) { .product-deep:nth-child(even) .pd-media { order: 0; } }

.pd-media {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}
.pd-media .tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 120px;
  height: 26px;
  background: rgba(255, 233, 154, 0.85);
  border: 1px dashed rgba(0,0,0,0.2);
  z-index: 5;
}

.pd-eyebrow {
  display: inline-block;
  font-family: var(--f-black);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  margin-bottom: 16px;
}
.pd-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.pd-title .serif-i { font-weight: 400; }
.pd-title .under { background: var(--butter); padding: 0 6px; display: inline-block; transform: rotate(-1deg); }
.pd-transform {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 42ch;
}
.pd-body { font-size: 16px; color: var(--ink-2); margin-bottom: 22px; }

.framework {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 24px 0;
}
.framework .fw-step {
  padding: 8px 14px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-family: var(--f-black);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 var(--ink);
}
.framework .fw-arrow { display: grid; place-items: center; font-family: var(--f-black); font-size: 14px; padding: 0 2px; }

.pd-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 26px 0;
}
@media (min-width: 500px) { .pd-columns { grid-template-columns: 1fr 1fr; } }
.pd-col h4 {
  font-family: var(--f-black);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--bubble-deep);
}
.pd-col ul li {
  font-size: 14px;
  padding: 4px 0 4px 20px;
  position: relative;
  color: var(--ink-2);
}
.pd-col ul li::before {
  content: '✿';
  position: absolute;
  left: 0;
  color: var(--bubble-deep);
  font-size: 12px;
}
.pd-col.check ul li::before { content: '✓'; font-weight: 900; color: var(--ink); }

/* ============================================
   FOR YOU IF — checklist
   ============================================ */
.for-you { background: var(--cream); }
.for-you-inner {
  max-width: 780px;
  margin: 0 auto;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 40px 30px;
  position: relative;
  transform: rotate(-0.5deg);
}
@media (min-width: 700px) { .for-you-inner { padding: 60px 60px; } }
.for-you-inner::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0; bottom: 0;
  width: 1.5px;
  background: repeating-linear-gradient(to bottom, #FF9EC7 0, #FF9EC7 6px, transparent 6px, transparent 12px);
}
.for-you-inner::after {
  content: '';
  position: absolute;
  top: -18px;
  right: 40px;
  width: 100px;
  height: 32px;
  background: var(--butter);
  border: 1.5px dashed rgba(0,0,0,0.2);
  transform: rotate(4deg);
}
.for-you-header { padding-left: 30px; margin-bottom: 30px; }
.for-you h2 { font-size: clamp(30px, 5vw, 50px); }
.for-you-list { padding-left: 30px; display: grid; gap: 14px; }
.for-you-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0,0,0,0.15);
}
.for-you-list li:last-child { border-bottom: none; }
.for-you-list .check {
  width: 26px; height: 26px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--butter);
  display: grid; place-items: center;
  font-family: var(--f-black);
  font-size: 14px;
  flex-shrink: 0;
  transform: rotate(-4deg);
}
.for-you-list li:nth-child(2n) .check { background: var(--bubble); }
.for-you-list li:nth-child(3n) .check { background: var(--lavender); transform: rotate(3deg); }
.for-you-list li:nth-child(4n) .check { background: var(--blue); }

/* ============================================
   NOT / YES section
   ============================================ */
.notyes { background: var(--ink); color: var(--paper); }
.notyes h2 { color: var(--paper); text-align: center; margin-bottom: 60px; font-size: clamp(36px, 6vw, 68px); }
.notyes h2 .cross { color: var(--bubble); }
.notyes h2 .check-text { color: var(--butter); }
.notyes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 800px) { .notyes-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.notyes-col {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--paper);
  border-radius: var(--radius);
  padding: 30px;
}
.notyes-col h3 {
  font-family: var(--f-black);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.notyes-col.no h3 { color: var(--bubble-deep); }
.notyes-col.yes h3 { color: var(--ink); }
.notyes-col.yes { background: var(--pastel); }
.notyes-col ul li {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px dashed rgba(0,0,0,0.15);
}
.notyes-col ul li:last-child { border-bottom: none; }
.notyes-col.no ul li { text-decoration: line-through; text-decoration-color: rgba(0,0,0,0.4); color: var(--ink-2); }
.notyes-col ul li .em { flex-shrink: 0; font-size: 20px; }

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--pastel-2); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.faq-q .plus {
  width: 30px; height: 30px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--butter);
  display: grid; place-items: center;
  font-family: var(--f-black);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 24px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
}
.faq-a p { padding: 0 0 22px; max-width: none; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--bubble); }

/* ============================================
   FINAL CTA
   ============================================ */
.final {
  background: linear-gradient(180deg, var(--pastel) 0%, var(--lavender-2) 55%, var(--blue-2) 100%);
  text-align: center;
  overflow: hidden;
}
.final .container { position: relative; }
.final h2 {
  font-size: clamp(48px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}
.final h2 .serif-i { font-weight: 400; }
.final h2 .bow { font-family: var(--f-body); font-weight: 400; display: inline-block; transform: rotate(6deg); }
.final-copy {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 auto 32px;
}
.final-copy .em { font-family: var(--f-serif); font-style: italic; color: var(--ink); }

.final-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 60px; }

.final-mockups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
}
@media (min-width: 800px) { .final-mockups { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.final-mockups .cover-wrap:nth-child(1) { transform: rotate(-4deg); }
.final-mockups .cover-wrap:nth-child(2) { transform: rotate(2deg); margin-top: 18px; }
.final-mockups .cover-wrap:nth-child(3) { transform: rotate(-2deg); }
.final-mockups .cover-wrap:nth-child(4) { transform: rotate(3deg); margin-top: 18px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 50px 0 100px;
  text-align: center;
}
.footer-logo {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 30px;
  margin-bottom: 10px;
}
.footer p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0 auto 20px; }
.footer .disclaimer {
  max-width: 620px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--paper);
  border-top: 2px solid var(--ink);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  transition: transform .3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-text {
  flex: 1;
  min-width: 0;
}
.sticky-cta-text .k { display: block; font-family: var(--f-serif); font-style: italic; font-size: 14px; line-height: 1.1; }
.sticky-cta-text .v { display: block; font-family: var(--f-black); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bubble-deep); }
.sticky-cta .btn { padding: 12px 18px; font-size: 12px; }
@media (min-width: 900px) { .sticky-cta { display: none; } }
@media (max-width: 899px) { body.has-sticky { padding-bottom: 84px; } }

/* ============================================
   MISC HELPERS
   ============================================ */
.cursor-arrow {
  position: absolute;
  font-family: var(--f-body);
  font-size: 24px;
  color: var(--ink);
  transform: rotate(-8deg);
}
.spark { position: absolute; font-size: 24px; z-index: 2; pointer-events: none; }

/* Browser window motif */
.browser {
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--pastel);
  border-bottom: 2px solid var(--ink);
}
.browser-bar .dot { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid var(--ink); }
.browser-bar .r { background: #FF6B6B; }
.browser-bar .y { background: var(--butter); }
.browser-bar .g { background: var(--mint); }
.browser-bar .url {
  flex: 1;
  margin-left: 12px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--ink-2);
}

/* utility */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-lg { margin-top: 60px; }

/* Hover on FAQ */
.faq-q:hover { background: var(--pastel-2); }
