:root {
    --bg: #000000;
    --text: #ffffff;
    --muted: #999999;
    --accent: #ff98e0;
    --card-bg: #0d0d0d;
    --card-border: #2a2a2a;
    --radius-card: 12px;
    --radius-pill: 999px;
    --gradient: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    --font: 'Raleway', sans-serif;
    --section-gap: clamp(5rem, 12vw, 10rem);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    background: var(--bg);
    background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
    color: var(--text);
    font-family: var(--font);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--text);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

section {
    padding: var(--section-gap) 0;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--card-border);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
}

.nav-logo {
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--text);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo:hover {
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: 20px;
}

.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-links a {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s, background 0.3s;
    white-space: nowrap;
    min-height: 36px;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

#hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--stable-vh, 1vh) * 10);
    pointer-events: none;
}

.hero-content a,
.hero-content button {
    pointer-events: auto;
}

.hero-globe {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -8rem;
    will-change: transform;
}

.hero-globe #globe-container {
    width: 100vw;
    max-width: 1600px;
    aspect-ratio: 1;
    min-height: 600px;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-globe #globe-container.globe-ready {
    opacity: 1;
}

.hero-globe::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 30%, var(--bg) 75%);
    pointer-events: none;
    z-index: 2;
}

#hero h1 {
    font-size: clamp(3.5rem, 10vw, 9rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1;
    animation: heroEntrance 1s ease both;
    display: inline-flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1.5rem);
}

.hero-logo-wrap {
    position: relative;
    display: inline-block;
    border-radius: 20%;
    padding: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 2.5s ease-in-out infinite;
}

.hero-logo-wrap.loaded {
    background: none;
    animation: none;
}

.hero-logo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20%;
    background: var(--gradient);
    background-size: 300% 300%;
    animation: animatedgradient 15s ease alternate infinite;
}

.hero-logo {
    position: relative;
    display: block;
    width: clamp(2.8rem, 8.5vw, 7rem);
    height: clamp(2.8rem, 8.5vw, 7rem);
    border-radius: 20%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-logo.loaded {
    opacity: 1;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 300;
    color: #fff;
    margin-top: 0.35rem;
    animation: heroEntrance 1s ease 0.15s both;
}

.hero-accent {
    display: none;
}

.hero-cta {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin-top: 1.25rem;
    margin-bottom: 10rem;
    animation: heroEntrance 1s ease 0.3s both;
}

.pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    padding: 14px 12px;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
    background: var(--gradient);
    background-size: 300% 300%;
    animation: animatedgradient 15s ease alternate infinite;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.15s;
    min-height: 44px;
}

.pill-btn:hover {
    opacity: 0.88;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.pill-btn:active {
    transform: translateY(0);
}

.pill-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: none;
}

.pill-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
    opacity: 1;
}

.about-grid {
    display: grid;
    gap: 3rem;
}

.about-story h2 {
    margin-bottom: 1.5rem;
}

.about-story p {
    color: #fff;
    margin-bottom: 1rem;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
}

.about-story em {
    font-style: italic;
    color: rgba(7, 179, 155, 0.9);
}

.about-story strong {
    font-weight: 700;
    color: #fff;
}

.about-story p:last-child {
    margin-bottom: 0;
}

.about-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    flex: 1;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: var(--radius-card);
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-card);
    padding: 1px;
    background: linear-gradient(135deg, rgba(247,149,51,0.7), rgba(239,78,123,0.7), rgba(80,115,184,0.7), rgba(7,179,155,0.7));
    background-size: 300% 300%;
    animation: animatedgradient 30s ease alternate infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.badge-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.badge-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

#map h2 {
    text-align: center;
}

#globe-container canvas {
    cursor: grab;
}

#globe-container canvas:active {
    cursor: grabbing;
}

.scene-tooltip {
    background: rgba(13, 13, 13, 0.95) !important;
    border: 1px solid var(--card-border) !important;
    border-radius: 8px !important;
    padding: 6px 16px !important;
    font-family: var(--font) !important;
    font-size: 0.75rem !important;
    color: var(--text) !important;
    letter-spacing: 0.04em !important;
    z-index: 3 !important;
}

#traction {
    position: relative;
    z-index: 4;
    text-align: center;
    padding-top: 0;
    background: var(--bg);
}

#about {
    position: relative;
    z-index: 4;
    padding-top: 0;
    padding-bottom: 2rem;
    background: var(--bg);
}



.stats-grid {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stat-value {
    display: block;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    background: var(--gradient);
    background-size: 300% 300%;
    animation: animatedgradient 15s ease alternate infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.6rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 641px) {
    .projects-grid {
        gap: 3rem;
    }
}

.project-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.project-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12);
}

.project-image {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(90deg, rgba(255,255,255,0.02) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.02) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 3s ease-in-out infinite;
    overflow: hidden;
}

.project-image--video {
    background: #000;
    animation: none;
}

.project-image--video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.status-live {
    background: rgba(7, 179, 155, 0.15);
    color: #07b39b;
}

.status-dev {
    background: rgba(80, 115, 184, 0.15);
    color: #5073b8;
}

.status-grant {
    background: rgba(247, 149, 51, 0.15);
    color: #f79533;
}

.project-body {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1rem 1rem;
    flex: 1;
}

.project-body h3 {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.project-meta {
    margin-bottom: 0.5rem;
    display: none;
}

.project-body h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.project-body h3 a:hover {
    color: var(--accent);
}

.project-body > p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.review-badge {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f79533;
    flex-shrink: 0;
    white-space: nowrap;
}

.review-tba {
    color: var(--muted);
    font-weight: 400;
}

.project-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.platform-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    max-width: 100px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-family: var(--font);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s;
    min-height: 28px;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.platform-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(7,179,155,0.3), rgba(16,152,173,0.3), rgba(80,115,184,0.3));
    background-size: 300% 300%;
    animation: animatedgradient 30s ease alternate infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.platform-pill:hover {
    transform: translateY(-1px);
    color: #fff;
    background: rgba(7, 179, 155, 0.12);
    box-shadow: 0 4px 12px rgba(7, 179, 155, 0.15);
}

#team {
    position: relative;
    z-index: 3;
    padding-top: 4rem;
    overflow: visible;
}

#team > .container {
    max-width: 100%;
    padding: 0;
}

#projects {
    position: relative;
    z-index: 4;
    padding-top: 0;
    background: var(--bg);
}

#team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    bottom: 0;
    background: linear-gradient(to top, var(--bg) 60%, rgba(0,0,0,0.6) 85%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.team-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 300;
    color: #fff;
    text-align: center;
    margin-top: 0.5rem;
}

.team-locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    margin-top: 1.5rem;
}

.team-locations span {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.15;
    animation: locationFadeLoop 8s ease-in-out infinite;
}

.team-locations span:nth-child(1) { animation-delay: 0s; }
.team-locations span:nth-child(2) { animation-delay: 1s; }
.team-locations span:nth-child(3) { animation-delay: 2s; }
.team-locations span:nth-child(4) { animation-delay: 3s; }
.team-locations span:nth-child(5) { animation-delay: 4s; }
.team-locations span:nth-child(6) { animation-delay: 5s; }
.team-locations span:nth-child(7) { animation-delay: 6s; }

#team h2 {
    text-align: center;
}

.team-grid {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 420px;
    margin: 3rem auto 2rem;
}

.team-grid svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.team-grid svg line {
    stroke: rgba(7, 179, 155, 1);
    stroke-width: 1;
    stroke-opacity: 0.08;
    animation: lineBreathe var(--breathe-dur, 4s) ease-in-out var(--breathe-delay, 0s) infinite alternate;
    animation-fill-mode: both;
}

@keyframes lineBreathe {
    0% { stroke-opacity: 0.06; }
    100% { stroke-opacity: 0.18; }
}

.team-card {
    position: absolute;
    text-align: center;
    white-space: nowrap;
    width: auto;
    cursor: grab;
    user-select: none;
    will-change: transform;
    transition: none;
}

.team-card:active {
    cursor: grabbing;
}

.team-card {
    touch-action: none;
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 2.5s ease-in-out infinite;
    margin: 0 auto;
    position: relative;
}

.team-avatar img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-avatar img.loaded {
    opacity: 1;
}

.team-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: #20edd0;
    z-index: 0;
    opacity: 0.3;
    transition: opacity 0.4s;
}

.team-card:hover .team-avatar::after {
    opacity: 0.8;
}

.team-card h3 {
    font-size: 0.8rem;
    font-weight: 700;
    margin: 6px 0 0;
    line-height: 1;
    color: #fff;
}

.team-role {
    display: inline-block;
    font-size: 0.45rem;
    font-weight: 500;
    color: rgba(7, 179, 155, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 3px;
    padding: 2px 6px;
    border: 1px solid rgba(7, 179, 155, 0.2);
    border-radius: var(--radius-pill);
}

.services-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 640px;
}

.services-intro strong { color: #fff; }
.services-intro em { color: rgba(7, 179, 155, 0.9); font-style: italic; }

.services-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-block {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: var(--radius-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.service-block::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-card);
    padding: 1px;
    background: linear-gradient(135deg, rgba(247,149,51,0.7), rgba(239,78,123,0.7), rgba(80,115,184,0.7), rgba(7,179,155,0.7));
    background-size: 300% 300%;
    animation: animatedgradient 30s ease alternate infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.service-block h3 {
    margin-bottom: 0.75rem;
}

.service-block p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}

.services-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.services-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-card);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--text);
    background: transparent;
    overflow: hidden;
    transition: transform 0.2s, opacity 0.2s;
}

.services-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-card);
    padding: 1.5px;
    background: var(--gradient);
    background-size: 300% 300%;
    animation: animatedgradient 15s ease alternate infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.services-cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    background-size: 300% 300%;
    animation: animatedgradient 15s ease alternate infinite;
    opacity: 0.07;
    border-radius: var(--radius-card);
    pointer-events: none;
}

.services-cta-btn:hover {
    opacity: 0.9;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.06);
}

.services-cta-btn svg {
    transition: transform 0.2s;
}

.services-cta-btn:hover svg {
    transform: translateX(4px);
}

#services {
    padding: 3rem 0 4rem;
}

#services h2 {
    text-align: left;
    margin-bottom: 2rem;
}

#services h2 small {
    display: inline;
    font-size: 0.5em;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.08em;
    vertical-align: middle;
    opacity: 0.85;
}

.hiring-intro {
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.services-divider {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin: 3rem 0 1.5rem;
    position: relative;
}

.services-divider::before,
.services-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.services-divider::before { right: calc(50% + 8em); }
.services-divider::after  { left:  calc(50% + 8em); }

.hiring-intro em {
    color: var(--text);
    font-style: normal;
}

.hiring-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .container {
        padding: 0 12px;
    }

    .hiring-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .hiring-grid .hiring-card:first-child {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        text-align: left;
    }

    .hiring-grid .hiring-card:first-child .hiring-text {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .hiring-grid .hiring-card:first-child h3 {
        margin-bottom: 0.25rem;
    }

    .hiring-grid .hiring-card:first-child p {
        margin-bottom: 0;
    }

    .hiring-grid .hiring-card:first-child .pill-btn-outline {
        flex-shrink: 0;
        align-self: center;
    }

    .hiring-card {
        padding: 1rem;
    }

    .hiring-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .hiring-card p {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .hiring-card .pill-btn-outline {
        padding: 8px 16px;
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .hiring-bg-icon {
        width: 50px;
        height: 50px;
    }

    .services-grid {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .service-block {
        flex: 1;
        padding: 1rem 0.75rem;
    }

    .service-block h3 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .service-block p {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .services-divider {
        margin: 1.5rem 0 0.75rem;
        font-size: 0.75rem;
    }

    .about-badges {
        gap: 0.5rem;
    }

    .badge {
        padding: 0.75rem 0.5rem;
    }

    .badge-value {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .badge-label {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
    }

    .services-cta {
        margin-top: 1.5rem;
    }

    .services-cta-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .project-body {
        padding: 0.5rem 0.5rem 0.75rem;
    }
}

@media (min-width: 641px) and (max-width: 960px) {
    .hiring-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hiring-card {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.hiring-bg-icon {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100px;
    height: 100px;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.hiring-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hiring-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hiring-card .pill-btn-outline {
    background: transparent;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-card);
    position: relative;
    overflow: hidden;
    animation: none;
}

.hiring-card .pill-btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-card);
    padding: 1.5px;
    background: var(--gradient);
    background-size: 300% 300%;
    animation: animatedgradient 15s ease alternate infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

footer {
    padding: 3rem 0;
    padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--card-border);
    margin-top: var(--section-gap);
    background: var(--bg);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

footer p {
    font-size: 0.8rem;
    color: var(--muted);
}

footer address {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-style: normal;
    text-align: center;
}

footer address a {
    font-size: 0.8rem;
    color: var(--muted);
    transition: color 0.3s;
}

footer address a:hover {
    color: var(--accent);
}

.footer-location {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.5;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.25rem;
}

.footer-social a {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
}

@keyframes skeletonShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes animatedgradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.4; }
}

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

@keyframes locationFadeLoop {
    0%, 100% { opacity: 0.15; }
    15%, 40% { opacity: 0.8; }
    55% { opacity: 0.15; }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 639px) {
    .hero-content {
        padding-top: calc(var(--stable-vh, 1vh) * 25);
    }

    .hero-globe #globe-container {
        width: 140vw;
        min-height: 140vw;
        max-width: none;
    }

    #team {
        padding-top: calc(var(--stable-vh, 1vh) * 35);
    }

    .team-grid {
        height: 420px;
    }
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        max-width: 600px;
        height: 480px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr auto;
        align-items: start;
        gap: 4rem;
    }

    .about-badges {
        flex-direction: column;
    }

    .team-grid {
        max-width: 700px;
        height: 540px;
    }

    nav {
        height: 64px;
    }
}
