/**
 * home.css v5.0.0
 * Senior refactor:
 * - Hero stats → horizontal row (no floating cards)
 * - stat-card hover: no translateX on mobile (touch fix)
 * - SVG tier icons replacing emoji
 * - Social proof section (testimonials)
 * - aria-hidden marquee (no style change needed)
 * - All var → let/const handled in JS
 * - Bottle pixel count unchanged
 */

:root {
    --gold: #c5a059;
    --gold-bright: #d4af37;
    --dark: #050505;
    --darker: #000000;
    --text-main: #e0e0e0;
    --text-muted: #9b9b9b;
    --transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    --header-h: 80px; /* fallback — JS sets dynamically */
}

html { overflow-x: hidden; }

body {
    background-color: #050505 !important;
    background-image: radial-gradient(rgba(197,160,89,0.08) 1px, transparent 1px) !important;
    background-size: 40px 40px !important;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100vw;
}

.k17-home-page {
    background-color: var(--dark);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── K17 BACKGROUND ── */
.bg-k17-text {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Roboto Slab', serif;
    font-weight: 900;
    font-size: 22vw;
    line-height: 1;
    color: rgba(197,160,89,0.03);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.k17-number { color: rgba(197,160,89,0.045); }

/* ── CANVAS ── */
#canvas-container {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
#canvas-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    filter: brightness(1.3)
            drop-shadow(0 0 35px rgba(212,175,55,0.6))
            drop-shadow(0 0 70px rgba(212,175,55,0.4))
            drop-shadow(0 0 105px rgba(212,175,55,0.25));
}

/* ── K17 MAIN ── */
.k17-main {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 60px) 0 100px;
}

/* ── NEW: single column, stats row sits BELOW headline ── */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-content { z-index: 2; max-width: 780px; }

.eyebrow-tech {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(197,160,89,0.5);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    display: block;
}

.main-line {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(2.5rem, 8vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 2rem 0;
}

.gold-gradient-text {
    background: linear-gradient(to bottom,#bf953f 0%,#fcf6ba 45%,#b38728 50%,#fbf5b7 55%,#aa771c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.playfair-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    display: block;
    margin-left: 5%;
}

.hero-description { margin: 2.5rem 0; max-width: 600px; }
.hero-description p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-muted);
}

.hero-cta { display: flex; gap: 1.5rem; margin-top: 3rem; flex-wrap: wrap; }

/* ── STATS — now a horizontal row ── */
.hero-stats {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
    z-index: 2;
}

.stat-card {
    flex: 1 1 0;
    min-width: 160px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2rem;
    border-radius: 16px;
    transition: var(--transition);
}

/* Desktop: only translate Y — never X (no overflow risk) */
.stat-card:hover {
    background: rgba(197,160,89,0.05);
    border-color: rgba(197,160,89,0.3);
    transform: translateY(-8px);
}

.stat-number {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: var(--text-muted);
    line-height: 1.4;
}
.stat-card-highlight {
    background: linear-gradient(135deg, rgba(197,160,89,0.1), rgba(197,160,89,0.05));
    border-color: rgba(197,160,89,0.3);
}
.stat-icon { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.stat-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1.4;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #000; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700;
    text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px;
    border-radius: 50px; transition: var(--transition);
    box-shadow: 0 8px 30px rgba(197,160,89,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(197,160,89,0.6); color: #000; }
.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(5px); }
.btn-primary.btn-large { padding: 20px 52px; font-size: 1.05rem; }

.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 18px 36px; background: transparent; color: var(--gold);
    font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
    text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px;
    border: 2px solid var(--gold); border-radius: 50px; transition: var(--transition);
}
.btn-secondary:hover { background: rgba(197,160,89,0.1); transform: translateY(-3px); color: var(--gold); }
.btn-secondary.btn-small { padding: 12px 24px; font-size: 0.85rem; }

/* ── SECTION SHARED ── */
.section-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.4em; margin-bottom: 3rem; display: block;
}
.section-title {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(2rem, 5vw, 4rem); font-weight: 900;
    color: #fff; text-transform: uppercase; margin: 0 0 4rem 0; text-align: center;
}

/* ══════════════════════════════════════
   MISSION
══════════════════════════════════════ */
.mission-section { padding: clamp(80px,12vw,120px) 0; }
.mission-container { max-width: 1400px; margin: 0 auto; padding: 0 60px; }
.mission-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }

.mission-quote {
    position: relative; padding: 3rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px; transition: var(--transition); cursor: default;
}
.mission-quote:hover {
    background: rgba(197,160,89,0.04); border-color: rgba(197,160,89,0.25);
    transform: translateY(-6px); box-shadow: 0 20px 60px rgba(197,160,89,0.08);
}
.mission-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.8vw, 2.4rem);
    font-weight: 300; font-style: italic; color: #fff; line-height: 1.45; margin: 0;
    border-left: 3px solid var(--gold); padding-left: 2rem; position: relative; z-index: 1;
}
.mission-quote em { color: var(--gold); font-weight: 400; }
.mission-quote-deco {
    position: absolute; bottom: 1.5rem; right: 2rem;
    font-size: 3rem; opacity: 0.06; transition: opacity 0.4s ease; pointer-events: none;
}
.mission-quote:hover .mission-quote-deco { opacity: 0.12; }
.highlight-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-weight: 600; font-style: normal;
}
.mission-stat-row { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; }
.mission-mini-stat {
    flex: 1; padding: 1.5rem;
    background: rgba(197,160,89,0.05);
    border: 1px solid rgba(197,160,89,0.15); border-radius: 14px;
    display: flex; flex-direction: column; gap: 0.4rem; transition: var(--transition);
}
.mission-mini-stat:hover { background: rgba(197,160,89,0.1); border-color: rgba(197,160,89,0.3); transform: translateY(-4px); }
.mission-mini-num { font-family: 'Roboto Slab', serif; font-size: clamp(1.4rem,3vw,2rem); font-weight: 900; color: var(--gold); line-height: 1; }
.mission-mini-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.2em; }
.mission-description p { font-family: 'Inter', sans-serif; font-size: clamp(1rem,2vw,1.1rem); line-height: 1.8; color: var(--text-muted); margin-bottom: 1.5rem; }

/* ══════════════════════════════════════
   ÜBER UNS
══════════════════════════════════════ */
.about-section { padding: clamp(80px,12vw,120px) 0; position: relative; }
.about-section::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:50%; height:1px; background:linear-gradient(90deg,transparent,rgba(197,160,89,0.25),transparent); }
.about-container { max-width: 1400px; margin: 0 auto; padding: 0 60px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-heading { font-family: 'Roboto Slab', serif; font-size: clamp(2rem,5vw,4.5rem); font-weight: 900; text-transform: uppercase; line-height: 0.95; margin: 0 0 2rem 0; letter-spacing: -0.02em; color: #fff; }
.about-text p { font-family: 'Inter', sans-serif; font-size: clamp(1rem,2vw,1.1rem); line-height: 1.8; color: var(--text-muted); margin-bottom: 1.5rem; }
.about-text .btn-secondary { margin-top: 1rem; }
.forwhom-list { display: flex; flex-direction: column; gap: 1rem; }
.forwhom-item {
    display: flex; gap: 1.2rem; align-items: center;
    padding: 1.2rem 1.5rem; background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; transition: var(--transition);
}
.forwhom-item:hover { background: rgba(197,160,89,0.05); border-color: rgba(197,160,89,0.2); transform: translateX(6px); }
.forwhom-num { font-family: 'JetBrains Mono', monospace; font-size: 1rem; font-weight: 700; color: var(--gold); opacity: 0.5; flex-shrink: 0; }
.forwhom-item p { font-family: 'Inter', sans-serif; font-size: clamp(0.88rem,1.5vw,0.95rem); color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ══════════════════════════════════════
   FEATURES / SÄULEN
══════════════════════════════════════ */
.features-section { padding: clamp(80px,12vw,120px) 0; }
.features-container { max-width: 1400px; margin: 0 auto; padding: 0 60px; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
.feature-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); padding: 3rem 2.5rem; border-radius: 20px; transition: var(--transition); }
.feature-card:hover { background: rgba(197,160,89,0.05); border-color: rgba(197,160,89,0.3); transform: translateY(-10px); }
.feature-icon { font-size: clamp(2.5rem,5vw,3.5rem); margin-bottom: 2rem; display: block; }
.feature-title { font-family: 'Roboto Slab', serif; font-size: clamp(1.1rem,2.5vw,1.4rem); font-weight: 700; color: #fff; text-transform: uppercase; margin: 0 0 1rem 0; }
.feature-desc { font-family: 'Inter', sans-serif; font-size: clamp(0.9rem,1.5vw,1rem); color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════════
   SOCIAL PROOF — reserved for post-launch
   Add real member testimonials after first event
══════════════════════════════════════ */

/* ══════════════════════════════════════
   EVENT SECTION
══════════════════════════════════════ */
.event-section { padding: clamp(80px,12vw,140px) 0; position: relative; }
.event-section::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:600px; background:radial-gradient(circle,rgba(197,160,89,0.04) 0%,transparent 70%); pointer-events:none; }
.event-container { max-width: 1400px; margin: 0 auto; padding: 0 60px; position: relative; z-index: 1; }

.event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.event-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
    background: rgba(197,160,89,0.1); border: 1px solid rgba(197,160,89,0.3);
    border-radius: 50px; font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--gold); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1.5rem;
}
.event-heading { font-family: 'Roboto Slab', serif; font-size: clamp(3rem,8vw,7rem); font-weight: 900; text-transform: uppercase; line-height: 0.9; margin: 0 0 1rem 0; letter-spacing: -0.02em; color: #fff; }
.event-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1rem,2vw,1.2rem); color: var(--gold); margin-bottom: 2rem; opacity: 0.8; }
.event-meta { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; padding: 1.5rem 2rem; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; }
.event-meta-item { display: flex; align-items: center; gap: 1rem; }
.event-meta-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.2em; min-width: 75px; flex-shrink: 0; }
.event-meta-value { font-family: 'Inter', sans-serif; font-size: clamp(0.9rem,1.5vw,1rem); color: var(--text-main); font-weight: 500; }
.event-desc { font-family: 'Inter', sans-serif; font-size: clamp(0.95rem,2vw,1.05rem); color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.event-cta { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }

/* ── VIDEO ── */
.home-video-col { width: 100%; max-width: 520px; margin: 0 auto; text-align: center; }
.home-video-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: 'Inter', sans-serif; font-size: 12px;
    color: rgba(197,160,89,0.7); text-transform: uppercase;
    letter-spacing: 0.25em; margin-bottom: 1.5rem;
}
.home-video-wrapper {
    position: relative; width: 100%; aspect-ratio: 9 / 16;
    border-radius: 28px; overflow: hidden;
    border: 1.5px solid rgba(197,160,89,0.35);
    box-shadow: 0 0 0 1px rgba(197,160,89,0.1), 0 20px 60px rgba(0,0,0,0.6), 0 0 80px rgba(197,160,89,0.08);
    background: #0a0a0a;
}
.home-video-player { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 28px; }
.home-video-sound-overlay { position: absolute; bottom: 60px; left: 16px; z-index: 20; pointer-events: none; }
.home-unmute-btn {
    pointer-events: all;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px 10px 14px;
    background: rgba(0,0,0,0.65); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(197,160,89,0.5); border-radius: 50px;
    color: #fff; font-family: 'Inter', sans-serif; font-size: 0.8rem;
    font-weight: 600; letter-spacing: 0.05em; cursor: pointer;
    transition: all 0.3s ease;
    animation: home-btn-pulse 2.5s ease-in-out infinite;
}
.home-unmute-btn:hover { background: rgba(197,160,89,0.25); border-color: var(--gold); transform: scale(1.05); animation: none; }
.home-unmute-icon { display: flex; align-items: center; }
.home-unmute-icon svg { stroke: var(--gold); flex-shrink: 0; }
.home-unmute-btn.is-muted   .home-icon-muted    { display: flex; }
.home-unmute-btn.is-muted   .home-icon-unmuted  { display: none !important; }
.home-unmute-btn.is-unmuted .home-icon-muted    { display: none !important; }
.home-unmute-btn.is-unmuted .home-icon-unmuted  { display: flex !important; }
@keyframes home-btn-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(197,160,89,0.4); }
    50%      { box-shadow: 0 0 0 6px rgba(197,160,89,0); }
}
.home-video-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    display: flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-size: 0.8rem;
    color: rgba(255,255,255,0.85); font-weight: 500; pointer-events: none;
}
.home-video-subtext { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text-muted); font-style: italic; margin-top: 1.25rem; }

/* ══════════════════════════════════════
   MEMBERSHIP TEASER — SVG tier icons
══════════════════════════════════════ */
.membership-teaser-section { padding: clamp(80px,12vw,140px) 0; position: relative; }
.membership-teaser-section::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:60%; height:1px; background:linear-gradient(90deg,transparent,rgba(197,160,89,0.3),transparent); }
.teaser-container { max-width: 1400px; margin: 0 auto; padding: 0 60px; text-align: center; }
.teaser-heading { font-family: 'Roboto Slab', serif; font-size: clamp(3rem,8vw,7rem); font-weight: 900; color: #fff; text-transform: uppercase; line-height: 0.95; margin: 0 0 1.5rem 0; letter-spacing: -0.02em; }
.teaser-subheading { font-family: 'Inter', sans-serif; font-size: clamp(1rem,2vw,1.2rem); color: var(--text-muted); line-height: 1.6; margin: 0 auto 4rem; max-width: 500px; }
.tier-teaser-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-bottom: 3.5rem; }
.tier-teaser-card { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; padding: 3rem 2rem 2.5rem; border-radius: 24px; border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02); text-decoration: none; position: relative; transition: var(--transition); }
.tier-teaser-silber:hover { border-color: rgba(192,192,192,0.4); background: rgba(192,192,192,0.04); transform: translateY(-12px); box-shadow: 0 24px 60px rgba(192,192,192,0.1); }
.tier-teaser-gold:hover   { border-color: rgba(212,175,55,0.5);  background: rgba(212,175,55,0.06);  transform: translateY(-16px); box-shadow: 0 28px 70px rgba(197,160,89,0.2); }
.tier-teaser-platin:hover { border-color: rgba(197,160,89,0.4);  background: rgba(197,160,89,0.04);  transform: translateY(-12px); box-shadow: 0 24px 60px rgba(197,160,89,0.12); }
.tier-teaser-featured { border-color: rgba(197,160,89,0.35); background: rgba(197,160,89,0.04); }
.tier-teaser-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,var(--gold),var(--gold-bright)); color: #000; padding: 5px 20px; border-radius: 20px; font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; white-space: nowrap; }

/* Circle tier icons — matches register page style */
.tier-teaser-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}
.tier-teaser-card:hover .tier-teaser-icon { transform: scale(1.1); }

/* Silver — gold border, transparent bg */
.tier-teaser-silber .tier-teaser-icon {
    border: 2px solid #c5a059;
    background: transparent;
}

/* Gold — filled gradient + glow */
.tier-teaser-gold .tier-teaser-icon {
    background: linear-gradient(135deg, #c5a059, #d4af37);
    border: none;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

/* Platin — black bg + gold border + glow */
.tier-teaser-platin .tier-teaser-icon {
    background: #000;
    border: 2px solid #c5a059;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}
.tier-teaser-platin:hover .tier-teaser-icon {
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.5);
}

.tier-teaser-name { font-family: 'Roboto Slab', serif; font-size: clamp(1.4rem,2.5vw,1.8rem); font-weight: 900; color: #fff; text-transform: uppercase; }
.tier-teaser-price { font-family: 'Roboto Slab', serif; font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 900; color: var(--gold); line-height: 1; }
.tier-teaser-price span { font-size: clamp(0.9rem,1.5vw,1rem); color: var(--text-muted); font-weight: 400; }
.tier-teaser-hook { font-family: 'Inter', sans-serif; font-size: clamp(0.85rem,1.5vw,0.95rem); color: var(--text-muted); line-height: 1.5; text-align: center; flex-grow: 1; }
.tier-teaser-cta { display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; transition: gap 0.3s ease; }
.tier-teaser-card:hover .tier-teaser-cta { gap: 14px; }
.teaser-action { display: flex; justify-content: center; }

/* ══════════════════════════════════════
   LOGO SECTION
══════════════════════════════════════ */
.logo-section {
    padding: clamp(80px,12vw,120px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(ellipse 55% 55% at 50% 50%,
            rgba(197,160,89,0.09) 0%,
            rgba(197,160,89,0.03) 45%,
            transparent 70%),
        #050505;
}
.logo-section::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(260px, 38vw, 440px); height: clamp(260px, 38vw, 440px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197,160,89,0.13) 0%, rgba(197,160,89,0.05) 50%, transparent 72%);
    animation: k17-glow-breath 5s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}
.logo-section::after {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 44vw, 500px); height: clamp(300px, 44vw, 500px);
    border-radius: 50%;
    border: 1px solid rgba(197,160,89,0.09);
    animation: k17-ring-breathe 5s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}
@keyframes k17-glow-breath {
    0%,100% { opacity: 0.6;  transform: translate(-50%, -50%) scale(0.97); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.03); }
}
@keyframes k17-ring-breathe {
    0%,100% { opacity: 0.4;  border-color: rgba(197,160,89,0.07); }
    50%      { opacity: 1;   border-color: rgba(197,160,89,0.18); }
}
.logo-section-inner { max-width: 800px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }
.logo-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(197,160,89,0.5); text-transform: uppercase; letter-spacing: 0.5em; margin-bottom: 2.5rem; display: block; }
.logo-animated-wrapper { display: flex; justify-content: center; }
.logo-svg-container { width: 100%; max-width: 420px; }
.logo-section-tagline { margin-top: 2.5rem; }
.logo-section-tagline p { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1rem,2.5vw,1.4rem); color: var(--text-muted); margin-bottom: 2rem; }

/* ── LOGO ANIMATION ── */
.k17lw { width: clamp(220px,35vw,420px); height: clamp(220px,35vw,420px); margin: 0 auto; }
.k17lw svg.main { width: 100%; height: 100%; overflow: visible; }
.k17lw .ring-outer { transform-origin: 350px 350px; opacity: 0; animation: k17rsi .18s cubic-bezier(0.22,1,0.36,1) 0s forwards; }
.k17lw .ring-dashed { transform-origin: 350px 350px; opacity: 0; animation: k17rsi .22s cubic-bezier(0.22,1,0.36,1) .05s forwards; }
@keyframes k17rsi  { 0% { opacity:0; transform:rotate(-270deg) scale(0.3) } 60% { opacity:1 } 100% { opacity:1; transform:rotate(0deg) scale(1) } }
@keyframes k17dp   { 0%,100% { opacity:.22 } 50% { opacity:.5 } }
.k17lw .handshake-group { animation: k17fl 1.8s ease-in-out infinite; transform-origin: 350px 490px; opacity: 0; }
@keyframes k17fl   { 0%,100% { transform:translateY(0) } 50% { transform:translateY(-18px) } }
@keyframes k17gb   { 0%,100% { filter:drop-shadow(0 0 1px rgba(240,208,80,.15)) drop-shadow(0 0 3px rgba(200,160,32,.1)) } 50% { filter:drop-shadow(0 0 3px rgba(245,224,112,.3)) drop-shadow(0 0 7px rgba(200,160,32,.15)) } }
@keyframes k17sh   { 0%,100% { opacity:.78; filter:drop-shadow(0 0 1px rgba(200,160,32,.3)) } 50% { opacity:1; filter:drop-shadow(0 0 5px rgba(245,224,112,.6)) } }
.k17lw .arc-top-group    { transform-origin: 350px 350px; opacity: 0; }
.k17lw .arc-bottom-group { transform-origin: 350px 350px; opacity: 0; }
@keyframes k17ari  { 0% { opacity:0; transform:rotate(-180deg) } 60% { opacity:1 } 100% { opacity:1; transform:rotate(0deg) } }
@keyframes k17arir { 0% { opacity:0; transform:rotate(180deg) } 60% { opacity:1 } 100% { opacity:1; transform:rotate(0deg) } }
@keyframes k17fo   { 0% { transform:rotate(0deg) } 100% { transform:rotate(360deg) } }

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.k17-marquee { width: 100%; overflow: hidden; padding: 2.5rem 0; border-top: 1px solid rgba(197,160,89,0.15); border-bottom: 1px solid rgba(197,160,89,0.15); }
.marquee-content { display: inline-block; animation: marquee 30s linear infinite; font-family: 'Roboto Slab', serif; font-size: clamp(1.2rem,3vw,1.8rem); font-weight: 700; color: rgba(197,160,89,0.3); text-transform: uppercase; letter-spacing: 0.2em; white-space: nowrap; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1400px) {
    .hero-container, .mission-container, .about-container,
    .features-container, .event-container, .teaser-container,
    .social-proof-container { padding: 0 40px; }
}

@media (max-width: 1200px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .event-grid { grid-template-columns: 1fr; gap: 50px; }
    .home-video-col { max-width: 460px; }

}

@media (max-width: 1024px) {
    .mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .tier-teaser-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .tier-teaser-featured { order: -1; }
}

@media (max-width: 768px) {
    :root { --header-h: 70px; }

    .hero-section { padding: calc(var(--header-h) + 40px) 0 60px; min-height: auto; }
    .hero-container, .mission-container, .about-container,
    .features-container, .event-container, .teaser-container,
    .social-proof-container,
    .logo-section-inner { padding: 0 24px; }

    .hero-container { gap: 40px; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
    .stat-card { flex: 1 1 calc(50% - 0.5rem); min-width: 130px; }
    .stat-card:nth-child(3) { flex: 1 1 100%; }

    /* Kill hover transforms on touch devices */
    .stat-card:hover { transform: none; }
    .forwhom-item:hover { transform: none; }

    .hero-cta { flex-direction: column; gap: 1rem; }
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary { width: 100%; justify-content: center; }
    .mission-stat-row { flex-direction: row; gap: 1rem; }
    .features-grid { grid-template-columns: 1fr; }
    .event-cta { flex-direction: column; }
    .event-cta .btn-primary,
    .event-cta .btn-secondary { width: 100%; justify-content: center; }
    .home-video-col { max-width: 100%; }
    .home-video-wrapper { border-radius: 20px; }
    .home-video-player { border-radius: 20px; }
    .bg-k17-text { font-size: 35vw; }


}

@media (max-width: 576px) {
    :root { --header-h: 64px; }

    .hero-section { padding: calc(var(--header-h) + 32px) 0 50px; }
    .hero-container, .mission-container, .about-container,
    .features-container, .event-container, .teaser-container,
    .social-proof-container,
    .logo-section-inner { padding: 0 16px; }
    .eyebrow-tech { font-size: 10px; margin-bottom: 1.5rem; }
    .stat-card { padding: 1.4rem; }
    .mission-quote { padding: 2rem; }
    .mission-stat-row { gap: 0.8rem; }
    .mission-mini-stat { padding: 1rem; }
    .home-unmute-btn { padding: 8px 14px 8px 10px; font-size: 0.75rem; }
    .home-video-wrapper { border-radius: 14px; }
    .home-video-player { border-radius: 14px; }
    .playfair-italic { margin-left: 0; }
    .mission-quote blockquote { padding-left: 1.2rem; border-left-width: 2px; }
    .feature-card { padding: 2rem 1.5rem; }
    .forwhom-item { padding: 1rem; }
    .bg-k17-text { font-size: 40vw; }

}

@media (max-width: 480px) {
    :root { --header-h: 60px; }
    .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 0.88rem; }
    .stat-card { flex: 1 1 100%; }
    .bg-k17-text { font-size: 45vw; }
    .home-video-wrapper { max-height: 70vh; aspect-ratio: unset; }
    .home-video-player { height: 100%; }
}

@media (max-width: 375px) {
    :root { --header-h: 56px; }
    .hero-container, .mission-container, .about-container,
    .features-container, .event-container, .teaser-container,
    .social-proof-container,
    .logo-section-inner { padding: 0 14px; }
}

/* Landscape phones */
@media (max-width: 900px) and (orientation: landscape) {
    .hero-section { min-height: auto; padding: calc(var(--header-h) + 20px) 0 40px; }
    .main-line { font-size: clamp(2rem, 8vw, 4rem); }
    .hero-stats { flex-direction: row; }
    .home-video-wrapper { max-height: 80vh; aspect-ratio: unset; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .marquee-content { animation: none; }
}