/* HAXD 2025 - Completely New Design - Human-AI Interaction Theme */

/* ============================================
   CSS CUSTOM PROPERTIES (Variables)
   ============================================ */
:root {
    /* Colors - Naples / Italian Heritage Theme */
    --primary: #B8510D;
    --primary-dark: #8B3A06;
    --primary-light: #D4722A;
    --secondary: #B8960C;
    --secondary-dark: #8A7009;
    --accent: #C45B28;
    --accent-dark: #A04A1E;
    
    /* Backgrounds - Warm Italian Cream */
    --bg: #FFF8F0;
    --surface: #ffffff;
    --surface-elevated: #FEF3E7;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Text Colors - Warm */
    --text: #2C1810;
    --text-light: #5C4033;
    --text-lighter: #8B7355;
    --text-white: #ffffff;
    
    /* Borders & Shadows */
    --border: #F0E0CC;
    --border-light: #FEF3E7;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 25px 50px -12px rgba(184, 81, 13, 0.25);
    
    /* Gradients - Terracotta to Gold */
    --gradient-primary: linear-gradient(135deg, #B8510D 0%, #D4AF37 100%);
    --gradient-hero: linear-gradient(135deg, rgba(184, 81, 13, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #C45B28 100%);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-out;
    --transition-slow: all 0.5s ease-in-out;
    
    /* Border Radius — Geometric system */
    --radius-sm: 4px;
    --radius: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-2xl: 12px;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Typography - Italian Elegance */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: var(--text-base);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    color: var(--text);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--text);
}

.text-secondary-gradient {
    background: linear-gradient(135deg, #B8510D 0%, #E07A3A 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-light);
    margin-bottom: var(--space-8);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-12);
    color: var(--text);
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #B8510D, #D4AF37);
    border-radius: var(--radius-full);
}

.page-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-4);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: var(--text-lg);
    color: var(--text-light);
    max-width: 36rem;
    margin: 0 auto;
}

.lead {
    font-size: var(--text-lg);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: var(--space-6);
    color: var(--text-light);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) 0;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar-custom.scrolled {
    padding: var(--space-3) 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.navbar-brand:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    margin: 0 var(--space-2);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(184, 81, 13, 0.1);
    text-decoration: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-base);
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #B8510D 0%, #8B3A06 100%);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(184, 81, 13, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 81, 13, 0.4);
    color: var(--text-white);
    text-decoration: none;
    background: linear-gradient(135deg, #8B3A06 0%, #7A3205 100%);
}

.btn-secondary {
    background: transparent;
    color: #B8510D;
    border: 2px solid rgba(184, 81, 13, 0.3);
}

.btn-secondary:hover {
    background: #B8510D;
    color: var(--text-white);
    border-color: #B8510D;
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(184, 81, 13, 0.25);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #FFF8F0 0%, #FEF3E7 40%, #FFF5E8 70%, #FFFAF2 100%);
    padding-top: 5rem;
    padding-bottom: var(--space-20);
}

/* Subtle dot grid pattern — evokes neural network / AI connections */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(184, 81, 13, 0.08) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

/* Soft gradient orbs */
.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 81, 13, 0.08) 0%, transparent 70%);
    animation: heroOrb 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.05); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.page-header {
    padding: 8rem 0 var(--space-16);
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 81, 13, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

/* ============================================
   CARDS & CONTENT
   ============================================ */
.card {
    background: var(--surface);
    border-radius: 8px;
    padding: var(--space-8);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(184, 81, 13, 0.1);
    border-color: rgba(184, 81, 13, 0.12);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #B8510D, #D4AF37);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleY(1);
}

.info-card {
    background: var(--surface);
    border-radius: 8px;
    padding: var(--space-8);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #B8510D, #D4AF37);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(184, 81, 13, 0.12);
    border-color: rgba(184, 81, 13, 0.15);
}

.info-card:hover::after {
    transform: scaleY(1);
}

.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, rgba(184, 81, 13, 0.1), rgba(245, 158, 11, 0.08));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    color: #B8510D;
    transition: all 0.35s ease;
}

.info-card:hover .card-icon {
    background: linear-gradient(135deg, #B8510D, #E07A3A);
    color: #ffffff;
    transform: scale(1.08);
}

.card-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
    font-family: var(--font-heading);
    color: var(--text);
}

.card-text {
    color: var(--text-light);
    font-size: var(--text-base);
    line-height: 1.6;
}

.content-card {
    background: var(--surface);
    border-radius: 10px;
    padding: var(--space-12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    margin: var(--space-8) 0;
    border: 1px solid var(--border-light);
}

.content-card::before {
    content: none;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stat-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: var(--text-base);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-item {
    background: var(--surface);
    border-radius: 8px;
    padding: var(--space-6) var(--space-6) var(--space-8);
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.timeline-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(184, 81, 13, 0.1);
    border-color: rgba(184, 81, 13, 0.15);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #B8510D, #D4AF37);
}

.timeline-date {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-2);
}

.timeline-title {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--text);
}

.timeline-desc {
    font-size: var(--text-sm);
    color: var(--text-light);
}

/* ============================================
   VENUE SECTION
   ============================================ */
.venue-image-main {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.venue-image-main:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.venue-image-main img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    transition: var(--transition-slow);
}

.venue-image-main:hover img {
    transform: scale(1.05);
}

.venue-image-secondary {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.venue-image-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.venue-image-secondary img {
    width: 100%;
    height: 11rem;
    object-fit: cover;
    transition: var(--transition-slow);
}

.venue-image-secondary:hover img {
    transform: scale(1.05);
}

.venue-features {
    padding: var(--space-6);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-6);
    padding: var(--space-5);
    background: var(--surface);
    border-radius: 6px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
}

.feature-item:hover {
    transform: translateX(6px);
    background: rgba(184, 81, 13, 0.03);
    border-color: rgba(184, 81, 13, 0.2);
    box-shadow: 0 8px 24px rgba(184, 81, 13, 0.08);
}

.feature-icon {
    font-size: var(--text-xl);
    margin-right: var(--space-4);
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 81, 13, 0.1), rgba(245, 158, 11, 0.08));
    border-radius: 6px;
    color: #B8510D;
    transition: all 0.35s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #B8510D, #E07A3A);
    color: #ffffff;
}

.feature-text h5 {
    color: var(--text);
    margin-bottom: var(--space-1);
    font-weight: 600;
    font-size: var(--text-base);
}

.feature-text p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: var(--text-sm);
    line-height: 1.5;
}

/* ============================================
   KEYNOTES & SPONSORS
   ============================================ */
.keynote-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

.keynote-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.keynote-image {
    margin-bottom: var(--space-6);
}

.speaker-placeholder {
    width: 100%;
    height: 12rem;
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-5xl);
    color: var(--primary);
}

.keynote-name {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--text);
}

.keynote-title {
    font-size: var(--text-base);
    color: var(--primary);
    margin-bottom: var(--space-4);
    font-weight: 500;
}

.keynote-bio {
    color: var(--text-light);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.keynote-talk h5 {
    color: var(--text);
    margin-bottom: var(--space-2);
    font-size: var(--text-base);
}

.keynote-talk p {
    color: var(--text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.keynote-links {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

/* Sponsor Cards */
.sponsor-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

.sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.sponsor-logo {
    margin-bottom: var(--space-4);
}

.logo-placeholder {
    width: 100%;
    height: 8rem;
    background: var(--gradient-hero);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    color: var(--primary);
    gap: var(--space-2);
}

.logo-placeholder.small {
    height: 6rem;
    font-size: var(--text-xl);
}

.tier-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
}

.tier-title.platinum { color: #9333ea; }
.tier-title.gold { color: #D4AF37; }
.tier-title.silver { color: #6b7280; }
.tier-title.academic { color: var(--primary); }

.sponsor-tier {
    margin-bottom: var(--space-16);
}

/* ============================================
   SPONSOR PAGES - Partner Cards & Tiers
   ============================================ */
.partner-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    background: var(--surface);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.logo-box {
    height: 80px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    background: var(--surface);
}

.logo-box img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Tier badges */
.badge-tier { font-weight: 700; }
.badge-platinum { background: linear-gradient(135deg, #64748b, #94a3b8); color: #fff; }
.badge-gold { background: linear-gradient(135deg, #eab308, #D4AF37); color: #111; }
.badge-silver { background: linear-gradient(135deg, #cbd5e1, #e2e8f0); color: #111; }
.badge-technical { background: #dcfce7; color: #065f46; }

/* Filter pills */
.filter-pills .btn { border-radius: var(--radius-full); }
.filter-pills .btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* IEEE Sponsor highlight */
.ieee-sponsor {
    background: linear-gradient(135deg, rgba(184, 81, 13, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 2px solid var(--primary);
}

/* Sponsorship tier cards */
.tier {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    height: 100%;
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.tier h4 { font-weight: 800; margin: 0; font-size: 1.25rem; }
.tier .price { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.tier ul { list-style: none; padding-left: 0; margin-bottom: 0; margin-top: 1rem; }
.tier li { display: flex; gap: 0.6rem; align-items: flex-start; margin: 0.5rem 0; font-size: 0.95rem; }
.tier li i { color: var(--secondary); flex-shrink: 0; margin-top: 0.15rem; }

/* Tier badge icons */
.tier-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.4);
    border: 1px solid rgba(2,6,23,.08);
    flex: 0 0 48px;
}
.tier-badge i {
    font-size: 1.25rem;
    line-height: 1;
    opacity: 0.95;
}

.tier-badge.badge-platinum {
    background: linear-gradient(135deg, #eef2f7 0%, #f8fafc 60%, #ffffff 100%);
    border-color: #d1d5db;
}
.tier-badge.badge-platinum i { color: #475569; }

.tier-badge.badge-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #D4AF37 50%, #E8C84A 100%);
    border-color: #eab308;
}
.tier-badge.badge-gold i { color: #4a3b03; }

.tier-badge.badge-silver {
    background: linear-gradient(135deg, #cbd5e1 0%, #e2e8f0 55%, #f1f5f9 100%);
    border-color: #cbd5e1;
}
.tier-badge.badge-silver i { color: #334155; }

/* Note callout */
.note-callout {
    border-left: 4px solid var(--secondary);
    background: #ecfeff;
    border: 1px solid #bae6fd;
    border-left-color: var(--secondary);
    border-radius: var(--radius);
    padding: var(--space-4);
}

/* Dates tables */
.dates-table thead th {
    background: #f8fafc;
    font-weight: 700;
}
.dates-table td del {
    color: #ef4444;
    opacity: 0.85;
}
.badge-soft {
    background: rgba(245, 158, 11, 0.75);
    color: #090909;
}
.badge-critical {
    background: rgba(184, 81, 13, 0.85);
    color: #fff;
}

/* Hero pills */
.hero-pills .pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius-full);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

/* Sticky CTA (mobile) */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), #fff 40%);
    border-top: 1px solid var(--border);
    padding: 0.75rem 1rem;
    display: none;
}
@media (max-width: 575.98px) {
    .sticky-cta { display: block; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text);
    color: var(--text-white);
    padding: var(--space-16) 0 var(--space-8);
    margin-top: var(--space-20);
}

.footer-brand img {
    filter: brightness(0) invert(1);
    margin-bottom: var(--space-4);
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 0;
}

.footer-links h5 {
    color: var(--text-white);
    margin-bottom: var(--space-4);
    font-size: var(--text-lg);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: var(--space-2);
}

.footer-links ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: var(--space-6);
    margin-top: var(--space-8);
    text-align: center;
    color: #9ca3af;
}

/* ============================================
   UTILITIES
   ============================================ */
/* ---- Page load transition ---- */
body {
    animation: pageIn .5s ease-out both;
}

@keyframes pageIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ---- Scroll-reveal animations ---- */
.fade-in,
.slide-in-left,
.slide-in-right,
.scale-in {
    opacity: 0;
    transition: opacity .6s ease-out, transform .6s ease-out;
    will-change: opacity, transform;
}

.fade-in        { transform: translateY(24px); }
.slide-in-left  { transform: translateX(-30px); }
.slide-in-right { transform: translateX(30px); }
.scale-in       { transform: scale(0.92); }

.fade-in.visible,
.slide-in-left.visible,
.slide-in-right.visible,
.scale-in.visible {
    opacity: 1;
    transform: none;
}

/* Stagger delays for grid children */
.stagger-children > *:nth-child(1)  { transition-delay: 0s; }
.stagger-children > *:nth-child(2)  { transition-delay: .08s; }
.stagger-children > *:nth-child(3)  { transition-delay: .16s; }
.stagger-children > *:nth-child(4)  { transition-delay: .24s; }
.stagger-children > *:nth-child(5)  { transition-delay: .32s; }
.stagger-children > *:nth-child(6)  { transition-delay: .40s; }
.stagger-children > *:nth-child(7)  { transition-delay: .48s; }
.stagger-children > *:nth-child(8)  { transition-delay: .56s; }
.stagger-children > *:nth-child(9)  { transition-delay: .64s; }
.stagger-children > *:nth-child(n+10) { transition-delay: .7s; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .venue-image-main img {
        height: 16rem;
    }
    
    .venue-image-secondary img {
        height: 8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: var(--space-3);
    }
    
    .keynote-links {
        justify-content: center;
    }
    
    .speaker-placeholder {
        height: 8rem;
        font-size: var(--text-3xl);
    }
    
    .logo-placeholder {
        height: 6rem;
    }
    
    .logo-placeholder.small {
        height: 4rem;
        font-size: var(--text-base);
    }
    
    .card, .content-card {
        padding: var(--space-6);
    }
    
    .hero {
        padding-top: 4rem;
        padding-bottom: var(--space-12);
    }
    
    .page-header {
        padding: 6rem 0 var(--space-12);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .keynote-links {
        flex-direction: column;
    }
}

