/* ================================================
   JOEL.JYS — FACE DRAWING COURSE WAITLIST
   ================================================ */

:root {
  --bg:      #F3F0EB;
  --fg:      #2D2B28;
  --fg-soft: #4A4742;
  --mid:     #7A756E;
  --light:   #9B9590;
  --faint:   #DDD8D2;
  --accent:  #F0941D;
  --accent-h:#D98318;
  --plum:    #9B7EAC;
  --white:   #FFFFFF;
  --paper:   #FAF8F5;

  --section-py: clamp(3.5rem, 7vw, 6rem);
  --container-px: max(1.5rem, 7vw);

  --sans:  'Helvetica Neue', Helvetica, Arial, sans-serif;
  --display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  color: var(--fg);
  background: var(--bg);
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.1rem);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.8rem, 3.8vw, 3.2rem); line-height: 1.15; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 1.3vw + 0.3rem, 1.25rem); }

em {
  font-style: italic;
  color: var(--plum);
}

small { font-size: 0.8em; opacity: 0.6; }


/* ── Pill Nav ── */
.pill-nav {
  width: 100%;
  display: flex; justify-content: center;
  padding: 16px var(--container-px);
  background: var(--paper);
}
.pill-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1252px;
}
.brand {
  color: var(--fg); text-decoration: none;
  font-weight: 600; font-size: 0.9rem; letter-spacing: -0.01em;
}
.nav-links { display: flex; gap: 20px; }
.nav-link {
  padding: 6px 0;
  text-decoration: none; font-size: 0.8125rem; font-weight: 500;
  color: var(--mid); transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }
.nav-link-accent { color: var(--fg); font-weight: 600; }
.nav-link-accent:hover { color: var(--fg); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0.75rem 1.25rem;
  background: var(--accent); color: var(--white);
  border: 1px solid transparent; border-radius: 0.625rem;
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  text-decoration: none; transition: background-color 0.15s ease;
  cursor: pointer;
}
.btn:hover {
  background: var(--accent-h);
}
.btn-light {
  background: var(--white); border-color: rgba(255,255,255,0.3);
  color: var(--fg);
}
.btn-light:hover {
  background: var(--bg); border-color: var(--bg);
  box-shadow: 0 12px 32px rgba(255,255,255,0.1);
}
.btn-dark {
  background: var(--fg); border-color: var(--fg);
  color: var(--white);
}
.btn-dark:hover {
  background: #1A1816;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.btn-arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
}
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ================================================
   HERO
   ================================================ */
.hero {
  background: var(--paper);
  padding: 0 var(--container-px);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-split {
  width: 100%;
  max-width: 1252px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  animation: fadeIn 0.6s cubic-bezier(.4,0,.2,1) forwards;
}
@media (min-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 5rem);
  }
}

/* ── Hero centered (VSL layout) ── */
.hero-fade {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  animation: fadeIn 0.6s cubic-bezier(.4,0,.2,1) forwards;
}

/* ── Hero left (text + CTA) ── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 960px) {
  .hero-left { text-align: left; }
}

.hero-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
}

.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 959px) {
  .hero-actions { justify-content: center; }
}

/* ── Hero right (key visual) ── */
.hero-right {
  display: flex;
  justify-content: center;
}
.hero-visual {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0px 24px 60px rgba(0,0,0,0.08), 0px 8px 20px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual span {
  font-size: 0.7rem;
  color: var(--light);
  text-align: center;
  padding: 1rem;
}

/* ── Hero text ── */
.hero-text {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  max-width: 100%;
}
.hero-title {
  margin-bottom: 0;
}
.hero-line {
  display: block;
}
.hero-title em {
  color: inherit;
}
.hero-title strong {
  font-weight: 600;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--mid); line-height: 1.7;
  max-width: 480px;
}
@media (max-width: 959px) {
  .hero-sub { max-width: 400px; margin-left: auto; margin-right: auto; }
}

.hero-cta {
  margin-top: 0.25rem;
}


/* ── Hero image (no-VSL version) ── */
.hero-image-wrap {
  width: 100%;
  max-width: 420px;
}
.hero-image-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0px 20px 50px rgba(0,0,0,0.08), 0px 6px 16px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-placeholder span {
  font-size: 0.7rem;
  color: var(--light);
}

/* ── Hero before/after ── */
.hero-ba {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
}
.hero-ba-card {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--faint);
  background: var(--white);
  box-shadow: 0 2px 20px rgba(44, 36, 32, 0.04);
  position: relative;
  transition: transform 0.2s ease;
}
.hero-ba-card:hover {
  transform: translateY(-3px);
}
.hero-ba-img {
  aspect-ratio: 3 / 4;
  background: var(--faint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ba-img span {
  font-size: 0.65rem;
  color: var(--light);
  text-align: center;
  padding: 0.5rem;
}
.hero-ba-label {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--fg);
  border-radius: 100px;
}
.hero-ba-arrow {
  flex-shrink: 0;
  color: var(--light);
}
@media (min-width: 768px) {
  .hero-ba-card { border-radius: 16px; }
}
@media (max-width: 959px) {
  .hero-ba { max-width: 480px; margin: 0 auto; gap: 0.75rem; }
}

/* ── Hero video (VSL version) ── */
.hero-video-wrap {
  width: 100%;
  max-width: 860px;
}

/* ================================================
   CAROUSEL (designspells-style marquee)
   ================================================ */
@keyframes marquee {
  0%  { transform: translate(0); }
  to  { transform: translate(-100%); }
}

.carousel {
  background: var(--paper);
  overflow: hidden;
  padding: 0.5rem 0 clamp(1.5rem, 3vw, 2.5rem);
}
.carousel-track {
  display: flex;
  width: 100vw;
  overflow: hidden;
}
.carousel-track:hover .carousel-strip {
  animation-play-state: paused;
}
.carousel-strip {
  display: flex;
  flex-shrink: 0;
  gap: 1.25rem;
  padding: 0.5rem 0.625rem;
  animation: marquee 60s linear infinite;
}
.carousel-card {
  flex-shrink: 0;
  width: calc(13rem * 16 / 9);
  height: 18rem;
  border-radius: 0.5rem;
  background: var(--faint);
  border: 1px solid rgba(214,211,209,0.1);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.carousel-card:hover {
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(155,126,172,0.4);
}
.carousel-card span {
  font-size: 0.65rem; color: var(--light);
  text-align: center; padding: 0.5rem;
}

.hero-video-placeholder {
  aspect-ratio: 2560 / 1600;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0px 20px 50px rgba(0,0,0,0.08), 0px 6px 16px rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
}
.hero-video-play {
  font-size: 2.5rem;
  color: var(--light);
}
.hero-video-placeholder p {
  font-size: 0.8rem; color: var(--light);
  font-weight: 500;
}

.hero-proof {
  font-size: 0.8rem;
  color: var(--light);
  margin-top: 0.25rem;
}

.hide-mobile { display: none; }
@media (min-width: 640px) { .hide-mobile { display: inline; } }

/* ================================================
   BEFORE / AFTER
   ================================================ */
.before-after {
  background: var(--bg);
  padding: clamp(2rem, 4vw, 4rem) 0;
}
.before-after-inner {
  max-width: 1252px; margin: 0 auto;
  padding: 0 var(--container-px);
  text-align: center;
}
.before-after-inner h2 {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.ba-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.ba-img {
  aspect-ratio: 4 / 5;
  background: var(--faint);
  display: flex; align-items: center; justify-content: center;
}
.ba-img span {
  font-size: 0.65rem; color: var(--light); text-align: center; padding: 0.5rem;
}
.ba-label {
  padding: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--paper);
  color: var(--mid);
  text-align: center;
}
.ba-after .ba-label {
  color: var(--plum);
}
@media (max-width: 480px) {
  .ba-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}


/* ================================================
   STORY
   ================================================ */
.story {
  background: var(--paper);
  padding: var(--section-py) 0;
}
.story-header {
  max-width: 1252px; margin: 0 auto;
  padding: 0 var(--container-px);
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.story-inner {
  max-width: 1252px; margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .story-inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
  }
}

.story-photos {
  display: flex;
  align-items: flex-start;
}
.story-photo {
  width: 100%;
}
.story-photo-placeholder {
  border-radius: 12px;
  border: 2px dashed var(--faint);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;

  font-size: 0.75rem; color: var(--light);
  text-align: center; padding: 1rem;
  aspect-ratio: 4/3;
}

.story-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.story-paragraphs p {
  color: var(--fg-soft);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.75;
}
.story-paragraphs strong {
  color: var(--fg);
  font-weight: 600;
}

/* ── Story callout (commented out for waitlist version) ── */
/*
.story-callout-section {
  background: var(--bg);
  padding: clamp(3rem, 6vw, 5rem) var(--container-px);
  text-align: center;
}
.callout-question {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--fg);
  font-style: italic;
}
.callout-reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.callout-illustration {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0px 20px 50px rgba(0,0,0,0.06), 0px 6px 16px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}
.callout-illustration span {
  font-size: 0.6rem; color: var(--light);
}
.callout-text {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.55;
  color: var(--fg);
}
.callout-text strong {
  font-weight: 700;
}
*/

/* ── Question → Answer → Kicker pattern ── */
.story-punchline,
.section-emphasis {
  max-width: 600px; margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.5rem) var(--container-px);
  text-align: center;
}
.punchline-question,
.punchline-answer,
.punchline-kicker {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--fg);
}
.punchline-answer {
  font-weight: 700;
  margin-top: 0.5rem;
}
.punchline-kicker {
  color: var(--mid);
  margin-top: 0.5rem;
}

.card-placeholder {
  text-align: center; color: var(--mid);
  font-size: 0.8rem; font-weight: 500; line-height: 1.6;
}

/* === WAITLIST VERSION CLEANUP === */

/* ================================================
   PROBLEM (commented out for waitlist version)
   ================================================ */
/*
.problem {
  background: var(--bg);
  padding: clamp(2rem, 4vw, 4rem) 0;
}
.problem-layout {
  max-width: 1252px; margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.problem-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
.problem-character {
  margin-top: 1.5rem;
  width: 140px;
  height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.problem-character span {
  font-size: 0.6rem; color: var(--light);
  text-align: center;
}

.problem-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .problem-layout {
    grid-template-columns: 1fr;
  }
  .problem-header { position: static; text-align: center; }
  .problem-gallery { grid-template-columns: 1fr; }
}
.problem-card {
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--faint);
}
.problem-card-img {
  aspect-ratio: 9/10;
  background: var(--faint);
  display: flex; align-items: center; justify-content: center;
}
.problem-card-img span {
  font-size: 0.7rem; color: var(--light); text-align: center;
  padding: 0.5rem;
}
.problem-card p {
  padding: 1rem 1.25rem;
  color: var(--fg-soft); font-size: 0.9rem;
  line-height: 1.6;
}
*/


/* ================================================
   METHOD
   ================================================ */
.method {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 4rem) 0;
}
.method-inner {
  max-width: 1252px; margin: 0 auto;
  padding: 0 var(--container-px);
}

/* Method bento, punchline (commented out for waitlist version) */
/*
.method-but {
  font-size: clamp(3rem, 7vw, 5rem);
  text-align: left;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.method-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.bento-card {
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0px 2px 8px rgba(0,0,0,0.04);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bento-card p {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.6;
  color: var(--fg-soft);
}
.bento-card strong {
  color: var(--fg);
  font-weight: 600;
}
.bento-card-img {
  background: var(--paper);
  border-radius: 8px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-card-img span {
  font-size: 0.6rem;
  color: var(--light);
  text-align: center;
}
.punchline-section {
  background: var(--fg);
  padding: clamp(4rem, 8vw, 7rem) var(--container-px);
  text-align: center;
}
.method-punchline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 640px) {
  .method-bento {
    grid-template-columns: 1fr;
  }
}
*/

/* ── Story flow, method steps (commented out for waitlist version) ── */
/*
.story-block {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.story-block h2 {
  max-width: 540px;
  margin: 0 auto;
}
.story-text {
  color: var(--fg-soft);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.story-visual {
  margin: 1.5rem auto;
  max-width: 400px;
}

.visual-graph {
  max-width: 300px;
  padding: 1rem 0;
}
.visual-graph svg {
  width: 100%; height: auto;
}

.method-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) {
  .method-steps {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
  }
}

.method-step {
  text-align: center;
}
.method-step-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.75rem;
}
.method-step-img {
  aspect-ratio: 4/5;
  border: 2px dashed var(--faint);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: var(--bg);
  margin-bottom: 1rem;
}
.method-step h3 { margin-bottom: 0.4rem; }
.method-step p {
  color: var(--fg-soft); font-size: 0.9rem; line-height: 1.7;
  max-width: 280px; margin: 0 auto;
}

.method-step-arrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--light);
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 599px) {
  .method-step-arrow { display: none; }
}
*/


/* ================================================
   WHO THIS IS FOR (old version removed — see waitlist version below)
   ================================================ */

/* === WAITLIST VERSION: Compact Story === */
.story-compact {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--container-px);
  text-align: center;
}
.story-compact h2 {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.story-compact p {
  color: var(--fg-soft);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.story-compact .story-for-you {
  color: var(--mid);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-style: italic;
  margin-bottom: 0;
}

/* === WAITLIST VERSION: Who This Is For === */
.for-you {
  background: var(--bg);
  padding: var(--section-py) 0;
}
.for-you-inner {
  max-width: 1252px;
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .for-you-inner {
    grid-template-columns: 2fr 3fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
  }
}
.for-you-inner h2 {
  margin: 0;
}
.for-you-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.for-you-list li {
  color: var(--fg-soft);
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  line-height: 1.5;
  padding: 0.55rem 0 0.55rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--faint);
}
.for-you-list li:last-child {
  border-bottom: none;
}
.for-you-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* === WAITLIST VERSION: What You'll Learn === */
.learn {
  background: var(--white);
  padding: var(--section-py) 0;
}
.learn-inner {
  max-width: 1252px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.learn-inner h2 {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.learn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}
.learn-list li {
  color: var(--fg-soft);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.6;
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--faint);
}
.learn-list li:last-child {
  border-bottom: none;
}
.learn-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.learn-list li strong {
  color: var(--fg);
  font-weight: 600;
}
.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.learn-card {
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  padding: clamp(1.25rem, 2vw, 1.5rem);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.learn-card strong {
  display: block;
  color: var(--fg);
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}
.learn-card p {
  color: var(--fg-soft);
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  line-height: 1.65;
}
@media (max-width: 540px) {
  .learn-grid { grid-template-columns: 1fr; }
}

/* ================================================
   TESTIMONIALS (commented out for waitlist version)
   ================================================ */
/*
.testimonials {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 4rem) 0;
}
.testimonials-inner {
  max-width: 1252px; margin: 0 auto;
  padding: 0 var(--container-px);
}
.testimonials-inner h2 {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}
.testimonial-quote {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.65;
  color: var(--fg-soft);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--faint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-avatar span {
  font-size: 0.5rem; color: var(--light);
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}
.testimonial-handle {
  font-size: 0.75rem;
  color: var(--light);
}
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
*/

/* ================================================
   WAITLIST
   ================================================ */
.waitlist {
  background: var(--fg);
  color: var(--white);
  padding: var(--section-py) 0;
}
.waitlist-inner {
  max-width: 1252px; margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .waitlist-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.waitlist-content h2 { color: var(--white); margin-bottom: 1rem; }
.waitlist-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem; line-height: 1.7;
}

.waitlist-urgency {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.75rem;
}

.waitlist-form {
  background: var(--paper);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.kit-form-container { margin-bottom: 0.5rem; }

.waitlist-fine {
  font-size: 0.75rem; color: var(--light);
  font-style: italic; text-align: center;
  margin-top: 0.75rem;
}

/* ── ConvertKit form overrides ── */
.formkit-form[data-uid="a7ae5dab92"],
.formkit-form[data-uid="a7ae5dab92"][min-width~="400"],
.formkit-form[data-uid="a7ae5dab92"][min-width~="500"],
.formkit-form[data-uid="a7ae5dab92"][min-width~="600"],
.formkit-form[data-uid="a7ae5dab92"][min-width~="700"],
.formkit-form[data-uid="a7ae5dab92"][min-width~="800"] {
  max-width: 100% !important;
}
.formkit-form[data-uid="a7ae5dab92"] [data-style="clean"],
.formkit-form[data-uid="a7ae5dab92"][min-width~="700"] [data-style="clean"],
.formkit-form[data-uid="a7ae5dab92"][min-width~="800"] [data-style="clean"] {
  padding: 0 !important;
}
.formkit-form[data-uid="a7ae5dab92"] .formkit-fields {
  display: flex !important; flex-direction: column !important;
  gap: 8px !important; margin: 0 !important;
}
.formkit-form[data-uid="a7ae5dab92"] .formkit-field,
.formkit-form[data-uid="a7ae5dab92"] .formkit-submit {
  margin: 0 !important; width: 100% !important;
}
.formkit-form[data-uid="a7ae5dab92"] .formkit-input {
  width: 100% !important;
  padding: 14px 16px !important;
  border-radius: 10px !important;
  border: 1.5px solid var(--faint) !important;
  background: var(--white) !important;
  font-family: var(--sans) !important;
  font-size: 0.9rem !important;
  color: var(--fg) !important;
  transition: border-color 0.2s !important;
}
.formkit-form[data-uid="a7ae5dab92"] .formkit-input:focus {
  border-color: var(--accent) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(240,148,29,0.08) !important;
}
.formkit-form[data-uid="a7ae5dab92"] .formkit-input::placeholder {
  color: var(--light) !important; opacity: 1 !important;
}
.formkit-form[data-uid="a7ae5dab92"] .formkit-submit {
  border-radius: 10px !important;
  background: var(--accent) !important;
  border: 2px solid var(--fg) !important;
  color: var(--white) !important;
  font-family: var(--sans) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  min-height: 48px !important;
}
.formkit-form[data-uid="a7ae5dab92"] .formkit-submit span {
  padding: 14px 22px !important;
  display: block !important;
}
.formkit-form[data-uid="a7ae5dab92"] .formkit-submit:hover {
  background: var(--accent-h) !important;
  transform: translateY(-1px) !important;
}
.formkit-form[data-uid="a7ae5dab92"] .formkit-powered-by-convertkit-container {
  display: none !important;
}
.formkit-form[data-uid="a7ae5dab92"] .formkit-alert-success {
  background: var(--bg) !important;
  border-color: var(--accent) !important;
  color: var(--fg) !important;
  border-radius: 10px !important;
  font-family: var(--sans) !important;
}

/* ================================================
   FAQ
   ================================================ */
.faq {
  background: var(--bg);
  padding: var(--section-py) 0;
}
.faq-inner {
  max-width: 1252px; margin: 0 auto;
  padding: 0 var(--container-px);
}
.faq-inner h2 { margin-bottom: 2.5rem; }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--faint);
}
.faq-item:first-child { border-top: 1px solid var(--faint); }

.faq-q {
  padding: 1.2rem 0;
  font-family: var(--sans);
  font-size: 0.95rem; font-weight: 500;
  color: var(--fg); cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--fg-soft); }

.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ''; }
.faq-q::after {
  content: '+';
  font-size: 1.2rem; font-weight: 400;
  color: var(--light); transition: transform 0.3s, color 0.2s;
  flex-shrink: 0; margin-left: 1rem;
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
  color: var(--plum);
}
.faq-q:hover::after { color: var(--plum); }

.faq-a {
  padding: 0 0 1.25rem;
  color: var(--fg-soft);
  font-size: 0.9rem; line-height: 1.75;
}

/* ================================================
   FINAL CTA (waitlist version)
   ================================================ */
.final-cta {
  background: var(--paper);
  padding: var(--section-py) 0;
  text-align: center;
}
.final-cta-inner {
  max-width: 1252px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.final-cta-inner h2 {
  margin-bottom: 0.75rem;
}
.final-cta-inner p {
  color: var(--fg-soft);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.final-cta-micro {
  font-size: 0.8rem !important;
  color: var(--light) !important;
  margin-bottom: 0 !important;
  margin-top: 0.75rem;
}

/* ── Hero microcopy ── */
.hero-micro {
  font-size: 0.8rem;
  color: var(--light);
}

/* ================================================
   FINAL CTA OLD (commented out)
   ================================================ */
/*
.final {
  background: var(--accent);
  color: var(--fg);
  padding: clamp(2rem, 4vw, 4rem) 0;
  text-align: center;
}
.final-inner {
  max-width: 1252px; margin: 0 auto;
  padding: 0 var(--container-px);
}
.final .punchline-question { color: rgba(45,43,40,0.65); }
.final .punchline-kicker { color: rgba(45,43,40,0.65); margin-bottom: 2rem; }
.final .btn { margin-top: 0.5rem; }
*/

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--fg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 0 2rem;
}
.footer-inner {
  max-width: 1252px; margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 3rem;
}
.footer-logo {
  color: var(--white); font-weight: 600;
  font-size: 1rem; letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  max-width: 14rem; line-height: 1.5; margin-bottom: 1rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  color: rgba(255,255,255,0.3); text-decoration: none;
  font-size: 0.75rem; transition: color 0.2s;
}
.footer-socials a:hover { color: var(--white); }

.footer-links {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 0.5rem;
}
.footer-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.65rem; color: rgba(255,255,255,0.2);
  margin-top: 2.5rem; text-align: center;
  max-width: 1252px; margin-left: auto; margin-right: auto;
}

@media (max-width: 540px) {
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-links { align-items: flex-start; }
}

/* ================================================
   ANIMATION
   ================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 480px) {
  .nav-link { font-size: 0.75rem; }
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
