:root {
    --gold: #d4af37;
    --black: #0a0a0a;
    --zinc-900: #18181b;
    --zinc-800: #27272a;
}

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

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

body {
    background-color: var(--black);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.font-syncopate { font-family: 'Syncopate', sans-serif; }
.font-inter { font-family: 'Inter', sans-serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

/* Spotlight Effect */
#spotlight {
    background: radial-gradient(circle 400px at var(--x, 50%) var(--y, 50%), rgba(212, 175, 55, 0.05), transparent 100%);
}

/* Application Menu Bar Refinement */
.menu-item {
    position: relative;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
}
.menu-item:last-child { border-right: none; }

.neon-glow-gold {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3), inset 0 0 10px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5) !important;
}

.neon-text-gold {
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Holographic Window Styles */
.holo-window {
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.holo-scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(212, 175, 55, 0.2) 50%, transparent 100%);
    background-size: 100% 200%;
    animation: scan 4s linear infinite;
    pointer-events: none;
    z-index: 5;
}

@keyframes scan {
    0% { background-position: 0% 100%; }
    100% { background-position: 0% -100%; }
}

/* Event Dashboard Card Styles */
.event-card {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    background: #0a0a0a;
}

.event-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Utilities */
.bg-black { background-color: var(--black); }
.bg-zinc-900 { background-color: var(--zinc-900); }
.bg-zinc-800 { background-color: var(--zinc-800); }
.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }
.border-gold { border-color: var(--gold); }
.border-gold\/20 { border-color: rgba(212, 175, 55, 0.2); }
.border-gold\/30 { border-color: rgba(212, 175, 55, 0.3); }
.shrink-0 { flex-shrink: 0; }
.w-screen { width: 100vw; }
.h-screen { height: 100vh; }
.flex-nowrap { flex-wrap: nowrap; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }

.outline-text {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    color: transparent;
}

/* Scroll Animations */
.reveal-text { overflow: hidden; }

/* Tailwind-ish Utilities */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }
.text-9xl { font-size: 8rem; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-tighter { letter-spacing: -0.05em; }
.z-50 { z-index: 50; }
.z-40 { z-index: 40; }
.z-10 { z-index: 10; }
.z-0 { z-index: 0; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-l { border-left-width: 1px; }
.border-t { border-top-width: 1px; }
.border-r { border-right-width: 1px; }
.border-b { border-bottom-width: 1px; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-24 { margin-bottom: 6rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.mr-2 { margin-right: 0.5rem; }

/* Horizontal Scroll specific */
.horizontal-scroll-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.panel {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
}

/* Contact Form Compaction */
.compact-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    width: 100%;
    color: white;
    transition: all 0.3s ease;
}
.compact-input:focus {
    outline: none;
    border-bottom-color: var(--gold);
    box-shadow: 0 1px 0 var(--gold);
}

/* Apple-style Footer Organization */
.footer-column h4 {
    color: #f5f5f7;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 0.5rem;
}
.footer-column ul li a {
    color: #86868b;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s ease;
}
.footer-column ul li a:hover {
    color: #f5f5f7;
    text-decoration: underline;
}

.footer-legal {
    border-top: 1px solid #424245;
    color: #86868b;
    font-size: 11px;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Glitch Effect Utility */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.glitch-on-scroll.active {
    animation: glitch 0.3s cubic-bezier(.25,.46,.45,.94) both infinite;
    color: var(--gold);
    text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9;
}

/* Animations */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-spin-slow { animation: spin-slow 8s linear infinite; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee { animation: marquee 20s linear infinite; }

@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
.animate-bounce { animation: bounce 1s infinite; }

/* Custom Overlays */
.bg-hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--black) 90%);
}

/* Grid Utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Responsive Grid */
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:text-8xl { font-size: 6rem; }
    .md\:text-9xl { font-size: 8rem; }
}

@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
}

/* Custom Scroll Progress */
#scroll-progress-bar {
    transition: height 0.1s ease-out;
}

/* Narrative Layout */
main {
    position: relative;
}

.story-section {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
}

.story-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(34, 211, 238, 0.08), transparent 26%);
}

.story-section-hero {
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.85)),
        #050505;
}

.story-section-story {
    background:
        linear-gradient(180deg, rgba(9, 9, 11, 0.98), rgba(15, 15, 20, 1));
}

.story-section-network {
    background:
        radial-gradient(circle at top right, rgba(244, 114, 182, 0.12), transparent 24%),
        linear-gradient(180deg, #050505, #09090b);
}

.story-section-events {
    background:
        radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.14), transparent 30%),
        linear-gradient(180deg, #060606, #0b0b0c);
}

.section-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 7rem;
    padding-bottom: 5rem;
}

.story-stage {
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 7.5rem;
    padding-bottom: 4rem;
}

.hero-grid,
.section-layout-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    width: 100%;
}

.hero-grid {
    position: relative;
}

.hero-copy {
    position: relative;
    z-index: 6;
    min-width: 0;
}

.hero-headline-wrap {
    overflow: hidden;
    padding-bottom: 0.35rem;
}

.section-layout-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: rgba(212, 175, 55, 0.88);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.hero-headline,
.section-headline {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.hero-headline {
    font-size: clamp(2.6rem, 6.2vw, 6.2rem);
    max-width: 11ch;
    letter-spacing: -0.04em;
    padding-right: 0;
    position: relative;
    z-index: 7;
    overflow-wrap: anywhere;
}

.section-headline {
    font-size: clamp(2.5rem, 5vw, 5.8rem);
    margin-bottom: 1.5rem;
}

.hero-summary,
.section-body {
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 1.45vw, 1.2rem);
    line-height: 1.8;
}

.hero-summary {
    margin-bottom: 2rem;
}

.hero-metric-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 42rem;
}

.hero-metric,
.story-metric-card {
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(24, 24, 27, 0.78), rgba(12, 12, 14, 0.88));
    backdrop-filter: blur(20px);
}

.hero-metric span,
.story-metric-card span,
.window-tag,
.window-meta-row span {
    display: block;
    margin-bottom: 0.65rem;
    color: rgba(212, 175, 55, 0.72);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero-metric strong,
.story-metric-card strong {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

.story-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.about-partners-block {
    margin-top: 2rem;
}

.partner-scroll-field {
    position: relative;
    overflow: hidden;
    padding: 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgba(23, 23, 27, 0.92), rgba(10, 10, 12, 0.96));
    box-shadow: inset 0 0 24px rgba(212, 175, 55, 0.04), 0 20px 48px rgba(0, 0, 0, 0.26);
}

.partner-scroll-field::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(34, 211, 238, 0.08), transparent 28%);
}

.partner-scroll-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 0.75rem;
}

.partner-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.5rem;
    padding: 0.95rem 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(28, 28, 32, 0.92), rgba(11, 11, 13, 0.92));
    box-shadow: inset 0 0 18px rgba(212, 175, 55, 0.05), 0 12px 30px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.86);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
}

.home-window-stack {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.intro-window-grid,
.network-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.holo-window,
.home-window,
.service-reveal-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(26, 26, 30, 0.9), rgba(10, 10, 12, 0.9)),
        rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(22px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.home-window,
.service-reveal-card {
    min-height: 16rem;
    padding: 1.4rem;
}

.home-window h3,
.service-reveal-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 0.9rem;
    font-family: 'Syncopate', sans-serif;
    font-size: 1.25rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-window p,
.service-reveal-card li {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.7;
}

.service-reveal-card ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.service-reveal-card li::before {
    content: '';
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.8rem;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.window-meta-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.42);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.story-media-panel {
    position: relative;
    min-height: 34rem;
    overflow: hidden;
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.story-media-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 100%);
}

.story-media-badge {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.58);
    color: rgba(212, 175, 55, 0.88);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.network-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.network-marquee {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    max-width: 28rem;
}

.network-marquee span {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.58);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.events-stage {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dashboard-grid {
    width: 100%;
}

.event-card {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.event-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.event-card:hover::after {
    opacity: 0.8;
}

.story-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.25;
}

.story-orb-gold {
    top: 14%;
    right: 8%;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8), transparent 70%);
}

.story-orb-cyan {
    bottom: 10%;
    left: 6%;
    width: 14rem;
    height: 14rem;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.8), transparent 70%);
}

.scan-gold {
    background: linear-gradient(to bottom, transparent 0%, rgba(212, 175, 55, 0.18) 50%, transparent 100%);
    background-size: 100% 200%;
}

.scan-cyan {
    background: linear-gradient(to bottom, transparent 0%, rgba(34, 211, 238, 0.18) 50%, transparent 100%);
    background-size: 100% 200%;
}

.scan-magenta {
    background: linear-gradient(to bottom, transparent 0%, rgba(244, 114, 182, 0.18) 50%, transparent 100%);
    background-size: 100% 200%;
}

.mobile-nav-drawer {
    position: fixed;
    top: 4.9rem;
    left: 1rem;
    right: 1rem;
    z-index: 55;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    background: rgba(14, 14, 17, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-nav-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav-drawer a {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.76);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.mobile-nav-drawer a:last-child {
    border-bottom: none;
}

.mobile-nav-drawer a span {
    color: rgba(212, 175, 55, 0.72);
}

.contact-marquee {
    color: rgba(63, 63, 70, 0.5) !important;
}

@media (max-width: 1023px) {
    .story-stage,
    .section-shell {
        min-height: auto;
        padding-top: 6.5rem;
        padding-bottom: 4rem;
    }

    .hero-grid,
    .section-layout-split {
        grid-template-columns: 1fr;
    }

    .network-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .network-marquee {
        justify-content: flex-start;
    }

    .intro-window-grid,
    .network-card-grid,
    .story-metric-grid,
    .partner-scroll-grid {
        grid-template-columns: 1fr;
    }

    .home-window,
    .service-reveal-card,
    .story-media-panel {
        min-height: auto;
    }

    .partner-scroll-field {
        padding: 1rem;
    }

    .story-media-panel {
        min-height: 24rem;
    }
}

@media (max-width: 767px) {
    .hero-headline {
        font-size: clamp(2.2rem, 11vw, 3.6rem);
    }

    .section-headline {
        font-size: clamp(2.1rem, 12vw, 3.2rem);
    }

    .hero-metric-row,
    .story-metric-grid {
        grid-template-columns: 1fr;
    }

    .home-window,
    .service-reveal-card {
        padding: 1.15rem;
    }

    .home-window h3,
    .service-reveal-card h3 {
        font-size: 1rem;
    }

    .hero-scroll-cue {
        position: static;
        transform: none;
        margin-top: 1.5rem;
    }

    .story-orb-gold {
        width: 10rem;
        height: 10rem;
    }

    .story-orb-cyan {
        width: 8rem;
        height: 8rem;
    }

    .dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.45rem !important;
    }

    .event-card {
        aspect-ratio: 3 / 4 !important;
    }

    .event-card img {
        filter: grayscale(18%) !important;
        transform: none !important;
    }

    .event-card > div:last-child {
        opacity: 1 !important;
        justify-content: flex-end !important;
        padding: 0.6rem !important;
        background: rgba(0, 0, 0, 0.58) !important;
    }

    .event-card > div:last-child > div,
    .event-card > div:last-child > ul {
        display: none !important;
    }

    .event-card > div:last-child > span {
        margin-bottom: 0 !important;
        font-size: 0.6rem !important;
        line-height: 1.3 !important;
        letter-spacing: 0.09em !important;
    }
}

@media (max-width: 380px) {
    .dashboard-grid {
        grid-template-columns: 1fr !important;
    }

    .event-card {
        aspect-ratio: 16 / 9 !important;
    }
}
