/* ============================================
   JJUGGL.com - Styles
   A kinetic, gravity-defying digital playground
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Colors from DESIGN.md */
    --void-indigo: #0B0E2D;
    --warm-charcoal: #1E1A2B;
    --arc-tangerine: #FF6B35;
    --apex-cyan: #00E5CC;
    --peak-magenta: #E83F6F;
    --flash-yellow: #FFBE0B;
    --chalk-white: #F0EDE8;
    --dust-lavender: #8B85A1;

    /* Easing curves mimicking gravity */
    --ease-rise: cubic-bezier(0.33, 0, 0.67, 1);
    --ease-fall: cubic-bezier(0.33, 0, 1, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Typography */
    --font-headline: 'Anybody', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'Syne Mono', monospace;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--chalk-white);
    background-color: var(--void-indigo);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   Navigation - Floating Pill
   ============================================ */
#nav-pill {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.5s var(--ease-spring);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 28px;
    background: rgba(30, 26, 43, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(240, 237, 232, 0.08);
    transition: all 0.5s var(--ease-spring);
}

#nav-pill.scrolled .nav-inner {
    padding: 10px 24px;
    background: rgba(30, 26, 43, 0.95);
    border-color: rgba(255, 107, 53, 0.15);
}

#nav-pill.stretched .nav-inner {
    border-radius: 40px;
    transform: scaleX(1.05);
}

.nav-logo {
    font-family: var(--font-headline);
    font-weight: 800;
    font-stretch: 125%;
    font-size: 1.1rem;
    color: var(--arc-tangerine);
    letter-spacing: 2px;
}

.nav-items {
    display: flex;
    gap: 20px;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--dust-lavender);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease, transform 0.3s var(--ease-spring);
    position: relative;
}

.nav-link:hover {
    color: var(--apex-cyan);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--apex-cyan);
    border-radius: 1px;
    transition: width 0.3s var(--ease-spring);
}

.nav-link:hover::after {
    width: 100%;
}

/* ============================================
   Section Base
   ============================================ */
.section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* ============================================
   Section 1: Opening - Spotlight & Logo
   ============================================ */
.section-opening {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--void-indigo);
    background-image:
        radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(0, 229, 204, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(232, 63, 111, 0.03) 0%, transparent 50%);
}

.spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 190, 11, 0.12) 0%, rgba(255, 190, 11, 0.04) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: spotlightExpand 2s var(--ease-rise) 0.3s forwards;
}

@keyframes spotlightExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 140vmax;
        height: 140vmax;
        opacity: 1;
    }
}

/* Orbit rings */
.orbit-rings, .orbit-rings-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(240, 237, 232, 0.05);
    transform: translate(-50%, -50%);
    animation: orbitSpin 60s linear infinite;
}

.orbit-ring-1 {
    width: 300px;
    height: 200px;
    animation-duration: 45s;
}

.orbit-ring-2 {
    width: 500px;
    height: 350px;
    animation-duration: 60s;
    animation-direction: reverse;
}

.orbit-ring-3 {
    width: 750px;
    height: 500px;
    animation-duration: 80s;
}

.orbit-ring-4 {
    width: 400px;
    height: 280px;
    top: 30%;
    left: 60%;
    animation-duration: 55s;
}

.orbit-ring-5 {
    width: 600px;
    height: 420px;
    top: 60%;
    left: 35%;
    animation-duration: 70s;
    animation-direction: reverse;
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Logo Assembly */
.logo-assembly {
    display: flex;
    gap: 4px;
    z-index: 2;
    margin-bottom: 24px;
}

.logo-letter {
    font-family: var(--font-headline);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    font-stretch: 150%;
    color: var(--chalk-white);
    display: inline-block;
    opacity: 0;
    transform: translateY(120px);
    animation: letterToss 0.8s var(--ease-rise) forwards;
}

.logo-letter[data-index="0"] { animation-delay: 0.5s; color: var(--arc-tangerine); }
.logo-letter[data-index="1"] { animation-delay: 0.65s; color: var(--apex-cyan); }
.logo-letter[data-index="2"] { animation-delay: 0.8s; color: var(--chalk-white); }
.logo-letter[data-index="3"] { animation-delay: 0.95s; color: var(--peak-magenta); }
.logo-letter[data-index="4"] { animation-delay: 1.1s; color: var(--flash-yellow); }
.logo-letter[data-index="5"] { animation-delay: 1.25s; color: var(--chalk-white); }

@keyframes letterToss {
    0% {
        opacity: 0;
        transform: translateY(120px) scale(0.7);
    }
    60% {
        opacity: 1;
        transform: translateY(-20px) scale(1.05);
    }
    80% {
        transform: translateY(5px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.opening-tagline {
    font-family: var(--font-mono);
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    color: var(--dust-lavender);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeReveal 1s ease 2s forwards;
    z-index: 2;
}

@keyframes fadeReveal {
    from { opacity: 0; transform: translateY(15px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeReveal 1s ease 2.8s forwards;
    z-index: 2;
}

.scroll-ball {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--arc-tangerine);
    animation: bounceBall 2s var(--ease-rise) infinite;
}

@keyframes bounceBall {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.scroll-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--dust-lavender);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Gravity lines */
.gravity-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 79px,
        rgba(139, 133, 161, 0.06) 79px,
        rgba(139, 133, 161, 0.06) 80px
    );
    z-index: 0;
}

/* ============================================
   Arc Dividers
   ============================================ */
.arc-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 3;
    pointer-events: none;
}

.arc-divider-top {
    top: 0;
}

.arc-divider svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   Section 2: First Throw
   ============================================ */
.section-first-throw {
    background: var(--warm-charcoal);
    background-image:
        radial-gradient(ellipse at 20% 40%, rgba(0, 229, 204, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    padding: 160px 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.throw-content {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.throw-item {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.8s var(--ease-rise), filter 0.5s ease;
    filter: blur(6px);
    position: relative;
}

.throw-item.visible {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    filter: blur(0);
}

.throw-item-1 {
    transform: translateX(-60px) translateY(40px) rotate(-2deg);
}

.throw-item-1.visible {
    transform: translateX(0) translateY(0) rotate(0deg);
}

.throw-item-2 {
    transform: translateX(60px) translateY(40px) rotate(2deg);
    text-align: right;
}

.throw-item-2.visible {
    transform: translateX(0) translateY(0) rotate(0deg);
}

.throw-item-3 {
    transform: translateX(-60px) translateY(40px) rotate(-1.5deg);
}

.throw-item-3.visible {
    transform: translateX(0) translateY(0) rotate(0deg);
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    font-stretch: 130%;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--chalk-white) 0%, var(--arc-tangerine) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-body {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--chalk-white);
    max-width: 600px;
    opacity: 0.85;
}

.throw-item-2 .section-body {
    margin-left: auto;
}

.throw-subtitle {
    font-family: var(--font-headline);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    font-stretch: 120%;
    margin-bottom: 14px;
    color: var(--chalk-white);
}

.siteswap-watermark {
    font-family: var(--font-mono);
    font-size: clamp(6rem, 15vw, 12rem);
    color: var(--chalk-white);
    opacity: 0.04;
    position: absolute;
    top: -30px;
    right: -20px;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.throw-item-3 .siteswap-watermark {
    left: -20px;
    right: auto;
}

/* Parabolic trails */
.parabolic-trails {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.trail-svg {
    width: 100%;
    height: 100%;
}

.dotted-trail {
    stroke-dashoffset: 1000;
    animation: trailDraw 3s var(--ease-rise) forwards;
}

.trail-1 { animation-delay: 0.5s; }
.trail-2 { animation-delay: 1s; }
.trail-3 { animation-delay: 1.5s; }

@keyframes trailDraw {
    to { stroke-dashoffset: 0; }
}

/* ============================================
   Section 3: The Pattern
   ============================================ */
.section-the-pattern {
    background: var(--void-indigo);
    background-image:
        radial-gradient(ellipse at 50% 20%, rgba(232, 63, 111, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(255, 190, 11, 0.03) 0%, transparent 50%);
    padding: 160px 0 140px;
}

.pattern-title-wrap {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.pattern-title {
    font-family: var(--font-headline);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    font-stretch: 140%;
    color: var(--chalk-white);
    line-height: 1.1;
    margin-bottom: 12px;
}

.siteswap-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--dust-lavender);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Pattern streams - weaving layout */
.pattern-streams {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stream {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stream-left {
    padding-top: 0;
}

.stream-right {
    padding-top: 100px;
}

.stream-card {
    background: rgba(30, 26, 43, 0.6);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(240, 237, 232, 0.06);
    transform: translateX(0) rotate(0deg);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.8s var(--ease-rise);
}

.stream-card.visible {
    opacity: 1;
}

.stream-card[data-animation="weave-right"] {
    transform: translateX(-80px) rotate(-3deg);
}

.stream-card[data-animation="weave-left"] {
    transform: translateX(80px) rotate(3deg);
}

.stream-card.visible[data-animation="weave-right"],
.stream-card.visible[data-animation="weave-left"] {
    transform: translateX(0) rotate(0deg);
}

.stream-card:hover {
    border-color: rgba(240, 237, 232, 0.12);
    transform: scale(1.02);
    transition: transform 0.4s var(--ease-spring), border-color 0.3s ease;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 2px;
}

.card-accent-tangerine { background: var(--arc-tangerine); }
.card-accent-cyan { background: var(--apex-cyan); }
.card-accent-magenta { background: var(--peak-magenta); }
.card-accent-yellow { background: var(--flash-yellow); }

.card-title {
    font-family: var(--font-headline);
    font-size: 1.6rem;
    font-weight: 700;
    font-stretch: 115%;
    margin-bottom: 12px;
    color: var(--chalk-white);
}

.card-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--chalk-white);
    opacity: 0.8;
}

.card-counter {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--dust-lavender);
    opacity: 0.5;
    letter-spacing: 1px;
}

/* Siteswap background */
.siteswap-bg {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    pointer-events: none;
    z-index: 1;
}

.siteswap-svg {
    width: 100%;
    height: auto;
}

/* ============================================
   Section 4: The Trick - Interactive
   ============================================ */
.section-the-trick {
    background: var(--warm-charcoal);
    background-image:
        radial-gradient(ellipse at 40% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 30%, rgba(0, 229, 204, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 70%, rgba(232, 63, 111, 0.03) 0%, transparent 40%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.trick-content {
    text-align: center;
    z-index: 3;
    margin-bottom: 20px;
    pointer-events: none;
}

.trick-title {
    font-family: var(--font-headline);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    font-stretch: 140%;
    color: var(--chalk-white);
    margin-bottom: 12px;
}

.trick-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--dust-lavender);
    font-weight: 400;
}

.trick-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: none;
}

.floating-ball {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    pointer-events: none;
    transition: none;
    will-change: transform;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.ball-tangerine {
    background: radial-gradient(circle at 35% 35%, #ff9a6c, var(--arc-tangerine), #cc4a1a);
    width: 44px;
    height: 44px;
}

.ball-cyan {
    background: radial-gradient(circle at 35% 35%, #66fff0, var(--apex-cyan), #009e8d);
    width: 38px;
    height: 38px;
}

.ball-magenta {
    background: radial-gradient(circle at 35% 35%, #ff7aa0, var(--peak-magenta), #b82a53);
    width: 42px;
    height: 42px;
}

.ball-yellow {
    background: radial-gradient(circle at 35% 35%, #ffd966, var(--flash-yellow), #cc9600);
    width: 36px;
    height: 36px;
}

/* Stage lights */
.stage-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.stage-light {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.stage-light-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--arc-tangerine), transparent 70%);
}

.stage-light-2 {
    width: 500px;
    height: 500px;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    background: radial-gradient(circle, var(--apex-cyan), transparent 70%);
}

.stage-light-3 {
    width: 400px;
    height: 400px;
    bottom: -50px;
    left: 30%;
    background: radial-gradient(circle, var(--peak-magenta), transparent 70%);
}

/* ============================================
   Section 5: The Bow
   ============================================ */
.section-the-bow {
    background: var(--void-indigo);
    background-image:
        radial-gradient(ellipse at 50% 50%, rgba(255, 190, 11, 0.04) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.bow-content {
    text-align: center;
    z-index: 2;
    max-width: 700px;
    width: 90%;
    padding: 0 20px;
}

.bow-title {
    font-family: var(--font-headline);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    font-stretch: 140%;
    color: var(--chalk-white);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 1s var(--ease-rise);
}

.bow-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.bow-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--chalk-white);
    opacity: 0;
    margin-bottom: 48px;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 1s var(--ease-rise) 0.3s;
}

.bow-text.visible {
    opacity: 0.8;
    transform: translateY(0);
}

.bow-signature {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.6s, transform 1s var(--ease-rise) 0.6s;
}

.bow-signature.visible {
    opacity: 1;
    transform: translateY(0);
}

.signature-text {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 900;
    font-stretch: 150%;
    color: var(--arc-tangerine);
}

.signature-dot {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--flash-yellow);
}

.signature-com {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 900;
    font-stretch: 150%;
    color: var(--apex-cyan);
}

/* Footer */
.site-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 0 30px;
    z-index: 2;
}

.footer-arcs {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
}

.footer-arcs svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    text-align: center;
    position: relative;
}

.footer-text {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--dust-lavender);
    letter-spacing: 2px;
    opacity: 0.6;
}

.footer-particles {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    pointer-events: none;
}

/* ============================================
   Particle Burst (click effect)
   ============================================ */
#particle-burst-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.burst-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
}

/* ============================================
   Converging particles (Bow section)
   ============================================ */
.converge-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .nav-items {
        display: none;
    }

    .nav-inner {
        padding: 10px 20px;
    }

    .pattern-streams {
        flex-direction: column;
    }

    .stream-right {
        padding-top: 0;
    }

    .stream-card[data-animation="weave-right"],
    .stream-card[data-animation="weave-left"] {
        transform: translateY(40px) rotate(0deg);
    }

    .stream-card.visible[data-animation="weave-right"],
    .stream-card.visible[data-animation="weave-left"] {
        transform: translateY(0) rotate(0deg);
    }

    .trick-canvas {
        cursor: auto;
    }

    .floating-ball {
        width: 28px;
        height: 28px;
    }

    .ball-tangerine { width: 32px; height: 32px; }
    .ball-cyan { width: 26px; height: 26px; }
    .ball-magenta { width: 30px; height: 30px; }
    .ball-yellow { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
    .logo-assembly {
        gap: 1px;
    }

    .throw-item {
        margin-bottom: 50px;
    }

    .throw-item-2 {
        text-align: left;
    }

    .throw-item-2 .section-body {
        margin-left: 0;
    }

    .stream-card {
        padding: 24px;
    }
}

/* ============================================
   Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .logo-letter {
        animation: fadeReveal 0.5s ease forwards;
    }

    .logo-letter[data-index="0"] { animation-delay: 0.1s; }
    .logo-letter[data-index="1"] { animation-delay: 0.15s; }
    .logo-letter[data-index="2"] { animation-delay: 0.2s; }
    .logo-letter[data-index="3"] { animation-delay: 0.25s; }
    .logo-letter[data-index="4"] { animation-delay: 0.3s; }
    .logo-letter[data-index="5"] { animation-delay: 0.35s; }

    .spotlight {
        animation: none;
        width: 140vmax;
        height: 140vmax;
        opacity: 1;
    }

    .orbit-ring {
        animation: none;
    }

    .scroll-ball {
        animation: none;
    }

    .dotted-trail {
        animation: none;
        stroke-dashoffset: 0;
    }

    .throw-item,
    .stream-card {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .bow-title,
    .bow-text,
    .bow-signature {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
