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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #fff;
}

:root {
    --site-max-width: 92rem;
}

body .container {
    max-width: var(--site-max-width);
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('../fonts/InstrumentSerif-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Instrument Serif';
  src: url('../fonts/InstrumentSerif-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

/* Outfit Font Family */
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.header-container {
    max-width: var(--site-max-width);
    margin: 10px auto;
    padding: 0 24px;
    height: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

span.Aborder {
    box-shadow: inset 0 1px #ffffff1a, inset 0 0 0 1px #ffffff0f;
}

/* Logo */
.logo {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.7;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 0;
    background-color: #ffffff1a;
    backdrop-filter: blur(40px);
    border-radius: 100px;
    padding: 2px 4px;
    box-shadow: inset 0 1px #ffffff1a, inset 0 0 0 1px #ffffff0f;
    font-family: 'Outfit';
}

.nav-item {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #b7b7b7;
    text-decoration: none;
    border: none;
    background: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    font-family: 'Outfit';
}

.nav-item:hover {
    color: #fff;
}

.more-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.more-btn .chevron {
    transition: transform 0.3s ease;
}

.dropdown.active .chevron {
    transform: rotate(180deg);
}

.book-btn {
    margin-left: 4px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: rgb(106 106 106 / 8%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), inset 0 -10px 20px rgba(255, 255, 255, 0.05);
    text-decoration: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit';
}

.book-btn:hover {
    background: #2a2a2a;
}

/* Dropdown */
.dropdown {
    position: relative;
    font-family: 'Outfit';
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(60, 60, 60, 0.3);
    border-radius: 20px;
    padding: 20px;
    width: 840px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 16px;
}

.cards-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.items-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.25s ease;
    cursor: pointer;
    font-family: 'Outfit';
}

.dropdown-item:hover {
    background: rgba(40, 40, 40, 0.8);
    transform: translateX(2px);
}

.item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(50, 50, 50, 0.5);
    border-radius: 10px;
    flex-shrink: 0;
    color: #b3b3b3;
    transition: all 0.25s ease;
}

.dropdown-item:hover .item-icon {
    background: rgba(60, 60, 60, 0.7);
    color: #ffffff;
}

.item-text h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 3px;
    color: #ffffff;
}

.item-text p {
    font-size: 14px;
    color: #999999;
    line-height: 1.3;
}

.dropdown-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 232px;
    font-family: 'Outfit';
}

.dropdown-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.dropdown-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.dropdown-card:hover img {
    transform: scale(1.08);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
}

.card-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.card-content p {
    font-size: 14px;
    color: #b3b3b3;
    line-height: 1.4;
}

/* Command Button */
.cmd-btn {
    padding: 8px;
    color: #a3a3a3;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.cmd-btn:hover {
    color: #fff;
    background: #1a1a1a;
    transform: rotate(90deg);
}

/* Command Palette */
.command-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    padding: 20vh 16px;
}

.command-overlay.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    animation: fadeIn 0.15s ease-out;
}

.command-backdrop {
        position: absolute;
    inset: 0;
    backdrop-filter: blur(3px);
    animation: fadeIn 0.15s ease-out;
}

.command-modal {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #0f0f0fba;
    border: 1px solid #1f1f1f;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
    animation: slideIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.command-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid #1a1a1a;
    background: #0f0f0f7a;
    backdrop-filter: blur(15px);
}

.command-search svg {
    color: #666666;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.command-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Outfit';
}

.command-search input::placeholder {
    color: #666666;
}

.command-search kbd {
    padding: 5px 8px;
    font-size: 11px;
    font-family: monospace;
    color: #888888;
    background: #25252542;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    font-family: 'Outfit';
}

.command-content {
    max-height: 430px;
    overflow-y: auto;
    padding: 8px 8px;
    background: #0f0f0f7a;
    backdrop-filter: blur(15px);
}

.command-section {
    padding: 0;
    margin-bottom: 10px;
}

.command-section:last-child {
    margin-bottom: 10px;
}

.section-title {
    padding: 8px 10px;
    font-size: 10px;
    font-weight: 700;
    color: #555555;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: 'Outfit';
}

.command-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    color: #cccccc;
    background: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    text-align: left;
    margin-bottom: 1px;
    font-family: 'Outfit';
}

.command-item:hover,
.command-item.selected {
    color: #ffffff;
    background: #ffffff1c;
}

.command-item svg {
    color: #777777;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    transition: color 0.15s ease;
}

.command-item:hover svg,
.command-item.selected svg {
    color: #aaaaaa;
}

.command-item span {
    font-size: 12px;
    font-weight: 500;
}

/* Scrollbar */
.command-content::-webkit-scrollbar {
    width: 8px;
}

.command-content::-webkit-scrollbar-track {
    background: #0a0a0a;
}

.command-content::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}

.command-content::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a;
}

/* Main Content */
.main {
    padding-top: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main h1 {
    font-size: 48px;
    font-weight: 700;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .dropdown-menu {
        min-width: calc(100vw - 32px);
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 97vh;
    padding: 100px 24px 0;
    overflow: hidden;
}

/* Background Blur */
.hero-bg-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
    background-color: #0b0218b3;
}


/* Stars Canvas */
.stars-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 100px;
}

/* Badge */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 6px 6px 4px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInDown 0.6s ease-out;
    font-family: 'Outfit', sans-serif;
}

.hero-badge:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.badge-label {
    padding: 2px 8px;
    background: #2563eb;
    color: white;
    font-size: 12px;
    font-weight: 500;
    border-radius: 100px;
}

.badge-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 8px;
}

.hero-badge svg {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 4px;
}

/* Main Heading */
.hero-heading {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #e5e5e5;
    margin: 0;
    animation: fadeInUp 0.6s ease-out 0.1s both;
    font-family: Instrument Serif;
}

.hero-heading-italic {
    font-family: Instrument Serif;
    font-style: italic;
    background: linear-gradient(to bottom, #999, #ccc, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subheading with Image */
.hero-subheading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    font-family: 'Outfit', sans-serif;
}

.hero-image-wrapper {
    position: relative;
    width: 80px;
    height: 50px;
    border-radius: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: scale(1.05);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 100px;
}

.hero-image-wrapper:hover img.hero-image {
    transform: scale(1.1) rotate(3deg);
}

.wave-emoji {
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 24px;
    height: 24px;
    display: none;
    animation: wave 0.5s ease-in-out;
}

.hero-image-wrapper:hover .wave-emoji {
    display: block;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn-connect {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ffffff1a;
    gap: 8px;
    padding: 5px 5px 5px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: white;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(4px);
}

.btn-connect:hover {
    transform: scale(1.02);
    background: transparent;
    border-color: transparent;
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.2), 
                0 4px 6px -4px rgba(255, 255, 255, 0.2);
}
.btn-text {
    position: relative;
    z-index: 10;
    transition: color 0.5s ease;
}

.btn-connect:hover .btn-text {
    color: black;
}

.btn-bg {
    position: absolute;
    inset: 0;
    background: white;
    transform: translateX(100%) scale(0);
    border-radius: 100px;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-connect:hover .btn-bg {
    transform: translateX(0) scale(1);
}

.btn-icon {
    position: relative;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:white;
    border-radius: 100%;
    transition: all 0.5s ease;
    stroke: black;
}

.btn-connect:hover .btn-icon {
    background: transparent;
    transform: scale(1.1);
}

.arrow-1 {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.arrow-2 {
    position: absolute;
    opacity: 0;
    transform: translateX(-24px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-connect:hover .arrow-1 {
    opacity: 0;
    transform: translateX(24px);
}

.btn-connect:hover .arrow-2 {
    opacity: 1;
    transform: translateX(0);
    stroke: black;
}

.btn-email {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-email:hover {
    color: rgba(255, 255, 255, 0.95);
}

/* Bottom Glow - Exact Match */
.hero-glow {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 450px;
    pointer-events: none;
    z-index: 10;
    mask-image: linear-gradient(90deg, #0000, #000 30% 70%, #0000);
}

.glow-gradient {
    position: absolute;
    bottom: 167px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 111px;
    background: linear-gradient(90deg, #06b6d4, #7c3aed, #4f46e5, #38bdf8, #06b6d4);
    background-size: 200% 100%;
    filter: blur(80px);
    animation: gradientMove 8s ease-in-out infinite;
}

@keyframes gradientMove {
    0% { 
        background-position: 0% 50%;
        transform: translateX(-50%) translateY(0);
    }
    50% { 
        background-position: 100% 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    100% { 
        background-position: 0% 50%;
        transform: translateX(-50%) translateY(0);
    }
}

.glow-ring-1 {
    position: absolute;
    bottom: -753px;
    left: -454px;
    right: -432px;
    height: 955px;
    border-radius: 100%;
    background: linear-gradient(to bottom, white, transparent);
}

.glow-ring-2 {
    position: absolute;
    bottom: -759px;
    left: -532px;
    right: -510px;
    height: 956px;
    aspect-ratio: 2.346 / 1;
    border-radius: 100%;
    background: #f7f7f8;
    box-shadow: 
        inset 0 2px 20px rgba(79, 70, 229, 0.063),
        0 -10px 50px 1px rgba(79, 70, 229, 0.125);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .glow-ring-2 {
        background: #0a0a0a;
        box-shadow: 
            inset 0 2px 20px rgba(255, 255, 255, 1),
            0 -10px 50px 1px rgba(255, 255, 255, 0.49);
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 36px;
    }
    
    .hero-subheading {
        font-size: 16px;
    }
    
    .hero-image-wrapper {
        width: 60px;
        height: 38px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .hero-section {
        min-height: auto;
        padding: 88px 16px 40px;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-bg-blur {
        width: 420px;
        height: 320px;
        filter: blur(120px);
    }

    .hero-glow {
        max-width: 100%;
        height: 320px;
        bottom: -140px;
    }

    .glow-gradient {
        width: 420px;
        height: 90px;
        filter: blur(60px);
    }

    .glow-ring-1,
    .glow-ring-2 {
        left: -65%;
        right: -65%;
        height: 520px;
    }

    .parent {
        margin: 48px auto;
        padding: 12px;
        min-height: auto;
        grid-column-gap: 12px;
        grid-row-gap: 12px;
    }

    .globe-embed {
        height: 300px;
        margin-bottom: 0;
    }

    .contact-cta {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .contact-cta .text-nowrap {
        white-space: normal;
    }

    .contact-cta .cursor-grab {
        display: none;
    }

    .contact-cta .cta-title {
        font-size: 1.75rem;
        line-height: 1.15;
    }

    .contact-cta h3 {
        line-height: 1.2;
    }

    .contact-cta p {
        font-size: 0.95rem;
    }
}


/* about section stylings */

/* Main Grid Layout - Using your exact CSS */
        .parent {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-template-rows: repeat(3, 1fr);
            grid-column-gap: 16px;
            grid-row-gap: 16px;
            max-width: 1536px;
            margin: 100px auto;
            padding: 16px;
            min-height: 100vh;
        }

        .div1 {
            grid-area: 1 / 1 / 2 / 5;
        }

        /* Collaboration card - top left */
        .div2 {
            grid-area: 2 / 1 / 4 / 3;
        }

        /* Timezone card - bottom left */
        .div3 {
            grid-area: 3 / 3 / 4 / 7;
        }

        /* Work items - bottom right */
        .div4 {
            grid-area: 2 / 3 / 3 / 5;
        }

        /* Contact card - middle */
        .div5 {
            grid-area: 1 / 5 / 3 / 7;
        }

        /* Tech stack + Browser - right side */

        @media (max-width: 1024px) {
            .parent {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .div1,
            .div2,
            .div3,
            .div4,
            .div5 {
                grid-area: auto;
            }
        }

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

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

        .animate-marquee {
            animation: marquee-scroll var(--duration) linear infinite;
        }

        .marquee-container {
            display: flex;
            gap: var(--gap);
        }

        .w-74 {
            width: calc(var(--spacing) * 74);
        }


/* case studies */

.font-serif {
            font-family: 'Instrument Serif', serif;
        }

        .font-instrument-serif {
            font-family: 'Instrument Serif', serif;
        }

        /* Custom animations */
        @keyframes floatIn {
            from {
                opacity: 0;
                transform: scale(0);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .connection-avatar {
            animation: floatIn 0.5s ease-out forwards;
        }


        .animate-gradient-x {
            background: linear-gradient(90deg, #DB2777, #7E22CE, #2932CB, #059669);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient 3s ease infinite;
        }

        @keyframes gradient {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }
/* Globe section embed */
.globe-embed {
    width: 100%;
    height: 420px;
    margin-bottom: -80px;
}

[data-testimonials] {
    touch-action: pan-y;
    user-select: none;
}

/* Contact CTA (From Concept to Creation) */
.contact-cta .contact-cta-card {
    position: relative;
    background: #141414 !important;
    border-color: rgba(255, 255, 255, 0.08);
}

.contact-cta .contact-cta-card::before {
    content: none;
}

.contact-cta .contact-cta-card::after {
    content: none;
}

.contact-cta .contact-cta-card > * {
    position: relative;
    z-index: 1;
}

@keyframes cta-blob-1 {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-6%, 4%, 0) scale(1.08);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes cta-blob-2 {
    0% {
        transform: translate3d(0, 0, 0) scale(1.02);
    }
    50% {
        transform: translate3d(5%, -5%, 0) scale(0.95);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1.02);
    }
}

.contact-cta .contact-cta-card > * {
    position: relative;
    z-index: 1;
}

.contact-cta .cta-title,
.contact-cta p,
.contact-cta h3 {
    color: #ffffff;
}

.contact-cta .cta-title {
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.65);
}

#globe-section {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

#globeViz {
    width: 100%;
    height: 100%;
}

#globeViz canvas {
    display: block;
}

.country-pin {
    width: 40px;
    height: 40px;
    position: relative;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    user-select: none;
}

.country-pin-flag {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.95);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
    margin: 0 auto;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.country-pin-flag:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.52);
}

.country-tooltip {
    position: absolute;
    left: 50%;
    bottom: 46px;
    transform: translateX(-50%) translateY(5px);
    min-width: 150px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(165, 210, 255, 0.38);
    background: rgba(5, 16, 30, 0.92);
    color: #e7f3ff;
    font: 600 11px/1.25 "Segoe UI", Arial, sans-serif;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    pointer-events: none;
}

.country-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(5, 16, 30, 0.92);
}

.country-tooltip-country {
    display: block;
    margin-bottom: 2px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
}

.country-tooltip-time {
    display: block;
    margin-top: 4px;
    color: #9dd2ff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.country-pin:hover .country-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
