/* ==========================================================================
   AI-SEC GLOBAL SUMMIT 2026 — OFFICIAL B2B CYBERSECURITY EVENT SITE
   Visual Engine: Deep Dark Cyber, High Legibility, Glowing Accents, Clean Scroll
   ========================================================================== */

:root {
    --bg-base: #04060a;
    --bg-alt: #0a0e17;
    --bg-card: rgba(13, 18, 28, 0.7);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    --color-cyan: #00f0ff;
    --color-cyan-glow: rgba(0, 240, 255, 0.3);
    --color-red: #ff3333;
    --color-red-glow: rgba(255, 51, 51, 0.3);
    
    --text-main: #f0f4f8;
    --text-muted: #8b9bb4;
    --text-dim: #6b7280;

    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body.cyber-event-body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Canvas & Noise */
#cyber-bg-canvas {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.35;
}

.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 24px 24px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

/* Typography */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
p { color: var(--text-muted); font-size: 1.05rem; }
strong { color: var(--text-main); }
.accent-red { color: var(--color-red); }

/* Layout Container */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2.5rem; }
.flex-gap { display: flex; gap: 1rem; }

/* Sections */
.event-section { padding: 7rem 0; position: relative; border-bottom: 1px solid var(--border-subtle); }
.alt-bg { background-color: var(--bg-alt); }

.section-tag {
    font-family: var(--font-mono); font-size: 0.8rem; color: var(--color-cyan);
    letter-spacing: 3px; margin-bottom: 0.75rem; text-transform: uppercase;
}

.section-heading { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1rem; color: #ffffff; }
.section-sub { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin-bottom: 3.5rem; }

/* DELEGATE METRICS STYLING */
.delegate-metrics-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;
    margin-bottom: 4rem;
}
.d-metric-box {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    padding: 2.5rem 2rem; display: flex; flex-direction: column;
}
.metric-red { border-top: 3px solid var(--color-red); }
.metric-cyan { border-top: 3px solid var(--color-cyan); }

.d-val {
    font-family: var(--font-mono); font-size: 3.2rem; font-weight: 900;
    color: #ffffff; line-height: 1; margin-bottom: 0.75rem;
}
.metric-red .d-val { color: var(--color-red); text-shadow: 0 0 20px var(--color-red-glow); }
.metric-cyan .d-val { color: var(--color-cyan); text-shadow: 0 0 20px var(--color-cyan-glow); }

.d-lbl {
    font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700;
    color: #ffffff; letter-spacing: 1px; margin-bottom: 0.5rem;
}

/* ATTENDING ENTERPRISE LOGOS SHOWCASE (REAL SVG LOGOS) */
.attending-logos-wrapper { margin-top: 2rem; }
.logos-header {
    font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-dim);
    letter-spacing: 2px; text-transform: uppercase; text-align: center; margin-bottom: 2rem;
}

.company-logos-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem;
}

.company-logo-card {
    background: rgba(13, 18, 28, 0.8); border: 1px solid var(--border-subtle);
    padding: 1.75rem 1rem 1.25rem; text-align: center; display: flex; flex-direction: column;
    justify-content: center; align-items: center; transition: all 0.3s ease;
}
.company-logo-card:hover {
    border-color: var(--color-cyan);
    background: rgba(0, 240, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.1);
}

.brand-logo-img {
    height: 44px; width: auto; max-width: 130px;
    object-fit: contain; margin-bottom: 1rem;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 6px 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.company-logo-card:hover .brand-logo-img {
    transform: scale(1.1);
    background: rgba(255,255,255,0.15);
}

.logo-name {
    font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700;
    color: #ffffff; margin-bottom: 0.2rem;
}
.logo-sub { font-size: 0.7rem; color: var(--text-dim); font-family: var(--font-mono); }

/* Section CTA Bar */
.section-cta-bar {
    margin-top: 3.5rem;
    padding: 1.5rem 2rem;
    background: rgba(13, 18, 28, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.section-cta-bar span {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: #ffffff;
}

.cta-btn-group { display: flex; gap: 1rem; }

/* Speaker announcement note */
.speaker-announce-note {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 200, 0, 0.05);
    border: 1px solid rgba(255, 200, 0, 0.2);
    border-left: 3px solid #ffc800;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
}
.speaker-announce-note strong { color: #ffc800; }
.announce-pulse {
    width: 8px; height: 8px; min-width: 8px;
    border-radius: 50%;
    background: #ffc800;
    box-shadow: 0 0 8px #ffc800;
    animation: pulse-glow 1.5s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #ffc800; }
    50% { opacity: 0.4; box-shadow: 0 0 14px #ffc800; }
}

/* Buttons */
.btn-cyber-primary, .btn-cyber-secondary, .btn-cyber-cyan {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cyber-primary {
    background: var(--color-red);
    color: #ffffff;
    box-shadow: 0 0 15px var(--color-red-glow);
}
.btn-cyber-primary:hover {
    background: #e62e2e;
    box-shadow: 0 0 25px var(--color-red);
    transform: translateY(-2px);
}

.btn-cyber-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
}
.btn-cyber-secondary:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.btn-cyber-cyan {
    background: var(--color-cyan);
    color: #000000;
    box-shadow: 0 0 15px var(--color-cyan-glow);
}
.btn-cyber-cyan:hover {
    background: #00d8e6;
    box-shadow: 0 0 25px var(--color-cyan);
    transform: translateY(-2px);
}

.btn-large { padding: 1.1rem 2.2rem; font-size: 0.95rem; }
.w-100 { width: 100%; text-align: center; }

/* ==========================================================================
   NAVBAR
========================================================================== */
.event-navbar {
    position: sticky;
    top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(4, 6, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 1.25rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
    font-family: var(--font-mono); font-weight: 800; font-size: 1.25rem;
    color: #ffffff; text-decoration: none; display: flex; align-items: center; gap: 0.75rem;
}
.logo-pulse { width: 8px; height: 8px; background: var(--color-cyan); border-radius: 50%; box-shadow: 0 0 10px var(--color-cyan); }
.nav-links { display: flex; gap: 1rem; }
.nav-links a {
    color: var(--text-muted); text-decoration: none; font-size: 0.8rem;
    font-weight: 500; transition: color 0.3s; white-space: nowrap;
}
.nav-links a:hover { color: var(--color-cyan); }
.nav-link-secondary { /* hide lower-priority links on mid screens */ }

.nav-cta-group { display: flex; gap: 0.5rem; align-items: center; }
.btn-nav-partner { padding: 0.6rem 0.9rem; font-size: 0.7rem; }

/* Hide secondary nav items at 1200px */
@media (max-width: 1200px) {
    .nav-link-secondary { display: none; }
    .nav-links { gap: 0.75rem; }
    .btn-nav-partner { display: none; }
}

/* ==========================================================================
   HERO
========================================================================== */
.event-hero {
    padding: 7rem 0 5rem;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.4rem 1rem; background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700;
    color: var(--color-cyan); margin-bottom: 2rem;
}
.badge-dot { width: 6px; height: 6px; background: var(--color-cyan); border-radius: 50%; }

.hero-title { font-size: clamp(3.2rem, 7vw, 5.5rem); margin-bottom: 1.5rem; color: #ffffff; }
.hero-gradient-text {
    background: linear-gradient(90deg, #ffffff, var(--color-cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-subtitle { font-size: 1.35rem; max-width: 800px; color: var(--text-muted); margin-bottom: 3rem; }

/* COUNTDOWN TIMER */
.countdown-container {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    padding: 2rem; max-width: 650px; margin-bottom: 3rem;
}
.countdown-label { font-family: var(--font-mono); font-size: 0.75rem; color: var(--color-cyan); letter-spacing: 2px; margin-bottom: 1rem; }
.countdown-timer { display: flex; align-items: center; gap: 1.5rem; }
.time-block { display: flex; flex-direction: column; align-items: center; }
.time-val { font-family: var(--font-mono); font-size: 2.2rem; font-weight: 800; color: #ffffff; }
.time-unit { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-dim); }
.time-sep { font-family: var(--font-mono); font-size: 2rem; color: var(--color-cyan); opacity: 0.5; }

.hero-actions { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-facts-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem;
    border-top: 1px solid var(--border-subtle); padding-top: 2.5rem;
}
.fact-card { display: flex; flex-direction: column; }
.fact-num { font-family: var(--font-mono); font-size: 1.15rem; font-weight: 700; color: #ffffff; }
.fact-lbl { font-size: 0.75rem; color: var(--text-dim); font-family: var(--font-mono); }

/* ==========================================================================
   ABOUT
========================================================================== */
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; }
.about-card { background: var(--bg-card); border: 1px solid var(--border-subtle); padding: 3rem; }
.about-card h3 { font-size: 1.6rem; margin-bottom: 1.5rem; color: #ffffff; }
.lead-p { font-size: 1.2rem; color: var(--text-main); margin-bottom: 1.5rem; }
.highlight-box {
    margin-top: 2rem; padding: 1.25rem; background: rgba(255, 51, 51, 0.08);
    border-left: 3px solid var(--color-red); font-size: 0.95rem; color: var(--text-main);
}

.audience-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.audience-list li { display: flex; gap: 1.25rem; align-items: flex-start; }
.role-icon {
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 800;
    color: var(--color-cyan); border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0.3rem 0.6rem; flex-shrink: 0;
}
.audience-list p { font-size: 0.9rem; margin-top: 0.2rem; }

/* ==========================================================================
   TRACKS
========================================================================== */
.tracks-container { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.track-card { background: var(--bg-card); border: 1px solid var(--border-subtle); padding: 3rem; display: flex; flex-direction: column; }
.card-offense { border-top: 3px solid var(--color-red); }
.card-defense { border-top: 3px solid var(--color-cyan); }

.track-badge {
    display: inline-block; font-family: var(--font-mono); font-size: 0.75rem;
    font-weight: 700; padding: 0.2rem 0.6rem; margin-bottom: 1rem;
}
.badge-red { background: rgba(255, 51, 51, 0.1); color: var(--color-red); border: 1px solid var(--color-red); }
.badge-cyan { background: rgba(0, 240, 255, 0.1); color: var(--color-cyan); border: 1px solid var(--color-cyan); }

.track-card h3 { font-size: 1.8rem; margin-bottom: 0.5rem; color: #ffffff; }
.track-time { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-dim); display: block; margin-bottom: 1.5rem; }
.track-desc { margin-bottom: 2rem; font-size: 1.05rem; }

.track-topics { list-style: none; flex: 1; margin-bottom: 2rem; }
.track-topics li {
    padding: 0.8rem 0; border-top: 1px solid var(--border-subtle);
    color: var(--text-muted); font-size: 0.95rem; display: flex; gap: 0.75rem;
}
.card-offense .track-topics li::before { content: '///'; color: var(--color-red); font-family: var(--font-mono); font-size: 0.75rem; }
.card-defense .track-topics li::before { content: '///'; color: var(--color-cyan); font-family: var(--font-mono); font-size: 0.75rem; }

.track-card-cta { margin-top: auto; }

/* ==========================================================================
   FULL MASTER AGENDA & BREAK STYLES
========================================================================== */
.agenda-timeline { max-width: 950px; }

.timeline-block-header {
    font-family: var(--font-mono); font-size: 0.85rem; font-weight: 700;
    padding: 0.75rem 1.25rem; margin: 2rem 0 1rem;
}
.header-red { background: rgba(255, 51, 51, 0.1); color: var(--color-red); border-left: 3px solid var(--color-red); }
.header-cyan { background: rgba(0, 240, 255, 0.1); color: var(--color-cyan); border-left: 3px solid var(--color-cyan); }

.timeline-row {
    display: flex; gap: 2.5rem; padding: 1.75rem; background: var(--bg-card);
    border: 1px solid var(--border-subtle); margin-bottom: 0.75rem;
    transition: transform 0.2s, border-color 0.2s;
}
.timeline-row:hover { border-color: rgba(255, 255, 255, 0.2); transform: translateX(5px); }

.row-break {
    background: rgba(0, 240, 255, 0.03);
    border-color: rgba(0, 240, 255, 0.2);
}

.row-time {
    font-family: var(--font-mono); font-size: 0.95rem; font-weight: 700;
    color: #ffffff; width: 140px; flex-shrink: 0;
}
.row-content { flex: 1; }

.type-tag {
    font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700;
    padding: 0.2rem 0.5rem; border: 1px solid var(--border-subtle);
    margin-bottom: 0.75rem; display: inline-block;
}
.tag-red { border-color: var(--color-red); color: var(--color-red); }
.tag-cyan { border-color: var(--color-cyan); color: var(--color-cyan); }
.tag-gray { background: rgba(255, 255, 255, 0.08); color: var(--text-main); }
.tag-outline { color: var(--text-muted); }
.tag-break { background: rgba(0, 240, 255, 0.1); border-color: var(--color-cyan); color: var(--color-cyan); }

.row-content h4 { font-size: 1.2rem; margin-bottom: 0.4rem; color: #ffffff; }
.row-content p { font-size: 0.95rem; margin: 0; }

/* ==========================================================================
   SPEAKERS
========================================================================== */
.speakers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.speaker-card { background: var(--bg-card); border: 1px solid var(--border-subtle); padding: 2.5rem 2rem; text-align: center; }
.speaker-avatar {
    width: 80px; height: 80px; margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: center;
}
.avatar-placeholder { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 800; color: var(--color-cyan); }
.speaker-card h4 { font-size: 1.1rem; margin-bottom: 0.4rem; color: #ffffff; }
.speaker-role { font-family: var(--font-mono); font-size: 0.75rem; color: var(--color-cyan); display: block; margin-bottom: 1rem; }

/* ==========================================================================
   PASSES / REGISTRATION
========================================================================== */
.passes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.pass-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    padding: 3.5rem 3rem; display: flex; flex-direction: column;
}
.card-featured { border-color: rgba(0, 240, 255, 0.4); box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.05); }

.pass-badge {
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700;
    color: var(--color-red); border: 1px solid var(--color-red);
    padding: 0.25rem 0.6rem; align-self: flex-start; margin-bottom: 1.5rem;
}
.pass-card h3 { font-size: 1.6rem; margin-bottom: 0.5rem; color: #ffffff; }
.pass-price { font-family: var(--font-mono); font-size: 2.5rem; font-weight: 800; color: #ffffff; margin: 1rem 0; }
.price-period { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pass-desc { margin-bottom: 2rem; }

.pass-features { list-style: none; flex: 1; margin-bottom: 2.5rem; }
.pass-features li {
    padding: 0.75rem 0; border-top: 1px solid var(--border-subtle);
    color: var(--text-muted); font-size: 0.95rem; display: flex; gap: 0.75rem;
}
.pass-features li::before { content: '✓'; color: var(--color-cyan); font-weight: 800; }

/* ==========================================================================
   PARTNERS & SPONSORSHIPS
========================================================================== */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.partner-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    padding: 2.5rem; display: flex; flex-direction: column; align-items: flex-start;
}
.p-type-tag {
    font-family: var(--font-mono); font-size: 0.7rem; font-weight: 800;
    color: var(--color-cyan); border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0.2rem 0.6rem; margin-bottom: 1rem;
}
.partner-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; color: #ffffff; }
.partner-card p { flex: 1; margin-bottom: 1.5rem; }

/* PARTNER INQUIRY MODAL */
#partner-modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 99999; background: rgba(2, 3, 5, 0.92); backdrop-filter: blur(15px);
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease; padding: 2rem;
}
#partner-modal.active { opacity: 1; pointer-events: auto; }

.partner-modal-box {
    background: var(--bg-card); border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 3.5rem 3rem; max-width: 650px; width: 100%; position: relative;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.15);
}
.modal-close-btn {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: none; font-size: 1.5rem; color: var(--text-muted);
    cursor: pointer; transition: color 0.3s;
}
.modal-close-btn:hover { color: var(--color-cyan); }

.partner-badge {
    display: inline-block; font-family: var(--font-mono); font-size: 0.7rem;
    color: var(--color-cyan); border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0.2rem 0.6rem; margin-bottom: 1rem;
}
.partner-modal-box h3 { font-size: 1.8rem; margin-bottom: 0.5rem; color: #ffffff; }
.partner-modal-box p { margin-bottom: 2rem; }
.cyber-select { cursor: pointer; }
.cyber-select option { background: #0a0e17; color: #ffffff; }

/* ==========================================================================
   BLOG & INSIGHTS HUB STYLING
========================================================================== */
.blog-cluster-section { margin-bottom: 5rem; }
.cluster-badge {
    display: inline-block; font-family: var(--font-mono); font-size: 0.85rem; font-weight: 800;
    color: var(--color-red); border: 1px solid var(--color-red);
    padding: 0.4rem 1rem; margin-bottom: 2.5rem; letter-spacing: 2px;
}
.cyan-badge { color: var(--color-cyan); border-color: var(--color-cyan); }

.blog-article-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    padding: 3.5rem; margin-bottom: 2.5rem; position: relative;
}
.blog-meta-header { display: flex; justify-content: space-between; margin-bottom: 1.5rem; }
.b-category {
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 800;
    padding: 0.2rem 0.6rem; border: 1px solid var(--border-subtle);
}
.cat-red { color: var(--color-red); border-color: var(--color-red); }
.cat-cyan { color: var(--color-cyan); border-color: var(--color-cyan); }
.b-read-time { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-dim); }

.blog-article-card h2 { font-size: 2rem; margin-bottom: 1.5rem; color: #ffffff; }

.blog-seo-box {
    background: rgba(0, 240, 255, 0.03); border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 1.25rem; font-size: 0.95rem; color: var(--text-main); margin-bottom: 2rem;
}
.keywords-list { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-dim); margin-top: 0.75rem; }

.article-body { font-size: 1.05rem; line-height: 1.7; color: var(--text-muted); }
.article-body h3 { font-size: 1.4rem; color: #ffffff; margin: 2rem 0 1rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 2rem; }
.article-body li { margin-bottom: 0.75rem; }

.lead-quote {
    font-size: 1.2rem; color: #ffffff; font-style: italic;
    border-left: 3px solid var(--color-cyan); padding-left: 1.5rem; margin-bottom: 2rem;
}

.blog-cta-banner {
    margin-top: 3rem; padding: 2rem; background: rgba(255, 51, 51, 0.05);
    border: 1px solid var(--color-red); display: flex; justify-content: space-between;
    align-items: center; gap: 2rem;
}
.blog-cta-banner h4 { font-size: 1.1rem; color: #ffffff; margin-bottom: 0.4rem; }
.blog-cta-banner p { font-size: 0.95rem; margin: 0; }

/* ==========================================================================
   FAQ
========================================================================== */
.faq-accordion { max-width: 900px; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-question {
    width: 100%; text-align: left; background: none; border: none;
    padding: 1.75rem 0; font-size: 1.25rem; font-weight: 700;
    font-family: var(--font-sans); color: #ffffff; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-question::after { content: '+'; font-family: var(--font-mono); font-size: 1.5rem; color: var(--color-cyan); }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 1.75rem; margin: 0; }

/* ==========================================================================
   HIGH-TECH CYBER PORTAL TRANSITION OVERLAY
========================================================================== */
#cyber-transition-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 99999;
    background: #020305;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#cyber-transition-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cyber-warp-center {
    position: relative;
    width: 200px; height: 200px;
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 3rem;
}

.warp-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--color-cyan);
    animation: warpSpin 2s linear infinite;
}
.ring-1 { width: 180px; height: 180px; border-top-color: transparent; }
.ring-2 { width: 130px; height: 130px; border-color: var(--color-red); border-bottom-color: transparent; animation-direction: reverse; animation-duration: 1.5s; }
.ring-3 { width: 80px; height: 80px; border-color: #ffffff; border-left-color: transparent; animation-duration: 1s; }

.warp-singularity {
    width: 20px; height: 20px;
    background: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 40px var(--color-cyan), 0 0 80px var(--color-red);
    animation: pulseSingularity 0.8s infinite alternate;
}

@keyframes warpSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes pulseSingularity { 0% { transform: scale(0.8); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 1; } }

.cyber-warp-status {
    text-align: center;
    font-family: var(--font-mono);
    max-width: 500px;
}

.status-pulse-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background-color: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-cyan);
    margin-bottom: 1rem;
    animation: pulseDot 1s infinite alternate;
}

#warp-status-text {
    font-size: 0.85rem;
    color: var(--color-cyan);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

#warp-progress-bar {
    width: 300px; height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    overflow: hidden;
}

.progress-fill {
    width: 0%; height: 100%;
    background: linear-gradient(90deg, var(--color-red), var(--color-cyan));
    transition: width 1.8s linear;
}

#cyber-transition-overlay.active .progress-fill {
    width: 100%;
}

/* ==========================================================================
   FOOTER
========================================================================== */
.event-footer { background: #020305; border-top: 1px solid var(--border-subtle); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 4rem; padding-bottom: 4rem; }
.footer-brand { font-family: var(--font-mono); font-weight: 800; font-size: 1.5rem; color: #ffffff; margin-bottom: 1rem; }
.footer-date { font-family: var(--font-mono); font-size: 0.8rem; color: var(--color-cyan); display: block; margin-top: 1rem; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { color: var(--text-main); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--color-cyan); }
.legal-text { font-size: 0.85rem; color: var(--text-dim); }

.footer-bottom { border-top: 1px solid var(--border-subtle); padding: 1.5rem 0; font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-dim); }
.bottom-flex { display: flex; justify-content: space-between; align-items: center; }
.status-indicator { color: var(--color-cyan); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero-title { font-size: 3rem; }
    .hero-actions { flex-direction: column; }
    .countdown-timer { flex-wrap: wrap; }
    .about-grid, .tracks-container, .passes-grid, .footer-grid, .partners-grid, .company-logos-grid, .delegate-metrics-grid { grid-template-columns: 1fr; }
    .section-cta-bar, .cta-btn-group, .blog-cta-banner { flex-direction: column; text-align: center; width: 100%; }
    .timeline-row { flex-direction: column; gap: 0.5rem; }
    .bottom-flex { flex-direction: column; gap: 1rem; text-align: center; }
    .partner-modal-box, .blog-article-card { padding: 2.5rem 1.5rem; }
}

/* ==========================================================================
   ORGANIZER STRIP & STRATEGIC PARTNER SHOWCASE
========================================================================== */

/* Organizer Strip Section */
.organizer-strip-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, rgba(0,10,25,0.95) 0%, rgba(5,15,35,0.98) 100%);
    border-bottom: 1px solid var(--border-subtle);
}

.organizer-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.organizer-label,
.sp-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    white-space: nowrap;
}

.organizer-logo-wrap {
    display: flex;
    align-items: center;
}

.organizer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255,215,0,0.25));
    transition: filter 0.3s;
}
.organizer-logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(255,215,0,0.5));
}

.organizer-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--border-subtle), transparent);
}

.strategic-partner-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.strategic-partner-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter 0.3s;
}
.strategic-partner-logo:hover {
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(255,120,0,0.4));
}

/* Strategic Partner Showcase in Partners Section */
.strategic-partner-showcase {
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(255,100,0,0.06) 0%, rgba(0,230,200,0.04) 100%);
    border: 1px solid rgba(255,100,0,0.25);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}
.strategic-partner-showcase::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, #FF6400, #FF9900);
}
.sp-cyan {
    background: linear-gradient(135deg, rgba(0,240,255,0.06) 0%, rgba(0,100,255,0.04) 100%);
    border-color: rgba(0,240,255,0.25);
}
.sp-cyan::before {
    background: linear-gradient(to bottom, #00f0ff, #0064ff);
}
.sp-cyan .sp-showcase-label { color: #00f0ff; }
.sp-cyan .sp-tag { background: rgba(0, 240, 255, 0.12); border-color: rgba(0, 240, 255, 0.3); color: #00f0ff; }

.sp-magenta {
    background: linear-gradient(135deg, rgba(255,51,153,0.06) 0%, rgba(153,0,255,0.04) 100%);
    border-color: rgba(255,51,153,0.25);
}
.sp-magenta::before {
    background: linear-gradient(to bottom, #ff3399, #9900ff);
}
.sp-magenta .sp-showcase-label { color: #ff3399; }
.sp-magenta .sp-tag { background: rgba(255, 51, 153, 0.12); border-color: rgba(255, 51, 153, 0.3); color: #ff3399; }

.partner-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.sp-showcase-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #FF9900;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.sp-showcase-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.sp-showcase-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(1.1);
}

.sp-showcase-info h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
}

.sp-showcase-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 0 1rem;
    line-height: 1.6;
}

.sp-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sp-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 1px;
    padding: 0.3rem 0.75rem;
    border-radius: 2px;
    background: rgba(255, 100, 0, 0.12);
    border: 1px solid rgba(255, 100, 0, 0.3);
    color: #FF9900;
    text-transform: uppercase;
}

/* Responsive for new sections */
@media (max-width: 900px) {
    .organizer-strip { flex-direction: column; gap: 1.5rem; text-align: center; }
    .organizer-divider { width: 60px; height: 1px; }
    .strategic-partner-wrap { align-items: center; }
    .sp-showcase-card { flex-direction: column; text-align: center; }
    .sp-tags { justify-content: center; }
}

/* ==========================================================================
   AI THREAT MATRIX SHOWCASE COMPONENTS
========================================================================== */

/* Terminal Window */
.terminal { background: #070C18; border: 1px solid var(--border-subtle); border-radius: 6px; margin: 2rem 0; overflow: hidden; }
.terminal-bar { background: #111827; padding: 0.6rem 1rem; display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid var(--border-subtle); }
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-red { background: #FF3B5C; }
.t-yellow { background: #FFB800; }
.t-green { background: #00FF88; }
.terminal-title { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); margin-left: auto; }
.terminal pre { font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.7; color: #A8B8D0; padding: 1.5rem; overflow-x: auto; white-space: pre; margin: 0;}
.terminal pre .c-cyan { color: var(--color-cyan); }
.terminal pre .c-red { color: var(--color-red); }
.terminal pre .c-muted { color: var(--text-dim); }

/* Severity Badge */
.severity-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 2px; margin-bottom: 1.5rem; }
.severity-high { background: rgba(255, 51, 51, 0.15); color: var(--color-red); border: 1px solid rgba(255, 51, 51, 0.4); }
.severity-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulseSeverity 1.5s infinite; }
@keyframes pulseSeverity { 0%,100%{opacity:1}50%{opacity:0.4} }

/* Cyber Table */
.cyber-table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-family: var(--font-mono); font-size: 0.85rem; }
.cyber-table th { text-align: left; padding: 0.85rem 1rem; background: var(--bg-card); color: var(--color-cyan); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; border-bottom: 2px solid var(--border-subtle); }
.cyber-table td { padding: 0.85rem 1rem; color: var(--text-muted); border-bottom: 1px solid var(--border-subtle); vertical-align: top; }
.cyber-table tr:last-child td { border-bottom: none; }
.cyber-table tr:hover td { background: rgba(0, 240, 255, 0.03); }
.cyber-table .risk-high { color: var(--color-red); font-weight: 700; }
.cyber-table .risk-med { color: var(--color-cyan); font-weight: 700; }

/* Layer Stack */
.layer-stack { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.layer-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 6px; padding: 1.5rem; display: flex; gap: 1.25rem; align-items: flex-start; transition: border-color 0.2s, transform 0.2s; }
.layer-card:hover { border-color: var(--color-cyan); transform: translateX(5px); }
.layer-num { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 800; color: var(--color-cyan); line-height: 1; flex-shrink: 0; width: 2.5rem; }
.layer-body h4 { font-family: var(--font-mono); font-size: 1.05rem; color: var(--text-main); margin-bottom: 0.4rem; }
.layer-body p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

/* Alert Box */
.alert-box { border-left: 3px solid var(--color-red); background: rgba(255, 51, 51, 0.07); border-radius: 0 6px 6px 0; padding: 1.5rem; margin: 2rem 0; }
.alert-box .alert-label { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; color: var(--color-red); letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.alert-box p { color: var(--text-muted); margin: 0; }

/* Checklist */
.checklist { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-family: var(--font-mono); font-size: 0.9rem; color: var(--text-muted); background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 4px; padding: 0.8rem 1rem; }
.checklist li::before { content: '[_]'; color: var(--color-cyan); flex-shrink: 0; font-weight: 700; }
.checklist li:hover::before { content: '[x]'; color: var(--color-red); }

/* Responsive adjustments */
@media (max-width: 640px) {
    .cyber-table { font-size: 0.75rem; }
    .cyber-table th, .cyber-table td { padding: 0.5rem; }
    .layer-card { flex-direction: column; gap: 0.75rem; }
}
