[x-cloak] { display: none !important; }

html { scroll-behavior: smooth; }
body { background: #030308; }

/* ── Nav link hover glow ── */
.nav-link {
    position: relative;
}
.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(168,85,247,0.6), 0 0 30px rgba(99,102,241,0.3);
    background: rgba(99,102,241,0.10);
    box-shadow: 0 0 20px rgba(99,102,241,0.25), 0 0 40px rgba(168,85,247,0.10);
}

/* ═══════════════════════════════════════════════════
   GLOWING GRID: sharp visible maze lines
   Uses SVG for crisp 1px lines + CSS for glow halos
   ═══════════════════════════════════════════════════ */

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cline x1='0' y1='100' x2='200' y2='100' stroke='%236366f1' stroke-opacity='0.12' stroke-width='1'/%3E%3Cline x1='100' y1='0' x2='100' y2='200' stroke='%236366f1' stroke-opacity='0.12' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='2' fill='%236366f1' fill-opacity='0.5'/%3E%3Ccircle cx='0' cy='100' r='1.5' fill='%238b5cf6' fill-opacity='0.3'/%3E%3Ccircle cx='100' cy='0' r='1.5' fill='%238b5cf6' fill-opacity='0.3'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        /* Large glow halos scattered across viewport */
        radial-gradient(ellipse 500px 400px at 5% 10%, rgba(99,102,241,0.16), transparent),
        radial-gradient(ellipse 450px 350px at 90% 8%, rgba(139,92,246,0.12), transparent),
        radial-gradient(ellipse 400px 300px at 80% 40%, rgba(139,92,246,0.14), transparent),
        radial-gradient(ellipse 500px 350px at 15% 45%, rgba(99,102,241,0.10), transparent),
        radial-gradient(ellipse 600px 400px at 50% 60%, rgba(99,102,241,0.08), transparent),
        radial-gradient(ellipse 450px 350px at 25% 80%, rgba(139,92,246,0.12), transparent),
        radial-gradient(ellipse 400px 300px at 75% 85%, rgba(99,102,241,0.10), transparent),
        /* Top aurora wash */
        radial-gradient(ellipse 70% 35% at 50% 0%, rgba(99,102,241,0.22), transparent),
        radial-gradient(ellipse 50% 28% at 50% 0%, rgba(139,92,246,0.16), transparent),
        radial-gradient(ellipse 30% 18% at 50% 0%, rgba(34,211,238,0.07), transparent);
}

/* Content stays above the grid */
header, main, section, footer { position: relative; z-index: 1; }


/* ═══════════════════════════════════════════════════
   HERO: concentrated aurora beam
   ═══════════════════════════════════════════════════ */

.hero-mesh {
    position: relative;
    overflow: hidden;
}
.hero-mesh::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 50% -5%, rgba(99,102,241,0.55), transparent 70%),
        radial-gradient(ellipse 45% 40% at 50% -8%, rgba(139,92,246,0.45), transparent 65%),
        radial-gradient(ellipse 35% 30% at 50% 0%, rgba(34,211,238,0.18), transparent 55%),
        radial-gradient(ellipse 20% 15% at 50% 0%, rgba(255,255,255,0.08), transparent 40%),
        radial-gradient(ellipse 80% 50% at 25% 20%, rgba(99,102,241,0.12), transparent),
        radial-gradient(ellipse 80% 50% at 75% 20%, rgba(139,92,246,0.10), transparent);
    animation: beamPulse 8s ease-in-out infinite alternate;
    z-index: 1;
}
.hero-mesh::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, transparent 3%, rgba(99,102,241,0.9) 20%, rgba(139,92,246,1) 50%, rgba(99,102,241,0.9) 80%, transparent 97%);
    filter: blur(1px);
    z-index: 2;
}
@keyframes beamPulse {
    0%   { opacity: 1; transform: scale(1); }
    50%  { opacity: 0.9; transform: scale(1.01); }
    100% { opacity: 1; transform: scale(1); }
}


/* ═══════════════════════════════════════════════════
   FLOATING PARTICLES
   ═══════════════════════════════════════════════════ */

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(99,102,241,0.8);
    border-radius: 50%;
    animation: floatUp linear infinite;
    box-shadow: 0 0 10px rgba(99,102,241,0.5);
}
.particle:nth-child(2) { left: 15%; width: 1.5px; height: 1.5px; animation-duration: 18s; animation-delay: 2s; background: rgba(139,92,246,0.7); box-shadow: 0 0 10px rgba(139,92,246,0.4); }
.particle:nth-child(3) { left: 35%; animation-duration: 22s; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; width: 1.5px; height: 1.5px; animation-duration: 16s; animation-delay: 1s; background: rgba(34,211,238,0.7); box-shadow: 0 0 10px rgba(34,211,238,0.4); }
.particle:nth-child(5) { left: 75%; animation-duration: 20s; animation-delay: 3s; }
.particle:nth-child(6) { left: 90%; width: 1.5px; height: 1.5px; animation-duration: 24s; animation-delay: 5s; background: rgba(139,92,246,0.6); }
.particle:nth-child(1) { left: 5%; animation-duration: 20s; }
@keyframes floatUp {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}


/* ═══════════════════════════════════════════════════
   GRADIENT TEXT
   ═══════════════════════════════════════════════════ */

.gradient-text {
    background: linear-gradient(135deg, #818CF8 0%, #C084FC 40%, #22D3EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ═══════════════════════════════════════════════════
   GLASSMORPHISM CARDS
   ═══════════════════════════════════════════════════ */

.glass-card {
    background: rgba(10,10,24,0.60);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(99,102,241,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
    background: rgba(15,15,35,0.75);
    border-color: rgba(99,102,241,0.6);
    box-shadow:
        0 0 20px rgba(99,102,241,0.35),
        0 0 50px rgba(99,102,241,0.22),
        0 0 100px rgba(139,92,246,0.15),
        0 0 160px rgba(139,92,246,0.08),
        inset 0 1px 0 rgba(255,255,255,0.08);
    transform: translateY(-6px);
}


/* ═══════════════════════════════════════════════════
   GLOW BUTTON
   ═══════════════════════════════════════════════════ */

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-glow::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #6366F1, #A855F7, #22D3EE);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(16px);
}
.btn-glow:hover::before {
    opacity: 0.8;
}
.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99,102,241,0.4);
}


/* ═══════════════════════════════════════════════════
   SECTION GLOW DIVIDER
   ═══════════════════════════════════════════════════ */

.section-glow {
    position: relative;
    overflow: hidden;
}
.section-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.8), rgba(139,92,246,0.8), transparent);
}
.section-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 160px;
    background: radial-gradient(ellipse at top, rgba(99,102,241,0.14), transparent);
    pointer-events: none;
}


/* ═══════════════════════════════════════════════════
   DOT GRID (subtle extra texture)
   ═══════════════════════════════════════════════════ */

.dot-grid {
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 24px 24px;
}


/* ═══════════════════════════════════════════════════
   SECTION GLOW ORBS
   ═══════════════════════════════════════════════════ */

.glow-orb-left { position: relative; }
.glow-orb-left::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.glow-orb-right { position: relative; }
.glow-orb-right::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,0.11), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.glow-orb-center { position: relative; }
.glow-orb-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.10), transparent 70%);
    pointer-events: none;
    z-index: 0;
}


/* ═══════════════════════════════════════════════════
   BADGES
   ═══════════════════════════════════════════════════ */

.badge-popular {
    animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
    50%      { box-shadow: 0 0 0 10px rgba(99,102,241,0); }
}

.badge-guarantee {
    position: relative;
    overflow: hidden;
}
.badge-guarantee::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(245,158,11,0.08) 50%, transparent 60%);
    animation: shimmer 3.5s ease-in-out infinite;
}

.guarantee-badge-confident {
    background: rgba(6,78,59,0.55);
    border: 1px solid rgba(52,211,153,0.30);
    box-shadow: 0 4px 18px rgba(6,78,59,0.40);
}

.hero-robot-panel {
    position: relative;
    border: 1px solid rgba(99,102,241,0.28);
    background: rgba(10,10,24,0.68);
    box-shadow: 0 20px 70px rgba(2,6,23,0.48), 0 0 70px rgba(99,102,241,0.2);
}
@keyframes shimmer {
    0%   { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.pricing-highlight {
    border: 1px solid rgba(99,102,241,0.45);
    box-shadow:
        0 0 50px rgba(99,102,241,0.14),
        0 0 100px rgba(139,92,246,0.07),
        inset 0 1px 0 rgba(255,255,255,0.06);
}


/* ═══════════════════════════════════════════════════
   MISC UI
   ═══════════════════════════════════════════════════ */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
    max-height: 500px;
}

.pathway-line { position: relative; }
.pathway-line::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #6366F1, #A855F7);
    opacity: 0.3;
}

.status-confirmed { background: rgba(34,197,94,0.1); color: #22c55e; }
.status-pending   { background: rgba(245,158,11,0.1); color: #f59e0b; }
.status-refunded  { background: rgba(239,68,68,0.1); color: #ef4444; }

.counter-value {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.showcase-image-card {
    background: rgba(10,10,24,0.65);
    border: 1px solid rgba(99,102,241,0.2);
    box-shadow: 0 12px 40px rgba(2,6,23,0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.showcase-image-card img {
    transition: transform 0.45s ease;
}

.showcase-image-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,0.6);
    box-shadow:
        0 0 20px rgba(99,102,241,0.35),
        0 0 50px rgba(99,102,241,0.22),
        0 0 100px rgba(139,92,246,0.15),
        0 0 160px rgba(139,92,246,0.08),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.showcase-image-card:hover img {
    transform: scale(1.04);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.25);
    border-color: #6366F1;
}


/* ═══════════════════════════════════════════════════
   CALENDAR (booking page)
   ═══════════════════════════════════════════════════ */

.grid-cols-7 > button {
    min-height: 2.5rem;
}

@media (min-width: 640px) {
    .grid-cols-7 > button {
        min-height: 3rem;
    }
}


/* ═══════════════════════════════════════════════════
   THEMED SCROLLBAR
   ═══════════════════════════════════════════════════ */

.themed-scroll::-webkit-scrollbar {
    width: 5px;
}
.themed-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
    border-radius: 999px;
}
.themed-scroll::-webkit-scrollbar-thumb {
    background: rgba(99,102,241,0.35);
    border-radius: 999px;
}
.themed-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(99,102,241,0.55);
}
.themed-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(99,102,241,0.35) rgba(255,255,255,0.03);
}
