/* ===================================================================
   CHRIS BEYELER — Personal Website
   Design: Premium Speaker Website — Dark, Bold, Confident
   BEYONDER Colors: Orange primary accent, rest sparsam
   =================================================================== */

/* ===== LOCAL FONTS (DSGVO-konform) ===== */
/* Inter — Body Font */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'),
         url('../fonts/inter-v20-latin-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-500.woff2') format('woff2'),
         url('../fonts/inter-v20-latin-500.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-600.woff2') format('woff2'),
         url('../fonts/inter-v20-latin-600.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-700.woff2') format('woff2'),
         url('../fonts/inter-v20-latin-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-800.woff2') format('woff2'),
         url('../fonts/inter-v20-latin-800.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-900.woff2') format('woff2'),
         url('../fonts/inter-v20-latin-900.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Lexend — Impact Display Font */
@font-face {
    font-family: 'Lexend';
    src: url('../fonts/lexend-v26-latin-700.woff2') format('woff2'),
         url('../fonts/lexend-v26-latin-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lexend';
    src: url('../fonts/lexend-v26-latin-900.woff2') format('woff2'),
         url('../fonts/lexend-v26-latin-900.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Montserrat — Headline Font (markanter) */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2'),
         url('../fonts/montserrat-v31-latin-600.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2'),
         url('../fonts/montserrat-v31-latin-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* BEYONDER Colors */
    --orange:          #FF9220;
    --orange-dim:      rgba(255, 146, 32, 0.12);
    --gold:            #FCC001;
    --midnight:        #101E35;
    --sky:             #46BFED;
    --aqua:            #33D099;
    --pink:            #E33A74;

    /* Dark Mode Base */
    --bg-primary:      #080C16;
    --bg-secondary:    #0C1220;
    --bg-elevated:     #121A2E;
    --bg-card:         #162040;

    /* Gradients */
    --grad-warm:       linear-gradient(135deg, #FF9220 0%, #E33A74 100%);
    --grad-hero:       linear-gradient(160deg, #080C16 0%, #0E1628 50%, #101E35 100%);
    --grad-section:    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);

    /* Text — Erhoehter Kontrast */
    --text-primary:    #FFFFFF;
    --text-secondary:  #C0C0C0;
    --text-tertiary:   #808898;

    /* Glass */
    --glass-bg:        rgba(255, 255, 255, 0.04);
    --glass-bg-hover:  rgba(255, 255, 255, 0.08);
    --glass-border:    rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 146, 32, 0.3);

    /* Typography */
    --font-heading:    'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(100px, 14vh, 160px);
    --container-width: 1200px;
    --container-narrow: 800px;

    /* Transitions */
    --ease-out:        cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease-out); }
a:hover { color: var(--orange); }
::selection { background: rgba(255, 146, 32, 0.3); color: var(--text-primary); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
[id] { scroll-margin-top: 100px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
h4 { font-size: clamp(1rem, 1.4vw, 1.15rem); }

/* ===== LAYOUT ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 56px);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section__title {
    text-align: center;
    margin-bottom: 0.6em;
    position: relative;
    letter-spacing: -0.03em;
}

.section__title--left { text-align: left; }

.section__subtitle {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin-bottom: 4rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Accent */
.accent { color: var(--orange); }

/* Section separators */
.keynotes::after, .media::after, .essay::after,
.about::after, .podcast::after, .contact::after,
.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(60%, 400px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    pointer-events: none;
}
.keynotes, .media, .essay, .about, .podcast, .contact, .testimonials-section {
    border-top: none;
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.25rem;
    transition: all 0.5s var(--ease-out);
}
.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 38px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    border: none;
    position: relative;
    overflow: hidden;
}
.btn--primary {
    background: var(--orange);
    color: var(--midnight);
    box-shadow: 0 4px 24px rgba(255, 146, 32, 0.3);
}
.btn--primary:hover {
    color: var(--midnight);
    background: #ffa040;
    box-shadow: 0 8px 44px rgba(255, 146, 32, 0.5);
    transform: translateY(-2px);
}
.btn--secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn--secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 146, 32, 0.06);
}
.btn--small {
    padding: 10px 20px;
    font-size: 0.82rem;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
}
.btn--small:hover { border-color: var(--orange); color: var(--orange); }
.btn--full { width: 100%; }
.btn--lg { padding: 20px 48px; font-size: 1rem; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: all 0.4s var(--ease-out);
}
.nav--scrolled {
    background: rgba(8, 12, 22, 0.94);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 0;
}
.nav__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.nav__logo:hover { color: var(--orange); }

.nav__links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav__links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}
.nav__links a:hover { color: var(--text-primary); }
.nav__cta {
    color: var(--orange) !important;
    border: 1px solid rgba(255, 146, 32, 0.4);
    padding: 9px 24px;
    border-radius: 12px;
    font-weight: 600 !important;
}
.nav__cta:hover { background: rgba(255, 146, 32, 0.1); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-out);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.3;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(0deg,
            var(--bg-primary) 0%,
            rgba(8, 12, 22, 0.92) 20%,
            rgba(8, 12, 22, 0.55) 45%,
            rgba(8, 12, 22, 0.3) 65%,
            rgba(8, 12, 22, 0.5) 100%);
}

.hero__content {
    position: relative;
    z-index: 3;
    padding-bottom: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 65vh;
    padding-bottom: 7rem;
}

/* ===== STAGE HEADLINE ===== */
.hero__stage {
    margin-bottom: 2.5rem;
}
.hero__stage-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--orange);
    margin-bottom: 1.75rem;
    opacity: 0;
}
.hero__stage-headline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    opacity: 0;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.hero__stage-headline em {
    font-style: normal;
    color: var(--orange);
}
.hero__stage-sub {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.06em;
    opacity: 0;
}

.hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
}

.hero__bottom {
    position: relative;
    z-index: 3;
    background: rgba(8, 12, 22, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.75rem 0;
    margin-top: 2.5rem;
}
.hero__trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    opacity: 0;
}
.hero__trust-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 56px;
}
.hero__trust-num-wrap {
    white-space: nowrap;
}
.hero__trust-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: var(--text-primary);
    line-height: 1;
}
.hero__trust-plus {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: var(--orange);
}
.hero__trust-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-tertiary);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ===== HERO GLITCH + SPOTLIGHT ===== */
.hero-glitch { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0; transition: opacity 0.3s; }
.hero-glitch.active { opacity: 0.8; }
.hero-scanlines { position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(0,200,140,0.01) 3px, rgba(0,200,140,0.01) 4px);
    opacity: 0; transition: opacity 1.5s; }
.hero-scanlines.visible { opacity: 0.5; }
.hero-spotlight { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0; transition: opacity 0.5s; }
.hero-spotlight.active { opacity: 1; }

/* ===== HERO VERB TYPEWRITER ===== */
.hero-verb { display: inline; }
.hero-verb__cursor { display: inline-block; width: 3px; height: 0.85em; background: var(--orange); margin-left: 2px; vertical-align: baseline; animation: hero-cursor-blink 0.7s steps(1) infinite; }
@keyframes hero-cursor-blink { 0%,50% { opacity: 1; } 51%,100% { opacity: 0; } }
.hero__stage-headline.glitching { animation: headline-glitch 0.3s steps(2) forwards; }
@keyframes headline-glitch {
    0% { text-shadow: 2px 0 #ff0040, -2px 0 #00ffaa; transform: translateX(0); }
    25% { text-shadow: -3px 0 #00ffaa, 3px 0 #ff0040; transform: translateX(-2px); }
    50% { text-shadow: 2px 0 #ff0040, -1px 0 #00ffaa; transform: translateX(1px); }
    75% { text-shadow: -1px 0 #00ffaa, 2px 0 #ff0040; transform: translateX(-1px); }
    100% { text-shadow: none; transform: translateX(0); }
}

/* ===== HERO CHAT BUBBLES ===== */
.hero-bubble {
    position: absolute; z-index: 5;
    display: flex; align-items: center; gap: 12px;
    padding: 10px 20px 10px 14px;
    background: rgba(8,12,22,0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,146,32,0.15); border-radius: 24px;
    opacity: 0.55; cursor: pointer; pointer-events: auto;
    transition: opacity 0.5s, transform 0.6s cubic-bezier(0.23,1,0.32,1), border-color 0.4s, box-shadow 0.4s;
}
.hero-bubble:hover, .hero-bubble.active { opacity: 1; border-color: rgba(255,146,32,0.4); box-shadow: 0 0 28px rgba(255,146,32,0.12); }
.hero-bubble__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); flex-shrink: 0; position: relative; box-shadow: 0 0 8px rgba(255,146,32,0.5); }
.hero-bubble__dot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1.5px solid var(--orange); opacity: 0; animation: hero-dot-pulse 2.5s ease-out infinite; }
.hero-bubble:nth-child(2) .hero-bubble__dot::after { animation-delay: 0.7s; }
.hero-bubble:nth-child(3) .hero-bubble__dot::after { animation-delay: 1.4s; }
.hero-bubble:nth-child(4) .hero-bubble__dot::after { animation-delay: 2.1s; }
@keyframes hero-dot-pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(2.8); opacity: 0; } }
.hero-bubble__content { display: flex; flex-direction: column; gap: 2px; }
.hero-bubble__value { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: #fff; }
.hero-bubble__label { font-family: var(--font-heading); font-size: 0.68rem; font-weight: 500; color: var(--text-tertiary); }
.hero-bubble--f1 { animation: hero-bf1 7s ease-in-out infinite; }
.hero-bubble--f2 { animation: hero-bf2 8s ease-in-out infinite; }
.hero-bubble--f3 { animation: hero-bf3 6.5s ease-in-out infinite; }
.hero-bubble--f4 { animation: hero-bf4 7.5s ease-in-out infinite; }
@keyframes hero-bf1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(5px,-7px); } }
@keyframes hero-bf2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-7px,4px); } }
@keyframes hero-bf3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(4px,6px); } }
@keyframes hero-bf4 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-5px,-5px); } }
@keyframes hero-invite-blink {
    0%,100% { border-color: rgba(255,146,32,0.15); opacity: 0.55; }
    50% { border-color: rgba(255,146,32,0.45); opacity: 0.85; box-shadow: 0 0 24px rgba(255,146,32,0.15); }
}
.hero-bubble--invite { animation: hero-invite-blink 1.8s ease-in-out 3 forwards, hero-bf2 8s ease-in-out infinite; }

/* ===== HERO ASK INPUT ===== */
.hero-ask {
    margin-top: 2.5rem;
    display: flex; align-items: center;
    max-width: 560px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,146,32,0.25);
    border-radius: 32px;
    padding: 6px 7px 6px 24px;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    animation: hero-ask-pulse 2.5s ease-in-out infinite;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 0 20px rgba(255,146,32,0.06);
}
@keyframes hero-ask-pulse {
    0%,100% { border-color: rgba(255,146,32,0.25); box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 0 20px rgba(255,146,32,0.06); }
    50% { border-color: rgba(255,146,32,0.5); box-shadow: 0 4px 32px rgba(0,0,0,0.3), 0 0 40px rgba(255,146,32,0.15), 0 0 0 1px rgba(255,146,32,0.12); }
}
.hero-ask:focus-within {
    animation: none;
    border-color: rgba(255,146,32,0.6);
    box-shadow: 0 4px 32px rgba(0,0,0,0.3), 0 0 48px rgba(255,146,32,0.18), 0 0 0 2px rgba(255,146,32,0.15);
    background: rgba(255,255,255,0.14);
}
.hero-ask__wrapper { flex: 1; position: relative; display: flex; align-items: center; }
.hero-ask__input {
    flex: 1; background: none; border: none; outline: none;
    font-family: 'Inter', var(--font-body); font-size: 1.05rem; color: #fff;
    padding: 16px 0; caret-color: var(--orange); width: 100%;
}
.hero-ask__input::placeholder { color: rgba(255,255,255,0.5); }
.hero-ask__send {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--orange); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s; flex-shrink: 0;
}
.hero-ask__send:hover { transform: scale(1.06); box-shadow: 0 4px 20px rgba(255,146,32,0.4); }
.hero-ask__send svg { width: 18px; height: 18px; fill: #fff; }

/* Smaller CTAs when ask input is present */
.hero__ctas--small { margin-top: 1.5rem; opacity: 0.6; }
.hero__ctas--small .btn { font-size: 0.75rem; padding: 0.55rem 1.2rem; }

/* ===== HERO MINI-CHAT ===== */
.hero-chat {
    position: absolute; z-index: 10; width: 380px; max-height: 320px;
    background: rgba(14,18,32,0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
    overflow: hidden; display: none; flex-direction: column;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    transform: scale(0.95); opacity: 0;
    transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), opacity 0.3s;
}
.hero-chat.active { display: flex; transform: scale(1); opacity: 1; }
.hero-chat__header { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hero-chat__avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--orange); color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 0.6rem; display: flex; align-items: center; justify-content: center; }
.hero-chat__name { font-family: var(--font-heading); font-weight: 600; font-size: 0.82rem; color: #fff; flex: 1; }
.hero-chat__close { background: none; border: none; color: var(--text-tertiary); font-size: 1.2rem; cursor: pointer; padding: 2px 6px; }
.hero-chat__close:hover { color: #fff; }
.hero-chat__messages { padding: 14px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.hero-chat__msg { font-family: 'Inter', var(--font-body); font-size: 0.82rem; line-height: 1.55; padding: 10px 14px; border-radius: 14px; max-width: 92%; }
.hero-chat__msg--user { background: rgba(255,146,32,0.12); color: var(--orange); align-self: flex-end; border-bottom-right-radius: 4px; }
.hero-chat__msg--bot { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); align-self: flex-start; border-bottom-left-radius: 4px; }
.hero-chat__msg--bot.typing::after { content: '|'; animation: hero-cursor-blink 0.6s steps(1) infinite; color: var(--orange); margin-left: 1px; }
.hero-chat__typing { display: flex; gap: 4px; padding: 12px 16px; align-self: flex-start; }
.hero-chat__typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-tertiary); animation: hero-tdot 1.2s ease-in-out infinite; }
.hero-chat__typing span:nth-child(2) { animation-delay: 0.15s; }
.hero-chat__typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes hero-tdot { 0%,60%,100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }
.hero-chat__cta { padding: 10px 14px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.hero-chat__cta a { font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600; color: var(--orange); text-decoration: none; }
.hero-chat__cta a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    /* Hero layout */
    .hero__content { padding-bottom: 4rem; min-height: 55vh; }
    .hero__stage { margin-bottom: 1.5rem; }

    /* Headline: kleiner, Verb darf nicht umbrechen */
    .hero__stage-headline { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
    .hero__stage-headline em { white-space: nowrap; }
    .hero__stage-sub { font-size: 0.75rem; letter-spacing: 0.04em; }

    /* Bubbles und Desktop-Effekte ausblenden */
    .hero-bubble { display: none; }
    .hero-glitch, .hero-spotlight { display: none; }
    .hero-scanlines { display: none; }
    .hero__bg img { object-position: center 40%; }

    /* Chat-Input: volle Breite, grössere Touch-Targets */
    .hero-ask {
        max-width: 100%;
        padding: 5px 5px 5px 18px;
        border-radius: 28px;
    }
    .hero-ask__input {
        font-size: 0.95rem;
        padding: 14px 0;
    }
    .hero-ask__send {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }
    .hero-ask__send svg { width: 20px; height: 20px; }

    /* CTAs: nebeneinander, kompakt */
    .hero__ctas { flex-direction: row; gap: 0.75rem; }
    .hero__ctas .btn { text-align: center; flex: 1; min-width: 0; }
    .hero__ctas--small { margin-top: 1.25rem; }
    .hero__ctas--small .btn {
        font-size: 0.72rem;
        padding: 0.5rem 0.8rem;
    }

    /* Mini-Chat: volle Breite, fixiert relativ zum Hero */
    .hero-chat {
        width: calc(100% - 32px) !important;
        max-width: none;
        left: 16px !important;
        right: 16px;
        max-height: 60vh;
        border-radius: 14px;
    }
    .hero-chat__messages { padding: 12px; }
    .hero-chat__msg { font-size: 0.8rem; padding: 9px 12px; max-width: 95%; }

    /* Trust-Bar */
    .hero__trust { flex-wrap: wrap; justify-content: center; gap: 1.25rem 0.75rem; }
    .hero__trust-item { flex: 0 0 45%; }
    .hero__trust-label { font-size: 0.65rem; }
    .hero__bottom { padding: 1.25rem 0; margin-top: 1.5rem; }
}

/* Zusätzliche Breakpoints für sehr kleine Screens */
@media (max-width: 380px) {
    .hero__stage-headline { font-size: clamp(1.4rem, 5vw, 1.8rem); }
    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { flex: none; width: 100%; }
    .hero-ask { padding: 4px 4px 4px 14px; }
    .hero-ask__input { font-size: 0.88rem; }
    .hero__trust-item { flex: 0 0 48%; }
}

/* ===== KEYNOTES ===== */
.keynotes {
    background: var(--bg-secondary);
    position: relative;
}

.keynotes__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}
@media (min-width: 1024px) {
    .keynotes__grid { grid-template-columns: repeat(4, 1fr); }
}

.keynote-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 0;
    transition: all 0.4s var(--ease-out);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}
.keynote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-warm);
    border-radius: 18px 18px 0 0;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}
.keynote-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}
.keynote-card:hover::before { opacity: 1; }
.keynote-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.keynote-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s var(--ease-out);
}
.keynote-card:hover .keynote-card__image img {
    transform: scale(1.06);
}
.keynote-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
    pointer-events: none;
}
.keynote-card__body {
    padding: 1.75rem;
}

.keynote-card__icon {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 1rem;
    opacity: 0.2;
    line-height: 1;
}
.keynote-card__title {
    margin-bottom: 0.85rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}
.keynote-card__desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}
.keynote-card__meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.78rem;
}
.keynote-card__format {
    color: var(--orange);
    font-weight: 600;
}
.keynote-card__duration {
    color: var(--text-tertiary);
}
.keynote-card__tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag {
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    font-size: 0.68rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* Formats */
.keynotes__formats { margin-bottom: 4rem; }
.keynotes__formats-title {
    text-align: center;
    color: var(--text-tertiary);
    margin-bottom: 1.75rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}
.keynotes__formats-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.format-item { text-align: center; padding: 1.25rem; min-width: 120px; }
.format-item__icon { font-size: 1.3rem; color: var(--text-tertiary); margin-bottom: 0.6rem; opacity: 0.5; }
.format-item span { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.25rem; }
.format-item small { color: var(--text-tertiary); font-size: 0.78rem; }

/* Stage Photo Gallery */
.keynotes__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}
@media (min-width: 1024px) {
    .keynotes__gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .keynotes__gallery { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 480px) {
    .keynotes__gallery { grid-template-columns: 1fr; }
}
.keynotes__gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    transition: all 0.5s var(--ease-out);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.keynotes__gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 146, 32, 0.2);
}
.keynotes__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s var(--ease-out);
}
.keynotes__gallery-item:hover img { transform: scale(1.05); }
.keynotes__gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(8, 12, 22, 0.95) 0%, transparent 100%);
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Logo Row (for events and media) */
.logos-row { overflow: hidden; padding: 1.25rem 0; }
.logos-row__track {
    display: flex;
    gap: 3rem;
    animation: logo-scroll 40s linear infinite;
    white-space: nowrap;
    align-items: center;
}
.logos-row__track--media {
    animation-duration: 50s;
}
.logo-item {
    height: 36px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.3s;
    filter: grayscale(0);
}
.logo-item:hover { opacity: 0.85; }
.logo-item--media {
    height: 32px;
}
@keyframes logo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.keynotes__stages { margin-bottom: 3rem; }
.keynotes__stages-label {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.keynotes__cta { text-align: center; margin-top: 1rem; }

/* ===== ABOUT ===== */
.about { background: var(--bg-primary); position: relative; overflow: hidden; }
.about__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 5rem;
}
.about__image-frame {
    border-radius: 22px;
    overflow: hidden;
    position: sticky;
    top: 100px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.about__image-frame img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center 15%;
}
.about__bio-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}
.about__bio p {
    color: var(--text-secondary);
    margin-bottom: 1.15rem;
    font-size: 1rem;
    line-height: 1.8;
}

/* Timeline */
.about__timeline {
    margin-top: 3rem;
    position: relative;
    padding-left: 2.25rem;
}
.about__timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), rgba(255, 146, 32, 0.1));
    border-radius: 2px;
}
.timeline__item {
    position: relative;
    padding-bottom: 1.5rem;
    padding-left: 1.25rem;
}
.timeline__dot {
    position: absolute;
    left: -2.25rem;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 146, 32, 0.4);
    background: var(--bg-primary);
    transition: all 0.3s;
}
.timeline__item--active .timeline__dot {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 20px rgba(255, 146, 32, 0.5);
}
.timeline__year {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--orange);
    margin-right: 0.75rem;
    font-size: 0.92rem;
}
.timeline__text { color: var(--text-secondary); font-size: 0.92rem; }

/* Counters */
.about__counters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
    .about__counters { grid-template-columns: repeat(4, 1fr); }
}
.counter {
    text-align: center;
    padding: 2.25rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    transition: all 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.counter:hover {
    border-color: rgba(255, 146, 32, 0.2);
    background: var(--glass-bg-hover);
}
.counter__num-wrap {
    white-space: nowrap;
}
.counter__number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    color: var(--text-primary);
    line-height: 1;
}
.counter__plus {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    color: var(--orange);
}
.counter__label {
    display: block;
    color: var(--text-tertiary);
    font-size: 0.82rem;
    margin-top: 0.6rem;
    font-weight: 500;
}

/* Roles */
.about__roles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .about__roles { grid-template-columns: repeat(4, 1fr); }
}
.role-card {
    text-align: center;
    padding: 2rem 1.25rem;
}
.role-card__logo { height: 28px; width: auto; margin: 0 auto 1rem; opacity: 0.8; }
.role-card__logo--rounded { border-radius: 6px; }
.role-card h4 { color: var(--text-primary); margin-bottom: 0.4rem; font-size: 0.95rem; }
.role-card p { color: var(--text-secondary); font-size: 0.88rem; }
.role-card small { color: var(--text-tertiary); font-size: 0.78rem; margin-top: 0.4rem; display: block; }
.role-card--highlight { border-color: rgba(255, 146, 32, 0.15); }
.role-card--highlight h4 { color: var(--orange); }
.role-card--highlight small { color: var(--orange); opacity: 0.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--bg-secondary);
    position: relative;
}

/* Rating badges */
.testimonials__ratings {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.testimonials__rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.testimonials__rating-stars {
    color: var(--orange);
    font-size: 0.88rem;
    letter-spacing: 1px;
}
.testimonials__rating-score {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}
.testimonials__rating-source {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    font-weight: 500;
}
@media (max-width: 480px) {
    .testimonials__ratings { flex-direction: column; align-items: center; gap: 1rem; }
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
    padding: 2.5rem;
}
.testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.25rem;
}
.testimonial__stars span {
    color: var(--orange);
    font-size: 1.1rem;
}
.testimonial__quote {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    border: none;
    padding: 0;
}
.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.testimonial__name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
}
.testimonial__source {
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== MEDIA ===== */
.media { background: var(--bg-primary); position: relative; }

.media__logos { margin-bottom: 4rem; }

/* Quotes */
.media__quotes { max-width: 800px; margin: 0 auto 4rem; }
.quote { text-align: center; padding: 3rem 2.5rem; }
.quote__text {
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-primary);
    font-style: italic;
}
.quote__source {
    display: block;
    margin-top: 1.75rem;
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.swiper-pagination-bullet { background: var(--text-tertiary); opacity: 0.2; width: 6px; height: 6px; }
.swiper-pagination-bullet-active { background: var(--orange); opacity: 1; width: 28px; border-radius: 3px; }

/* Articles */
.media__articles, .media__guest-podcasts { margin-bottom: 4rem; }
.media__articles-title {
    text-align: center;
    color: var(--text-tertiary);
    margin-bottom: 2rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}
.articles__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .articles__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Video Cards — Keynotes & Vorträge */
.media__videos { margin-bottom: 4rem; }
.videos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .videos__grid { grid-template-columns: repeat(3, 1fr); }
}
.video-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
}
.video-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--glass-border);
}
.video-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}
.video-card:hover .video-card__img img {
    transform: scale(1.04);
}
.video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    transition: background 0.3s ease;
}
.video-card:hover .video-card__play {
    background: rgba(255, 107, 0, 0.5);
}
.video-card__play svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.video-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.video-card__event {
    font-size: 0.72rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}
.video-card__title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
}
.article-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
}
.article-card__img {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--glass-border);
}
.article-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.5s var(--ease-out);
}
.article-card:hover .article-card__thumb {
    transform: scale(1.04);
}
.article-card__logo {
    height: 28px;
    width: auto;
    opacity: 0.5;
}
.article-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.article-card__source {
    font-size: 0.72rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}
.article-card__title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
}
.article-card__date { font-size: 0.78rem; color: var(--text-tertiary); }

/* Guest Podcasts — Cards with Cover Art */
.guest-podcasts__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .guest-podcasts__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .guest-podcasts__grid { grid-template-columns: repeat(5, 1fr); }
}
.guest-podcast-card {
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
}
.guest-podcast-card__img {
    aspect-ratio: 1;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}
.guest-podcast-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}
.guest-podcast-card:hover .guest-podcast-card__img img {
    transform: scale(1.06);
}
.guest-podcast-card__body {
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.guest-podcast-card__name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.88rem;
}
.guest-podcast-card__topic {
    color: var(--text-tertiary);
    font-size: 0.78rem;
    line-height: 1.4;
}

/* Presskit */
.media__presskit {
    max-width: 580px;
    margin: 0 auto 4rem;
    text-align: center;
}
.media__presskit h3 { color: var(--text-primary); margin-bottom: 0.6rem; }
.media__presskit p { color: var(--text-secondary); margin-bottom: 1.25rem; font-size: 0.95rem; }
.media__presskit-links { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.25rem; }
.media__presskit-topics {
    margin-bottom: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
}
.media__presskit-topics-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 0.5rem;
}
.media__presskit-topics p:last-child {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.media__presskit-contact { font-size: 0.85rem; color: var(--text-tertiary); }
.media__presskit-contact a { color: var(--orange); }

/* ===== PODCAST ===== */
.podcast { background: var(--bg-secondary); position: relative; }
.podcast__hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}
@media (max-width: 768px) {
    .podcast__hero { grid-template-columns: 1fr; gap: 2.5rem; }
}
.podcast__visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.podcast__cover {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.podcast__host-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.5;
}
.podcast__stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.podcast__stat {
    text-align: left;
}
.podcast__stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--text-primary);
    line-height: 1;
}
.podcast__stat-label { display: block; color: var(--text-tertiary); font-size: 0.78rem; margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500; }
.podcast__embed { max-width: 700px; margin: 0 auto 3rem; border-radius: 14px; overflow: hidden; }
.podcast__platforms { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.podcast__platform {
    color: var(--text-tertiary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s;
}
.podcast__platform:hover { border-color: var(--orange); color: var(--orange); }
.podcast__platform--primary {
    background: var(--orange);
    color: var(--midnight);
    border-color: var(--orange);
}
.podcast__platform--primary:hover { background: #ffa040; color: var(--midnight); }

/* Podcast Story */
.podcast__story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}
@media (max-width: 768px) {
    .podcast__story { grid-template-columns: 1fr; gap: 2rem; }
}
.podcast__story h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}
.podcast__story-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}
.podcast__topic-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.podcast__topic {
    padding: 1.25rem 1.5rem;
}
.podcast__topic h4 {
    color: var(--orange);
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
}
.podcast__topic p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Podcast Why */
.podcast__why {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.podcast__why h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.podcast__why p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== ESSAY ===== */
.essay { background: var(--bg-primary); position: relative; }
.essay__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 768px) {
    .essay__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.essay__lead {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
}
.essay__text p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
}
.essay__cta { margin-top: 2rem; }
.essay__visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 120px;
}
.essay__image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center 15%;
}

/* ===== CONTACT ===== */
.contact { background: var(--bg-secondary); position: relative; }
.contact__form { max-width: 600px; margin: 0 auto; display: none; }
.contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-tertiary);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 146, 32, 0.1);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}
.form-group select option { background: var(--bg-elevated); }
.form-group textarea { resize: vertical; }
.contact .contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .contact .contact__grid { grid-template-columns: 1fr; max-width: 400px; }
}
a.contact__card.glass-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.75rem;
    gap: 0.6rem;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
a.contact__card.glass-card:hover {
    color: inherit;
    transform: translateY(-3px);
}
.contact__card-icon {
    font-size: 1.4rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 146, 32, 0.1);
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
}
.contact__card h3 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin: 0;
}
.contact__card p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin: 0;
}
.contact__card-link {
    font-size: 0.82rem;
    color: var(--orange);
    font-weight: 600;
    margin-top: auto;
    padding-top: 0.5rem;
}
.contact__alt { display: none; }

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__grid {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer__name { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.footer__tagline { color: var(--text-tertiary); font-size: 0.82rem; margin-top: 0.3rem; }
.footer__links { display: flex; gap: 1.75rem; }
.footer__links a { color: var(--text-tertiary); font-size: 0.88rem; transition: color 0.3s; }
.footer__links a:hover { color: var(--orange); }
.footer__legal { display: flex; gap: 1.75rem; }
.footer__legal a { color: var(--text-tertiary); font-size: 0.82rem; }
.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.footer__bottom p { color: var(--text-tertiary); font-size: 0.75rem; letter-spacing: 0.02em; }

/* ===== CHATBOT ===== */
.chatbot { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.chatbot__trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 100px;
    background: var(--orange);
    border: none;
    cursor: pointer;
    color: var(--midnight);
    box-shadow: 0 6px 28px rgba(255, 146, 32, 0.4);
    transition: all 0.3s var(--ease-out);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
}
.chatbot__trigger-text {
    font-size: 0.88rem;
    font-weight: 600;
}
.chatbot__trigger:hover { transform: scale(1.04); box-shadow: 0 10px 40px rgba(255, 146, 32, 0.5); }
.chatbot__window {
    display: none;
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 400px;
    max-height: 520px;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.55);
    flex-direction: column;
}
.chatbot__window.active { display: flex; }
.chatbot__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 146, 32, 0.05);
    border-bottom: 1px solid var(--glass-border);
}
.chatbot__header-info { display: flex; align-items: center; gap: 12px; }
.chatbot__avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
}
.chatbot__name { font-weight: 600; font-size: 0.92rem; }
.chatbot__status { font-size: 0.72rem; color: var(--aqua); }
.chatbot__close { background: none; border: none; color: var(--text-tertiary); font-size: 1.4rem; cursor: pointer; padding: 4px; }
.chatbot__messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 340px;
}
.chatbot__messages::-webkit-scrollbar { width: 3px; }
.chatbot__messages::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 3px; }
.chatbot__message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.55;
}
.chatbot__message--bot {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.chatbot__message--user {
    background: rgba(255, 146, 32, 0.12);
    border: 1px solid rgba(255, 146, 32, 0.15);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.chatbot__quickreplies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 4px;
}
.chatbot__quickreply {
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.chatbot__quickreply:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 146, 32, 0.06);
}
.chatbot__input {
    display: flex;
    padding: 12px 16px;
    border-top: 1px solid var(--glass-border);
    gap: 10px;
}
.chatbot__input input {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
}
.chatbot__input input:focus { border-color: var(--orange); }
.chatbot__input button {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--orange);
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(8, 12, 22, 0.97);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        flex-direction: column;
        padding: 1.75rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav__links.active { display: flex; }
    .nav__toggle { display: flex; }

    .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about__image-frame { position: static; max-width: 320px; margin: 0 auto; }

    .contact__form-row { grid-template-columns: 1fr; }

    .chatbot__window { width: calc(100vw - 44px); right: -12px; }

    .footer__grid { flex-direction: column; text-align: center; }
    .footer__links, .footer__legal { justify-content: center; }

    .btn { min-height: 52px; padding: 16px 32px; }
    .keynotes__formats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }

    .articles__grid { grid-template-columns: 1fr; }
    .videos__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .keynotes__grid { grid-template-columns: 1fr; }
    .chatbot__trigger-text { display: none; }
    .chatbot__trigger { padding: 14px; border-radius: 16px; }
}
