:root {
    --deep-black: #050505;
    --graphite: #111112;
    --electric-blue: #00F0FF;
    --pure-white: #FFFFFF;
    --tech-white: rgba(255, 255, 255, 0.85);
    --grid-thin: rgba(255, 255, 255, 0.04);
    --grid-thick: rgba(255, 255, 255, 0.08);
}

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

html,
body {
    background-color: var(--deep-black);
    color: var(--tech-white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    background-image: radial-gradient(circle at 50% 10%, var(--graphite) 0%, var(--deep-black) 60%);
    background-attachment: fixed;
}

#app {
    position: relative;
    width: 100vw;
}

/* Background Grids */
#tech-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.grid-line {
    stroke: var(--grid-thin);
}

.grid-line-thick {
    stroke: var(--grid-thick);
}

section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
    max-width: 800px;
    z-index: 11;
}

/* Typography */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--electric-blue);
    margin-bottom: 30px;
    background: rgba(0, 240, 255, 0.05);
}

h1 {
    font-size: 6rem;
    font-weight: 200;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--pure-white);
    line-height: 1;
}

h2 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 15px;
    color: var(--pure-white);
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--tech-white);
}

.subtitle {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.electric-blue {
    color: var(--electric-blue);
}

.highlight {
    color: var(--pure-white);
    font-weight: 500;
}

/* Glow Utilities */
.glow {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), inset 0 0 10px rgba(0, 240, 255, 0.1);
}

.glow-text {
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

/* Scroll indicator */
.scroll-down {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.8;
}

.scroll-down p {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-down .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--electric-blue), transparent);
    animation: pulseLine 2s infinite ease-in-out;
}

@keyframes pulseLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 1;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* Hero Quantum Core Animation */
.hero-quantum-core {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 40px auto;
    perspective: 600px;
    transform-style: preserve-3d;
}

.q-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.4);
    will-change: transform;
    transform-style: preserve-3d;
}

.q-ring-1 {
    width: 140px;
    height: 140px;
    border-left: 2px solid var(--electric-blue);
    animation: rotate3d_1 8s linear infinite;
}

.q-ring-2 {
    width: 110px;
    height: 110px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    animation: rotate3d_2 6s linear infinite;
}

.q-ring-3 {
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--electric-blue);
    animation: rotate3d_3 4s linear infinite;
}

.q-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--electric-blue);
    border-radius: 50%;
    box-shadow: 0 0 40px 10px rgba(0, 240, 255, 0.6), 0 0 10px 2px rgba(255, 255, 255, 0.8);
    animation: pulseQCore 2s ease-in-out infinite alternate;
}

@keyframes rotate3d_1 {
    0% {
        transform: rotateX(60deg) rotateY(0deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(60deg) rotateY(360deg) rotateZ(360deg);
    }
}

@keyframes rotate3d_2 {
    0% {
        transform: rotateX(45deg) rotateY(90deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(45deg) rotateY(90deg) rotateZ(-360deg);
    }
}

@keyframes rotate3d_3 {
    0% {
        transform: rotateX(75deg) rotateY(45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(75deg) rotateY(45deg) rotateZ(360deg);
    }
}

@keyframes pulseQCore {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
}

/* Services */
.services {
    justify-content: flex-start;
    padding-top: 15vh;
}

.services-header {
    margin-bottom: 10vh;
}

/* Antigravity Frame */
#ui-mockup-anchor {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    perspective: 1200px;
}

.tech-fragment {
    box-sizing: border-box;
    will-change: transform, width, height, opacity, border, background-color, border-radius;
}

/* About Section (Background Image Layout) */
.about {
    position: relative;
}

@media (max-width: 1024px) {
    .about {
        padding-top: 10vh !important;
        padding-bottom: 10vh !important;
    }

    .about>div {
        flex-direction: column !important;
        align-items: center !important;
    }

    #founder-bg-container {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        bottom: 0 !important;
        /* Opacity is handled by GSAP animation on mobile */
        justify-content: center !important;
        margin-bottom: -50px !important;
        /* Pull it down over the text */
        z-index: 3 !important;
    }

    #founder-text-container {
        transform: none !important;
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
    }

    #founder-bg-container img {
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%) !important;
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%) !important;
        max-width: 80% !important;
    }

    .about-text {
        text-align: center !important;
        align-items: center !important;
        padding: 20px 0 !important;
        border-left: none !important;
        background: none !important;
    }

    .about-text h2 {
        font-size: 2.8rem !important;
        text-align: center;
        margin-top: 30px;
        position: relative;
        z-index: 2;
    }

    .about-text blockquote {
        padding: 0 !important;
        border-left: none !important;
        background: none !important;
        text-align: center;
    }

    .about-text blockquote footer {
        justify-content: center;
    }
}

/* Contact Block */
.contact-box {
    padding: 60px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    background: rgba(17, 17, 18, 0.5);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(0, 240, 255, 0.05);
}

.contact-box h2 {
    font-size: 3rem;
}

.contact-box p {
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--deep-black);
    background-color: var(--electric-blue);
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.7), inset 0 0 20px rgba(255, 255, 255, 1);
    transform: translateY(-3px) scale(1.02);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--tech-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.cta-button.secondary:hover {
    border-color: var(--electric-blue);
    color: var(--electric-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15), inset 0 0 10px rgba(0, 240, 255, 0.05);
    transform: translateY(-2px);
}

/* Process SVG Animations */
.process-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.svg-stroke-thin {
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 1px;
    fill: none;
}

.svg-stroke-thick {
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1.5px;
    fill: none;
}

.svg-stroke-accent {
    stroke: var(--electric-blue);
    stroke-width: 1.5px;
    fill: none;
}

.svg-fill-white {
    fill: rgba(255, 255, 255, 0.7);
}

.svg-fill-accent {
    fill: var(--electric-blue);
}

/* 01: Data Exchange Sync */
.data-packet-1,
.data-packet-2 {
    animation: dataTravel 2s ease-in-out infinite;
}

.data-packet-2 {
    animation-delay: 1s;
    animation-direction: reverse;
}

@keyframes dataTravel {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateX(120px);
        opacity: 0;
    }
}

/* 02: Archi-Grid Forming */
.draw-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLine 4s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
    animation-delay: var(--delay);
}

@keyframes drawLine {

    0%,
    10% {
        stroke-dashoffset: 400;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    90%,
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.pulse-node {
    animation: pulseNode 4s ease-in-out infinite alternate;
    animation-delay: var(--delay);
}

@keyframes pulseNode {

    0%,
    50% {
        transform: scale(0.5);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.5);
        opacity: 1;
        filter: drop-shadow(0 0 6px var(--electric-blue));
    }
}

/* 03: Filling Cylinder Calibration */
.svg-stroke-micro {
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 0.5px;
}

.budget-sync-anim {
    animation: cylinderFillFlow 4s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes cylinderFillFlow {

    0%,
    10% {
        transform: translateY(58px);
    }

    40%,
    60% {
        transform: translateY(-42px);
    }

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

/* 04: Antigravity Morphing */
.morph-target {
    animation: morphTargetPulse 4s ease-in-out infinite alternate;
}

@keyframes morphTargetPulse {
    0% {
        opacity: 0.1;
        filter: drop-shadow(0 0 0px var(--electric-blue));
        stroke: rgba(0, 240, 255, 0.1);
    }

    100% {
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4));
        stroke: var(--electric-blue);
    }
}

.fragment {
    animation: floatFragment 4s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    animation-delay: var(--delay);
}

.fragment-rev {
    animation: floatFragmentRev 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    animation-delay: var(--delay);
}

@keyframes floatFragment {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.7;
    }

    100% {
        transform: translate(30px, -40px) scale(0) rotate(90deg);
        opacity: 0;
    }
}

@keyframes floatFragmentRev {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.5;
    }

    100% {
        transform: translate(-40px, 30px) scale(0) rotate(-45deg);
        opacity: 0;
    }
}

/* References Section */
.references {
    padding-top: 15vh;
    padding-bottom: 10vh;
}

.ref-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
}

.ref-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 450px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    background: rgba(17, 17, 18, 0.6);
    backdrop-filter: blur(20px);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.ref-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), inset 0 0 40px rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.5);
}

.ref-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.5s ease, transform 1s ease;
}

.ref-card:hover .ref-bg-svg {
    opacity: 0.8;
    transform: scale(1.05);
}

.ref-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.6) 70%, transparent 100%);
    text-align: left;
}

.ref-content h3 {
    font-size: 2.5rem;
    color: var(--pure-white);
    margin-bottom: 15px;
    font-weight: 300;
}

.ref-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.6;
}

.ref-content .badge {
    margin-bottom: 20px;
}

.ref-link {
    display: inline-flex;
    align-items: center;
    color: var(--electric-blue);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.ref-card:hover .ref-link {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
    transform: translateX(10px);
}

/* Process Section */
.process {
    padding-top: 20vh;
    padding-bottom: 20vh;
}

.process_content {
    max-width: 1200px;
    width: 100%;
    z-index: 11;
    margin: 0 auto;
}

.process_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 60px;
    width: 100%;
}

.process_card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.svg_placeholder {
    height: 300px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 8px;
    background: rgba(17, 17, 18, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.03);
    transition: box-shadow 0.3s ease;
}

.process_card:hover .svg_placeholder {
    box-shadow: inset 0 0 40px rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.3);
}

.svg_placeholder .electric_blue {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.svg_placeholder p {
    font-size: 1.1rem;
    color: var(--tech-white);
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
}

.process_text h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--pure-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: -0.5px;
}

.process_text h3::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--electric-blue);
}

.process_text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 0 20px;
    }

    .process {
        padding-top: 10vh;
        padding-bottom: 10vh;
    }

    .contact-box {
        padding: 30px 20px;
    }

    #ui-mockup-anchor {
        height: 350px;
    }

    .process_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .svg_placeholder {
        height: 200px;
        padding: 0;
        border: none;
        background: transparent;
        box-shadow: none;
    }

    .hero-quantum-core {
        transform: scale(0.8);
        margin: 20px auto;
    }

    .ref-card {
        height: auto;
        min-height: 380px;
    }

    .ref-content {
        padding: 30px;
    }

    .ref-content h3 {
        font-size: 2rem;
    }
}

/* Floating Dock Navigation */
.floating-dock {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    height: 56px;
    padding: 0 32px;
    border-radius: 999px;
    background-color: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--electric-blue);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.floating-dock.is-hidden {
    transform: translateX(-50%) translateY(150%);
    opacity: 0;
    pointer-events: none;
}

.floating-dock a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    transition: color 0.16s ease, transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), text-shadow 0.2s ease;
    display: block;
}

.floating-dock a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--electric-blue);
    transition: width 0.18s ease-out, left 0.18s ease-out;
}

@media (hover: hover) {
    .floating-dock a:hover {
        color: var(--pure-white);
        transform: translateY(-4px);
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
    }
}

.floating-dock a.active {
    color: var(--pure-white);
}

.floating-dock a.active::after {
    width: 100%;
    left: 0;
}

/* Hardware click effect */
.floating-dock a.clicked {
    transform: scale(0.96) !important;
    transition: transform 0.12s ease;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-dock {
        height: 48px;
        bottom: 20px;
        padding: 0 24px;
        gap: 20px;
    }

    .floating-dock a {
        font-size: 0.9rem;
        padding: 10px 0;
        min-width: 40px;
        text-align: center;
    }

    .dock-flash {
        animation: flashBlue 0.1s ease-out;
    }
}

@keyframes flashBlue {
    0% {
        background-color: rgba(0, 240, 255, 0);
        border-radius: 4px;
    }

    50% {
        background-color: rgba(0, 240, 255, 0.2);
        border-radius: 4px;
    }

    100% {
        background-color: rgba(0, 240, 255, 0);
        border-radius: 4px;
    }
}

/* Contact Button Morph Interaction */
.contact-morph-container {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--electric-blue);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Initial Button Size (matching current CTA) */
    width: 280px;
    height: 56px;
    border-radius: 28px;
    margin-top: 20px;
}

.contact-morph-container:not(.is-open):hover {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
}

.morph-btn-text {
    position: absolute;
    width: 100%;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.morph-form {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.1s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
    width: 100%;
    height: 100%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    box-sizing: border-box;
    align-items: flex-start;
}

.morph-form h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--white);
    text-transform: none;
    letter-spacing: normal;
}

.morph-form p {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.5;
}

.morph-form input,
.morph-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 16px;
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    text-transform: none;
    letter-spacing: normal;
}

.morph-form input:focus,
.morph-form textarea:focus {
    border-color: var(--electric-blue);
    background: rgba(0, 240, 255, 0.02);
}

.morph-form .submit-btn {
    margin-top: auto;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Arrow Hover Animation */
.morph-form .submit-btn:hover .arrow,
.next-step-btn:hover .arrow {
    transform: translateX(5px);
}

/* Button Loading State */
.morph-form .submit-btn.is-loading .btn-text {
    opacity: 0;
}

.morph-form .submit-btn.is-loading {
    pointer-events: none;
}

.morph-form .submit-btn.is-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(10, 11, 14, 0.3);
    border-top-color: var(--dark-bg);
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
}

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

/* Button Success State */
.morph-form .submit-btn.is-success .btn-text {
    opacity: 0;
}

.morph-form .submit-btn.is-success {
    background: transparent;
    border-color: var(--electric-blue);
    color: var(--electric-blue);
    pointer-events: none;
    box-shadow: none;
}

.morph-form .submit-btn.is-success::before {
    content: "✓";
    font-size: 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
}

/* Open Morph State */
.contact-morph-container.is-open {
    width: 500px;
    height: 480px;
    border-radius: 16px;
    cursor: default;
    background: rgba(10, 11, 14, 0.95);
    border-color: rgba(0, 240, 255, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.05);
}

.contact-morph-container.is-open .morph-btn-text {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.contact-morph-container.is-open .morph-form {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .contact-morph-container.is-open {
        width: 100%;
        max-width: 380px;
        height: 520px;
    }
}

/* Cookie Reject Button */
.reject-btn {
    background: transparent !important;
    color: var(--pure-white) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem !important;
    border: 1px solid var(--electric-blue) !important;
    transition: all 0.3s ease;
}

.reject-btn:hover {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05) !important;
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
}