
        /* ============================================
       CSS VARIABLES & RESET
    ============================================ */
        :root {
            --purple: #8a2be2;
            --blue: #388ae9;
            --purple-light: #b48aff;
            --blue-light: #7ab8f5;
            --gold: #f5c842;
            --green: #22c55e;
            --dark: #0e0e12;
            --dark-2: #12121a;
            --mid: #16161e;
            --surface: #1c1c28;
            --border: rgba(255, 255, 255, 0.07);
            --text: #e8e8f2;
            --muted: #8888aa;
            --radius: 14px;
            --main-gradient: linear-gradient(135deg, var(--purple), var(--blue));
            --gold-gradient: linear-gradient(135deg, #f5c842, #ff9800);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', 'Segoe UI', sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* ============================================
       MOBILE OVERLAY
    ============================================ */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.55);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            z-index: 10;
        }

        .overlay.show {
            opacity: 1;
            visibility: visible;
        }

        /* ============================================
       HEADER / NAV
    ============================================ */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 16px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: rgba(14, 14, 18, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-image {
            border-radius: 50%;
            height: 3.2rem;
            width: 3.2rem;
            background-image: url("logo.png");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            flex-shrink: 0;
        }

        .logo-text {
            line-height: 1.2;
            font-size: 1.25rem;
            font-weight: 700;
        }

        .logo-text span {
            background: var(--main-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            z-index: 1001;
        }

        .nav-links ul {
            list-style: none;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 4px;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 0.9rem;
            opacity: 0.8;
            transition: all 0.2s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            opacity: 1;
            background: rgba(138, 43, 226, 0.12);
            color: var(--purple-light);
        }

        .nav-links a.active {
            font-weight: 600;
        }

        .nav-cta {
            padding: 9px 20px !important;
            background: var(--main-gradient) !important;
            color: white !important;
            border-radius: var(--radius) !important;
            font-weight: 600 !important;
            opacity: 1 !important;
            font-size: 0.88rem !important;
            transition: transform 0.2s ease, box-shadow 0.2s ease !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 24px rgba(138, 43, 226, 0.35) !important;
            background: var(--main-gradient) !important;
        }

        .menu-toggle {
            display: none;
            font-size: 26px;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text);
            z-index: 1001;
            padding: 4px;
        }

        @media (max-width: 900px) {
            header {
                padding: 14px 20px;
            }

            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 280px;
                background: linear-gradient(160deg, #0e0033, #050518, #1a0040);
                border-left: 1px solid rgba(138, 43, 226, 0.2);
                transform: translateX(100%);
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                padding-top: 90px;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
            }

            .nav-links.show {
                transform: translateX(0);
            }

            .nav-links ul {
                flex-direction: column;
                gap: 0;
                width: 100%;
                padding: 0 16px;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                width: 100%;
                padding: 14px 20px;
                border-radius: 10px;
                font-size: 1rem;
            }

            .nav-cta {
                margin: 16px 20px 0;
                width: calc(100% - 40px) !important;
                text-align: center !important;
            }
        }

        /* ============================================
       PROGRESS BAR
    ============================================ */
        #readingProgress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: var(--main-gradient);
            z-index: 9999;
            width: 0%;
            transition: width 0.1s linear;
        }

        /* ============================================
       HERO
    ============================================ */
        .recap-hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 0;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('https://res.cloudinary.com/dwo2hvm81/image/upload/q_auto/v1775694854/229A8258_spwh30.jpg');
            background-size: cover;
            background-position: center top;
            filter: brightness(0.35);
            transform: scale(1.05);
            transition: transform 8s ease;
        }

        .recap-hero:hover .hero-bg {
            transform: scale(1);
        }

        .hero-gradient-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    rgba(14, 14, 18, 0.1) 0%,
                    rgba(14, 14, 18, 0.0) 30%,
                    rgba(14, 14, 18, 0.7) 65%,
                    rgba(14, 14, 18, 1) 100%);
        }

        /* Subtle animated grain */
        .hero-grain {
            position: absolute;
            inset: 0;
            opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px;
            animation: grainShift 0.5s steps(1) infinite;
        }

        @keyframes grainShift {
            0% {
                transform: translate(0, 0);
            }

            25% {
                transform: translate(-2px, 2px);
            }

            50% {
                transform: translate(2px, -1px);
            }

            75% {
                transform: translate(-1px, -2px);
            }

            100% {
                transform: translate(1px, 1px);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 60px 70px;
            max-width: 900px;
            animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        @keyframes heroFadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(138, 43, 226, 0.2);
            border: 1px solid rgba(138, 43, 226, 0.4);
            border-radius: 30px;
            padding: 6px 16px;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--purple-light);
            margin-bottom: 24px;
            font-weight: 500;
        }

        .hero-eyebrow .dot {
            width: 6px;
            height: 6px;
            background: var(--purple-light);
            border-radius: 50%;
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }

        .recap-hero h1 {
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: clamp(2.4rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 20px;
            color: #fff;
        }

        .recap-hero h1 em {
            font-style: italic;
            background: var(--main-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-summary {
            font-size: 1.05rem;
            color: rgba(232, 232, 242, 0.75);
            max-width: 620px;
            margin-bottom: 36px;
            line-height: 1.75;
        }

        .hero-meta-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.88rem;
            color: rgba(232, 232, 242, 0.65);
        }

        .hero-meta-item i {
            color: var(--purple-light);
            font-size: 14px;
        }

        /* ============================================
       STATS STRIP
    ============================================ */
        .stats-strip {
            background: var(--mid);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 0;
        }

        .stats-inner {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            max-width: 1100px;
            margin: 0 auto;
        }

        .stat-item {
            padding: 32px 24px;
            text-align: center;
            border-right: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: background 0.3s ease;
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-item:hover {
            background: rgba(138, 43, 226, 0.06);
        }

        .stat-num {
            font-family: 'DM Serif Display', serif;
            font-size: 2.4rem;
            font-weight: 400;
            background: var(--main-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 0.78rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .stats-inner {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-item {
                border-bottom: 1px solid var(--border);
            }

            .stat-item:nth-child(even) {
                border-right: none;
            }

            .stat-item:last-child {
                grid-column: span 2;
                border-right: none;
            }
        }

        /* ============================================
       SCROLL SPY NAV
    ============================================ */
        .sticky-chapters {
            position: sticky;
            top: 72px;
            z-index: 50;
            background: rgba(14, 14, 18, 0.9);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border);
            padding: 0 32px;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .sticky-chapters::-webkit-scrollbar {
            display: none;
        }

        .chapters-list {
            display: flex;
            list-style: none;
            gap: 4px;
            white-space: nowrap;
            max-width: 1100px;
            margin: 0 auto;
        }

        .chapters-list a {
            display: block;
            padding: 14px 16px;
            color: var(--muted);
            text-decoration: none;
            font-size: 0.84rem;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
        }

        .chapters-list a:hover {
            color: var(--text);
        }

        .chapters-list a.spy-active {
            color: var(--purple-light);
            border-bottom-color: var(--purple);
        }

        /* ============================================
       MAIN CONTENT
    ============================================ */
        .recap-body {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ============================================
       SECTION BLOCKS
    ============================================ */
        .recap-section {
            padding: 80px 0 60px;
            border-bottom: 1px solid var(--border);
        }

        .recap-section:last-child {
            border-bottom: none;
        }

        .section-header {
            margin-bottom: 48px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--purple-light);
            font-weight: 600;
            margin-bottom: 14px;
        }

        .section-tag::before {
            content: '';
            display: block;
            width: 20px;
            height: 1px;
            background: var(--purple);
        }

        .section-header h2 {
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            line-height: 1.15;
            margin-bottom: 14px;
        }

        .section-header p {
            color: var(--muted);
            font-size: 1rem;
            max-width: 620px;
            line-height: 1.75;
        }

        /* ============================================
       EXECUTIVE SUMMARY
    ============================================ */
        .summary-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 48px;
            align-items: start;
        }

        .summary-text p {
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.85;
            margin-bottom: 18px;
        }

        .summary-text p strong {
            color: var(--text);
        }

        .summary-card {
            background: var(--surface);
            border-radius: 18px;
            border: 1px solid var(--border);
            padding: 32px;
            position: sticky;
            top: 140px;
        }

        .summary-card h4 {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--muted);
            margin-bottom: 20px;
        }

        .key-fact {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            align-items: flex-start;
        }

        .key-fact:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .key-fact-icon {
            font-size: 1rem;
            margin-top: 2px;
            flex-shrink: 0;
            width: 26px;
            text-align: center;
        }

        .key-fact-text strong {
            display: block;
            font-size: 0.88rem;
            color: var(--text);
            margin-bottom: 2px;
        }

        .key-fact-text span {
            font-size: 0.8rem;
            color: var(--muted);
        }

        @media (max-width: 900px) {
            .summary-layout {
                grid-template-columns: 1fr;
            }

            .summary-card {
                position: static;
            }
        }

        /* ============================================
       DAY SECTIONS
    ============================================ */
        .day-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 36px;
        }

        .day-number {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: var(--main-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'DM Serif Display', serif;
            font-size: 1.5rem;
            color: white;
            font-weight: 400;
        }

        .day-info small {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--muted);
            margin-bottom: 4px;
        }

        .day-info h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.5rem;
            line-height: 1.2;
        }

        .day-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 32px;
        }

        .day-photo-block {
            border-radius: 14px;
            overflow: hidden;
            aspect-ratio: 4/3;
            background: var(--surface);
        }

        .day-photo-block img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            transition: transform 0.5s ease;
        }

        .day-photo-block:hover img {
            transform: scale(1.04);
        }

        .day-photo-block img.portrait {
            object-position: center 20%;
        }

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

        /* Timeline */
        .timeline {
            position: relative;
            padding-left: 28px;
            margin: 28px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, var(--purple), transparent);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 22px;
            opacity: 0;
            transform: translateX(-10px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -24px;
            top: 6px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--purple);
            border: 2px solid var(--dark);
        }

        .timeline-time {
            font-size: 0.75rem;
            font-family: 'DM Sans', monospace;
            font-weight: 600;
            color: var(--purple-light);
            letter-spacing: 0.5px;
            margin-bottom: 3px;
        }

        .timeline-desc {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.6;
        }

        .timeline-desc strong {
            color: var(--text);
        }

        /* Tracks grid */
        .tracks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 12px;
            margin: 24px 0;
        }

        .track-pill {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.88rem;
            transition: border-color 0.2s, background 0.2s;
        }

        .track-pill:hover {
            border-color: rgba(138, 43, 226, 0.4);
            background: rgba(138, 43, 226, 0.06);
        }

        .track-num {
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--purple-light);
            background: rgba(138, 43, 226, 0.15);
            padding: 2px 7px;
            border-radius: 5px;
            flex-shrink: 0;
        }

        .track-name {
            color: var(--text);
            font-weight: 500;
        }

        /* ============================================
       PITCH COMPETITION
    ============================================ */
        .pitch-intro {
            background: var(--surface);
            border-radius: 18px;
            padding: 28px 32px;
            border: 1px solid var(--border);
            margin-bottom: 36px;
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .pitch-stat {
            text-align: center;
            flex: 1;
        }

        .pitch-stat-num {
            font-family: 'DM Serif Display', serif;
            font-size: 2rem;
            background: var(--main-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .pitch-stat-label {
            font-size: 0.78rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pitch-divider {
            width: 1px;
            height: 60px;
            background: var(--border);
        }

        @media (max-width: 600px) {
            .pitch-intro {
                flex-direction: column;
                gap: 20px;
            }

            .pitch-divider {
                width: 80%;
                height: 1px;
            }
        }

        .results-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .result-card {
            background: var(--surface);
            border-radius: 16px;
            border: 1px solid var(--border);
            padding: 28px 32px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 24px;
            align-items: start;
            transition: transform 0.25s ease, border-color 0.25s ease;
            position: relative;
            overflow: hidden;
        }

        .result-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
        }

        .result-card.gold::before {
            background: var(--gold-gradient);
        }

        .result-card.silver::before {
            background: linear-gradient(to bottom, #d0d0d0, #a0a0a0);
        }

        .result-card.bronze::before {
            background: linear-gradient(to bottom, #cd7f32, #8b4513);
        }

        .result-card.fourth::before {
            background: var(--main-gradient);
        }

        .result-card:hover {
            transform: translateY(-2px);
            border-color: rgba(138, 43, 226, 0.3);
        }

        .result-rank {
            font-size: 1.8rem;
            line-height: 1;
            padding-top: 4px;
        }

        .result-body h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.3rem;
            margin-bottom: 4px;
        }

        .result-product {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--purple-light);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .result-body p {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.65;
        }

        .result-prize {
            text-align: right;
            flex-shrink: 0;
        }

        .prize-amount {
            font-family: 'DM Serif Display', serif;
            font-size: 1.4rem;
            color: var(--text);
        }

        .prize-label {
            font-size: 0.72rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .prize-xaf {
            font-size: 0.72rem;
            color: var(--muted);
        }

        @media (max-width: 600px) {
            .result-card {
                grid-template-columns: auto 1fr;
                gap: 16px;
            }

            .result-prize {
                grid-column: 2;
            }
        }

        /* ============================================
       TECH SUMMIT
    ============================================ */
        .summit-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .panelists-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .panelist-card {
            background: var(--surface);
            border-radius: 12px;
            padding: 16px 20px;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: border-color 0.2s;
        }

        .panelist-card:hover {
            border-color: rgba(138, 43, 226, 0.35);
        }

        .panelist-card.moderator {
            border-color: rgba(56, 138, 233, 0.35);
            background: rgba(56, 138, 233, 0.05);
        }

        .panelist-avatar {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: var(--main-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
            overflow: hidden;
        }

        .panelist-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }

        .panelist-name {
            font-weight: 600;
            font-size: 0.92rem;
            margin-bottom: 2px;
        }

        .panelist-role {
            font-size: 0.78rem;
            color: var(--muted);
            line-height: 1.4;
        }

        .panelist-badge {
            margin-left: auto;
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 20px;
            background: rgba(56, 138, 233, 0.15);
            color: var(--blue-light);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .summit-themes {
            margin-top: 16px;
        }

        .summit-themes h4 {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--muted);
            margin-bottom: 14px;
        }

        .theme-tag {
            display: inline-block;
            background: rgba(138, 43, 226, 0.1);
            border: 1px solid rgba(138, 43, 226, 0.2);
            color: var(--purple-light);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.82rem;
            margin: 0 8px 8px 0;
            transition: background 0.2s;
        }

        .theme-tag:hover {
            background: rgba(138, 43, 226, 0.2);
        }

        .summit-audience-block {
            background: var(--surface);
            border-radius: 16px;
            padding: 28px;
            border: 1px solid var(--border);
        }

        .summit-audience-block h4 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        .summit-audience-block p {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 0;
        }

        @media (max-width: 800px) {
            .summit-layout {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
       DHUB LAUNCH
    ============================================ */
        .dhub-block {
            background: linear-gradient(135deg, #251a03, #1a1a2e, #0d0d1a);
            border-radius: 20px;
            border: 1px solid rgba(56, 138, 233, 0.25);
            padding: 48px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .dhub-block::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(56, 138, 233, 0.12), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .dhub-eyebrow {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--blue-light);
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dhub-block h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.8rem;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .dhub-block p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.75;
            margin-bottom: 24px;
        }

        .dhub-features {
            list-style: none;
            margin-bottom: 28px;
        }

        .dhub-features li {
            font-size: 0.88rem;
            color: var(--muted);
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dhub-features li::before {
            content: '✓';
            color: var(--blue-light);
            font-weight: 700;
        }

        .dhub-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: rgba(56, 138, 233, 0.15);
            border: 1px solid rgba(56, 138, 233, 0.4);
            border-radius: 10px;
            color: var(--blue-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.25s ease;
        }

        .dhub-link:hover {
            background: rgba(56, 138, 233, 0.25);
            transform: translateY(-2px);
        }

        .dhub-image-block {
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 4/3;
            position: relative;
        }

        .dhub-image-block img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .dhub-image-block:hover img {
            transform: scale(1.04);
        }

        @media (max-width: 768px) {
            .dhub-block {
                grid-template-columns: 1fr;
                padding: 32px 24px;
            }
        }

        /* ============================================
       EXHIBITION
    ============================================ */
        .exhibition-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 36px;
        }

        .ex-stat {
            background: var(--surface);
            border-radius: 14px;
            padding: 24px;
            border: 1px solid var(--border);
            text-align: center;
        }

        .ex-stat-num {
            font-family: 'DM Serif Display', serif;
            font-size: 2rem;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            line-height: 1;
            margin-bottom: 6px;
        }

        .ex-stat-label {
            font-size: 0.78rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .sectors-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }

        .sector-tag {
            background: rgba(245, 200, 66, 0.08);
            border: 1px solid rgba(245, 200, 66, 0.2);
            color: rgba(245, 200, 66, 0.9);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.82rem;
        }

        @media (max-width: 600px) {
            .exhibition-stats {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* ============================================
       PHOTO GALLERY ROW
    ============================================ */
        .photo-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin: 28px 0;
        }

        .photo-row.four {
            grid-template-columns: repeat(4, 1fr);
        }

        .photo-item {
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            position: relative;
        }

        .photo-item:first-child {
            grid-row: span 2;
            aspect-ratio: auto;
        }

        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            transition: transform 0.4s ease;
            display: block;
        }

        .photo-item:hover img {
            transform: scale(1.06);
        }

        .photo-overlay {
            position: absolute;
            inset: 0;
            background: rgba(14, 14, 18, 0.0);
            transition: background 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .photo-item:hover .photo-overlay {
            background: rgba(14, 14, 18, 0.35);
        }

        .photo-overlay i {
            color: white;
            font-size: 1.6rem;
            opacity: 0;
            transition: opacity 0.3s ease;
            transform: scale(0.8);
            transition: all 0.3s ease;
        }

        .photo-item:hover .photo-overlay i {
            opacity: 1;
            transform: scale(1);
        }

        @media (max-width: 600px) {
            .photo-row {
                grid-template-columns: 1fr 1fr;
            }

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

            .photo-item:first-child {
                grid-row: span 1;
            }
        }

        /* ============================================
       FAQ SECTION
    ============================================ */
        .faq-block {
            max-width: 740px;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .faq-item:first-child {
            border-top: 1px solid var(--border);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 22px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: left;
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            gap: 16px;
            transition: color 0.2s;
        }

        .faq-question:hover {
            color: var(--purple-light);
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
            color: var(--muted);
            font-size: 0.8rem;
        }

        .faq-item.active .faq-icon {
            background: var(--purple);
            border-color: var(--purple);
            color: white;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 400px;
        }

        .faq-answer-inner {
            padding-bottom: 22px;
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .faq-answer-inner strong {
            color: var(--text);
        }

        /* ============================================
       CTA BLOCK
    ============================================ */
        .recap-cta {
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(56, 138, 233, 0.1));
            border: 1px solid rgba(138, 43, 226, 0.2);
            border-radius: 20px;
            padding: 56px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 60px 0;
        }

        .recap-cta::before {
            content: '';
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 400px;
            height: 200px;
            background: radial-gradient(ellipse, rgba(138, 43, 226, 0.12), transparent 70%);
            pointer-events: none;
        }

        .recap-cta h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .recap-cta p {
            color: var(--muted);
            font-size: 1rem;
            margin-bottom: 32px;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 14px 32px;
            background: var(--main-gradient);
            color: white;
            text-decoration: none;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 0.95rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(138, 43, 226, 0.35);
        }

        .btn-ghost {
            padding: 14px 32px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text);
            text-decoration: none;
            border-radius: var(--radius);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-ghost:hover {
            border-color: rgba(138, 43, 226, 0.4);
            color: var(--purple-light);
        }

        /* ============================================
       FOOTER
    ============================================ */
        footer {
            padding: 48px 32px 40px;
            background: #000;
            border-top: 1px solid var(--border);
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .footer-logo {
            font-family: 'DM Serif Display', serif;
            font-size: 1.1rem;
            background: var(--main-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-nav a {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.85rem;
            padding: 4px 10px;
            border-radius: 6px;
            transition: color 0.2s;
        }

        .footer-nav a:hover {
            color: var(--text);
        }

        .socials {
            display: flex;
            gap: 10px;
        }

        .socials a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.2s;
        }

        .socials a:hover {
            border-color: var(--purple);
            color: var(--purple-light);
            background: rgba(138, 43, 226, 0.1);
        }

        .footer-copy {
            color: var(--muted);
            font-size: 0.8rem;
            text-align: center;
            line-height: 1.6;
        }

        /* ============================================
       REVEAL ANIMATION
    ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        /* ============================================
       UTILITY
    ============================================ */
        .text-gradient {
            background: var(--main-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .text-gold {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
