/* ═══════════════════════════════════════════════════════════════
   V2 — vibrant magenta + electric yellow + cyan
   All classes scoped under .v2 — no bleed into v1 design.
   ═══════════════════════════════════════════════════════════════ */

/* ── Page reset: kill the browser's default body margin so the page has no
      white frame around it. (The .v2 reset below only covers descendants.) ── */
html, body {
    margin: 0;
    padding: 0;
    background: var(--v2-cream, #FFF8F0);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

/* ── Tokens ────────────────────────────────────────────────────── */
.v2 {
    /* core palette — popping, slightly punchier than the source palette */
    --v2-magenta:        #EC1683;   /* hot pink primary */
    --v2-magenta-deep:   #C81073;
    --v2-magenta-soft:   #FFD6EA;
    --v2-coral:          #FF6B47;   /* warm transition */
    --v2-coral-deep:     #E8552D;
    --v2-yellow:         #FFD60A;   /* electric yellow, the CTA */
    --v2-yellow-deep:    #F0C400;
    --v2-cyan:           #2EB5E8;   /* punched-up version of the palette blue */
    --v2-cyan-light:     #6DD5F3;
    --v2-cyan-deep:      #1F8FBA;
    --v2-plum:           #3B0B36;   /* deep dark for trusted-by section */
    --v2-plum-deep:      #1B0418;
    --v2-cream:          #FFF8F0;   /* off-white background */
    --v2-cream-warm:     #FBEFD9;
    --v2-ink:            #181225;
    --v2-ink-soft:       #3A2E48;
    --v2-muted:          #6B5F7A;
    --v2-white:          #ffffff;

    /* fonts */
    --v2-font-display: 'Anton', 'Arial Black', sans-serif;
    --v2-font-script:  'Caveat Brush', 'Permanent Marker', cursive;
    --v2-font-serif:   'Playfair Display', Georgia, serif;
    --v2-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* shape */
    --v2-radius:    16px;
    --v2-radius-sm: 10px;
    --v2-radius-lg: 28px;
    --v2-shadow-card: 0 10px 40px rgba(24, 18, 37, 0.10);
    --v2-shadow-lg:   0 22px 60px rgba(24, 18, 37, 0.18);

    /* signature gradient — pink → coral hero */
    --v2-grad-hero: linear-gradient(180deg, #EC1683 0%, #F03077 35%, #FF5A4B 100%);
    --v2-grad-coral: linear-gradient(180deg, #FF6B47 0%, #EC1683 100%);

    /* scoped reset */
    font-family: var(--v2-font-body);
    color: var(--v2-ink);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: var(--v2-white);
}

.v2 *,
.v2 *::before,
.v2 *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.v2 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.v2 a {
    color: inherit;
    text-decoration: none;
}

.v2 strong { font-weight: 800; }

.v2 em {
    font-style: italic;
    font-family: var(--v2-font-serif);
    font-weight: 700;
}


/* ── Reusable: brush-script accent text ─────────────────────────── */
.v2-script {
    font-family: var(--v2-font-script);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.01em;
    display: inline-block;
    transform: rotate(-3deg);
}
.v2-script--magenta { color: var(--v2-magenta); }
.v2-script--yellow  { color: var(--v2-yellow); }
.v2-script--cyan    { color: var(--v2-cyan); }


/* ── Reusable: buttons ──────────────────────────────────────────── */
.v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.75rem;
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 0 rgba(24, 18, 37, 0.85);
}
.v2-btn--lg { padding: 1.15rem 2.4rem; font-size: 1.05rem; }
.v2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(24, 18, 37, 0.85);
}
.v2-btn:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(24, 18, 37, 0.85); }

/* Variant color rules use the .v2-btn--X selector twice to outweigh
   `.v2 a { color: inherit }` so anchor-based buttons don't pick up
   the parent section's text color (e.g. white on the magenta hero). */
.v2-btn.v2-btn--yellow,
.v2-btn.v2-btn--yellow:visited,
.v2-btn.v2-btn--yellow:hover,
.v2-btn.v2-btn--yellow:active { color: var(--v2-ink); }
.v2-btn--yellow { background: var(--v2-yellow); }
.v2-btn--yellow:hover { background: #FFE03A; }

.v2-btn.v2-btn--cyan,
.v2-btn.v2-btn--cyan:visited,
.v2-btn.v2-btn--cyan:hover,
.v2-btn.v2-btn--cyan:active { color: var(--v2-white); }
.v2-btn--cyan { background: var(--v2-cyan); }
.v2-btn--cyan:hover { background: var(--v2-cyan-deep); }

.v2-btn.v2-btn--ghost,
.v2-btn.v2-btn--ghost:visited,
.v2-btn.v2-btn--ghost:hover,
.v2-btn.v2-btn--ghost:active { color: var(--v2-white); }
.v2-btn--ghost {
    background: transparent;
    box-shadow: inset 0 0 0 2px var(--v2-white);
}
.v2-btn--ghost:hover { background: rgba(255, 255, 255, 0.1); box-shadow: inset 0 0 0 2px var(--v2-white); }


/* ═══════════════════════════════════════════════════════════════
   HAMBURGER MENU — fixed button + slide-in table of contents
   ═══════════════════════════════════════════════════════════════ */
.v2-menu-btn {
    position: fixed;
    top: 0.75rem;
    right: 1rem;
    z-index: 120;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--v2-ink);
    border: 2px solid var(--v2-yellow);
    box-shadow: 0 4px 14px rgba(24, 18, 37, 0.35);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4.5px;
    padding: 0;
}
.v2-menu-btn span {
    display: block;
    width: 20px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--v2-yellow);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.v2-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v2-menu-btn.open span:nth-child(2) { opacity: 0; }
.v2-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.v2-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    width: min(320px, 85vw);
    background: var(--v2-white);
    border-left: 2px solid var(--v2-ink);
    box-shadow: -14px 0 44px rgba(24, 18, 37, 0.28);
    padding: 5.25rem 1.75rem 2rem;
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform 0.25s ease;
}
.v2-menu.open { transform: none; }

.v2-menu-title {
    font-family: var(--v2-font-script);
    font-size: 1.5rem;
    color: var(--v2-magenta);
    transform: rotate(-2deg);
    margin-bottom: 1rem;
}
.v2-menu a {
    display: block;
    padding: 0.7rem 0.25rem;
    font-weight: 800;
    font-size: 0.98rem;
    border-bottom: 1px solid rgba(24, 18, 37, 0.08);
    transition: color 0.15s ease, transform 0.15s ease;
}
.v2-menu a:hover {
    color: var(--v2-magenta);
    transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
    .v2-menu { transition: none; }
}


/* ═══════════════════════════════════════════════════════════════
   0. TOP COUNTDOWN BAR
   ═══════════════════════════════════════════════════════════════ */
.v2-topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.75rem;
    background: var(--v2-ink);
    color: var(--v2-white);
    padding: 0.9rem 1rem;
    text-align: center;
}
.v2-topbar-label {
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.v2-topbar-count {
    display: inline-flex;
    align-items: baseline;
    gap: 0.2rem;
    font-variant-numeric: tabular-nums;
}
.v2-topbar-num {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.2rem 0.65rem;
    font-weight: 900;
    font-size: 1.45rem;
    color: var(--v2-yellow);
}
.v2-topbar-unit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 0.5rem;
}
/* Mini version of the pricing countdown boxes inside the top bar. */
.v2-topbar .v2-countdown-boxes { gap: 0.4rem; }
.v2-topbar .v2-countdown-box {
    width: 3.7rem;
    flex: 0 0 3.7rem;
    padding: 0.35rem 0.3rem 0.3rem;
    border-width: 2px;
    border-radius: 8px;
    box-shadow: 3px 3px 0 var(--v2-magenta);
}
.v2-topbar .v2-countdown-num { font-size: 1.5rem; }
.v2-topbar .v2-countdown-unit { font-size: 0.55rem; margin-top: 0.15rem; }
.v2-topbar .v2-countdown-sep { font-size: 1.2rem; color: var(--v2-yellow); }
@media (max-width: 700px) {
    .v2-topbar .v2-countdown-sep { display: none; }
    .v2-topbar .v2-countdown-box { width: 3.2rem; flex: 0 0 3.2rem; }
}

.v2-topbar-cta {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: var(--v2-yellow) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.v2-topbar .v2-countdown-done {
    font-size: 0.85rem;
    font-weight: 800;
}

/* Keep the countdown clear of the fixed hamburger button on small screens. */
@media (max-width: 700px) {
    .v2-topbar { padding-right: 4.5rem; }
}


/* ═══════════════════════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════════════════════ */
.v2-hero {
    position: relative;
    background: var(--v2-grad-hero);
    color: var(--v2-white);
    padding: 3rem 1.5rem 0;
    overflow: hidden;
}

.v2-hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
    align-items: end;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .v2-hero { padding-left: 0.75rem; padding-right: 0.75rem; }
    .v2-hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .v2-hero-logotype {
        font-size: clamp(5rem, 28vw, 9rem);
        letter-spacing: -0.015em;
    }
}

.v2-hero-left {
    position: relative;
    padding-bottom: 4rem;
}

.v2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--v2-yellow);
    color: var(--v2-ink);
    padding: 0.35rem 0.8rem 0.35rem 0.4rem;
    font-family: var(--v2-font-body);
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    transform: rotate(-3deg);
    margin-bottom: 1.25rem;
    border: 2px solid var(--v2-ink);
    box-shadow: 3px 3px 0 var(--v2-ink);
}

.v2-hero-badge-mark {
    display: inline-grid;
    place-items: center;
    background: var(--v2-magenta);
    color: var(--v2-white);
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0;
    border: 2px solid var(--v2-ink);
}

.v2-hero-substack {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--v2-white);
    color: var(--v2-ink);
    padding: 0.3rem 0.8rem 0.3rem 0.35rem;
    border-radius: 999px;
    border: 2px solid var(--v2-ink);
    box-shadow: 3px 3px 0 var(--v2-ink);
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    margin-bottom: 1.25rem;
}
.v2-hero-substack svg { display: block; flex-shrink: 0; }

.v2-hero-logotype {
    font-family: var(--v2-font-display);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--v2-white);
    -webkit-text-stroke: 1px rgba(24, 18, 37, 0.55);
    text-shadow: 4px 4px 0 rgba(24, 18, 37, 0.55);
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    font-size: clamp(3rem, 9vw, 7rem);
}
.v2-hero-logotype-1 { color: var(--v2-white); }
.v2-hero-logotype-2 {
    color: var(--v2-yellow);
    font-size: 0.55em;
    line-height: 1;
    align-self: flex-start;
    margin-left: 0.15em;
}
.v2-hero-logotype-3 { color: var(--v2-white); }

.v2-hero-right {
    position: relative;
    align-self: end;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.v2-hero-photo {
    position: relative;
    text-align: center;
    max-width: 480px;
    margin: 0;
    display: block;
    line-height: 0;
}
.v2-hero-photo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 30px rgba(24, 18, 37, 0.35));
}

/* Two host cutouts side by side in the hero (Kristina left / front, Fleur right / behind). */
/* The big promo photo — Kristina & Fleur with the guide, plus the 2027 banner.
   (The photo's printed covers say 2026, so the loud banner carries the year.) */
.v2-hero-promo {
    position: relative;
    max-width: 660px;
    margin: 0 auto 3rem;
}
.v2-hero-promo img {
    display: block;
    width: 100%;
    border: 2px solid var(--v2-ink);
    border-radius: var(--v2-radius-lg);
    box-shadow: 8px 8px 0 var(--v2-ink);
}
.v2-hero-promo-badge {
    position: absolute;
    top: -1.1rem;
    right: -0.6rem;
    background: var(--v2-yellow);
    color: var(--v2-ink);
    border: 2px solid var(--v2-ink);
    border-radius: 8px;
    box-shadow: 3px 3px 0 var(--v2-ink);
    padding: 0.5rem 1.1rem;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transform: rotate(3deg);
    white-space: nowrap;
}
@media (max-width: 900px) {
    .v2-hero-promo { margin-bottom: 2rem; }
    .v2-hero-promo-badge { right: 0.4rem; font-size: 0.75rem; }
}

/* Cutout variant — the duo stands directly on the hero gradient, oversized
   so their heads reach the SUBSTACK logotype, anchored to the bottom edge. */
.v2-hero-promo--cutout {
    max-width: none;
    width: 128%;
    margin: 0 -14%;
}
@media (max-width: 900px) {
    .v2-hero-promo--cutout { width: 100%; margin: 0; }
}
.v2-hero-promo--cutout img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 20px 44px rgba(24, 18, 37, 0.38));
}
.v2-hero-promo--cutout .v2-hero-promo-badge {
    top: 0.5rem;
    right: 3%;
}
@media (max-width: 900px) {
    .v2-hero-promo--cutout { margin-bottom: 0; }
}

.v2-hero-photo--duo {
    max-width: 700px;
    height: clamp(300px, 34vw, 460px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
/* Both cutouts share the container height, so Fleur and Kristina stand the
   same height. Fleur sits on a yellow arch with a white line around her body. */
.v2-hero-photo--duo img { width: auto; height: 100%; }
.v2-hero-photo--duo .v2-hero-cutout--kristina { position: relative; z-index: 2; }
.v2-hero-fleur-frame {
    position: relative;
    z-index: 1;
    margin-left: -1.5rem;
    /* Fleur's photo is a tighter crop than Kristina's, so at equal frame
       heights she reads larger. 88% makes the two heads the same size. */
    height: 88%;
    display: flex;
    align-items: flex-end;
    background: var(--v2-yellow);
    border-radius: 999px 999px 0 0;
    padding: 0 0.9rem;
}
.v2-hero-fleur-frame .v2-hero-cutout--fleur {
    filter: drop-shadow(2px 0 0 #fff) drop-shadow(-2px 0 0 #fff)
            drop-shadow(0 2px 0 #fff) drop-shadow(0 -2px 0 #fff);
}

@media (max-width: 900px) {
    .v2-hero-photo--duo { height: clamp(240px, 58vw, 360px); }
}

.v2-hero-pitch {
    margin-top: 2rem;
    text-align: left;
    position: relative;
    z-index: 2;
}
/* "You're wildly capable of this" — the vow gets its own line. */
.v2-hero-vow {
    display: block;
    margin-top: 0.9rem;
    font-weight: 700;
}

.v2-hero-pitch-title {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    line-height: 1.3;
    color: var(--v2-white);
    margin-bottom: 1.5rem;
    max-width: 32ch;
}
@media (max-width: 900px) {
    .v2-hero-pitch { text-align: center; }
    .v2-hero-pitch-title { max-width: none; margin-left: auto; margin-right: auto; }
}
.v2-hero-trust {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}
.v2-hero-stars { color: var(--v2-yellow); margin-right: 0.4rem; letter-spacing: 0.1em; }
.v2-hero-pitch-sub {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 46ch;
}
.v2-hero-pitch-sub strong { color: var(--v2-white); font-weight: 800; }
.v2-hero-buttons { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; }
@media (max-width: 900px) {
    .v2-hero-pitch-sub { max-width: none; margin-left: auto; margin-right: auto; }
    .v2-hero-buttons { justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════
   2. MILLION-DOLLAR FORMULA — yellow grain bg
   ═══════════════════════════════════════════════════════════════ */
.v2-million {
    position: relative;
    background: var(--v2-yellow);
    background-image:
        radial-gradient(rgba(24, 18, 37, 0.06) 1px, transparent 1px),
        radial-gradient(rgba(24, 18, 37, 0.04) 1px, transparent 1px);
    background-size: 14px 14px, 22px 22px;
    background-position: 0 0, 7px 11px;
    padding: 5rem 1.5rem 6rem;
    overflow: hidden;
}

.v2-million-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: end;
    position: relative;
}
@media (max-width: 900px) {
    .v2-million-inner { grid-template-columns: 1fr; }
}
.v2-million-copy {
    align-self: center;
    padding-bottom: 1rem;
}

.v2-million-heading {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    color: var(--v2-ink);
    margin-bottom: 1.5rem;
}
.v2-million-text {
    font-size: 1.05rem;
    color: var(--v2-ink-soft);
    line-height: 1.7;
    max-width: 560px;
}
.v2-million-text strong { color: var(--v2-ink); }

.v2-million-photo {
    position: relative;
    text-align: center;
    align-self: end;
    margin-bottom: -6rem;   /* flush her feet with section's outer bottom */
    z-index: 2;             /* sit above the zigzag divider */
    line-height: 0;
}
.v2-million-photo img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 12px 20px rgba(24, 18, 37, 0.18));
}
.v2-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
}
.v2-divider--yellow-to-white {
    background:
        linear-gradient(to bottom right, var(--v2-yellow) 49.5%, var(--v2-white) 50%) 0 0 / 50% 100% no-repeat,
        linear-gradient(to bottom left,  var(--v2-yellow) 49.5%, var(--v2-white) 50%) 100% 0 / 50% 100% no-repeat;
}


/* ═══════════════════════════════════════════════════════════════
   3. MONEY-PAGE PILLARS — white bg, script header, 3 columns
   ═══════════════════════════════════════════════════════════════ */
.v2-pillars {
    background: var(--v2-white);
    padding: 5rem 1.5rem;
}
.v2-pillars-inner { max-width: 1100px; margin: 0 auto; }

.v2-pillars-heading {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    text-align: center;
    color: var(--v2-ink);
    margin-bottom: 3rem;
}
.v2-pillars-heading .v2-script {
    font-size: 1.4em;
    line-height: 0.85;
    margin-top: 0.25rem;
}

.v2-pillars-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0 3rem;
    text-align: center;
}
@media (max-width: 800px) {
    .v2-pillars-row { grid-template-columns: 1fr; gap: 1.5rem; }
}

.v2-pillar { padding: 0 0.5rem; }
.v2-pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--v2-magenta);
    color: var(--v2-white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    border: 3px solid var(--v2-ink);
    box-shadow: 4px 4px 0 var(--v2-ink);
}
.v2-pillar-text {
    font-size: 1rem;
    color: var(--v2-ink-soft);
    line-height: 1.55;
    max-width: 280px;
    margin: 0 auto;
}

.v2-pillars-callout {
    background: var(--v2-yellow);
    color: var(--v2-ink);
    font-family: var(--v2-font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0.6rem 1.5rem;
    margin: 2rem auto 3rem;
    border: 2px solid var(--v2-ink);
    box-shadow: 4px 4px 0 var(--v2-ink);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transform: rotate(-1.5deg);
    text-align: center;
}
.v2-pillars-callout-wrap { text-align: center; }
.v2-pillars-callout {
    display: table;
    margin: 2rem auto 3rem;
}
.v2-pillars-callout-arrow {
    font-family: var(--v2-font-script);
    color: var(--v2-magenta);
    font-size: 1.6rem;
    transform: translateY(4px) rotate(20deg);
    display: inline-block;
}

.v2-pillars-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}
@media (max-width: 800px) {
    .v2-pillars-split { grid-template-columns: 1fr; }
}

.v2-pillars-split-copy {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.v2-pillars-split-copy p {
    font-size: 1rem;
    color: var(--v2-ink-soft);
    line-height: 1.65;
}
.v2-pillars-split-copy strong { color: var(--v2-ink); }

.v2-pillars-split-receipts {
    transform: rotate(3deg);
    perspective: 800px;
}
.v2-receipts {
    background: var(--v2-white);
    border: 3px solid var(--v2-ink);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 10px 10px 0 var(--v2-magenta);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--v2-ink);
    transform: rotateX(8deg) rotateY(-4deg);
}
.v2-receipts-head,
.v2-receipts-row {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.7fr;
    gap: 0.5rem;
    padding: 0.55rem 0.4rem;
    border-bottom: 1px dashed rgba(24, 18, 37, 0.15);
}
.v2-receipts-head {
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--v2-muted);
    border-bottom: 2px solid var(--v2-ink);
}
.v2-receipts-row:last-child { border-bottom: none; }
.v2-receipts-row span:nth-child(2) { font-weight: 700; }
.v2-receipts-paid {
    background: #d4f5dc;
    color: #1f7a3a;
    border-radius: 4px;
    padding: 0.1rem 0.35rem;
    font-weight: 700;
    font-size: 0.7rem;
    text-align: center;
    align-self: center;
    justify-self: end;
}


/* ═══════════════════════════════════════════════════════════════
   4. FANCY HACKS — magenta block with 3 principles
   ═══════════════════════════════════════════════════════════════ */
.v2-fancy {
    background: var(--v2-magenta);
    color: var(--v2-white);
    padding: 5rem 1.5rem 6rem;
    position: relative;
}
.v2-fancy-inner { max-width: 1000px; margin: 0 auto; }

.v2-fancy-heading {
    font-family: var(--v2-font-display);
    font-weight: 400;
    line-height: 0.95;
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    letter-spacing: 0.01em;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.v2-fancy-heading-yellow {
    color: var(--v2-yellow);
    -webkit-text-stroke: 1px rgba(24, 18, 37, 0.4);
    text-shadow: 4px 4px 0 rgba(24, 18, 37, 0.4);
}
.v2-fancy-heading-line {
    color: var(--v2-yellow);
    -webkit-text-stroke: 1px rgba(24, 18, 37, 0.4);
    text-shadow: 4px 4px 0 rgba(24, 18, 37, 0.4);
}
.v2-fancy-heading-cyan {
    font-family: var(--v2-font-script);
    color: var(--v2-cyan-light);
    font-size: 1.05em;
    line-height: 0.85;
    text-shadow: 4px 4px 0 rgba(24, 18, 37, 0.4);
    text-transform: none;
    -webkit-text-stroke: 0;
}

.v2-fancy-lede {
    max-width: 660px;
    margin: 0 auto 1.25rem;
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.55;
}

.v2-fancy-principles {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.v2-fancy-principle {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.v2-fancy-principle:first-child { border-top: none; padding-top: 0; }
@media (max-width: 700px) {
    .v2-fancy-principle { grid-template-columns: 1fr; gap: 0.75rem; }
}

.v2-fancy-principle-icon {
    width: 110px;
    height: 110px;
    background: rgba(24, 18, 37, 0.25);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 3rem;
    filter: grayscale(0.4) contrast(1.1);
    margin: 0 auto;
}

.v2-fancy-principle-title {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--v2-cyan-light);
    margin-bottom: 0.75rem;
}
.v2-fancy-principle-text {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    font-size: 1rem;
}

.v2-fancy-arrowdown {
    margin: 3rem auto 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--v2-white);
    color: var(--v2-magenta);
    font-size: 1.4rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    border: 2px solid var(--v2-ink);
}


/* ═══════════════════════════════════════════════════════════════
   5. PROMISE — coral gradient, product stack mockup
   ═══════════════════════════════════════════════════════════════ */
.v2-promise {
    background: var(--v2-grad-coral);
    color: var(--v2-white);
    padding: 5rem 1.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.v2-promise-inner { max-width: 1100px; margin: 0 auto; }

.v2-promise-heading {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 2rem;
}

.v2-promise-lede {
    max-width: 720px;
    margin: 0 auto 1.25rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.96);
}
.v2-promise-lede strong { color: var(--v2-yellow); }
.v2-promise-lede em { font-style: italic; font-family: var(--v2-font-serif); }

/* deliverable badges — image-free replacement for the product mockup */
.v2-promise-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.25rem;
    margin: 3.5rem auto 2.5rem;
    max-width: 800px;
}
.v2-promise-badges li {
    background: rgba(255, 255, 255, 0.12);
    color: var(--v2-white);
    border: 2px solid var(--v2-white);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    padding: 0.75rem 1.4rem;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    box-shadow: 4px 4px 0 rgba(24, 18, 37, 0.4);
}
.v2-promise-badges li span { font-size: 1.2rem; }

.v2-promise-cta-wrap { margin-top: 1.5rem; }


/* ═══════════════════════════════════════════════════════════════
   6. FROM SCRATCH — 3 lesson cards
   ═══════════════════════════════════════════════════════════════ */
.v2-scratch {
    background: var(--v2-white);
    padding: 6rem 1.5rem;
}
.v2-scratch-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

.v2-scratch-heading {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.2;
    color: var(--v2-ink);
    max-width: 900px;
    margin: 0 auto 3.5rem;
}

.v2-lesson-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (max-width: 900px) {
    .v2-lesson-grid { grid-template-columns: 1fr; }
}

.v2-lesson {
    background: var(--v2-coral);
    color: var(--v2-white);
    padding: 2.5rem 0 2rem;
    border-radius: var(--v2-radius);
    border: 3px solid var(--v2-ink);
    box-shadow: 6px 6px 0 var(--v2-ink);
    text-align: center;
    transition: transform 0.2s ease;
    overflow: hidden;
}
.v2-lesson:hover { transform: translateY(-6px); }

.v2-lesson-num {
    font-family: var(--v2-font-display);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--v2-yellow);
    -webkit-text-stroke: 1px rgba(24, 18, 37, 0.4);
    text-shadow: 4px 4px 0 rgba(24, 18, 37, 0.4);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.v2-lesson-badge {
    display: inline-block;
    background: var(--v2-white);
    color: var(--v2-ink);
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.v2-lesson-kicker {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
}
.v2-lesson-title {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}
.v2-lesson-text {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.94);
}

.v2-pills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin: 2rem auto 0;
    max-width: 800px;
}
.v2-pills li {
    background: var(--v2-yellow);
    color: var(--v2-ink);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    border: 2px solid var(--v2-ink);
    box-shadow: 3px 3px 0 var(--v2-ink);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.v2-pills li span {
    background: #2d8a4e;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 900;
}


/* ═══════════════════════════════════════════════════════════════
   7. TRUSTED-BY — dark plum, stats, student testimonial cards
   ═══════════════════════════════════════════════════════════════ */
.v2-trusted {
    background: linear-gradient(180deg, var(--v2-plum-deep) 0%, var(--v2-plum) 100%);
    color: var(--v2-white);
    padding: 5.5rem 1.5rem 6rem;
}
.v2-trusted-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

.v2-trusted-heading {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.v2-trusted-sub {
    max-width: 660px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}
.v2-trusted-sub em { color: var(--v2-yellow); font-family: var(--v2-font-serif); font-style: italic; }

.v2-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.v2-stat {
    background: #1f5e3a;
    border-radius: 14px;
    padding: 1.5rem 2.5rem;
    border: 3px solid var(--v2-ink);
    box-shadow: 5px 5px 0 var(--v2-ink);
}
.v2-stat-num {
    font-family: var(--v2-font-display);
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1;
    color: var(--v2-yellow);
    margin-bottom: 0.5rem;
}
.v2-stat-label {
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--v2-white);
}

.v2-trusted-cta-wrap {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.v2-loveheader {
    margin: 1.5rem 0 2.5rem;
    text-align: center;
}
.v2-loveheader .v2-script {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    line-height: 0.9;
}

.v2-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
    align-items: stretch;
}
@media (max-width: 900px) {
    .v2-quotes { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .v2-quotes { grid-template-columns: 1fr; }
}

.v2-quote {
    background: var(--v2-white);
    color: var(--v2-ink);
    border-radius: 12px;
    padding: 1.5rem 1.4rem;
    font-size: 0.95rem;
    line-height: 1.6;
    border: 2px solid var(--v2-ink);
    box-shadow: 5px 5px 0 var(--v2-magenta);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.v2-quote:nth-child(even) { box-shadow: 5px 5px 0 var(--v2-cyan); }
.v2-quote:nth-child(3n)   { box-shadow: 5px 5px 0 var(--v2-yellow); }

.v2-quote p {
    font-family: var(--v2-font-serif);
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--v2-ink);
    font-weight: 400;
}
.v2-quote p em { color: var(--v2-magenta); }

.v2-quote-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.v2-quote-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--v2-cyan);
    color: var(--v2-white);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.15rem;
    border: 2px solid var(--v2-ink);
    flex-shrink: 0;
    overflow: hidden;
    object-fit: cover;
    object-position: center top;
}
.v2-quote:nth-child(even) div.v2-quote-avatar { background: var(--v2-magenta); }
.v2-quote:nth-child(3n)   div.v2-quote-avatar { background: var(--v2-coral); }

.v2-quote-meta strong { display: block; font-size: 0.95rem; }
.v2-quote-meta span { font-size: 0.78rem; color: var(--v2-muted); }

.v2-quote-metric {
    align-self: flex-start;
    background: var(--v2-yellow);
    color: var(--v2-ink);
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    border: 1.5px solid var(--v2-ink);
    box-shadow: 2px 2px 0 var(--v2-ink);
}
.v2-quote:nth-child(even) .v2-quote-metric { background: var(--v2-cyan-light); }
.v2-quote:nth-child(3n)   .v2-quote-metric { background: var(--v2-coral); color: var(--v2-white); }

/* Video gallery — 7 Vimeo embeds, lazy-loaded, flex-wrap centers the orphan */
.v2-videos {
    margin: 3.5rem 0 1rem;
    text-align: center;
}
.v2-videos-heading {
    margin-bottom: 1.5rem;
}
.v2-videos-heading .v2-script {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 0.9;
}

.v2-video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.v2-video {
    width: calc((100% - 2.5rem) / 3);   /* 3 across, two 1.25rem gaps */
    max-width: 320px;
    text-align: center;
}
@media (max-width: 900px) {
    .v2-video { width: calc((100% - 1.25rem) / 2); }
}
@media (max-width: 540px) {
    .v2-video { width: 100%; max-width: 320px; }
}

.v2-video-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid var(--v2-ink);
    box-shadow: 6px 6px 0 var(--v2-yellow);
    background: var(--v2-plum);
}
.v2-video:nth-child(even) .v2-video-frame { box-shadow: 6px 6px 0 var(--v2-cyan); }
.v2-video:nth-child(3n)   .v2-video-frame { box-shadow: 6px 6px 0 var(--v2-magenta); }

.v2-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.v2-video figcaption {
    margin-top: 0.75rem;
    font-family: var(--v2-font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--v2-white);
}

/* Featured closing card — Sara Redondo */
.v2-quote--featured {
    max-width: 900px;
    margin: 1.5rem auto 0;
    background: var(--v2-yellow);
    box-shadow: 8px 8px 0 var(--v2-magenta);
    padding: 2rem 2.25rem;
    border-radius: 16px;
    border: 3px solid var(--v2-ink);
}
.v2-quote--featured p {
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--v2-ink);
}
.v2-quote--featured .v2-quote-metric {
    background: var(--v2-magenta);
    color: var(--v2-white);
    font-size: 0.85rem;
    padding: 0.45rem 0.9rem;
}
.v2-quote--featured .v2-quote-avatar {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    max-width: 72px;
    max-height: 72px;
}


/* ═══════════════════════════════════════════════════════════════
   8. FOR YOU IF — magenta block
   ═══════════════════════════════════════════════════════════════ */
.v2-foryou {
    background: var(--v2-magenta);
    color: var(--v2-white);
    padding: 5rem 1.5rem 6rem;
}
.v2-foryou-inner { max-width: 1000px; margin: 0 auto; }

.v2-foryou-heading {
    font-family: var(--v2-font-display);
    font-weight: 400;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 0.95;
    text-align: center;
    color: var(--v2-yellow);
    -webkit-text-stroke: 1px rgba(24, 18, 37, 0.4);
    text-shadow: 4px 4px 0 rgba(24, 18, 37, 0.4);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.v2-foryou-list { list-style: none; }
.v2-foryou-list li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
    align-items: start;
    border-top: 2px solid var(--v2-yellow);
    font-size: 1.05rem;
    line-height: 1.55;
}
.v2-foryou-list li:last-child { border-bottom: 2px solid var(--v2-yellow); }
.v2-foryou-check {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--v2-cyan-light);
    color: var(--v2-cyan-light);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 0.9rem;
}
.v2-foryou-list strong { color: var(--v2-white); }
.v2-foryou-list li > span:last-child { color: rgba(255,255,255,0.92); }

.v2-foryou-cta-wrap {
    text-align: center;
    margin-top: 3rem;
}


/* ═══════════════════════════════════════════════════════════════
   9. PRICING — cream bg, two cards
   ═══════════════════════════════════════════════════════════════ */
.v2-pricing {
    background: var(--v2-cream);
    padding: 6rem 1.5rem;
}
.v2-pricing-inner { max-width: 1100px; margin: 0 auto; }

.v2-pricing-head { text-align: center; margin-bottom: 3rem; }
.v2-pricing-head .v2-script {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.v2-pricing-heading {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1;
    color: var(--v2-ink);
}
.v2-pricing-sub {
    font-family: var(--v2-font-serif);
    font-style: italic;
    color: var(--v2-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.v2-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
/* Single standalone offer — one centered card instead of the two-up grid. */
.v2-pricing-grid--single {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
}
@media (max-width: 800px) {
    .v2-pricing-grid { grid-template-columns: 1fr; }
}

.v2-pricing-card {
    background: var(--v2-white);
    border: 3px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    padding: 2.25rem;
    position: relative;
    box-shadow: 8px 8px 0 var(--v2-cyan);
    display: flex;
    flex-direction: column;
}
.v2-pricing-card--featured {
    box-shadow: 8px 8px 0 var(--v2-magenta);
    background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
}

.v2-pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: var(--v2-yellow);
    color: var(--v2-ink);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.85rem;
    border: 2px solid var(--v2-ink);
    box-shadow: 3px 3px 0 var(--v2-ink);
    white-space: nowrap;
}

.v2-pricing-name {
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--v2-ink);
}
.v2-pricing-tagline {
    color: var(--v2-muted);
    margin: 0.4rem 0 1.5rem;
    font-style: italic;
    font-family: var(--v2-font-serif);
}
.v2-pricing-amount {
    font-family: var(--v2-font-display);
    font-size: 4rem;
    line-height: 0.9;
    color: var(--v2-magenta);
}
.v2-pricing-plans {
    font-size: 0.85rem;
    color: var(--v2-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.v2-pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.v2-pricing-features li {
    display: flex;
    gap: 0.6rem;
    align-items: start;
    padding: 0.55rem 0;
    border-bottom: 1px dashed rgba(24, 18, 37, 0.1);
    font-size: 0.95rem;
    color: var(--v2-ink-soft);
}
.v2-pricing-features li:last-child { border-bottom: none; }
.v2-pricing-features li > span {
    color: var(--v2-cyan-deep);
    font-weight: 900;
    flex-shrink: 0;
}
.v2-pricing-features strong { color: var(--v2-ink); }


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.v2-footer {
    background: var(--v2-ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem 1.5rem;
    font-size: 0.9rem;
}
.v2-footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.v2-footer a { color: var(--v2-yellow); }
.v2-footer-legal { margin-top: 0.5rem; }
.v2-footer-legal a { color: rgba(255,255,255,0.7); margin: 0 0.35rem; }
.v2-footer-legal a:hover { color: var(--v2-yellow); }
.v2-footer-legal span { color: rgba(255,255,255,0.3); }


/* ═══════════════════════════════════════════════════════════════
   STICKY CTA BAR
   ═══════════════════════════════════════════════════════════════ */
.v2-sticky {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--v2-ink);
    color: var(--v2-white);
    border-top: 3px solid var(--v2-yellow);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
}
.v2-sticky[data-state="visible"] { transform: translateY(0); }
.v2-sticky-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.v2-sticky-text strong {
    display: block;
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}
.v2-sticky-text span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.v2-sticky-buttons { display: flex; gap: 0.6rem; }
.v2-sticky-buttons .v2-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.82rem;
    box-shadow: 0 3px 0 rgba(24, 18, 37, 0.85);
}
@media (max-width: 600px) {
    .v2-sticky-text span { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   THANK-YOU page-specific
   ═══════════════════════════════════════════════════════════════ */
.v2-ty-hero {
    background: var(--v2-grad-hero);
    color: var(--v2-white);
    padding: 5rem 1.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.v2-ty-hero--tall {
    /* fills at least one viewport so footer is always below the fold */
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-ty-hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.v2-ty-confetti-emoji { font-size: 4rem; margin-bottom: 1rem; }
.v2-ty-title {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.v2-ty-title em { font-family: var(--v2-font-serif); }
.v2-ty-title .v2-script { font-size: 1.2em; line-height: 0.85; }
.v2-ty-tagline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.55;
}
.v2-ty-party {
    font-family: var(--v2-font-script);
    font-size: 2rem;
    line-height: 1;
    color: var(--v2-yellow);
    transform: rotate(-2deg);
    margin-bottom: 2rem;
}
.v2-ty-signoff {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin-top: 2.5rem;
}
.v2-ty-signoff .v2-script { font-size: 2.1rem; line-height: 1.05; }

.v2-ty-cta-row { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 2.25rem; }
.v2-ty-cta-note { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.v2-ty-cta-note a { color: var(--v2-yellow); text-decoration: underline; }

.v2-ty-steps {
    background: var(--v2-cream);
    padding: 5rem 1.5rem;
}
.v2-ty-steps-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.v2-ty-steps-heading {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    color: var(--v2-ink);
    margin-bottom: 3rem;
}
.v2-ty-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 800px) { .v2-ty-steps-grid { grid-template-columns: 1fr; } }

.v2-ty-step {
    background: var(--v2-white);
    border: 3px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    padding: 2rem 1.5rem;
    text-align: left;
    box-shadow: 6px 6px 0 var(--v2-yellow);
}
.v2-ty-step-num {
    font-family: var(--v2-font-display);
    font-size: 3rem;
    color: var(--v2-magenta);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.v2-ty-step h3 {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
    color: var(--v2-ink);
}
.v2-ty-step p { color: var(--v2-ink-soft); font-size: 0.95rem; line-height: 1.6; }

.v2-ty-encourage {
    background: var(--v2-magenta);
    color: var(--v2-white);
    padding: 5rem 1.5rem 6rem;
}
.v2-ty-encourage-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 3rem;
    align-items: end;
}
@media (max-width: 800px) { .v2-ty-encourage-inner { grid-template-columns: 1fr; text-align: center; } }

.v2-ty-encourage-copy {
    align-self: center;
    padding-bottom: 1rem;
}

.v2-ty-encourage-photo {
    position: relative;
    text-align: center;
    align-self: end;
    margin-bottom: -6rem;   /* flush her feet with section's outer bottom */
    line-height: 0;
}
.v2-ty-encourage-photo img {
    max-width: 360px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
}

.v2-ty-encourage-heading {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    color: var(--v2-white);
    margin-bottom: 1.5rem;
}
.v2-ty-encourage-heading em { font-family: var(--v2-font-serif); }
.v2-ty-encourage-heading .v2-script { font-size: 1em; vertical-align: middle; margin-left: 0.5rem; }
.v2-ty-encourage-copy p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.1rem;
    line-height: 1.65;
    font-size: 1.05rem;
}
.v2-ty-encourage-copy .v2-btn { margin-top: 1rem; }
.v2-ty-signature {
    margin-top: 1.5rem;
    font-family: var(--v2-font-serif);
    font-style: italic;
    color: rgba(255,255,255,0.95);
}
.v2-ty-signature strong { color: var(--v2-yellow); font-style: normal; }


/* ═══════════════════════════════════════════════════════════════
   COUNTDOWN — live launch ticker (above pricing)
   ═══════════════════════════════════════════════════════════════ */
.v2-countdown {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 760px;
}

.v2-countdown-label {
    display: inline-block;
    background: var(--v2-magenta);
    color: var(--v2-white);
    padding: 0.45rem 1rem;
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 6px;
    border: 2px solid var(--v2-ink);
    box-shadow: 3px 3px 0 var(--v2-ink);
    transform: rotate(-2deg);
    margin-bottom: 1.5rem;
}

.v2-countdown-boxes {
    display: inline-flex;
    gap: 0.65rem;
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: center;
}

.v2-countdown-box {
    background: var(--v2-yellow);
    color: var(--v2-ink);
    border: 3px solid var(--v2-ink);
    border-radius: 10px;
    box-shadow: 4px 4px 0 var(--v2-magenta);
    padding: 0.85rem 0.5rem 0.7rem;
    width: 7rem;          /* fixed — boxes stay rock-stable as digits tick */
    flex: 0 0 7rem;       /* don't let flex layout stretch or shrink them */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v2-countdown-num {
    font-family: var(--v2-font-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 0.95;
    color: var(--v2-ink);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
}

.v2-countdown-unit {
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-ink-soft);
    margin-top: 0.3rem;
}

.v2-countdown-sep {
    font-family: var(--v2-font-display);
    font-size: 2rem;
    line-height: 1;
    color: var(--v2-magenta);
    align-self: center;
}

.v2-countdown-meta {
    margin-top: 1.5rem;
    font-family: var(--v2-font-serif);
    text-align: center;
    color: var(--v2-ink);
    line-height: 1.4;
}
.v2-countdown-meta strong {
    display: block;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.6vw, 1.7rem);
    color: var(--v2-ink);
}
.v2-countdown-meta span {
    display: block;
    font-style: italic;
    font-size: clamp(1rem, 1.9vw, 1.2rem);
    color: var(--v2-ink-soft);
    margin-top: 0.35rem;
}

.v2-countdown-done {
    background: var(--v2-cyan);
    color: var(--v2-white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 3px solid var(--v2-ink);
    box-shadow: 6px 6px 0 var(--v2-ink);
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
}

@media (max-width: 600px) {
    .v2-pricing         { padding-left: 1rem; padding-right: 1rem; }
    .v2-countdown-boxes { gap: 0.35rem; }
    .v2-countdown-box   { width: 4.5rem; flex: 0 0 4.5rem; padding: 0.7rem 0.4rem 0.55rem; }
    .v2-countdown-sep   { display: none; }
    .v2-countdown-unit  { font-size: 0.6rem; }
}


/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES — compact branded hero + prose body
   ═══════════════════════════════════════════════════════════════ */
.v2-legal-hero {
    background: var(--v2-grad-hero);
    color: var(--v2-white);
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    position: relative;
}
.v2-legal-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}
.v2-legal-chip {
    display: inline-block;
    background: var(--v2-yellow);
    color: var(--v2-ink);
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--v2-ink);
    box-shadow: 3px 3px 0 var(--v2-ink);
    transform: rotate(-2deg);
}
.v2-legal-title {
    font-family: var(--v2-font-display);
    font-weight: 400;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 0.95;
    color: var(--v2-white);
    -webkit-text-stroke: 1px rgba(24, 18, 37, 0.55);
    text-shadow: 4px 4px 0 rgba(24, 18, 37, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
}
.v2-legal-subtitle {
    font-family: var(--v2-font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.4;
}

.v2-legal-section {
    background: var(--v2-cream);
    padding: 4rem 1.5rem 5rem;
}

.v2-prose {
    max-width: 780px;
    margin: 0 auto;
    background: var(--v2-white);
    border: 3px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 10px 10px 0 var(--v2-cyan);
    padding: 2.75rem 2.5rem;
    color: var(--v2-ink-soft);
    line-height: 1.7;
}
@media (max-width: 600px) {
    .v2-prose { padding: 2rem 1.5rem; box-shadow: 6px 6px 0 var(--v2-cyan); }
}

.v2-prose h2 {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.25;
    color: var(--v2-ink);
    margin: 2.25rem 0 0.9rem;
}
.v2-prose h2:first-child { margin-top: 0; }

.v2-prose p {
    margin-bottom: 1.1rem;
    font-size: 1rem;
}
.v2-prose p:last-of-type { margin-bottom: 0; }

.v2-prose strong { color: var(--v2-ink); font-weight: 700; }

.v2-prose a {
    color: var(--v2-magenta);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
    word-break: break-word;
}
.v2-prose a:hover { color: var(--v2-magenta-deep); }

.v2-prose ul,
.v2-prose ol {
    margin: 0 0 1.25rem 1.5rem;
    padding-left: 0.25rem;
}
.v2-prose ul li,
.v2-prose ol li {
    margin-bottom: 0.55rem;
    line-height: 1.6;
}
.v2-prose ol ol {
    margin: 0.55rem 0 0.5rem 1.25rem;
}

.v2-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 2.5rem;
    font-family: var(--v2-font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--v2-magenta);
    text-decoration: none;
    border-bottom: 2px solid var(--v2-magenta);
    padding-bottom: 0.2rem;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.v2-back-link:hover {
    color: var(--v2-magenta-deep);
    border-color: var(--v2-magenta-deep);
}


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


/* ═══════════════════════════════════════════════════════════════
   LIVE SESSIONS page (/live) — students-only Zoom hub
   ═══════════════════════════════════════════════════════════════ */
.v2-live-section {
    background: var(--v2-cream);
    padding: 4rem 1.5rem 5rem;
}
.v2-live-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.v2-live-card {
    background: var(--v2-white);
    border: 3px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 8px 8px 0 var(--v2-magenta);
    padding: 2.25rem 1.5rem;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}
.v2-live-card-topic {
    font-family: var(--v2-font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    color: var(--v2-ink);
    margin: 0;
}
.v2-live-card-note {
    color: var(--v2-ink-soft);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    max-width: 36rem;
}

/* ── Add-to-calendar dropdown ─────────────────────────────────── */
.v2-cal {
    position: relative;
    display: inline-block;
    margin: 0;
}
.v2-cal-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--v2-white);
    color: var(--v2-ink);
    border: 2px solid var(--v2-ink);
    border-radius: 6px;
    box-shadow: 0 3px 0 var(--v2-ink);
    padding: 0.6rem 1rem;
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.v2-cal-toggle:hover {
    background: var(--v2-yellow);
    transform: translateY(-1px);
    box-shadow: 0 4px 0 var(--v2-ink);
}
.v2-cal-toggle:active { transform: translateY(1px); box-shadow: 0 2px 0 var(--v2-ink); }
.v2-cal-chev {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}
.v2-cal-toggle[aria-expanded="true"] .v2-cal-chev { transform: rotate(180deg); }

.v2-cal-menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: var(--v2-white);
    border: 3px solid var(--v2-ink);
    border-radius: 10px;
    box-shadow: 6px 6px 0 var(--v2-magenta);
    padding: 0.5rem;
    z-index: 30;
    text-align: left;
}
.v2-cal-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
    color: var(--v2-ink);
    font-family: var(--v2-font-body);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background 0.15s ease;
}
.v2-cal-item:hover,
.v2-cal-item:focus-visible {
    background: var(--v2-cream);
    color: var(--v2-magenta);
    outline: none;
}
.v2-cal-logo {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: block;
}

/* "Live now" call-out the countdown script swaps in at start time */
.v2-countdown-done {
    text-decoration: none;
}
.v2-countdown-done:hover {
    transform: translate(-1px, -1px);
    box-shadow: 7px 7px 0 var(--v2-ink);
}

.v2-live-upcoming {
    border-top: 2px dashed rgba(24, 18, 37, 0.25);
    padding-top: 2.5rem;
    margin-top: 1rem;
}
.v2-live-upcoming-heading {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--v2-ink);
    margin-bottom: 0.85rem;
}
.v2-live-upcoming-empty {
    color: var(--v2-ink-soft);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.v2-live-help {
    margin-top: 3rem;
    color: var(--v2-ink-soft);
    font-size: 0.92rem;
}
.v2-live-help a {
    color: var(--v2-magenta);
    text-decoration: underline;
    font-weight: 700;
}


/* ── Enrollment-request form ──────────────────────────────────── */
.v2-enroll {
    background: var(--v2-white);
    border: 3px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 8px 8px 0 var(--v2-cyan);
    padding: 2.25rem 1.75rem;
    margin: 3rem auto 0;
    text-align: left;
    max-width: 560px;
}
.v2-enroll-heading {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--v2-ink);
    margin: 0 0 0.75rem;
    text-align: center;
}
.v2-enroll-blurb {
    color: var(--v2-ink-soft);
    font-size: 0.98rem;
    line-height: 1.55;
    margin: 0 0 1.75rem;
    text-align: center;
}

.v2-enroll-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.v2-enroll-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.v2-enroll-label {
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v2-ink);
}
.v2-enroll-input {
    font-family: var(--v2-font-body);
    font-size: 1rem;
    color: var(--v2-ink);
    background: var(--v2-white);
    border: 2px solid var(--v2-ink);
    border-radius: 6px;
    padding: 0.75rem 0.9rem;
    box-shadow: 3px 3px 0 var(--v2-ink);
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
    width: 100%;
}
.v2-enroll-input::placeholder { color: rgba(24, 18, 37, 0.4); }
.v2-enroll-input:focus {
    outline: none;
    border-color: var(--v2-magenta);
    box-shadow: 3px 3px 0 var(--v2-magenta);
}
.v2-enroll-input.invalid,
.v2-enroll-input.modified.invalid {
    border-color: var(--v2-magenta);
    box-shadow: 3px 3px 0 var(--v2-magenta);
}
.v2-enroll-error {
    color: var(--v2-magenta);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
}
.v2-enroll-error--summary {
    background: rgba(236, 22, 131, 0.08);
    border: 2px solid var(--v2-magenta);
    border-radius: 6px;
    padding: 0.7rem 0.85rem;
    margin-bottom: 0.25rem;
}
.v2-enroll-form .v2-btn {
    align-self: center;
    margin-top: 0.5rem;
}

.v2-enroll-success {
    background: var(--v2-cyan);
    color: var(--v2-white);
    border: 3px solid var(--v2-ink);
    border-radius: 14px;
    box-shadow: 6px 6px 0 var(--v2-ink);
    padding: 1.8rem 1.5rem 1.6rem;
    font-family: var(--v2-font-body);
    text-align: center;
    animation: v2-enroll-pop 380ms cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
@keyframes v2-enroll-pop {
    0%   { transform: scale(0.85) translateY(8px); opacity: 0; }
    100% { transform: scale(1)    translateY(0);   opacity: 1; }
}

.v2-enroll-success-emoji {
    font-size: 3.4rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: v2-enroll-emoji 1.4s ease-in-out infinite alternate;
}
@keyframes v2-enroll-emoji {
    0%   { transform: rotate(-10deg) scale(1); }
    100% { transform: rotate(10deg)  scale(1.08); }
}

.v2-enroll-success-title {
    font-family: var(--v2-font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--v2-white);
    margin: 0 0 0.6rem;
    letter-spacing: 0.01em;
    line-height: 1.05;
    text-shadow: 2px 2px 0 var(--v2-ink);
}

.v2-enroll-success-text {
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.45;
    color: var(--v2-white);
    margin: 0 auto 0.75rem;
    max-width: 460px;
}
.v2-enroll-success-text strong { font-weight: 800; }

.v2-enroll-success-hint {
    font-size: 0.86rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto;
    max-width: 460px;
    font-weight: 500;
}
.v2-enroll-success-hint a {
    color: var(--v2-yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 700;
}
.v2-enroll-success-hint a:hover { color: var(--v2-white); }

/* Inline submit spinner — appears in the button while the form is being processed. */
.v2-enroll-spinner {
    display: inline-block;
    width: 1.05em;
    height: 1.05em;
    border: 2.5px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: v2-enroll-spin 0.7s linear infinite;
    vertical-align: -3px;
    margin-right: 8px;
}
@keyframes v2-enroll-spin { to { transform: rotate(360deg); } }

.v2-btn[disabled],
.v2-btn[data-enroll-submit]:disabled {
    opacity: 0.85;
    cursor: wait;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   ADMIN — login + enrollment-requests dashboard (/admin)
   Self-contained; doesn't depend on the .v2 wrapper.
   ═══════════════════════════════════════════════════════════════ */
.admin,
.admin-auth {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1a1a2e;
    box-sizing: border-box;
}
.admin *,
.admin-auth * { box-sizing: border-box; }

/* ── Login ── */
.admin-auth {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f4f4f8;
}
.admin-auth-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border: 1px solid #e3e3ee;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(26, 26, 46, 0.08);
}
.admin-auth-title { font-size: 1.6rem; font-weight: 900; margin: 0 0 4px; }
.admin-auth-sub   { color: #6b6b80; margin: 0 0 24px; font-size: 0.95rem; }
.admin-auth-field { margin-bottom: 16px; }
.admin-auth-label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }
.admin-auth-input {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #d3d3e0;
    border-radius: 9px;
    font-size: 1rem;
}
.admin-auth-input:focus { outline: 2px solid #6c5ce7; border-color: #6c5ce7; }
.admin-auth-msg   { display: block; color: #d63031; font-size: 0.8rem; margin-top: 5px; }
.admin-auth-error {
    background: #fff0f0;
    border: 1px solid #ffc9c9;
    color: #c0392b;
    padding: 10px 13px;
    border-radius: 9px;
    font-size: 0.88rem;
    margin-bottom: 18px;
}

/* ── Dashboard ── */
.admin {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 24px 64px;
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.admin-h1    { font-size: 1.7rem; font-weight: 900; margin: 0; }
.admin-count { color: #6b6b80; margin: 4px 0 0; font-size: 0.9rem; }
.admin-actions { display: flex; gap: 10px; align-items: center; }
.admin-empty { color: #6b6b80; }

.admin-btn {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 9px;
    border: 1px solid #d3d3e0;
    background: #fff;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
}
.admin-btn:hover         { background: #f4f4f8; }
.admin-btn--primary      { width: 100%; background: #6c5ce7; color: #fff; border-color: #6c5ce7; padding: 12px; font-size: 1rem; }
.admin-btn--primary:hover { background: #5b4bd6; }
.admin-btn--ghost        { background: transparent; }

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid #e3e3ee;
    border-radius: 12px;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.admin-table th,
.admin-table td {
    text-align: left;
    padding: 11px 14px;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}
.admin-table th {
    background: #f8f8fc;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #6b6b80;
}
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover { background: #faf9ff; }
.admin-table a { color: #6c5ce7; }

/* ── Admin: flash message, manual-add form, row actions ── */
.admin-flash {
    margin-bottom: 20px;
    padding: 11px 14px;
    border-radius: 9px;
    font-size: 0.9rem;
    background: #eafaf0;
    border: 1px solid #b7ebc6;
    color: #1e7a43;
}
.admin-flash--error {
    background: #fff0f0;
    border-color: #ffc9c9;
    color: #c0392b;
}

.admin-add {
    background: #fff;
    border: 1px solid #e3e3ee;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 24px;
}
.admin-add-title { font-size: 1rem; font-weight: 800; margin: 0 0 12px; }
.admin-add-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.admin-add-field { flex: 1 1 200px; }
.admin-add-btn {
    width: auto;
    flex: 0 0 auto;
    padding: 11px 22px;
}

.admin-btn--sm {
    padding: 6px 12px;
    font-size: 0.82rem;
}
.admin-synced {
    color: #1e7a43;
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
}

.admin-asof {
    margin-top: 5px;
    font-size: 0.72rem;
    color: #9a9ab0;
    white-space: nowrap;
}

/* ── Admin: loading spinner on action buttons during long Teachable calls ── */
.admin-spinner {
    display: inline-block;
    width: 0.85em;
    height: 0.85em;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: admin-spin 0.7s linear infinite;
    vertical-align: -2px;
    margin-right: 4px;
}
@keyframes admin-spin { to { transform: rotate(360deg); } }

.admin-btn:disabled {
    opacity: 0.75;
    cursor: wait;
}

.admin-btn--sm {
    padding: 6px 10px;
    font-size: 0.78rem;
}

/* ── Admin: edit class member form (/admin/class/{id}/edit) ── */
.admin-edit-form  { display: flex; flex-direction: column; gap: 16px; }
.admin-edit-field { display: flex; flex-direction: column; gap: 6px; }
.admin-edit-photo {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-radius: 12px;
}
.admin-edit-photo.is-dragover { outline: 2px dashed #6c5ce7; outline-offset: 6px; }
.admin-edit-photo-current {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e3e3ee;
    flex: 0 0 auto;
    cursor: pointer;
}
.admin-edit-photo-current:hover { border-color: #6c5ce7; }
.admin-edit-photo-replace {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
}
.admin-edit-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}
.admin-edit-actions { display: flex; gap: 12px; align-items: center; }
.admin-edit-save    { width: auto; flex: 0 0 auto; }

/* ═══════════════════════════════════════════════════════════════
   Class-of-2026 gallery (/class) + submit form (/class/submit)
   ═══════════════════════════════════════════════════════════════ */

/* Outer page wrapper paints the cream over the full viewport — the inner .bcgallery
   stays constrained for legibility. Same shape on .bcsubmit-page below. */
.bcgallery-page,
.bcsubmit-page {
    background: var(--v2-cream);
    min-height: 100vh;
    width: 100%;
}

.bcgallery {
    max-width: 1080px;
    margin: 0 auto;
    padding: 56px 24px 80px;
}

.bcgallery-head {
    text-align: center;
    margin-bottom: 48px;
}

.bcgallery-kicker {
    font-family: var(--v2-font-script);
    color: var(--v2-magenta);
    font-size: 1.4rem;
    margin: 0 0 4px;
    letter-spacing: 0.02em;
}

.bcgallery-title {
    font-family: var(--v2-font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    letter-spacing: 0.01em;
    color: var(--v2-ink);
    margin: 0 0 12px;
    line-height: 1.05;
}

.bcgallery-sub {
    color: var(--v2-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 22px;
}

.bcgallery-cta {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--v2-grad-coral);
    color: var(--v2-white);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--v2-shadow-card);
    transition: transform 120ms ease, box-shadow 120ms ease;
}
.bcgallery-cta:hover { transform: translateY(-1px); box-shadow: var(--v2-shadow-lg); }

.bcgallery-welcome {
    margin: 22px auto 0;
    max-width: 480px;
    padding: 12px 16px;
    border-radius: var(--v2-radius-sm);
    background: var(--v2-yellow);
    color: var(--v2-ink);
    font-weight: 600;
}

.bcgallery-empty {
    text-align: center;
    color: var(--v2-muted);
    padding: 40px 16px;
}
.bcgallery-empty a { color: var(--v2-magenta); font-weight: 600; }

/* Flex (not grid) so a partial last row centers instead of clinging to the
   left edge. Full rows still pack edge-to-edge; only the leftover row centers. */
.bcgallery-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 22px;
}

.bcgallery-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 0 1 180px;
}

.bcgallery-card.is-new {
    animation: bcgallery-pulse 1.6s ease 2;
    border-radius: var(--v2-radius);
}

@keyframes bcgallery-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(236, 22, 131, 0); }
    50%      { box-shadow: 0 0 0 10px rgba(236, 22, 131, 0.25); }
}

/* ── Host card (Kristina) ──────────────────────────────────────
   The host leads the class with a yellow ring + "Your Host" pill. */
.bcgallery-card--host .bcgallery-photo {
    border-color: var(--v2-yellow);
    box-shadow: 0 0 0 4px var(--v2-yellow-deep), var(--v2-shadow-lg);
}

.bcgallery-hostbadge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    padding: 3px 12px;
    border-radius: 999px;
    background: var(--v2-yellow);
    color: var(--v2-ink);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(24, 18, 37, 0.12);
}

.bcgallery-photo {
    display: block;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--v2-magenta);
    background: var(--v2-magenta-soft);
    box-shadow: var(--v2-shadow-card);
    transition: transform 160ms ease, box-shadow 160ms ease;
}
.bcgallery-photo:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--v2-shadow-lg);
}
.bcgallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bcgallery-name {
    font-weight: 700;
    color: var(--v2-ink);
    font-size: 1rem;
    margin-top: 8px;
}

.bcgallery-bio {
    color: var(--v2-muted);
    font-size: 0.85rem;
    line-height: 1.35;
    max-width: 200px;
    margin: 0;
}

.bcgallery-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Each link is a 36px brand-colored circle with the white logo inside.
   Brand hexes match the official Substack (#FF6719) and LinkedIn (#0A66C2) marks. */
.bcgallery-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(24, 18, 37, 0.12);
    transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}
.bcgallery-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(24, 18, 37, 0.18);
    filter: brightness(1.05);
}
.bcgallery-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: var(--v2-white);
}
.bcgallery-icon--substack { background: #FF6719; }
.bcgallery-icon--linkedin { background: #0A66C2; }
.bcgallery-icon--book { background: #9A6A3E; }

/* ── Submit form ─────────────────────────────────────────────── */

.bcsubmit {
    max-width: 680px;
    margin: 0 auto;
    padding: 56px 24px 80px;
}

.bcsubmit-head { text-align: center; margin-bottom: 32px; }

.bcsubmit-kicker {
    font-family: var(--v2-font-script);
    color: var(--v2-magenta);
    font-size: 1.3rem;
    margin: 0 0 4px;
}

.bcsubmit-title {
    font-family: var(--v2-font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    letter-spacing: 0.01em;
    color: var(--v2-ink);
    margin: 0 0 10px;
    line-height: 1.05;
}

.bcsubmit-sub {
    color: var(--v2-muted);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}
.bcsubmit-sub a { color: var(--v2-magenta); font-weight: 600; }

.bcsubmit-error {
    background: #FFE7E0;
    color: #9A2A0F;
    border: 1px solid #FFB39B;
    border-radius: var(--v2-radius-sm);
    padding: 12px 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.bcsubmit-form {
    background: var(--v2-white);
    border-radius: var(--v2-radius);
    box-shadow: var(--v2-shadow-card);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bcsubmit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bcsubmit-field { display: flex; flex-direction: column; gap: 6px; }
.bcsubmit-field--photo { grid-column: 1 / -1; }

.bcsubmit-label {
    font-weight: 600;
    color: var(--v2-ink);
    font-size: 0.92rem;
}
.bcsubmit-req { color: var(--v2-magenta); }

.bcsubmit-input {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border: 1.5px solid #E4DCE8;
    border-radius: var(--v2-radius-sm);
    font-size: 1rem;
    font-family: var(--v2-font-body);
    color: var(--v2-ink);
    background: var(--v2-white);
    transition: border-color 120ms ease, box-shadow 120ms ease;
}
.bcsubmit-input:focus {
    outline: none;
    border-color: var(--v2-magenta);
    box-shadow: 0 0 0 3px rgba(236, 22, 131, 0.15);
}

.bcsubmit-drop {
    position: relative;
    border: 2px dashed var(--v2-magenta);
    border-radius: var(--v2-radius);
    background: var(--v2-magenta-soft);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    padding: 24px;
    transition: background 120ms ease, border-color 120ms ease;
}
.bcsubmit-drop:hover, .bcsubmit-drop:focus { background: #FFE5F1; outline: none; }
.bcsubmit-drop.is-dragover {
    background: #FFD1E5;
    border-color: var(--v2-magenta-deep);
}

.bcsubmit-file {
    /* The native input is hidden but still in the DOM — clicks on the dropzone forward
       to it, and drag/drop + paste handlers programmatically assign files to it. */
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.bcsubmit-drop-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--v2-ink-soft);
}
.bcsubmit-drop-empty strong {
    font-size: 1.1rem;
    color: var(--v2-ink);
}
.bcsubmit-drop-icon {
    font-size: 2.2rem;
    margin-bottom: 4px;
    line-height: 1;
}
.bcsubmit-drop-hint {
    margin-top: 6px;
    font-size: 0.82rem;
    color: var(--v2-muted);
}

.bcsubmit-preview {
    max-width: 200px;
    max-height: 200px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--v2-white);
    box-shadow: var(--v2-shadow-card);
    background: var(--v2-white);
}

.bcsubmit-clear {
    margin-top: 14px;
    border: none;
    background: var(--v2-white);
    color: var(--v2-magenta);
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--v2-shadow-card);
}
.bcsubmit-clear:hover { background: var(--v2-magenta-soft); }

.bcsubmit-btn {
    margin-top: 6px;
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: var(--v2-radius-sm);
    background: var(--v2-grad-coral);
    color: var(--v2-white);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease;
    box-shadow: var(--v2-shadow-card);
}
.bcsubmit-btn:hover { transform: translateY(-1px); box-shadow: var(--v2-shadow-lg); }
.bcsubmit-btn:disabled { opacity: 0.75; cursor: wait; transform: none; }

.bcsubmit-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: var(--v2-white);
    border-radius: 50%;
    animation: admin-spin 0.7s linear infinite;
    vertical-align: -2px;
    margin-right: 6px;
}

@media (max-width: 640px) {
    .bcsubmit-row { grid-template-columns: 1fr; }
    .bcgallery-photo { width: 110px; height: 110px; }
}

/* ── Admin: tab nav + per-tab content ───────────────────────────
   Plain CSS values (not v2 tokens) because .admin is NOT scoped to .v2,
   so any var(--v2-*) here would resolve to the inherited default. */

.admin-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #ECE8F0;
    margin: 8px 0 24px;
    flex-wrap: wrap;
}
.admin-tab {
    padding: 10px 18px;
    text-decoration: none;
    color: #6b6b80;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 120ms ease, border-color 120ms ease;
}
.admin-tab:hover { color: #1a1a2e; }
.admin-tab.is-active {
    color: #6c5ce7;
    border-bottom-color: #6c5ce7;
}
.admin-tab-count {
    background: #f0f0f8;
    color: #6b6b80;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    min-width: 22px;
    text-align: center;
}
.admin-tab.is-active .admin-tab-count {
    background: #6c5ce7;
    color: #fff;
}

.admin-tab-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Class-of-2026 moderation list ───────────────────────────── */

.admin-bc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-bc-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    align-items: center;
    background: #fff;
    border: 1px solid #e3e3ee;
    border-radius: 12px;
    padding: 12px 14px;
}
.admin-bc-item.is-hidden { opacity: 0.55; background: #fafafd; }

.admin-bc-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    background: #f0f0f8;
}

.admin-bc-meta { min-width: 0; }
.admin-bc-name { font-weight: 700; color: #1a1a2e; font-size: 0.98rem; }
.admin-bc-bio  { color: #6b6b80; font-size: 0.88rem; margin: 2px 0 4px; }
.admin-bc-links {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.85rem;
}
.admin-bc-links a { color: #6c5ce7; text-decoration: none; }
.admin-bc-links a:hover { text-decoration: underline; }

.admin-bc-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

@media (max-width: 560px) {
    .admin-bc-item { grid-template-columns: 48px 1fr; }
    .admin-bc-photo { width: 48px; height: 48px; }
    .admin-bc-actions { grid-column: 1 / -1; justify-content: flex-end; }
}


/* ════════════════════════════════════════════════════════════════
   MEET YOUR HOSTS — Substack for Authors (host + co-host cards)
   ════════════════════════════════════════════════════════════════ */
.v2-hosts {
    background: var(--v2-white);
    padding: 5rem 1.5rem;
}
.v2-hosts-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.v2-hosts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin-top: 2.5rem;
}
.v2-host-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--v2-white);
    border: 2px solid var(--v2-ink);
    border-radius: 18px;
    box-shadow: 6px 6px 0 var(--v2-ink);
    overflow: hidden;
}

/* Gold Substack-bestseller medal pinned to the card's top-right corner. */
.v2 .v2-host-badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 5;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(24, 18, 37, 0.35);
    transform: rotate(8deg);
}
@media (prefers-reduced-motion: no-preference) {
    .v2 .v2-host-badge {
        animation: v2-badge-swing 4s ease-in-out infinite,
                   v2-badge-glow 2.4s ease-in-out infinite;
    }
}
@keyframes v2-badge-swing {
    0%, 100% { transform: rotate(8deg) scale(1); }
    25%      { transform: rotate(2deg) scale(1.04); }
    50%      { transform: rotate(10deg) scale(1); }
    75%      { transform: rotate(5deg) scale(1.03); }
}
@keyframes v2-badge-glow {
    0%, 100% { box-shadow: 0 6px 18px rgba(24, 18, 37, 0.35), 0 0 0 0 rgba(255, 214, 10, 0.65); }
    50%      { box-shadow: 0 6px 18px rgba(24, 18, 37, 0.35), 0 0 0 14px rgba(255, 214, 10, 0); }
}
@media (max-width: 760px) {
    .v2 .v2-host-badge { width: 74px; height: 74px; }
}

/* Small proof screenshots with tap-to-zoom. */
.v2-host-proofs {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(24, 18, 37, 0.1);
}
.v2-host-proof {
    padding: 0;
    background: none;
    border: 2px solid var(--v2-ink);
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 3px 3px 0 var(--v2-ink);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.v2-host-proof:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--v2-ink);
}
.v2 .v2-host-proof img {
    display: block;
    height: 230px;
    width: auto;
}
.v2-host-proofs-hint {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--v2-muted);
}

/* Fullscreen lightbox for the proofs. */
.v2-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    background: rgba(24, 18, 37, 0.88);
    padding: 2rem;
    cursor: zoom-out;
}
.v2-lightbox[hidden] { display: none; }
.v2 .v2-lightbox img {
    max-width: min(92vw, 720px);
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    border: 2px solid var(--v2-white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.v2-host-photo {
    aspect-ratio: 4 / 3;
    background: var(--v2-magenta-soft);
    overflow: hidden;
}
.v2-host-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
/* Instructor cards: Kristina on pink, Fleur on yellow — both cutouts fully
   visible at matched scale so neither reads bigger than the other. */
.v2-host-photo--kristina { background: var(--v2-magenta-soft); }
.v2-host-photo--fleur    { background: var(--v2-yellow); }
.v2-host-photo--kristina,
.v2-host-photo--fleur {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.v2-host-photo--kristina img,
.v2-host-photo--fleur img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}
/* Fleur's photo is a tighter crop (thigh-up vs full body) — 84% height makes
   the two of them the same visual size. */
.v2-host-photo--fleur img {
    height: 84%;
    filter: drop-shadow(3px 0 0 #fff) drop-shadow(-3px 0 0 #fff)
            drop-shadow(0 3px 0 #fff) drop-shadow(0 -3px 0 #fff);
}
.v2-host-body { padding: 1.5rem 1.6rem 1.75rem; }

/* "featured in" wordmark strip under a host bio */
.v2-host-featured {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.85rem;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(24, 18, 37, 0.1);
}
.v2-host-featured-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-muted);
}
/* Doubled selectors outweigh the global `.v2 img { height: auto }` reset. */
.v2 .v2-host-featured-img {
    height: 44px;
    width: auto;
    max-width: none;
    display: inline-block;
}
.v2 .v2-host-featured-img--bp { height: 78px; }
.v2-host-role {
    display: inline-block;
    font-family: var(--v2-font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-white);
    background: var(--v2-magenta);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.75rem;
}
.v2-host-role--co { background: var(--v2-cyan); }
.v2-host-name {
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.05;
    margin: 0 0 0.6rem;
    color: var(--v2-ink);
}
.v2-host-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--v2-ink-soft);
    margin: 0 0 1rem;
}
.v2-host-link {
    font-weight: 700;
    color: var(--v2-magenta);
    text-decoration: none;
}
.v2-host-link:hover { text-decoration: underline; }


/* ════════════════════════════════════════════════════════════════
   WHAT YOU'LL BUILD — author outcomes list
   ════════════════════════════════════════════════════════════════ */
.v2-learn {
    background: var(--v2-cream-warm);
    padding: 5rem 1.5rem;
}
.v2-learn-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.v2-learn-grid {
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.v2-learn-grid li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: var(--v2-white);
    border: 2px solid var(--v2-ink);
    border-radius: 14px;
    box-shadow: 4px 4px 0 var(--v2-ink);
    padding: 1.1rem 1.25rem;
    font-size: 1.02rem;
    line-height: 1.5;
    color: var(--v2-ink);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.v2-learn-grid li:hover {
    transform: translate(-2px, -3px);
    box-shadow: 7px 9px 0 var(--v2-magenta);
}
.v2-learn-text {
    min-width: 0;          /* allow the flex item to shrink so text wraps */
    flex: 1 1 auto;
    color: var(--v2-ink);
}
.v2-learn-text strong { color: var(--v2-ink); font-weight: 800; }
.v2-learn-for {
    margin: 2rem auto 0;
    max-width: 720px;
    text-align: center;
    font-size: 1.05rem;
    color: var(--v2-ink-soft);
}

@media (max-width: 760px) {
    .v2-hosts, .v2-learn { padding: 3.25rem 1.25rem; }
    .v2-hosts-grid { grid-template-columns: 1fr; }
    .v2-learn-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════════
   JOBS EXAMPLE — real author blog screenshot in "4 tools in one"
   ════════════════════════════════════════════════════════════════ */
.v2-jobs-example {
    position: relative;
    max-width: 860px;
    margin: 2.75rem auto;
    text-align: center;
}
/* Colette's cutout with the hero-style white outline, sitting at her blog's
   corner holding The Cost of Quiet. */
.v2 .v2-jobs-colette {
    position: absolute;
    right: 1.2rem;
    bottom: 2.6rem;
    height: 390px;
    width: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(3px 0 0 #fff) drop-shadow(-3px 0 0 #fff)
            drop-shadow(0 3px 0 #fff) drop-shadow(0 -3px 0 #fff)
            drop-shadow(0 18px 32px rgba(24, 18, 37, 0.35));
}
@media (max-width: 760px) {
    .v2 .v2-jobs-colette { height: 220px; right: 0.5rem; bottom: 3.6rem; }
}
/* Frame the linked screenshot only — not the Colette cutout overlay. */
.v2-jobs-example a img {
    width: 100%;
    border: 2px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 6px 6px 0 var(--v2-ink);
}
.v2-jobs-example figcaption {
    margin-top: 1rem;
    font-size: 0.92rem;
    color: var(--v2-muted);
}
.v2-jobs-example figcaption a {
    color: var(--v2-magenta);
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ════════════════════════════════════════════════════════════════
   FREE BONUSES — numbered panels, sales-page style
   ════════════════════════════════════════════════════════════════ */
.v2-bonus {
    background: var(--v2-white);
    padding: 5rem 1.5rem;
}
.v2-bonus-inner {
    max-width: 940px;
    margin: 0 auto;
}
.v2-bonus-item {
    position: relative;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1.75rem;
    align-items: center;
    border: 2px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 6px 6px 0 var(--v2-ink);
    padding: 2.1rem 2rem 1.9rem;
    margin-top: 2.4rem;
}
.v2-bonus-item--plum {
    background: linear-gradient(135deg, var(--v2-plum) 0%, var(--v2-plum-deep) 100%);
    color: var(--v2-white);
}
.v2-bonus-item--plum .v2-bonus-body p { color: rgba(255, 255, 255, 0.85); }
.v2-bonus-item--soft   { background: var(--v2-magenta-soft); }
.v2-bonus-item--yellow { background: var(--v2-yellow); }
.v2-bonus-item--cyan   { background: #D9F2FB; }
.v2-bonus-item--warm   { background: var(--v2-cream-warm); }

.v2-bonus-tag {
    position: absolute;
    top: -1rem;
    left: 1.2rem;
    background: var(--v2-ink);
    color: var(--v2-yellow);
    border-radius: 6px;
    box-shadow: 3px 3px 0 rgba(24, 18, 37, 0.35);
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: rotate(-2deg);
}

.v2-bonus-media {
    display: grid;
    place-items: center;
}
.v2-bonus-media img {
    width: 100%;
    border-radius: var(--v2-radius-sm);
}
.v2-bonus-media--emoji {
    font-size: 4.5rem;
    line-height: 1;
    background: var(--v2-white);
    border: 2px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.v2-bonus-body h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}
.v2-bonus-sub {
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}
.v2-bonus-body p {
    font-size: 0.97rem;
    line-height: 1.6;
    color: var(--v2-ink-soft);
}
.v2-bonus-value {
    display: inline-block;
    margin-top: 0.75rem;
    font-family: var(--v2-font-script);
    font-size: 1.35rem;
    transform: rotate(-2deg);
    color: inherit;
}

/* Bonus link inside the pricing feature list. */
.v2-pricing-feature-link {
    color: var(--v2-magenta) !important;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.v2-pricing-feature-link:hover { color: var(--v2-magenta-deep) !important; }

/* "You get ALL of this" reassurance above the CTA. */
.v2-bonus-all {
    margin: 2.5rem auto 0;
    max-width: 620px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--v2-ink);
}

@media (max-width: 720px) {
    .v2-bonus { padding: 3.25rem 1.25rem; }
    .v2-bonus-item { grid-template-columns: 1fr; text-align: center; padding: 2.3rem 1.4rem 1.9rem; }
    .v2-bonus-media { max-width: 260px; margin: 0 auto; }
}


/* ════════════════════════════════════════════════════════════════
   YOUR BOOK + SUBSTACK — the book-path pitch section
   ════════════════════════════════════════════════════════════════ */
.v2-book { background: var(--v2-white); padding: 5rem 1.5rem; }
.v2-book-inner { max-width: 940px; margin: 0 auto; }

.v2-book-lead {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.08rem;
    color: var(--v2-ink-soft);
    display: grid;
    gap: 1.1rem;
}

/* "Even publishers are telling their authors:" — spaced from the paragraph,
   with the speech bubble's tail pointing up at it. */
.v2-book-publishers {
    margin-top: 1.4rem;
    font-weight: 800;
    font-size: 1.12rem;
    color: var(--v2-ink);
}
/* Second lead-in sits outside the centered lead block, so center it here. */
.v2-book-publishers--second {
    text-align: center;
    margin-top: 2.2rem;
}

/* "Get on Substack!" — what publishers tell their authors, as a speech bubble
   with a megaphone shouting it. */
.v2-book-bubble-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 1.4rem;
}
/* Cone shouts rightward at the bubble. */
.v2-book-mega {
    font-size: 3.1rem;
    line-height: 1;
    display: inline-block;
    transform: rotate(-10deg);
}
@media (prefers-reduced-motion: no-preference) {
    .v2-book-mega { animation: v2-mega-shout 3.5s ease-in-out infinite; }
}
@keyframes v2-mega-shout {
    0%, 55%, 100% { transform: rotate(-10deg) scale(1); }
    62% { transform: rotate(-6deg) scale(1.12); }
    70% { transform: rotate(-13deg) scale(1.05); }
    78% { transform: rotate(-8deg) scale(1.1); }
}
.v2-book-bubble {
    position: relative;
    display: inline-block;
    background: var(--v2-yellow);
    color: var(--v2-ink);
    border: 2px solid var(--v2-ink);
    border-radius: 999px;
    box-shadow: 4px 4px 0 var(--v2-ink);
    padding: 0.8rem 1.8rem;
    font-weight: 900;
    font-size: 1.3rem;
    transform: rotate(-2deg);
}
/* Tail points UP toward the "publishers" line above the bubble. */
.v2-book-bubble::after {
    content: "";
    position: absolute;
    top: -9px;
    left: 44%;
    width: 15px;
    height: 15px;
    background: var(--v2-yellow);
    border-left: 2px solid var(--v2-ink);
    border-top: 2px solid var(--v2-ink);
    transform: rotate(45deg);
}

.v2-book-subhead {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: 1.65rem;
    text-align: center;
    margin: 3rem 0 1.5rem;
}

.v2-book-you,
.v2-book-learn {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 2.25rem;
    max-width: 880px;
    margin: 0 auto;
}
.v2-book-learn {
    background: var(--v2-cream);
    border: 2px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 6px 6px 0 var(--v2-ink);
    padding: 1.75rem 2rem;
}

/* "Sound like you?" — checklist box with the question as its title */
.v2-book-youbox {
    max-width: 880px;
    margin: 3rem auto 0;
    background: var(--v2-cream);
    border: 2px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 6px 6px 0 var(--v2-ink);
    padding: 1.75rem 2rem;
}
.v2-book-youbox .v2-book-subhead--inbox { margin: 0 0 1.4rem; }

/* The power-packed classes section (split out of the book section) */
.v2-classes { background: var(--v2-cream); }
.v2-classes .v2-book-learn {
    margin-top: 2.5rem;
    background: var(--v2-white);
}
.v2-book-you li,
.v2-book-learn li {
    position: relative;
    padding-left: 1.7rem;
    color: var(--v2-ink-soft);
    line-height: 1.5;
}
/* Real checkboxes: an empty square per line, ticked by the ::after check. */
.v2-book-you li { padding-left: 2.1rem; }
.v2-book-you li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.16em;
    width: 1.05em;
    height: 1.05em;
    background: var(--v2-white);
    border: 2px solid var(--v2-ink);
    border-radius: 4px;
}
.v2-book-you li::after {
    content: "✔";
    position: absolute;
    left: 0.24em;
    top: -0.08em;
    color: var(--v2-magenta);
    font-weight: 900;
    font-size: 1.15em;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
}
.v2-book-learn li::before {
    content: "📖";
    position: absolute;
    left: 0;
    font-size: 0.95em;
}

.v2-book-not-alone,
.v2-book-promise {
    max-width: 720px;
    margin: 2.5rem auto 0;
    text-align: center;
    font-size: 1.05rem;
    color: var(--v2-ink-soft);
}
/* The "Nodding along?" opener stands alone; follow-up paragraphs sit closer. */
.v2-book-not-alone--lead { font-size: 1.2rem; }
.v2-book-not-alone + .v2-book-not-alone { margin-top: 1.1rem; }

/* Checkmarks tick the "Sound like you?" boxes one after another on reveal. */
@media (prefers-reduced-motion: no-preference) {
    [data-anim] .v2-book-you li::after { opacity: 0; transform: scale(0) rotate(-40deg); }
    [data-anim].v2-in .v2-book-you li::after {
        animation: v2-check-pop 0.4s cubic-bezier(0.3, 1.6, 0.5, 1) both;
    }
    [data-anim].v2-in .v2-book-you li:nth-child(1)::after { animation-delay: 0.2s; }
    [data-anim].v2-in .v2-book-you li:nth-child(2)::after { animation-delay: 0.35s; }
    [data-anim].v2-in .v2-book-you li:nth-child(3)::after { animation-delay: 0.5s; }
    [data-anim].v2-in .v2-book-you li:nth-child(4)::after { animation-delay: 0.65s; }
    [data-anim].v2-in .v2-book-you li:nth-child(5)::after { animation-delay: 0.8s; }
    [data-anim].v2-in .v2-book-you li:nth-child(6)::after { animation-delay: 0.95s; }
    [data-anim].v2-in .v2-book-you li:nth-child(7)::after { animation-delay: 1.1s; }
    [data-anim].v2-in .v2-book-you li:nth-child(8)::after { animation-delay: 1.25s; }
}
@keyframes v2-check-pop {
    from { opacity: 0; transform: scale(0) rotate(-40deg); }
    to   { opacity: 1; transform: none; }
}

.v2-book-quote {
    max-width: 640px;
    margin: 3rem auto 0;
    text-align: center;
    background: var(--v2-magenta-soft);
    border: 2px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 6px 6px 0 var(--v2-ink);
    padding: 1.75rem 2rem;
}
.v2-book-quote p {
    font-family: var(--v2-font-serif);
    font-style: italic;
    font-size: 1.18rem;
    line-height: 1.5;
}
.v2-book-quote cite {
    display: block;
    margin-top: 0.9rem;
    font-style: normal;
    font-weight: 800;
    font-size: 0.9rem;
}

.v2-book-cta { text-align: center; margin-top: 2.75rem; }
.v2-book-cta p { margin-top: 1.1rem; font-size: 0.95rem; color: var(--v2-muted); }
.v2-book-cta--mid { margin-top: 1.6rem; }

/* "It's going to be a party!" — its own celebratory line above the mid CTA,
   flanked by confetti. */
.v2-book-party {
    text-align: center;
    margin: 1.9rem auto 0;
    font-family: var(--v2-font-script);
    font-size: 2.1rem;
    line-height: 1;
    color: var(--v2-magenta);
    transform: rotate(-2deg);
}
.v2-book-party::before {
    content: "🎉";
    margin-right: 0.7rem;
    font-size: 1.7rem;
    display: inline-block;
    transform: rotate(-12deg);
}
.v2-book-party::after {
    content: "🎊";
    margin-left: 0.7rem;
    font-size: 1.7rem;
    display: inline-block;
    transform: rotate(12deg);
}
/* The party line rings like a bell every few seconds. */
@media (prefers-reduced-motion: no-preference) {
    .v2-book-party { animation: v2-party-ring 3.5s ease-in-out infinite; }
}
@keyframes v2-party-ring {
    0%, 50%, 100% { transform: rotate(-2deg); }
    56%  { transform: rotate(3deg); }
    62%  { transform: rotate(-4deg); }
    68%  { transform: rotate(3deg); }
    74%  { transform: rotate(-3deg); }
    80%  { transform: rotate(1.5deg); }
    86%  { transform: rotate(-2deg); }
}

/* Standalone reassurance line after the promise paragraph */
.v2-book-standalone {
    max-width: 640px;
    margin: 2rem auto 0;
    text-align: center;
    font-family: var(--v2-font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1.4;
    color: var(--v2-ink);
}

/* Clickable host names — jump to the bios in "Meet your guides" */
.v2-book-namelink {
    color: var(--v2-magenta) !important;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.v2-book-namelink:hover { color: var(--v2-magenta-deep) !important; }

@media (max-width: 760px) {
    .v2-book { padding: 3.25rem 1.25rem; }
    .v2-book-you, .v2-book-learn { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════════
   INDIE MYTH — Fleur busts "good books get popular on their own"
   ════════════════════════════════════════════════════════════════ */
.v2-myth { background: var(--v2-white); padding: 5rem 1.5rem; }
.v2-myth-inner { max-width: 1000px; margin: 0 auto; }

/* The 81% reality check — dark spotlight block above the myth cards. */
.v2-myth-stat {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    margin: 2.5rem auto 0;
    background: linear-gradient(135deg, var(--v2-plum) 0%, var(--v2-plum-deep) 100%);
    color: var(--v2-white);
    border: 2px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 6px 6px 0 var(--v2-ink);
    padding: 1.9rem 2.2rem;
}
.v2-myth-stat-num {
    font-family: var(--v2-font-display);
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    line-height: 0.9;
    color: var(--v2-yellow);
}
.v2-myth-stat-body p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.65rem;
}
.v2-myth-stat-body p:last-of-type { margin-bottom: 0; }
.v2-myth-stat-body strong { color: var(--v2-white); }
.v2-myth-stat-body em {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    color: var(--v2-white);
}
.v2-myth-stat-body cite {
    display: block;
    margin-top: 0.6rem;
    font-style: normal;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--v2-yellow);
}
@media (max-width: 640px) {
    .v2-myth-stat { grid-template-columns: 1fr; gap: 0.75rem; text-align: center; }
}

.v2-myth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.v2-myth-card {
    position: relative;
    background: var(--v2-cream);
    border: 2px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 4px 4px 0 var(--v2-ink);
    padding: 1.4rem 1.4rem 1.5rem;
}
/* Big red ✕ stamped through each myth, destroying it. Stamps land one after
   another as the section scrolls into view. */
.v2-myth-card::after {
    content: "✕";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(224, 45, 45, 0.65);
    transform: rotate(-9deg);
    pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
    [data-anim] .v2-myth-card::after { opacity: 0; }
    [data-anim].v2-in .v2-myth-card::after {
        animation: v2-myth-stamp 0.4s cubic-bezier(0.2, 1.4, 0.4, 1) both;
    }
    [data-anim].v2-in .v2-myth-card:nth-child(1)::after { animation-delay: 0.5s; }
    [data-anim].v2-in .v2-myth-card:nth-child(2)::after { animation-delay: 0.9s; }
    [data-anim].v2-in .v2-myth-card:nth-child(3)::after { animation-delay: 1.3s; }
    [data-anim].v2-in .v2-myth-card:nth-child(4)::after { animation-delay: 1.7s; }
    [data-anim].v2-in .v2-myth-card:nth-child(5)::after { animation-delay: 2.1s; }
    [data-anim].v2-in .v2-myth-card:nth-child(6)::after { animation-delay: 2.5s; }
}
@keyframes v2-myth-stamp {
    from { opacity: 0; transform: scale(2.6) rotate(-24deg); }
    to   { opacity: 1; transform: scale(1) rotate(-9deg); }
}
.v2-myth-card h3 {
    font-size: 1.02rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}
.v2-myth-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--v2-ink-soft);
}

.v2-myth-note {
    max-width: 720px;
    margin: 2.75rem auto 0;
    text-align: center;
    background: #D9F2FB;
    border: 2px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 6px 6px 0 var(--v2-ink);
    padding: 1.75rem 2rem;
}
.v2-myth-note p { font-size: 1.05rem; line-height: 1.6; }

/* Small round portrait above a quote — shows who's speaking. Hard-constrained
   with !important: a legacy .v2-quote-avatar rule (v1 quote design) sets
   conflicting min/max sizes that squashed this into an oval. */
.v2 .v2-quote-avatar {
    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    min-height: 76px !important;
    max-width: 76px !important;
    max-height: 76px !important;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 2px solid var(--v2-ink);
    box-shadow: 3px 3px 0 var(--v2-ink);
    background: var(--v2-white);
    display: block;
    margin: 0 auto 0.9rem;
    padding: 0;
}
.v2-quote-avatar--kristina { background: var(--v2-magenta-soft); }
.v2-myth-note cite {
    display: block;
    margin-top: 0.9rem;
    font-style: normal;
    font-weight: 800;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .v2-myth-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
    .v2-myth { padding: 3.25rem 1.25rem; }
    .v2-myth-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════════
   FAQ — details/summary accordion
   ════════════════════════════════════════════════════════════════ */
.v2-faq { background: var(--v2-white); padding: 5rem 1.5rem; }
.v2-faq-inner { max-width: 760px; margin: 0 auto; }
.v2-faq-list { margin-top: 2.5rem; }

.v2-faq-item {
    background: var(--v2-white);
    border: 2px solid var(--v2-ink);
    border-radius: var(--v2-radius-sm);
    box-shadow: 4px 4px 0 var(--v2-ink);
    margin-bottom: 1rem;
    overflow: hidden;
}
.v2-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.05rem 3rem 1.05rem 1.25rem;
    font-weight: 800;
    position: relative;
}
.v2-faq-item summary::-webkit-details-marker { display: none; }
.v2-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--v2-magenta);
}
.v2-faq-item[open] summary::after { content: "–"; }
.v2-faq-item > p {
    padding: 0 1.25rem 1.2rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--v2-ink-soft);
}

@media (max-width: 620px) {
    .v2-faq { padding: 3.25rem 1.25rem; }
}


/* ════════════════════════════════════════════════════════════════
   BOOTCAMP CALENDAR — July/August mini months in the schedule section
   ════════════════════════════════════════════════════════════════ */
.v2-cal-months {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    max-width: 760px;
    margin: 3rem auto 0;
}
.v2-cal-months--single {
    grid-template-columns: 1fr;
    max-width: 430px;
}
.v2-cal {
    position: relative;
    background: var(--v2-white);
    border: 2px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 6px 6px 0 var(--v2-ink);
    padding: 1.25rem 1.25rem 2.6rem;
}

/* Hand-written labels with real arrows pointing at the highlighted dates. */
.v2-cal-anno {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--v2-font-script);
    font-size: 1.15rem;
    line-height: 1;
    color: var(--v2-ink);
    white-space: nowrap;
}
.v2-cal-anno-svg { display: block; flex-shrink: 0; }
/* Labels sit in the empty first row; each short arrow drops onto its date.
   Grid geometry: 7 columns across the card's inner width, days 4/5/6 in
   columns 2–4 and the Q&A 7th in column 5 of the second row. */
.v2-cal-anno--live {
    top: 5.5rem;
    /* centered over day 5 — column 3 of 7 (days 4-6 sit in columns 2-4) */
    left: calc(1.25rem + (100% - 2.5rem) * 0.357);
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    transform: translateX(-50%);
}
.v2-cal-anno-arrows {
    display: flex;
    justify-content: space-between;
    /* spans day-4 center to day-6 center: two column pitches of the grid */
    width: 7rem;
}
.v2-cal-anno-arrows--one { width: auto; }
.v2-cal-anno--qa {
    top: 5.5rem;
    left: calc(1.25rem + (100% - 2.5rem) * 0.642);
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    transform: translateX(-50%);
}
/* Beside the card's left edge, at first-week height: label on top, then a
   strong C-bend arrow that starts at week one and points into week two. */
.v2-cal-anno--community {
    top: 7.4rem;
    right: 100%;
    left: auto;
    margin-right: 0.5rem;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}
@media (max-width: 900px) {
    .v2-cal-anno--community { display: none; }
}
@media (prefers-reduced-motion: no-preference) {
    .v2-cal-anno--community .v2-cal-anno-svg {
        animation: v2-anno-sway 4s ease-in-out infinite;
        transform-origin: top right;
    }
}
@keyframes v2-anno-sway {
    0%, 100% { transform: rotate(0deg); }
    50%      { transform: rotate(-4deg); }
}
.v2-cal-title {
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.85rem;
    letter-spacing: 0.02em;
}
.v2-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
}
.v2-cal-dow {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--v2-muted);
    text-align: center;
    padding-bottom: 0.2rem;
}
.v2-cal-day {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    /* Plain days fade back so the highlighted window carries the focus. */
    color: #C9C3D1;
}
/* Community opens — starred day. */
.v2-cal-day--star {
    position: relative;
    color: var(--v2-ink);
    font-weight: 800;
}
.v2-cal-day--star::after {
    content: "⭐";
    position: absolute;
    top: -0.6rem;
    left: -0.5rem;
    font-size: 1.05rem;
}
.v2-cal-day--community {
    background: #D9F2FB;
    color: var(--v2-cyan-deep);
    font-weight: 800;
}
.v2-cal-day--live {
    background: var(--v2-magenta);
    color: var(--v2-white);
    font-weight: 900;
    border: 2px solid var(--v2-ink);
    /* Bright-blue halo behind the pink days — the community window starts
       with the live sessions. */
    box-shadow: 0 0 0 4px #A5E1F7, 2px 2px 0 var(--v2-ink);
}
.v2-cal-day--qa {
    background: var(--v2-yellow);
    color: var(--v2-ink);
    font-weight: 900;
    border: 2px solid var(--v2-ink);
    box-shadow: 2px 2px 0 var(--v2-ink);
}

/* Motion: the month cards float gently, live days bob (staggered), the Q&A
   wiggles, and the community window ripples left-to-right via inline
   animation-delay per date. */
@media (prefers-reduced-motion: no-preference) {
    .v2-cal { animation: v2-cal-float 5.5s ease-in-out infinite; }
    .v2-cal:nth-child(2) { animation-delay: 2.75s; }
}
@keyframes v2-cal-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-6px) rotate(-0.4deg); }
}
@media (prefers-reduced-motion: no-preference) {
    .v2-cal-day--live,
    .v2-cal-day--qa {
        animation: v2-cal-bob 2.6s ease-in-out infinite;
    }
    /* August's 4/5/6 sit at grid children 16/17/18 (7 headers + 5 pads + day). */
    .v2-cal .v2-cal-grid > :nth-child(17) { animation-delay: 0.18s; }
    .v2-cal .v2-cal-grid > :nth-child(18) { animation-delay: 0.36s; }
    .v2-cal-day--qa { animation-delay: 0.54s; }
    .v2-cal-day--community { animation: v2-cal-ripple 3.2s ease-in-out infinite; }
}
@keyframes v2-cal-bob {
    0%, 100% { transform: none; }
    50%      { transform: translateY(-3px) rotate(-2deg); }
}
@keyframes v2-cal-ripple {
    0%, 100% { transform: none; background: #D9F2FB; }
    50%      { transform: translateY(-2px); background: #BCE8FA; }
}

/* Expandable day cards — the whole card is clickable. */
details.v2-schedule-day summary {
    list-style: none;
    cursor: pointer;
}
details.v2-schedule-day summary::-webkit-details-marker { display: none; }
.v2-schedule-more {
    display: inline-block;
    margin-top: 0.8rem;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--v2-magenta);
    text-decoration: underline;
    text-underline-offset: 3px;
}
details.v2-schedule-day[open] .v2-schedule-more { display: none; }
.v2-schedule-detail {
    list-style: none;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px dashed rgba(24, 18, 37, 0.18);
    display: grid;
    gap: 0.5rem;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--v2-ink-soft);
}
.v2-schedule-detail li::before {
    content: "→ ";
    color: var(--v2-magenta);
    font-weight: 800;
}

/* Full day-by-day curriculum inside the FAQ answers. */
.v2-faq-day {
    padding: 0.2rem 1.25rem 1.3rem;
}
.v2-faq-day-intro {
    font-style: italic;
    color: var(--v2-ink-soft);
    margin-bottom: 1rem;
}
.v2-faq-day-group {
    font-family: var(--v2-font-body);
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--v2-magenta);
    margin: 1.2rem 0 0.55rem;
}
.v2-faq-day-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}
.v2-faq-day-list li {
    position: relative;
    padding-left: 1.3rem;
    line-height: 1.55;
}
.v2-faq-day-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--v2-magenta);
    font-weight: 800;
}
.v2-faq-day-leave {
    margin-top: 1.2rem;
    padding: 0.8rem 1rem;
    background: var(--v2-magenta-soft);
    border-radius: var(--v2-radius-sm);
    color: var(--v2-ink);
    line-height: 1.5;
}
.v2-faq-day-leave strong { color: var(--v2-magenta-deep); }
.v2-faq-day-qa {
    margin-top: 0.8rem;
    font-size: 0.88rem;
    color: var(--v2-muted);
}

.v2-cal-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--v2-ink-soft);
}
.v2-cal-dot {
    display: inline-block;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 4px;
    border: 2px solid var(--v2-ink);
    margin-right: 0.4rem;
    vertical-align: -0.15rem;
    font-style: normal;
}
.v2-cal-dot--live      { background: var(--v2-magenta); }
.v2-cal-dot--qa        { background: var(--v2-yellow); }
.v2-cal-dot--community { background: #D9F2FB; }

.v2-cal-note {
    margin: 1.5rem auto 2.5rem;
    max-width: 620px;
    text-align: center;
    font-size: 1rem;
    color: var(--v2-ink-soft);
}

@media (max-width: 640px) {
    .v2-cal-months { grid-template-columns: 1fr; gap: 1.25rem; }
}


/* ════════════════════════════════════════════════════════════════
   WALL OF LOVE — masonry testimonial grid on the deep plum band
   ════════════════════════════════════════════════════════════════ */
.v2-wall {
    background: linear-gradient(180deg, var(--v2-plum) 0%, var(--v2-plum-deep) 100%);
    padding: 5rem 1.5rem;
    color: var(--v2-white);
}
.v2-wall-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.v2-wall .v2-pricing-heading { color: var(--v2-white); }
.v2-wall .v2-pricing-sub     { color: rgba(255, 255, 255, 0.72); }

/* Three independent columns; each holds a track that loops endlessly for
   motion-friendly visitors. Static fallback: one pass of cards, no clip. */
.v2-wall-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1.5rem;
}
.v2-wall-col { min-width: 0; }
.v2-wall-dup { display: none; }     /* duplicate pass only exists for the loop */

.v2-wall-card {
    /* Bottom margin (not flex/grid gap) keeps card spacing inside the track
       uniform across the loop seam, so translateY(-50%) lands exactly. */
    margin: 0 0 1.5rem;
    padding: 1.4rem 1.5rem 1.5rem;
    background: var(--v2-white);
    color: var(--v2-ink);
    border: 2px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 5px 5px 0 var(--v2-magenta);
}

.v2-wall-top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.v2-wall-avatar {
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    border: 2px solid var(--v2-ink);
    color: var(--v2-white);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}
/* Real-photo avatar variant — same footprint as the initials circle.
   (.v2-prefixed to outweigh the global .v2 img height reset.) */
.v2 .v2-wall-avatar-photo {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--v2-ink);
    flex-shrink: 0;
}
.v2-wall-avatar--magenta { background: var(--v2-magenta); }
.v2-wall-avatar--cyan    { background: var(--v2-cyan); }
.v2-wall-avatar--coral   { background: var(--v2-coral); }
.v2-wall-avatar--yellow  { background: var(--v2-yellow); color: var(--v2-ink); }

.v2-wall-name {
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.3;
}
.v2-wall-role {
    display: block;
    font-weight: 600;
    font-size: 0.76rem;
    line-height: 1.35;
    color: var(--v2-muted);
}
.v2-wall-win-badge--metric {
    margin-bottom: 0.6rem;
    font-size: 0.68rem;
}

.v2-wall-stars {
    color: var(--v2-yellow);
    text-shadow: 1px 1px 0 rgba(24, 18, 37, 0.5);
    font-size: 1rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.55rem;
}

.v2-wall-quote {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--v2-ink-soft);
}

/* Book cover shown under a quote (e.g. Brad's insurance book). */
.v2-wall-cover {
    display: block;
    width: 100%;
    margin-top: 0.85rem;
    border: 2px solid var(--v2-ink);
    border-radius: calc(var(--v2-radius) - 8px);
}

/* Success-story card — image, badge, story text, author + book. */
.v2-wall-card--story {
    background: var(--v2-cream-warm);
    text-align: center;
    padding: 0.65rem 0.65rem 1.2rem;
}
.v2-wall-story-photo {
    display: block;
    width: 100%;
    border: 2px solid var(--v2-ink);
    border-radius: calc(var(--v2-radius) - 8px);
    margin-bottom: 0.85rem;
}
.v2-wall-card--story .v2-wall-win-badge { margin-top: 0.2rem; }
.v2-wall-story-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--v2-ink-soft);
    text-align: left;
    padding: 0 0.5rem;
    margin-bottom: 0.7rem;
}
.v2-wall-card--story .v2-wall-win-name { margin-bottom: 0; }
.v2-wall-card--story .v2-wall-win-name em {
    font-family: var(--v2-font-serif);
    font-weight: 700;
}

/* Real Substack note screenshot card — authentic bestseller proof. */
.v2-wall-card--shot { padding: 0.55rem 0.55rem 0.7rem; }
.v2-wall-shot-btn {
    display: block;
    width: 100%;
    padding: 0;
    background: none;
    border: 2px solid var(--v2-ink);
    border-radius: calc(var(--v2-radius) - 8px);
    overflow: hidden;
    cursor: zoom-in;
}
.v2 .v2-wall-shot-btn img { display: block; width: 100%; height: auto; }
.v2-wall-shot-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.6rem;
    padding: 0 0.2rem;
}
.v2-wall-shot-zoom {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--v2-muted);
}

/* Bestseller milestone card — Amazon #1 wins from the community. */
.v2-wall-card--win {
    background: var(--v2-cream-warm);
    text-align: center;
    padding: 1.6rem 1.4rem;
}
.v2-wall-win-badge {
    display: inline-block;
    background: var(--v2-yellow);
    border: 2px solid var(--v2-ink);
    border-radius: 999px;
    box-shadow: 2px 2px 0 var(--v2-ink);
    padding: 0.3rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}
.v2-wall-win-book {
    font-family: var(--v2-font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}
.v2-wall-win-name {
    font-weight: 800;
    font-size: 0.92rem;
    margin-bottom: 0.55rem;
}
.v2-wall-win-sub {
    font-size: 0.78rem;
    color: var(--v2-muted);
}

/* Video testimonial card — Vimeo embed on top, name + stars beneath.
   Videos autoplay muted in a loop; the overlay buttons toggle play + sound. */
.v2-wall-card--video { padding: 0.65rem 0.65rem 1rem; }
.v2-wall-video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--v2-radius) - 8px);
    overflow: hidden;
    border: 2px solid var(--v2-ink);
    background: var(--v2-plum-deep);
    margin-bottom: 0.8rem;
}
.v2-wall-video--portrait { aspect-ratio: 9 / 16; }
.v2-wall-video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.v2-wall-video-controls {
    position: absolute;
    bottom: 0.6rem;
    left: 0.6rem;
    z-index: 5;
    display: flex;
    gap: 0.45rem;
}
.v2-wall-vbtn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--v2-yellow);
    color: var(--v2-ink);
    border: 2px solid var(--v2-ink);
    box-shadow: 3px 3px 0 var(--v2-ink);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    padding: 0;
    font-family: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.v2-wall-vbtn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--v2-ink);
    background: #FFE03A;
}
.v2-wall-vbtn:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--v2-ink);
}
.v2-wall-card--video .v2-wall-top { padding: 0 0.35rem; margin-bottom: 0.35rem; }
.v2-wall-stars--video { padding: 0 0.35rem; margin-bottom: 0; }

@media (max-width: 900px) {
    .v2-wall-grid { grid-template-columns: repeat(2, 1fr); }
    .v2-wall-col--3 { display: none; }
}
@media (max-width: 620px) {
    .v2-wall { padding: 3.25rem 1.25rem; }
    .v2-wall-grid { grid-template-columns: 1fr; }
    .v2-wall-col--2 { display: none; }
}

/* ── Endless vertical marquee — each column loops at its own pace, the middle
      one drifting the other way. Paused on hover so quotes can be read.
      Gated on motion preference; reduced-motion visitors keep the static grid. ── */
@media (prefers-reduced-motion: no-preference) {
    .v2-wall-grid {
        height: min(60rem, 88vh);
        overflow: hidden;
        -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 3.5rem, #000 calc(100% - 3.5rem), transparent 100%);
        mask-image: linear-gradient(180deg, transparent 0, #000 3.5rem, #000 calc(100% - 3.5rem), transparent 100%);
    }
    .v2-wall-dup { display: block; }
    .v2-wall-track {
        animation: v2-wall-scroll 115s linear infinite;
    }
    .v2-wall-col--2 .v2-wall-track { animation-duration: 145s; animation-direction: reverse; }
    .v2-wall-col--3 .v2-wall-track { animation-duration: 128s; }

    /* The bottom wall's columns hold ~5x more cards per loop, so the same
       duration would scroll ~5x faster. Stretch to match the top wall's pace. */
    #love2 .v2-wall-track { animation-duration: 280s; }
    #love2 .v2-wall-col--2 .v2-wall-track { animation-duration: 340s; }
    #love2 .v2-wall-col--3 .v2-wall-track { animation-duration: 310s; }
    /* Hover-pause only where hover is a real signal. On touch screens a tap
       sets a sticky :hover that would freeze the marquee until the next tap
       elsewhere — there, the unmute button pauses the column instead (JS). */
    @media (hover: hover) and (pointer: fine) {
        .v2-wall-grid:hover .v2-wall-track { animation-play-state: paused; }
    }

    @media (max-width: 620px) {
        .v2-wall-grid { height: min(42rem, 80vh); }
    }
}

@keyframes v2-wall-scroll {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}


/* ════════════════════════════════════════════════════════════════
   LIVE SCHEDULE — three day cards (4–6 August)
   ════════════════════════════════════════════════════════════════ */
.v2-schedule {
    background: var(--v2-cream);
    padding: 5rem 1.5rem;
}
.v2-schedule-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.v2-schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.v2-schedule-day {
    background: var(--v2-white);
    border: 3px solid var(--v2-ink);
    border-radius: var(--v2-radius);
    box-shadow: 6px 6px 0 var(--v2-magenta);
    padding: 1.5rem 1.4rem;
    text-align: center;
}
.v2-schedule-num {
    display: inline-block;
    font-family: var(--v2-font-body);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-white);
    background: var(--v2-magenta);
    border-radius: 999px;
    padding: 0.25rem 0.8rem;
    margin-bottom: 0.85rem;
}
.v2-schedule-date {
    font-family: var(--v2-font-display, 'Anton', sans-serif);
    font-size: 1.5rem;
    line-height: 1.1;
    color: var(--v2-ink);
    margin-bottom: 0.35rem;
}
.v2-schedule-time {
    font-weight: 700;
    color: var(--v2-cyan-deep);
}
.v2-schedule-sub {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--v2-muted);
    margin-top: 0.2rem;
}
.v2-schedule-tz {
    margin: 2rem auto 0;
    max-width: 640px;
    text-align: center;
    font-size: 1rem;
    color: var(--v2-ink-soft);
}

@media (max-width: 760px) {
    .v2-schedule { padding: 3.25rem 1.25rem; }
    .v2-schedule-grid { grid-template-columns: 1fr; }
}

/* Schedule: per-day theme + description. */
.v2-schedule-theme {
    font-family: var(--v2-font-serif);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.2;
    color: var(--v2-ink);
    margin-top: 0.9rem;
}
.v2-schedule-desc {
    font-size: 0.92rem;
    color: var(--v2-ink-soft);
    line-height: 1.5;
    margin-top: 0.4rem;
}


/* ════════════════════════════════════════════════════════════════
   ONE PLATFORM, FOUR JOBS — what is Substack
   ════════════════════════════════════════════════════════════════ */
.v2-jobs { background: var(--v2-cream-warm); padding: 5rem 1.5rem; }
.v2-jobs-inner { max-width: 1240px; margin: 0 auto; }
.v2-jobs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}
.v2-job {
    background: var(--v2-white);
    border: 2px solid var(--v2-ink);
    border-radius: 14px;
    box-shadow: 4px 4px 0 var(--v2-ink);
    padding: 1.4rem 1.25rem;
}
.v2-job-num {
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: var(--v2-magenta);
}
.v2-job-name {
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.1;
    color: var(--v2-ink);
    white-space: nowrap;
    margin: 0.5rem 0 0.45rem;
}
.v2-job-desc { font-size: 0.95rem; color: var(--v2-ink-soft); line-height: 1.5; }
.v2-jobs-honest {
    margin-top: 2rem;
    background: var(--v2-white);
    border: 2px solid var(--v2-ink);
    border-radius: 16px;
    box-shadow: 4px 4px 0 var(--v2-cyan);
    padding: 1.5rem 1.75rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.v2-jobs-honest-mark { color: var(--v2-magenta); font-size: 1.5rem; line-height: 1.2; flex-shrink: 0; }
.v2-jobs-honest p { font-size: 1.02rem; color: var(--v2-ink); line-height: 1.6; }
@media (max-width: 860px) { .v2-jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .v2-jobs { padding: 3.25rem 1.25rem; } }
@media (max-width: 480px) { .v2-jobs-grid { grid-template-columns: 1fr; } }


/* ════════════════════════════════════════════════════════════════
   THE PROBLEM — rented land vs. Substack flips it
   ════════════════════════════════════════════════════════════════ */
.v2-problem { background: var(--v2-cream); padding: 5rem 1.5rem; }
.v2-problem-inner { max-width: 1000px; margin: 0 auto; }
.v2-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2.5rem;
}
.v2-problem-list { list-style: none; }
.v2-problem-list li {
    display: flex;
    gap: 0.75rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(24, 18, 37, 0.12);
    font-size: 1.02rem;
    color: var(--v2-ink-soft);
}
.v2-problem-list li:last-child { border-bottom: 0; }
.v2-problem-x { color: var(--v2-magenta); font-weight: 800; flex-shrink: 0; }
.v2-flip {
    background: var(--v2-plum);
    color: var(--v2-white);
    border: 3px solid var(--v2-ink);
    border-radius: 18px;
    box-shadow: 6px 6px 0 var(--v2-magenta);
    padding: 2rem 1.9rem;
}
.v2-flip-title {
    font-family: var(--v2-font-body);
    font-weight: 800;
    font-size: 1.9rem;
    line-height: 1.05;
    color: var(--v2-white);
    margin-bottom: 0.4rem;
}
.v2-flip-lead { color: rgba(255, 255, 255, 0.8); margin-bottom: 1rem; }
.v2-flip-list { list-style: none; }
.v2-flip-list li {
    display: flex;
    gap: 0.75rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.92);
}
.v2-flip-list li:last-child { border-bottom: 0; }
.v2-flip-c { color: var(--v2-yellow); font-weight: 800; flex-shrink: 0; }
@media (max-width: 780px) { .v2-problem-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .v2-problem { padding: 3.25rem 1.25rem; } }


/* Hosts: closing manifesto line. */
/* Marker-style yellow highlight. */
.v2-mark {
    background: var(--v2-yellow);
    color: var(--v2-ink);
    padding: 0.12em 0.35em;
    border-radius: 4px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.v2-hosts-note {
    margin: 2.25rem auto 0;
    max-width: 720px;
    text-align: center;
    font-family: var(--v2-font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.2rem, 2.6vw, 1.55rem);
    line-height: 1.3;
    color: var(--v2-ink);
}

/* Pricing: refund/guarantee note under the CTA. */
.v2-pricing-guarantee {
    margin: 1rem auto 0;
    max-width: 440px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--v2-muted);
}

/* Payment-plan alternative under the main enroll button. */
.v2-pricing-split {
    margin-top: 0.9rem;
    text-align: center;
    font-size: 0.95rem;
}
.v2-pricing-split-or {
    display: block;
    font-family: var(--v2-font-script);
    font-size: 1.15rem;
    color: var(--v2-muted);
    margin-bottom: 0.25rem;
}
.v2-pricing-split-links {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.v2-pricing-split-sep { color: var(--v2-muted); }
.v2-pricing-split-link {
    font-weight: 800;
    color: var(--v2-magenta) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.v2-pricing-split-link:hover { color: var(--v2-magenta-deep) !important; }

/* Warm P.S. line under the pricing card — the "loving kick in the pants". */
.v2-pricing-ps {
    margin: 2.25rem auto 0;
    max-width: 560px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--v2-ink-soft);
}
.v2-pricing-ps strong { color: var(--v2-magenta); }

/* Thank-you page: live date chips. */
.v2-ty-dates {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.85rem;
    margin: 1.25rem 0 0;
    font-weight: 700;
    color: var(--v2-ink);
}
.v2-ty-dates span {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
}


/* ════════════════════════════════════════════════════════════════
   MOTION & POP — hover lifts, scroll reveals, CTA pulse
   All wrapped so prefers-reduced-motion gets a calm, static page.
   ════════════════════════════════════════════════════════════════ */

/* ── Hover micro-interactions: cards lift toward the reader ── */
.v2-job,
.v2-schedule-day,
.v2-host-card,
.v2-pricing-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.v2-job:hover            { transform: translate(-2px, -4px); box-shadow: 7px 9px 0 var(--v2-ink); }
.v2-schedule-day:hover   { transform: translate(-2px, -5px); box-shadow: 9px 12px 0 var(--v2-magenta); }
.v2-host-card:hover      { transform: translate(-2px, -5px); box-shadow: 9px 12px 0 var(--v2-ink); }
.v2-pricing-card:hover   { transform: translateY(-4px); }
.v2-flip                 { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.v2-flip:hover           { transform: translate(-2px, -4px); box-shadow: 9px 12px 0 var(--v2-magenta); }

/* Host links and job names nudge on hover for a touch of life. */
.v2-host-link { transition: transform 0.15s ease; display: inline-block; }
.v2-host-link:hover { transform: translateX(3px); }

@media (prefers-reduced-motion: no-preference) {

    /* ── Scroll reveal: sections fade + rise as they enter view ──
       Elements start hidden only when JS has tagged the section with
       [data-anim]; the IntersectionObserver then adds .v2-in. If JS is
       absent the rule below never hides anything (no [data-anim]). ── */
    [data-anim] .v2-pricing-head,
    [data-anim] .v2-job,
    [data-anim] .v2-jobs-honest,
    [data-anim] .v2-problem-grid > *,
    [data-anim] .v2-learn-grid > li,
    [data-anim] .v2-host-card,
    [data-anim] .v2-hosts-note,
    [data-anim] .v2-schedule-grid > *,
    [data-anim] .v2-schedule-tz,
    [data-anim] .v2-wall-grid,
    [data-anim] .v2-countdown,
    [data-anim] .v2-pricing-grid {
        opacity: 0;
        will-change: opacity, transform;
    }
    [data-anim].v2-in .v2-pricing-head,
    [data-anim].v2-in .v2-job,
    [data-anim].v2-in .v2-jobs-honest,
    [data-anim].v2-in .v2-problem-grid > *,
    [data-anim].v2-in .v2-learn-grid > li,
    [data-anim].v2-in .v2-host-card,
    [data-anim].v2-in .v2-hosts-note,
    [data-anim].v2-in .v2-schedule-grid > *,
    [data-anim].v2-in .v2-schedule-tz,
    [data-anim].v2-in .v2-wall-grid,
    [data-anim].v2-in .v2-countdown,
    [data-anim].v2-in .v2-pricing-grid {
        animation: v2-rise 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) both;
    }

    /* Stagger grid children so they cascade in. */
    [data-anim].v2-in .v2-jobs-grid > *:nth-child(2),
    [data-anim].v2-in .v2-learn-grid > li:nth-child(2),
    [data-anim].v2-in .v2-schedule-grid > *:nth-child(2),
    [data-anim].v2-in .v2-hosts-grid  > *:nth-child(2) { animation-delay: 0.09s; }
    [data-anim].v2-in .v2-jobs-grid > *:nth-child(3),
    [data-anim].v2-in .v2-learn-grid > li:nth-child(3),
    [data-anim].v2-in .v2-schedule-grid > *:nth-child(3) { animation-delay: 0.18s; }
    [data-anim].v2-in .v2-jobs-grid > *:nth-child(4),
    [data-anim].v2-in .v2-learn-grid > li:nth-child(4) { animation-delay: 0.27s; }
    [data-anim].v2-in .v2-learn-grid > li:nth-child(5) { animation-delay: 0.36s; }
    [data-anim].v2-in .v2-learn-grid > li:nth-child(6) { animation-delay: 0.45s; }

    /* ── Primary CTA: a slow pulsing glow ring to pull the eye ── */
    .v2-hero-buttons .v2-btn--yellow,
    .v2-pricing-card .v2-btn--yellow {
        animation: v2-cta-pulse 2.6s ease-in-out infinite;
    }
    .v2-hero-buttons .v2-btn--yellow:hover,
    .v2-pricing-card .v2-btn--yellow:hover { animation-play-state: paused; }

    /* ── Badge gives a little wink (hero cutouts stay still by request) ── */
    .v2-hero-badge { animation: v2-badge-pop 5s ease-in-out infinite; }
}

@keyframes v2-rise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: none; }
}
@keyframes v2-cta-pulse {
    0%, 100% { box-shadow: 0 4px 0 rgba(24,18,37,0.85), 0 0 0 0 rgba(255, 214, 10, 0.55); }
    50%      { box-shadow: 0 4px 0 rgba(24,18,37,0.85), 0 0 0 16px rgba(255, 214, 10, 0); }
}
@keyframes v2-badge-pop {
    0%, 92%, 100% { transform: rotate(-3deg) scale(1); }
    96%           { transform: rotate(-3deg) scale(1.06); }
}
