/* ===== TOKENS (ported from workshop-landing.html) ===== */
:root {
    --primary: #FEBB02;
    --primary-soft: #FEBB02;
    --primary-glow: rgba(254,187,2,0.10);
    --primary-glow-strong: rgba(254,187,2,0.20);
    --primary-shadow: 0 0 50px rgba(254,187,2,0.18);
    --primary-shadow-lg: 0 20px 60px -10px rgba(254,187,2,0.22);
    --bg: #FFFFFF;
    --surface: #F8F8F8;
    --surface-2: #F0F0F0;
    --surface-3: #E8E8E8;
    --border: rgba(0,0,0,0.06);
    --border-2: rgba(0,0,0,0.09);
    --border-hover: rgba(0,0,0,0.16);
    --text: #1A1A1A;
    --text-2: #555555;
    --text-3: #999999;
    --r: 16px;
    --r-lg: 24px;
    --card-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    --card-shadow-hover: 0 8px 40px rgba(0,0,0,0.1), 0 0 20px rgba(254,187,2,0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; font-size: 15px; line-height: 1.65; }
h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; line-height: 1.1; }
h1, h2 { line-height: 1.35; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 4.5vw, 3.4rem); font-weight: 800; letter-spacing: -2.5px; margin-bottom: 20px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 14px; }
/* Highlight chips — ALWAYS render as a single inline-block unit on one line.
   Never split across line wraps (multi-line backgrounds look broken).
   Keep highlighted phrases SHORT (≤3 words) so they fit on narrow viewports. */
h1 span, h2 span {
    background: #FEBB02;
    color: #000;
    font-weight: 800;
    padding: 0.02em 0.32em;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
}
h3 { font-size: 1rem; font-weight: 800; letter-spacing: -0.3px; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 960px; margin: 0 auto; padding: 0 28px; }

/* ===== NAV moved into WorkshopNav.astro as scoped global styles so the
   component is self-contained and renders identically on every page. ===== */

/* ===== HERO ===== */
.hero { padding: 140px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; background: radial-gradient(ellipse at center, rgba(254,187,2,0.08) 0%, transparent 60%); pointer-events: none; }
.hero::after { content: ''; position: absolute; top: 200px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(254,187,2,0.06) 0%, transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .hero { padding: 100px 0 60px; } }
.hero-label { font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-2); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.hero-label::before { content: ''; width: 20px; height: 1px; background: var(--text-2); }
.hero-label-dot { display: none; }
.hero h1 { margin-bottom: 28px; line-height: 1.2; }
.hero h1 span { color: #000; }
.hero h1 em { color: var(--primary); font-style: normal; }
.hero-p { font-size: 1.05rem; color: var(--text-2); margin-bottom: 36px; margin-top: 0; line-height: 1.7; max-width: 480px; }
.hero-p strong { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; align-items: center; margin-bottom: 40px; flex-wrap: wrap; }
.hero-cta-secondary { background: transparent !important; color: var(--text) !important; border: 2px solid #000 !important; box-shadow: 4px 4px 0 #000 !important; }
.hero-cta-secondary:hover { background: rgba(0,0,0,0.04) !important; transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #000 !important; }

.btn-primary { background: #FEBB02; color: #000; padding: 14px 32px; border-radius: 12px; font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; border: 3px solid #000; box-shadow: 6px 6px 0 #000; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease; }
.btn-primary:hover { background: #FFC830; color: #000; transform: translate(-2px, -2px); box-shadow: 8px 8px 0 #000; }
.btn-primary:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 #000; }
.btn-secondary { background: #FFFFFF; color: #000; padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; border: 3px solid #000; box-shadow: 6px 6px 0 #000; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease; }
.btn-secondary:hover { background: #F5F5F5; color: #000; transform: translate(-2px, -2px); box-shadow: 8px 8px 0 #000; }
.btn-secondary:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 #000; }

.hero-proof { display: flex; align-items: center; gap: 14px; max-width: 560px; }
.hero-proof-avatars { display: flex; flex-shrink: 0; }
.hero-proof-avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg); object-fit: cover; box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.hero-proof-avatars img + img { margin-left: -10px; }
.hero-proof-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hero-proof-stars { color: #F59E0B; font-size: 0.82rem; letter-spacing: 1.5px; display: flex; align-items: center; gap: 10px; }
.hero-proof-count { font-size: 0.78rem; color: var(--text); letter-spacing: 0; font-weight: 700; }
.hero-proof-text { font-size: 0.78rem; color: var(--text-3); line-height: 1.45; font-style: italic; }
.hero-proof-text strong { color: var(--text-2); }
.hero-proof-attribution { font-size: 0.74rem; color: var(--text-3); letter-spacing: 0.02em; font-weight: 600; margin-top: 2px; }

.hero-right { position: relative; }
.hero-video { width: 100%; aspect-ratio: 16/10; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-2); background: var(--surface); display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative; z-index: 2; box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 60px rgba(254,187,2,0.10); }
.hero-video:hover .play-circle { transform: scale(1.1); box-shadow: 0 0 40px rgba(0,0,0,0.35); }
.play-circle { width: 72px; height: 72px; border: 2px solid rgba(255,255,255,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); background: rgba(0,0,0,0.55); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); box-shadow: 0 0 30px rgba(0,0,0,0.25); }
.play-circle svg { width: 22px; height: 22px; fill: white; margin-left: 3px; }
.hero-video-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.hero-video-caption { color: white; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.3px; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-line { border-top: 1px solid var(--border); }
.section-label { font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.section-eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-2); margin-bottom: 14px; }
.section-intro { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-intro p { margin-top: 14px; color: var(--text-2); font-size: 0.92rem; line-height: 1.7; }

/* ===== STAT BAR (cream brutal tile) ===== */
.stat-bar-section { padding: 48px 0 64px; }
.stat-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; background: var(--primary-glow); border: 3px solid #000; border-radius: var(--r-lg); box-shadow: 8px 8px 0 #000; padding: 32px 36px; }
.stat-bar--top { align-items: start; }
@media (max-width: 720px) { .stat-bar { grid-template-columns: repeat(2, 1fr); padding: 24px 22px; box-shadow: 6px 6px 0 #000; } }
.stat-bar-item { text-align: left; padding: 8px 24px 8px 0; border-right: 1px solid rgba(0,0,0,0.18); }
.stat-bar-item:last-child { border-right: none; }
.stat-bar-item:nth-child(2n) { border-right: none; }
@media (min-width: 721px) { .stat-bar-item:nth-child(2n) { border-right: 1px solid rgba(0,0,0,0.18); } .stat-bar-item:last-child { border-right: none; } }
.stat-bar-num { font-family: 'Manrope', sans-serif; font-size: 1.9rem; font-weight: 800; letter-spacing: -1.2px; color: var(--primary); line-height: 1; margin-bottom: 12px; }
.stat-bar-num span { color: var(--primary-soft); font-weight: 700; }
.stat-bar-label { font-size: 0.78rem; color: var(--text-2); line-height: 1.45; }
.stat-bar-label strong { display: block; color: var(--text); font-size: 0.92rem; margin-bottom: 8px; white-space: nowrap; }
@media (max-width: 720px) { .stat-bar-label strong { white-space: normal; } }
.stat-bar-bullets { list-style: disc; padding-left: 1.1em; margin: 0; color: var(--text-2); }
.stat-bar-bullets li + li { margin-top: 4px; }

/* ===== BUCKETS (hero + bonuses, workshop-style) ===== */
.buckets { display: grid; grid-template-columns: 1fr; gap: 20px; }
.bucket { padding: 32px 30px; background: var(--bg); border: 1px solid var(--border-2); border-radius: var(--r-lg); box-shadow: var(--card-shadow); transition: all 0.3s; display: flex; flex-direction: column; }
.bucket:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); border-color: var(--border-hover); }
.bucket-num { font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-2); margin-bottom: 12px; }
.bucket h3 { margin-bottom: 10px; font-size: 1.18rem; font-weight: 800; letter-spacing: -0.4px; line-height: 1.3; }
.bucket-p { color: var(--text-2); font-size: 0.88rem; margin-bottom: 20px; line-height: 1.65; }
.bucket-list { list-style: none; padding: 0; margin: 0 0 20px; }
.bucket-list li { font-size: 0.875rem; color: var(--text-2); padding: 6px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.bucket-list li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.bucket-price { font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--text); font-size: 1.05rem; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); letter-spacing: -0.5px; }
.bucket-price span { color: var(--text-3); font-weight: 500; font-size: 0.78rem; letter-spacing: normal; }
.bucket-cta { margin-top: 14px; font-weight: 600; color: var(--primary); font-size: 0.84rem; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.bucket-cta:hover { gap: 10px; }

/* Hero bucket — the workshop ticket */
.bucket-hero { padding: 44px 40px 36px; background: linear-gradient(180deg, var(--primary-glow) 0%, var(--bg) 80%); border: 3px solid #000; border-radius: var(--r-lg); box-shadow: 8px 8px 0 #000; position: relative; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.bucket-hero:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 #000; border-color: #000; }
.bucket-hero-flag { position: absolute; top: -14px; left: 28px; background: #000; color: var(--primary); font-size: 0.78rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; border: 2px solid #000; }
.bucket-hero .bucket-num { color: #000; }
.bucket-hero h3 { font-size: 1.6rem; margin-bottom: 12px; letter-spacing: -0.6px; }
.bucket-hero .bucket-p { font-size: 0.95rem; max-width: 640px; color: #1A1A1A; }
.bucket-hero .bucket-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px; max-width: 720px; }
.bucket-hero .bucket-list li { color: #1A1A1A; }
.bucket-hero .bucket-list li::before { color: #000; }
.bucket-hero .pricing-cta { max-width: 280px; margin-top: 10px; }
.bucket-hero-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 12px; }
.bucket-hero-row .bucket-num { margin-bottom: 0; flex: 1; }
.bucket-hero-cta { flex-shrink: 0; width: auto !important; max-width: 240px; margin-top: 0 !important; padding: 12px 22px !important; font-size: 0.85rem !important; }
.bucket-hero .bucket-bonuses-intro { margin-top: 32px; padding-top: 26px; border-top: 1px solid rgba(0,0,0,0.12); }
.bucket-hero .bucket-bonus { background: rgba(255,255,255,0.55); border: 4px dotted #000; box-shadow: none; padding: 28px 26px; }
.bucket-hero .bucket-bonus:hover { transform: none; box-shadow: none; border-color: #000; }
@media (max-width: 720px) {
    .bucket-hero { padding: 36px 22px 26px; box-shadow: 6px 6px 0 #000; }
    .bucket-hero .bucket-list { grid-template-columns: 1fr; }
    .bucket-hero .pricing-cta { max-width: 100%; }
    .bucket-hero-flag { left: 18px; font-size: 0.78rem; padding: 6px 12px; }
    .bucket-hero-row { flex-direction: column; align-items: flex-start; gap: 14px; }
    .bucket-hero-cta { max-width: 100% !important; width: 100% !important; }
    .bucket-hero .bucket-bonus { padding: 22px 18px; }
}

/* Connector intro */
.bucket-bonuses-intro { text-align: center; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #000; padding: 22px 0 6px; position: relative; }
.bucket-bonuses-intro::before, .bucket-bonuses-intro::after { content: ''; display: inline-block; width: 36px; height: 2px; background: #000; vertical-align: middle; margin: 0 14px; }

/* Bonuses sub-grid */
.bucket-bonuses { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .bucket-bonuses { grid-template-columns: 1fr; } }
.bucket-bonus { background: var(--bg); border: 3px dashed #000; box-shadow: 6px 6px 0 #000; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.bucket-bonus:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 #000; border-color: #000; }
.bucket-bonus h3 { font-size: 1.1rem; }
.bonus-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: #000; background: #FFFFFF; padding: 6px 12px; border-radius: 999px; border: 1.5px solid #000; align-self: flex-start; margin-bottom: 16px; }

/* ===== WHAT YOU'LL LEARN ===== */
.learn-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .learn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .learn-grid { grid-template-columns: 1fr; } }
.learn-card { padding: 28px 24px; background: var(--bg); border: 3px solid #000; border-radius: var(--r-lg); box-shadow: 6px 6px 0 #000; transition: transform 0.15s ease, box-shadow 0.15s ease; display: flex; flex-direction: column; }
.learn-card:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 #000; }
.learn-icon { width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: #000; border: 2.5px solid #000; border-radius: 14px; margin-bottom: 18px; }
.learn-icon svg { width: 32px; height: 32px; }
.learn-card h3 { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.3px; text-transform: uppercase; margin-bottom: 8px; line-height: 1.25; }
.learn-card p { color: var(--text-2); font-size: 0.88rem; line-height: 1.6; }

/* ===== LOGO STRIP ===== */
.logo-strip { padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; background: var(--bg); }
.logo-strip-label { text-align: center; font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); margin-bottom: 22px; }
.logo-strip-track { display: flex; gap: 56px; align-items: center; animation: logo-scroll 48s linear infinite; width: max-content; }
.logo-strip:hover .logo-strip-track { animation-play-state: paused; }
.logo-strip-track img { height: 28px; width: auto; opacity: 0.78; transition: opacity 0.2s, transform 0.2s; flex-shrink: 0; }
.logo-strip-track img:hover { opacity: 1; transform: scale(1.06); }
@keyframes logo-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== WORKSHOPS STRIP (cream tile) ===== */
.workshops-strip { background: linear-gradient(135deg, rgba(254,187,2,0.10) 0%, rgba(254,187,2,0.06) 100%); border: 1px solid rgba(254,187,2,0.20); padding: 56px 40px; border-radius: var(--r-lg); margin: 0 28px; }
.workshops-strip-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; max-width: 1040px; margin: 0 auto; }
@media (max-width: 820px) { .workshops-strip-inner { grid-template-columns: 1fr; gap: 28px; } .workshops-strip { padding: 40px 28px; } }
.workshops-strip h2 { margin-bottom: 14px; color: var(--text); }
.workshops-strip p { color: var(--text-2); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.cities-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.city-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 14px 16px; transition: all 0.25s; }
.city-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px rgba(254,187,2,0.18); transform: translateY(-2px); }
.city-card-name { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.85rem; margin-bottom: 3px; color: var(--text); letter-spacing: -0.3px; }
.city-card-date { font-size: 0.78rem; color: var(--text-2); }
.city-card-price { font-size: 0.78rem; color: var(--primary); font-weight: 700; margin-top: 4px; }

/* ===== TESTIMONIAL CAROUSEL (Shorts, 9:14 vertical) ===== */
.carousel-wrapper { position: relative; overflow: hidden; margin-top: 40px; }
.carousel-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 28px 20px; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-controls { display: flex; gap: 10px; margin-top: 18px; justify-content: center; align-items: center; }
.carousel-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border-2); background: var(--bg); color: var(--text-2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; font-size: 1rem; box-shadow: var(--card-shadow); }
.carousel-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--bg); }

.case-card { min-width: 260px; max-width: 260px; scroll-snap-align: start; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; flex-shrink: 0; transition: all 0.3s; display: flex; flex-direction: column; box-shadow: var(--card-shadow); cursor: pointer; }
.case-card:hover { border-color: var(--border-hover); box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.case-video { width: 100%; aspect-ratio: 9/14; background: #111; position: relative; overflow: hidden; }
.case-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play-sm-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%); transition: background 0.25s; z-index: 2; }
.case-card:hover .play-sm-wrap { background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%); }
.play-sm { width: 54px; height: 54px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: transform 0.25s, background 0.25s; }
.case-card:hover .play-sm { background: rgba(0,0,0,0.75); transform: scale(1.08); }
.play-sm svg { width: 18px; height: 18px; fill: white; margin-left: 2px; }
.case-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.case-quote { font-family: 'Manrope', sans-serif; font-size: 0.92rem; font-weight: 700; line-height: 1.35; color: var(--text); margin-bottom: 10px; letter-spacing: -0.3px; }
.case-author-name { font-size: 0.78rem; font-weight: 600; color: var(--text-2); }
.case-author-role { font-size: 0.78rem; color: var(--text-3); margin-top: 2px; }

/* ===== OFFICE / COMMUNITY CTA ===== */
.community-cta { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 48px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; align-items: center; }
@media (max-width: 820px) { .community-cta { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; } }
.community-cta h2 { margin-bottom: 12px; }
.community-cta p { color: var(--text-2); font-size: 0.9rem; line-height: 1.7; }
.community-cta-free { font-family: 'Manrope', sans-serif; font-size: 3.4rem; font-weight: 800; color: var(--primary); line-height: 1; text-align: center; letter-spacing: -2px; }
.community-cta-sub { font-size: 0.78rem; color: var(--text-3); margin-top: 6px; letter-spacing: 2px; text-transform: uppercase; text-align: center; }

/* ===== COMMUNITY VISUAL (hero block on /community) ===== */
.community-visual { background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-lg); padding: 40px; text-align: center; box-shadow: var(--card-shadow); }
.community-visual-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; }
.community-visual-brand img { height: 28px; width: auto; }
.community-visual-brand-text { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--text); letter-spacing: -0.8px; }
.community-visual-huge { font-family: 'Manrope', sans-serif; font-size: 5.2rem; font-weight: 800; line-height: 1; color: var(--text); letter-spacing: -3px; }
.community-visual-sub { font-size: 0.78rem; color: var(--text-3); margin-top: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.community-visual-list { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.875rem; line-height: 1.9; text-align: left; color: var(--text-2); font-weight: 500; }

/* ===== GREEN PRICE PILL (from workshop) ===== */
.price-pill-save { display: inline-block; background: #16a34a; color: white; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; }
.price-pill-new { display: inline-block; background: #DCFCE7; color: #166534; font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; letter-spacing: 0.3px; }

/* ===== HERO IMAGE (workshops strip visual) ===== */
.strip-image-wrap { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--card-shadow-hover); }
.strip-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.strip-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.strip-image-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--r); }

/* Swipe hint under gallery */
.swipe-hint { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 0.78rem; color: var(--text-3); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.swipe-hint-dots { display: inline-flex; gap: 4px; }
.swipe-hint-dots span { width: 4px; height: 4px; background: var(--text-3); border-radius: 50%; opacity: 0.4; animation: swipe-dot 1.8s ease-in-out infinite; }
.swipe-hint-dots span:nth-child(2) { animation-delay: 0.2s; }
.swipe-hint-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes swipe-dot { 0%, 100% { opacity: 0.4; transform: translateX(0); } 50% { opacity: 1; transform: translateX(2px); } }

/* ===== PODCAST EMBED ===== */
.podcast-embed { max-width: 860px; margin: 0 auto; }
.podcast-embed-wrap { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--card-shadow-hover); background: #000; }
.podcast-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.podcast-caption { text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--text-2); line-height: 1.6; }
.podcast-caption strong { color: var(--text); }

/* ===== MATH CARD (dev-placement) ===== */
.math-card { background: var(--bg); border: 1px solid var(--border-2); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--card-shadow); }
.math-card-label { font-size: 0.78rem; font-weight: 600; color: var(--text-2); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.math-row { display: grid; grid-template-columns: 1fr auto; gap: 14px 20px; font-size: 0.9rem; align-items: baseline; }
.math-row > div:nth-child(odd) { color: var(--text-2); }
.math-row > div:nth-child(even) { font-family: 'Manrope', sans-serif; font-weight: 700; }
.math-card-note { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-3); line-height: 1.6; }

/* ===== TESTIMONIALS (matches ticket-tile cream) ===== */
.testimonials-section { background: var(--primary-glow); }

/* ===== FINAL CTA (matches ticket-tile cream, NO black box) ===== */
.final-cta-section { background: var(--primary-glow); padding: 100px 0; text-align: center; }
.final-cta-section .container { position: relative; z-index: 1; }
.final-cta-section h2 { margin-bottom: 16px; }
.final-cta-section h2 span { color: #000; }
.final-cta-section p { color: var(--text-2); font-size: 0.98rem; max-width: 720px; margin: 0 auto 32px; line-height: 1.7; text-wrap: balance; }
.final-cta-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
/* compat alias for old markup */
.cta-band { background: var(--primary-glow); color: var(--text); padding: 100px 0; text-align: center; border-radius: 0; margin: 0; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--text); margin-bottom: 16px; }
.cta-band h2 span { color: #000; }
.cta-band p { color: var(--text-2); font-size: 0.98rem; max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.cta-band-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-on-dark { background: var(--bg); color: var(--text); border: 1px solid var(--border-2); }
.cta-on-dark:hover { border-color: var(--primary); color: var(--primary); }

/* ===== HERO PHOTO (replaces VSL video) ===== */
.hero-photo { width: 100%; aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-2); position: relative; z-index: 2; box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 0 60px rgba(254,187,2,0.10); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== PRICING-STYLE CTA (port from workshop) ===== */
.pricing-cta { display: block; text-align: center; padding: 14px 24px; border-radius: 12px; font-weight: 700; font-size: 0.88rem; width: 100%; margin-top: auto; border: 3px solid #000; box-shadow: 6px 6px 0 #000; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease; }
.pricing-cta-solid { background: #FEBB02; color: #000; }
.pricing-cta-solid:hover { background: #FFC830; color: #000; transform: translate(-2px, -2px); box-shadow: 8px 8px 0 #000; }
.pricing-cta-solid:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 #000; }
.pricing-cta-outline { background: #FFFFFF; color: #000; }
.pricing-cta-outline:hover { background: #F5F5F5; color: #000; transform: translate(-2px, -2px); box-shadow: 8px 8px 0 #000; }
.pricing-cta-outline:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 #000; }

/* ===== WORKSHOP STRIP CAROUSEL ===== */
.strip-carousel { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--card-shadow-hover); }
.strip-carousel-track { display: flex; height: 100%; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.strip-carousel-track img { min-width: 100%; width: 100%; height: 100%; object-fit: cover; }
.strip-carousel-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 2; }
.strip-carousel-dots button { width: 7px; height: 7px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.45); cursor: pointer; padding: 0; transition: all 0.25s; }
.strip-carousel-dots button.active { background: white; width: 22px; border-radius: 4px; }

/* ===== SOCIAL ICONS (footer) ===== */
.social-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-2); color: var(--text-2); transition: all 0.25s; background: var(--bg); text-decoration: none; overflow: hidden; line-height: 0; padding: 0; margin: 0; flex-shrink: 0; }
.social-icon svg { width: 20px; height: 20px; display: block; margin: 0; padding: 0; }
.social-icon img { width: 24px; height: 24px; object-fit: contain; display: block; margin: 0; padding: 0; }
.social-icon.skool img { width: 28px; height: 28px; }
.social-icon:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.social-icon.ig:hover { background: linear-gradient(135deg, #feda75, #fa7e1e 30%, #d62976 55%, #962fbf 75%, #4f5bd5); border-color: transparent; color: white; }
.social-icon.yt:hover { background: #FF0000; border-color: #FF0000; color: white; }
.social-icon.skool:hover { background: #FFCC00; border-color: #FFCC00; }
.social-handles { font-size: 0.78rem; margin-top: 14px; color: var(--text-3); letter-spacing: 0.01em; }

/* Skool wordmark sizing in the community box */
.skool-wordmark { height: 22px; width: auto; display: inline-block; vertical-align: middle; }

/* Carousel arrow buttons (reusable) */
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.95); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s; box-shadow: var(--card-shadow); color: var(--text); z-index: 3; padding: 0; }
.carousel-arrow:hover { background: white; transform: translateY(-50%) scale(1.06); box-shadow: var(--card-shadow-hover); color: var(--primary); }
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-arrow.prev { left: 14px; }
.carousel-arrow.next { right: 14px; }
.strip-carousel { position: relative; }

/* Gallery arrow buttons variant */
.gallery-wrap { position: relative; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: white; border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s; box-shadow: var(--card-shadow); color: var(--text); z-index: 3; padding: 0; }
.gallery-arrow:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--card-shadow-hover); transform: translateY(-50%) scale(1.06); }
.gallery-arrow svg { width: 18px; height: 18px; }
.gallery-arrow.prev { left: 28px; }
.gallery-arrow.next { right: 28px; }
@media (max-width: 600px) { .gallery-arrow { display: none; } }

/* ===== PHOTO GALLERY (horizontal scroll) ===== */
.gallery-scroll { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 28px 16px; }
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-img { min-width: 300px; height: 220px; border-radius: var(--r); object-fit: cover; scroll-snap-align: start; border: 1px solid var(--border); transition: all 0.3s; box-shadow: var(--card-shadow); flex-shrink: 0; background: var(--surface); }
.gallery-img:hover { border-color: var(--border-hover); box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
@media (max-width: 600px) { .gallery-img { min-width: 260px; height: 190px; } }

/* ===== TESTIMONIAL BLOCK (brutal frame) ===== */
.testimonial-block { background: #fff; border: 3px solid #000; border-radius: var(--r-lg); box-shadow: 8px 8px 0 #000; padding: 56px 48px; text-align: center; }
@media (max-width: 600px) { .testimonial-block { padding: 40px 26px; box-shadow: 6px 6px 0 #000; } }
.testimonial-video { border: 3px solid #000 !important; box-shadow: 8px 8px 0 #000 !important; }
@media (max-width: 600px) { .testimonial-video { box-shadow: 6px 6px 0 #000 !important; } }

/* ===== ABOUT BUCKETS (3-col grid override of single-col .buckets) ===== */
.about-buckets { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .about-buckets { grid-template-columns: 1fr; } }

/* ===== OPERATOR BUCKETS (2-col grid for Freya + Michael bios) ===== */
.operator-buckets { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
@media (max-width: 820px) { .operator-buckets { grid-template-columns: 1fr; } }

/* ===== KEEP-FOREVER BUCKETS (4-col grid for "things you keep forever" cards) ===== */
.keep-buckets { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.keep-buckets .bucket-bonus { padding: 26px 22px; }
.keep-buckets .bucket-bonus h3 { font-size: 1.05rem; margin-bottom: 8px; }
.keep-buckets .bucket-num { font-size: 0.72rem; letter-spacing: 1.8px; margin-bottom: 10px; }
.keep-buckets .bucket-p { font-size: 0.85rem; margin-bottom: 0; line-height: 1.55; }
.keep-buckets .bucket-p code { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; background: rgba(0,0,0,0.06); padding: 1px 5px; border-radius: 3px; }
@media (max-width: 980px) { .keep-buckets { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .keep-buckets { grid-template-columns: 1fr; } }
.founder-portrait { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid #000; box-shadow: 4px 4px 0 #000; margin-bottom: 18px; background: var(--bg); display: block; }
@media (max-width: 820px) { .founder-portrait { width: 100px; height: 100px; box-shadow: 3px 3px 0 #000; } }

/* ===== LUMA EMBED (brutal frame around iframe) ===== */
.luma-embed-wrap { border: 3px solid #000; border-radius: var(--r-lg); box-shadow: 8px 8px 0 #000; overflow: hidden; background: var(--bg); }
.luma-embed-wrap iframe { display: block; width: 100%; border: 0 !important; border-radius: 0 !important; background: var(--bg); }
@media (max-width: 720px) { .luma-embed-wrap { box-shadow: 6px 6px 0 #000; } }
.testimonial-block blockquote { font-family: 'Manrope', sans-serif; font-size: clamp(1.15rem, 2.2vw, 1.6rem); font-weight: 600; line-height: 1.4; color: var(--text); margin: 0 auto; max-width: 720px; letter-spacing: -0.5px; }
.testimonial-author { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.testimonial-author-name { font-weight: 600; font-size: 0.84rem; color: var(--text); }
.testimonial-author-role { font-size: 0.78rem; color: var(--text-3); margin-top: 2px; }

/* ===== FOOTER (light, border-top, NO black box) ===== */
/* ── Course-promo band (above the pricing tiles, links to /self-paced) ── */
.course-promo-band { background: #FAF7EE; border-top: 2px dashed rgba(0,0,0,0.14); border-bottom: 2px dashed rgba(0,0,0,0.14); padding: 36px 0 28px; }
.course-promo-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; max-width: 980px; margin: 0 auto; }
.course-promo-band__copy { flex: 1; min-width: 280px; }
.course-promo-band__eyebrow { font-family:'Manrope',sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.course-promo-band__copy p { font-size: 0.98rem; color: var(--text); line-height: 1.5; margin: 0; }
.course-promo-band__cta { flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; background: #000; color: #FEBB02; border: 2px solid #000; border-radius: 999px; padding: 12px 22px; font-family:'Manrope',sans-serif; font-weight: 800; font-size: 0.88rem; text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.course-promo-band__cta:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 #000; }

/* Chapter preview nested inside the band, above the pricing row */
.course-promo-band__preview { max-width: 980px; margin: 0 auto 30px; }
.course-promo-band__preview-head { margin-bottom: 16px; }
.course-promo-band__preview-eyebrow { display: inline-block; font-family:'Manrope',sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.course-promo-band__preview-title { font-family:'Manrope',sans-serif; font-size: clamp(1.15rem, 1.8vw, 1.45rem); font-weight: 800; letter-spacing: -0.5px; line-height: 1.25; margin: 0; color: var(--text); }
.course-promo-band__preview-hl { display: inline-block; background: #FEBB02; color: #000; padding: 0.02em 0.32em; border-radius: 4px; white-space: nowrap; }
.course-promo-band__preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.course-promo-band__chip { position: relative; background: #fff; border: 1.5px solid rgba(0,0,0,0.15); border-radius: 10px; padding: 12px 14px; display: flex; flex-direction: column; gap: 4px; transition: border-color 0.15s ease; }
.course-promo-band__chip:hover { border-color: rgba(0,0,0,0.4); }
.course-promo-band__chip-num { font-family:'JetBrains Mono', ui-monospace, monospace; font-size: 0.66rem; font-weight: 700; color: var(--primary); letter-spacing: 0.04em; text-transform: uppercase; }
.course-promo-band__chip-title { font-family:'Manrope',sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: -0.2px; line-height: 1.3; color: var(--text); }
.course-promo-band__chip-lock { position: absolute; top: 10px; right: 10px; font-size: 0.78rem; opacity: 0.4; }
@media (max-width: 720px) { .course-promo-band__preview-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 640px) {
    .course-promo-band__inner { flex-direction: column; align-items: stretch; text-align: left; }
    .course-promo-band__cta { align-self: flex-start; }
}

/* ── Newsletter band (above footer) ── */
.newsletter-band { background: #FEBB02; border-top: 3px solid #000; border-bottom: 3px solid #000; padding: 36px 0; }
.newsletter-band__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: center; }
.newsletter-band__copy h3 { font-family: 'Manrope', sans-serif; font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 800; letter-spacing: -0.8px; color: #000; margin: 0 0 6px; }
.newsletter-band__copy p { font-size: 0.95rem; color: #1a1a1a; opacity: 0.78; line-height: 1.45; margin: 0; }
.email-signup--band { max-width: 520px; justify-self: end; width: 100%; }
.email-signup--band .email-signup__row { background: #fff; border: 3px solid #000; border-radius: 999px; padding: 4px; box-shadow: 4px 4px 0 #000; display: flex; gap: 0; }
.email-signup--band .email-signup__row input[type="email"] { background: transparent; border: 0; padding: 0 14px; flex: 1; font-size: 0.95rem; }
.email-signup--band .email-signup__row input[type="email"]:focus { outline: 0; }
.email-signup--band button[type="submit"] { background: #000; color: #FEBB02; border: 0; border-radius: 999px; padding: 12px 22px; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.02em; cursor: pointer; flex-shrink: 0; }
.email-signup--band button[type="submit"]:hover:not(:disabled) { background: #1a1a1a; color: #FEBB02; }
@media (max-width: 820px) {
    .newsletter-band { padding: 28px 0; }
    .newsletter-band__inner { grid-template-columns: 1fr; gap: 18px; }
    .email-signup--band { justify-self: stretch; max-width: none; }
}

/* ── Footer ── */
.footer { padding: 64px 0 32px; background: #0a0a0a; color: #d0d0d0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; align-items: start; }
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand { max-width: 360px; }
.footer-brand-link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.footer-logo { height: 32px; width: auto; }
.footer-wordmark { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.01em; line-height: 1; text-transform: uppercase; display: inline-flex; align-items: baseline; }
.footer-wordmark__solo  { color: #fff; }
.footer-wordmark__stack { color: #FEBB02; }
.footer-tag { font-size: 0.88rem; color: #9a9a9a; line-height: 1.65; margin: 0 0 22px; }
.footer-address { font-size: 0.85rem; line-height: 1.6; color: #9a9a9a; }
.footer-address-label { font-size: 0.72rem; font-weight: 700; color: #fff; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 6px; opacity: 0.6; }
.footer-address a { color: #FEBB02; font-weight: 600; }
.footer-address a:hover { text-decoration: underline; }
.footer-col h4 { color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 18px; font-family: 'Manrope', sans-serif; opacity: 0.9; }
.footer-col a { display: block; color: #9a9a9a; font-size: 0.9rem; padding: 5px 0; transition: color 0.2s; text-decoration: none; }
.footer-col a:hover { color: #FEBB02; }
.footer .social-row { gap: 12px; }
.footer .social-icon { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.28); color: #ffffff; }
.footer .social-icon:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.45); transform: translateY(-2px); }
.footer .social-icon.ig:hover { background: linear-gradient(135deg, #feda75, #fa7e1e 30%, #d62976 55%, #962fbf 75%, #4f5bd5); border-color: transparent; color: #fff; }
.footer .social-icon.yt:hover { background: #FF0000; border-color: #FF0000; color: #fff; }
.footer .social-handles { color: #b8b8b8; font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.78rem; color: #6a6a6a; }
@media (max-width: 560px) { .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }
@media (max-width: 600px) { .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== HERO ENTRANCE (workshop style) ===== */
@keyframes hero-fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-animate { animation: hero-fade-up 0.8s cubic-bezier(0.25,0.46,0.45,0.94) forwards; opacity: 0; }
.hero-animate-delay { animation: hero-fade-up 0.8s cubic-bezier(0.25,0.46,0.45,0.94) 0.15s forwards; opacity: 0; }

/* ===== UTILS ===== */
.pixel-img { border: 0; height: 1px; width: 1px; position: absolute; }

/* ===== WHY IT WORKS / THREE PRINCIPLES (ported from Astro RepoArchitecture) ===== */
.tri-section { background: #15110a; color: #fff; padding: 100px 0; overflow: hidden; }
.tri-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.tri-anim { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.tri-anim[data-anim="fade"] { transform: none; }
.tri-anim[data-anim="up"] { transform: translateY(30px); }
.tri-anim.tri-in-view { opacity: 1; transform: none; }
.tri-header { text-align: center; margin-bottom: 56px; }
.tri-label { display: inline-block; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: #FEBB02; margin-bottom: 16px; }
.tri-title { font-family: 'Manrope', sans-serif; font-weight: 900; font-size: clamp(26px, 4vw, 42px); line-height: 1.45; color: #fff; max-width: 980px; margin: 0 auto; letter-spacing: -1px; text-wrap: balance; }
.tri-sub { font-family: 'Inter', sans-serif; font-size: clamp(14px, 1.3vw, 16px); line-height: 1.65; color: #aaa; max-width: 780px; margin: 22px auto 0; text-wrap: balance; }
.tri-hl { background: #FEBB02; color: #000; padding: 2px 12px; border-radius: 4px; white-space: nowrap; }
.tri-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1100px; margin: 0 auto; }
.tri-card { border: 1px solid #222; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.3s; }
.tri-card:hover { border-color: #444; }
.tri-card__frame { padding: 8px; background: linear-gradient(rgba(254, 187, 2, 0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(254, 187, 2, 0.01) 1px, transparent 1px), radial-gradient(ellipse at 50% 50%, rgba(254, 187, 2, 0.02) 0%, transparent 60%); background-size: 20px 20px, 20px 20px, 100% 100%; border-bottom: 1px solid #222; }
.tri-svg { width: 100%; height: auto; overflow: visible; }
.tri-card__body { padding: 18px 16px; flex: 1; display: flex; flex-direction: column; }
.tri-card__body h3 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 15px; color: #fff; margin-bottom: 6px; line-height: 1.25; letter-spacing: -0.3px; }
.tri-card__body p { font-size: 14px; color: #888; line-height: 1.55; flex: 1; margin-bottom: 12px; }
.tri-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tri-tag { font-weight: 800; font-size: 9.5px; text-transform: uppercase; letter-spacing: 1px; color: #FEBB02; background: rgba(254, 187, 2, 0.08); border: 1px solid rgba(254, 187, 2, 0.15); padding: 3px 7px; border-radius: 4px; }
.tri-dept-label { font-size: 12px; font-weight: 800; letter-spacing: 0.5px; }
.tri-src-label { font-size: 18px; font-weight: 900; text-transform: uppercase; }
.tri-src-sub { font-size: 12px; font-weight: 600; opacity: 0.6; }
.tri-out-label { font-size: 12px; font-weight: 600; }
.tri-step-num { font-size: 22px; font-weight: 900; }
.tri-step-label { font-size: 12px; font-weight: 600; }
.tri-ship-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.tri-check { font-size: 14px; font-weight: 800; }
.tri-anno { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 720px) {
  /* Single column — give each tile real breathing room so the SVG of one
     doesn't run into the headline of the next, bump the headline size so
     it reads as the dominant element in the card (not the diagram), and
     give the card a brand-tinted border + hard shadow so its edges read
     against the near-black section background. */
  .tri-grid { grid-template-columns: 1fr; gap: 36px; max-width: 500px; margin: 0 auto; padding: 0 4px; }
  .tri-card {
    border: 2px solid rgba(254, 187, 2, 0.32);
    border-radius: 18px;
    background: #1c1710;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.55), 0 0 0 1px rgba(254,187,2,0.06);
  }
  .tri-card:hover { border-color: rgba(254, 187, 2, 0.55); }
  .tri-card__frame { border-bottom: 2px solid rgba(254, 187, 2, 0.18); }
  .tri-card__body { padding: 26px 22px 28px; }
  .tri-card__body h3 { font-size: 22px; line-height: 1.2; margin-bottom: 10px; letter-spacing: -0.4px; }
  .tri-card__body p { font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
  .tri-tag { font-size: 10px; padding: 4px 10px; }
}
@media (max-width: 600px) { .tri-section { padding: 60px 0; } .tri-grid { gap: 32px; } .tri-card__body { padding: 24px 20px 26px; } }

/* ===========================================================
   THE BOILERPLATE — showcase section (#boilerplate)
   =========================================================== */
/* Boilerplate — compact "little product thing" treatment (2026-05-18) */
.bp-section { background: #0a0a0a; color: #fff; padding: 56px 0; }
@media (max-width: 600px) { .bp-section { padding: 40px 0; } }
.bp-section .container { max-width: 920px; }

.bp-section-header { text-align: center; max-width: 640px; margin: 0 auto 26px; }
.bp-section-eyebrow {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}
.bp-section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    font-weight: 800; letter-spacing: -0.6px; line-height: 1.25;
    margin: 0 0 12px; color: #fff;
    text-wrap: balance;
}
.bp-section-header h2 span {
    background: var(--primary); color: #000;
    padding: 0.02em 0.32em; border-radius: 4px;
    display: inline-block; white-space: nowrap;
}
.bp-section-sub {
    font-size: 0.92rem; color: #b0b0b0; line-height: 1.55;
    margin: 0; text-wrap: balance;
}

.bp-feature-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
    max-width: 720px; margin: 0 auto;
}
@media (max-width: 700px) { .bp-feature-grid { grid-template-columns: 1fr; } }

.bp-feature {
    background: #15110a;
    border: 1px solid #2a2620;
    border-radius: 10px;
    padding: 16px 18px 16px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.bp-feature:hover { border-color: var(--primary); transform: translateY(-1px); }
.bp-feature-eyebrow {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.6rem; font-weight: 800; letter-spacing: 0.18em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
}
.bp-feature h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem; font-weight: 800; letter-spacing: -0.2px;
    line-height: 1.2; margin: 0 0 6px; color: #fff;
}
.bp-feature p { font-size: 0.8rem; color: #8a8a8a; line-height: 1.5; margin: 0; }

.bp-section-foot {
    max-width: 820px; margin: 36px auto 0;
    text-align: center;
    font-size: 0.92rem; color: #cfcfcf; line-height: 1.7;
    padding: 22px 28px;
    background: rgba(254, 187, 2, 0.05);
    border: 1px dashed rgba(254, 187, 2, 0.25);
    border-radius: 12px;
}
.bp-section-foot strong { color: #fff; font-weight: 800; }

/* ===========================================================
   TIER LADDER (#paths) — Self-paced / Pro / Business pricing
   =========================================================== */
.paths-section { padding-top: 60px; padding-bottom: 60px; }
.paths-section .section-intro { max-width: 920px; }
.paths-section .section-intro h2 { text-wrap: balance; }
.tier-ladder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; align-items: stretch; }
@media (max-width: 920px) { .tier-ladder { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }
.paths-extras { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.paths-extras .paths-events-link { margin-top: 0; }
.paths-events-cta--link { text-decoration: underline; text-underline-offset: 3px; }

.tier-card {
    position: relative;
    background: #FFFFFF; border: 3px solid #000; border-radius: 18px; box-shadow: 8px 8px 0 #000;
    padding: 36px 32px 32px; display: flex; flex-direction: column; gap: 18px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* Full-bleed top-of-card visual — matches card's inner radius (18px - 3px border) */
.tier-card-visual {
    margin: -36px -32px 8px;
    aspect-ratio: 16 / 10;
    background-size: cover; background-position: center;
    background-color: #15110a;
    border-bottom: 3px solid #000;
    border-radius: 15px 15px 0 0;
}
.tier-card-visual--self-paced {
    background: #15110a;
    display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr);
    gap: 6px; padding: 18px;
    place-items: stretch;
}
.tier-card-visual-level {
    background: rgba(254, 187, 2, 0.08);
    border: 1px solid rgba(254, 187, 2, 0.25);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-family: 'Manrope', sans-serif; font-weight: 800;
    font-size: 0.78rem; letter-spacing: 0.05em;
}
.tier-card-visual-level--locked { color: rgba(254, 187, 2, 0.35); background: rgba(254, 187, 2, 0.03); }

/* Community card — live coaching chat bubbles */
.tier-card-visual--community {
    background: #15110a;
    display: flex; flex-direction: column;
    gap: 7px; padding: 16px 14px;
    justify-content: center;
}
.cv-msg {
    display: flex; align-items: center; gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem; line-height: 1.25;
}
.cv-msg--q { justify-content: flex-start; }
.cv-msg--a { justify-content: flex-end; flex-direction: row-reverse; }
.cv-avatar {
    flex: 0 0 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(254, 187, 2, 0.14);
    border: 1px solid rgba(254, 187, 2, 0.3);
    color: var(--primary);
    font-family: 'Manrope', sans-serif; font-weight: 800;
    font-size: 0.58rem; letter-spacing: 0.02em;
}
.cv-avatar--coach {
    background: var(--primary); color: #000; border-color: var(--primary);
}
.cv-text {
    background: rgba(254, 187, 2, 0.06);
    border: 1px solid rgba(254, 187, 2, 0.18);
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 9px; border-radius: 8px;
    max-width: 78%;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cv-msg--a .cv-text {
    background: rgba(254, 187, 2, 0.18);
    border-color: rgba(254, 187, 2, 0.4);
    color: var(--primary);
}

/* Workshops card — Zoom-style video-call grid */
.tier-card-visual--workshop {
    background: #15110a;
    display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr);
    gap: 6px; padding: 12px;
    place-items: stretch;
}
.vc-tile {
    position: relative;
    background: rgba(254, 187, 2, 0.08);
    border: 1px solid rgba(254, 187, 2, 0.25);
    border-radius: 6px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px;
    padding: 6px 4px;
}
.vc-tile--host {
    grid-column: 1; grid-row: 1;
    background: rgba(254, 187, 2, 0.16);
    border-color: rgba(254, 187, 2, 0.55);
}
.vc-avatar {
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(254, 187, 2, 0.2);
    border: 1px solid rgba(254, 187, 2, 0.4);
    color: var(--primary);
    font-family: 'Manrope', sans-serif; font-weight: 800;
    font-size: 0.66rem;
}
.vc-tile--host .vc-avatar {
    background: var(--primary); color: #000; border-color: var(--primary);
}
.vc-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.56rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.02em;
    line-height: 1;
}
.vc-tile--host .vc-name { color: var(--primary); font-weight: 700; }
.vc-rec {
    position: absolute; top: 5px; right: 5px;
    display: inline-flex; align-items: center; gap: 3px;
    font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.46rem;
    letter-spacing: 0.1em;
    color: #F25F29;
}
.vc-rec-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: #F25F29;
    box-shadow: 0 0 6px rgba(242, 95, 41, 0.6);
    animation: vc-pulse 1.4s ease-in-out infinite;
}
@keyframes vc-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* Format meta line under price */
.tier-card-meta {
    font-size: 0.8rem; color: var(--text-2); margin: 0;
    letter-spacing: 0.02em; line-height: 1.45;
    min-height: 2.9em;
    font-weight: 500;
}

/* Next cohort pill (opens Luma modal) */
.tier-card-cohort-pill {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    align-self: flex-start;
    background: rgba(254, 187, 2, 0.14);
    border: 1.5px solid rgba(0, 0, 0, 0.3);
    border-radius: 999px;
    padding: 6px 12px;
    font-family: 'Manrope', sans-serif; font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase; color: #8B5E00;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}
.tier-card-cohort-pill:hover { background: rgba(254, 187, 2, 0.22); transform: translateY(-1px); }
.tier-card-cohort-pill svg { width: 14px; height: 14px; }
.tier-card:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 #000; }

.tier-card--featured {
    background: linear-gradient(180deg, #FFF8DA 0%, #FFFFFF 60%);
    box-shadow: 8px 8px 0 #000;
    transform: translateY(-6px);
}
.tier-card--featured:hover { transform: translate(-2px, -8px); box-shadow: 10px 10px 0 #000; }
@media (max-width: 920px) { .tier-card--featured { transform: none; } .tier-card--featured:hover { transform: translate(-2px, -2px); } }

.tier-card-flag {
    position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary); color: #000;
    font-family: 'Manrope', sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 7px 16px; border-radius: 999px; border: 2px solid #000;
    box-shadow: 2px 2px 0 #000;
    white-space: nowrap;
    z-index: 2;
}

.tier-card-head { display: flex; flex-direction: column; gap: 6px; }
.tier-card-tag { font-family: 'Manrope', sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); }
.tier-card-name { font-family: 'Manrope', sans-serif; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.8px; line-height: 1.15; margin: 0; color: var(--text); }
.tier-card-sub { font-size: 0.95rem; color: var(--text-2); line-height: 1.55; margin: 0; }

.tier-card-price { padding: 20px 0 16px; border-top: 1px dashed rgba(0,0,0,0.14); border-bottom: 1px dashed rgba(0,0,0,0.14); display: flex; flex-direction: column; gap: 4px; }
.tier-card-amount { font-family: 'Manrope', sans-serif; font-size: 3.1rem; font-weight: 800; letter-spacing: -2px; line-height: 1; color: var(--text); }
.tier-card-amount-unit { font-size: 0.85rem; color: var(--text-2); letter-spacing: 0.02em; font-weight: 500; }

.tier-card-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; flex-grow: 1; }
.tier-card-list li { font-size: 0.92rem; color: var(--text-2); padding-left: 26px; position: relative; line-height: 1.55; }
.tier-card-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 800; }

.tier-card-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 22px; background: #FFFFFF; color: #000;
    border: 3px solid #000; border-radius: 12px; box-shadow: 4px 4px 0 #000;
    font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.88rem; letter-spacing: -0.2px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    margin-top: 4px;
}
.tier-card-cta:hover { background: #F5F5F5; transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #000; }
.tier-card-cta:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #000; }
.tier-card-cta--solid { background: var(--primary); }
.tier-card-cta--solid:hover { background: #FFC830; }

.tier-card-link {
    display: inline-flex; align-items: center; justify-content: center; gap: 4px;
    font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: -0.2px;
    color: var(--text-2);
    text-decoration: underline; text-decoration-color: rgba(0,0,0,0.25);
    text-underline-offset: 4px; text-decoration-thickness: 1.5px;
    margin-top: 8px;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.tier-card-link:hover { color: #000; text-decoration-color: var(--primary); }

.tier-card-best { font-size: 0.82rem; color: var(--text-2); margin: 6px 0 0; line-height: 1.45; font-style: italic; font-weight: 500; }

.paths-events-link { margin-top: 28px; text-align: center; font-size: 0.88rem; color: var(--text-2); }
.paths-events-cta { background: none; border: none; padding: 0; margin: 0; font: inherit; cursor: pointer; color: #8B5E00; font-weight: 700; text-decoration: underline; text-decoration-color: var(--primary); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.paths-events-cta:hover { color: #5C3F00; text-decoration-color: #C99100; }

/* ===========================================================
   COHORT DETAIL SECTIONS (#pro, #business)
   =========================================================== */
.cohort-section { padding: 60px 0; }
.cohort-section--pro      { background: #FFFCEE; }
.cohort-section--business { background: #FFFCEE; }

/* ---- COHORT CARD (single outlined container per cohort) ---- */
.cohort-card {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 3px solid #000;
    border-radius: 20px;
    box-shadow: 10px 10px 0 #000;
    padding: 56px 56px 44px;
}
@media (max-width: 820px) {
    .cohort-card { padding: 36px 22px 32px; box-shadow: 6px 6px 0 #000; border-radius: 14px; }
}

/* Cohort flag — mirrors .tier-card-flag, larger to suit the bigger detail card */
.cohort-card-flag {
    position: absolute; top: -18px; left: 32px;
    background: #000; color: var(--primary);
    font-family: 'Manrope', sans-serif; font-size: 0.78rem; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 9px 18px; border-radius: 999px; border: 2px solid #000;
    white-space: nowrap;
}
@media (max-width: 820px) {
    .cohort-card-flag { top: -14px; left: 18px; font-size: 0.7rem; padding: 7px 14px; }
}

/* Top row: image (left) + header (right) — stacks on mobile */
.cohort-card-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 36px;
}
@media (max-width: 820px) {
    .cohort-card-top { grid-template-columns: 1fr; gap: 24px; margin-bottom: 26px; align-items: center; }
}

/* Hero image at the top of the cohort detail card */
.cohort-card-hero {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 0;
    border-radius: 12px;
    box-shadow: none;
    margin: 0;
}
@media (max-width: 820px) {
    .cohort-card-hero { aspect-ratio: 16 / 10; max-height: 260px; border-radius: 12px; }
}

.cohort-card-head { text-align: left; max-width: none; margin: 0; }
@media (max-width: 820px) {
    .cohort-card-head { text-align: center; max-width: 720px; margin: 0 auto; }
}
.cohort-card-head .section-eyebrow { margin-bottom: 10px; }
.cohort-card-head h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 800; letter-spacing: -1px; line-height: 1.1;
    margin: 0 0 16px; color: var(--text);
    text-wrap: balance;
}
.cohort-card-head h2 span { background: var(--primary); padding: 2px 14px; border-radius: 6px; }
.cohort-card-head p {
    font-size: 0.96rem; color: var(--text-2); line-height: 1.6;
    margin: 0; text-wrap: balance;
}

/* Flattened price strip inside the card (no second border/shadow) */
.cohort-card-strip {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
    margin: 28px auto 36px;
    padding: 10px 14px 10px 10px;
    background: #FFFCEE;
    border: 2px solid #000;
    border-radius: 999px;
    width: max-content; max-width: 100%;
}
.cohort-card--business .cohort-card-strip { background: #F4F4F4; }
.cohort-card-strip .cohort-strip-tag { padding: 6px 14px; }
.cohort-card-strip .cohort-strip-dots { font-size: 0.86rem; }
.cohort-card-strip .cohort-strip-cta { font-size: 0.82rem !important; padding: 8px 18px !important; }
@media (max-width: 540px) {
    .cohort-card-strip { border-radius: 14px; padding: 12px; gap: 10px; flex-direction: column; }
}

/* Deliverables grid — the centerpiece */
.cohort-deliverables { margin-top: 8px; }
.cohort-deliverables-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--text-3);
    text-align: left; margin: 0 0 22px;
}
.deliverable-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
@media (max-width: 700px) { .deliverable-grid { grid-template-columns: 1fr; } }

.deliverable {
    background: #FFFCEE;
    border: 2px solid #000;
    border-radius: 14px;
    box-shadow: 4px 4px 0 #000;
    padding: 22px 22px 20px;
}
.deliverable-eyebrow {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.66rem; font-weight: 800; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--text-3);
    margin-bottom: 12px;
}
.deliverable h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem; font-weight: 800; letter-spacing: -0.3px;
    line-height: 1.2; margin: 0 0 8px; color: var(--text);
}
.deliverable p {
    font-size: 0.86rem; color: var(--text-2); line-height: 1.55; margin: 0;
}

/* Card footer — note + final CTA */
.cohort-card-foot {
    margin-top: 36px; padding-top: 26px;
    border-top: 1px dashed rgba(0,0,0,0.15);
    display: flex; align-items: center; justify-content: space-between;
    gap: 22px; flex-wrap: wrap;
}
.cohort-card-foot-note {
    flex: 1 1 320px;
    font-size: 0.84rem; color: var(--text-2); line-height: 1.55; margin: 0;
}
.cohort-card-foot-cta { white-space: nowrap; }
@media (max-width: 700px) {
    .cohort-card-foot { flex-direction: column; align-items: stretch; text-align: center; }
}

.cohort-strip {
    display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
    background: #FFFFFF; border: 3px solid #000; border-radius: 14px; box-shadow: 6px 6px 0 #000;
    padding: 18px 24px;
}
.cohort-strip-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cohort-strip-tag { font-family: 'Manrope', sans-serif; font-size: 0.9rem; font-weight: 800; letter-spacing: 0.04em; color: var(--text); padding: 6px 12px; background: transparent; border: 2px solid rgba(0,0,0,0.2); border-radius: 8px; }
.cohort-strip-dots { font-size: 0.84rem; color: var(--text-2); }
.cohort-strip-price { display: flex; align-items: center; gap: 14px; }
.cohort-strip-amount { font-family: 'Manrope', sans-serif; font-size: 1.6rem; font-weight: 800; letter-spacing: -0.6px; color: var(--text); }
.cohort-strip-cta { font-size: 0.82rem !important; padding: 10px 22px !important; }

.cohort-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; justify-content: center; }
.cohort-pill { font-size: 0.78rem; font-weight: 700; padding: 6px 12px; border-radius: 999px; background: rgba(0,0,0,0.04); border: 1px solid var(--border); color: var(--text-2); }
.cohort-pill--soft { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.35); color: #15803d; }

/* WEEKS GRID — 4-col on desktop, responsive */
.weeks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
@media (max-width: 900px) { .weeks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .weeks-grid { grid-template-columns: 1fr; } }
.week-card { background: #FFFFFF; border: 1px solid var(--border-2); border-radius: 12px; padding: 22px 20px; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.week-card:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.05); }
.week-card-num { font-family: 'Manrope', sans-serif; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.week-card-title { font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: -0.3px; line-height: 1.25; margin: 0 0 8px; color: var(--text); }
.week-card-body { font-size: 0.82rem; color: var(--text-2); line-height: 1.55; margin: 0; }
.week-card--bonus { background: linear-gradient(180deg, #FFF8DA 0%, #FFFFFF 100%); border: 2px dashed #000; }
.week-card--bonus .week-card-num { color: #000; }

/* COHORT WALKOUT (2-col: deliverables / filter) */
.cohort-walkout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; margin-top: 36px; }
@media (max-width: 820px) { .cohort-walkout { grid-template-columns: 1fr; } }
.cohort-walkout-block { background: #FFFFFF; border: 1px solid var(--border-2); border-radius: 12px; padding: 22px 24px; }
.cohort-walkout-block h4 { font-family: 'Manrope', sans-serif; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin: 0 0 14px; }
.cohort-walkout-block ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.cohort-walkout-block li { font-size: 0.875rem; color: var(--text-2); padding-left: 22px; position: relative; line-height: 1.5; }
.cohort-walkout-block li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 800; }
.cohort-walkout-block--filter li::before { content: '✗'; color: var(--text-3); }

/* BOILERPLATE BLOCK (Business Cohort centrepiece) */
.boilerplate-block {
    margin-top: 36px;
    background: #000; color: #fff;
    border: 3px solid #000; border-radius: 16px; box-shadow: 8px 8px 0 var(--primary);
    padding: 32px 32px 30px;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start;
}
@media (max-width: 820px) { .boilerplate-block { grid-template-columns: 1fr; padding: 26px 22px; box-shadow: 6px 6px 0 var(--primary); } }
.boilerplate-head { display: flex; flex-direction: column; gap: 8px; }
.boilerplate-eyebrow { font-family: 'Manrope', sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); }
.boilerplate-block h3 { font-family: 'Manrope', sans-serif; font-size: 1.7rem; font-weight: 800; letter-spacing: -0.7px; color: #fff; margin: 0; line-height: 1.15; }
.boilerplate-block p { font-size: 0.92rem; color: #cfcfcf; line-height: 1.6; margin: 0; }
.boilerplate-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
@media (max-width: 540px) { .boilerplate-list { grid-template-columns: 1fr; } }
.boilerplate-list li { font-size: 0.875rem; color: #fff; padding-left: 22px; position: relative; line-height: 1.5; }
.boilerplate-list li::before { content: '▸'; position: absolute; left: 0; color: var(--primary); font-weight: 800; }

/* ===========================================================
   FAQ (#faq) — native <details> accordion
   =========================================================== */
.faq-section { padding: 80px 0; background: var(--surface); }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
    background: #FFFFFF; border: 3px solid #000; border-radius: 12px; box-shadow: 4px 4px 0 #000;
    overflow: hidden;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.faq-item:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 #000; }
.faq-item summary {
    cursor: pointer; list-style: none;
    padding: 18px 22px;
    font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: -0.3px; color: var(--text);
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    transition: background 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; flex-shrink: 0;
    font-family: 'Manrope', sans-serif; font-size: 1.5rem; font-weight: 800; line-height: 1;
    width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: #000;
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid #000;
    transition: transform 0.2s ease;
}
.faq-item[open] summary { background: #FFFCEE; }
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-item summary:hover { background: #FFFCEE; }
.faq-body { padding: 0 22px 22px; }
.faq-body p { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; margin: 0; }
.faq-body p + p { margin-top: 12px; }
.faq-body a { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ===========================================================
   FINAL CTA — three-tiered buttons
   =========================================================== */
.final-cta-ctas--tiered { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin: 26px 0 14px; }
.final-cta-btn {
    display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
    min-width: 180px; padding: 16px 28px !important;
}
.final-cta-btn-label { font-family: 'Manrope', sans-serif; font-size: 0.85rem; font-weight: 800; letter-spacing: -0.2px; }
.final-cta-btn-price { font-family: 'Manrope', sans-serif; font-size: 1.15rem; font-weight: 800; letter-spacing: -0.5px; }
.final-cta-btn--featured { box-shadow: 8px 8px 0 #000 !important; }
.final-cta-events { margin-top: 14px; font-size: 0.85rem; color: var(--text-3); }
.final-cta-events .paths-events-cta { color: #8B5E00; font-weight: 700; }

@media (max-width: 640px) {
    .final-cta-ctas--tiered { flex-direction: column; align-items: stretch; }
    .final-cta-btn { width: 100%; min-width: 0; }
}
