
/* --- PRELOADER --- */
#preloader {
    position: fixed;
    inset: 0;
    background-color: #030303;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.preloader-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
}

.pulse-logo {
    width: 80px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 20;
    animation: heartbeat-accelerate 2.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--brand-pink, #eb1a77);
    opacity: 0;
    z-index: 10;
    animation: ring-expand 2.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes heartbeat-accelerate {
    0%   { transform: scale(1); filter: drop-shadow(0 0 0px rgba(var(--brand-pink-rgb, 235, 26, 119), 0)); }
    15%  { transform: scale(1.1); filter: drop-shadow(0 0 15px rgba(var(--brand-pink-rgb, 235, 26, 119), 0.3)); }
    30%  { transform: scale(1);   filter: drop-shadow(0 0 0px rgba(var(--brand-pink-rgb, 235, 26, 119), 0)); }
    45%  { transform: scale(1.2); filter: drop-shadow(0 0 25px rgba(var(--brand-pink-rgb, 235, 26, 119), 0.5)); }
    55%  { transform: scale(1);   filter: drop-shadow(0 0 0px rgba(var(--brand-pink-rgb, 235, 26, 119), 0)); }
    65%  { transform: scale(1.3); filter: drop-shadow(0 0 40px rgba(var(--brand-pink-rgb, 235, 26, 119), 0.7)); }
    70%  { transform: scale(1);   filter: drop-shadow(0 0 10px rgba(var(--brand-pink-rgb, 235, 26, 119), 0.2)); }
    80%  { transform: scale(1.4); filter: drop-shadow(0 0 60px rgba(var(--brand-pink-rgb, 235, 26, 119), 1)); }
    85%  { transform: scale(1); }
    90%  { transform: scale(50); opacity: 0; filter: drop-shadow(0 0 100px rgba(var(--brand-pink-rgb, 235, 26, 119), 1)); }
    100% { transform: scale(50); opacity: 0; }
}

@keyframes ring-expand {
    0%, 15%, 45%, 65% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    16% { opacity: 0.4; } 30% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
    46% { opacity: 0.6; } 55% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
    66% { opacity: 0.8; } 75% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
    90% { transform: translate(-50%, -50%) scale(50); opacity: 0; border-width: 50px; }
    100% { opacity: 0; }
}

body.loading { overflow: hidden; height: 100vh; }
.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }

/* --- NAVIGATION --- */
@property --nav-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes nav-spin {
    to { --nav-angle: 360deg; }
}

.nav-animated-border {
    position: relative;
    background: rgba(3, 3, 3, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 9999px;
    box-shadow: 0 0 30px -10px rgba(var(--brand-pink-rgb, 235, 26, 119), 0.15);
}

.nav-animated-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    padding: 1.5px;
    background: conic-gradient(
        from var(--nav-angle),
        transparent 0%,
        rgba(var(--brand-pink-rgb, 235, 26, 119), 0.1) 20%,
        rgba(var(--brand-pink-rgb, 235, 26, 119), 0.6) 50%,
        rgba(var(--brand-pink-rgb, 235, 26, 119), 0.1) 80%,
        transparent 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: nav-spin 4s linear infinite;
    pointer-events: none;
}

/* --- HOME VISUAL ANIMATIONS --- */
.animate-beam { animation: beam 3s linear infinite; }
.animate-beam-reverse { animation: beam-reverse 3s linear infinite; }
.animate-spin-slow { animation: spin-slow 12s linear infinite; }
.animate-spin-slower { animation: spin-slower 20s linear infinite; }
.animate-spin-reverse { animation: spin-reverse 15s linear infinite reverse; }
.animate-pulse-fast { animation: pulse-fast 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-sonar { animation: sonar-wave 3s cubic-bezier(0, 0, 0.2, 1) infinite; }

@keyframes beam {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}
@keyframes beam-reverse {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 1000; }
}
@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes spin-slower {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}
@keyframes sonar-wave {
    0% { r: 10px; opacity: 0.8; stroke-width: 1px; }
    100% { r: 120px; opacity: 0; stroke-width: 0px; }
}
@keyframes pulse-fast {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.delay-1000 { animation-delay: 1s; }
.delay-2000 { animation-delay: 2s; }

/* --- AURA ENGINE --- */
.aura-background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0; /* Ensure visibility over body bg, but under content */
    pointer-events: none;
    /* Shifting the original Blue engine to Pink/Purple */
    filter: hue-rotate(110deg) brightness(0.6) contrast(1.1);
    mask-image: linear-gradient(transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(transparent, black 10%, black 90%, transparent);
}

.text-glow { text-shadow: 0 0 40px rgba(235, 26, 119, 0.5); }
.text-glow-purple { text-shadow: 0 0 40px rgba(115, 80, 160, 0.5); }

/* --- SPOTLIGHT CARD --- */
.spotlight-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.spotlight-card:hover {
    border-color: rgba(235, 26, 119, 0.3);
    transform: translateY(-5px);
}

/* --- SHINY CTA --- */
@property --gradient-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --gradient-angle-offset { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --gradient-shine { syntax: "<color>"; initial-value: #eb1a77; inherits: false; }

.shiny-cta {
    --gradient-angle: 0deg;
    --gradient-angle-offset: 0deg;
    --gradient-shine: #eb1a77;
    position: relative;
    overflow: hidden;
    border-radius: 9999px;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(#050505, #050505) padding-box,
    conic-gradient( from calc(var(--gradient-angle) - var(--gradient-angle-offset)), transparent 0%, #eb1a77 5%, var(--gradient-shine) 15%, #eb1a77 30%, transparent 40%, transparent 100% ) border-box;
    border: 1px solid transparent;
    box-shadow: inset 0 0 0 1px #1a1818;
    transition: transform 0.3s;
    cursor: pointer;
    isolation: isolate;
    z-index: 10;
    animation: border-spin 2.5s linear infinite;
}
@keyframes border-spin { to { --gradient-angle: 360deg; } }
.shiny-cta:hover { transform: scale(1.02); }
.shiny-cta::after {
    content: ''; pointer-events: none; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 1;
    width: 100%; aspect-ratio: 1;
    background: linear-gradient(-50deg, transparent, #eb1a77, transparent);
    mask-image: radial-gradient(circle at bottom, transparent 40%, black);
    opacity: 0.6; animation: shimmer 4s linear infinite;
}

/* --- 3D TILT CONTAINER --- */
.hero-3d-container {
    perspective: 1000px;
    transform-style: preserve-3d;
}
.hero-3d-element {
    transition: transform 0.1s ease-out; /* Smooth follow */
}

/* --- SVG UTILS --- */
.beam-line { stroke-dasharray: 80 1000; stroke-linecap: round; }
.animate-sonar { animation: sonar-wave 3s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes sonar-wave { 0% { r: 10px; opacity: 0.8; stroke-width: 1px; } 100% { r: 120px; opacity: 0; stroke-width: 0px; } }
.delay-1000 { animation-delay: 1s; }
.delay-2000 { animation-delay: 2s; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #030303; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

/* Marquee */
@keyframes marquee-text-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-text-scroll {
    animation: marquee-text-scroll 120s linear infinite; /* Very slow, readable scan */
    width: max-content;
}

/* Text Item Styling */
.tech-text-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem; /* Text-xs/sm */
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: default;
    white-space: nowrap;
}

/* Hover Effect - Pill Border */
.tech-text-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

/* Gradient Mask */
.marquee-fade-mask {
    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);
}

/* 1. CARD BASE STYLE */
.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* HOVER STATE */
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(235, 26, 119, 0.5);
    box-shadow: 0 15px 50px -10px rgba(235, 26, 119, 0.15);
    background: radial-gradient(800px circle at top right, rgba(235, 26, 119, 0.08), rgba(10, 10, 10, 0.4));
}

/* 2. ICON BOX */
.service-icon-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-icon-box {
    border-color: #eb1a77;
    background: rgba(235, 26, 119, 0.1);
    box-shadow: 0 0 20px rgba(235, 26, 119, 0.2);
}

/* 3. ICONS */
.service-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, filter 0.3s ease;
}
.service-card:hover .service-icon {
    color: #eb1a77;
    filter: drop-shadow(0 0 8px rgba(235, 26, 119, 0.6));
}

/* 4. TAGS */
.talent-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s;
}
.service-card:hover .talent-tag {
    border-color: rgba(235, 26, 119, 0.3);
    color: white;
}

/* --- RADAR ANIMATIONS (Card 2) --- */
.radar-sweep {
    background: conic-gradient(from 0deg, transparent 0deg, rgba(235, 26, 119, 0.5) 360deg);
    border-radius: 50%;
    animation: radar-spin 2s linear infinite;
}
@keyframes radar-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.match-text-pulse {
    animation: text-flash 2s infinite;
}
@keyframes text-flash {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(235, 26, 119, 0.5); }
    50% { opacity: 0.5; text-shadow: none; }
}

/* --- DASHBOARD ANIMATIONS (Card 3) --- */
.status-dot-pulse {
    animation: dot-pulse 2s infinite;
}
@keyframes dot-pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.progress-bar-load {
    width: 0%;
    animation: load-progress 4s ease-in-out infinite;
}
@keyframes load-progress {
    0% { width: 0%; }
    20% { width: 10%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

/* 12s Master Cycle */
.timeline-line-fill {
    animation: fill-line 12s linear infinite;
    transform-origin: left;
}
@keyframes fill-line {
    0% { transform: scaleX(0); }
    10% { transform: scaleX(0); } /* Initial Pause */
    90% { transform: scaleX(1); } /* Reach End */
    100% { transform: scaleX(1); } /* Hold End */
}

/* Node Activation Keyframes (Synced to Line) */
.animate-node-2 { animation: node-2-on 12s linear infinite; }
.animate-node-3 { animation: node-3-on 12s linear infinite; }
.animate-node-4 { animation: node-4-on 12s linear infinite; }

@keyframes node-2-on {
    0%, 32% { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
    35%, 90% { border-color: #eb1a77; color: white; box-shadow: 0 0 15px rgba(235, 26, 119, 0.5); }
    95%, 100% { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
}
@keyframes node-3-on {
    0%, 58% { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
    61%, 90% { border-color: #eb1a77; color: white; box-shadow: 0 0 15px rgba(235, 26, 119, 0.5); }
    95%, 100% { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
}
@keyframes node-4-on {
    0%, 86% { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
    89%, 95% { border-color: #7350A0; color: white; box-shadow: 0 0 20px rgba(115, 80, 160, 0.8); } /* Purple Finish */
    100% { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
}

/* --- SHIELD PULSE --- */
.shield-pulse {
    animation: shield-beat 3s infinite;
}
@keyframes shield-beat {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.2); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* --- CLOCK ANIMATION --- */
/* Hands rotate around exact center (12px 12px) */
.clock-hand-hour {
    transform-origin: 12px 12px;
    animation: clock-spin 12s linear infinite;
}
.clock-hand-minute {
    transform-origin: 12px 12px;
    animation: clock-spin 2s linear infinite;
}
@keyframes clock-spin {
    100% { transform: rotate(360deg); }
}

/* 1. CONSTANT CHAOS (TV Static) */
.chaos-static {
    background-image: url('https://assets.iceable.com/img/noise-transparent.png');
    opacity: 0.05;
    animation: static-shift 0.5s steps(5) infinite;
    mix-blend-mode: overlay;
}
@keyframes static-shift {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}
/* Hover intensifies it */
.chaos-card:hover .chaos-static {
    opacity: 0.15;
}

/* 2. CONSTANT ORDER (Scanner & Spin) */
.scan-beam {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #eb1a77, transparent);
    opacity: 0.5;
    box-shadow: 0 0 15px #eb1a77;
    animation: scan-vertical 4s ease-in-out infinite;
}
@keyframes scan-vertical {
    0% { transform: translateY(0%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(400px); opacity: 0; }
}

.sync-ring-constant {
    border: 1px dashed rgba(115, 80, 160, 0.3);
    animation: spin-slow 15s linear infinite;
}

/* 3. AGGRESSIVE VS HEARTBEAT */
.vs-beat {
    animation: heartbeat-core 2s ease-in-out infinite;
}
@keyframes heartbeat-core {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1); border-color: rgba(255,255,255,0.1); }
    15% { transform: scale(1.15); box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.2); border-color: rgba(255,255,255,0.5); }
    30% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1); border-color: rgba(255,255,255,0.1); }
    45% { transform: scale(1.05); box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.1); }
    100% { transform: scale(1); }
}

/* Custom Scrollbar for the Ticker */
.ticker-scroll::-webkit-scrollbar {
    width: 6px;
}
.ticker-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
.ticker-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
.ticker-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(235, 26, 119, 0.5);
}

/* Row Hover Effect */
.pricing-row {
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.pricing-row:hover {
    background: rgba(255, 255, 255, 0.03);
    padding-left: 10px; /* Subtle shift */
}
.pricing-row:last-child {
    border-bottom: none;
}

/* 1. DATA SCAN ANIMATION (For Cold Storage) */
.scan-overlay {
    background: linear-gradient(to bottom, transparent, rgba(235, 26, 119, 0.1), transparent);
    height: 50%;
    width: 100%;
    position: absolute;
    top: -50%;
    left: 0;
    animation: scan-vertical 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes scan-vertical {
    0% { top: -50%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* 2. LIVE PULSE (For Revision Window) */
.ping-dot {
    position: relative;
}
.ping-dot::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    border: 1px solid #10b981;
    animation: ripple 2s infinite;
}
@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

/* Custom Accordion Styling */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

/* The Open/Close Animation */
details[open] summary ~ * {
    animation: sweep 0.3s ease-in-out;
}
@keyframes sweep {
    0%    { opacity: 0; transform: translateY(-10px); }
    100%  { opacity: 1; transform: translateY(0); }
}

/* Icon Rotation */
details[open] .faq-icon {
    transform: rotate(45deg);
    color: #eb1a77; /* Brand Pink */
}

/* AUDIO WAVE ANIMATION */
.bar {
    width: 3px;
    background: #eb1a77;
    animation: equalizer 1s ease-in-out infinite;
    border-radius: 99px;
}
.bar:nth-child(1) { height: 10px; animation-delay: 0.1s; }
.bar:nth-child(2) { height: 18px; animation-delay: 0.2s; }
.bar:nth-child(3) { height: 14px; animation-delay: 0.3s; }
.bar:nth-child(4) { height: 8px; animation-delay: 0.4s; }

@keyframes equalizer {
    0% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.5); opacity: 1; box-shadow: 0 0 10px #eb1a77; }
    100% { transform: scaleY(1); opacity: 0.5; }
}

/* SIGNAL STRENGTH BARS */
.signal-bar {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
}
.signal-bar.active {
    background: #10b981; /* Emerald Green for trust */
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
}
.signal-bar:nth-child(2) { height: 14px; }
.signal-bar:nth-child(3) { height: 16px; }
.signal-bar:nth-child(4) { height: 18px; }
.signal-bar:nth-child(5) { height: 20px; }

/* REPLACING HEX CODES WITH VARIABLES */
.text-glow { text-shadow: 0 0 40px rgba(var(--brand-pink-rgb, 235, 26, 119), 0.5); }
.text-glow-purple { text-shadow: 0 0 40px rgba(var(--brand-purple-rgb, 115, 80, 160), 0.5); }

/* Apply Variables */
.spotlight-card:hover {
    border-color: var(--brand-pink, #eb1a77);
}
.shiny-cta {
    --gradient-shine: var(--brand-pink, #eb1a77);
}
.service-card:hover .service-icon-box {
    border-color: var(--brand-pink, #eb1a77);
    background: rgba(var(--brand-pink-rgb, 235, 26, 119), 0.1);
    box-shadow: 0 0 20px rgba(var(--brand-pink-rgb, 235, 26, 119), 0.2);
}
.service-card:hover .service-icon {
    color: var(--brand-pink, #eb1a77);
}
.service-card:hover .talent-tag {
    border-color: rgba(var(--brand-pink-rgb, 235, 26, 119), 0.3);
}
@keyframes node-2-on {
    0%, 32% { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
    35%, 90% { border-color: var(--brand-pink, #eb1a77); color: white; box-shadow: 0 0 15px rgba(var(--brand-pink-rgb, 235, 26, 119), 0.5); }
    95%, 100% { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
}
@keyframes node-3-on {
    0%, 58% { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
    61%, 90% { border-color: var(--brand-pink, #eb1a77); color: white; box-shadow: 0 0 15px rgba(var(--brand-pink-rgb, 235, 26, 119), 0.5); }
    95%, 100% { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
}
@keyframes node-4-on {
    0%, 86% { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
    89%, 95% { border-color: var(--brand-purple, #7350A0); color: white; box-shadow: 0 0 20px rgba(var(--brand-purple-rgb, 115, 80, 160), 0.8); } /* Purple Finish */
    100% { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
}
details[open] .faq-icon {
    color: var(--brand-pink, #eb1a77);
}
.bar {
    background: var(--brand-pink, #eb1a77);
}
@keyframes equalizer {
    0% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.5); opacity: 1; box-shadow: 0 0 10px var(--brand-pink, #eb1a77); }
    100% { transform: scaleY(1); opacity: 0.5; }
}
.scan-beam {
    background: linear-gradient(90deg, transparent, var(--brand-pink, #eb1a77), transparent);
    box-shadow: 0 0 15px var(--brand-pink, #eb1a77);
}
.ticker-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--brand-pink, #eb1a77); /* opacity? */
    background: rgba(var(--brand-pink-rgb, 235, 26, 119), 0.5);
}

.hover\:text-shadow-glow:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Portfolio Specific */
.cinema-card {
    position: relative;
    height: 500px; /* Tall and impressive */
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .cinema-card { height: 350px; }
}

.cinema-card:hover {
    border-color: rgba(var(--brand-pink-rgb, 235, 26, 119), 0.5);
    box-shadow: 0 20px 50px -10px rgba(var(--brand-pink-rgb, 235, 26, 119), 0.15);
    transform: scale(1.02);
    z-index: 10;
}

.cinema-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(20%) brightness(0.8);
}
.cinema-card:hover .cinema-bg {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

.cinema-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, #000 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0.9;
    transition: all 0.3s;
}

/* STICKY SIDE NAV (Desktop) */
.sticky-hud {
    position: sticky;
    top: 150px;
    height: fit-content;
}

/* Contact Specific */
.radar-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.radar-scan {
    background: conic-gradient(from 0deg, transparent 0deg, rgba(var(--brand-pink-rgb, 235, 26, 119), 0.1) 60deg, transparent 60.1deg);
    border-radius: 50%;
    animation: radar-spin 4s linear infinite;
}

/* --- CONTACT CHANNELS --- */
.channel-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.channel-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}
.channel-card:hover .icon-glow {
    filter: drop-shadow(0 0 8px currentColor);
    transform: scale(1.1);
}

/* --- INPUT STYLING --- */
.input-terminal {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.input-terminal:focus {
    outline: none;
    border-color: var(--brand-pink, #eb1a77);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 4px rgba(var(--brand-pink-rgb, 235, 26, 119), 0.1);
}

/* Send Button Loader */
.btn-glitch {
    position: relative;
    overflow: hidden;
}
.btn-glitch::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.btn-glitch:hover::after {
    left: 100%;
}
