/* ===== TOKENS (ported from workshop-landing.html) ===== */
:root {
    --primary: #6736E4;
    --primary-soft: #8B5CF6;
    --primary-glow: rgba(103,54,228,0.08);
    --primary-glow-strong: rgba(103,54,228,0.15);
    --primary-shadow: 0 0 50px rgba(103,54,228,0.15);
    --primary-shadow-lg: 0 20px 60px -10px rgba(103,54,228,0.2);
    --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(103,54,228,0.06);
}

* { 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 { font-size: clamp(2.4rem, 4.5vw, 3.4rem); font-weight: 700; letter-spacing: -2.5px; margin-bottom: 20px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -1.5px; margin-bottom: 14px; }
h2 span { color: var(--primary-soft); }
h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.3px; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ===== NAV (workshop style) ===== */
.nav { position: sticky; top: 0; z-index: 100; padding: 14px 0; background: rgba(255,255,255,0.8); -webkit-backdrop-filter: blur(24px) saturate(1.4); backdrop-filter: blur(24px) saturate(1.4); border-bottom: 1px solid var(--border); box-shadow: 0 1px 12px rgba(0,0,0,0.04); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.nav-logo { height: 22px; width: auto; display: block; pointer-events: none; }
.nav-home-link { display: inline-flex; align-items: center; justify-content: center; padding: 10px 4px; cursor: pointer; text-decoration: none; position: relative; z-index: 101; min-height: 40px; }
.nav-home-link:hover .nav-logo { opacity: 0.85; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link { color: var(--text-2); font-size: 0.8rem; font-weight: 500; transition: color 0.2s; letter-spacing: -0.2px; }
.nav-link:hover { color: var(--text); }
.nav-cta { background: var(--primary); color: white !important; padding: 10px 24px; border-radius: 100px; font-weight: 600; font-size: 0.8rem; transition: all 0.2s; letter-spacing: -0.2px; }
.nav-cta:hover { background: var(--primary-soft); }

.nav-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; color: var(--text); }
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 820px) {
    .nav-toggle { display: block; }
    .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(255,255,255,0.98); -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); padding: 8px 0; max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
    .nav-links.open { max-height: 500px; }
    .nav-links .nav-link { padding: 14px 28px; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
    .nav-links .nav-link:last-child { border-bottom: none; }
    .nav-links .nav-cta { margin: 12px 24px; text-align: center; padding: 14px 24px; font-size: 0.85rem; }
}

/* ===== 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(103,54,228,0.05) 0%, transparent 60%); pointer-events: none; }
.hero::after { content: ''; position: absolute; top: 200px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(103,54,228,0.03) 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.68rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.hero-label::before { content: ''; width: 20px; height: 1px; background: var(--primary); }
.hero-label-dot { display: none; }
.hero h1 span { color: var(--primary); }
.hero h1 em { color: var(--primary); font-style: normal; }
.hero-p { font-size: 1rem; color: var(--text-2); margin-bottom: 32px; line-height: 1.7; max-width: 460px; }
.hero-p strong { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }

.btn-primary { background: var(--primary); color: white; padding: 14px 36px; border-radius: 100px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 20px rgba(103,54,228,0.25); }
.btn-primary:hover { background: var(--primary-soft); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(103,54,228,0.3); color: white; }
.btn-secondary { background: var(--bg); color: var(--text); border: 1px solid var(--border-2); padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

.hero-proof { display: flex; align-items: center; gap: 12px; }
.hero-proof-avatars { display: flex; }
.hero-proof-avatars img { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg); object-fit: cover; }
.hero-proof-avatars img + img { margin-left: -8px; }
.hero-proof-text { font-size: 0.75rem; color: var(--text-3); }
.hero-proof-text strong { color: var(--text-2); }
.hero-proof-stars { color: #F59E0B; font-size: 0.7rem; letter-spacing: 1px; }

.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(103,54,228,0.06); }
.hero-video:hover .play-circle { transform: scale(1.1); box-shadow: 0 0 40px rgba(103,54,228,0.3); }
.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(103,54,228,0.5); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); box-shadow: 0 0 30px rgba(103,54,228,0.2); }
.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.68rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.section-eyebrow { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); 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 (no more black box) ===== */
.stat-bar-section { padding: 32px 0 48px; border-top: 1px solid var(--border); }
.stat-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; }
@media (max-width: 720px) { .stat-bar { grid-template-columns: repeat(2, 1fr); } }
.stat-bar-item { text-align: left; padding: 8px 24px 8px 0; border-right: 1px solid var(--border); }
.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 var(--border); } .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(--text); line-height: 1; margin-bottom: 6px; }
.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; }

/* ===== BUCKETS (3-card, workshop-style) ===== */
.buckets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .buckets { grid-template-columns: 1fr; } }
.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.66rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.bucket h3 { margin-bottom: 10px; font-size: 1.12rem; font-weight: 700; 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.84rem; 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; }

/* ===== 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.66rem; font-weight: 600; 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 (purple gradient) ===== */
.workshops-strip { background: linear-gradient(135deg, rgba(103,54,228,0.06) 0%, rgba(139,92,246,0.04) 100%); border: 1px solid rgba(103,54,228,0.12); 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(103,54,228,0.1); 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.72rem; color: var(--text-2); }
.city-card-price { font-size: 0.74rem; 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(103,54,228,0.2) 0%, rgba(0,0,0,0.55) 100%); }
.play-sm { width: 54px; height: 54px; background: rgba(103,54,228,0.45); 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(103,54,228,0.7); 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.7rem; 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.72rem; 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.72rem; 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.86rem; 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.62rem; 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.7rem; 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.72rem; 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.66rem; font-weight: 600; color: var(--primary); 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; }

/* ===== FINAL CTA (light purple gradient, NO black box) ===== */
.final-cta-section { background: linear-gradient(135deg, rgba(103,54,228,0.04) 0%, rgba(103,54,228,0.08) 50%, rgba(139,92,246,0.04) 100%); position: relative; overflow: hidden; padding: 100px 0; text-align: center; }
.final-cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(103,54,228,0.06) 0%, transparent 60%); pointer-events: none; }
.final-cta-section .container { position: relative; z-index: 1; }
.final-cta-section h2 { margin-bottom: 16px; }
.final-cta-section h2 span { color: var(--primary); }
.final-cta-section p { color: var(--text-2); font-size: 0.98rem; max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.final-cta-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
/* compat alias for old markup */
.cta-band { background: linear-gradient(135deg, rgba(103,54,228,0.04) 0%, rgba(103,54,228,0.08) 50%, rgba(139,92,246,0.04) 100%); color: var(--text); padding: 100px 0; text-align: center; border-radius: 0; margin: 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(103,54,228,0.06) 0%, transparent 60%); pointer-events: none; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--text); margin-bottom: 16px; }
.cta-band h2 span { color: var(--primary); }
.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(103,54,228,0.06); }
.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: 100px; font-weight: 600; font-size: 0.88rem; transition: all 0.3s; width: 100%; margin-top: auto; }
.pricing-cta-solid { background: var(--primary); color: white; border: 2px solid var(--primary); box-shadow: 0 4px 16px rgba(103,54,228,0.2); }
.pricing-cta-solid:hover { background: var(--primary-soft); border-color: var(--primary-soft); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(103,54,228,0.3); color: white; }
.pricing-cta-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.pricing-cta-outline:hover { background: var(--primary-glow); color: var(--primary); }

/* ===== 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.74rem; 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 (light) ===== */
.testimonial-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 56px 48px; text-align: center; }
@media (max-width: 600px) { .testimonial-block { padding: 40px 26px; } }
.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.74rem; color: var(--text-3); margin-top: 2px; }

/* ===== FOOTER (light, border-top, NO black box) ===== */
.footer { padding: 64px 0 40px; border-top: 1px solid var(--border); background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.footer-logo { height: 20px; margin-bottom: 16px; opacity: 0.85; }
.footer-tag { font-size: 0.82rem; color: var(--text-2); max-width: 280px; line-height: 1.7; }
.footer-address { margin-top: 20px; font-size: 0.78rem; line-height: 1.75; color: var(--text-2); }
.footer-address-label { font-size: 0.64rem; font-weight: 600; color: var(--text); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.footer-address a { color: var(--primary); font-weight: 600; }
.footer-address a:hover { text-decoration: underline; }
.footer-col h4 { color: var(--text); font-size: 0.68rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.footer-col a { display: block; color: var(--text-2); font-size: 0.84rem; padding: 6px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.76rem; color: var(--text-3); }
.footer-bottom a { color: var(--text-3); }
.footer-bottom a:hover { color: var(--text); }
@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; }
