/* ═══════════════════════════════════════════════════════════════
   SUBSTACK NOTES BOOTCAMP 2026 — Supplementary CSS
   Extends the HP2 design system (homepage-v2.css)
   All classes scoped under .hp2 .snb- prefix
   ═══════════════════════════════════════════════════════════════ */

/* ── Rotating glow custom property ────────────────────────────── */
@property --snb-glow-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes snb-glow-spin {
    to { --snb-glow-angle: 360deg; }
}

/* ── Hero Video (inline in hero) ─────────────────────────────── */
.hp2 .snb-hero-video-wrapper {
    position: relative;
    max-width: 820px;
    margin: 0 auto 2rem;
    border-radius: var(--hp2-radius);
    overflow: visible;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 0 60px rgba(255, 103, 25, 0.10);
    aspect-ratio: 16 / 9;
}

.hp2 .snb-hero-video-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--hp2-radius) + 3px);
    padding: 3px;
    background: conic-gradient(
        from var(--snb-glow-angle, 0deg),
        transparent 30%,
        rgba(255, 103, 25, 0.55) 48%,
        rgba(255, 140, 66, 0.25) 52%,
        rgba(255, 103, 25, 0.3) 56%,
        transparent 70%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: snb-glow-spin 6s linear infinite;
    pointer-events: none;
    z-index: 5;
}

.hp2 .snb-hero-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--hp2-radius);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hp2 .snb-hero-video-wrapper.snb-video-loaded iframe {
    opacity: 1;
}

/* Poster / thumbnail shown while iframe loads */
.hp2 .snb-video-poster {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ece6;
    border-radius: var(--hp2-radius);
    transition: opacity 0.5s ease 0.3s;
}

.hp2 .snb-video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--hp2-radius);
}

.hp2 .snb-video-loaded .snb-video-poster {
    opacity: 0;
    pointer-events: none;
}

.hp2 .snb-video-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp2 .snb-video-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--hp2-gold);
    border-radius: 50%;
    animation: snb-spin 0.8s linear infinite;
}

@keyframes snb-spin {
    to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════
   HOST SPOTLIGHT SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-host-spotlight {
    padding: 4rem 1.5rem;
}

.hp2 .snb-host-spotlight--left {
    background: #ffffff;
}

.hp2 .snb-host-spotlight--right {
    background: var(--hp2-cream);
}

.hp2 .snb-host-spotlight-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hp2 .snb-host-spotlight--right .snb-host-spotlight-inner {
    direction: rtl;
}

.hp2 .snb-host-spotlight--right .snb-host-spotlight-inner > * {
    direction: ltr;
}

.hp2 .snb-host-spotlight-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hp2-gold);
    margin-bottom: 0.75rem;
}

.hp2 .snb-host-spotlight-name {
    font-family: var(--hp2-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--hp2-navy);
    margin-bottom: 0.4rem;
    line-height: 1.15;
}

.hp2 .snb-host-spotlight-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hp2-gold);
    margin-bottom: 1.25rem;
}

.hp2 .snb-host-spotlight-bio {
    font-size: 1rem;
    line-height: 1.75;
    color: #58534d;
}

.hp2 .snb-host-spotlight-video {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    border-radius: 12px;
}

@media (max-width: 768px) {
    .hp2 .snb-host-spotlight-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hp2 .snb-host-spotlight--right .snb-host-spotlight-inner {
        direction: ltr;
    }

    .hp2 .snb-host-spotlight-name {
        font-size: 1.5rem;
    }
}

/* ── Growth Graph Section (below stats bar) ───────────────────── */
.hp2 .snb-growth-graph-section {
    background: linear-gradient(180deg, #f8f5f1 0%, #ffffff 100%);
    padding: var(--hp2-section-padding);
    text-align: center;
}

.hp2 .snb-growth-graph-section .hp2-section-header {
    color: var(--hp2-navy);
}

.hp2 .snb-growth-graph-section .hp2-heading-lg {
    color: var(--hp2-navy);
}

.hp2 .snb-growth-graph-section .hp2-subheading {
    color: #6b6560;
}

.hp2 .snb-growth-cta {
    margin-top: 2rem;
}

/* ── Stats Bar: Brands ────────────────────────────────────────── */
.hp2 .snb-stat-brands {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hp2 .snb-stat-brands span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 103, 25, 0.15);
    color: #FF6719;
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
}

/* ── Substack Brand Banner ─────────────────────────────────────── */

/* ── Substack Logo in Hero ─────────────────────────────────────── */

.hp2 .snb-hero-substack-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FF6719 0%, #ff8a47 100%);
    margin: 0 auto 1.25rem;
    box-shadow:
        0 0 30px rgba(255, 103, 25, 0.35),
        0 0 60px rgba(255, 103, 25, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: snb-logo-pulse 3s ease-in-out infinite;
}

.hp2 .snb-substack-icon {
    width: 28px;
    height: 28px;
    color: #fff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@keyframes snb-logo-pulse {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(255, 103, 25, 0.35),
            0 0 60px rgba(255, 103, 25, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 0 40px rgba(255, 103, 25, 0.50),
            0 0 80px rgba(255, 103, 25, 0.20),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* ── Hero Overrides (bootcamp-specific) ───────────────────────── */

.hp2 .snb-hero {
    position: relative;
    background:
        radial-gradient(ellipse at 5% 10%, rgba(255, 103, 25, 0.07) 0%, transparent 60%),
        linear-gradient(160deg, #ffffff 0%, #fffbf8 50%, #fff5ee 100%);
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    overflow: hidden;
}

.hp2 .snb-hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    pointer-events: none;
    z-index: 1;
}

.hp2 .snb-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 5% 10%, rgba(255, 103, 25, 0.05) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.hp2 .snb-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 103, 25, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 3;
}

.hp2 .snb-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 820px;
    margin: 0 auto;
}

.hp2 .snb-hero-eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #FF6719 0%, #ff8a47 100%);
    margin-bottom: 1.75rem;
    padding: 0.6rem 2rem;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 103, 25, 0.35);
}

.hp2 .snb-hero-title {
    font-family: var(--hp2-font-heading);
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.12;
    color: var(--hp2-navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hp2 .snb-hero-title em {
    font-style: italic;
    color: var(--hp2-gold);
}

.hp2 .snb-hero-subtitle {
    font-size: 1.1875rem;
    line-height: 1.6;
    color: #58534d;
    margin-bottom: 2rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Video pre-title (above video) ───────────────────────────── */
.hp2 .snb-hero-video-pretitle {
    font-family: var(--hp2-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp2-navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

/* ── Video caption (below video) ─────────────────────────────── */
.hp2 .snb-hero-video-caption {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #6b6560;
    max-width: 680px;
    margin: 1.5rem auto 2rem;
    font-style: italic;
}


.hp2 .snb-facts {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-bottom: 2.5rem;
    background: #ffffff;
    border: 1px solid rgba(255, 103, 25, 0.25);
    border-radius: var(--hp2-radius);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hp2 .snb-fact {
    flex: 1;
    padding: 1.25rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 103, 25, 0.2);
}

.hp2 .snb-fact:last-child {
    border-right: none;
}

.hp2 .snb-fact-value {
    font-family: var(--hp2-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp2-navy);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.hp2 .snb-fact-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #958f88;
}

/* ── Hero CTA area ────────────────────────────────────────────── */
.hp2 .snb-hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hp2 .snb-hero-note {
    font-size: 0.8125rem;
    color: #b8b0a8;
}

.hp2 .snb-hero-note strong {
    color: var(--hp2-urgency);
    font-weight: 700;
}

/* ── Host Photos Row (in Hero) ────────────────────────────────── */
.hp2 .snb-hosts-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hp2 .snb-host-mini {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hp2 .snb-host-mini:hover {
    transform: translateY(-6px);
}

.hp2 .snb-host-mini-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    margin-bottom: 0;
    display: block;
}

.hp2 .snb-host-mini-ring {
    position: relative;
    display: inline-block;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    padding: 4px;
    margin-bottom: 0.5rem;
    background: var(--hp2-gold);
    animation: snb-float 4s ease-in-out infinite;
}

.hp2 .snb-host-mini-ring::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(
        from var(--snb-glow-angle, 0deg),
        transparent 25%,
        rgba(255, 103, 25, 0.7) 45%,
        #fff 50%,
        rgba(255, 103, 25, 0.7) 55%,
        transparent 75%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: snb-glow-spin 4s linear infinite;
    pointer-events: none;
}

.hp2 .snb-host-mini:nth-child(2) .snb-host-mini-ring {
    animation-delay: -1.3s;
}
.hp2 .snb-host-mini:nth-child(2) .snb-host-mini-ring::before {
    animation-delay: -1.3s;
}

.hp2 .snb-host-mini:nth-child(3) .snb-host-mini-ring {
    animation-delay: -2.6s;
}
.hp2 .snb-host-mini:nth-child(3) .snb-host-mini-ring::before {
    animation-delay: -2.6s;
}

.hp2 .snb-host-mini:hover .snb-host-mini-ring {
    animation-play-state: paused;
}

@keyframes snb-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.hp2 .snb-host-mini-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #58534d;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: GROWTH FUNNEL
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-funnel-section {
    padding: var(--hp2-section-padding);
    background: linear-gradient(160deg, #fff6f1 0%, #ffffff 100%);
}

.hp2 .snb-funnel-section .hp2-section-header {
    color: var(--hp2-navy);
}

.hp2 .snb-funnel-section .hp2-heading-lg {
    color: var(--hp2-navy);
}

.hp2 .snb-funnel-section .hp2-subheading {
    color: #6b6560;
}

.hp2 .snb-funnel {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hp2 .snb-funnel-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    font-family: var(--hp2-font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--hp2-navy);
    text-align: center;
    transition: all var(--hp2-transition);
    position: relative;
}

.hp2 .snb-funnel-step-7 {
    color: var(--hp2-white) !important;
}

.hp2 .snb-funnel-step:hover {
    transform: scale(1.03);
}

.hp2 .snb-funnel-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Step widths — widest at top, narrowest at bottom  */
.hp2 .snb-funnel-step-1 {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 103, 25, 0.12) 0%, rgba(255, 103, 25, 0.22) 100%);
    border: 1px solid rgba(255, 103, 25, 0.3);
}

.hp2 .snb-funnel-step-2 {
    width: 92%;
    background: linear-gradient(135deg, rgba(255, 103, 25, 0.17) 0%, rgba(255, 103, 25, 0.27) 100%);
    border: 1px solid rgba(255, 103, 25, 0.35);
}

.hp2 .snb-funnel-step-3 {
    width: 84%;
    background: linear-gradient(135deg, rgba(255, 103, 25, 0.22) 0%, rgba(255, 103, 25, 0.34) 100%);
    border: 1px solid rgba(255, 103, 25, 0.4);
}

.hp2 .snb-funnel-step-4 {
    width: 76%;
    background: linear-gradient(135deg, rgba(255, 103, 25, 0.3) 0%, rgba(255, 103, 25, 0.42) 100%);
    border: 1px solid rgba(255, 103, 25, 0.45);
}

.hp2 .snb-funnel-step-5 {
    width: 68%;
    background: linear-gradient(135deg, rgba(255, 103, 25, 0.38) 0%, rgba(255, 103, 25, 0.5) 100%);
    border: 1px solid rgba(255, 103, 25, 0.52);
}

.hp2 .snb-funnel-step-6 {
    width: 60%;
    background: linear-gradient(135deg, rgba(255, 103, 25, 0.48) 0%, rgba(255, 103, 25, 0.6) 100%);
    border: 1px solid rgba(255, 103, 25, 0.58);
}

.hp2 .snb-funnel-step-7 {
    width: 50%;
    background: var(--hp2-gold);
    color: var(--hp2-white);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 103, 25, 0.4);
}

.hp2 .snb-funnel-arrow {
    color: var(--hp2-gold);
    font-size: 0.875rem;
    opacity: 0.5;
    padding: 0.25rem 0;
    line-height: 1;
}

/* Funnel responsive */
@media (max-width: 768px) {
    .hp2 .snb-funnel-step {
        font-size: 0.875rem;
        padding: 0.9rem 1.25rem;
    }

    .hp2 .snb-funnel-step-1 { width: 100%; }
    .hp2 .snb-funnel-step-2 { width: 95%; }
    .hp2 .snb-funnel-step-3 { width: 90%; }
    .hp2 .snb-funnel-step-4 { width: 85%; }
    .hp2 .snb-funnel-step-5 { width: 80%; }
    .hp2 .snb-funnel-step-6 { width: 75%; }
    .hp2 .snb-funnel-step-7 { width: 70%; }
}

@media (max-width: 480px) {
    .hp2 .snb-funnel-step {
        font-size: 0.8125rem;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }

    .hp2 .snb-funnel-icon {
        font-size: 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: CALENDAR VIEW
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-calendar-section {
    padding: var(--hp2-section-padding);
    background-color: var(--hp2-cream);
}

.hp2 .snb-calendar {
    max-width: 560px;
    margin: 0 auto 2rem;
    background-color: var(--hp2-white);
    border-radius: var(--hp2-radius);
    box-shadow: var(--hp2-shadow);
    overflow: hidden;
}

/* Header with shimmer effect */
.hp2 .snb-cal-header {
    background: linear-gradient(135deg, #FF6719 0%, #ff8a47 100%);
    color: var(--hp2-white);
    font-family: var(--hp2-font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.hp2 .snb-cal-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: snb-cal-shimmer 3s ease-in-out infinite;
}

@keyframes snb-cal-shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.hp2 .snb-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: var(--hp2-cream-dark);
    border-bottom: 1px solid var(--hp2-border);
}

.hp2 .snb-cal-weekdays span {
    text-align: center;
    padding: 0.6rem 0;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hp2-text-muted);
}

.hp2 .snb-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}

.hp2 .snb-cal-day,
.hp2 .snb-cal-empty {
    text-align: center;
    padding: 0.75rem 0.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--hp2-text);
    border-bottom: 1px solid var(--hp2-border);
    border-right: 1px solid var(--hp2-border);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    cursor: default;
}

.hp2 .snb-cal-grid > :nth-child(7n) {
    border-right: none;
}

.hp2 .snb-cal-grid > :nth-last-child(-n+7) {
    border-bottom: none;
}

.hp2 .snb-cal-empty {
    background-color: var(--hp2-cream);
}

/* Live session days — bold gold with hover glow */
.hp2 .snb-cal-live {
    background-color: var(--hp2-gold);
    color: var(--hp2-white);
    font-weight: 700;
    position: relative;
    cursor: pointer;
    z-index: 1;
}

.hp2 .snb-cal-live:hover {
    transform: scale(1.18);
    z-index: 2;
    box-shadow: 0 0 16px rgba(255, 103, 25, 0.55), 0 0 30px rgba(255, 103, 25, 0.2);
    border-radius: 6px;
    background: linear-gradient(135deg, #FF8534 0%, #FF6719 100%);
}

.hp2 .snb-cal-live::after {
    content: '🔥';
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    line-height: 1;
    animation: snb-cal-flame 1.5s ease-in-out infinite alternate;
}

@keyframes snb-cal-flame {
    0% { transform: translateX(-50%) scale(1); }
    100% { transform: translateX(-50%) scale(1.25); }
}

/* Tooltip on live days */
.hp2 .snb-cal-live[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #0f1b2d;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.22);
    animation: snb-tooltip-in 0.2s ease-out;
}

@keyframes snb-tooltip-in {
    0% { opacity: 0; transform: translateX(-50%) translateY(4px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Community access days — medium blue */
.hp2 .snb-cal-community {
    background-color: #c4e0f3;
    color: #14466a;
    font-weight: 600;
}

.hp2 .snb-cal-community:hover {
    background-color: #a8d1ec;
}

/* Notes Boost Challenge days — light gray */
.hp2 .snb-cal-challenge {
    background-color: #f0f0f0;
    color: #4a4a4a;
    font-weight: 600;
}

.hp2 .snb-cal-challenge:hover {
    background-color: #e4e4e4;
}

/* Legend */
.hp2 .snb-cal-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hp2 .snb-cal-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--hp2-text-muted);
}

.hp2 .snb-cal-legend-swatch {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.hp2 .snb-cal-legend-live {
    background-color: var(--hp2-gold);
}

.hp2 .snb-cal-legend-community {
    background-color: #c4e0f3;
    border: 1px solid #8fc4e0;
}

.hp2 .snb-cal-legend-challenge {
    background-color: #f0f0f0;
    border: 1px solid #d0d0d0;
}

/* Calendar responsive */
@media (max-width: 480px) {
    .hp2 .snb-cal-day,
    .hp2 .snb-cal-empty {
        padding: 0.5rem 0.15rem;
        font-size: 0.8125rem;
    }

    .hp2 .snb-cal-live::after {
        display: none;
    }

    .hp2 .snb-cal-live[data-tooltip]:hover::before {
        display: none;
    }

    .hp2 .snb-cal-legend {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: SUPERPOWERS + RESULTS
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-superpowers {
    padding: var(--hp2-section-padding);
    background: linear-gradient(180deg, #faf9f7 0%, #fff 100%);
}

.hp2 .snb-superpowers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.hp2 .snb-superpower-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp2 .snb-superpower-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hp2 .snb-superpower-avatar {
    width: 110px;
    height: 110px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--hp2-gold, #FF6719);
}

.hp2 .snb-superpower-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp2 .snb-superpower-badge {
    display: inline-block;
    background: rgba(255, 103, 25, 0.12);
    color: #FF6719;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.hp2 .snb-superpower-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hp2-navy, #0f1b2d);
    margin-bottom: 0.5rem;
}

.hp2 .snb-superpower-tagline {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.25rem;
}

.hp2 .snb-superpower-proof {
    background: linear-gradient(135deg, #FF6719 0%, #ff8a47 100%);
    color: #fff;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
}

.hp2 .snb-proof-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.hp2 .snb-proof-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

/* Arrow connector */
.hp2 .snb-superpowers-arrow {
    text-align: center;
    margin: 2.5rem 0;
}

.hp2 .snb-arrow-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.hp2 .snb-arrow-icon {
    font-size: 2rem;
    animation: snb-bounce 1.5s ease infinite;
}

@keyframes snb-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Results gallery */
.hp2 .snb-results {
    margin-top: 1rem;
}

.hp2 .snb-results-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    color: var(--hp2-navy, #0f1b2d);
    margin-bottom: 2rem;
}

.hp2 .snb-results-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hp2 .snb-result-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.hp2 .snb-result-card:hover {
    transform: translateY(-3px);
}

.hp2 .snb-result-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.hp2 .snb-result-caption {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hp2 .snb-result-caption strong {
    font-size: 0.9rem;
    color: var(--hp2-navy, #0f1b2d);
}

.hp2 .snb-result-caption span {
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
}

/* Mobile: stack cards vertically */
@media (max-width: 768px) {
    .hp2 .snb-superpowers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hp2 .snb-results-gallery {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: VIDEO
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-video-section {
    padding: var(--hp2-section-padding);
    background-color: #fff;
}

.hp2 .snb-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 12px;
}

.hp2 .snb-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: TESTIMONIAL GALLERY (video + text cards mixed)
   ═══════════════════════════════════════════════════════════════ */

/* ── Full-width testimonial video reel ───────────────────────── */
.hp2 .snb-testimonial-video-reel {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    margin-bottom: 1rem;
}

.hp2 .snb-testimonial-video-caption {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #958f88;
    letter-spacing: 0.03em;
    margin-bottom: 3rem;
}

/* ── Masonry gallery ─────────────────────────────────────────── */
.hp2 .snb-testimonial-gallery {
    column-count: 3;
    column-gap: 1.5rem;
}

.hp2 .snb-tcard {
    break-inside: avoid;
    background: var(--hp2-cream, #faf9f7);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.hp2 .snb-tcard:hover {
    border-color: var(--hp2-gold, #FF6719);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.hp2 .snb-tcard-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hp2 .snb-tcard-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 2px solid rgba(255, 103, 25, 0.3);
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.hp2 .snb-tcard-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--hp2-navy, #0f1b2d);
}

.hp2 .snb-tcard-role {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.4;
    margin-top: 0.15rem;
}

.hp2 .snb-tcard-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.6rem;
}

.hp2 .snb-tcard-stars svg {
    width: 16px;
    height: 16px;
    fill: #FF6719;
    filter: drop-shadow(0 1px 2px rgba(255, 103, 25, 0.25));
}

.hp2 .snb-tcard-metric {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #FF6719;
    background: rgba(255, 103, 25, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.hp2 .snb-tcard-quote {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #444;
    font-style: italic;
    position: relative;
}

.hp2 .snb-tcard-quote::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #FF6719;
    opacity: 0.25;
    position: absolute;
    top: -0.75rem;
    left: -0.15rem;
    line-height: 1;
}

/* ── Video cards (mixed inside gallery) ──────────────────────── */
.hp2 .snb-tcard--video {
    padding: 0;
    overflow: hidden;
}

.hp2 .snb-tcard-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #0a1628;
}

.hp2 .snb-tcard-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Play/pause overlay (covers entire video area) */
.hp2 .snb-play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.35) 100%);
    transition: background 0.3s ease;
}

.hp2 .snb-play-overlay.playing {
    background: transparent;
}

.hp2 .snb-play-overlay.playing:hover {
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.18) 100%);
}

.hp2 .snb-play-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8534, #FF6719);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.hp2 .snb-play-overlay:hover .snb-play-btn {
    transform: scale(1.1);
}

.hp2 .snb-play-overlay.playing .snb-play-btn {
    opacity: 0;
}

.hp2 .snb-play-overlay.playing:hover .snb-play-btn {
    opacity: 1;
}

/* Portrait (9:16) video cards */
.hp2 .snb-tcard--portrait .snb-tcard-video-wrapper {
    padding-bottom: 177.78%; /* 9:16 */
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hp2 .snb-testimonial-gallery {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .hp2 .snb-testimonial-gallery {
        column-count: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: 4 MYTHS QUIZ
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-quiz-section {
    padding: var(--hp2-section-padding);
    background-color: var(--hp2-blush);
}

.hp2 .snb-quiz {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hp2 .snb-quiz-card {
    background-color: var(--hp2-white);
    border-radius: var(--hp2-radius);
    border: 1px solid var(--hp2-border);
    overflow: hidden;
    transition: all var(--hp2-transition);
}

.hp2 .snb-quiz-card:hover {
    border-color: var(--hp2-gold);
    box-shadow: var(--hp2-shadow-card);
}

.hp2 .snb-quiz-card[open] {
    border-color: var(--hp2-gold);
    box-shadow: var(--hp2-shadow);
}

.hp2 .snb-quiz-question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    font-family: var(--hp2-font-body);
    transition: background-color var(--hp2-transition);
}

.hp2 .snb-quiz-question::-webkit-details-marker,
.hp2 .snb-quiz-question::marker {
    display: none;
    content: '';
}

.hp2 .snb-quiz-question:hover {
    background-color: var(--hp2-cream);
}

.hp2 .snb-quiz-myth-badge {
    flex-shrink: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    background-color: #fee2e2;
    color: #b91c1c;
}

.hp2 .snb-quiz-myth-text {
    flex: 1;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--hp2-navy);
    line-height: 1.35;
}

.hp2 .snb-quiz-toggle {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--hp2-gold);
    transition: transform var(--hp2-transition);
    margin-left: auto;
}

.hp2 .snb-quiz-card[open] .snb-quiz-toggle {
    transform: rotate(45deg);
}

.hp2 .snb-quiz-answer {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--hp2-border);
    margin-top: 0;
    padding-top: 1.25rem;
    background-color: var(--hp2-cream);
}

.hp2 .snb-quiz-truth-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    background-color: #dcfce7;
    color: #15803d;
    margin-bottom: 0.75rem;
}

.hp2 .snb-quiz-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--hp2-text-muted);
    margin-bottom: 0.75rem;
}

.hp2 .snb-quiz-answer p:last-child {
    margin-bottom: 0;
}

.hp2 .snb-quiz-bonus {
    background-color: var(--hp2-gold-light);
    padding: 0.75rem 1rem;
    border-radius: var(--hp2-radius-sm);
    font-weight: 500;
    color: var(--hp2-text) !important;
}

.hp2 .snb-quiz-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.hp2 .snb-quiz-cta p {
    font-size: 1.125rem;
    color: var(--hp2-text-muted);
    margin-bottom: 1rem;
}

/* Quiz responsive */
@media (max-width: 768px) {
    .hp2 .snb-quiz-question {
        padding: 1rem 1.25rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hp2 .snb-quiz-myth-text {
        font-size: 0.9375rem;
    }

    .hp2 .snb-quiz-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: CURRICULUM (Day-by-Day)
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-curriculum {
    padding: var(--hp2-section-padding);
    background-color: var(--hp2-white);
}

.hp2 .snb-curriculum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hp2 .snb-day-card {
    background-color: var(--hp2-cream);
    border-radius: var(--hp2-radius);
    padding: 2rem;
    transition: all var(--hp2-transition);
    border: 1px solid transparent;
}

.hp2 .snb-day-card:hover {
    border-color: var(--hp2-gold);
    transform: translateY(-3px);
    box-shadow: var(--hp2-shadow-card);
}

.hp2 .snb-day-badge {
    display: inline-block;
    width: fit-content;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    background-color: var(--hp2-gold);
    color: var(--hp2-white);
    margin-bottom: 0.75rem;
    box-shadow: 0 3px 10px rgba(255, 103, 25, 0.28);
}

.hp2 .snb-day-title {
    font-family: var(--hp2-font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--hp2-navy);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.hp2 .snb-day-desc {
    font-size: 0.9375rem;
    color: var(--hp2-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hp2 .snb-day-topics {
    list-style: none;
}

.hp2 .snb-day-topics li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.875rem;
    color: var(--hp2-text);
}

.hp2 .snb-day-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hp2-success);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: YOUR HOSTS (3-column)
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-hosts {
    padding: var(--hp2-section-padding);
    background-color: var(--hp2-cream);
}

.hp2 .snb-hosts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hp2 .snb-host-card {
    background-color: var(--hp2-white);
    border-radius: var(--hp2-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--hp2-transition);
    border: 1px solid transparent;
}

.hp2 .snb-host-card:hover {
    border-color: var(--hp2-gold);
    box-shadow: var(--hp2-shadow);
    transform: translateY(-4px);
}

.hp2 .snb-host-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--hp2-gold-light);
    margin: 0 auto 1.25rem;
}

.hp2 .snb-host-name {
    font-family: var(--hp2-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp2-navy);
    margin-bottom: 0.35rem;
}

.hp2 .snb-host-role {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--hp2-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.hp2 .snb-host-bio {
    font-size: 0.9375rem;
    color: var(--hp2-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.hp2 .snb-host-stats {
    list-style: none;
    text-align: left;
}

.hp2 .snb-host-stats li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.8125rem;
    color: var(--hp2-text);
    font-weight: 500;
}

.hp2 .snb-host-stats li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--hp2-gold);
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: COMBINED HOSTS + SUPERPOWERS
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-hosts-combined {
    padding: var(--hp2-section-padding);
    background: linear-gradient(180deg, #faf9f7 0%, var(--hp2-cream) 100%);
}

.hp2 .snb-hosts-subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-top: 0.75rem;
    font-style: italic;
}

.hp2 .snb-hosts-subtitle em {
    color: var(--hp2-gold);
    font-weight: 600;
}

.hp2 .snb-hosts-combined-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hp2 .snb-host-combined-card {
    background: var(--hp2-white);
    border-radius: var(--hp2-radius);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: all var(--hp2-transition);
    border: 1px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hp2 .snb-host-combined-card:hover {
    border-color: var(--hp2-gold);
    box-shadow: var(--hp2-shadow);
    transform: translateY(-4px);
}

.hp2 .snb-host-combined-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hp2 .snb-host-combined-top .snb-host-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--hp2-gold-light);
    flex-shrink: 0;
    margin: 0;
}

.hp2 .snb-host-combined-top .editable-img-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.hp2 .snb-host-combined-identity {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hp2 .snb-host-combined-identity .snb-host-name {
    margin-bottom: 0;
}

.hp2 .snb-host-combined-identity .snb-host-role {
    margin-bottom: 0.35rem;
}

.hp2 .snb-host-combined-card .snb-host-bio {
    font-size: 0.9rem;
    color: var(--hp2-text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.hp2 .snb-host-superpower-text {
    font-size: 0.875rem;
    color: var(--hp2-navy);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 103, 25, 0.05);
    border-left: 3px solid var(--hp2-gold);
    border-radius: 0 8px 8px 0;
}

.hp2 .snb-host-combined-card .snb-host-stats {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.hp2 .snb-host-combined-card .snb-superpower-proof {
    margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: WHAT'S INCLUDED (Bonuses)
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-bonuses {
    padding: var(--hp2-section-padding);
    background-color: var(--hp2-white);
}

.hp2 .snb-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hp2 .snb-bonus-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--hp2-cream);
    border-radius: var(--hp2-radius);
    transition: all var(--hp2-transition);
}

.hp2 .snb-bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--hp2-shadow-card);
}

.hp2 .snb-bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.hp2 .snb-bonus-title {
    font-family: var(--hp2-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hp2-navy);
    margin-bottom: 0.5rem;
}

.hp2 .snb-bonus-desc {
    font-size: 0.875rem;
    color: var(--hp2-text-muted);
    line-height: 1.5;
}

.hp2 .snb-bonus-value {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--hp2-gold);
    background-color: var(--hp2-gold-light);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: LETTER / WHY NOW
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-letter-section {
    padding: 5rem 1.5rem;
    background: #fffdf9;
    border-top: 1px solid #f0ebe3;
}

.hp2 .snb-letter-inner {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.85;
    color: #3a3530;
    font-family: Georgia, 'Times New Roman', serif;
}

.hp2 .snb-letter-inner p {
    margin-bottom: 1.25rem;
}

.hp2 .snb-letter-inner strong {
    color: var(--hp2-navy);
}

.hp2 .snb-letter-callout {
    font-size: 1.2rem;
    border-left: 4px solid var(--hp2-gold);
    padding: 0.75rem 1.25rem;
    margin: 1.75rem 0 !important;
    background: #fff8f3;
    border-radius: 0 8px 8px 0;
    color: var(--hp2-navy);
}

.hp2 .snb-letter-list {
    margin: 0.5rem 0 1.25rem 1.25rem;
    padding: 0;
    list-style: none;
}

.hp2 .snb-letter-list li {
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative;
    color: #3a3530;
}

.hp2 .snb-letter-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--hp2-gold);
    font-size: 0.75rem;
    top: 0.5rem;
}

.hp2 .snb-letter-cohosts li {
    font-size: 1.05rem;
    padding-bottom: 0.5rem;
}

.hp2 .snb-letter-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: PRICING
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-pricing {
    padding: var(--hp2-section-padding);
    background: linear-gradient(160deg, #fff6f0 0%, #fffaf7 50%, #ffffff 100%);
    border-top: 3px solid var(--hp2-gold);
    text-align: center;
}

.hp2 .snb-pricing .hp2-label {
    color: var(--hp2-gold);
    border-color: var(--hp2-gold);
}

.hp2 .snb-pricing .hp2-heading-lg {
    color: var(--hp2-navy);
}

.hp2 .snb-pricing .hp2-divider {
    border-color: rgba(0, 0, 0, 0.1);
}

.hp2 .snb-pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background-color: var(--hp2-white);
    border-radius: var(--hp2-radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--hp2-shadow-lg);
    position: relative;
    overflow: hidden;
}

.hp2 .snb-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--hp2-gold), #FF8C42);
}

.hp2 .snb-pricing-name {
    font-family: var(--hp2-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--hp2-navy);
    margin-bottom: 0.5rem;
}

.hp2 .snb-pricing-tagline {
    font-size: 0.9375rem;
    color: var(--hp2-text-muted);
    margin-bottom: 2rem;
}

.hp2 .snb-pricing-amount {
    font-family: var(--hp2-font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--hp2-navy);
    line-height: 1;
    margin-bottom: 1.75rem;
}

.hp2 .snb-pricing-plans {
    font-size: 0.875rem;
    color: var(--hp2-text-muted);
    margin-bottom: 2rem;
}

.hp2 .snb-pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.hp2 .snb-pricing-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.6rem;
    font-size: 0.9375rem;
    color: var(--hp2-text);
}

.hp2 .snb-pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hp2-success);
    font-weight: 700;
}

.hp2 .snb-pricing-spots {
    font-size: 0.875rem;
    color: var(--hp2-urgency);
    font-weight: 600;
    margin-top: 1rem;
}

/* Payment plan question label (inline, same row as plan links) */
.hp2 .snb-plan-question-inline {
    font-size: 0.875rem;
    color: var(--hp2-text-muted);
    font-weight: 500;
}

/* Payment plan links (below CTA buttons) */
.hp2 .snb-plan-links {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    width: 100%;
}

.hp2 .snb-plan-links-sep {
    color: var(--hp2-gold);
    opacity: 0.5;
}

.hp2 .snb-plan-links-sep--light {
    color: rgba(255, 103, 25, 0.4);
}

.hp2 .snb-plan-link {
    display: inline;
    margin-top: 0;
    font-size: 0.875rem;
    color: var(--hp2-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.hp2 .snb-plan-link:hover {
    opacity: 0.8;
}

.hp2 .snb-plan-link--light {
    color: var(--hp2-gold);
}

.hp2 .snb-plan-link--light:hover {
    opacity: 0.8;
}

.hp2 .snb-pricing-guarantee {
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: var(--hp2-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: SUCCESSFUL NOTES — Shared Card Styles
   ═══════════════════════════════════════════════════════════════ */

.hp2 .snb-note-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
}

.hp2 .snb-note-card:hover {
    border-color: var(--hp2-gold, #FF6719);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.hp2 .snb-note-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.hp2 .snb-note-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 2px solid rgba(255, 103, 25, 0.25);
    flex-shrink: 0;
}

.hp2 .snb-note-author {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--hp2-navy, #0f1b2d);
    line-height: 1.2;
}

.hp2 .snb-note-handle {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.1rem;
}

.hp2 .snb-note-badge-viral {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
    background: rgba(255, 103, 25, 0.1);
    color: #FF6719;
    white-space: nowrap;
    flex-shrink: 0;
}

.hp2 .snb-note-body {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: #242424;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    position: relative;
    max-height: 16em;
    overflow: hidden;
}

.hp2 .snb-note-body p {
    font-weight: 400;
    margin-bottom: 0.35em;
}

.hp2 .snb-note-body img.snb-note-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0.75rem 0;
}

.hp2 .snb-note-body--expanded {
    max-height: none;
    overflow: visible;
}

.hp2 .snb-note-see-more {
    display: block;
    background: none;
    border: none;
    color: var(--hp2-gold, #d4a843);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin: 0.25rem 0 0.75rem 0;
    text-decoration: none;
}

.hp2 .snb-note-see-more:hover {
    text-decoration: underline;
}

.hp2 .snb-note-body::before {
    content: '';
    display: none;
}

.hp2 .snb-note-engagement {
    display: flex;
    gap: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.hp2 .snb-note-engagement span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Substack-style SVG icons */
.hp2 .snb-note-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: #999;
}

/* Link wrapper — card becomes clickable */
a.snb-note-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.snb-note-link:hover {
    text-decoration: none;
}

a.snb-note-link:hover .snb-note-author {
    color: var(--hp2-gold, #FF6719);
}

/* ── OPTION A: Carousel (horizontal scroll) ──────────────────── */

.hp2 .snb-notes-carousel-section {
    padding: var(--hp2-section-padding);
    background: linear-gradient(160deg, #f8f5f1 0%, #ffffff 100%);
}

.hp2 .snb-notes-carousel-section .hp2-heading-lg {
    color: var(--hp2-navy);
}

.hp2 .snb-notes-carousel-section .hp2-subheading {
    color: #6b6560;
}

.hp2 .snb-notes-carousel-section .hp2-label {
    color: var(--hp2-gold);
}

.hp2 .snb-notes-carousel-section .hp2-divider {
    border-color: var(--hp2-border);
}

.hp2 .snb-notes-carousel-wrap {
    position: relative;
    margin-top: 2rem;
}

.hp2 .snb-notes-carousel-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0 1.5rem;
    scrollbar-width: none;
}

.hp2 .snb-notes-carousel-track::-webkit-scrollbar {
    display: none;
}

.hp2 .snb-notes-carousel-track .snb-note-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.hp2 .snb-notes-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 103, 25, 0.3);
    background: #ffffff;
    color: var(--hp2-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hp2 .snb-notes-arrow:hover {
    background: rgba(255, 103, 25, 0.08);
    border-color: var(--hp2-gold);
}

.hp2 .snb-notes-arrow--left {
    left: -22px;
}

.hp2 .snb-notes-arrow--right {
    right: -22px;
}

/* ── OPTION B: Grid (masonry, testimonial-style) ─────────────── */

.hp2 .snb-notes-grid-section {
    padding: var(--hp2-section-padding);
    background-color: var(--hp2-cream, #faf9f7);
}

.hp2 .snb-notes-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.hp2 .snb-note-card--grid {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    background: #fff;
}

/* ── Responsive: Notes Carousel ──────────────────────────────── */

@media (max-width: 768px) {
    .hp2 .snb-notes-arrow {
        display: none;
    }

    .hp2 .snb-notes-carousel-track .snb-note-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 480px) {
    .hp2 .snb-notes-carousel-track .snb-note-card {
        flex: 0 0 85vw;
    }
}

/* ── Responsive: Notes Grid ──────────────────────────────────── */

@media (max-width: 1024px) {
    .hp2 .snb-notes-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .hp2 .snb-notes-grid {
        column-count: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   MEMBER REPLAYS CAROUSEL
   ═══════════════════════════════════════════════════════════════ */

.hp2 .hp2-replays {
    padding: var(--hp2-section-padding);
    background: linear-gradient(160deg, #f4f1ec 0%, #f9f6f2 100%);
}

.hp2 .hp2-replays .hp2-heading-lg {
    color: var(--hp2-navy);
}

.hp2 .hp2-replays .hp2-subheading {
    color: #6b6560;
}

.hp2 .hp2-replays .hp2-label {
    color: var(--hp2-gold);
}

.hp2 .hp2-replays .hp2-divider {
    border-color: var(--hp2-border);
}

.hp2 .hp2-replays-wrap {
    position: relative;
    margin-top: 2rem;
}

.hp2 .hp2-replays-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0 1.5rem;
    scrollbar-width: none;
}

.hp2 .hp2-replays-track::-webkit-scrollbar {
    display: none;
}

.hp2 .hp2-replay-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid #e8e3dc;
    border-radius: var(--hp2-radius);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: default;
}

.hp2 .hp2-replay-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 103, 25, 0.35);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
}

.hp2 .hp2-replay-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--hp2-gold);
    background: rgba(255, 103, 25, 0.12);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
}

.hp2 .hp2-replay-title {
    font-family: var(--hp2-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hp2-navy);
    line-height: 1.35;
    margin: 0;
}

.hp2 .hp2-replay-meta {
    font-size: 0.8125rem;
    color: #958f88;
    margin-top: auto;
}

.hp2 .hp2-replays-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 103, 25, 0.3);
    background: #ffffff;
    color: var(--hp2-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hp2 .hp2-replays-arrow:hover {
    background: rgba(255, 103, 25, 0.08);
    border-color: var(--hp2-gold);
}

.hp2 .hp2-replays-arrow--left {
    left: -22px;
}

.hp2 .hp2-replays-arrow--right {
    right: -22px;
}

.hp2 .hp2-replays-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.hp2 .hp2-replays-note {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #958f88;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE: BOOTCAMP-SPECIFIC
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .hp2 .snb-hero-title {
        font-size: 2.5rem;
    }

    .hp2 .snb-hosts-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .hp2 .snb-hosts-combined-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .hp2 .snb-curriculum-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hp2 .snb-hero {
        padding: 3.5rem 1.25rem 3rem;
    }

    .hp2 .snb-hero-title {
        font-size: 2rem;
    }

    .hp2 .snb-hero-subtitle {
        font-size: 1rem;
    }

    .hp2 .snb-facts {
        flex-direction: column;
    }

    .hp2 .snb-fact {
        border-right: none;
        border-bottom: 1px solid rgba(255, 103, 25, 0.15);
        padding: 0.75rem 1rem;
    }

    .hp2 .snb-fact:last-child {
        border-bottom: none;
    }

    .hp2 .snb-hosts-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .hp2 .snb-hosts-combined-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .hp2 .snb-curriculum-grid {
        grid-template-columns: 1fr;
    }

    .hp2 .snb-bonuses-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .hp2 .snb-hosts-row {
        gap: 0.75rem;
    }

    .hp2 .snb-host-mini-ring {
        width: 88px;
        height: 88px;
    }

    .hp2 .snb-host-mini-img {
        width: 80px;
        height: 80px;
    }

    .hp2 .snb-pricing-card {
        padding: 2rem 1.5rem;
    }

    .hp2 .snb-pricing-amount {
        font-size: 2.75rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hp2 .snb-hero-title {
        font-size: 1.75rem;
    }

    .hp2 .snb-fact-value {
        font-size: 1.25rem;
    }
}

/* Replays carousel responsive */
@media (max-width: 768px) {
    .hp2 .hp2-replays-arrow {
        display: none;
    }

    .hp2 .hp2-replay-card {
        flex: 0 0 260px;
    }
}

@media (max-width: 480px) {
    .hp2 .hp2-replay-card {
        flex: 0 0 85vw;
    }
}

/* ═══════════════════════════════════════════════════════════════
   DYNAMIC NOTES GRID — Admin UI
   ═══════════════════════════════════════════════════════════════ */

.hp2 .snb-note-admin-bar {
    position: absolute;
    top: -8px;
    right: 8px;
    z-index: 10;
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.hp2 div:hover > .snb-note-admin-bar {
    opacity: 1;
}

.hp2 .snb-note-admin-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background 0.15s, border-color 0.15s;
}

.hp2 .snb-note-admin-btn:hover {
    background: #f0f0f0;
    border-color: #bbb;
}

.hp2 .snb-note-admin-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.hp2 .snb-note-admin-refresh:hover {
    background: #e8f5e9;
    border-color: #4caf50;
    color: #2e7d32;
}

.hp2 .snb-note-admin-delete:hover {
    background: #fce4ec;
    border-color: #e53935;
    color: #c62828;
}

.hp2 .snb-notes-admin-panel {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.hp2 .snb-notes-add-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.hp2 .snb-notes-add-input {
    flex: 1;
    padding: 0.625rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.hp2 .snb-notes-add-input:focus {
    border-color: var(--hp2-gold, #d4a843);
    box-shadow: 0 0 0 2px rgba(212, 168, 67, 0.2);
}

.hp2 .snb-notes-error {
    color: #c62828;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

.hp2 .snb-notes-success {
    color: #2e7d32;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

@media (max-width: 600px) {
    .hp2 .snb-notes-add-form {
        flex-direction: column;
    }

    .hp2 .snb-notes-add-input {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════
   EXIT-INTENT POPUP MODAL
   ═══════════════════════════════════════════════════════════════ */
.snb-exit-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(15, 27, 45, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: snbFadeIn 0.3s ease;
}

@keyframes snbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes snbSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.snb-exit-modal {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: snbSlideUp 0.35s ease;
}

.snb-exit-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snb-exit-close:hover {
    background: #ddd;
    color: #333;
}

.snb-exit-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.snb-exit-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f1b2d;
    margin: 0 0 0.75rem;
}

.snb-exit-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin: 0 0 1.25rem;
}

.snb-exit-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.snb-exit-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.snb-exit-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF6719;
}

.snb-exit-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.snb-exit-cta {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #FF8534 0%, #FF6719 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s;
}

.snb-exit-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 25, 0.4);
}

.snb-exit-dismiss {
    display: block;
    margin: 0.75rem auto 0;
    background: none;
    border: none;
    font-size: 0.8rem;
    color: #aaa;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s;
}

.snb-exit-dismiss:hover {
    color: #666;
}

@media (max-width: 480px) {
    .snb-exit-modal {
        padding: 2rem 1.25rem 1.5rem;
    }

    .snb-exit-title {
        font-size: 1.25rem;
    }

    .snb-exit-stats {
        gap: 1rem;
    }

    .snb-exit-stat-num {
        font-size: 1.25rem;
    }

    .snb-exit-cta {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   EARNINGS SCREENSHOT MARQUEE
   ═══════════════════════════════════════════════════════════════ */

.hp2 .snb-marquee-section {
    padding: var(--hp2-section-padding);
    padding-left: 0;
    padding-right: 0;
    background-color: var(--hp2-cream);
}

/* ── Marquee Wall (horizontal, full-width) ────────────────────── */
.hp2 .snb-marquee-wall {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hp2 .snb-marquee-fade-left,
.hp2 .snb-marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none;
}

.hp2 .snb-marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--hp2-cream), transparent);
}

.hp2 .snb-marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--hp2-cream), transparent);
}

.hp2 .snb-marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 1rem 0;
    animation: snbMarqueeLTR linear infinite;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes snbMarqueeLTR {
    from { transform: translate3d(-50%, 0, 0); }
    to   { transform: translate3d(0, 0, 0); }
}

.hp2 .snb-marquee-item {
    flex-shrink: 0;
}

.hp2 .snb-marquee-item img {
    height: 280px;
    width: auto;
    display: block;
    border-radius: var(--hp2-radius);
    box-shadow: var(--hp2-shadow-card);
}

@media (max-width: 768px) {
    .hp2 .snb-marquee-item img {
        height: 180px;
    }
    .hp2 .snb-marquee-track {
        gap: 1rem;
    }
}

/* ── Admin Toolbar ────────────────────────────────────────────── */
.hp2 .snb-marquee-admin-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--hp2-navy);
    border-radius: var(--hp2-radius-sm);
    margin-bottom: 0.5rem;
}

.hp2 .snb-marquee-admin-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    margin-right: auto;
}

/* ── Social Proof Toast ──────────────────────────────────────── */
.snb-proof-toast {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: #1a1a2e;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 340px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(-120%);
    transition: none;
}

.snb-proof-toast.snb-proof-show {
    animation: snbProofSlideIn 0.5s ease-out forwards;
}

.snb-proof-toast.snb-proof-hide {
    animation: snbProofSlideOut 0.5s ease-in forwards;
}

@keyframes snbProofSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-120%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes snbProofSlideOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-120%);
    }
}

.snb-proof-toast-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
}

.snb-proof-toast-body {
    flex: 1;
    min-width: 0;
}

.snb-proof-toast-name {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.3;
    color: #1a1a2e;
}

.snb-proof-toast-action {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.3;
}

.snb-proof-toast-close {
    position: absolute;
    top: 0.35rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.snb-proof-toast-close:hover {
    color: #333;
}

/* Bottom-left border accent */
.snb-proof-toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #FF6719, #ff914d);
    border-radius: 12px 0 0 12px;
}

@media (max-width: 600px) {
    .snb-proof-toast {
        bottom: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        max-width: none;
    }
}

.hp2 .snb-marquee-admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background: var(--hp2-gold);
    color: #fff;
    cursor: pointer;
    transition: background var(--hp2-transition);
}

.hp2 .snb-marquee-admin-btn:hover {
    background: var(--hp2-gold-hover);
}

.hp2 .snb-marquee-admin-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.hp2 .snb-marquee-admin-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ── Manage Panel ─────────────────────────────────────────────── */
.hp2 .snb-marquee-manage-panel {
    background: var(--hp2-white);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.hp2 .snb-marquee-manage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.hp2 .snb-marquee-manage-card {
    position: relative;
    border-radius: var(--hp2-radius-sm);
    overflow: hidden;
    border: 1px solid var(--hp2-border);
}

.hp2 .snb-marquee-manage-card img {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.hp2 .snb-marquee-manage-actions {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.35rem;
    background: var(--hp2-cream);
}

.hp2 .snb-marquee-manage-actions button {
    border: none;
    background: var(--hp2-white);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hp2-text-muted);
    transition: background var(--hp2-transition);
}

.hp2 .snb-marquee-manage-actions button:hover {
    background: var(--hp2-cream-dark);
}

.hp2 .snb-marquee-manage-delete {
    color: var(--hp2-urgency) !important;
}

.hp2 .snb-marquee-manage-delete:hover {
    background: #fde8e8 !important;
}

/* ── Upload Modal ─────────────────────────────────────────────── */
.hp2 .snb-marquee-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(15, 27, 45, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hp2 .snb-marquee-modal {
    background: var(--hp2-white);
    border-radius: var(--hp2-radius);
    max-width: 500px;
    width: 100%;
    box-shadow: var(--hp2-shadow-lg);
    animation: snbSlideUp 0.3s ease;
}

.hp2 .snb-marquee-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--hp2-border);
}

.hp2 .snb-marquee-modal-header h5 {
    font-family: var(--hp2-font-heading);
    font-size: 1.125rem;
    margin: 0;
}

.hp2 .snb-marquee-modal-header button {
    border: none;
    background: none;
    font-size: 1.5rem;
    color: var(--hp2-text-muted);
    cursor: pointer;
    line-height: 1;
}

.hp2 .snb-marquee-modal-body {
    padding: 1.5rem;
}

.hp2 .snb-marquee-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--hp2-border);
    border-top-color: var(--hp2-gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: snbSpin 0.8s linear infinite;
}

@keyframes snbSpin {
    to { transform: rotate(360deg); }
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hp2 .snb-marquee-item img {
        height: 220px;
    }

    .hp2 .snb-marquee-manage-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
}

@media (max-width: 480px) {
    .hp2 .snb-marquee-item img {
        height: 180px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   COUNTDOWN URGENCY BANNER (pre-pricing)
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-countdown-section {
    position: relative;
    padding: 3.5rem 1.5rem;
    text-align: center;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 103, 25, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 133, 52, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, #fff6f0 0%, #fffaf7 50%, #fff5ee 100%);
    overflow: hidden;
    border-top: 3px solid var(--hp2-gold);
}



.hp2 .snb-countdown-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── CSS Fire Animation ───────────────────────────────────────── */
.hp2 .snb-countdown-fire {
    position: relative;
    width: 50px;
    height: 60px;
    margin: 0 auto 0.75rem;
}

.hp2 .snb-fire-flame {
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(1px);
}

.hp2 .snb-fire-main {
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 50px;
    background: linear-gradient(0deg, #ff4500 0%, #ff6719 30%, #ff8c00 60%, #ffb347 85%, #ffe0a0 100%);
    animation: snbFireMain 1.5s ease-in-out infinite alternate;
}

.hp2 .snb-fire-left {
    left: 4px;
    width: 18px;
    height: 34px;
    background: linear-gradient(0deg, #ff4500 0%, #ff6719 40%, #ffb347 100%);
    animation: snbFireSide 1.2s ease-in-out infinite alternate;
    opacity: 0.85;
}

.hp2 .snb-fire-right {
    right: 4px;
    width: 18px;
    height: 30px;
    background: linear-gradient(0deg, #ff4500 0%, #ff6719 40%, #ffb347 100%);
    animation: snbFireSide 1.4s ease-in-out infinite alternate-reverse;
    opacity: 0.85;
}

.hp2 .snb-fire-glow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(255, 103, 25, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(6px);
    animation: snbFireGlowPulse 2s ease-in-out infinite;
}

@keyframes snbFireMain {
    0%   { height: 50px; width: 28px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; }
    33%  { height: 55px; width: 26px; border-radius: 48% 52% 50% 50% / 65% 58% 42% 38%; }
    66%  { height: 48px; width: 30px; border-radius: 52% 48% 50% 50% / 58% 62% 38% 42%; }
    100% { height: 52px; width: 27px; border-radius: 50% 50% 50% 50% / 62% 60% 40% 40%; }
}

@keyframes snbFireSide {
    0%   { height: 34px; opacity: 0.85; transform: scaleX(1); }
    50%  { height: 28px; opacity: 0.7;  transform: scaleX(0.9); }
    100% { height: 36px; opacity: 0.9;  transform: scaleX(1.05); }
}

@keyframes snbFireGlowPulse {
    0%, 100% { opacity: 0.6; width: 60px; }
    50%      { opacity: 0.9; width: 70px; }
}

.hp2 .snb-countdown-headline {
    font-family: var(--hp2-font-heading, 'Playfair Display', serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--hp2-navy);
    margin: 0 0 1.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hp2 .snb-countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hp2 .snb-countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 5rem;
}

.hp2 .snb-countdown-value {
    font-family: var(--hp2-font-heading, 'Playfair Display', serif);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 103, 25, 0.2) 0%, rgba(255, 133, 52, 0.12) 100%);
    border: 2px solid rgba(255, 103, 25, 0.5);
    color: #FF8534;
    text-shadow: 0 0 20px rgba(255, 103, 25, 0.4);
    box-shadow: none;
    width: 5.5rem;
    min-width: 5.5rem;
    max-width: 5.5rem;
    text-align: center;
}

.hp2 .snb-countdown-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 133, 52, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.5rem;
}

.hp2 .snb-countdown-subtext {
    font-size: 0.95rem;
    color: #6b6560;
    margin: 0 0 1.5rem;
    font-style: italic;
}



/* ── Countdown LIVE state ─────────────────────────────────────── */
.hp2 .snb-countdown-section.snb-countdown-live .snb-countdown-headline {
    color: #4ade80;
    animation: snbLivePulse 2s ease-in-out infinite;
}

@keyframes snbLivePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ── Mini countdown (Final CTA) ───────────────────────────────── */
.hp2 .snb-countdown-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hp2 .snb-countdown-mini-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #958f88;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-right: 0.5rem;
}

.hp2 .snb-countdown-mini-value {
    font-family: var(--hp2-font-heading, 'Playfair Display', serif);
    font-size: 1.6rem;
    font-weight: 800;
    color: #FF8534;
    text-shadow: 0 0 12px rgba(255, 103, 25, 0.3);
    background: rgba(255, 103, 25, 0.12);
    border: 1px solid rgba(255, 103, 25, 0.35);
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
    min-width: 2.5rem;
    text-align: center;
    line-height: 1.2;
}

.hp2 .snb-countdown-mini-sep {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 103, 25, 0.5);
    margin: 0 0.1rem;
}

/* ── Responsive countdown ─────────────────────────────────────── */
@media (max-width: 600px) {
    .hp2 .snb-countdown-value {
        font-size: 2rem;
        width: 4rem;
        min-width: 4rem;
        max-width: 4rem;
        padding: 0.4rem 0.5rem;
    }

    .hp2 .snb-countdown-unit {
        min-width: 4rem;
    }

    .hp2 .snb-countdown-headline {
        font-size: 1.2rem;
    }

    .hp2 .snb-countdown-section {
        padding: 2.5rem 1rem;
    }

    .hp2 .snb-countdown-mini-value {
        font-size: 1.2rem;
        min-width: 2rem;
        padding: 0.15rem 0.35rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SUBSTACK FOR BEGINNERS — collapsible curriculum cards (<details>)
   ═══════════════════════════════════════════════════════════════ */
.hp2 details.snb-day-card {
    cursor: pointer;
}

.hp2 details.snb-day-card > summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding-right: 2.5rem;
}

.hp2 details.snb-day-card > summary::-webkit-details-marker {
    display: none;
}

.hp2 details.snb-day-card > summary::after {
    content: "+";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--hp2-gold);
    line-height: 1;
    display: inline-block;
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Plus rotates 45° to become an X when the card is open; reverses on close */
.hp2 details.snb-day-card[open] > summary::after {
    transform: rotate(45deg);
}

.hp2 details.snb-day-card > summary > h3,
.hp2 details.snb-day-card > summary > p {
    display: block;
}

.hp2 details.snb-day-card[open] {
    border-color: var(--hp2-gold);
    background-color: var(--hp2-white);
}

.hp2 details.snb-day-card[open] .snb-day-topics {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--hp2-cream);
}

/* ═══════════════════════════════════════════════════════════════
   SUBSTACK FOR BEGINNERS — dual pricing layout
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-pricing-dual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
    /* the alt card has a "Most Popular" badge that sits above its top edge — give the grid breathing room so it doesn't get clipped by the section */
    padding-top: 1.25rem;
}

.hp2 .snb-pricing-dual .snb-pricing-card {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* override base .snb-pricing-card overflow:hidden so the badge can protrude */
    overflow: visible;
}

.hp2 .snb-pricing-dual .snb-pricing-card .hp2-btn {
    margin-top: auto;
}

.hp2 .snb-pricing-card--alt {
    position: relative;
    background: linear-gradient(160deg, var(--hp2-navy) 0%, #1a2942 100%);
    color: var(--hp2-white);
}

/* the alt card has no top gold gradient bar (since the base card's ::before would be hidden anyway by the navy bg) */
.hp2 .snb-pricing-card--alt::before {
    display: none;
}

.hp2 .snb-pricing-card--alt .snb-pricing-name,
.hp2 .snb-pricing-card--alt .snb-pricing-tagline,
.hp2 .snb-pricing-card--alt .snb-pricing-amount,
.hp2 .snb-pricing-card--alt .snb-pricing-features {
    color: var(--hp2-white);
}

.hp2 .snb-pricing-card--alt .snb-pricing-features li {
    color: rgba(255, 255, 255, 0.88);
}

.hp2 .snb-pricing-badge {
    position: absolute;
    top: -0.75rem;
    right: 1.5rem;
    background: var(--hp2-gold);
    color: var(--hp2-navy);
    font-family: var(--hp2-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
    .hp2 .snb-pricing-dual {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SUBSTACK FOR BEGINNERS — minimal alternative landing page
   ═══════════════════════════════════════════════════════════════ */
.hp2.sfb-min {
    background-color: var(--hp2-cream);
}

/* Hero: cream → white gradient + subtle radial accent for depth */
.hp2 .sfb-min-hero {
    padding: 5.5rem 1.5rem 4rem;
    text-align: center;
    background:
        radial-gradient(ellipse at top, rgba(255, 103, 25, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--hp2-cream) 0%, var(--hp2-white) 100%);
}

.hp2 .sfb-min-title {
    font-family: var(--hp2-font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--hp2-navy);
    margin: 0 auto 0.75rem;
    max-width: 14ch;
}

.hp2 .sfb-min-subtitle {
    font-family: var(--hp2-font-body);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--hp2-gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 2.5rem;
}

/* The big bolded tagline pulled from the thumbnail */
.hp2 .sfb-min-tagline {
    font-family: var(--hp2-font-body);
    font-size: 1.4375rem;
    font-weight: 400;
    color: var(--hp2-text);
    line-height: 1.4;
    margin: 0 auto 3rem;
    max-width: 38rem;
}

.hp2 .sfb-min-tagline strong {
    color: var(--hp2-gold);
    font-weight: 700;
}

/* Thumbnail — sharper shadow, slight scale on hover for product feel */
.hp2 .sfb-min-thumb {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hp2 .sfb-min-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 27, 45, 0.24);
}

/* Three pillars — slick lift-on-hover cards with gradient icons */
.hp2 .sfb-min-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 920px;
    margin: 3.5rem auto;
}

.hp2 .sfb-min-pillar {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--hp2-white);
    border-radius: var(--hp2-radius);
    border: 1px solid rgba(15, 27, 45, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hp2 .sfb-min-pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 27, 45, 0.12);
    border-color: rgba(255, 103, 25, 0.35);
}

.hp2 .sfb-min-pillar-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--hp2-gold) 0%, #ff8c42 100%);
    color: var(--hp2-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(255, 103, 25, 0.32);
}

.hp2 .sfb-min-pillar-title {
    font-family: var(--hp2-font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--hp2-navy);
    margin: 0 0 0.4rem;
}

.hp2 .sfb-min-pillar-desc {
    font-size: 0.9375rem;
    color: var(--hp2-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Transformation stat row — bigger, more visual, more product-like */
.hp2 .sfb-min-transformation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 620px;
    margin: 3.5rem auto;
    padding: 2rem 2.25rem;
    background-color: var(--hp2-white);
    border-radius: var(--hp2-radius);
    box-shadow: 0 12px 32px rgba(15, 27, 45, 0.1);
    border: 1px solid rgba(255, 103, 25, 0.15);
}

.hp2 .sfb-min-stat {
    text-align: center;
    flex: 0 1 auto;
}

.hp2 .sfb-min-stat-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--hp2-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.hp2 .sfb-min-stat-value {
    font-family: var(--hp2-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--hp2-navy);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hp2 .sfb-min-stat--big .sfb-min-stat-value {
    font-size: 3rem;
    color: var(--hp2-gold);
}

.hp2 .sfb-min-stat-up {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #2d8a4e;
    color: var(--hp2-white);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(45, 138, 78, 0.32);
}

.hp2 .sfb-min-arrow {
    font-size: 2.5rem;
    color: var(--hp2-gold);
    font-weight: 700;
    opacity: 0.6;
}

/* Trust burst + credibility line — punchier */
.hp2 .sfb-min-trust {
    text-align: center;
    margin: 3.5rem auto 0;
    max-width: 680px;
}

.hp2 .sfb-min-burst {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, var(--hp2-gold) 0%, #ff8c42 100%);
    color: var(--hp2-white);
    font-family: var(--hp2-font-heading);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transform: rotate(-1.5deg);
    box-shadow: 0 12px 28px rgba(255, 103, 25, 0.38);
}

.hp2 .sfb-min-credibility {
    font-size: 1.0625rem;
    color: var(--hp2-text);
    line-height: 1.55;
    margin: 1.75rem 0 0;
}

.hp2 .sfb-min-credibility strong {
    color: var(--hp2-navy);
    font-weight: 700;
}

/* Bottom sections — curriculum + instructor get their own backgrounds for rhythm */
.hp2 .sfb-min-curriculum {
    padding: 5rem 1.5rem 4rem;
    background-color: var(--hp2-white);
}

.hp2 .sfb-min-instructor {
    padding: 4rem 1.5rem 5rem;
    background-color: var(--hp2-cream);
}

.hp2 .sfb-min-thumb {
    max-width: 560px;
    margin: 0 auto 3rem;
    border-radius: var(--hp2-radius);
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(15, 27, 45, 0.18);
}

.hp2 .sfb-min-thumb img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hp2 .sfb-min-hero {
        padding: 3rem 1.25rem 2.5rem;
    }

    .hp2 .sfb-min-thumb {
        margin-bottom: 2rem;
    }

    .hp2 .sfb-min-pillars {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 2.5rem auto;
    }

    .hp2 .sfb-min-transformation {
        gap: 1.25rem;
        padding: 1.5rem 1.25rem;
        margin: 2.5rem auto;
    }

    .hp2 .sfb-min-stat-value {
        font-size: 1.5rem;
    }

    .hp2 .sfb-min-stat--big .sfb-min-stat-value {
        font-size: 2.25rem;
    }

    .hp2 .sfb-min-arrow {
        font-size: 1.75rem;
    }

    .hp2 .sfb-min-curriculum {
        padding: 3.5rem 1.25rem 3rem;
    }

    .hp2 .sfb-min-instructor {
        padding: 3rem 1.25rem 3.5rem;
    }
}

