:root {
    /* -- Deep Neutral Palette -- */
    --bg-body: #0f0f11;
    --bg-surface: #1a1a1d;
    --bg-surface-hover: #232326;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* -- Accent / Brand -- */
    --accent-blue: #3b82f6;
    /* Executive Blue */
    --accent-glow: rgba(59, 130, 246, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.08);

    /* -- Typography -- */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* -- Spacing -- */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* -- Container -- */
    --container-width: 1200px;
    --header-height: 80px;

    /* -- Transitions -- */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    max-width: 65ch;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--accent-blue);
}

/* --- Layout --- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

/* --- Components: Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-body);
}

.btn-primary:hover {
    background-color: #e2e8f0;
    transform: translateY(-1px);
}

.btn-outline {
    border-color: var(--border-subtle);
    background: transparent;
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--bg-surface);
    border-color: var(--text-secondary);
}

/* --- Components: Navbar --- */
header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 17, 0.85);
    /* Glassmorphism */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 200px;
    /* Adjust based on navbar height */
    width: auto;
    margin-top: 20px;
}

nav ul {
    display: flex;
    gap: var(--spacing-md);
}

nav a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

nav a:hover,
nav a.active {
    color: var(--text-primary);
}

.nav-cta {
    display: none;
    /* Desktop CTA in nav if needed, or mobile toggle */
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* --- Components: Hero --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    /* Align grid content to bottom for the "vertically end" feel */
    padding-top: var(--header-height);
    background:
        radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 25%);
    overflow: hidden;
    position: relative;
    padding-bottom: 0;
    /* Flush bottom for image */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    width: 100%;
    padding-bottom: var(--spacing-lg);
    /* Add padding back to container */
}

.hero-content {
    max-width: 100%;
    z-index: 20;
    /* Ensure content is above image on mobile */
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align image bottom */
    height: 100%;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    /* Increased size */
    height: auto;
    border-radius: 2px;
    position: relative;
    z-index: 10;
    /* White glowing border effect */
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.5);
    /* Kept deep shadow for depth mixed with glow */
    filter: grayscale(20%) contrast(1.1);
    /* removed masking or absolute positioning on desktop to let it flow naturally but bigger */
}

.hero-blob {
    position: absolute;
    width: 400px;
    /* Larger blob */
    height: 400px;
    background: var(--accent-blue);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.eyebrow {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-blue);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

/* Responsive Buttons */
.mobile-text {
    display: none;
}

/* Carousel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Mask edges */
    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);
}

.carousel-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll 30s linear infinite;
    padding: 1rem 0;
}

.carousel-slide {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.carousel-slide:hover {
    opacity: 1;
    color: var(--text-primary);
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* --- Components: Cards (Services/Grid) --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: var(--spacing-md);
    border-radius: 2px;
    transition: var(--transition-medium);
}

.card:hover {
    border-color: var(--text-secondary);
    transform: translateY(-4px);
}

.card h3 {
    margin-top: var(--spacing-sm);
}

.card-icon {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* --- Components: Project Showcase --- */
.project-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-preview {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.project-card:hover .project-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.project-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.project-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.project-link {
    margin-top: auto;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--accent-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.project-link:hover {
    text-decoration: underline;
}

/* Specific Project Gradients (Placeholders) */
.bg-veritrack {
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
}

.bg-finance {
    background: linear-gradient(135deg, #065f46 0%, #064e3b 100%);
}

.bg-auralis {
    background: linear-gradient(135deg, #701a75 0%, #4a044e 100%);
}

.bg-techjam {
    background: linear-gradient(135deg, #be185d 0%, #831843 100%);
}

.bg-confyd {
    background: linear-gradient(135deg, #b45309 0%, #78350f 100%);
}

.bg-trading {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.bg-neuro {
    background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
}

.bg-connect {
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
}

.bg-agri {
    background: linear-gradient(135deg, #166534 0%, #14532d 100%);
}

/* --- Forms & Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-surface);
    padding: var(--spacing-md);
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

/* --- Components: In-Person Carousel --- */
.carousel-section {
    padding: var(--spacing-md) 0;
    overflow: hidden;
    position: relative;
    background: var(--bg-body);
    border-top: 1px solid var(--border-subtle);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: var(--spacing-sm);
    overflow: hidden;
    /* Hide scrollbar */
}

/* We will use JS for scrolling, so flex row is key */
.carousel-track-js {
    display: flex;
    gap: var(--spacing-sm);
    width: max-content;
    /* Ensure it fits all items */
    cursor: grab;
    touch-action: pan-x;
    /* Allow horizontal scrolling */
}

.carousel-track-js:active {
    cursor: grabbing;
}

.in-person-item {
    flex: 0 0 auto;
    width: auto;
    /* Allow variable width */
    max-width: 500px;
    /* Cap super wide images */
    height: 280px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    position: relative;
    user-select: none;
    /* Prevent selection while dragging */
}

.in-person-item img {
    height: 100%;
    width: auto;
    /* Maintain aspect ratio */
    display: block;
    pointer-events: none;
    /* Prevent image drag */
    filter: grayscale(20%);
    transition: var(--transition-medium);
}



.in-person-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Manual Controls (Optional, for "arrows" if user prefers clicking) */
.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.control-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.control-btn:hover {
    color: white;
    border-color: var(--accent-blue);
}

/* --- Components: Testimonials --- */
.testimonial-section {
    position: relative;
    background: linear-gradient(to bottom, var(--bg-body), var(--bg-surface));
    padding: var(--spacing-lg) 0;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.testimonial-card {
    flex: 0 0 100%;
    /* Full width of container */
    padding: 0 var(--spacing-md);
    text-align: center;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.t-quote-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    opacity: 0.3;
    margin-bottom: 1rem;
    font-family: serif;
    line-height: 1;
}

.t-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.t-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.t-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-blue);
}

.t-info {
    text-align: left;
}

.t-name {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.t-role {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.t-company {
    color: var(--accent-blue);
    font-weight: 500;
}

/* Testimonial Controls */
.t-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.t-dots {
    display: flex;
    gap: 0.5rem;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-subtle);
    cursor: pointer;
    transition: var(--transition-fast);
}

.t-dot.active {
    background: var(--accent-blue);
    transform: scale(1.2);
}

/* --- Responsive Media Queries --- */

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--bg-body);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.75rem;
    border-radius: 4px;
    font-family: var(--font-body);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

/* --- Interactive Cursor Spotlight --- */
/* --- Interactive Cursor Spotlight --- */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    /* Above most content, but blend mode handles the look */
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    mix-blend-mode: screen;
    /* Nice techy blend */
    will-change: transform;
    opacity: 1;
}

/* Hide on mobile/touch */
@media (hover: none) and (pointer: coarse) {
    .cursor-glow {
        display: none !important;
    }
}


/* --- About Page Highlights --- */
.text-highlight {
    color: var(--text-primary);
    background: linear-gradient(180deg, transparent 65%, rgba(59, 130, 246, 0.2) 65%);
    font-weight: 600;
}

/* --- Authoritative Section --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    /* Text wider than image */
    gap: var(--spacing-lg);
    align-items: center;
}

.authoritative-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.authoritative-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.authoritative-content p.lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
}

.authoritative-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.authoritative-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.authoritative-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: var(--transition-medium);
}

.authoritative-image:hover img {
    filter: grayscale(0%);
}

.profile-portrait {
    width: 80%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 24px;
    margin-top: var(--spacing-md);
    /* Cute rounded corners */
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-medium);
}

.profile-portrait:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- Utilities --- */
.hidden {
    display: none;

}

.mt-1 {
    margin-top: var(--spacing-sm);
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.text-center {
    text-align: center;
}

/* --- Components: Social Icons --- */
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.contact-info-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}


/* --- Typing Effect --- */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--accent-blue);
    margin-left: 2px;
    -webkit-text-fill-color: initial;
    /* Override gradient transparency */
    text-fill-color: initial;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .authoritative-image {
        margin-top: 2rem;
        /* Ensure spacing when stacked */
    }

    .authoritative-content h2 {
        font-size: 1.75rem;
    }

    .authoritative-content p.lead {
        font-size: 1.05rem;
    }

    .authoritative-content p {
        font-size: 0.95rem;
    }

    .t-text {
        font-size: 1.15rem;
    }

    .hero-grid {
        display: block;
        /* Break grid */
        text-align: center;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero-content {
        position: relative;
        z-index: 20;
    }

    .hero-image-wrapper {
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        align-items: flex-end;
        /* Align image to bottom */
        overflow: hidden;
    }

    .hero-image {
        width: 100%;
        /* Slight zoom */
        margin-left: -10%;
        /* Center the zoom */
        height: 100%;
        /* Fill nicer */
        object-fit: cover;
        opacity: 0.6;
        /* Slight bump in visibility */
        /* Dimmed heavily */
        filter: grayscale(100%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 80%, transparent 100%);
        max-width: none;
        box-shadow: none;
        border: none;
        /* Remove glow on mobile */
    }

    .hero-actions {
        justify-content: center;
    }

    .hero p {
        font-size: 1rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        line-height: 1.6;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(4px);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        /* Mobile menu needed */
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 100dvh;
        padding-top: 0;
        padding-bottom: 4rem;
        display: flex;
        align-items: flex-end;
    }

    h1 {
        font-size: 2.5rem;
    }

    /* Button Text Swap */
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: inline;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        /* Slightly tighter padding */
        font-size: 0.95rem;
        white-space: nowrap;
        /* Prevent wrap as requested */
    }
}

/* --- Tech Particles --- */
.tech-particle {
    position: absolute;
    top: -5%;
    color: var(--accent-blue);
    font-family: monospace;
    user-select: none;
    will-change: transform, opacity;
    animation-name: floatDown;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes floatDown {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(110vh) translateX(20px) rotate(180deg);
        opacity: 0;
    }
}

/* --- Floating Pulse (Tech Bell) --- */
.floating-pulse {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: rgba(26, 26, 29, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    backdrop-filter: blur(5px);
    transition: var(--transition-medium);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.floating-pulse:hover {
    transform: translateY(-2px);
    border-color: var(--accent-blue);
}

.pulse-core {
    width: 12px;
    height: 12px;
    background: var(--accent-blue);
    border-radius: 50%;
    position: relative;
}

.pulse-core::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: pulseWave 2s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
    z-index: -1;
}

@keyframes pulseWave {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }

    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}