    :root {
        --black:  #030008;
        --green:  #39ff00;
        --blue:   #0033cc;
        --gold:   #f0a500;
        --white:  #f5f5f5;
        --dim:    rgba(245,245,245,.45);
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
        background: var(--black);
        color: var(--white);
        font-family: "DM Sans", sans-serif;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    /* ══════════════════════════════════════
       NOISE TEXTURE OVERLAY
    ══════════════════════════════════════ */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
        opacity: .03;
        pointer-events: none;
        z-index: 1000;
    }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
        position: relative;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 48px 20px 80px;
        overflow: hidden;
    }

    .hero-logo{
        height: 80px;
    }

    /* Radial glow behind everything */
    .hero::before {
        content: "";
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -55%);
        width: 700px; height: 700px;
        background: radial-gradient(circle, rgba(57,255,0,.07) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    /* Grid lines */
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(57,255,0,.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(57,255,0,.04) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
    }

    /* Floating orbs */
    .orb {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        filter: blur(60px);
        opacity: .18;
        animation: drift 12s ease-in-out infinite;
    }
    .orb-1 { width: 300px; height: 300px; background: var(--green); top: -80px; left: -80px; animation-delay: 0s; }
    .orb-2 { width: 200px; height: 200px; background: var(--blue); bottom: 60px; right: -60px; animation-delay: -4s; }
    .orb-3 { width: 160px; height: 160px; background: var(--gold); bottom: 100px; left: 10%; animation-delay: -8s; }

    @keyframes drift {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33%       { transform: translate(30px, -20px) scale(1.05); }
        66%       { transform: translate(-20px, 30px) scale(.95); }
    }

    .hero-inner { position: relative; z-index: 2; width: 100%; max-width: 800px; }

    /* Invitation tag */
    .invite-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(57,255,0,.1);
        border: 1px solid rgba(57,255,0,.3);
        color: var(--green);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 32px;
        animation: fadeSlideDown .8s ease both;
    }
    .invite-tag .dot {
        width: 6px; height: 6px;
        background: var(--green);
        border-radius: 50%;
        animation: pulse 2s ease infinite;
    }
    @keyframes pulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50%       { opacity: .4; transform: scale(.7); }
    }

    /* Main title */
    .hero-title {
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(68px, 18vw, 160px);
        line-height: .92;
        letter-spacing: 2px;
        margin-bottom: 8px;
        animation: fadeSlideDown .8s .15s ease both;
    }
    .hero-title .word-sika { color: var(--white); }
    .hero-title .word-flow {
        color: transparent;
        -webkit-text-stroke: 2px var(--green);
        display: block;
    }
    .hero-title .word-launch {
        font-size: clamp(28px, 7vw, 64px);
        color: var(--gold);
        letter-spacing: 8px;
        display: block;
        margin-top: 4px;
    }

    /* Date + location */
    .hero-event-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 28px;
        font-size: 14px;
        color: var(--dim);
        font-weight: 300;
        letter-spacing: .5px;
        margin-bottom: 56px;
        animation: fadeSlideDown .8s .3s ease both;
    }
    .hero-event-info strong { color: var(--white); font-weight: 500; }
    .hero-event-info .sep { color: rgba(255,255,255,.2); }

    /* ── COUNTDOWN ── */
    .countdown {
        display: flex;
        justify-content: center;
        gap: 0;
        margin-bottom: 56px;
        animation: fadeSlideDown .8s .45s ease both;
    }
    .cd-unit {
        text-align: center;
        padding: 0 20px;
        position: relative;
    }
    .cd-unit:not(:last-child)::after {
        content: ":";
        position: absolute;
        right: -4px;
        top: 6px;
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(40px, 10vw, 80px);
        color: var(--green);
        opacity: .4;
        line-height: 1;
    }
    .cd-num {
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(52px, 13vw, 100px);
        line-height: 1;
        color: var(--white);
        display: block;
        transition: color .15s;
    }
    .cd-num.tick { color: var(--green); }
    .cd-label {
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--dim);
        font-weight: 500;
        display: block;
        margin-top: 4px;
    }

    /* Divider line */
    .hero-divider {
        width: 60px; height: 1px;
        background: linear-gradient(90deg, transparent, var(--green), transparent);
        margin: 0 auto 28px;
        animation: fadeSlideDown .8s .55s ease both;
    }

    .hero-sub {
        font-size: 15px;
        color: var(--dim);
        font-weight: 300;
        line-height: 1.7;
        max-width: 400px;
        margin: 0 auto;
        animation: fadeSlideDown .8s .6s ease both;
    }

    /* Scroll cue */
    .scroll-cue {
        position: absolute;
        bottom: 28px; left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        color: var(--dim);
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        animation: fadeSlideDown .8s .9s ease both;
        z-index: 2;
        cursor: pointer;
        border: none;
        background: none;
    }
    .scroll-arrow {
        width: 24px; height: 24px;
        border-right: 1.5px solid rgba(57,255,0,.5);
        border-bottom: 1.5px solid rgba(57,255,0,.5);
        transform: rotate(45deg);
        animation: bounce 2s ease infinite;
    }
    @keyframes bounce {
        0%, 100% { transform: rotate(45deg) translateY(0); }
        50%       { transform: rotate(45deg) translateY(6px); }
    }

    @keyframes fadeSlideDown {
        from { opacity: 0; transform: translateY(-18px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* ══════════════════════════════════════
       SECTION SHARED
    ══════════════════════════════════════ */
    section {
        max-width: 1100px;
        margin: 0 auto;
        padding: 80px 48px;
        position: relative;
    }
    .section-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-size: 10px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--green);
        font-weight: 700;
        margin-bottom: 20px;
    }
    .section-eyebrow::before {
        content: "";
        width: 24px; height: 1.5px;
        background: var(--green);
        display: block;
    }
    .section-title {
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(42px, 9vw, 72px);
        line-height: 1;
        letter-spacing: 1px;
        margin-bottom: 48px;
    }

    /* ══════════════════════════════════════
       AGENDA
    ══════════════════════════════════════ */
    .agenda-section { border-top: 1px solid rgba(255,255,255,.06); }

    .agenda-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .agenda-item {
        display: grid;
        grid-template-columns: 90px 28px 1fr;
        gap: 0 16px;
        padding: 28px 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
        position: relative;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity .5s ease, transform .5s ease;
        align-items: start;
    }
    .agenda-item.visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* Timeline dot + line */
    .agenda-time-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 6px;
    }
    .agenda-dot {
        width: 10px; height: 10px;
        border-radius: 50%;
        background: var(--green);
        flex-shrink: 0;
        box-shadow: 0 0 12px rgba(57,255,0,.5);
    }
    .agenda-dot.gold  { background: var(--gold); box-shadow: 0 0 12px rgba(240,165,0,.5); }
    .agenda-dot.blue  { background: var(--blue); box-shadow: 0 0 12px rgba(0,51,204,.5); }
    .agenda-dot.white { background: var(--white); box-shadow: none; }
    .agenda-line {
        width: 1px;
        flex: 1;
        background: rgba(255,255,255,.08);
        margin-top: 8px;
    }
    .agenda-item:last-child .agenda-line { display: none; }

    .agenda-time {
        font-family: "DM Mono", monospace, "DM Sans", sans-serif;
        font-size: 12px;
        color: var(--dim);
        letter-spacing: .5px;
        text-align: right;
        line-height: 1.4;
        padding-top: 2px;
    }

    .agenda-body { padding-bottom: 8px; }
    .agenda-tag {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 4px;
        display: inline-block;
        margin-bottom: 10px;
    }
    .agenda-tag.green  { background: rgba(57,255,0,.1);  color: var(--green); }
    .agenda-tag.gold   { background: rgba(240,165,0,.12); color: var(--gold); }
    .agenda-tag.blue   { background: rgba(0,51,204,.2);   color: #7aabff; }
    .agenda-tag.dim    { background: rgba(255,255,255,.06); color: var(--dim); }

    .agenda-event {
        font-size: 18px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 5px;
        line-height: 1.3;
    }
    .agenda-desc {
        font-size: 13px;
        color: var(--dim);
        font-weight: 300;
        line-height: 1.6;
    }
    .agenda-speaker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
        font-size: 14px;
        color: var(--dim);
    }
    .speaker-avatar {
        width: 26px; height: 26px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--blue), var(--green));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
        color: #fff;
        flex-shrink: 0;
    }

    /* ══════════════════════════════════════
       VENUE SECTION
    ══════════════════════════════════════ */
    .venue-section {
        border-top: 1px solid rgba(255,255,255,.06);
    }
    .venue-card {
        background: rgba(255,255,255,.03);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 20px;
        padding: 36px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        position: relative;
        overflow: hidden;
    }
    .venue-card::before {
        content: "";
        position: absolute;
        bottom: -60px; right: -60px;
        width: 200px; height: 200px;
        background: radial-gradient(circle, rgba(57,255,0,.08), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    .venue-label {
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--green);
        font-weight: 700;
        margin-bottom: 10px;
    }
    .venue-name {
        font-family: "Bebas Neue", sans-serif;
        font-size: 32px;
        letter-spacing: 1px;
        color: var(--white);
        margin-bottom: 8px;
    }
    .venue-address {
        font-size: 13px;
        color: var(--dim);
        line-height: 1.7;
    }
    .venue-detail { display: flex; flex-direction: column; gap: 14px; }
    .vd-item { display: flex; gap: 12px; align-items: flex-start; }
    .vd-icon {
        width: 32px; height: 32px;
        border-radius: 8px;
        background: rgba(255,255,255,.05);
        display: flex; align-items: center; justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
    }
    .vd-text { font-size: 12px; color: var(--dim); line-height: 1.5; }
    .vd-text strong { color: var(--white); font-weight: 600; display: block; font-size: 13px; }

    /* ══════════════════════════════════════
       DRESS CODE & NOTES
    ══════════════════════════════════════ */
    .notes-section {
        border-top: 1px solid rgba(255,255,255,.06);
    }
    .notes-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .note-card {
        background: rgba(255,255,255,.02);
        border: 1px solid rgba(255,255,255,.07);
        border-radius: 14px;
        padding: 22px;
        position: relative;
        overflow: hidden;
    }
    .note-card::after {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 2px;
    }
    .note-card.green::after { background: linear-gradient(90deg, var(--green), transparent); }
    .note-card.gold::after  { background: linear-gradient(90deg, var(--gold), transparent); }
    .note-card.blue::after  { background: linear-gradient(90deg, #7aabff, transparent); }
    .note-card.white::after { background: linear-gradient(90deg, rgba(255,255,255,.3), transparent); }
    .note-icon { font-size: 24px; margin-bottom: 10px; display: block; }
    .note-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .note-text  { font-size: 12px; color: var(--dim); line-height: 1.6; }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    .launch-footer {
        border-top: 1px solid rgba(255,255,255,.06);
        padding: 60px 24px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .launch-footer::before {
        content: "";
        position: absolute;
        bottom: -100px; left: 50%;
        transform: translateX(-50%);
        width: 500px; height: 300px;
        background: radial-gradient(ellipse, rgba(57,255,0,.06), transparent 70%);
        pointer-events: none;
    }
    .footer-logo {
        font-family: "Bebas Neue", sans-serif;
        font-size: 48px;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }
    .footer-logo span { color: var(--green); }
    .footer-tagline {
        font-size: 12px;
        color: var(--dim);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 32px;
    }
    .footer-contact {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 24px;
        font-size: 13px;
        color: var(--dim);
    }
    .footer-contact a {
        color: var(--dim);
        text-decoration: none;
        transition: color .2s;
    }
    .footer-contact a:hover { color: var(--green); }
    .footer-copy {
        margin-top: 32px;
        font-size: 11px;
        color: rgba(255,255,255,.2);
        letter-spacing: .5px;
    }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 560px) {
        .countdown { gap: 0; }
        .cd-unit { padding: 0 12px; }
        .venue-card { grid-template-columns: 1fr; gap: 20px; }
        .notes-grid { grid-template-columns: 1fr; }
        section { padding: 60px 24px; }
    }

    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after { animation: none !important; transition: none !important; }
        .agenda-item { opacity: 1; transform: none; }
    }

    /* ══════════════════════════════════════
       PROGRAMME TABS
    ══════════════════════════════════════ */
    .prog-tabs {
        display: flex;
        gap: 8px;
        margin-bottom: 36px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        padding-bottom: 0;
    }
    .prog-tab {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: rgba(245,245,245,.4);
        background: transparent;
        border: none;
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
        cursor: pointer;
        transition: all .2s ease;
        letter-spacing: .3px;
    }
    .prog-tab:hover { color: rgba(245,245,245,.75); }
    .prog-tab.active {
        color: #f5f5f5;
        border-bottom-color: #39ff00;
    }
    .prog-tab .tab-icon { font-size: 16px; }

    /* Tab panels */
    .prog-panel { display: none; }
    .prog-panel.active { display: block; }

    /* ══════════════════════════════════════
       MENU STYLES
    ══════════════════════════════════════ */
    .menu-intro {
        font-size: 14px;
        color: rgba(245,245,245,.5);
        margin-bottom: 36px;
        font-style: italic;
        border-left: 2px solid #39ff00;
        padding-left: 14px;
        line-height: 1.6;
    }

    .menu-section { margin-bottom: 44px; }

    .menu-section-head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    .menu-section-icon {
        width: 40px; height: 40px;
        border-radius: 10px;
        background: rgba(57,255,0,.08);
        border: 1px solid rgba(57,255,0,.2);
        display: flex; align-items: center; justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
    }
    .menu-section-title {
        font-family: "Bebas Neue", sans-serif;
        font-size: 28px;
        letter-spacing: 1px;
        color: #f5f5f5;
    }
    .menu-section-sub {
        font-size: 11px;
        color: rgba(245,245,245,.35);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: 1px;
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 12px;
    }

    .menu-item {
        background: rgba(255,255,255,.03);
        border: 1px solid rgba(255,255,255,.07);
        border-radius: 14px;
        padding: 18px 20px;
        transition: all .2s ease;
        position: relative;
        overflow: hidden;
    }
    .menu-item::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 2px;
        background: linear-gradient(90deg, #39ff00, transparent);
        opacity: 0;
        transition: opacity .2s;
    }
    .menu-item:hover {
        background: rgba(255,255,255,.05);
        border-color: rgba(57,255,0,.2);
    }
    .menu-item:hover::before { opacity: 1; }

    .menu-item-name {
        font-size: 15px;
        font-weight: 600;
        color: #f5f5f5;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    .menu-item-desc {
        font-size: 12px;
        color: rgba(245,245,245,.4);
        line-height: 1.5;
    }
    .menu-item-tag {
        display: inline-block;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 2px 8px;
        border-radius: 4px;
        margin-top: 8px;
    }
    .menu-item-tag.veg   { background: rgba(57,255,0,.1);     color: #39ff00; }
    .menu-item-tag.meat  { background: rgba(240,165,0,.12);   color: #f0a500; }
    .menu-item-tag.drink { background: rgba(77,166,255,.12);  color: #4da6ff; }
    .menu-item-tag.sweet { background: rgba(255,100,200,.1);  color: #ff80d0; }

    .menu-divider {
        height: 1px;
        background: rgba(255,255,255,.06);
        margin: 40px 0;
    }

    .menu-note {
        text-align: center;
        padding: 20px;
        background: rgba(57,255,0,.05);
        border: 1px solid rgba(57,255,0,.15);
        border-radius: 12px;
        font-size: 13px;
        color: rgba(245,245,245,.5);
        margin-top: 8px;
    }
    .menu-note strong { color: #39ff00; }

    @media (max-width: 560px) {
        .prog-tab { padding: 10px 14px; font-size: 13px; }
        .menu-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 380px) {
        .menu-grid { grid-template-columns: 1fr; }
    }


/* launch-badge */

.launch-badge {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #001a66;
    border: 1px solid rgba(57,255,0,.35);
    border-radius: 50px;
    padding: 15px 23px;
    box-shadow: 0 4px 24px rgba(0,0,0,.25), 0 0 0 1px rgba(57,255,0,.1);
    animation: badgeIn .6s .5s cubic-bezier(.34,1.56,.64,1) both;
    cursor: default;
    user-select: none;
    animation: bounce 2s infinite;
}
.launch-badge:hover {
    border-color: rgba(57,255,0,.7);
    box-shadow: 0 4px 28px rgba(0,0,0,.3), 0 0 16px rgba(57,255,0,.12);
}
.launch-badge .lb-dot {
    width: 7px; height: 7px;
    background: #39ff00;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px #39ff00;
    animation: lbpulse 2s ease infinite;
}
.launch-badge .lb-text {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #f0f0f0;
    letter-spacing: .3px;
    white-space: nowrap;
}
.launch-badge .lb-text span { color: #39ff00; }
@keyframes lbpulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(.7); }
}
@keyframes badgeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
    .launch-badge { bottom: 16px; right: 16px; padding: 8px 14px; }
    .launch-badge .lb-text { font-size: 11px; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}
