/* ═══════════════════════════════════════════════════════════════
   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);
}

/* ── 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); }


/* ═══════════════════════════════════════════════════════════════
   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: 1.1fr 0.9fr;
    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));
}

.v2-hero-pitch {
    margin-top: 2rem;
    text-align: left;
    position: relative;
    z-index: 2;
}
.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; }


/* ═══════════════════════════════════════════════════════════════
   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-display);
    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-display);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.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-cta-row { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.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; }

/* ── 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-cream);
    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 {
    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;
}
.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;
}
.v2-host-body { padding: 1.5rem 1.6rem 1.75rem; }
.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-display, 'Anton', sans-serif);
    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);
}
.v2-learn-grid li span {
    flex-shrink: 0;
    font-weight: 800;
    color: var(--v2-magenta);
    font-size: 1.25rem;
    line-height: 1.2;
}
.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; }
}


/* ════════════════════════════════════════════════════════════════
   LIVE SCHEDULE — three day cards (23–25 June)
   ════════════════════════════════════════════════════════════════ */
.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-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; }
}

/* 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;
}
