/* ==========================================================================
   Ad Astra Technology Summit 2026 — Flowing Premium Design
   Inspired by reference: generous spacing, rounded forms,
   ultra-subtle cards, smooth transitions
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design Tokens
   -------------------------------------------------------------------------- */
:root {
    --navy: #0f0825;
    --navy-deep: #0a0618;
    --navy-mid: #1a0a2e;
    --indigo: #1e1145;
    --pink: #f9327e;
    --pink-bright: #ff1673;
    --pink-glow: rgba(249, 50, 126, 0.3);
    --dark-blue: #192652;
    --dark-blue-alt: #1d2d5c;
    --white: #ffffff;
    --lavender: #b8a9d4;
    --muted: rgba(255, 255, 255, 0.6);
    --text-dim: rgba(255, 255, 255, 0.35);

    --font-display: "Space Grotesk", "Montserrat", sans-serif;
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Inter", sans-serif;

    --section-pad: clamp(80px, 10vw, 140px);
    --container-width: 1280px;
    --gap: 30px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 60px;
    --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 4px 30px rgba(249, 50, 126, 0.25);
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}
body {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.9;
    color: var(--white);
    background: var(--dark-blue);
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    position: relative;
}
/* Global noise texture on body */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.13;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}
/* Ensure all content sits above the noise */
body > * {
    position: relative;
    z-index: 1;
}
::selection {
    background: var(--pink);
    color: var(--white);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: var(--pink);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--pink-bright);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.01em;
}
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}
h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
}
p {
    color: var(--muted);
    margin-bottom: 1.5em;
    font-weight: 450;
}
ul {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gap);
}
.section {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Section Titles
   -------------------------------------------------------------------------- */
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    margin-bottom: 0.3em;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-family: var(--font-body);
    font-style: normal;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 3em;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Section Watermark — large ghost text behind content
   -------------------------------------------------------------------------- */
.section-wm {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(100px, 20vw, 280px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(249, 50, 126, 0.07);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 0.05em;
    user-select: none;
}

/* --------------------------------------------------------------------------
   Buttons — pill shaped, flowing
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 16px 36px;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    line-height: 1;
    white-space: nowrap;
}
.btn-primary {
    background: var(--pink);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--pink-bright);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    border-color: var(--pink);
    color: var(--pink);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--pink);
}
.btn-white:hover {
    color: var(--pink);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.btn-lg {
    padding: 20px 48px;
    font-size: 1rem;
}
.btn-dark {
    background: var(--dark-blue);
    color: var(--white);
}
.btn-dark:hover {
    background: #0f1a3d;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(25, 38, 82, 0.4);
    transform: translateY(-2px);
}
.btn-dark-outline {
    background: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
}
.btn-dark-outline:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-full {
    width: 100%;
    justify-content: center;
}
.btn-nav {
    padding: 10px 28px !important;
    border-radius: var(--radius-lg) !important;
    background: var(--pink) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    border: none !important;
}
.btn-nav:hover {
    background: var(--pink-bright) !important;
    color: var(--white) !important;
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Glass Card — ultra subtle
   -------------------------------------------------------------------------- */
.glass-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 40px;
    transition: var(--transition);
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: var(--shadow-subtle);
}

/* --------------------------------------------------------------------------
   Flash Messages
   -------------------------------------------------------------------------- */
.flash-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
}
.flash-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
}
.flash-error ul {
    margin: 8px 0 0;
    padding-left: 20px;
    list-style: disc;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.main-nav.nav-scrolled {
    padding: 16px 0;
    background: rgba(10, 6, 24, 0.85);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nav-container {
    max-width: none;
    margin: 0;
    padding: 0 var(--gap);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
}
/* Stacked SVG logo — big at top */
.logo-stacked {
    height: 110px;
    width: auto;
    transition:
        opacity 0.5s ease,
        height 0.5s ease;
}
/* Horizontal logo — hidden at top, shown on scroll */
.logo-horizontal {
    height: 30px;
    width: auto;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}
/* Scrolled: hide stacked, show horizontal */
.nav-scrolled .logo-stacked {
    opacity: 0;
    height: 0;
}
.nav-scrolled .logo-horizontal {
    opacity: 1;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links li {
    list-style: none;
}
.nav-links a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.04em;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    opacity: 0.8;
}
/* Switch when scrolled */
.nav-scrolled .nav-links a {
    color: var(--lavender);
    text-shadow: none;
}
.nav-scrolled .nav-links a:hover,
.nav-scrolled .nav-links a.active {
    color: var(--white);
    opacity: 1;
}
.nav-links a:not(.btn-nav)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: var(--transition);
}
.nav-links a:not(.btn-nav):hover::after,
.nav-links a:not(.btn-nav).active::after {
    width: 100%;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

/* --------------------------------------------------------------------------
   Hero — pink bg + burst + noise + disrupt + date + sidebar
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #e8175d;
}

/* Burst — centered, full height, edge to edge */
.hero-burst {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-burst {
    justify-content: flex-end;
}
.hero-burst img {
    height: 130%;
    width: auto;
    max-width: none;
    display: block;
    margin-right: -5%;
}

/* Noise overlay — on top of disrupt and date */
.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0.22;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* DISRUPT + Date — stacked together, left side */
.hero-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    pointer-events: none;
    width: 75%;
}
.hero-disrupt-img {
    width: 100%;
    max-width: none;
    height: auto;
}
.hero-date-img {
    width: 35%;
    max-width: 300px;
    height: auto;
    filter: brightness(0) invert(1);
}
.hero-text .hero-actions {
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin-top: 16px;
    pointer-events: auto;
    animation: btn-float 3s ease-in-out infinite;
}
@keyframes btn-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}
.hero-text .hero-actions .btn {
    padding: 14px 32px;
    font-size: 0.88rem;
}

/* Right sidebar — flip clock only */
.hero-sidebar {
    position: absolute;
    z-index: 5;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}
.hero-sidebar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* FlipDown — vertical stack, rounded, gradient tiles */
.hero-countdown {
    display: block;
}

/* Stack rotor groups vertically */
#flipdown.flipdown {
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Each group (pair of digits + label) */
#flipdown .rotor-group {
    margin: 0 !important;
    padding: 0 !important;
}

/* Labels */
#flipdown.flipdown .rotor-group-heading::before {
    color: var(--white) !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.2em !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Remove the colon/dot separators between groups */
#flipdown .rotor-group:nth-child(n + 2):before,
#flipdown .rotor-group:nth-child(n + 2):after {
    display: none !important;
    content: none !important;
}

/* Noise texture on rotors and flip leaves */
/* Noise on the full rotor tile (covers top + bottom) */
#flipdown .rotor::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    border-radius: 6px;
}

/* Rounded corners on rotors */
#flipdown .rotor {
    border-radius: 6px !important;
    overflow: hidden !important;
}
#flipdown .rotor-top {
    border-radius: 6px 6px 0 0 !important;
}
#flipdown .rotor-bottom {
    border-radius: 0 0 6px 6px !important;
}
#flipdown .rotor-leaf-front {
    border-radius: 6px 6px 0 0 !important;
}
#flipdown .rotor-leaf-rear {
    border-radius: 0 0 6px 6px !important;
}

/* Dark blue gradient tiles */
#flipdown .rotor-top,
#flipdown .rotor-leaf-front {
    background: linear-gradient(180deg, #1d2d5c 0%, #192652 100%) !important;
    color: var(--white) !important;
}
#flipdown .rotor-bottom,
#flipdown .rotor-leaf-rear {
    background: linear-gradient(180deg, #141e45 0%, #101838 100%) !important;
    color: var(--white) !important;
}

/* Center divider line */
#flipdown .rotor::after {
    border-top: 1px solid rgba(0, 0, 0, 0.15) !important;
}

.countdown-live {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--white);
    font-size: 1.1rem;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    right: 210px;
    left: auto;
    transform: translateX(-50%);
    color: var(--lavender);
    opacity: 0.35;
    animation: float 2.5s ease-in-out infinite;
    z-index: 2;
    text-decoration: none;
}
@keyframes float {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.section-about {
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

/* Stats banner — dramatic full-width strip */
.about-stats-banner {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 56px 0;
    margin-bottom: 80px;
    position: relative;
}
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
    padding: 16px 44px;
}
.stat-number {
    display: inline;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--pink);
    vertical-align: super;
}
.stat-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--muted);
    margin-top: 10px;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* About content grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.about-eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--pink);
    margin-bottom: 16px;
    font-weight: 600;
}
.about-content .section-title {
    margin-bottom: 24px;
}
.about-lead {
    font-size: clamp(1.02rem, 1.4vw, 1.15rem);
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.2em;
}

/* Summit history timeline */
.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 32px;
}
/* Vertical connecting line */
.about-timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06) 0%,
        var(--pink) 100%
    );
}
.timeline-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 24px 0;
    position: relative;
}
/* Dot on the line */
.timeline-item::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 28px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--dark-blue);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}
.timeline-item:hover::before {
    border-color: var(--pink);
    box-shadow: 0 0 12px rgba(249, 50, 126, 0.3);
}
.timeline-year {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--muted);
    min-width: 56px;
    transition: var(--transition);
}
.timeline-item:hover .timeline-year {
    color: var(--white);
}
.timeline-line {
    display: none;
}
.timeline-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    transition: var(--transition);
}
.timeline-item:hover .timeline-desc {
    color: var(--lavender);
}

/* Current year — highlighted */
.timeline-item-now::before {
    background: var(--pink);
    border-color: var(--pink);
    box-shadow: 0 0 16px rgba(249, 50, 126, 0.4);
}
.timeline-item-now .timeline-year {
    color: var(--pink);
    font-size: 1.6rem;
}
.timeline-item-now .timeline-desc {
    color: var(--white);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Keynote Speaker — cinematic split
   -------------------------------------------------------------------------- */
.section-speaker {
    background: var(--dark-blue);
    padding: 0;
}
.speaker-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    padding-left: clamp(24px, 4vw, 80px);
}
.speaker-image-wrap {
    position: relative;
    overflow: hidden;
}
.speaker-image-wrap .speaker-duotone {
    overflow: hidden;
}
.speaker-duotone {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--dark-blue);
}
.speaker-duotone::after {
    display: none;
}
.speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.speaker-image-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background: var(--pink);
    border-radius: 50% 50% 50% 0;
    opacity: 0.15;
    filter: blur(70px);
    z-index: 2;
}
.speaker-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 100px);
}
.speaker-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--pink);
    margin-bottom: 16px;
}
.speaker-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.speaker-title {
    font-size: 1rem;
    color: var(--lavender);
    margin-bottom: 32px;
    font-style: normal;
}
.speaker-bio {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 40px;
    font-size: 1rem;
}
.speaker-format {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
}
.speaker-format h3 {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 10px;
}
.speaker-format p {
    font-size: 1rem;
    color: var(--muted);
}
.speaker-topics {
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.speaker-topics li {
    padding-left: 20px;
    position: relative;
    color: var(--lavender);
    font-size: 1rem;
}
.speaker-topics li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--pink);
    border-radius: 50%;
}

/* --------------------------------------------------------------------------
   Tracks — Zine / tabbed magazine
   -------------------------------------------------------------------------- */
.section-tracks {
    background: var(--dark-blue-alt);
    padding-bottom: 0;
}
.tracks-eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--pink);
    margin-bottom: 12px;
    font-weight: 600;
}

/* Tab bar */
.tracks-tabs {
    display: flex;
    gap: 6px;
    padding: 0 var(--gap);
    max-width: var(--container-width);
    margin: 0 auto 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 3;
}
.tracks-tabs::-webkit-scrollbar {
    display: none;
}

.tracks-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--muted);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    cursor: pointer;
    white-space: nowrap;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
    position: relative;
}
.tracks-tab-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--track-color);
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.tracks-tab:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
}
.tracks-tab:hover .tracks-tab-dot {
    opacity: 0.7;
}

.tracks-tab.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}
.tracks-tab.active .tracks-tab-dot {
    opacity: 1;
}

/* Content panels */
.tracks-panel {
    display: none;
    position: relative;
    min-height: 400px;
    overflow: hidden;
    background: var(--dark-blue-alt);
}
.tracks-panel.active {
    display: block;
}

/* Noise inherited from body::after — no extra overlay needed */
.tracks-panel-noise {
    display: none;
}

/* Ghost watermark */
.tracks-panel-wm {
    position: absolute;
    right: -2%;
    bottom: 0;
    font-family: var(--font-heading);
    font-size: clamp(100px, 14vw, 240px);
    font-weight: 900;
    font-style: italic;
    color: var(--track-color);
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    letter-spacing: -0.04em;
    transform: translateX(60px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.tracks-panel.active .tracks-panel-wm {
    opacity: 0.06;
    transform: translateX(0);
}

.tracks-panel-body {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: clamp(48px, 6vw, 80px) var(--gap) clamp(60px, 8vw, 100px);
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: start;
}

/* Left: track identity */
.tracks-panel-header {
    position: sticky;
    top: 120px;
    padding-right: clamp(20px, 3vw, 36px);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.tracks-panel-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--track-color);
    display: block;
    margin-bottom: 16px;
}
.tracks-panel-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.tracks-panel-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Right: sessions */
.tracks-panel-sessions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 2.4vw, 32px);
}
.tracks-panel-empty {
    color: var(--muted);
    font-style: italic;
    font-size: 0.95rem;
    margin: 0;
    grid-column: 1 / -1;
}

.tracks-session {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    width: 100%;
    padding: 28px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 3px solid var(--track-color);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.tracks-session:hover,
.tracks-session:focus-visible {
    background: rgba(255, 255, 255, 0.05);
    border-color: color-mix(in srgb, var(--track-color) 35%, rgba(255, 255, 255, 0.07));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.tracks-session:focus-visible {
    outline: 2px solid var(--track-color);
    outline-offset: 3px;
}

.tracks-session-time {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--track-color);
    margin-bottom: 12px;
}
.tracks-session-title {
    font-size: clamp(1.2rem, 1.6vw, 1.45rem);
    font-weight: 800;
    font-style: italic;
    color: var(--white);
    margin: 0 0 12px;
    line-height: 1.25;
}
.tracks-session-desc {
    font-size: 0.95rem;
    color: var(--lavender);
    margin: 0;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tracks-session-speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 16px;
}
.tracks-session-speaker-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.tracks-session-speaker-avatar {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    overflow: hidden;
    background: color-mix(in srgb, var(--track-color) 25%, var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}
.tracks-session-speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tracks-session-speaker-initial {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
}
.tracks-session-speaker-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lavender);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Education sub-tracks — full-width section dividers within the unified grid */
.tracks-subtrack {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: subgrid;
    gap: clamp(20px, 2.4vw, 32px);
    padding-top: clamp(16px, 2vw, 28px);
}
.tracks-subtrack:first-child {
    padding-top: 0;
}
.tracks-subtrack:not(:first-child)::before {
    content: "";
    grid-column: 1 / -1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: clamp(8px, 1.4vw, 16px);
}
.tracks-subtrack-name {
    grid-column: 1 / -1;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--track-color);
    margin: 0;
    line-height: 1.3;
}
.tracks-subtrack-desc {
    grid-column: 1 / -1;
    font-size: 0.95rem;
    color: var(--muted);
    margin: -8px 0 4px;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .tracks-panel-sessions {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Schedule — Poster / typographic timeline
   -------------------------------------------------------------------------- */
.section-schedule {
    background: var(--dark-blue);
}
.sched-eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--pink);
    margin-bottom: 12px;
    font-weight: 600;
}

.sched-poster {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gap);
    position: relative;
    z-index: 1;
}

/* --- Breaks: minimal thin lines --- */
.sched-break {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 6px 0;
}
.sched-break-time {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    min-width: 68px;
    letter-spacing: 0.02em;
}
.sched-break-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}
.sched-break-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.sched-break-dur {
    font-size: 0.85rem;
    color: var(--text-dim);
    opacity: 0.5;
}
.sched-break-moderator {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    padding: 0 0 6px 84px;
}
.sched-break-moderator-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-dim);
}

/* --- Keynotes: dramatic full-width blocks --- */
.sched-keynote {
    position: relative;
    margin: 12px 0;
    padding: 48px clamp(32px, 5vw, 60px);
    background: rgba(249, 50, 126, 0.08);
    border: 1px solid rgba(249, 50, 126, 0.15);
    border-left: 4px solid var(--pink);
    border-radius: var(--radius-md);
    overflow: hidden;
}
/* Keynote noise — inherits body noise, no extra layer needed */
.sched-keynote-noise {
    display: none;
}
.sched-keynote-inner {
    position: relative;
    z-index: 1;
}
.sched-keynote-time {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--pink);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
.sched-keynote-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    margin: 0 0 8px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.sched-keynote-speaker {
    font-size: 1rem;
    color: var(--lavender);
    margin: 0;
    font-weight: 600;
}

/* --- General events: clean rows --- */
.sched-event {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.sched-event-time {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted);
    min-width: 68px;
    letter-spacing: 0.02em;
}
.sched-event-body {
    flex: 1;
    min-width: 0;
}
.sched-event-title {
    font-size: 1.05rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}
.sched-event-speaker {
    font-size: 1rem;
    color: var(--lavender);
    margin: 4px 0 0;
}

/* --- Schedule speaker chips (avatar + name), shared by keynote + events --- */
.sched-speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 8px;
}
.sched-speakers--keynote {
    margin-top: 14px;
}
.sched-speaker-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.sched-speaker-avatar {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(249, 50, 126, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sched-speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sched-speaker-initial {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
}
.sched-speaker-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--lavender);
    white-space: nowrap;
}
.sched-event-badge {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: var(--radius-lg);
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-dim);
}
.sched-event--breakout .sched-event-title {
    color: var(--lavender);
}
.sched-event--breakout .sched-event-badge {
    background: rgba(249, 50, 126, 0.1);
    color: var(--pink);
}
.sched-event--awards .sched-event-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
}

/* --- Track session slots: visual burst --- */
.sched-tracks-slot {
    margin: 16px 0;
    padding: 28px clamp(24px, 4vw, 36px);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}
.sched-tracks-slot-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
}
.sched-tracks-slot-time {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}
.sched-tracks-slot-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pink);
}

.sched-tracks-chips {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}
.sched-track-chip {
    display: block;
    padding: 14px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--track-color);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    text-decoration: none;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}
.sched-track-chip:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transform: translateX(4px);
}
.sched-track-chip-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--track-color);
    margin-bottom: 4px;
}
.sched-track-chip-session {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Awards
   -------------------------------------------------------------------------- */
.section-awards {
    background: var(--dark-blue-alt);
    overflow-x: clip;
    overflow-y: visible;
    padding-bottom: 40px;
}
.awards-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.awards-hero {
    position: sticky;
    top: 100px;
}
.awards-image {
    width: 100%;
    border-radius: var(--radius-md);
}

/* Masonry grid for award photos */
.awards-masonry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 80px;
    gap: 8px;
}
.awards-masonry-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    background: var(--dark-blue);
}
/* Explicit placement — both columns end at the same row */
.awards-masonry-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 5;
}
.awards-masonry-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3;
}
.awards-masonry-item:nth-child(3) {
    grid-column: 1;
    grid-row: 5 / 7;
}
.awards-masonry-item:nth-child(4) {
    grid-column: 2;
    grid-row: 3 / 6;
}
.awards-masonry-item:nth-child(5) {
    grid-column: 1;
    grid-row: 7 / 9;
}
.awards-masonry-item:nth-child(6) {
    grid-column: 2;
    grid-row: 6 / 9;
}
.awards-masonry-item:nth-child(7) {
    grid-column: 1;
    grid-row: 9 / 11;
}
.awards-masonry-item:nth-child(8) {
    grid-column: 2;
    grid-row: 9 / 11;
}
/* Duotone overlay — dark blue shadows, pink highlights */
.awards-masonry-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--pink) 100%);
    mix-blend-mode: color;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease;
}
.awards-masonry-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--dark-blue);
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}
.awards-masonry-item:hover::before,
.awards-masonry-item:hover::after {
    opacity: 0;
}
.awards-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease;
}
.awards-masonry-item:hover img {
    filter: grayscale(0%) contrast(1);
}
.awards-masonry-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 14px 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    font-size: 0.78rem;
    color: var(--white);
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.awards-masonry-item:hover .awards-masonry-caption {
    opacity: 1;
}
.awards-masonry-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
}
.awards-placeholder-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--muted);
}
.awards-intro {
    font-size: 1rem;
    color: var(--lavender);
    margin-bottom: 32px;
}
.awards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.award-item {
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.015);
}
.award-item:hover {
    border-color: rgba(249, 50, 126, 0.18);
    background: rgba(249, 50, 126, 0.02);
    transform: translateX(6px);
}
.award-name {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 8px;
}
.award-desc {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 12px;
    line-height: 1.7;
}
.award-nominate {
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pink);
    text-decoration: none;
    transition: var(--transition);
}
.award-nominate:hover {
    letter-spacing: 0.18em;
    color: var(--pink-bright);
}

/* --------------------------------------------------------------------------
   Sponsors
   -------------------------------------------------------------------------- */
.section-sponsors {
    background: var(--dark-blue);
}
.sponsor-tiers {
    display: flex;
    flex-direction: column;
    margin-top: 48px;
}
.sponsor-tier-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 56px);
    padding: clamp(24px, 3vw, 40px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.sponsor-tier-group:first-child {
    border-top: none;
    padding-top: 0;
}
.sponsor-tier-group:last-child {
    padding-bottom: 0;
}
.sponsor-tier-group--2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.sponsor-tier-group--3 {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}
.sponsor-tier {
    display: grid;
    grid-template-columns: minmax(140px, 200px) 1fr;
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
}
.sponsor-tier-group--2 .sponsor-tier,
.sponsor-tier-group--3 .sponsor-tier {
    grid-template-columns: minmax(120px, 180px) 1fr;
    gap: clamp(16px, 2vw, 32px);
}
.sponsor-tier-group--2 .sponsor-tier + .sponsor-tier,
.sponsor-tier-group--3 .sponsor-tier + .sponsor-tier {
    padding-left: clamp(28px, 4vw, 56px);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.tier-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-dim);
    margin: 0;
    text-align: left;
}
.sponsor-logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(32px, 4vw, 56px);
}
@media (max-width: 768px) {
    .sponsor-tier-group--2,
    .sponsor-tier-group--3 {
        grid-template-columns: 1fr;
    }
    .sponsor-tier,
    .sponsor-tier-group--2 .sponsor-tier,
    .sponsor-tier-group--3 .sponsor-tier {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    .sponsor-tier-group--2 .sponsor-tier + .sponsor-tier,
    .sponsor-tier-group--3 .sponsor-tier + .sponsor-tier {
        padding-left: 0;
        padding-top: 24px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .tier-label {
        text-align: center;
    }
    .sponsor-logos {
        justify-content: center;
    }
}
.sponsor-logo {
    /* Tiers default to a "major" size; lower tiers (Power-Up and below) reduce these
       via tier-specific overrides. Per-logo --logo-scale (set inline) multiplies on top. */
    --logo-base-h: 80px;
    --logo-base-w: 260px;
    --logo-scale: 1;
    transition: transform 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sponsor-logo:hover {
    transform: translateY(-2px);
}
.sponsor-logo img {
    max-height: calc(var(--logo-base-h) * var(--logo-scale));
    max-width: calc(var(--logo-base-w) * var(--logo-scale));
    width: auto;
    display: block;
}

/* Top tier — biggest */
.sponsor-tier-visionary .sponsor-logo,
.sponsor-tier-corporate .sponsor-logo {
    --logo-base-h: 110px;
    --logo-base-w: 320px;
}

/* Power-Up downward — 40% smaller than the major-tier default */
.sponsor-tier-power_up .sponsor-logo,
.sponsor-tier-scholarship .sponsor-logo,
.sponsor-tier-technology .sponsor-logo,
.sponsor-tier-track .sponsor-logo,
.sponsor-tier-event .sponsor-logo,
.sponsor-tier-supporter .sponsor-logo {
    --logo-base-h: 48px;
    --logo-base-w: 156px;
}
.sponsor-name-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    font-style: italic;
    color: var(--lavender);
}
.sponsors-cta {
    text-align: center;
    padding: 60px 0;
}
.sponsors-cta p {
    font-size: 1.05rem;
    color: var(--lavender);
    margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   Venue
   -------------------------------------------------------------------------- */
.section-venue {
    background: var(--dark-blue);
    padding: 0;
}
.venue-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}
.venue-photo {
    position: relative;
    overflow: hidden;
}
.venue-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.venue-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px);
}
.venue-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 36px;
    line-height: 1.1;
}
.venue-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}
.venue-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.venue-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}
.venue-detail-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.venue-detail-item span:first-child {
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
}
.venue-detail-item span:last-child {
    color: var(--muted);
    font-size: 1rem;
}
.venue-directions-btn {
    width: auto;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 40px;
}
.venue-host-sponsor {
    margin-top: auto;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.venue-host-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 700;
}
.venue-logo-wsu {
    height: 42px;
    width: auto;
    align-self: flex-start;
}
.venue-host-name {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* --------------------------------------------------------------------------
   Tickets Page
   -------------------------------------------------------------------------- */
.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ticket-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
}
.ticket-card-info {
    flex: 1;
    min-width: 0;
}
.ticket-card-name {
    font-size: 1.1rem;
    font-weight: 800;
    font-style: italic;
    color: var(--white);
    margin: 0 0 4px;
}
.ticket-card-desc {
    font-size: 1rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}
.ticket-card-action {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.ticket-card-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}
.ticket-card-soldout {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    padding: 10px 24px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
}
.tickets-note {
    font-size: 1rem;
    color: var(--text-dim);
    margin-top: 24px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   Scholarship Page
   -------------------------------------------------------------------------- */

/* Hero banner */
.schol-hero {
    position: relative;
    background: var(--pink);
    padding: clamp(160px, 20vw, 240px) 0 clamp(80px, 10vw, 140px);
    overflow: hidden;
    text-align: center;
}
.schol-hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.15;
    pointer-events: none;
}
.schol-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.schol-hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--white);
    margin-bottom: 20px;
}
.schol-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    font-style: italic;
    color: var(--dark-blue);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 32px;
}
.schol-hero-free {
    color: var(--white);
    position: relative;
}
.schol-hero-free::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: 2%;
    height: 0.12em;
    background: var(--dark-blue);
    opacity: 0.3;
    border-radius: 2px;
}
.schol-hero-offer {
    margin-bottom: 36px;
}
.schol-hero-offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.schol-hero-offer-label {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark-blue);
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 20px;
    border-radius: var(--radius-lg);
}
.schol-hero-offer-plus {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    opacity: 0.5;
}
.schol-hero-sub {
    font-size: 1.1rem;
    color: rgba(25, 38, 82, 0.8);
    line-height: 1.8;
    margin: 0 auto;
    max-width: 560px;
}
.schol-hero-cta {
    margin-top: 36px;
    padding: 20px 52px;
    font-size: 1rem;
}

/* Scholarship spotlight */
.schol-spotlight {
    background: var(--dark-blue);
    overflow: visible !important;
}
.schol-spotlight-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
.schol-spotlight-stat {
    position: sticky;
    top: 120px;
    text-align: center;
}
.schol-spotlight-number {
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: block;
}
.schol-spotlight-plus {
    color: var(--pink);
    font-size: 0.5em;
    vertical-align: super;
}
.schol-spotlight-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--pink);
    margin-top: 8px;
}
.schol-spotlight-info {
}
.schol-spotlight-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}
.schol-spotlight-info > p {
    font-size: 1rem;
    color: var(--lavender);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Eligibility */
.schol-eligible {
    margin: 28px 0;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
}
.schol-eligible-title {
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    margin: 0 0 16px;
}
.schol-eligible-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.schol-eligible-icon {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
}
.schol-eligible-yes .schol-eligible-icon {
    color: #10b981;
}
.schol-eligible-no .schol-eligible-icon {
    color: #ef4444;
}
.schol-eligible ul {
    padding: 0;
    margin: 0;
}
.schol-eligible li {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    padding-left: 14px;
    position: relative;
    list-style: none;
}
.schol-eligible li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
}
.schol-eligible-yes li::before {
    background: #10b981;
}
.schol-eligible-no li::before {
    background: #ef4444;
}

/* Quote */
.schol-quote {
    border-left: 3px solid var(--pink);
    padding: 20px 0 20px 28px;
    margin: 32px 0 0;
}
.schol-quote p {
    font-size: 1rem;
    color: var(--lavender);
    font-style: italic;
    line-height: 1.8;
    margin: 0 0 10px;
}
.schol-quote cite {
    font-size: 1rem;
    color: var(--muted);
    font-style: normal;
    font-weight: 600;
}

/* Steps */
.schol-steps-section {
    background: var(--dark-blue);
    padding-top: 0;
}
.scholarship-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}
.scholarship-step {
    padding: 32px 28px;
    text-align: center;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.scholarship-step-desc {
    display: flex;
    align-items: center;
    flex: 1;
}
.schol-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    color: var(--text-dim);
}
.scholarship-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pink);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.scholarship-step-title {
    font-size: 1rem;
    font-weight: 800;
    font-style: italic;
    color: var(--white);
    margin: 0 0 8px;
}
.scholarship-step-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Form */
.scholarship-form-wrapper {
    margin-top: 0;
}
.scholarship-form-title {
    font-size: 1.4rem;
    font-weight: 800;
    font-style: italic;
    color: var(--white);
    margin-bottom: 8px;
}
.scholarship-form-desc {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 28px;
}

/* Why popover — true floating tooltip */
.why-wrap {
    position: relative;
    display: inline;
    z-index: 50;
}
.scholarship-why-btn {
    background: none;
    border: none;
    color: var(--pink);
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0;
    font-family: var(--font-heading);
}
.scholarship-why-btn:hover {
    color: var(--pink-bright);
}
.why-popover {
    display: none;
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 24px 28px 24px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 200;
}
.why-popover.active {
    display: block;
}
.why-popover-arrow {
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--navy);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.why-popover-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    color: var(--lavender);
    line-height: 1.75;
    display: block;
}
.why-popover-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}
.why-popover-close:hover {
    color: var(--white);
}
@media (max-width: 768px) {
    .why-popover {
        width: 280px;
        left: 0;
        transform: none;
    }
    .why-popover-arrow {
        left: 24px;
        transform: rotate(45deg);
    }
}

/* Acknowledgement */
.scholarship-ack {
    margin-top: 24px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
}
.scholarship-ack-check {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 12px;
}
.scholarship-ack-check input[type="checkbox"] {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    accent-color: var(--pink);
    cursor: pointer;
    margin: 0;
    pointer-events: auto;
}
.scholarship-ack-check span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}
.scholarship-ack-disclaimer {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0;
    padding-left: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
    .schol-spotlight-layout {
        grid-template-columns: 1fr;
    }
    .schol-spotlight-stat {
        position: static;
        display: flex;
        align-items: baseline;
        gap: 16px;
        margin-bottom: 16px;
    }
}
@media (max-width: 768px) {
    .scholarship-steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .schol-step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
    .schol-eligible-cols {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   News
   -------------------------------------------------------------------------- */
.news-eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--pink);
    margin-bottom: 12px;
    font-weight: 600;
}

/* News listing grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 24px;
}
.news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 36px;
}
.news-card:hover {
    color: var(--white);
}
.news-card-date {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--pink);
    margin-bottom: 16px;
}
.news-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    color: var(--white);
    margin: 0 0 12px;
    line-height: 1.3;
}
.news-card-excerpt {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 20px;
    flex: 1;
}
.news-card-link {
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pink);
    transition: letter-spacing 0.3s ease;
}
.news-card:hover .news-card-link {
    letter-spacing: 0.18em;
    color: var(--pink-bright);
}

/* News article */
.news-container {
    max-width: 800px;
}
.news-back {
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 32px;
    transition: color 0.3s ease;
}
.news-back:hover {
    color: var(--pink);
}
.news-article-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.news-article-subtitle {
    font-size: 1.1rem;
    color: var(--lavender);
    line-height: 1.7;
    margin: 0 0 48px;
}
.news-article-body p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.5em;
}
.news-article-body a {
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.news-article-body a:hover {
    color: var(--pink-bright);
}
.news-quote {
    border-left: 3px solid var(--pink);
    padding: 20px 0 20px 28px;
    margin: 2em 0;
}
.news-quote p {
    font-size: 1.05rem;
    color: var(--lavender) !important;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 12px !important;
}
.news-quote cite {
    font-size: 1rem;
    color: var(--muted);
    font-style: normal;
    font-weight: 600;
}
.news-list {
    padding-left: 24px;
    margin: 1.5em 0;
}
.news-list li {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 12px;
    list-style: disc;
}
.news-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 48px 0;
}
.news-boilerplate h3 {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 8px;
}
.news-boilerplate p {
    font-size: 0.88rem !important;
    color: var(--text-dim) !important;
    line-height: 1.8;
    margin-bottom: 24px !important;
}

/* --------------------------------------------------------------------------
   Tickets CTA
   -------------------------------------------------------------------------- */
.section-tickets {
    background: var(--pink);
    position: relative;
    overflow: hidden;
}
.section-tickets::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.15;
    pointer-events: none;
}
.tickets-content {
    position: relative;
    z-index: 1;
}
.tickets-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    font-style: italic;
    color: var(--dark-blue);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.tickets-subtitle {
    font-size: 1rem;
    color: rgba(25, 38, 82, 0.7);
    max-width: 500px;
    margin: 0 auto 40px;
}

/* Ticket hero — split layout */
.ticket-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: stretch;
    position: relative;
    z-index: 1;
}
.ticket-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ticket-hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    background: var(--dark-blue);
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    align-self: flex-start;
}
.ticket-hero-desc {
    font-size: 1rem;
    color: rgba(25, 38, 82, 0.8);
    line-height: 1.8;
    margin: 0 0 20px;
    max-width: 440px;
}
.ticket-hero-note {
    font-size: 0.88rem;
    color: rgba(25, 38, 82, 0.5);
    margin: 0;
}
.ticket-hero-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}
.ticket-hero-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.ticket-hero-link:hover {
    background: #fff;
    transform: translateX(4px);
    color: var(--dark-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.ticket-hero-link-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    font-style: italic;
    color: var(--dark-blue);
}
.ticket-hero-link-action {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-blue);
    opacity: 0.7;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .ticket-hero {
        grid-template-columns: 1fr;
    }
    .ticket-hero-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .ticket-hero-desc {
        max-width: none;
    }
}

/* Price card */
.ticket-hero-right {
    display: flex;
    justify-content: center;
}
.ticket-hero-card {
    position: relative;
    background: var(--dark-blue);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
    max-width: none;
}
.ticket-hero-card-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.1;
    pointer-events: none;
}
.ticket-hero-card-inner {
    position: relative;
    z-index: 1;
    padding: 48px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.ticket-hero-card-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--pink);
    margin-bottom: 16px;
}
.ticket-hero-card-price {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.ticket-hero-card-dollar {
    font-size: 0.45em;
    vertical-align: super;
    margin-right: 2px;
}
.ticket-hero-card-urgency {
    font-size: 0.85rem;
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.03em;
}
.ticket-hero-btn {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .ticket-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ticket-hero-desc {
        max-width: none;
    }
    .ticket-hero-card {
        max-width: 360px;
        margin: 0 auto;
    }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--dark-blue);
    padding: 80px 0 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.035);
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-logo {
    display: none;
}
.footer-logo-img {
    height: 96px;
    width: auto;
}
.footer-presented {
    font-size: 0.88rem;
    color: var(--white);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.footer-flagship-logo {
    height: 20px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}
.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 8px;
}
.footer-nav a {
    font-size: 1rem;
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}
.footer-nav a:hover {
    color: var(--white);
}
.footer-social {
    display: flex;
    gap: 14px;
    padding-top: 8px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: var(--transition);
}
.footer-social a:hover {
    border-color: var(--pink);
    color: var(--pink);
    background: rgba(249, 50, 126, 0.05);
}
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.035);
    text-align: center;
}
.footer-bottom p {
    font-size: 0.88rem;
    color: var(--text-dim);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Arnaldo Chat Widget
   -------------------------------------------------------------------------- */

/* Arnaldo wrapper */
.arnaldo-wrap {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 10002;
}

/* FAB — single unified pill button */
.arnaldo-fab {
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    background: var(--dark-blue);
    border-radius: 60px;
    padding: 0;
    box-shadow:
        0 4px 24px rgba(249, 50, 126, 0.35),
        0 0 40px rgba(249, 50, 126, 0.15);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease;
    animation: arnaldo-glow 3s ease-in-out infinite;
}
.arnaldo-fab:hover {
    transform: scale(1.05);
    box-shadow:
        0 8px 40px rgba(249, 50, 126, 0.5),
        0 0 80px rgba(249, 50, 126, 0.25);
    animation: none;
}

.arnaldo-fab-content {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    height: 60px;
    border-radius: 60px;
    transition: gap 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.arnaldo-fab-expanded {
    gap: 14px;
}

/* Icon circle area */
.arnaldo-fab-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arnaldo-fab-icon svg {
    width: 40px;
    height: 40px;
}

/* Text area — hidden by default, slides in */
.arnaldo-fab-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    transition:
        max-width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease 0.1s,
        padding 0.5s ease;
    padding-right: 0;
}
.arnaldo-fab-expanded .arnaldo-fab-text {
    max-width: 200px;
    opacity: 1;
    padding-right: 24px;
}
.arnaldo-fab-text strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    font-style: italic;
    color: var(--white);
}
.arnaldo-fab-text span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Orbital icon elements */
.arnaldo-ring {
    transform-origin: 50% 50%;
    opacity: 0.5;
}
.arnaldo-ring-1 {
    animation: arnaldo-orbit 8s linear infinite;
}
.arnaldo-ring-2 {
    animation: arnaldo-orbit 5s linear infinite reverse;
}
.arnaldo-ring-3 {
    animation: arnaldo-orbit 3s linear infinite;
}
.arnaldo-core {
    animation: arnaldo-core-pulse 2s ease-in-out infinite;
}
.arnaldo-dot {
    transform-origin: 50% 50%;
    opacity: 0.8;
}
.arnaldo-dot-1 {
    animation: arnaldo-orbit 8s linear infinite;
}
.arnaldo-dot-2 {
    animation: arnaldo-orbit 8s linear infinite;
}
.arnaldo-dot-3 {
    animation: arnaldo-orbit 8s linear infinite;
}
.arnaldo-dot-4 {
    animation: arnaldo-orbit 8s linear infinite;
}

@keyframes arnaldo-orbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes arnaldo-core-pulse {
    0%,
    100% {
        r: 6;
        opacity: 1;
    }
    50% {
        r: 8;
        opacity: 0.7;
    }
}
@keyframes arnaldo-glow {
    0%,
    100% {
        box-shadow:
            0 4px 24px rgba(249, 50, 126, 0.35),
            0 0 40px rgba(249, 50, 126, 0.15);
    }
    50% {
        box-shadow:
            0 4px 40px rgba(249, 50, 126, 0.5),
            0 0 80px rgba(249, 50, 126, 0.25);
    }
}
.chat-panel {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 420px;
    max-height: 600px;
    background: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.97);
    transition: var(--transition);
    overflow: hidden;
}
.chat-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    border-radius: var(--radius-md);
}
.chat-panel.chat-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.chat-header-icon {
    flex-shrink: 0;
}
.chat-header-icon svg {
    animation: arnaldo-orbit 6s linear infinite;
}
.chat-header h4 {
    font-size: 1rem;
    font-style: italic;
    margin: 0;
    line-height: 1.2;
}
.chat-header-sub {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.05em;
}
.chat-header .chat-close {
    margin-left: auto;
}
.chat-close {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    padding: 0;
}
.chat-close:hover {
    color: var(--white);
}
.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 300px;
    max-height: 420px;
}
.chat-messages::-webkit-scrollbar {
    width: 4px;
}
.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.chat-bot {
    align-self: flex-start;
    max-width: 90%;
}
.chat-bot .chat-bubble {
    background: rgba(255, 255, 255, 0.06);
    padding: 14px 18px;
    border-radius: 14px 14px 14px 4px;
    color: var(--lavender);
}
.chat-user {
    align-self: flex-end;
    max-width: 80%;
}
.chat-user .chat-bubble {
    background: var(--pink);
    padding: 12px 18px;
    border-radius: 14px 14px 4px 14px;
    color: var(--white);
    font-size: 0.92rem;
}
/* Thinking animation */
.chat-thinking {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px 14px 14px 4px;
}
.chat-thinking-icon {
    flex-shrink: 0;
    color: var(--pink);
}
.chat-thinking-ring {
    transform-origin: 50% 50%;
    animation: arnaldo-orbit 1.5s linear infinite;
}
.chat-thinking-text {
    font-size: 0.88rem;
    color: var(--text-dim);
    animation: arnaldo-think-fade 1.5s ease-in-out infinite;
}
@keyframes arnaldo-think-fade {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}
.chat-error .chat-bubble {
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
}

/* Markdown inside bot bubbles */
.chat-bot .chat-bubble p {
    margin: 0 0 0.5em;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--lavender);
}
.chat-bot .chat-bubble p:last-child {
    margin-bottom: 0;
}
.chat-bot .chat-bubble strong {
    color: var(--white);
    font-weight: 700;
}
.chat-bot .chat-bubble .chat-heading {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin: 0.8em 0 0.3em;
}
.chat-bot .chat-bubble .chat-heading:first-child {
    margin-top: 0;
}
.chat-bot .chat-bubble em {
    font-style: italic;
}
.chat-bot .chat-bubble a {
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.chat-bot .chat-bubble a:hover {
    color: var(--pink-bright);
}
.chat-bot .chat-bubble ul {
    margin: 0.4em 0;
    padding-left: 16px;
}
.chat-bot .chat-bubble li {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--lavender);
    margin-bottom: 3px;
    list-style: disc;
}
.chat-bot .chat-bubble code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 0.82rem;
}
.chat-form {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.chat-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 10px 20px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}
.chat-form input:focus {
    border-color: rgba(249, 50, 126, 0.3);
}
.chat-form input::placeholder {
    color: var(--text-dim);
}
.chat-send {
    background: var(--pink);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.chat-send:hover {
    background: var(--pink-bright);
}

/* --------------------------------------------------------------------------
   Nomination Form
   -------------------------------------------------------------------------- */
.nomination-section {
    padding-top: calc(var(--section-pad) + 80px);
}
.nomination-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: clamp(32px, 5vw, 56px);
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(249, 50, 126, 0.35);
    box-shadow: 0 0 0 3px rgba(249, 50, 126, 0.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}
.form-group select {
    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='%23B8A9D4' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group select option {
    background: var(--dark-blue);
    color: var(--white);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --------------------------------------------------------------------------
   SpamGuard — Slide to Submit
   -------------------------------------------------------------------------- */
.sg-slider-wrap {
    margin-top: 24px;
}
.sg-slider-track {
    position: relative;
    height: 56px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 56px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}
.sg-slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 24px;
    background: linear-gradient(
        90deg,
        rgba(249, 50, 126, 0.15),
        rgba(249, 50, 126, 0.3)
    );
    border-radius: 56px;
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.sg-slider-thumb {
    position: absolute;
    left: 2px;
    top: 2px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 12px rgba(249, 50, 126, 0.3);
}
.sg-slider-thumb::after {
    content: "";
    width: 16px;
    height: 16px;
    border-right: 2.5px solid white;
    border-top: 2.5px solid white;
    transform: rotate(45deg);
    margin-left: -4px;
}
.sg-slider-active .sg-slider-thumb {
    cursor: grabbing;
    box-shadow: 0 4px 20px rgba(249, 50, 126, 0.5);
}
.sg-slider-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}
.sg-slider-check {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--pink);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.sg-slider-complete {
    border-color: rgba(249, 50, 126, 0.3);
}
.sg-slider-complete .sg-slider-fill {
    background: linear-gradient(
        90deg,
        rgba(249, 50, 126, 0.15),
        rgba(249, 50, 126, 0.25)
    );
}
@keyframes sg-shake {
    0%,
    100% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-6px);
    }
    40% {
        transform: translateX(6px);
    }
    60% {
        transform: translateX(-4px);
    }
    80% {
        transform: translateX(4px);
    }
}
.sg-slider-shake {
    animation: sg-shake 0.5s ease;
}
.sg-slider-shake .sg-slider-track {
    border-color: rgba(255, 80, 80, 0.5);
}
.form-section-title {
    font-size: 1rem;
    font-style: italic;
    color: var(--lavender);
    margin: 32px 0 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.award-desc-display {
    font-size: 1rem;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 24px;
    min-height: 20px;
}

/* --------------------------------------------------------------------------
   Scroll Reveal
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive — Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .stats-row {
        gap: 0;
    }
    .stat {
        padding: 12px 20px;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .stat-divider {
        height: 36px;
    }
    .about-stats-banner {
        margin-bottom: 48px;
        padding: 36px 0;
    }
    .speaker-feature {
        grid-template-columns: 1fr;
        padding-left: 0;
    }
    .speaker-image-wrap {
        max-height: 50vh;
    }
    .awards-layout {
        grid-template-columns: 1fr;
    }
    .awards-hero {
        order: -1;
        position: static;
        align-self: auto;
    }
    .awards-masonry {
        margin-top: 0;
        height: auto;
        grid-template-rows: auto;
    }
    .awards-masonry-item:nth-child(n) {
        grid-column: auto;
        grid-row: span 1;
    }
    .venue-layout {
        grid-template-columns: 1fr;
    }
    .venue-photo {
        max-height: 300px;
    }
    .venue-logo-wsu {
        height: 28px;
    }
    .venue-directions-btn {
        align-self: stretch;
        text-align: center;
    }
    .tracks-panel-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .tracks-panel-header {
        position: static;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 24px;
    }
    .sched-tracks-chips {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

/* --------------------------------------------------------------------------
   Responsive — Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    /* Remove backdrop-filter on scrolled nav at mobile — it creates a stacking context that traps the overlay */
    .main-nav.nav-scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(10, 6, 24, 0.97);
    }
    /* Mobile nav overlay */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #0a0618;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .nav-open .nav-links {
        opacity: 1;
        visibility: visible;
    }
    .nav-links a {
        font-family: var(--font-heading) !important;
        font-size: 1.4rem !important;
        font-style: italic !important;
        font-weight: 700 !important;
        color: var(--white) !important;
        letter-spacing: 0 !important;
    }
    .nav-toggle {
        display: flex;
        z-index: 10000;
    }
    .nav-open .nav-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }
    .nav-open .nav-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero stacks on mobile */
    .hero {
        flex-direction: column;
        min-height: 100svh;
    }
    .hero-burst {
        justify-content: flex-end;
        align-items: flex-start;
    }
    .hero-burst img {
        height: 130%;
        margin-right: -40%;
        margin-top: -15%;
        opacity: 0.5;
    }
    .hero-text {
        left: 0;
        right: 0;
        width: 100%;
        top: 0;
        bottom: 0;
        padding: 0 24px;
        justify-content: center;
        gap: 14px;
    }
    .hero-disrupt-img {
        width: 95%;
    }
    .hero-date-img {
        width: 40%;
        filter: brightness(0) invert(1);
    }
    .hero-text .hero-actions {
        flex-direction: row;
        gap: 10px;
        margin-top: 8px;
        animation: none;
    }
    .hero-text .hero-actions .btn {
        padding: 14px 28px;
        font-size: 0.88rem;
    }
    .hero-text .hero-actions .btn.btn-dark {
        background: var(--white);
        color: var(--pink);
        border: 2px solid var(--white);
    }
    .hero-text .hero-actions .btn.btn-primary {
        background: var(--pink);
        color: var(--white);
        border: 2px solid var(--pink);
    }
    .hero-sidebar {
        position: absolute;
        right: auto;
        left: 24px;
        top: auto;
        bottom: 24px;
        transform: none;
        z-index: 5;
    }
    .hero-sidebar-inner {
        align-items: flex-start;
    }
    #flipdown.flipdown {
        flex-direction: row !important;
        gap: 4px !important;
    }
    #flipdown .rotor-group {
        transform: scale(0.65);
        transform-origin: bottom left;
    }
    .scroll-indicator {
        display: none;
    }

    .tracks-tab-label {
        font-size: 0.85rem;
    }
    .tracks-tab {
        padding: 10px 14px;
        gap: 6px;
    }
    .tracks-tab-dot {
        width: 6px;
        height: 6px;
    }
    .tracks-panel-body {
        padding: clamp(32px, 5vw, 48px) var(--gap) clamp(40px, 6vw, 60px);
    }
    .tracks-panel-wm {
        font-size: clamp(80px, 22vw, 160px);
    }
    .tracks-panel-sessions {
        grid-template-columns: 1fr;
    }
    .sched-keynote {
        padding: 32px 24px;
    }
    .sched-keynote-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }
    .sched-tracks-chips {
        grid-template-columns: 1fr;
    }
    .sched-event {
        flex-wrap: wrap;
        gap: 8px;
    }
    .sched-event-badge {
        order: -1;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .stat {
        padding: 24px 16px;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .footer-social {
        justify-content: center;
    }

    .chat-panel {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 80px;
        max-height: 70vh;
    }

    .section-wm {
        font-size: clamp(60px, 18vw, 140px);
    }
}

/* --------------------------------------------------------------------------
   Responsive — Small
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(3rem, 18vw, 5rem);
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .countdown-unit {
        min-width: 44px;
    }
    .countdown-num {
        font-size: 1.3rem;
    }
    .hero-event-name {
        font-size: 0.85rem;
        letter-spacing: 0.25em;
    }
}

/* --------------------------------------------------------------------------
   Featured Speakers Strip
   -------------------------------------------------------------------------- */
.section-speakers-strip {
    padding-top: clamp(60px, 8vw, 100px);
    padding-bottom: clamp(60px, 8vw, 100px);
    background: #101a3d;
}
.speakers-strip-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--pink);
    margin: 0 0 12px;
}
.speakers-strip-lead {
    color: var(--lavender);
    margin: 12px 0 36px;
    font-size: 1rem;
    max-width: 560px;
}
.speakers-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .speakers-strip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .speakers-strip-grid { grid-template-columns: 1fr; }
}
.speaker-tile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.speaker-tile:hover,
.speaker-tile:focus-visible {
    background: rgba(249, 50, 126, 0.06);
    border-color: rgba(249, 50, 126, 0.35);
    transform: translateY(-2px);
}
.speaker-tile:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 2px;
}
.speaker-tile-photo {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--indigo), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}
.speaker-tile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.speaker-tile-initial {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
}
.speaker-tile-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.speaker-tile-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 2px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.speaker-tile-title {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* --------------------------------------------------------------------------
   Detail Modal — sessions + speakers
   -------------------------------------------------------------------------- */
.detail-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 5vh 16px;
    overflow-y: auto;
}
.detail-modal.open {
    display: flex;
}
.detail-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 4, 22, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.detail-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    padding: 40px clamp(24px, 5vw, 56px);
    color: var(--white);
    animation: detailModalIn 0.25s cubic-bezier(0.2, 0.8, 0.3, 1);
}
@keyframes detailModalIn {
    from { opacity: 0; transform: translateY(12px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.detail-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}
.detail-modal-close:hover {
    background: rgba(249, 50, 126, 0.2);
    transform: rotate(90deg);
}

.detail-content {
    --detail-accent: var(--pink);
}
.detail-track {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--detail-accent);
    background: color-mix(in srgb, var(--detail-accent) 12%, transparent);
    padding: 5px 12px;
    border-radius: var(--radius-lg);
    margin: 0 0 16px;
}
.detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    font-style: italic;
    color: var(--white);
    margin: 0 0 8px;
    line-height: 1.2;
    padding-right: 40px;
}
.detail-time {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--lavender);
    margin: 0 0 24px;
    text-transform: uppercase;
}
.detail-desc {
    color: var(--lavender);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0 0 28px;
}
.detail-desc p {
    margin: 0 0 14px;
}
.detail-desc p:last-child {
    margin-bottom: 0;
}
.detail-desc-empty {
    color: var(--text-dim);
    font-style: italic;
}
.detail-takeaways-heading {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--detail-accent);
    margin: 22px 0 14px;
}
.detail-desc p + .detail-takeaways-heading {
    margin-top: 18px;
}
.detail-takeaways-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.detail-takeaways-list li {
    position: relative;
    padding-left: 22px;
    color: var(--lavender);
    line-height: 1.55;
    font-size: 0.96rem;
}
.detail-takeaways-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.7em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--detail-accent);
}
.detail-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    margin-top: 4px;
}
.detail-section-empty {
    color: var(--text-dim);
    font-style: italic;
    font-size: 0.92rem;
}
.detail-section-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--detail-accent);
    margin: 0 0 16px;
}

.detail-speaker {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
.detail-speaker:last-child {
    margin-bottom: 0;
}
.detail-speaker-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--indigo), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.detail-speaker-avatar-large {
    width: 96px;
    height: 96px;
}
.detail-speaker-initial {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}
.detail-speaker-initial-large {
    font-size: 2.4rem;
}
.detail-speaker-info {
    min-width: 0;
}
.detail-speaker-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 2px;
}
.detail-speaker-meta {
    font-size: 0.85rem;
    color: var(--detail-accent, var(--pink));
    margin: 0 0 8px;
}
.detail-speaker-meta-large {
    font-size: 0.95rem;
    margin-top: 6px;
}
.detail-speaker-bio {
    color: var(--lavender);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}
.detail-speaker-bio-empty {
    color: var(--text-dim);
    font-style: italic;
}
.detail-speaker-hero {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

/* Speaker modal — "Speaking at" session list */
.detail-speaker-sessions {
    margin-top: 24px;
}
.detail-session-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.detail-session-item {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-left: 14px;
    border-left: 3px solid var(--detail-accent, var(--pink));
}
.detail-session-time {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
    min-width: 64px;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.detail-session-info {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 10px;
}
.detail-session-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
}
.detail-session-track {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--detail-accent, var(--pink));
    padding: 2px 8px;
    border-radius: var(--radius-lg);
    background: color-mix(in srgb, var(--detail-accent, var(--pink)) 14%, transparent);
    white-space: nowrap;
}

@media (max-width: 600px) {
    .detail-modal-dialog {
        padding: 32px 20px;
    }
    .detail-speaker {
        grid-template-columns: 48px 1fr;
        gap: 12px;
    }
    .detail-speaker-avatar {
        width: 48px;
        height: 48px;
    }
    .detail-speaker-hero {
        flex-direction: column;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-bg-img {
        animation: none;
        transform: scale(1);
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
    .main-nav,
    .chat-toggle,
    .chat-panel,
    .hero-petal,
    .scroll-indicator,
    .section-wm {
        display: none !important;
    }
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    .section {
        padding: 40px 0;
    }
    body {
        background: #fff;
        color: #000;
    }
    p,
    .session-desc,
    .track-session-desc,
    .award-desc {
        color: #333;
    }
    .section-title,
    .speaker-name,
    h1,
    h2,
    h3 {
        color: #000;
    }
}
