/* ==========================================================================
   CODIBITS Coming Soon - Solid Colors (White, Navy & Orange Theme)
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-light: #ffffff;
    --bg-subtle: #f8fafc;

    --navy-deep: #0a192f;
    --navy-primary: #0f2b48;
    --navy-mid: #1e3a8a;
    --navy-slate: #475569;

    --orange-primary: #ff6b00;
    --orange-vibrant: #f97316;
    --orange-subtle: rgba(255, 107, 0, 0.08);

    --text-primary: #0f172a;
    --text-muted: #64748b;

    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Soft Ambient Glow Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    animation: orbPulse 8s ease-in-out infinite alternate;
}

.orb-1 {
    top: 10%;
    left: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--orange-vibrant), transparent 70%);
}

.orb-2 {
    bottom: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--navy-mid), transparent 70%);
    animation-delay: -4s;
}

@keyframes orbPulse {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.15;
    }

    100% {
        transform: scale(1.15) translate(25px, -15px);
        opacity: 0.25;
    }
}

/* Main Layout Structure */
.page-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 2rem 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation / Header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    user-select: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--navy-primary);
    text-transform: uppercase;
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
}

.hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

/* Illustration Container */
.illustration-wrapper {
    width: 100%;
    max-width: 440px;
    margin-bottom: 1rem;
    perspective: 1000px;
}

.hero-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(15, 43, 72, 0.08));
}

/* SVG Animations */
.rot-cw {
    transform-origin: 250px 210px;
    animation: rotateCw 35s linear infinite;
}

.rot-ccw {
    transform-origin: 250px 210px;
    animation: rotateCcw 25s linear infinite;
}

@keyframes rotateCw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateCcw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.float-element {
    transition: transform 0.5s ease;
}

.elem-1 {
    animation: floatElem 4s ease-in-out infinite alternate;
}

.elem-3 {
    animation: floatElem 5s ease-in-out infinite alternate-reverse;
}

.elem-center {
    animation: floatRocket 3.5s ease-in-out infinite alternate;
}

@keyframes floatElem {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-12px);
    }
}

@keyframes floatRocket {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-18px);
    }
}

.pulse-flame {
    animation: flameGlow 0.8s ease-in-out infinite alternate;
}

@keyframes flameGlow {
    0% {
        opacity: 0.8;
        transform: scaleY(0.95);
    }

    100% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

.bit-pulse-1 {
    animation: bitFade 3s ease-in-out infinite alternate;
}

.bit-pulse-2 {
    animation: bitFade 4s ease-in-out infinite alternate-reverse;
}

.bit-pulse-3 {
    animation: bitFade 3.5s ease-in-out infinite alternate;
    animation-delay: -1s;
}

@keyframes bitFade {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Hero Text & Solid Color Headline */
.hero-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-tag {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: var(--orange-subtle);
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 100px;
    color: var(--orange-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--orange-primary);
    /* Solid Vibrant Orange, No Gradient */
}

.hero-subtext {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 500;
    color: var(--navy-slate);
    max-width: 520px;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 43, 72, 0.06);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 640px) {
    .page-wrapper {
        padding: 1.5rem 1rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .illustration-wrapper {
        max-width: 320px;
        margin-bottom: 0.5rem;
    }

    .hero-headline {
        font-size: 2.75rem;
    }

    .hero-subtext {
        font-size: 0.95rem;
    }
}