/* ============================================================
   BNT Visitors Day 2026 — Static Stylesheet
   Dark theme · vibrant blue + green · bright text
   ============================================================ */

:root {
    --bnt-bg: #03080F;
    --bnt-bg-2: #061121;
    --bnt-bg-3: #0A1628;
    --bnt-blue: #3B82F6;
    --bnt-blue-bright: #60A5FA;
    --bnt-blue-mint: #93C5FD;
    --bnt-emerald: #10B981;
    --bnt-emerald-bright: #34D399;
    --bnt-mint: #6EE7B7;
    --bnt-text: #E6F0FF;
    --bnt-text-mute: rgba(230, 240, 255, 0.72);
    --bnt-text-soft: rgba(230, 240, 255, 0.55);
    --bnt-line: rgba(255, 255, 255, 0.10);
    --bnt-line-2: rgba(96, 165, 250, 0.18);
    --radius: 18px;
}

* { box-sizing: border-box; }
*, *::before, *::after { border: 0 solid var(--bnt-line); }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bnt-bg);
    color: var(--bnt-text);
    line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }

.font-display { font-family: "Manrope", "Inter", sans-serif; letter-spacing: -0.02em; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }

::selection { background: var(--bnt-emerald-bright); color: var(--bnt-bg); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bnt-bg); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--bnt-blue), var(--bnt-emerald));
    border-radius: 999px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
.anim-fade-up { animation: fadeUp 900ms cubic-bezier(0.22, 1, 0.36, 1) both; }

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}
.pulse-dot { animation: pulseDot 1.6s ease-in-out infinite; }

@keyframes floatDown {
    0%, 100% { transform: translateY(0); opacity: 0.9; }
    50% { transform: translateY(10px); opacity: 0.4; }
}
.scroll-arrow { animation: floatDown 2s ease-in-out infinite; }

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 25px) scale(0.95); }
}
.blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(70px);
    opacity: 0.45;
    animation: blobFloat 14s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.blob-blue { background: var(--bnt-blue); }
.blob-green { background: var(--bnt-emerald); }

/* ============================================================
   BRAND TEXT GRADIENT
   ============================================================ */
.text-brand-gradient {
    background: linear-gradient(120deg, var(--bnt-blue-mint) 0%, var(--bnt-mint) 50%, #5EEAD4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 22px rgba(52, 211, 153, 0.35));
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform .28s cubic-bezier(.2,.9,.3,1), box-shadow .28s, background-position .6s;
    will-change: transform;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--bnt-blue) 0%, var(--bnt-emerald) 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: #fff;
    box-shadow:
        0 14px 32px -8px rgba(59, 130, 246, .55),
        0 8px 24px -6px rgba(16, 185, 129, .45),
        inset 0 1px 0 rgba(255, 255, 255, .30);
}
.btn-primary:hover {
    transform: translateY(-2px);
    background-position: 100% 0%;
    box-shadow:
        0 22px 50px -10px rgba(59, 130, 246, .7),
        0 14px 36px -8px rgba(16, 185, 129, .55),
        inset 0 1px 0 rgba(255, 255, 255, .4);
}
.btn-ghost {
    background: rgba(255, 255, 255, .04);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    border-color: var(--bnt-emerald-bright);
    color: var(--bnt-mint);
    background: rgba(16, 185, 129, .08);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -16px rgba(52, 211, 153, .45);
}
.btn-sm { padding: 10px 20px; font-size: 12px; }

/* ============================================================
   GLASS / CARD VARIANTS
   ============================================================ */
.glass-card {
    background: rgba(10, 22, 40, .55);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--bnt-line-2);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .06) inset,
        0 30px 60px -28px rgba(0, 0, 0, .7),
        0 0 0 1px rgba(52, 211, 153, .05);
    border-radius: 24px;
}
.glass-pill {
    background: rgba(10, 22, 40, .65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(96, 165, 250, .22);
    box-shadow: 0 6px 20px -6px rgba(0, 0, 0, .5);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    padding: 20px 0;
    transition: all .5s ease;
}
.nav.scrolled {
    background: rgba(3, 8, 15, .85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--bnt-line);
    padding: 12px 0;
    box-shadow: 0 8px 24px -12px rgba(0, 0, 0, .6);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--bnt-blue-bright), var(--bnt-emerald-bright));
    color: var(--bnt-bg);
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 8px 20px -4px rgba(52, 211, 153, .4);
}
.nav-logo-text {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.nav-logo-text .accent { color: var(--bnt-emerald-bright); }
.nav-logo-sub {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bnt-text-soft);
}
.nav-links {
    display: none;
    gap: 4px;
    align-items: center;
}
@media (min-width: 1024px) {
    .nav-links { display: flex; }
}
.nav-links a {
    position: relative;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
    content: "";
    position: absolute;
    left: 16px; right: 16px; bottom: -2px;
    height: 2px;
    background: linear-gradient(to right, var(--bnt-blue-bright), var(--bnt-emerald-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }
.nav-toggle {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    color: #fff;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle:hover { background: rgba(255, 255, 255, .06); }

.nav-mobile {
    display: none;
    margin: 12px 16px 0;
    padding: 12px;
    background: rgba(6, 17, 33, .96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--bnt-line);
    border-radius: 18px;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .8);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
}
.nav-mobile a:hover { background: rgba(255, 255, 255, .04); color: #fff; }
.nav-mobile .btn { width: 100%; margin-top: 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--bnt-bg);
}
.hero-slides {
    position: absolute; inset: 0;
}
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1500ms ease-in-out;
}
.hero-slide.active {
    opacity: 1;
    animation: kenburns 9s ease-out forwards;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, .22) 0%, rgba(16, 185, 129, .20) 100%),
        linear-gradient(180deg, rgba(3, 8, 15, .92) 0%, rgba(3, 8, 15, .96) 55%, rgba(3, 8, 15, 1) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 0 110px;
}
.hero-inner { max-width: 880px; }
.hero h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(36px, 5vw + 1rem, 80px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 24px 0 0;
}
.hero-subheading {
    font-family: "Manrope", sans-serif;
    font-size: clamp(20px, 1.8vw + .5rem, 30px);
    font-weight: 600;
    color: var(--bnt-emerald-bright);
    margin: 20px 0 0;
}
.hero-support {
    margin: 20px 0 0;
    max-width: 640px;
    font-size: 17px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.badge-emerald-light {
    color: var(--bnt-emerald-bright);
    background: rgba(16, 185, 129, .10);
    border: 1px solid rgba(52, 211, 153, .35);
}
.badge-blue-light {
    color: var(--bnt-blue-bright);
    background: rgba(59, 130, 246, .10);
    border: 1px solid rgba(96, 165, 250, .40);
}
.badge-dot {
    position: relative;
    width: 8px; height: 8px;
    border-radius: 999px;
    background: var(--bnt-emerald-bright);
}
.badge-dot::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: 999px;
    background: var(--bnt-emerald-bright);
    animation: pulseDot 1.6s ease-in-out infinite;
}

/* event info card */
.event-info {
    margin-top: 32px;
    padding: 22px 24px;
    border-radius: 20px;
}
.event-info-grid {
    display: grid;
    gap: 18px;
}
@media (min-width: 720px) {
    .event-info-grid { grid-template-columns: repeat(3, 1fr); }
    .event-info-grid > * + * { padding-left: 22px; border-left: 1px solid rgba(255, 255, 255, .10); }
}
.info-item { display: flex; gap: 12px; align-items: flex-start; }
.info-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    margin-top: 2px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(16, 185, 129, .15);
    color: var(--bnt-emerald-bright);
    box-shadow: inset 0 0 0 1px rgba(52, 211, 153, .30);
}
.info-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.20em;
    color: var(--bnt-text-soft);
}
.info-value {
    margin-top: 2px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* CTA row */
.cta-row {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
@media (min-width: 640px) {
    .cta-row { flex-direction: row; align-items: center; }
}
.cta-trust {
    display: none;
    align-items: center; gap: 8px;
    padding-left: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
}
@media (min-width: 640px) { .cta-trust { display: inline-flex; } }

/* Countdown */
.countdown-wrap { margin-top: 40px; }
.countdown-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--bnt-emerald-bright);
}
.countdown-eyebrow::before {
    content: "";
    display: inline-block;
    width: 32px; height: 1px;
    background: rgba(52, 211, 153, .6);
}
.countdown {
    display: flex; align-items: center;
    gap: 8px;
}
@media (min-width: 640px) { .countdown { gap: 14px; } }
.count-card {
    flex-shrink: 0;
    text-align: center;
    min-width: 78px;
    padding: 14px 18px;
    background: rgba(10, 22, 40, .7);
    border: 1px solid rgba(96, 165, 250, .20);
    border-radius: 16px;
    box-shadow:
        0 12px 28px -16px rgba(0, 0, 0, .6),
        inset 0 1px 0 rgba(255, 255, 255, .04);
}
@media (min-width: 768px) { .count-card { min-width: 92px; padding: 18px 20px; } }
.count-num {
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.count-lbl {
    margin-top: 6px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.20em;
    color: rgba(52, 211, 153, .8);
}
.count-sep {
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: rgba(52, 211, 153, .8);
    user-select: none;
}

/* slider dots */
.slider-dots {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex; gap: 10px;
}
.slider-dots button {
    width: 16px; height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .3);
    transition: all .5s;
}
.slider-dots button.active {
    width: 40px;
    background: var(--bnt-emerald-bright);
}
.slider-dots button:hover { background: rgba(255, 255, 255, .55); }

/* hero scroll & trust */
.hero-scroll {
    position: absolute;
    right: 28px; bottom: 80px;
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .65);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
@media (min-width: 768px) { .hero-scroll { display: flex; } }
.hero-scroll span {
    margin-bottom: 22px;
    transform: rotate(90deg);
    transform-origin: center;
}
.hero-trust {
    position: absolute;
    left: 20px; bottom: 32px;
    z-index: 10;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    display: none;
}
@media (min-width: 640px) { .hero-trust { display: block; left: 32px; } }

/* ============================================================
   GENERIC SECTION HEADERS
   ============================================================ */
section { position: relative; }
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 112px 0; } }
.section-bg-2 { background: var(--bnt-bg-2); }
.section-bg-1 { background: var(--bnt-bg); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}
.eyebrow-blue {
    color: var(--bnt-blue-mint);
    background: rgba(59, 130, 246, .10);
    border: 1px solid rgba(96, 165, 250, .40);
}
.eyebrow-emerald {
    color: var(--bnt-emerald-bright);
    background: rgba(16, 185, 129, .10);
    border: 1px solid rgba(52, 211, 153, .40);
}

.h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3.4vw + 1rem, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 20px 0 0;
    color: #fff;
}
.lead {
    margin-top: 20px;
    max-width: 640px;
    color: var(--bnt-text-mute);
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================================
   CHIEF GUEST
   ============================================================ */
.guest-grid {
    margin-top: 48px;
    display: grid;
    gap: 40px;
    align-items: center;
}
@media (min-width: 1024px) {
    .guest-grid { grid-template-columns: 5fr 7fr; }
}
.guest-photo-wrap { position: relative; max-width: 460px; margin: 0 auto; }
.guest-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    padding: 4px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--bnt-blue) 0%, var(--bnt-emerald) 100%);
    box-shadow:
        0 30px 60px -20px rgba(59, 130, 246, .55),
        0 0 0 1px rgba(52, 211, 153, .20);
}
.guest-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.guest-floating-badge {
    position: absolute;
    right: -16px;
    bottom: -20px;
    max-width: 220px;
    padding: 14px 18px 14px 14px;
    background: var(--bnt-bg-3);
    border: 1px solid var(--bnt-line);
    border-radius: 16px;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .7);
    display: flex; align-items: center; gap: 12px;
}
.guest-floating-icon {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bnt-blue-bright), var(--bnt-emerald-bright));
    color: var(--bnt-bg);
}
.guest-card {
    position: relative;
    padding: 32px;
}
@media (min-width: 640px) { .guest-card { padding: 40px; } }
.guest-quote-deco {
    position: absolute; top: -18px; left: -16px;
    color: rgba(96, 165, 250, .25);
    pointer-events: none;
}
.guest-name {
    font-family: "Manrope", sans-serif;
    font-size: clamp(22px, 2vw + .5rem, 32px);
    font-weight: 800;
    color: #fff;
    margin: 0;
}
.guest-title { margin: 6px 0 0; font-size: 16px; font-weight: 600; color: var(--bnt-emerald-bright); }
.guest-bio { margin-top: 20px; color: var(--bnt-text-mute); line-height: 1.6; }
.guest-achievements {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}
@media (min-width: 640px) { .guest-achievements { grid-template-columns: repeat(3, 1fr); } }
.achievement {
    padding: 12px 16px;
    border: 1px solid var(--bnt-line);
    background: rgba(255, 255, 255, .03);
    border-radius: 12px;
    display: flex; gap: 8px;
    font-size: 12px; font-weight: 600;
    color: rgba(255, 255, 255, .9);
    line-height: 1.4;
}
.achievement svg { color: var(--bnt-blue-bright); margin-top: 2px; flex-shrink: 0; }
.guest-socials {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--bnt-line);
    display: flex; align-items: center; gap: 8px;
}
.guest-socials .lbl {
    margin-right: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bnt-text-soft);
}
.icon-link {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--bnt-line);
    color: rgba(255, 255, 255, .7);
    transition: all .2s;
}
.icon-link:hover { color: var(--bnt-blue-mint); border-color: rgba(96, 165, 250, .55); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    text-align: left;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, .15), transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(16, 185, 129, .12), transparent 60%),
        var(--bnt-bg);
}
.about-hero h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(36px, 4vw + 1rem, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 24px 0 0;
}

.bg-grid {
    background-image:
        linear-gradient(to right, rgba(96, 165, 250, .06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(96, 165, 250, .06) 1px, transparent 1px);
    background-size: 56px 56px;
}

.about-cards {
    margin-top: 48px;
    display: grid;
    gap: 18px;
}
@media (min-width: 640px) { .about-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .about-cards { grid-template-columns: repeat(4, 1fr); } }
.about-card {
    padding: 26px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bnt-line);
    border-radius: 18px;
    transition: all .25s;
}
.about-card:hover {
    border-color: rgba(52, 211, 153, .45);
    background: rgba(16, 185, 129, .06);
    box-shadow: 0 24px 50px -22px rgba(52, 211, 153, .30);
}
.about-card .icon-box {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(16, 185, 129, .15);
    color: var(--bnt-emerald-bright);
    box-shadow: inset 0 0 0 1px rgba(52, 211, 153, .30);
    margin-bottom: 18px;
}
.about-card h3 { font-family: "Manrope", sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin: 0; }
.about-card p { margin: 8px 0 0; font-size: 14px; color: var(--bnt-text-mute); line-height: 1.6; }

.about-stats {
    margin-top: 64px;
    padding: 32px;
    border-radius: 24px;
    display: grid;
    gap: 24px;
    text-align: left;
}
@media (min-width: 768px) {
    .about-stats { grid-template-columns: repeat(4, 1fr); padding: 40px; }
}
.stat-num {
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--bnt-emerald-bright);
    line-height: 1;
}
.stat-lbl {
    margin-top: 6px;
    font-size: 13px;
    color: var(--bnt-text-mute);
}

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule-list {
    margin-top: 48px;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, .15);
    padding-left: 28px;
}
@media (min-width: 640px) { .schedule-list { padding-left: 40px; } }
.schedule-item { position: relative; padding-bottom: 32px; }
.schedule-item:last-child { padding-bottom: 0; }
.schedule-dot {
    position: absolute;
    left: -41px; top: 6px;
    width: 18px; height: 18px;
    border-radius: 999px;
    background: var(--bnt-emerald-bright);
    box-shadow:
        0 0 0 4px var(--bnt-bg),
        0 0 18px rgba(52, 211, 153, .55);
    display: inline-flex; align-items: center; justify-content: center;
}
.schedule-dot::after {
    content: "";
    width: 6px; height: 6px;
    border-radius: 999px;
    background: #fff;
}
@media (min-width: 640px) { .schedule-dot { left: -53px; } }
.schedule-row { display: flex; flex-direction: column; gap: 4px; }
@media (min-width: 640px) { .schedule-row { flex-direction: row; align-items: baseline; gap: 24px; } }
.schedule-time {
    font-family: "Manrope", sans-serif;
    min-width: 80px;
    font-weight: 700;
    color: var(--bnt-emerald-bright);
    font-variant-numeric: tabular-nums;
    font-size: 15px;
}
.schedule-title {
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.schedule-desc { margin: 4px 0 0; font-size: 14px; color: var(--bnt-text-mute); line-height: 1.6; }

/* ============================================================
   REGISTER
   ============================================================ */
.register-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}
@media (min-width: 1024px) { .register-grid { grid-template-columns: 3fr 2fr; } }
.benefit-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.benefit { display: flex; gap: 16px; }
.benefit-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(16, 185, 129, .15);
    color: var(--bnt-emerald-bright);
    box-shadow: inset 0 0 0 1px rgba(52, 211, 153, .30);
}
.benefit b { color: #fff; font-weight: 600; }
.benefit p { margin: 4px 0 0; font-size: 14px; color: var(--bnt-text-mute); }
.register-card { padding: 30px; }
@media (min-width: 640px) { .register-card { padding: 36px; } }
.register-card .small {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--bnt-emerald-bright);
}
.register-card h3 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(22px, 2vw + .5rem, 30px);
    font-weight: 800;
    color: #fff;
    margin: 8px 0 0;
    line-height: 1.15;
}
.register-card p { margin-top: 12px; font-size: 14px; color: var(--bnt-text-mute); line-height: 1.6; }
.register-card .open-link {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: 6px;
    margin-top: 12px;
    width: 100%;
    font-size: 12px;
    color: var(--bnt-text-soft);
    transition: color .2s;
}
.register-card .open-link:hover { color: var(--bnt-emerald-bright); }
.register-card .help {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--bnt-line);
    font-size: 11px;
    color: var(--bnt-text-soft);
    line-height: 1.6;
}
.register-card .help a { color: var(--bnt-emerald-bright); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.footer { padding: 80px 0; border-top: 1px solid rgba(255, 255, 255, .05); }
@media (min-width: 768px) { .footer { padding: 96px 0 80px; } }
.footer-grid {
    display: grid;
    gap: 48px;
}
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand .row {
    display: flex; align-items: center; gap: 10px;
}
.footer-blurb { margin-top: 16px; max-width: 360px; font-size: 14px; color: var(--bnt-text-mute); line-height: 1.6; }
.footer-socials { margin-top: 20px; display: flex; gap: 12px; }
.footer-h {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--bnt-text-soft);
    margin: 0;
}
.footer-list { margin-top: 16px; display: flex; flex-direction: column; gap: 16px; font-size: 14px; }
.footer-list li { display: flex; gap: 12px; }
.footer-list svg { color: var(--bnt-emerald-bright); margin-top: 4px; flex-shrink: 0; }
.footer-list a { color: rgba(255, 255, 255, .85); }
.footer-list a:hover { color: #fff; }
.footer-event-card { margin-top: 16px; padding: 20px; border-radius: 18px; }
.footer-event-card .small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.20em;
    color: var(--bnt-emerald-bright);
}
.footer-event-card .date {
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 6px 0 0;
}
.footer-event-card .time { font-size: 14px; color: var(--bnt-text-mute); margin: 4px 0 16px; }

.footer-meta {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--bnt-line);
    display: flex; flex-direction: column;
    gap: 12px;
    font-size: 12px;
    color: var(--bnt-text-soft);
}
@media (min-width: 640px) {
    .footer-meta { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-meta a { transition: color .2s; }
.footer-meta a:hover { color: var(--bnt-emerald-bright) !important; }

/* ============================================================
   LEGAL PAGES (Privacy / Terms)
   ============================================================ */
.legal-wrap { max-width: 820px; }
.legal-wrap h2 {
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 14px;
    letter-spacing: -0.01em;
}
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p,
.legal-wrap li {
    color: var(--bnt-text-mute);
    line-height: 1.75;
    font-size: 15px;
}
.legal-wrap p { margin: 0 0 14px; }
.legal-wrap ul { margin: 0 0 18px; padding-left: 22px; list-style: disc; }
.legal-wrap ul li { margin-bottom: 8px; padding-left: 4px; }
.legal-wrap ul li::marker { color: var(--bnt-emerald-bright); }
.legal-wrap b { color: #fff; font-weight: 600; }
.legal-wrap a {
    color: var(--bnt-blue-mint);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(96, 165, 250, .35);
    transition: color .2s, text-decoration-color .2s;
}
.legal-wrap a:hover {
    color: var(--bnt-emerald-bright);
    text-decoration-color: rgba(52, 211, 153, .55);
}
.legal-contact {
    margin: 12px 0 36px;
    padding: 22px 24px;
}
.legal-contact p { margin: 0 0 10px; }
.legal-contact p:last-child { margin-bottom: 0; }
.legal-actions {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--bnt-line);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (min-width: 640px) {
    .legal-actions { flex-direction: row; align-items: center; }
}
