:root {
    --brand-dark: #0B0F19;
    --brand-primary: #00A3E0;
    --brand-secondary: #6C3EBB;
    --brand-accent: #8A3FFC;
    --brand-surface: #F8FAFC;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-900: #0f172a;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* Utilities Replacement */
.nexus-flex { display: flex; }
.nexus-flex-col { flex-direction: column; }
.nexus-items-center { align-items: center; }
.nexus-justify-center { justify-content: center; }
.nexus-justify-between { justify-content: space-between; }
.nexus-gap-2 { gap: 0.5rem; }
.nexus-gap-4 { gap: 1rem; }
.nexus-gap-6 { gap: 1.5rem; }
.nexus-gap-5 { gap: 1.25rem; }
.nexus-gap-12 { gap: 3rem; }
.nexus-relative { position: relative; }
.nexus-absolute { position: absolute; }
.nexus-z-10 { z-index: 10; }
.nexus-w-full { width: 100%; }
.nexus-h-full { height: 100%; }
.nexus-min-h-screen { min-height: 100vh; }
.nexus-max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.nexus-max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.nexus-max-w-2xl { max-width: 42rem; }
.nexus-px-4 { padding-left: 1rem; padding-right: 1rem; }
.nexus-py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.nexus-py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.nexus-p-6 { padding: 1.5rem; }
.nexus-p-10 { padding: 2.5rem; }
.nexus-text-center { text-align: center; }
.nexus-text-left { text-align: left; }
.nexus-hidden { display: none; }
.nexus-block { display: block; }
.nexus-inline-flex { display: inline-flex; }
.nexus-inline-block { display: inline-block; }
.nexus-uppercase { text-transform: uppercase; }
.nexus-tracking-widest { letter-spacing: 0.1em; }

@media (min-width: 640px) {
    .nexus-sm-px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .nexus-sm-flex-row { flex-direction: row; }
}
@media (min-width: 768px) {
    .nexus-md-text-6xl { font-size: 3.75rem; line-height: 1; }
    .nexus-md-text-7xl { font-size: 4.5rem; line-height: 1; }
    .nexus-md-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .nexus-md-flex-row { flex-direction: row; }
}
@media (min-width: 1024px) {
    .nexus-lg-px-8 { padding-left: 2rem; padding-right: 2rem; }
    .nexus-lg-text-8xl { font-size: 6rem; line-height: 1; }
    .nexus-lg-flex-row { flex-direction: row; }
    .nexus-lg-w-1-2 { width: 50%; }
    .nexus-lg-sticky { position: sticky; }
    .nexus-lg-top-0 { top: 0; }
    .nexus-lg-h-screen { height: 100vh; }
    .nexus-lg-py-0 { padding-top: 0; padding-bottom: 0; }
    .nexus-lg-py-32 { padding-top: 8rem; padding-bottom: 8rem; }
}

/* Hero Widget */
.nexus-hero-bg {
    background: radial-gradient(circle at top right, #1e1b4b 0%, #020617 100%);
    position: relative;
    overflow: hidden;
    color: white;
}
.nexus-hero-canvas {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.5;
}
.nexus-edition-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    background-color: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}
.nexus-edition-tag .dot-container { position: relative; display: flex; height: 0.75rem; width: 0.75rem; }
.nexus-edition-tag .dot-ping { position: absolute; display: inline-flex; height: 100%; width: 100%; border-radius: 9999px; background-color: var(--brand-primary); opacity: 0.75; animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
.nexus-edition-tag .dot { position: relative; display: inline-flex; border-radius: 9999px; height: 0.75rem; width: 0.75rem; background-color: var(--brand-primary); }
.nexus-edition-text {
    font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; color: #ecfeff; text-transform: uppercase;
}
.nexus-hero-heading {
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-size: 3rem;
}
.nexus-hero-highlight {
    background: linear-gradient(to right, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 400;
}
.nexus-hero-description {
    margin-top: 2rem;
    font-size: 1.25rem;
    color: var(--color-slate-300);
    line-height: 1.625;
    font-weight: 300;
}
.nexus-btn-primary {
    padding: 1rem 2.5rem;
    background-color: white;
    color: var(--brand-dark);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.nexus-btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 163, 224, 0.3);
}
.nexus-btn-secondary {
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-slate-500);
    color: white;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.nexus-btn-secondary:hover {
    background-color: rgba(255,255,255,0.05);
}

/* Manifesto Widget */
.nexus-manifesto-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}
.nexus-section-tag {
    background: linear-gradient(to right, rgba(0, 163, 224, 0.1), rgba(108, 62, 187, 0.1));
    color: var(--brand-secondary);
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
}
.nexus-manifesto-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-slate-900);
    line-height: 1.05;
    margin-bottom: 2rem;
}
.nexus-text-gradient {
    color: transparent;
    background-image: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.nexus-manifesto-intro {
    font-size: 1.25rem;
    color: var(--color-slate-500);
    line-height: 1.625;
    font-weight: 300;
}
.nexus-data-line-container {
    position: absolute; left: 20px; top: 0; bottom: 0; width: 2px;
    background: var(--line-bg, rgba(226, 232, 240, 0.5));
}
.nexus-data-line-progress {
    position: absolute; top: 0; left: 0; width: 100%; height: 0%;
    background: var(--line-fill, linear-gradient(to bottom, #00A3E0, #6C3EBB));
    box-shadow: 0 0 10px var(--line-glow, #00A3E0);
    transition: height 0.1s linear;
}
.nexus-reveal-item {
    padding-left: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    margin-bottom: 8rem;
}
.nexus-reveal-item.active { opacity: 1; transform: translateY(0); }
.nexus-reveal-number {
    position: absolute; left: 0; top: 0;
    font-size: 3.75rem;
    font-family: var(--font-serif);
    color: var(--color-slate-100);
    transform: translate(-50%, -1rem);
    transition: color 0.3s;
}
.nexus-reveal-item:hover .nexus-reveal-number { color: rgba(0, 163, 224, 0.1); }
.nexus-item-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-slate-900);
    margin-bottom: 1rem;
    transition: color 0.3s;
}
.nexus-reveal-item:hover .nexus-item-title { color: var(--brand-primary); }

/* Registration Widget */
.nexus-registration-section {
    background-color: var(--color-slate-50);
}
.nexus-grid-container {
    display: grid;
    gap: 3rem;
}
.nexus-student-card {
    text-align: left;
    background-color: white;
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid var(--color-slate-200);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}
.nexus-student-card:hover { border-color: rgba(0, 163, 224, 0.5); }
.nexus-card-title { font-size: 1.5rem; font-weight: 700; color: var(--color-slate-900); }
.nexus-card-subtitle { font-size: 0.875rem; color: var(--color-slate-500); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem; }
.nexus-price-tag { font-family: var(--font-serif); font-weight: 700; font-size: 3rem; color: var(--color-slate-900); margin-bottom: 2rem; }
.nexus-list { margin-bottom: 2rem; font-size: 0.875rem; color: var(--color-slate-600); list-style: none; padding: 0; }
.nexus-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.nexus-btn-student {
    display: block; width: 100%; padding: 1rem;
    border-radius: 9999px;
    border: 1px solid var(--color-slate-300);
    font-weight: 700;
    text-align: center;
    transition: background-color 0.2s;
    color: inherit;
    text-decoration: none;
}
.nexus-btn-student:hover { background-color: var(--color-slate-50); }

/* Holographic Card */
.nexus-holo-card-container { perspective: 1000px; }
.nexus-holo-card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    position: relative;
    overflow: hidden;
    background-color: var(--color-slate-900);
    border-radius: 2rem;
    padding: 2.5rem;
    text-align: left;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 163, 224, 0.3);
}
.nexus-holo-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--holo-sheen, linear-gradient(135deg, #00A3E0 0%, #6C3EBB 100%));
    opacity: 0;
    mix-blend-mode: overlay;
    pointer-events: none;
    transition: opacity 0.3s;
}
.nexus-holo-card:hover::after { opacity: 0.1; }
.nexus-holo-content { transform: translateZ(30px); }
.nexus-pro-badge {
    background: linear-gradient(135deg, #00A3E0 0%, #6C3EBB 100%);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1rem;
}
.nexus-pro-price {
    font-size: 3.75rem;
    font-family: var(--font-serif);
    font-weight: 700;
    background: linear-gradient(to right, white, var(--brand-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}
.nexus-btn-pro {
    display: block;
    width: 100%; padding: 1rem;
    border-radius: 0.75rem;
    background-color: white;
    color: var(--color-slate-900);
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    transition: background-color 0.2s;
    text-align: center;
    text-decoration: none;
}
.nexus-btn-pro:hover { background-color: #ecfeff; }

/* Scholarship Card */
.nexus-scholarship-container {
    padding: 0.25rem;
    border-radius: 2rem;
    background: linear-gradient(to right, var(--brand-surface), white);
    border: 1px solid var(--color-slate-100);
    transition: all 0.3s;
}
.nexus-scholarship-container:hover { border-color: rgba(0, 163, 224, 0.3); }
.nexus-scholarship-icon {
    width: 3rem; height: 3rem;
    border-radius: 9999px;
    background-color: #eff6ff; /* blue-50 */
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-primary);
    flex-shrink: 0;
}
.nexus-scholarship-link {
    font-size: 0.875rem; font-weight: 700;
    color: var(--brand-secondary);
    display: flex; align-items: center; gap: 0.5rem;
    text-decoration: none;
    transition: color 0.2s;
}
.nexus-scholarship-link:hover { color: var(--brand-primary); }

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}
.nexus-animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
/* --- Synergy/Partners Widget --- */
.nexus-synergy-section {
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.nexus-bg-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: radial-gradient(#6C3EBB 1px, transparent 1px);
    background-size: 30px 30px;
}

.nexus-synergy-card-main {
    background: white;
    border-radius: 2.5rem;
    padding: 3rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.nexus-synergy-card-main:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 163, 224, 0.3);
}

.nexus-synergy-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: rgba(0, 163, 224, 0.05);
    border-radius: 9999px;
    filter: blur(100px);
    transform: translate(33%, -50%);
    transition: background-color 0.15s;
}

.nexus-synergy-card-main:hover .nexus-synergy-glow {
    background-color: rgba(0, 163, 224, 0.1);
}

.nexus-icon-box {
    width: 5rem;
    height: 5rem;
    background-color: #f8fafc;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    border: 1px solid #f1f5f9;
    transition: transform 0.5s;
}

.nexus-synergy-card-main:hover .nexus-icon-box {
    transform: scale(1.1);
}

.nexus-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.nexus-text-brand-primary {
    color: #00A3E0;
}

.nexus-text-brand-secondary {
    color: #6C3EBB;
}

.nexus-text-slate-500 {
    color: #64748b;
}

.nexus-text-slate-900 {
    color: #0f172a;
}

.nexus-synergy-card-small {
    background: white;
    border-radius: 2.5rem;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.5s;
}

.nexus-synergy-card-small:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: rgba(108, 62, 187, 0.3);
}

.nexus-icon-box-small {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #f8fafc;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    margin-bottom: 1.5rem;
    transition: background-color 0.15s, color 0.15s;
}

.nexus-synergy-card-small:hover .nexus-icon-box-small {
    background-color: #6C3EBB;
    color: white;
}

.nexus-synergy-card-small.local:hover .nexus-icon-box-small {
    background-color: #0B0F19;
    color: white;
}

.nexus-synergy-card-small.local:hover {
    border-color: rgba(11, 15, 25, 0.3);
}

.nexus-flex-1 {
    flex: 1;
}

.nexus-mb-3 {
    margin-bottom: 0.75rem;
}

/* --- Faculty/Speakers Widget --- */
.nexus-faculty-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: white;
}

.nexus-speaker-card {
    cursor: pointer;
}

.nexus-speaker-image-container {
    aspect-ratio: 4/5;
    background-color: #f1f5f9;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
}

.nexus-speaker-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00A3E0 0%, #6C3EBB 100%);
    opacity: 0;
    transition: opacity 0.15s;
}

.nexus-speaker-card:hover .nexus-speaker-overlay {
    opacity: 0.1;
}

.nexus-speaker-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

.nexus-speaker-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.nexus-speaker-role {
    color: #64748b;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.nexus-link-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.15s;
    text-decoration: none;
}

.nexus-link-arrow:hover {
    gap: 1rem;
}

/* --- Program/Timeline Widget --- */
.nexus-program-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: #f8fafc;
}

.nexus-space-y-12>*+* {
    margin-top: 3rem;
}

.nexus-timeline-item {
    display: flex;
    gap: 2rem;
    position: relative;
    padding-bottom: 3rem;
}

.nexus-timeline-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 2.5rem;
    bottom: 0;
    width: 1px;
    background-color: #e2e8f0;
}

.nexus-timeline-item:last-child::before {
    display: none;
}

.nexus-timeline-marker {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: white;
    border: 2px solid #00A3E0;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #00A3E0;
    font-weight: 700;
}

.nexus-timeline-marker.secondary {
    border-color: #6C3EBB;
    color: #6C3EBB;
}

.nexus-timeline-marker.gradient {
    background: linear-gradient(135deg, #00A3E0 0%, #6C3EBB 100%);
    border: none;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nexus-venue-card {
    position: sticky;
    top: 8rem;
    padding: 2.5rem;
    background-color: white;
    border-radius: 3rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.nexus-venue-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nexus-bg-blue-50 {
    background-color: #eff6ff;
}

.nexus-bg-purple-50 {
    background-color: #faf5ff;
}

.nexus-venue-note {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
}/* --- Floating Dock Widget --- */
.nexus-floating-dock {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    z-index: 50;
    width: max-content;
    max-width: 90vw;
}

@media (min-width: 768px) {
    .nexus-floating-dock {
        transform: translateX(-50%) scale(1);
    }
}

.nexus-dock-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    border-radius: 9999px;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: transform 0.3s;
}

.nexus-dock-nav:hover {
    transform: scale(1.02);
}

.nexus-dock-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    /* slate-500 */
    text-decoration: none;
    transition: all 0.2s;
}

.nexus-dock-item:hover {
    color: #00A3E0;
    /* brand-primary */
    background-color: #f8fafc;
    /* slate-50 */
}

.nexus-dock-home {
    padding: 0.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    transition: background-color 0.2s;
}

.nexus-dock-home:hover {
    background-color: #f1f5f9;
    /* slate-100 */
}

.nexus-dock-separator {
    width: 1px;
    height: 1.5rem;
    background-color: #e2e8f0;
    /* slate-200 */
    margin: 0 0.25rem;
}

.nexus-dock-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #00A3E0 0%, #6C3EBB 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.nexus-dock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(108, 62, 187, 0.3);
    /* shadow-brand-secondary/30 */
    color: white;
}
/* --- Floating Navigation Bar --- */
.nexus-floating-bar-wrapper {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 9999;
    pointer-events: none; /* Allow clicking through the wrapper */
    display: flex;
    justify-content: center;
}

.nexus-floating-bar-container {
    pointer-events: auto; /* Re-enable clicks on the bar */
    width: 500px;
    max-width: 90vw;
}

.nexus-floating-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nexus-floating-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    width: 100%;
    justify-content: space-around;
}

.nexus-floating-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nexus-floating-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nexus-floating-link.active {
    background-color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    color: #00A3E0;
}

@media (max-width: 640px) {
    .nexus-link-text {
        display: none;
    }
    .nexus-floating-link {
        padding: 0.75rem;
    }
}

/* --- Hero Video Background --- */
.nexus-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.nexus-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.nexus-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Particles above video/overlay */
    pointer-events: none;
}

.nexus-hero-bg .nexus-relative.nexus-z-10 {
    z-index: 10; /* Content on top */
}

/* --- Program/Venue Typography Defaults --- */
/* These match previous inline styles to preserve default look, but allow overriding */
.nexus-manifesto-title { font-size: 3rem; }
.nexus-timeline-item .nexus-item-title { font-size: 1.25rem; }
.nexus-timeline-item .nexus-manifesto-intro { font-size: 0.875rem; }
.nexus-venue-card .nexus-item-title { font-size: 1.5rem; }
.nexus-venue-card .nexus-card-title { font-size: 1rem; }
.nexus-venue-card .nexus-manifesto-intro { font-size: 0.875rem; }
.nexus-venue-note .nexus-manifesto-intro { font-size: 0.75rem; }
