/* ============================================
   BIOTOLD — Design System v5 "The Stage"
   Editorial · warm · photo-driven · human
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Accent — deep medical emerald-teal + warm amber */
    --accent: #0F766E;
    --accent-deep: #115E59;
    --accent-light: #14B8A6;
    --accent-soft: #E7F5F2;
    --amber: #C2703D;
    --amber-soft: #F6EBE1;

    /* Warm editorial surfaces */
    --bg: #FAF8F3;
    --bg-pure: #FFFFFF;
    --bg-soft: #F3F0E8;
    --bg-warm: #EFEAE0;
    --ink: #16181D;
    --ink-deep: #0B1F1C;

    --card: #FFFFFF;
    --card-border: #E6E1D6;
    --card-border-hover: #D2CABA;

    --text-primary: #1A1C20;
    --text-secondary: #4B4F57;
    --text-muted: #6B7079;
    --text-faint: #9A9FA8;
    --text-on-dark: #F5F2EC;
    --text-on-dark-soft: #B9BDB5;

    /* Type */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;

    --section-pad: 120px;
    --container: 1180px;
    --radius: 14px;
    --radius-sm: 10px;
    --radius-xs: 6px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-xs: 0 1px 2px rgba(26, 28, 32, 0.04);
    --shadow-sm: 0 2px 8px rgba(26, 28, 32, 0.06);
    --shadow: 0 6px 24px rgba(26, 28, 32, 0.08);
    --shadow-md: 0 16px 40px rgba(26, 28, 32, 0.10);
    --shadow-lg: 0 30px 70px rgba(26, 28, 32, 0.16);
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 88px; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-secondary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); }
::selection { background: var(--accent); color: #fff; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 32px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 22px 0; transition: all 0.4s var(--ease); }
.nav.scrolled {
    padding: 14px 0;
    background: rgba(250, 248, 243, 0.85);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border-bottom: 1px solid var(--card-border);
}
/* Hero is dark photo — nav starts light text, flips on scroll */
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 30px; width: auto; transition: opacity 0.3s var(--ease); }

/* logo swap: white on hero, dark on scroll */
.nav .nav-logo .logo-dark { display: none; }
.nav .nav-logo .logo-light { display: block; }
.nav.scrolled .nav-logo .logo-dark { display: block; }
.nav.scrolled .nav-logo .logo-light { display: none; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    font-size: 0.92rem; font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 9px 15px; border-radius: var(--radius-xs);
    transition: all 0.2s var(--ease); white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav.scrolled .nav-links a:hover { color: var(--text-primary); background: var(--bg-warm); }
.nav.scrolled .nav-links a.active { color: var(--accent); }
.nav-links a.active { color: #fff; }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta {
    font-size: 0.92rem; font-weight: 600; color: var(--ink);
    background: #fff; padding: 10px 22px; border-radius: var(--radius-xs);
    transition: all 0.2s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.nav.scrolled .nav-cta { background: var(--accent); color: #fff; }
.nav.scrolled .nav-cta:hover { background: var(--accent-deep); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s var(--ease); }
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* On inner pages (no hero photo) nav text is dark from the start */
body.inner-page .nav .nav-links a { color: var(--text-secondary); }
body.inner-page .nav .nav-links a:hover { color: var(--text-primary); background: var(--bg-warm); }
body.inner-page .nav .nav-links a.active { color: var(--accent); }
body.inner-page .nav .nav-logo .logo-dark { display: block; }
body.inner-page .nav .nav-logo .logo-light { display: none; }
body.inner-page .nav .nav-cta { background: var(--accent); color: #fff; }
body.inner-page .nav .nav-toggle span { background: var(--ink); }

/* ============================================
   BUTTONS
   ============================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font); font-weight: 600; border: none; cursor: pointer; transition: all 0.25s var(--ease); white-space: nowrap; text-align: center; }
.btn-lg { font-size: 1.0rem; padding: 16px 34px; border-radius: var(--radius-sm); }
.btn-md { font-size: 0.92rem; padding: 12px 26px; border-radius: var(--radius-xs); }
.btn-sm { font-size: 0.85rem; padding: 9px 18px; border-radius: var(--radius-xs); }

.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-secondary { background: var(--bg-pure); color: var(--text-primary); border: 1px solid var(--card-border); }
.btn-secondary:hover { border-color: var(--card-border-hover); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-ghost { background: transparent; color: var(--accent); padding-left: 8px; padding-right: 8px; }
.btn-ghost:hover { color: var(--accent-deep); }
.btn-ghost .arrow { transition: transform 0.25s var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn-full { width: 100%; }

/* Buttons on dark surfaces */
.section-dark .btn-secondary, .cta-banner .btn-secondary, .hero .btn-secondary, .photo-hero .btn-secondary {
    background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.25);
}
.section-dark .btn-secondary:hover, .cta-banner .btn-secondary:hover, .hero .btn-secondary:hover, .photo-hero .btn-secondary:hover {
    background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4);
}
.section-dark .btn-ghost { color: var(--accent-light); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--section-pad) 0; position: relative; }
.section-dark { background: var(--ink-deep); color: var(--text-on-dark-soft); }
.section-elevated { background: var(--bg-soft); }

.section-header { margin-bottom: 64px; max-width: 800px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.76rem; font-weight: 600;
    color: var(--accent);
    text-transform: uppercase; letter-spacing: 2.5px;
    margin-bottom: 22px;
}
.section-label::before { content: ''; width: 28px; height: 1.5px; background: var(--amber); }
.section-dark .section-label { color: var(--accent-light); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.12;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
}
.section-title-lg { font-size: clamp(2.4rem, 5.5vw, 4rem); }
.section-dark .section-title { color: #fff; }

.section-desc { font-size: 1.12rem; color: var(--text-secondary); line-height: 1.7; max-width: 620px; }
.section-header.center .section-desc { margin: 0 auto; }
.section-dark .section-desc { color: var(--text-on-dark-soft); }

/* ============================================
   PHOTO HERO
   ============================================ */
.photo-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.photo-hero-img { position: absolute; inset: 0; z-index: 0; }
.photo-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.photo-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 22, 20, 0.92) 0%, rgba(8, 22, 20, 0.78) 30%, rgba(8, 22, 20, 0.35) 60%, rgba(8, 22, 20, 0.15) 100%),
        linear-gradient(180deg, rgba(8, 22, 20, 0.6) 0%, rgba(8, 22, 20, 0.25) 40%, rgba(8, 22, 20, 0.55) 75%, rgba(8, 22, 20, 0.92) 100%);
}
.photo-hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: 96px; padding-top: 160px; }
/* readability: subtle text shadow on hero copy */
.hero-headline, .hero-sub { text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35); }
.hero-meta-value { text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4); }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 18px;
    font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.92);
    letter-spacing: 0.3px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.hero-eyebrow-item { display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.76rem; }
.hero-eyebrow-icon { width: 17px; height: 17px; color: var(--accent-light); flex-shrink: 0; }
.hero-eyebrow-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.3); }
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-light); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:0.35; } }

@media (max-width: 600px) {
    .hero-eyebrow { gap: 10px; }
    .hero-eyebrow-divider { display: none; }
    .hero-eyebrow-item { font-size: 0.7rem; }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 16ch;
}
.hero-headline em { font-style: italic; color: var(--accent-light); }
.hero-sub {
    font-size: 1.2rem; color: rgba(255,255,255,0.9); line-height: 1.6;
    margin-bottom: 38px; max-width: 580px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-actions .btn-primary { background: #fff; color: var(--ink); }
.hero-actions .btn-primary:hover { background: var(--accent-light); color: #fff; }

.hero-meta { display: flex; gap: 56px; flex-wrap: wrap; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.18); }
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-value { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: #fff; line-height: 1; }
.hero-meta-label { font-size: 0.76rem; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1.5px; }

/* ============================================
   COUNTDOWN
   ============================================ */
.countdown-bar { background: var(--ink); padding: 26px 0; }
.countdown-inner { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.countdown-label { font-size: 0.8rem; font-weight: 600; color: var(--text-on-dark-soft); text-transform: uppercase; letter-spacing: 2px; }
.countdown-units { display: flex; gap: 22px; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.countdown-number { font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; color: #fff; min-width: 52px; text-align: center; }
.countdown-text { font-size: 0.66rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.countdown-sep { font-family: var(--font-display); font-size: 1.9rem; color: rgba(255,255,255,0.25); align-self: flex-start; }

/* ============================================
   PULL QUOTE / MANIFESTO STRIP
   ============================================ */
.pull-quote {
    padding: 100px 0;
    text-align: center;
}
.pull-quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-primary);
    max-width: 18ch;
    margin: 0 auto;
    letter-spacing: -0.01em;
}
.pull-quote-text em { font-style: italic; color: var(--accent); }
.pull-quote-attribution { margin-top: 28px; font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.section-dark .pull-quote-text { color: #fff; }
.section-dark .pull-quote-text em { color: var(--accent-light); }

/* ============================================
   CARDS (generic)
   ============================================ */
.card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 34px; transition: all 0.3s var(--ease); }
.card:hover { border-color: var(--card-border-hover); transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon { width: 54px; height: 54px; border-radius: var(--radius-sm); background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 22px; }
.card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--text-primary); margin-bottom: 12px; }
.card p { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.65; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================
   STORY CARDS (tracks as magazine articles)
   ============================================ */
.track-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    transition: all 0.35s var(--ease);
    overflow: hidden;
}
.track-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--card-border-hover); }
.track-num {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 600;
    color: var(--amber);
    letter-spacing: 2px;
    margin-bottom: 18px;
    display: block;
}
.track-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--text-primary); margin-bottom: 14px; line-height: 1.2; }
.track-desc { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 22px; }
.track-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 0.76rem; font-weight: 500; color: var(--text-muted); background: var(--bg-soft); border: 1px solid var(--card-border); padding: 5px 13px; border-radius: 100px; }

/* ============================================
   SPEAKER CARDS — magazine portraits
   ============================================ */
.speaker-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s var(--ease);
    display: flex;
    flex-direction: column;
}
.speaker-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--card-border-hover); }
.speaker-portrait {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-warm);
    position: relative;
}
.speaker-portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.speaker-card:hover .speaker-portrait img { transform: scale(1.04); }
.speaker-body { padding: 24px 26px 28px; }
.speaker-body h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.speaker-role { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }
.speaker-talk { font-family: var(--font-display); font-style: italic; font-size: 1.0rem; color: var(--accent); line-height: 1.4; margin-bottom: 14px; }
.badge { display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 11px; border-radius: 100px; }
.badge-teal { color: var(--accent); background: var(--accent-soft); }
.badge-blue { color: var(--amber); background: var(--amber-soft); }

/* legacy avatar fallback */
.speaker-avatar { width: 76px; height: 76px; border-radius: 50%; overflow: hidden; border: 3px solid var(--accent-soft); flex-shrink: 0; }
.speaker-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   "A TALK YOU MIGHT HEAR" — story preview
   ============================================ */
.story-preview {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.story-preview-img { background: var(--bg-warm); min-height: 420px; }
.story-preview-img img { width: 100%; height: 100%; object-fit: cover; }
.story-preview-body { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.story-preview-kicker { font-size: 0.76rem; font-weight: 600; color: var(--amber); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.story-preview-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 500; color: var(--text-primary); line-height: 1.2; margin-bottom: 20px; }
.story-preview-text { font-size: 1.02rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.story-preview-byline { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; }
.story-preview-byline strong { color: var(--text-primary); }

/* ============================================
   PHOTO BREAK (full-width image + quote)
   ============================================ */
.photo-break {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.photo-break-img { position: absolute; inset: 0; z-index: 0; }
.photo-break-img img { width: 100%; height: 100%; object-fit: cover; }
.photo-break-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(11,31,28,0.85) 0%, rgba(11,31,28,0.5) 60%, rgba(11,31,28,0.25) 100%); }
.photo-break-content { position: relative; z-index: 2; max-width: 640px; }
.photo-break-quote { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 400; color: #fff; line-height: 1.3; letter-spacing: -0.01em; }
.photo-break-quote em { font-style: italic; color: var(--accent-light); }
.photo-break-attribution { margin-top: 24px; font-size: 0.95rem; color: rgba(255,255,255,0.75); }

/* ============================================
   TICKETS
   ============================================ */
.ticket-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 36px 28px; display: flex; flex-direction: column; text-align: center; transition: all 0.3s var(--ease); position: relative; }
.ticket-card:hover { border-color: var(--card-border-hover); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ticket-card.featured { border-color: var(--accent); box-shadow: 0 12px 40px rgba(15, 118, 110, 0.16); transform: scale(1.03); }
.ticket-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.ticket-card.speaker-ticket { border-style: dashed; border-color: var(--amber); }
.ticket-ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-size: 0.7rem; font-weight: 700; color: #fff; background: var(--accent); padding: 5px 18px; border-radius: 100px; text-transform: uppercase; letter-spacing: 1px; box-shadow: var(--shadow-sm); }
.ticket-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; margin-top: 6px; }
.ticket-price { font-family: var(--font-display); font-size: 3.2rem; font-weight: 500; color: var(--text-primary); line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.ticket-note { font-size: 0.8rem; color: var(--text-faint); margin-bottom: 26px; min-height: 32px; }
.ticket-features { flex-grow: 1; text-align: left; margin-bottom: 26px; }
.ticket-features li { font-size: 0.88rem; color: var(--text-secondary); padding: 8px 0 8px 26px; position: relative; }
.ticket-features li::before { content: ''; position: absolute; left: 0; top: 12px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230F766E' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 9px; }

/* ============================================
   SCHEDULE
   ============================================ */
.schedule-day { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-xs); }
.schedule-day-header { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--text-primary); margin-bottom: 24px; padding-bottom: 18px; border-bottom: 2px solid var(--accent-soft); }
.schedule-row { display: flex; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--bg-soft); }
.schedule-row:last-child { border-bottom: none; }
.schedule-time { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--accent); min-width: 84px; white-space: nowrap; padding-top: 2px; }
.schedule-event { font-size: 0.96rem; color: var(--text-secondary); }
.schedule-event strong { color: var(--text-primary); font-weight: 600; }

/* ============================================
   FORMS
   ============================================ */
.form-container { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 42px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
    width: 100%; font-family: var(--font); font-size: 0.96rem; color: var(--text-primary);
    background: var(--bg); border: 1px solid var(--card-border); border-radius: var(--radius-xs);
    padding: 13px 16px; transition: all 0.2s var(--ease);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7079' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: 0.78rem; color: var(--text-faint); margin-top: 6px; }
.form-note { font-size: 0.82rem; color: var(--text-faint); text-align: center; margin-top: 16px; }
.form-success { text-align: center; padding: 48px 24px; }
.form-success-icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--text-primary); margin-bottom: 10px; }
.form-success p { font-size: 0.96rem; color: var(--text-secondary); max-width: 420px; margin: 0 auto; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; }
.newsletter-form .form-input { flex-grow: 1; }
.newsletter-form .btn { flex-shrink: 0; }

/* ============================================
   CTA BANNER (with photo option)
   ============================================ */
.cta-banner { background: var(--ink-deep); border-radius: var(--radius); padding: 72px 56px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% -10%, rgba(20,184,166,0.25) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 80% 120%, rgba(194,112,61,0.2) 0%, transparent 55%); pointer-events: none; }
.cta-banner > * { position: relative; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; color: #fff; margin-bottom: 16px; letter-spacing: -0.01em; }
.cta-banner h2 em { font-style: italic; color: var(--accent-light); }
.cta-banner p { font-size: 1.08rem; color: var(--text-on-dark-soft); margin-bottom: 30px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-banner .btn + .btn { margin-left: 12px; }
.cta-banner .btn-primary { background: #fff; color: var(--ink); }
.cta-banner .btn-primary:hover { background: var(--accent-light); color: #fff; }

/* ============================================
   TWO COLUMN / BENEFITS
   ============================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.benefits-list li { font-size: 1.02rem; color: var(--text-secondary); padding: 13px 0 13px 34px; position: relative; line-height: 1.6; border-bottom: 1px solid var(--bg-soft); }
.benefits-list li:last-child { border-bottom: none; }
.benefits-list li::before { content: ''; position: absolute; left: 0; top: 18px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230F766E' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 12px; }
.benefits-list strong { color: var(--text-primary); font-weight: 600; }
.benefits-list h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--text-primary); margin-bottom: 16px; margin-top: 32px; }
.benefits-list h3:first-child { margin-top: 0; }

/* ============================================
   AUDIENCE / STATS / TEAM / ADVISORY
   ============================================ */
.audience-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.audience-item { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: 26px 16px; text-align: center; transition: all 0.3s var(--ease); }
.audience-item:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.audience-icon { font-size: 1.7rem; margin-bottom: 10px; }
.audience-item h4 { font-family: var(--font-display); font-size: 0.92rem; font-weight: 500; color: var(--text-primary); }

.stat-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all 0.3s var(--ease); }
.stat-card:hover { border-color: var(--card-border-hover); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.stat-number { font-family: var(--font-display); font-size: 2.8rem; font-weight: 500; color: var(--accent); line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.stat-label { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 30px; text-align: center; transition: all 0.3s var(--ease); }
.team-card:hover { border-color: var(--card-border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo { width: 104px; height: 104px; border-radius: 50%; margin: 0 auto 18px; overflow: hidden; border: 3px solid var(--accent-soft); background: var(--bg-warm); display: flex; align-items: center; justify-content: center; transition: border-color 0.3s var(--ease); }
.team-card:hover .team-photo { border-color: var(--amber-soft); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo .initials { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--text-faint); }
.team-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--text-primary); margin-bottom: 3px; }
.team-role { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }

.advisory-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.advisor-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 30px; display: flex; gap: 20px; transition: all 0.3s var(--ease); }
.advisor-card:hover { border-color: var(--card-border-hover); box-shadow: var(--shadow-sm); }
.advisor-photo { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; overflow: hidden; border: 3px solid var(--accent-soft); background: var(--bg-warm); display: flex; align-items: center; justify-content: center; }
.advisor-photo img { width: 100%; height: 100%; object-fit: cover; }
.advisor-photo .initials { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--text-faint); }
.advisor-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--text-primary); margin-bottom: 2px; }
.advisor-title { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.advisor-bio { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.55; }

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto { max-width: 720px; margin: 0 auto; }
.manifesto p { font-size: 1.18rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 24px; }
.manifesto p:first-of-type { font-family: var(--font-display); font-size: 1.6rem; color: var(--text-primary); font-weight: 400; line-height: 1.4; }
.manifesto strong { color: var(--text-primary); font-weight: 600; }
.manifesto em { color: var(--accent); font-style: italic; }
.section-dark .manifesto p { color: var(--text-on-dark-soft); }
.section-dark .manifesto p:first-of-type { color: #fff; }
.section-dark .manifesto strong { color: #fff; }
.section-dark .manifesto em { color: var(--accent-light); }

/* ============================================
   VENUE
   ============================================ */
.venue-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.venue-card-image { height: 380px; overflow: hidden; position: relative; background: var(--bg-warm); }
.venue-card-image img { width: 100%; height: 100%; object-fit: cover; }
.venue-card-body { padding: 40px; }
.venue-card-body h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; }
.venue-address { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 26px; }
.venue-card-body p { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.7; }
.venue-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 8px; }
.venue-feature { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text-secondary); }
.venue-feature-icon { width: 42px; height: 42px; border-radius: var(--radius-xs); background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.info-list { margin-top: 8px; }
.info-list li { font-size: 0.96rem; color: var(--text-secondary); padding: 15px 0 15px 30px; position: relative; border-bottom: 1px solid var(--bg-soft); line-height: 1.6; }
.info-list li:last-child { border-bottom: none; }
.info-list li::before { content: ''; position: absolute; left: 0; top: 22px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.info-list strong { color: var(--text-primary); font-weight: 600; }
.venue-map { background: var(--bg-warm); border: 1px solid var(--card-border); border-radius: var(--radius); height: 360px; display: flex; align-items: center; justify-content: center; color: var(--text-faint); font-size: 0.9rem; text-align: center; padding: 24px; }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header { padding: 168px 0 72px; position: relative; overflow: hidden; background: var(--bg-soft); border-bottom: 1px solid var(--card-border); }
.page-header-glow { display: none; }
.page-header .container { position: relative; }
.page-header.center { text-align: center; }
.page-header.center .section-desc { margin: 0 auto; }
.page-header .section-title { margin-bottom: 16px; }

/* ============================================
   LOGOS / MARQUEE
   ============================================ */
.experience-label, .logos-label { font-size: 0.72rem; font-weight: 600; color: var(--text-faint); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 30px; }
.logos-row, .experience-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logos-row span, .experience-logos span { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--text-muted); transition: color 0.3s var(--ease); }
.logos-row span:hover { color: var(--text-primary); }
.marquee-container { overflow: hidden; padding: 8px 0; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.marquee-track { display: flex; gap: 48px; animation: marquee 40s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--text-faint); white-space: nowrap; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logos-bar { padding: 60px 0; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); background: var(--bg-soft); }

/* ============================================
   DIVIDERS
   ============================================ */
.section-divider { height: 1px; background: var(--card-border); }
.dot-divider { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 56px 0; }
.dot-divider span { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); opacity: 0.5; }

/* ============================================
   FAQ
   ============================================ */
.faq-search { position: relative; max-width: 560px; margin: 0 auto 40px; }
.faq-search input { width: 100%; font-family: var(--font); font-size: 1rem; color: var(--text-primary); background: var(--card); border: 1px solid var(--card-border); border-radius: 100px; padding: 15px 24px 15px 52px; transition: all 0.2s var(--ease); box-shadow: var(--shadow-xs); }
.faq-search input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.faq-search input::placeholder { color: var(--text-faint); }
.faq-search-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--text-faint); pointer-events: none; }
.faq-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.faq-tab { font-family: var(--font); font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); background: var(--card); border: 1px solid var(--card-border); padding: 10px 22px; border-radius: 100px; cursor: pointer; transition: all 0.2s var(--ease); white-space: nowrap; }
.faq-tab:hover { color: var(--text-primary); border-color: var(--card-border-hover); }
.faq-tab.active { color: #fff; background: var(--accent); border-color: var(--accent); }
.faq-group { display: none; animation: faqFade 0.4s var(--ease); }
.faq-group.active { display: block; }
@keyframes faqFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.faq-group-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--text-primary); margin: 40px 0 22px; display: flex; align-items: center; gap: 12px; }
.faq-group:first-child .faq-group-title { margin-top: 0; }
.faq-group-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.faq-item { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-sm); margin-bottom: 12px; transition: all 0.25s var(--ease); overflow: hidden; box-shadow: var(--shadow-xs); }
.faq-item:hover { border-color: var(--card-border-hover); }
.faq-item.active { border-color: var(--accent); box-shadow: 0 4px 20px var(--accent-soft); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 21px 24px; font-family: var(--font); font-size: 1.02rem; font-weight: 600; color: var(--text-primary); background: none; border: none; cursor: pointer; text-align: left; transition: color 0.2s var(--ease); }
.faq-question:hover { color: var(--accent); }
.faq-icon { font-size: 1.5rem; font-weight: 300; color: var(--accent); transition: transform 0.35s var(--ease); flex-shrink: 0; line-height: 1; }
.faq-item.active .faq-icon { transform: rotate(135deg); color: var(--amber); }
.faq-answer { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease), opacity 0.3s var(--ease); padding: 0 24px; opacity: 0; }
.faq-item.active .faq-answer { max-height: 600px; padding: 0 24px 22px; opacity: 1; }
.faq-answer a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.faq-no-results { text-align: center; padding: 60px 24px; color: var(--text-muted); display: none; }
.faq-no-results.visible { display: block; }
.faq-no-results h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--text-primary); margin-bottom: 8px; }
.faq-cta { margin-top: 64px; text-align: center; padding: 48px; background: var(--bg-soft); border: 1px solid var(--card-border); border-radius: var(--radius); }
.faq-cta h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--text-primary); margin-bottom: 10px; }
.faq-cta p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 24px; }

/* ============================================
   GRADIENT / PROSE
   ============================================ */
.gradient-text { color: var(--accent); }
.container-sm h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--text-primary); margin: 40px 0 16px; }
.container-sm h2:first-child { margin-top: 0; }
.container-sm h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--text-primary); margin: 28px 0 12px; }
.container-sm p { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.container-sm ul { margin: 0 0 16px; }
.container-sm ul li { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; padding: 6px 0 6px 24px; position: relative; }
.container-sm ul li::before { content: ''; position: absolute; left: 0; top: 15px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.container-sm strong { color: var(--text-primary); font-weight: 600; }
.container-sm a:not(.btn) { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.text-muted { color: var(--text-muted); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--ink-deep); padding: 76px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 52px; }
.footer-brand { max-width: 300px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 30px; width: auto; }
.footer-tagline { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color: var(--text-on-dark); margin-bottom: 10px; }
.footer-meta { font-size: 0.85rem; color: var(--text-faint); }
.footer-col h4 { font-size: 0.74rem; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.9rem; color: var(--text-on-dark-soft); padding: 5px 0; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-faint); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.82rem; color: var(--text-faint); transition: color 0.2s var(--ease); }
.footer-legal a:hover { color: var(--text-on-dark-soft); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: #fff; border-top: 1px solid var(--card-border); box-shadow: 0 -8px 32px rgba(26,28,32,0.08); padding: 20px 0; transform: translateY(100%); transition: transform 0.4s var(--ease); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-text { font-size: 0.85rem; color: var(--text-secondary); max-width: 720px; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner .btn-ghost { color: var(--text-muted); }

/* ============================================
   UTILITIES + ANIMATIONS
   ============================================ */
.text-center { text-align: center; }
.text-teal { color: var(--accent); }
.text-blue { color: var(--accent); }
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-48 { margin-bottom: 48px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.animate-in.visible { opacity: 1; transform: translateY(0); }
.hero-eyebrow, .hero-headline, .hero-sub, .hero-actions, .hero-meta { animation: fadeUp 0.8s var(--ease) both; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero-headline { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.35s; }
.hero-actions { animation-delay: 0.5s; }
.hero-meta { animation-delay: 0.65s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .audience-grid { grid-template-columns: repeat(3, 1fr); }
    .story-preview { grid-template-columns: 1fr; }
    .story-preview-img { min-height: 280px; }
}
@media (max-width: 768px) {
    :root { --section-pad: 76px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .two-col, .advisory-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .venue-features { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }

    .nav-links { display: none; position: fixed; inset: 0; flex-direction: column; align-items: center; justify-content: center; background: rgba(11,31,28,0.97); backdrop-filter: blur(20px); gap: 8px; z-index: 999; }
    .nav-links.active { display: flex; }
    .nav-links a, .nav.scrolled .nav-links a, body.inner-page .nav .nav-links a { font-size: 1.4rem; padding: 14px 24px; color: #fff; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; z-index: 1001; }

    .photo-hero-content { padding-top: 130px; padding-bottom: 56px; }
    .hero-meta { gap: 28px; }
    .story-preview-body { padding: 36px 28px; }
    .photo-break-content { padding: 0 8px; }
    .countdown-inner { gap: 20px; }
    .countdown-units { gap: 14px; }
    .cta-banner { padding: 48px 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .newsletter-form { flex-direction: column; }
    .two-col { gap: 32px; }
    .pull-quote { padding: 64px 0; }
}
@media (max-width: 480px) {
    :root { --section-pad: 56px; }
    .audience-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .ticket-price { font-size: 2.8rem; }
    .container, .container-sm { padding: 0 22px; }
}

/* ============================================
   SPONSOR WORDMARKS (prototype placeholders)
   ============================================ */
.sponsor-strip { padding: 64px 0; background: var(--bg-pure); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.sponsor-label { font-size: 0.72rem; font-weight: 600; color: var(--text-faint); text-transform: uppercase; letter-spacing: 2.5px; text-align: center; margin-bottom: 36px; }
.sponsor-logos { display: flex; align-items: center; justify-content: center; gap: 24px 56px; flex-wrap: wrap; }
.sponsor-logos .wordmark {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: -0.01em;
    opacity: 0.75;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.sponsor-logos .wordmark::before {
    content: '';
    width: 22px; height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--accent), var(--amber));
    opacity: 0.45;
}
.sponsor-logos .wordmark:hover { opacity: 1; color: var(--text-primary); }
.sponsor-logos .wordmark:hover::before { opacity: 0.8; }
@media (max-width: 600px) { .sponsor-logos { gap: 20px 32px; } .sponsor-logos .wordmark { font-size: 1.1rem; } }

/* ============================================
   BLOG / INSIGHTS
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s var(--ease);
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--card-border-hover); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-warm); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-meta { display: flex; gap: 12px; align-items: center; font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: var(--amber); margin-bottom: 14px; }
.blog-card-meta .dot-sep { color: var(--text-faint); }
.blog-card-meta .blog-date { color: var(--text-faint); }
.blog-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--text-primary); line-height: 1.25; margin-bottom: 12px; }
.blog-card p { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 18px; flex-grow: 1; }
.blog-card-link { font-size: 0.88rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.blog-card-link .arrow { transition: transform 0.25s var(--ease); }
.blog-card:hover .blog-card-link .arrow { transform: translateX(4px); }

/* Article page */
.article-hero { padding: 152px 0 0; background: var(--bg-soft); border-bottom: 1px solid var(--card-border); }
.article-meta { display: flex; gap: 12px; align-items: center; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--amber); margin-bottom: 20px; }
.article-meta .blog-date { color: var(--text-faint); }
.article-title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 500; color: var(--text-primary); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 24px; max-width: 20ch; }
.article-byline { display: flex; align-items: center; gap: 12px; padding-bottom: 40px; }
.article-byline-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--bg-warm); border: 2px solid var(--accent-soft); }
.article-byline-avatar img { width: 100%; height: 100%; object-fit: cover; }
.article-byline-name { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.article-byline-role { font-size: 0.82rem; color: var(--text-muted); }
.article-cover { width: 100%; aspect-ratio: 21/9; object-fit: cover; }
.article-body { max-width: 720px; margin: 0 auto; padding: 64px 32px; }
.article-body p { font-size: 1.12rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 24px; }
.article-body p.lead { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-primary); line-height: 1.5; font-weight: 400; }
.article-body h2 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; color: var(--text-primary); margin: 44px 0 18px; letter-spacing: -0.01em; }
.article-body blockquote { border-left: 3px solid var(--accent); padding: 8px 0 8px 28px; margin: 32px 0; font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--text-primary); line-height: 1.5; }
.article-body strong { color: var(--text-primary); font-weight: 600; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article-body ul { margin: 0 0 24px; }
.article-body ul li { font-size: 1.08rem; color: var(--text-secondary); line-height: 1.7; padding: 6px 0 6px 26px; position: relative; }
.article-body ul li::before { content: ''; position: absolute; left: 0; top: 16px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ============================================
   PRESS / MEDIA LOGOS
   ============================================ */
.press-strip { padding: 56px 0; text-align: center; }
.press-label { font-size: 0.72rem; font-weight: 600; color: var(--text-faint); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 32px; }
.press-logos { display: flex; align-items: center; justify-content: center; gap: 24px 52px; flex-wrap: wrap; }
.press-logos .press-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--text-muted); opacity: 0.7; transition: all 0.3s var(--ease); letter-spacing: -0.01em; }
.press-logos .press-name:hover { opacity: 1; color: var(--text-primary); }
.section-dark .press-label { color: rgba(255,255,255,0.4); }
.section-dark .press-logos .press-name { color: rgba(255,255,255,0.6); }
.section-dark .press-logos .press-name:hover { color: #fff; }

/* ============================================
   ECOSYSTEM SECTION
   ============================================ */
.ecosystem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ecosystem-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 30px; transition: all 0.3s var(--ease); }
.ecosystem-card:hover { border-color: var(--card-border-hover); transform: translateY(-4px); box-shadow: var(--shadow); }
.ecosystem-stat { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; color: var(--accent); line-height: 1; margin-bottom: 12px; letter-spacing: -0.02em; }
.ecosystem-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; }
.ecosystem-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 34px; display: flex; flex-direction: column; transition: all 0.3s var(--ease); }
.testimonial-card:hover { border-color: var(--card-border-hover); box-shadow: var(--shadow); }
.testimonial-quote { font-family: var(--font-display); font-size: 1.12rem; font-style: italic; color: var(--text-primary); line-height: 1.55; margin-bottom: 24px; flex-grow: 1; }
.testimonial-quote::before { content: '\201C'; font-family: var(--font-display); font-size: 3rem; color: var(--accent); opacity: 0.25; display: block; line-height: 0.6; margin-bottom: 8px; }
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: var(--bg-warm); border: 2px solid var(--accent-soft); flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 0.92rem; font-weight: 600; color: var(--text-primary); }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .ecosystem-grid, .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .press-logos { gap: 20px 32px; }
    .press-logos .press-name { font-size: 1.05rem; }
    .article-body { padding: 48px 24px; }
}

/* ============================================
   V6 — EDITORIAL REFINEMENT
   ============================================ */

/* Utility helpers to replace inline styles */
.center-flex { justify-content: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.maxw-860 { max-width: 860px; }
.maxw-960 { max-width: 960px; }

/* --- Editorial track list (asymmetric, large numbers) --- */
.tracks-editorial { border-top: 1px solid var(--card-border); }
.track-row {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 38px 8px;
    border-bottom: 1px solid var(--card-border);
    transition: all 0.3s var(--ease);
    position: relative;
}
.track-row::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent), var(--amber));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s var(--ease);
}
.track-row:hover { background: var(--bg-pure); padding-left: 28px; padding-right: 28px; }
.track-row:hover::before { transform: scaleY(1); }
.track-row-num {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 400;
    color: var(--card-border-hover);
    line-height: 1;
    transition: color 0.35s var(--ease);
}
.track-row:hover .track-row-num { color: var(--accent); }
.track-row-main h3 { font-family: var(--font-display); font-size: 1.65rem; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; letter-spacing: -0.01em; }
.track-row-main p { font-size: 0.98rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; max-width: 60ch; }
.track-row-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.track-row-arrow {
    font-size: 1.6rem; color: var(--text-faint);
    transition: all 0.3s var(--ease);
    opacity: 0;
}
.track-row:hover .track-row-arrow { opacity: 1; color: var(--accent); transform: translateX(6px); }

@media (max-width: 768px) {
    .track-row { grid-template-columns: 64px 1fr; gap: 20px; padding: 28px 0; }
    .track-row:hover { padding-left: 14px; padding-right: 14px; }
    .track-row-num { font-size: 2.2rem; }
    .track-row-main h3 { font-size: 1.3rem; }
    .track-row-arrow { display: none; }
}

/* --- Featured speaker layout --- */
.speakers-feature { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: stretch; }
.speaker-feature-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow);
}
.speaker-feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.speaker-feature-card:hover img { transform: scale(1.04); }
.speaker-feature-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(11,31,28,0.55) 70%, rgba(11,31,28,0.92) 100%); }
.speaker-feature-body { position: relative; padding: 40px; color: #fff; }
.speaker-feature-body .badge { background: rgba(255,255,255,0.2); color: #fff; backdrop-filter: blur(6px); margin-bottom: 14px; }
.speaker-feature-body h3 { font-family: var(--font-display); font-size: 2.1rem; font-weight: 500; color: #fff; line-height: 1.1; margin-bottom: 6px; }
.speaker-feature-role { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-bottom: 14px; }
.speaker-feature-talk { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: #fff; line-height: 1.35; }
.speakers-feature-side { display: flex; flex-direction: column; gap: 28px; }
.speaker-mini {
    display: flex; gap: 18px; align-items: center;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 22px;
    flex: 1;
    transition: all 0.3s var(--ease);
}
.speaker-mini:hover { border-color: var(--card-border-hover); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.speaker-mini-photo { width: 86px; height: 86px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid var(--accent-soft); background: var(--bg-warm); }
.speaker-mini-photo img { width: 100%; height: 100%; object-fit: cover; }
.speaker-mini-body .badge { margin-bottom: 8px; }
.speaker-mini-body h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--text-primary); margin-bottom: 2px; }
.speaker-mini-body .speaker-role { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.speaker-mini-body .speaker-talk { font-size: 0.9rem; margin-bottom: 0; }

@media (max-width: 900px) {
    .speakers-feature { grid-template-columns: 1fr; }
    .speaker-feature-card { min-height: 420px; }
}

/* --- Line icon for audience/features --- */
.line-icon { width: 26px; height: 26px; stroke: var(--accent); stroke-width: 1.6; fill: none; }
.audience-item .line-icon { width: 30px; height: 30px; margin: 0 auto 12px; display: block; }
.venue-feature-icon .line-icon { width: 20px; height: 20px; stroke: var(--accent); }

/* --- Section eyebrow on left (editorial) --- */
.section-header.left { text-align: left; max-width: 720px; }
.section-header.left .section-label { justify-content: flex-start; }

/* --- Big editorial intro split --- */
.editorial-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.editorial-split-sticky { position: sticky; top: 120px; }
@media (max-width: 900px) { .editorial-split { grid-template-columns: 1fr; gap: 32px; } .editorial-split-sticky { position: static; } }

/* ============================================
   SPONSOR / PARTNER LOGO IMAGES
   ============================================ */
.sponsor-logos.real { gap: 28px 56px; }
.sponsor-logos.real img {
    height: 30px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.55);
    transition: filter 0.3s var(--ease);
}
.sponsor-logos.real img:hover { filter: grayscale(0) opacity(1); }
@media (max-width: 600px) { .sponsor-logos.real img { height: 24px; } }

/* ============================================
   HERO BRANDLINE (SEO + identity)
   ============================================ */
.hero-seo-line {
    display: block;
    font-family: var(--font-display);
    font-size: 0.28em;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 14px;
    opacity: 0.9;
}
/* hide old brandline if any stray reference */
.hero-brandline { display: none; }
.hero-brandline { animation: fadeUp 0.8s var(--ease) both; animation-delay: 0.08s; }
@media (max-width: 600px) {
    .hero-brandline { font-size: 0.9rem; letter-spacing: 2px; }
    .hero-brandline span { display: block; margin-top: 4px; }
}

/* ============================================
   TICKETS — EVENT REGISTRATION STYLE (not SaaS)
   ============================================ */
.tickets-band {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.tier {
    padding: 36px 28px;
    border-right: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    transition: background 0.3s var(--ease);
    position: relative;
}
.tier:last-child { border-right: none; }
.tier:hover { background: var(--bg-soft); }
.tier.tier-feature { background: linear-gradient(180deg, var(--accent-soft), var(--card)); }
.tier.tier-feature:hover { background: linear-gradient(180deg, var(--accent-soft), var(--bg-soft)); }
.tier-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 10px; min-height: 16px; }
.tier-feature .tier-tag { color: var(--accent-deep); }
.tier-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.tier-price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; color: var(--text-primary); line-height: 1; margin: 8px 0 4px; letter-spacing: -0.02em; }
.tier-price .tier-free { color: var(--accent); }
.tier-when { font-size: 0.8rem; color: var(--text-faint); margin-bottom: 22px; min-height: 18px; }
.tier-extra { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 22px; flex-grow: 1; }
.tier-extra strong { color: var(--text-primary); font-weight: 600; }
.tier .btn { width: 100%; }

.tickets-includes {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px 32px;
    flex-wrap: wrap;
    padding: 22px 28px;
    background: var(--bg-soft);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
}
.tickets-includes .inc-label { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-faint); }
.tickets-includes .inc-item { font-size: 0.88rem; color: var(--text-secondary); display: inline-flex; align-items: center; gap: 7px; }
.tickets-includes .inc-item::before { content: ''; width: 16px; height: 16px; flex-shrink: 0; background: var(--accent-soft); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230F766E' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 9px; }

@media (max-width: 900px) {
    .tickets-band { grid-template-columns: 1fr 1fr; }
    .tier:nth-child(2) { border-right: none; }
    .tier:nth-child(1), .tier:nth-child(2) { border-bottom: 1px solid var(--card-border); }
}
@media (max-width: 560px) {
    .tickets-band { grid-template-columns: 1fr; }
    .tier { border-right: none; border-bottom: 1px solid var(--card-border); }
    .tier:last-child { border-bottom: none; }
}

/* ============================================
   NAV SECONDARY CTA (Become a Speaker)
   ============================================ */
.nav-cta-ghost {
    font-size: 0.9rem; font-weight: 600;
    color: #fff;
    padding: 10px 18px; border-radius: var(--radius-xs);
    border: 1px solid rgba(255,255,255,0.35);
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}
.nav-cta-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }
.nav.scrolled .nav-cta-ghost { color: var(--accent); border-color: var(--card-border-hover); }
.nav.scrolled .nav-cta-ghost:hover { background: var(--accent-soft); border-color: var(--accent); }
body.inner-page .nav .nav-cta-ghost { color: var(--accent); border-color: var(--card-border-hover); }
body.inner-page .nav .nav-cta-ghost:hover { background: var(--accent-soft); border-color: var(--accent); }
@media (max-width: 900px) { .nav-cta-ghost { display: none; } }

/* ============================================
   OPEN MIC FEATURE BLOCK
   ============================================ */
.openmic {
    background: var(--ink-deep);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-lg);
}
.openmic-body { padding: 56px; color: #fff; }
.openmic-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-light); margin-bottom: 18px; }
.openmic-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-light); }
.openmic h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: #fff; line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.01em; }
.openmic p { font-size: 1.02rem; color: var(--text-on-dark-soft); line-height: 1.7; margin-bottom: 16px; }
.openmic p strong { color: #fff; font-weight: 600; }
.openmic-meta { display: flex; gap: 32px; margin: 24px 0 28px; flex-wrap: wrap; }
.openmic-meta-item { }
.openmic-meta-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; color: var(--accent-light); line-height: 1; }
.openmic-meta-label { font-size: 0.78rem; color: var(--text-on-dark-soft); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.openmic-img { position: relative; background: var(--bg-warm); min-height: 100%; }
.openmic-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
    .openmic { grid-template-columns: 1fr; }
    .openmic-img { min-height: 240px; order: -1; }
    .openmic-body { padding: 40px 28px; }
}

/* ============================================
   SPEAKER SUPPORT — "We've got you" (luxe)
   ============================================ */
.support-section { background: var(--bg-soft); }

/* Coach feature — personal speaker coach */
.coach-feature {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 0;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
}
.coach-photo { position: relative; min-height: 380px; background: var(--bg-warm); }
.coach-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.coach-photo-tag {
    position: absolute; left: 24px; bottom: 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 12px 18px; border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}
.coach-photo-tag .coach-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--text-primary); }
.coach-photo-tag .coach-role { font-size: 0.8rem; color: var(--accent); font-weight: 600; }
.coach-body { padding: 52px; display: flex; flex-direction: column; justify-content: center; }
.coach-eyebrow { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--amber); margin-bottom: 16px; }
.coach-body h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; color: var(--text-primary); line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.01em; }
.coach-body p { font-size: 1.02rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.coach-body p strong { color: var(--text-primary); font-weight: 600; }
.coach-free { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--accent); margin-top: 8px; }
.coach-free::before { content: ''; width: 18px; height: 18px; background: var(--accent-soft); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230F766E' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 11px; }

@media (max-width: 900px) {
    .coach-feature { grid-template-columns: 1fr; }
    .coach-photo { min-height: 280px; }
    .coach-body { padding: 36px 28px; }
}

/* Fears grid — "what's holding you back?" */
.fears-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.fear-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px 32px;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.fear-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--accent);
    transform: scaleY(0); transform-origin: top;
    transition: transform 0.35s var(--ease);
}
.fear-card:hover { box-shadow: var(--shadow); border-color: var(--card-border-hover); }
.fear-card:hover::before { transform: scaleY(1); }
.fear-quote { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 14px; }
.fear-quote::before { content: '\201C'; color: var(--card-border-hover); }
.fear-quote::after { content: '\201D'; color: var(--card-border-hover); }
.fear-answer { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.65; }
.fear-answer strong { color: var(--accent); font-weight: 600; }
@media (max-width: 768px) { .fears-grid { grid-template-columns: 1fr; } }

/* Support promise strip */
.support-promise {
    text-align: center;
    max-width: 680px;
    margin: 56px auto 0;
    padding: 40px;
    background: var(--ink-deep);
    border-radius: var(--radius);
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.support-promise::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(20,184,166,0.22), transparent 60%); pointer-events: none; }
.support-promise > * { position: relative; }
.support-promise h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.support-promise h3 em { font-style: italic; color: var(--accent-light); }
.support-promise p { font-size: 1.02rem; color: var(--text-on-dark-soft); line-height: 1.7; }

/* ============================================
   V7 — SPEAKER SUPPORT, LUXE REDESIGN
   ============================================ */

/* Big typographic fear statements */
.fears-luxe { max-width: 880px; margin: 0 auto; }
.fear-line {
    padding: 44px 0;
    border-bottom: 1px solid var(--card-border);
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.fear-line:last-child { border-bottom: none; }
.fear-statement {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-faint);
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.fear-reply {
    font-size: 1.12rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 60ch;
}
.fear-reply strong { color: var(--accent); font-weight: 600; }
.fear-reply .reply-lead {
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 500;
    color: var(--text-primary);
}

/* Speaker journey timeline */
.journey { max-width: 920px; margin: 0 auto; }
.journey-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 16px;
}
.journey-track::before {
    content: '';
    position: absolute;
    top: 21px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--amber));
    opacity: 0.3;
}
.journey-step { text-align: center; padding: 0 12px; position: relative; }
.journey-dot {
    width: 44px; height: 44px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 600;
    color: var(--accent);
    position: relative; z-index: 1;
    transition: all 0.3s var(--ease);
}
.journey-step:hover .journey-dot { background: var(--accent); color: #fff; transform: scale(1.08); }
.journey-step h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--text-primary); margin-bottom: 6px; }
.journey-step p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 760px) {
    .journey-track { grid-template-columns: 1fr; gap: 28px; }
    .journey-track::before { display: none; }
    .journey-step { display: grid; grid-template-columns: 44px 1fr; gap: 18px; text-align: left; align-items: start; }
    .journey-dot { margin: 0; }
}

/* Coach line — no stock face, abstract & classy */
.coach-line {
    display: flex; align-items: center; gap: 24px;
    max-width: 820px; margin: 0 auto;
    padding: 32px 36px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.coach-mark {
    width: 64px; height: 64px; flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--amber));
    display: flex; align-items: center; justify-content: center;
}
.coach-mark svg { width: 30px; height: 30px; stroke: #fff; fill: none; stroke-width: 1.6; }
.coach-line-text { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.6; }
.coach-line-text strong { color: var(--text-primary); font-weight: 600; }
@media (max-width: 600px) { .coach-line { flex-direction: column; text-align: center; gap: 16px; } }

/* ============================================
   V8 — CONFERENCE DENSITY (less SaaS, more event)
   ============================================ */

/* --- Metrics bar (dense, icon row) --- */
.metrics-bar { background: var(--bg-pure); border-bottom: 1px solid var(--card-border); padding: 36px 0; }
.metrics-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.metric { text-align: center; padding: 8px 16px; border-right: 1px solid var(--card-border); }
.metric:last-child { border-right: none; }
.metric-num { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--text-primary); line-height: 1; letter-spacing: -0.02em; }
.metric-num .accent { color: var(--accent); }
.metric-label { font-size: 0.76rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }
@media (max-width: 860px) { .metrics-row { grid-template-columns: repeat(3, 1fr); gap: 28px 0; } .metric:nth-child(3) { border-right: none; } }
@media (max-width: 480px) { .metrics-row { grid-template-columns: repeat(2, 1fr); } .metric { border-right: none; } .metric-num { font-size: 1.6rem; } }

/* --- Speaker grid (lots of faces) --- */
.speaker-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.spk {
    background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
    overflow: hidden; transition: all 0.3s var(--ease);
}
.spk:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--card-border-hover); }
.spk-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-warm); position: relative; }
.spk-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.spk:hover .spk-photo img { transform: scale(1.05); }
.spk-body { padding: 18px 20px 22px; }
.spk-body .badge { margin-bottom: 8px; }
.spk-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--text-primary); line-height: 1.2; margin-bottom: 2px; }
.spk-org { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.spk-talk { font-size: 0.85rem; color: var(--accent); font-style: italic; line-height: 1.4; }
/* coming soon placeholder */
.spk.tba { border-style: dashed; }
.spk-tba-photo { aspect-ratio: 1/1; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; }
.spk-tba-photo svg { width: 48px; height: 48px; stroke: var(--card-border-hover); fill: none; stroke-width: 1.2; }
.spk.tba .spk-name { color: var(--text-faint); }
@media (max-width: 900px) { .speaker-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- Key Dates --- */
.dates-list { max-width: 760px; margin: 0 auto; }
.date-row {
    display: grid; grid-template-columns: 180px 1fr auto; gap: 28px; align-items: baseline;
    padding: 24px 4px; border-bottom: 1px solid var(--card-border);
}
.date-row:last-child { border-bottom: none; }
.date-when { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--accent); white-space: nowrap; }
.date-what { font-size: 1.02rem; color: var(--text-primary); font-weight: 500; }
.date-sub { font-size: 0.88rem; color: var(--text-muted); margin-top: 3px; }
.date-flag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--amber); white-space: nowrap; padding-top: 3px; }
@media (max-width: 680px) { .date-row { grid-template-columns: 1fr; gap: 6px; } .date-flag { order: -1; } }

/* --- Sponsor tiers (bigger logos) --- */
.sponsor-tiers { max-width: 980px; margin: 0 auto; }
.sponsor-tier { margin-bottom: 40px; text-align: center; }
.sponsor-tier-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--text-faint); margin-bottom: 22px; }
.sponsor-tier-logos { display: flex; align-items: center; justify-content: center; gap: 32px 56px; flex-wrap: wrap; }
.sponsor-tier.platinum .sponsor-tier-logos img { height: 46px; }
.sponsor-tier.gold .sponsor-tier-logos img { height: 36px; }
.sponsor-tier-logos img { width: auto; max-width: 200px; object-fit: contain; filter: grayscale(1) opacity(0.6); transition: filter 0.3s var(--ease); }
.sponsor-tier-logos img:hover { filter: grayscale(0) opacity(1); }
@media (max-width: 600px) { .sponsor-tier.platinum .sponsor-tier-logos img { height: 34px; } .sponsor-tier.gold .sponsor-tier-logos img { height: 28px; } }

/* --- Named testimonials --- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; transition: all 0.3s var(--ease); }
.tcard:hover { box-shadow: var(--shadow); border-color: var(--card-border-hover); }
.tcard-quote { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--text-primary); line-height: 1.55; margin-bottom: 24px; flex-grow: 1; }
.tcard-person { display: flex; align-items: center; gap: 14px; }
.tcard-photo { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; background: var(--bg-warm); border: 2px solid var(--accent-soft); flex-shrink: 0; }
.tcard-photo img { width: 100%; height: 100%; object-fit: cover; }
.tcard-name { font-size: 0.92rem; font-weight: 600; color: var(--text-primary); }
.tcard-org { font-size: 0.8rem; color: var(--text-muted); }
@media (max-width: 900px) { .tcards { grid-template-columns: 1fr; } }

/* --- Formats grid --- */
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.format-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 28px; transition: all 0.3s var(--ease); }
.format-card:hover { border-color: var(--card-border-hover); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.format-card .fmt-icon { width: 34px; height: 34px; stroke: var(--accent); fill: none; stroke-width: 1.5; margin-bottom: 14px; }
.format-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; }
.format-card .fmt-meta { font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--amber); margin-bottom: 10px; }
.format-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; }
@media (max-width: 860px) { .formats-grid { grid-template-columns: 1fr; } }

/* --- Schedule at a glance --- */
.glance { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.glance-day { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 32px; }
.glance-day h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.glance-day .glance-date { font-size: 0.85rem; color: var(--accent); font-weight: 600; margin-bottom: 22px; }
.glance-item { display: grid; grid-template-columns: 78px 1fr; gap: 16px; padding: 11px 0; border-top: 1px solid var(--bg-soft); }
.glance-time { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.glance-what { font-size: 0.92rem; color: var(--text-secondary); }
.glance-what strong { color: var(--text-primary); font-weight: 600; }
@media (max-width: 768px) { .glance { grid-template-columns: 1fr; } }

/* ============================================
   SPEAKERS PAGE — STICKY SIDEBAR NAV
   ============================================ */
.side-nav {
    position: sticky;
    top: 100px;
    align-self: start;
    width: 200px;
    flex-shrink: 0;
    padding-right: 24px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}
/* Wrapper for sidebar + content grid */
.speakers-layout {
    display: flex;
    gap: 0;
    max-width: calc(var(--container) + 240px);
    margin: 0 auto;
    padding-left: 24px;
}
.speakers-layout > .speakers-main {
    flex: 1;
    min-width: 0;
}
.side-nav-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-faint);
    margin-bottom: 18px;
    padding-left: 14px;
}
.side-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 9px 14px;
    border-left: 2px solid transparent;
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
    transition: all 0.2s var(--ease);
    line-height: 1.3;
}
.side-nav a:hover { color: var(--text-primary); background: var(--bg-soft); }
.side-nav a.active { color: var(--accent); border-left-color: var(--accent); background: var(--accent-soft); font-weight: 600; }
.side-nav-num {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-faint);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.side-nav a.active .side-nav-num { color: var(--accent); }
.side-nav-cta { margin-top: 20px; padding-left: 14px; }
.side-nav-cta .btn { width: 100%; font-size: 0.82rem; padding: 10px 16px; }

@media (max-width: 1100px) { .side-nav { display: none; } .speakers-layout { padding-left: 0; } }

/* ============================================
   STATUS BANNER (live progress indicator)
   ============================================ */
.status-banner {
    background: var(--bg-pure);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 32px 0;
}
.status-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.status-pulse {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
}
.status-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--accent);
    position: relative;
}
.status-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0;
    animation: statusPing 2s ease-out infinite;
}
@keyframes statusPing {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.8); }
}
.status-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.status-text strong { color: var(--text-primary); font-weight: 600; }
.status-text .status-date { color: var(--accent); font-weight: 600; }
.status-divider {
    width: 1px;
    height: 32px;
    background: var(--card-border);
    flex-shrink: 0;
}
.status-items {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.status-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.status-check.done { background: var(--accent-soft); }
.status-check.done svg { stroke: var(--accent); }
.status-check.wip { background: var(--amber-soft); }
.status-check.wip svg { stroke: var(--amber); }
.status-check svg { width: 11px; height: 11px; fill: none; stroke-width: 2.5; }
@media (max-width: 768px) {
    .status-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .status-divider { display: none; }
}
