:root {
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-editorial: 'Cormorant Garamond', Georgia, serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-hand: 'Caveat', cursive;

    /* Theme Tokens - Obsidian Studio Foundation with Electric Flame Accent */
    --color-bg-primary: #07080B;
    --color-bg-secondary: #0D0F14;
    --color-bg-tertiary: #13161F;
    --color-bg-card: #11141C;
    --color-bg-card-subtle: #0B0D13;
    --color-bg-card-glass: rgba(13, 15, 20, 0.88);
    --color-bg-card-hover: #181C26;

    --color-accent-orange: #F97316;
    --color-accent-amber: #F59E0B;
    --color-accent-yellow: #F59E0B;
    --color-accent-brown: #EA580C;
    --color-accent-cyan: #38BDF8;
    --color-accent-teal: #14B8A6;

    --color-accent-purple: #F97316;
    --color-accent-pink: #EA580C;
    --color-accent-purple-hover: #FB923C;
    --color-accent-pink-hover: #C2410C;
    --color-accent-purple-muted: rgba(249, 115, 22, 0.12);
    --color-accent-pink-muted: rgba(234, 88, 12, 0.12);

    --color-text-primary: #FFFFFF;
    --color-text-secondary: #CBD5E1;
    --color-text-muted: #94A3B8;
    --color-text-subtle: #64748B;
    --color-text-on-dark: #FFFFFF;

    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-solid: rgba(249, 115, 22, 0.38);
    --color-border-yellow: #F59E0B;
    --color-border-pink: #EA580C;
    --color-border-cyan: #38BDF8;
    --color-border-light: rgba(249, 115, 22, 0.16);

    --color-dark-footer: #07080B;
    --color-dark-footer-text: #FFFFFF;
    --color-dark-footer-muted: #94A3B8;
    --color-dark-footer-border: rgba(255, 255, 255, 0.08);

    /* Gradients */
    --gradient-purple-pink: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    --gradient-purple-pink-hover: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
    --gradient-pink-purple: linear-gradient(135deg, #EA580C 0%, #F97316 100%);
    --gradient-creamy-velvet: linear-gradient(135deg, #F97316 0%, #F59E0B 50%, #07080B 100%);
    --gradient-text-shimmer: linear-gradient(135deg, #FFFFFF 0%, #F97316 45%, #F59E0B 75%, #FFFFFF 100%);
    --gradient-ambient-blob1: none;
    --gradient-ambient-blob2: none;
    --gradient-card-subtle: linear-gradient(135deg, rgba(249, 115, 22, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    color-scheme: dark;
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
    font-family: var(--font-body);
}

/* Custom font classes */
.font-heading {
    font-family: var(--font-heading);
}

.font-body {
    font-family: var(--font-body);
}

.font-display {
    font-family: var(--font-display);
}

.font-editorial {
    font-family: var(--font-editorial);
    letter-spacing: -0.01em;
}

.font-cormorant {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.font-source {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.font-hand {
    font-family: 'Caveat', cursive;
    font-weight: 700;
}

/* Editorial display typography utilities for refined, high-impact headings */
.display-editorial-hero {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
}

.display-editorial-section {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* Theme Utility Classes */
.bg-theme-primary { background-color: var(--color-bg-primary) !important; }
.bg-theme-secondary { background-color: var(--color-bg-secondary) !important; }
.bg-theme-tertiary { background-color: var(--color-bg-card-subtle) !important; }
.bg-theme-card { background-color: var(--color-bg-card) !important; }
.bg-theme-card-subtle { background-color: var(--color-bg-card-subtle) !important; }
.bg-theme-card-glass { background-color: var(--color-bg-card-glass) !important; }
.bg-theme-purple { background-color: var(--color-accent-purple) !important; }
.bg-theme-pink { background-color: var(--color-accent-pink) !important; }
.bg-theme-purple-muted { background-color: var(--color-accent-purple-muted) !important; }
.bg-theme-pink-muted { background-color: var(--color-accent-pink-muted) !important; }
.bg-theme-dark { background-color: var(--color-dark-footer) !important; }
.bg-theme-gradient { background: var(--gradient-purple-pink) !important; }
.bg-theme-gradient-hover:hover { background: var(--gradient-purple-pink-hover) !important; }

.text-theme-primary { color: var(--color-text-primary) !important; }
.text-theme-secondary { color: var(--color-text-secondary) !important; }
.text-theme-muted { color: var(--color-text-muted) !important; }
.text-theme-subtle { color: var(--color-text-subtle) !important; }
.text-theme-purple { color: var(--color-accent-purple) !important; }
.text-theme-pink { color: var(--color-accent-pink) !important; }
.text-theme-accent-purple { color: var(--color-accent-purple) !important; }
.text-theme-accent-pink { color: var(--color-accent-pink) !important; }
.text-theme-on-dark { color: var(--color-text-on-dark) !important; }

.border-theme { border-color: var(--color-border) !important; }
.border-theme-solid { border-color: var(--color-border-solid) !important; }
.border-theme-pink { border-color: var(--color-border-pink) !important; }
.border-theme-light { border-color: var(--color-border-light) !important; }

/* Buttons & Interactive Components */
.btn-theme-gradient {
    position: relative;
    background: var(--gradient-purple-pink);
    color: #FFFFFF;
    font-weight: 800;
    border: 1px solid rgba(249, 115, 22, 0.4);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.btn-theme-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.65s ease-in-out;
    pointer-events: none;
}

.btn-theme-gradient:hover::after {
    left: 140%;
}

.btn-theme-gradient:hover {
    background: var(--gradient-purple-pink-hover);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25), 0 4px 12px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn-theme-gradient:active {
    transform: scale(0.96) translateY(0);
}

.btn-theme-card {
    background-color: var(--color-bg-card);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.btn-theme-card:hover {
    background-color: var(--color-bg-card-hover);
    border-color: var(--color-border-solid);
    color: #FFFFFF;
}

.theme-card {
    position: relative;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.theme-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(450px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(249, 115, 22, 0.12), transparent 75%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.theme-card:hover {
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 20px rgba(249, 115, 22, 0.1);
    transform: translateY(-3px) scale(1.005);
}

.theme-card:hover::before {
    opacity: 1;
}

.glass-card {
    position: relative;
    background: var(--color-bg-card-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(450px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(249, 115, 22, 0.12), transparent 75%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.glass-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(249, 115, 22, 0.08);
    transform: translateY(-2px);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Flowing Dashed Arrow Animation */
@keyframes dashFlow {
    to {
        stroke-dashoffset: -32;
    }
}

.arrow-dashed-flow {
    stroke-dasharray: 6 5;
    animation: dashFlow 1.1s linear infinite;
}

/* Clean Micro Twinkle */
@keyframes sparkleTwinkle {
    0%, 100% {
        transform: scale(0.85) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.15) rotate(45deg);
        opacity: 1;
    }
}

.sparkle-twinkle {
    animation: sparkleTwinkle 2.2s ease-in-out infinite;
}

/* Arrow Hover Effects on Buttons & Links */
.sexy-arrow {
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.group:hover .sexy-arrow,
button:hover .sexy-arrow,
a:hover .sexy-arrow {
    transform: translateX(4px) translateY(-2px) scale(1.1);
}

.sexy-arrow-right {
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.group:hover .sexy-arrow-right,
button:hover .sexy-arrow-right,
a:hover .sexy-arrow-right {
    transform: translateX(5px) scale(1.08);
}

.sexy-arrow-left {
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.group:hover .sexy-arrow-left,
button:hover .sexy-arrow-left,
a:hover .sexy-arrow-left {
    transform: translateX(-5px) scale(1.08);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #000000;
}
::-webkit-scrollbar-thumb {
    background: #27272A;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
::-webkit-scrollbar-thumb:hover {
    background: #F97316;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Ripple effect on clicks */
.ripple-container {
    position: relative;
    overflow: hidden;
}

.ripple-wave {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: rippleAnim 0.75s linear;
    background-color: rgba(249, 115, 22, 0.3);
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Particle bursts */
.particle {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFly 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes particleFly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--pvx), var(--pvy)) scale(0);
        opacity: 0;
    }
}

/* Infinite Marquee Scroll */
@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-scroll {
    display: flex;
    width: max-content;
    animation: infiniteScroll 35s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

.mask-linear-fade {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Matte Shimmer Gradient Text (No Neon Bloom) */
.premium-text-gradient {
    background: var(--gradient-text-shimmer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cream-text-gradient {
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FAQ ScrollStack item styles */
.scroll-stack-item {
    will-change: transform, top;
}

/* Doodle Animations & Expressive Micro-Interactions */
.doodle-sketch {
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.doodle-sketch:hover {
    transform: scale(1.06);
}

/* ==========================================================================
   COMPREHENSIVE 60+ ANIMATION SYSTEM & MICRO-PHYSICS
   ========================================================================== */

/* 1. Natural Eye Blinking */
@keyframes doodleBlink {
    0%, 86%, 92%, 100% { transform: scaleY(1); }
    89% { transform: scaleY(0.08); }
}
.animate-doodle-blink { animation: doodleBlink 4.2s ease-in-out infinite; transform-origin: center center; }

/* 2. Ear Twitch Left */
@keyframes doodleEarTwitchL {
    0%, 82%, 100% { transform: rotate(0deg); }
    85% { transform: rotate(-10deg); }
    88% { transform: rotate(6deg); }
    91% { transform: rotate(-3deg); }
}
.animate-doodle-ear-l { animation: doodleEarTwitchL 5s ease-in-out infinite; }

/* 3. Ear Twitch Right */
@keyframes doodleEarTwitchR {
    0%, 84%, 100% { transform: rotate(0deg); }
    87% { transform: rotate(10deg); }
    90% { transform: rotate(-6deg); }
    93% { transform: rotate(3deg); }
}
.animate-doodle-ear-r { animation: doodleEarTwitchR 5.3s ease-in-out infinite; }

/* 4. Waving Paw */
@keyframes doodleWave {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(20deg); }
    40% { transform: rotate(-8deg); }
    60% { transform: rotate(18deg); }
    80% { transform: rotate(-4deg); }
}
.animate-doodle-wave { animation: doodleWave 2.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite; }

/* 5. Tail Wagging */
@keyframes doodleTail {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(16deg); }
    75% { transform: rotate(-14deg); }
}
.animate-doodle-tail { animation: doodleTail 1.8s ease-in-out infinite; }

/* 6. DJ Turntable Spin */
@keyframes djSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.animate-dj-spin { animation: djSpin 3s linear infinite; }

/* 7. Reverse Spin */
@keyframes spinReverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}
.animate-spin-reverse { animation: spinReverse 4s linear infinite; }

/* 8. Slow Ambient Spin */
@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.animate-spin-slow { animation: spinSlow 12s linear infinite; }

/* 9-11. Equalizer Bars */
@keyframes eq1 { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1.3); } }
@keyframes eq2 { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.3); } }
@keyframes eq3 { 0%, 100% { transform: scaleY(0.6); } 50% { transform: scaleY(1.4); } }
.animate-equalizer-1 { animation: eq1 0.7s ease-in-out infinite; transform-origin: center; }
.animate-equalizer-2 { animation: eq2 0.85s ease-in-out infinite; transform-origin: center; }
.animate-equalizer-3 { animation: eq3 0.6s ease-in-out infinite; transform-origin: center; }

/* 12. Sparkle Twinkle Stars */
@keyframes doodleSparkle {
    0%, 100% { transform: scale(0.6) rotate(0deg); opacity: 0.35; }
    50% { transform: scale(1.2) rotate(45deg); opacity: 1; }
}
.animate-doodle-sparkle { animation: doodleSparkle 2.6s ease-in-out infinite; transform-origin: center center; }

/* 13. Beacon Glow Pulse */
@keyframes beaconGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}
.animate-doodle-beacon { animation: beaconGlow 2s ease-in-out infinite; transform-origin: center center; }

/* 14. Rosy Blush Pulse */
@keyframes blushPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.15); }
}
.animate-doodle-blush { animation: blushPulse 3s ease-in-out infinite; transform-origin: center center; }

/* 15. Float Slow */
@keyframes doodleFloatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(4deg); }
}
.animate-doodle-float-slow { animation: doodleFloatSlow 3.8s ease-in-out infinite; }

/* 16. Doodle Wiggle */
@keyframes doodleWiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-2deg) scale(1.02); }
    50% { transform: rotate(1.5deg) scale(0.99); }
    75% { transform: rotate(-1deg) scale(1.01); }
}
.animate-doodle-wiggle { animation: doodleWiggle 3.5s ease-in-out infinite; transform-origin: center center; }

/* 17. Doodle Float Regular */
@keyframes doodleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-9px) rotate(2deg); }
}
.animate-doodle-float { animation: doodleFloat 3.8s ease-in-out infinite; transform-origin: center center; }

/* 18. Doodle Bounce */
@keyframes doodleBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-12px) scale(1.04); }
    60% { transform: translateY(-4px) scale(0.97); }
}
.animate-doodle-bounce { animation: doodleBounce 2.4s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; transform-origin: bottom center; }

/* 19. Doodle Purr Vibration */
@keyframes doodlePurr {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-1.5px) scale(1.015); }
}
.animate-doodle-purr { animation: doodlePurr 0.35s ease-in-out infinite; }

/* 20. Doodle Curious Tilt */
@keyframes doodleCurious {
    0%, 100% { transform: rotate(0deg); }
    30% { transform: rotate(-8deg); }
    70% { transform: rotate(7deg); }
}
.animate-doodle-curious { animation: doodleCurious 4s ease-in-out infinite; }

/* 21. Doodle Dance Jump */
@keyframes doodleDance {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-4deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(4deg); }
}
.animate-doodle-dance { animation: doodleDance 1.6s ease-in-out infinite; }

/* 22. Float Reverse */
@keyframes floatReverse {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(9px) rotate(-2deg); }
}
.animate-float-reverse { animation: floatReverse 4.2s ease-in-out infinite; }

/* 23. Float Drift */
@keyframes floatDrift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(4px, -6px); }
    50% { transform: translate(-3px, -10px); }
    75% { transform: translate(-6px, -4px); }
}
.animate-float-drift { animation: floatDrift 5s ease-in-out infinite; }

/* 24. Gentle Bob */
@keyframes gentleBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.animate-gentle-bob { animation: gentleBob 2.8s ease-in-out infinite; }

/* 25. Shimmer Sweep */
@keyframes shimmerSweep {
    0% { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(200%) skewX(-20deg); }
}
.animate-shimmer-sweep { animation: shimmerSweep 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite; }

/* 26. Rotating Border Beam */
@keyframes borderBeam {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.animate-border-beam { animation: borderBeam 6s linear infinite; }

/* 27. Gold/Amber Sheen Sweep */
@keyframes goldSheen {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.animate-gold-sheen {
    background: linear-gradient(90deg, rgba(249,115,22,0.1) 0%, rgba(253,224,71,0.5) 50%, rgba(249,115,22,0.1) 100%);
    background-size: 200% 100%;
    animation: goldSheen 3s ease-in-out infinite;
}

/* 28. Neon Aura Pulse */
@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(249, 115, 22, 0.3), inset 0 0 10px rgba(249, 115, 22, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(249, 115, 22, 0.6), inset 0 0 20px rgba(249, 115, 22, 0.25);
    }
}
.animate-neon-pulse { animation: neonPulse 2.5s ease-in-out infinite; }

/* 29. Beacon Expanding Ring */
@keyframes beaconRing {
    0% { transform: scale(0.85); opacity: 0.9; }
    100% { transform: scale(2.2); opacity: 0; }
}
.animate-beacon-ring { animation: beaconRing 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite; }

/* 30. Radar Sweep */
@keyframes radarSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.animate-radar-sweep { animation: radarSweep 4s linear infinite; transform-origin: center center; }

/* 31. Energy Core Breathing */
@keyframes energyCore {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.12); filter: brightness(1.35) drop-shadow(0 0 12px #F97316); }
}
.animate-energy-core { animation: energyCore 2.2s ease-in-out infinite; }

/* 32. Orbit Ring */
@keyframes orbitRing {
    0% { transform: rotate(0deg) translateX(18px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(18px) rotate(-360deg); }
}
.animate-orbit-ring { animation: orbitRing 6s linear infinite; }

/* 33. Jiggle Micro-Interaction */
@keyframes jiggle {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-5deg); }
    40% { transform: rotate(5deg); }
    60% { transform: rotate(-3deg); }
    80% { transform: rotate(3deg); }
}
.animate-jiggle { animation: jiggle 0.6s ease-in-out infinite; }

/* 34. Rubber Band Stretch */
@keyframes rubberBand {
    0% { transform: scale3d(1, 1, 1); }
    30% { transform: scale3d(1.15, 0.85, 1); }
    40% { transform: scale3d(0.85, 1.15, 1); }
    50% { transform: scale3d(1.08, 0.92, 1); }
    65% { transform: scale3d(0.96, 1.04, 1); }
    75% { transform: scale3d(1.02, 0.98, 1); }
    100% { transform: scale3d(1, 1, 1); }
}
.animate-rubber-band { animation: rubberBand 1.2s ease-in-out infinite; }

/* 35. Pop In Elastic */
@keyframes popIn {
    0% { transform: scale(0.6); opacity: 0; }
    70% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
.animate-pop-in { animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

/* 36. Spring Up Entrance */
@keyframes springUp {
    0% { transform: translateY(20px) scale(0.95); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}
.animate-spring-up { animation: springUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* 37. Sine Wave Horizontal Glide */
@keyframes sineWave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}
.animate-sine-wave { animation: sineWave 2s ease-in-out infinite; }

/* 38. Audio Waveform Pulse */
@keyframes audioWave {
    0%, 100% { height: 4px; }
    50% { height: 18px; }
}
.animate-audio-wave { animation: audioWave 0.8s ease-in-out infinite; }

/* 39. Heartbeat Life Indicator */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.2); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
}
.animate-heartbeat { animation: heartbeat 1.5s ease-in-out infinite; }

/* 40. Ping Slow Ring */
@keyframes pingSlow {
    0% { transform: scale(1); opacity: 1; }
    75%, 100% { transform: scale(2.2); opacity: 0; }
}
.animate-ping-slow { animation: pingSlow 2.4s cubic-bezier(0, 0, 0.2, 1) infinite; }

/* 41. Badge Sparkle Shimmer */
@keyframes badgeSparkle {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 0 rgba(249,115,22,0)); }
    50% { filter: brightness(1.25) drop-shadow(0 0 8px rgba(249,115,22,0.6)); }
}
.animate-badge-sparkle { animation: badgeSparkle 3s ease-in-out infinite; }

/* 42. Metric Number Glow */
@keyframes metricGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(249, 115, 22, 0.2); }
    50% { text-shadow: 0 0 24px rgba(249, 115, 22, 0.8), 0 0 40px rgba(245, 158, 11, 0.4); }
}
.animate-metric-glow { animation: metricGlow 3s ease-in-out infinite; }

/* 43. Status Ripple Live Dot */
@keyframes statusRipple {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.animate-status-ripple { animation: statusRipple 2s infinite; }

/* 44. Live Dot Orange Pulse */
@keyframes liveDotOrange {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}
.animate-live-dot { animation: liveDotOrange 2s infinite; }

/* 45. Tag Hover Pop */
@keyframes tagPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1.04); }
}
.animate-tag-pop { animation: tagPop 0.25s ease-out forwards; }

/* 46. Scanline Flow */
@keyframes scanlineFlow {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(1000%); }
}
.animate-scanline-flow { animation: scanlineFlow 4s linear infinite; }

/* 47. Subtle Ambient Breath */
@keyframes subtleBreath {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.02); opacity: 1; }
}
.animate-subtle-breath { animation: subtleBreath 4s ease-in-out infinite; }

/* 48. Icon Wiggle */
@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}
.animate-icon-wiggle { animation: iconWiggle 1.4s ease-in-out infinite; }

/* 49. Text Shimmer Gradient */
@keyframes textShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animate-text-shimmer {
    background: linear-gradient(90deg, #FFFFFF, #F97316, #FDE047, #F97316, #FFFFFF);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 5s ease infinite;
}

/* 50. Laser Underline Flow */
@keyframes laserLine {
    0% { transform: scaleX(0); transform-origin: left; }
    49% { transform: scaleX(1); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
}
.animate-laser-line { animation: laserLine 3s ease-in-out infinite; }

/* 51. Star Twinkle */
@keyframes starTwinkle {
    0%, 100% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.3) rotate(90deg); opacity: 1; }
}
.animate-star-twinkle { animation: starTwinkle 2.2s ease-in-out infinite; }

/* 52. Floating Shadow */
@keyframes floatShadow {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(0.85); opacity: 0.2; }
}
.animate-float-shadow { animation: floatShadow 3.8s ease-in-out infinite; }

/* 53. Corner Spark Pulse */
@keyframes cornerSpark {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}
.animate-corner-spark { animation: cornerSpark 2.4s ease-in-out infinite; }

/* 54. Halo Orbit Glow */
@keyframes haloOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.animate-halo-spin { animation: haloOrbit 8s linear infinite; }

/* 55. Click Ripple Wave */
.element-ripple-wave {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: rippleWave 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: rgba(249, 115, 22, 0.4);
    pointer-events: none;
}
@keyframes rippleWave {
    to {
        transform: scale(3.5);
        opacity: 0;
    }
}

/* 56-65. Hover & Interactive Micro-Motion Physics */
.hover-lift-spring {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.hover-lift-spring:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

.hover-icon-spin i, .hover-icon-spin svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hover-icon-spin:hover i, .hover-icon-spin:hover svg {
    transform: rotate(15deg) scale(1.15);
}

.hover-badge-bounce {
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hover-badge-bounce:hover {
    transform: scale(1.08) translateY(-2px);
}

.hover-border-glow {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hover-border-glow:hover {
    border-color: rgba(249, 115, 22, 0.65) !important;
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.2);
}

.hover-arrow-slide .arrow-icon {
    transition: transform 0.25s ease;
}
.hover-arrow-slide:hover .arrow-icon {
    transform: translateX(4px);
}

.hover-sheen {
    position: relative;
    overflow: hidden;
}
.hover-sheen::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
}
.hover-sheen:hover::before {
    left: 140%;
}

/* Speech bubble tooltip for doodles */
.doodle-speech-bubble {
    position: relative;
    font-family: var(--font-hand);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    user-select: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    animation: doodleFloat 3.5s ease-in-out infinite;
}

.doodle-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 14px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-border-solid);
}

/* Signature Button Pull Interaction */
.doodle-button-pull {
    transform-origin: center center;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

/* ==========================================================================
   CLEAN LOADER
   ========================================================================== */

.loader {
  --c: #F97316;
  position: relative;
  width: 12em;
  height: 12em;
}

.ph1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  animation: ph1 3s ease infinite;
  clip-path: polygon(-4em -1em, 4em -1em, 4em 1em, -4em 1em);
}

.record {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2em;
  height: 2em;
  background: var(--c);
  border-radius: 999px;
  animation: blink 1s step-end infinite;
  transform: translate(-3.5em, -50%);
}

.record-text {
  position: absolute;
  color: var(--c);
  font-size: 2.2em;
  font-weight: 700;
  left: 50%;
  top: 50%;
  transform: translate(-0.5em, -50%);
  width: 2em;
  height: 1.5em;
  line-height: 1.5em;
  font-family: monospace;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}

@keyframes ph1 {
  25.5% {
    translate: 0 0;
    clip-path: polygon(-4em -1em, 4em -1em, 4em 1em, -4em 1em);
  }
  30%,
  to {
    opacity: 1;
    translate: 0 3em;
    clip-path: polygon(-4em 1em, 4em 1em, 4em 1em, -4em 1em);
  }
  30.1% {
    opacity: 0;
    translate: 0 3em;
  }

  92.4%,
  to {
    translate: 0 0;
    opacity: 0;
    clip-path: polygon(-4em -1em, 4em -1em, 4em 1em, -4em 1em);
  }
  92.5% {
    opacity: 1;
    clip-path: polygon(-4em -1em, -0.5em -1em, -0.5em 1em, -4em 1em);
  }
  to {
    opacity: 1;
    clip-path: polygon(-4em -1em, 4em -1em, 4em 1em, -4em 1em);
  }
}

.ph2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -4em);
  width: 11em;
  height: 7em;
  perspective: 150px;
  perspective-origin: 50% 0%;
  transform-style: preserve-3d;
  animation: ph2 3s ease-in-out infinite;
}

@keyframes ph2 {
  0%,
  15% {
    translate: 0 4em;
  }
  0%,
  29% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  40% {
    translate: 0 0;
  }
  50% {
    translate: 0 0.5em;
    opacity: 1;
  }
  50.1%,
  to {
    opacity: 0;
  }
}

.laptop-b {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.5em;
  background: var(--c);
  border-bottom-left-radius: 2em;
  border-bottom-right-radius: 2em;
  animation: ph2b 3s ease infinite;
}

.laptop-t {
  margin: 0 1.25em;
  color: var(--c);
  transform-origin: 50% 100%;
  animation: ph2t 3s ease infinite;
}

@keyframes ph2t {
  0%,
  29% {
    transform: rotateX(-10deg);
  }
  0%,
  41.9% {
    stroke-dasharray: unset;
  }
  42% {
    transform: rotateX(4deg);
    stroke-dasharray: 0 0 100;
  }
  50% {
    transform: rotateX(-20deg);
    stroke-dasharray: 0 50 0 100;
  }
}

@keyframes ph2b {
  42% {
    scale: 1 1;
  }
  50% {
    scale: 0 1;
  }
}

.icon {
  position: absolute;
  width: 4em;
  height: 4em;
  background: var(--c);
  border-radius: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: icon 3s ease-in-out infinite;
  isolation: isolate;
  border-color: var(--c);
  border-style: solid;
  z-index: -1;
}

@keyframes icon {
  0%,
  15% {
    translate: 0 4.5em;
    width: 0;
    height: 0;
  }
  0%,
  29% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  40% {
    translate: 0 -0.75em;
    width: 4em;
    height: 4em;
  }
  50% {
    translate: 0 0em;
    opacity: 1;
    background: var(--c);
  }
  50.1% {
    border-width: 2em;
    background: black;
  }
  65% {
    width: 4em;
    height: 4em;
    transform: translate(-50%, -50%);
    border-width: 4px;
  }
  80%,
  to {
    width: 2em;
    height: 2em;
    translate: 0 0;
    transform: translate(-3.5em, -50%);
    border-width: 1em;
    background: black;
  }
  80.1%,
  to {
    background: var(--c);
  }
  84.9% {
    opacity: 1;
  }
  85%,
  to {
    opacity: 0;
  }
}

.icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 0.8em solid black;
  box-sizing: border-box;
  border-left-color: transparent !important;
  border-bottom-color: transparent !important;
  transform: translate(-50%, 2.5em) rotate(-45deg);
  transform-origin: center;
  animation: iconb 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes iconb {
  20% {
    transform: translate(-50%, 2.5em) rotate(-45deg);
  }
  50% {
    transform: translate(-50%, -25%) rotate(-45deg);
    border-color: black;
  }
  65%,
  to {
    transform: translateY(0) scale(1) scaleX(1.5) translate(-60%, -50%)
      rotate(45deg);
    border-color: var(--c);
  }
  85%,
  to {
    transform: translate(-40%, -50%) scale(0) scaleX(1.5) translate(-75%, -50%)
      rotate(45deg);
  }
}

.icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: black;
  width: 1em;
  height: 2em;
  box-sizing: border-box;
  border-left-color: transparent;
  border-bottom-color: transparent;
  animation: icona 3s ease-in-out infinite;
}

@keyframes icona {
  20% {
    transform: translate(-50%, 2.5em);
  }
  50% {
    transform: translate(-50%, 0.4em);
  }
  65%,
  to {
    transform: translate(-50%, 2.5em);
  }
}

/* Cinematic Title Reveal */
@keyframes movieRevealWrapper {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1.01);
  }
}

@keyframes movieRevealTitle {
  0% {
    opacity: 0;
    letter-spacing: 0.1em;
  }
  35% {
    opacity: 0.95;
  }
  100% {
    opacity: 1;
    letter-spacing: 0.26em;
  }
}

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

@keyframes anamorphicLineExpand {
  0% {
    width: 0%;
    opacity: 0;
  }
  40% {
    opacity: 0.9;
  }
  100% {
    width: 80%;
    opacity: 0.4;
  }
}

.animate-movie-reveal-wrapper {
  animation: movieRevealWrapper 2.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-movie-reveal-title {
  animation: movieRevealTitle 2.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Refined Titanium / Platinum Matte Title with Subtle Horizon Amber Sheen (Zero Neon) */
#kyronix-brand-title,
.cinematic-titanium-title,
.cinematic-brand-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.92rem, min(4.4vw, 5.6vh), 3.25rem);
  letter-spacing: clamp(0.04em, 1.1vw, 0.22em);
  padding-left: clamp(0.04em, 1.1vw, 0.22em); /* Optical centering for wide tracking */
  line-height: 1.18;
  box-sizing: border-box;
  max-width: 100%;
  width: auto;
  white-space: nowrap;
  text-wrap: nowrap;
  background: linear-gradient(
    135deg,
    #FFFFFF 0%,
    #E2E8F0 30%,
    #CBD5E1 55%,
    #F97316 80%,
    #FFFFFF 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.85);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-variant-caps: normal;
  display: inline-block;
  margin: 0 auto;
  overflow: visible;
}

@media (max-width: 480px) {
  #kyronix-brand-title,
  .cinematic-titanium-title,
  .cinematic-brand-title {
    font-size: clamp(0.92rem, min(4.8vw, 4.8vh), 1.45rem);
    letter-spacing: clamp(0.04em, 0.9vw, 0.12em);
    padding-left: clamp(0.04em, 0.9vw, 0.12em);
  }
}

@media (max-height: 480px) {
  #kyronix-brand-title,
  .cinematic-titanium-title,
  .cinematic-brand-title {
    font-size: clamp(0.85rem, 5vh, 1.35rem);
    letter-spacing: 0.06em;
    padding-left: 0.06em;
  }
}

.cinematic-titanium-glow {
  text-shadow: 0 0 25px rgba(226, 232, 240, 0.4), 0 4px 30px rgba(0, 0, 0, 0.9);
}

/* Cinematic Liquid Ribbon Animated Divider */
#brand-liquid-divider {
  filter: drop-shadow(0 2px 10px rgba(249, 115, 22, 0.25));
  will-change: transform;
  pointer-events: none;
}

/* Parallax Cloud Layer Movements */
@keyframes cloudParallaxBack {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.04) translate(-25px, -8px); }
  100% { transform: scale(1) translate(0, 0); }
}

.storm-clouds-parallax-1 {
  animation: cloudParallaxBack 45s ease-in-out infinite;
}

@keyframes cloudParallaxMid {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.06) translate(30px, 12px); }
  100% { transform: scale(1) translate(0, 0); }
}

.storm-clouds-parallax-2 {
  animation: cloudParallaxMid 35s ease-in-out infinite;
}

@keyframes cloudParallaxFore {
  0% { transform: scale(1) translate(0, 0); opacity: 0.28; }
  50% { transform: scale(1.08) translate(-40px, 18px); opacity: 0.42; }
  100% { transform: scale(1) translate(0, 0); opacity: 0.28; }
}

.storm-clouds-parallax-3 {
  animation: cloudParallaxFore 50s ease-in-out infinite;
}

/* Mascot Cute Animations & Micro-physics (SVG transform-box precision) */
.animate-leaf-sway,
.animate-bunny-sway-l,
.animate-bunny-sway-r,
.animate-ear-twitch-l,
.animate-ear-twitch-r,
.animate-mascot-paw,
.animate-mascot-tail,
.animate-mascot-blink,
.animate-antenna-pulse,
.animate-bubble-float,
.animate-cloud-breathe {
  transform-box: fill-box;
}

@keyframes mascotFloatA {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(-1.5deg); }
}

@keyframes mascotFloatB {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(1.5deg); }
}

.animate-mascot-float {
  animation: mascotFloatA 4.8s ease-in-out infinite;
}

.animate-mascot-float-alt {
  animation: mascotFloatB 5.2s ease-in-out infinite;
}

@keyframes leafSway {
  0%, 100% { transform: rotate(0deg); }
  35% { transform: rotate(4deg); }
  75% { transform: rotate(-3.5deg); }
}

.animate-leaf-sway {
  animation: leafSway 4.5s ease-in-out infinite;
  transform-origin: 50px 78px;
}

@keyframes bubbleFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.03) translateY(-3px); }
}

.animate-bubble-float {
  animation: bubbleFloat 5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes earTwitchL {
  0%, 90%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(-8deg); }
  96% { transform: rotate(4deg); }
  98% { transform: rotate(-2deg); }
}

@keyframes earTwitchR {
  0%, 88%, 100% { transform: rotate(0deg); }
  90% { transform: rotate(8deg); }
  94% { transform: rotate(-4deg); }
  97% { transform: rotate(2deg); }
}

.animate-ear-twitch-l {
  animation: earTwitchL 6s ease-in-out infinite;
  transform-origin: 58px 48px;
}

.animate-ear-twitch-r {
  animation: earTwitchR 6.5s ease-in-out infinite;
  transform-origin: 86px 48px;
}

@keyframes bunnySwayL {
  0%, 100% { transform: rotate(0deg); }
  40% { transform: rotate(-4.5deg); }
  80% { transform: rotate(2.5deg); }
}

@keyframes bunnySwayR {
  0%, 100% { transform: rotate(0deg); }
  45% { transform: rotate(4.5deg); }
  85% { transform: rotate(-2.5deg); }
}

.animate-bunny-sway-l {
  animation: bunnySwayL 5.5s ease-in-out infinite;
  transform-origin: 56px 45px;
}

.animate-bunny-sway-r {
  animation: bunnySwayR 6s ease-in-out infinite;
  transform-origin: 84px 45px;
}

@keyframes mascotTail {
  0%, 100% { transform: rotate(0deg); }
  30% { transform: rotate(10deg); }
  70% { transform: rotate(-8deg); }
}

.animate-mascot-tail {
  animation: mascotTail 3.6s ease-in-out infinite;
  transform-origin: 32px 92px;
}

@keyframes mascotPaw {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-2px); }
}

.animate-mascot-paw {
  animation: mascotPaw 2.8s ease-in-out infinite;
}

@keyframes antennaPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.4)); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.8)); }
}

.animate-antenna-pulse {
  animation: antennaPulse 3s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes cloudBreathe {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.03, 0.97); opacity: 0.85; }
}

.animate-cloud-breathe {
  animation: cloudBreathe 4s ease-in-out infinite;
  transform-origin: center bottom;
}

/* Mascot Blinking */
.mascot-blinking {
  transform: scaleY(0.08) !important;
  transition: transform 0.08s ease-out;
}

/* Reduced motion preference override */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .animate-doodle-wiggle,
    .animate-doodle-float,
    .animate-doodle-bounce,
    .arrow-dashed-flow,
    .sparkle-twinkle,
    .animate-scroll {
        animation: none !important;
    }
}
