:root {
    --bg: #050505;
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --accent: #ffffff;
    --accent-purple: #8f6bff;
    --accent-lavender: #d7c6ff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --panel: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --gloss-highlight: rgba(255, 255, 255, 0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

html.lenis {
    height: auto;
}

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

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: default;
}

#site-content {
    opacity: 1;
    transition: opacity 1.8s var(--ease-smooth);
}

body.site-hidden #site-content {
    opacity: 0;
}

body.site-ready #site-content {
    opacity: 1;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Splash */
#splash {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-smooth);
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.splash-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    transition: opacity 1.1s var(--ease-smooth), transform 1.1s var(--ease-smooth);
}

@keyframes logoEnter {
    0% {
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.45));
    }

    45% {
        transform: scale(1.22) rotate(-3deg);
        filter: drop-shadow(0 0 45px rgba(143, 107, 255, 0.8));
    }

    70% {
        transform: scale(0.98) translateY(4px);
        filter: drop-shadow(0 0 28px rgba(143, 107, 255, 0.55));
    }

    100% {
        transform: scale(0.9) translateY(18px);
        filter: drop-shadow(0 0 16px rgba(143, 107, 255, 0.35));
    }
}

.splash-logo.enter-anim {
    animation: logoEnter 1.1s var(--ease-smooth) forwards;
}

.loader-track {
    width: 160px;
    height: 4px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
}

.loader-line {
    height: 100%;
    width: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: center;
    animation: load 1.6s var(--ease-smooth) forwards;
    animation-delay: 0.6s;
    animation-play-state: paused;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    will-change: transform;
}

@keyframes load {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

#splash-quote {
    margin-top: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
    min-height: 1.2em;
    text-align: center;
    max-width: 80%;
}

.enter-btn {
    margin-top: 24px;
    padding: 10px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(10, 10, 12, 0.55);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth), box-shadow 0.3s ease;
    backdrop-filter: blur(12px) saturate(140%);
}

.enter-btn:hover {
    box-shadow: 0 0 22px rgba(143, 107, 255, 0.35);
    border-color: rgba(143, 107, 255, 0.5);
}

#splash.exit {
    opacity: 0;
}

#splash.exit .splash-content {
    opacity: 0;
    transform: translateY(14px);
}

#splash.intro-ready .splash-logo {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
}

#splash.intro-ready .loader-track {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.35s;
}

#splash.intro-ready .loader-line {
    animation-play-state: running;
}

#splash.intro-ready #splash-quote {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.7s;
}

#splash.intro-ready .enter-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 2.2s;
}



/* Player */
.music-player {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 900;
    background: linear-gradient(140deg, rgba(14, 14, 18, 0.85), rgba(6, 6, 8, 0.9));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -6px 16px rgba(0, 0, 0, 0.6);
    transition: width 0.4s var(--ease-smooth), height 0.4s var(--ease-smooth), background 0.3s;
    width: 250px;
    cursor: grab;
    overflow: hidden;
}

.music-player:active {
    cursor: grabbing;
}

.player-top {
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.mini-controls,
.controls-row,
.volume-row {
    pointer-events: auto;
}

.music-player:hover {
    background: rgba(15, 15, 15, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
}

.player-glow {
    position: absolute;
    inset: -40% -10% auto -10%;
    height: 140%;
    background: radial-gradient(circle at 30% 20%, rgba(143, 107, 255, 0.35), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(110, 231, 255, 0.25), transparent 60%);
    opacity: 0.35;
    filter: blur(25px);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.music-player.beat {
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.65),
        0 0 30px rgba(143, 107, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -6px 16px rgba(0, 0, 0, 0.7);
}

.music-player.beat .player-glow {
    opacity: 0.65;
    transform: scale(1.03);
}

.disk {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #333 0%, #fff 50%, #333 100%);
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.disk::after {
    content: '';
    position: absolute;
    inset: 14px;
    background: #000;
    border-radius: 50%;
}

.spinning {
    animation: spin 4s linear infinite;
    animation-play-state: paused;
}

.spinning.playing {
    animation-play-state: running;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.track-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 0.75rem;
    line-height: 1.2;
    flex-grow: 1;
    overflow: hidden;
}

.track-name {
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    letter-spacing: 0.02em;
    font-size: 0.95rem;
}

.now-label {
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.65rem;
}

.mini-controls button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.mini-controls button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mini-controls {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
}

.mini-controls button svg {
    width: 16px;
    height: 16px;
}

.player-expanded.hidden {
    display: none;
}

.player-expanded {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: slideDown 0.3s var(--ease-smooth);
    position: relative;
    z-index: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.controls-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
}

.controls-row button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.2s;
    position: relative;
}

.controls-row button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.controls-row button::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.controls-row button:hover::after {
    opacity: 1;
}

.main-play svg {
    width: 32px;
    height: 32px;
}

.volume-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    padding: 0 4px;
}

.custom-slider {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    position: relative;
    cursor: pointer;
    transition: height 0.2s;
}

.custom-slider:hover {
    height: 6px;
}

.slider-fill {
    background: #fff;
    height: 100%;
    border-radius: 99px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.slider-thumb {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.custom-slider:hover .slider-thumb {
    opacity: 1;
}

.hidden {
    display: none !important;
}

/* Typography */
h1,
h2,
h3,
h4,
.brand b {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

p {
    line-height: 1.6;
    color: var(--text-dim);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-smooth);
}

/* Layout */
.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 10, 12, 0.2);
    transition: background 0.4s ease, padding 0.4s ease;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
}

.brand img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.brand-x {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.brand-creator,
.brand-coaster {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-creator {
    background-image: linear-gradient(135deg, #ff3b3b, #ff7a59);
}

.brand-coaster {
    background-image: linear-gradient(135deg, #4da3ff, #6ee7ff);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Buttons & Rainbow */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 99px;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 500;
    backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -2px 6px rgba(0, 0, 0, 0.6);
}

.btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    font-weight: 600;
    box-shadow:
        0 8px 26px rgba(0, 0, 0, 0.45),
        inset 0 2px 0 rgba(255, 255, 255, 0.7),
        inset 0 -3px 8px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    background: #f0f0f0;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.btn-rainbow {
    position: relative;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 99px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.55),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -4px 10px rgba(0, 0, 0, 0.6);
}

.btn-rainbow::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 999px;
    background: linear-gradient(90deg, #6a4cff, #8f6bff, #b089ff, #d7c6ff, #b089ff, #8f6bff, #6a4cff);
    background-size: 200%;
    animation: rainbowMove 3s linear infinite;
}

.btn-rainbow::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: rgba(8, 8, 10, 0.75);
    backdrop-filter: blur(14px) saturate(140%);
    border-radius: 999px;
    z-index: -1;
}

@keyframes rainbowMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.btn-rainbow:hover {
    transform: scale(1.05);
}

/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-visual {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.glowing-card {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(10, 10, 12, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 0 60px rgba(143, 107, 255, 0.2), 0 0 120px rgba(143, 107, 255, 0.12);
    backdrop-filter: blur(18px) saturate(140%);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: box-shadow 0.5s ease;
}

.glowing-card:hover {
    box-shadow: 0 0 80px rgba(255, 255, 255, 0.2), 0 0 150px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.overlay-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 40%, rgba(5, 5, 5, 0.6) 100%);
    z-index: 2;
}

.coming-soon {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: rgba(200, 200, 210, 0.75);
    letter-spacing: 0.02em;
    text-shadow:
        0 0 18px rgba(143, 107, 255, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.45);
}

/* Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: start;
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(16px) saturate(140%);
    align-self: start;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -6px 16px rgba(0, 0, 0, 0.5);
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.card:hover .tap-hint {
    opacity: 1;
    transform: translateY(0);
}

.card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.9s var(--ease-smooth), opacity 0.9s var(--ease-smooth);
    opacity: 0;
    margin-top: 0;
}

.card.expanded .card-details {
    max-height: 200px;
    opacity: 1;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tap-hint {
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
    display: block;
    margin-top: 10px;
}

/* Team Styles (About Page) */
.team-section {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    width: 300px;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    backdrop-filter: blur(16px) saturate(140%);
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.founder {
    transform: scale(1.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.founder:hover {
    transform: scale(1.1) translateY(-5px);
    border-color: rgba(255, 215, 0, 0.6);
}

.member-avatar {
    position: relative;
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.discord-status {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    bottom: 5px;
    right: 5px;
    border: 3px solid #000;
    /* border to separate from avatar */
}

.online {
    background: #43b581;
    box-shadow: 0 0 10px #43b581;
}

.dnd {
    background: #f04747;
    box-shadow: 0 0 10px #f04747;
}

.offline {
    background: #747f8d;
}

.team-member h3 {
    margin: 0;
    font-size: 1.4rem;
}

.team-member .role {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: var(--accent);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s var(--ease-smooth);
    margin-top: 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.team-member.active .member-bio {
    max-height: 150px;
    opacity: 1;
    margin-top: 15px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 0;
    margin-top: 60px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(140%);
    margin-bottom: 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 2.2s var(--ease-smooth), transform 2.2s var(--ease-smooth);
    transition-delay: var(--reveal-delay, 0s);
}

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

.delay-1 {
    --reveal-delay: 0.2s;
}

.delay-2 {
    --reveal-delay: 0.45s;
}

.delay-3 {
    --reveal-delay: 0.7s;
}

.grid>.reveal:nth-child(1) {
    --reveal-delay: 0.15s;
}

.grid>.reveal:nth-child(2) {
    --reveal-delay: 0.45s;
}

.grid>.reveal:nth-child(3) {
    --reveal-delay: 0.75s;
}

.grid>.reveal:nth-child(4) {
    --reveal-delay: 1.05s;
}

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

    h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .hero-visual {
        min-height: 300px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #splash,
    .splash-content {
        transition: none !important;
    }
}
