/* ============================================================
   NetWit — Awwwards 10/10 CSS Design System
   Dark theme · #ccff00 accent · Syne + DM Sans
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,200..700;1,9..40,200..700&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
    /* Accent — Dave's rule */
    --accent: #ccff00;
    --accent-hover: #b8e600;
    --accent-dim: rgba(204, 255, 0, 0.12);
    --accent-glow: rgba(204, 255, 0, 0.35);
    --accent-glow-lg: rgba(204, 255, 0, 0.2);

    /* Dark canvas */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a24;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.06);
    --surface-active: rgba(255, 255, 255, 0.09);

    /* Borders */
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.14);
    --border-accent: rgba(204, 255, 0, 0.25);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.58);
    --text-dim: rgba(255, 255, 255, 0.32);

    /* Brand purple */
    --purple: #8000FF;
    --purple-light: rgba(128, 0, 255, 0.12);
    --purple-glow: rgba(128, 0, 255, 0.3);

    /* Typography */
    --font-display: 'Syne', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Radius */
    --radius-xs: 0.25rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.55);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.65);
    --shadow-accent: 0 8px 32px rgba(204, 255, 0, 0.28);

    /* Transitions */
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.3s var(--ease-out);
    --transition-fast: all 0.15s var(--ease-out);
}

/* ---------- KEYFRAME ANIMATIONS ---------- */
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-scale {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes spring-in {
    0%   { opacity: 0; transform: scale(0.82) translateY(36px); }
    55%  { transform: scale(1.03) translateY(-4px); }
    75%  { transform: scale(0.98) translateY(2px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 18px rgba(204, 255, 0, 0.28),
                    0 0 36px rgba(204, 255, 0, 0.14);
    }
    50% {
        box-shadow: 0 0 32px rgba(204, 255, 0, 0.48),
                    0 0 64px rgba(204, 255, 0, 0.22);
    }
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.55;
    }
    25% {
        transform: translate(22px, -44px) rotate(90deg) scale(1.08);
        opacity: 0.75;
    }
    50% {
        transform: translate(-16px, -88px) rotate(180deg) scale(0.92);
        opacity: 0.45;
    }
    75% {
        transform: translate(32px, -44px) rotate(270deg) scale(1.04);
        opacity: 0.65;
    }
}

@keyframes float-particle-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.38;
    }
    33% {
        transform: translate(-32px, -64px) rotate(120deg);
        opacity: 0.65;
    }
    66% {
        transform: translate(42px, -32px) rotate(240deg);
        opacity: 0.28;
    }
}

@keyframes float-particle-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.45;
    }
    40% {
        transform: translate(-20px, -60px) scale(1.06);
        opacity: 0.7;
    }
    70% {
        transform: translate(15px, -30px) scale(0.95);
        opacity: 0.35;
    }
}

@keyframes counter-up {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

@keyframes nav-blur-in {
    from { backdrop-filter: blur(0px); background: transparent; }
    to   { backdrop-filter: blur(24px); background: rgba(10, 10, 15, 0.82); }
}

@keyframes shape-drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33%       { transform: translate(30px, -20px) rotate(5deg); }
    66%       { transform: translate(-20px, 15px) rotate(-3deg); }
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ---------- SELECTION ---------- */
::selection {
    background: var(--accent);
    color: #000;
}

/* ---------- FOCUS ---------- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 3rem;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    padding: 0.875rem 3rem;
    background: rgba(10, 10, 15, 0.84);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    width: 44px;
    height: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='%230a0a0f'/%3E%3Cpath d='M208.33 208.33l-44.93-44.93 14.68-14.68 10.42 10.42 9.55 9.55 52.07 52.07 4.25-4.25z' fill='%23ccff00'/%3E%3Cpath d='M128 256c.254 0 .5-.256.5-.5V18.33c-.078-.008-.247-.113-.5-.12-.254 0-.5.256-.5.5v237.17c0 .254.256.5.5.5z' fill='%23ccff00'/%3E%3Cpath d='M128.33 208.33l-14.68-14.68 4.252-4.252 14.68 14.68-14.68-14.68-31.702-31.702-1.063 1.063z' fill='%23ccff00'/%3E%3Cpath d='M128.33 208.33l14.68-14.68-4.252-4.252-14.68 14.68 14.68-14.68 31.702-31.702 4.252 4.252z' fill='%23ccff00'/%3E%3Cpath d='M128.33 128c.254 0 .5-.256.5-.5v-207.736c0-.254-.256-.5-.5-.5H7.691c-.254 0-.5.256-.5.5v208.335c0 .254.256.5.5.5h120.641z' fill='%23ccff00'/%3E%3Cpath d='M208.33 64.329c-.254 0-.5-.256-.5-.5v-20.641c0-2.238 1.836-4.063 4.063-4.063h20.641c.254 0 .5.256.5.5v24.141c0 .254-.256.5-.5.5H212.39z' fill='%23ccff00' stroke='%23ccff00' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M64.329 64.329c-.254 0-.5-.256-.5-.5V43.684c0-.254-.256-.5-.5-.5H1.988c-.254 0-.5.256-.5.5v20.641c0 .254.256.5.5.5h20.641c.254 0 .5-.256.5-.5v-20.641c0-.254.256-.5.5-.5h40.7z' fill='%23ccff00'/%3E%3Cpath d='M8.33 64.329c.254 0 .5-.256.5-.5V43.684c0-.254.256-.5.5-.5h40.7c.254 0 .5-.256.5-.5V1.988c0-.254-.256-.5-.5-.5H8.33c-.254 0-.5.256-.5.5v52.007c0 .254.256.5.5.5h40.7c.254 0 .5-.256.5-.5v-20.641c0-.254.256-.5.5-.5h20.641c.254 0 .5.256.5.5v52.007c0 .254-.256.5-.5.5h-4.252z' fill='%23ccff00'/%3E%3Cpath d='M59.677 51.33c-.254 0-.5-.256-.5-.5V1.988c0-.254-.256-.5-.5-.5H8.33c-.254 0-.5.256-.5.5v52.007c0 .254.256.5.5.5h20.641c.254 0 .5-.256.5-.5v-20.641c0-.254.256-.5.5-.5h20.641c.254 0 .5.256.5.5v20.641c0 .254-.256.5-.5.5h-4.252z' fill='%23ccff00'/%3E%3Cpath d='M64.329 208.33H8.33c-.254 0-.5.256-.5.5v20.641c0 .254.256.5.5.5h55.842c.254 0 .5-.256.5-.5v-20.641c0-.254-.256-.5-.5-.5h-52.007c-.254 0-.5.256-.5.5v208.335c0 .254.256.5.5.5h208.335c.254 0 .5-.256.5-.5V208.83c0-.254-.246-.5-.5-.5z' fill='%23ccff00' stroke='%23ccff00' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M174.88 55.64c-.254 0-.5.256-.5.5v20.641c0 .254.256.5.5.5h20.641c.254 0 .5-.256.5-.5v-20.641c0-.254.256-.5.5-.5h4.252v52.007c0 .254-.256.5-.5.5h-24.141c-.254 0-.5.256-.5.5v24.141c0 .254.256.5.5.5h52.007c.254 0 .5-.256.5-.5v-77.148c0-.254-.256-.5-.5-.5h-77.148c-.254 0-.5.256-.5.5v24.141c0 .254.256.5.5.5h20.641c.254 0 .5-.256.5-.5v-20.641c0-.254.256-.5.5-.5h4.252v52.007c0 .254-.256.5-.5.5H174.88z' fill='%23ccff00'/%3E%3Cpath d='M174.88 174.88H152.74c-.254 0-.5.256-.5.5v20.641c0 .254.256.5.5.5h20.641c.254 0 .5-.256.5-.5v-20.641c0-.254.256-.5.5-.5h4.252v52.007c0 .254-.256.5-.5.5H130.6c-.254 0-.5.256-.5.5v24.141c0 .254.256.5.5.5h52.007c.254 0 .5-.256.5-.5v-77.148c0-.254-.256-.5-.5-.5h-77.148c-.254 0-.5.256-.5.5v24.141c0 .254.256.5.5.5h20.641c.254 0 .5-.256.5-.5v-20.641c0-.254.256-.5.5-.5h4.252v52.007c0 .254-.256.5-.5.5H174.88z' fill='%23ccff00'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out);
}

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

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border: 1.5px solid var(--accent);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-nav:hover {
    background: var(--accent);
    color: #000;
    box-shadow: var(--shadow-accent);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition);
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
}

.particle-1 {
    width: min(52vw, 580px);
    height: min(52vw, 580px);
    top: 8%;
    right: -8%;
    background: radial-gradient(circle at 40% 40%,
        rgba(128, 0, 255, 0.45) 0%,
        rgba(128, 0, 255, 0.18) 50%,
        transparent 75%);
    animation: float-particle 14s infinite ease-in-out;
}

.particle-2 {
    width: min(36vw, 400px);
    height: min(36vw, 400px);
    top: 35%;
    left: -6%;
    border: 2px solid rgba(204, 255, 0, 0.2);
    background: transparent;
    animation: float-particle-2 11s infinite ease-in-out 1.5s;
}

.particle-3 {
    width: min(28vw, 320px);
    height: min(28vw, 320px);
    bottom: 18%;
    right: 18%;
    background: radial-gradient(circle at 50% 50%,
        rgba(204, 255, 0, 0.1) 0%,
        transparent 70%);
    animation: float-particle-3 17s infinite ease-in-out 3s;
}

.hero-glow {
    position: absolute;
    width: min(55vw, 640px);
    height: min(55vw, 640px);
    top: 28%;
    right: 14%;
    background: radial-gradient(circle at center,
        rgba(204, 255, 0, 0.07) 0%,
        transparent 68%);
    animation: glow-pulse 5s infinite ease-in-out;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6vw;
    padding-top: 7rem;
}

.hero-text {
    max-width: 720px;
}

.hero-overline {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-overline::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7.5vw, 5.75rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
}

.hero-title .accent {
    color: var(--accent);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.2vw, 1.5rem);
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 2.75rem;
    max-width: 580px;
}

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

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---------- ANIMATE FADE UP ---------- */
.animate-fade-up {
    opacity: 0;
    animation: fade-in-up 0.75s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--accent);
    color: #000;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(204, 255, 0, 0.2);
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-ghost:hover {
    color: var(--accent);
}

/* ---------- SECTION BASE ---------- */
.section {
    position: relative;
    padding: var(--space-24) 6vw;
    overflow: hidden;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.section-title .accent {
    color: var(--accent);
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.6;
}

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

/* ---------- MISSION SECTION ---------- */
.mission {
    background: var(--purple);
    overflow: hidden;
}

.mission-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mission-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.shape-1 {
    width: min(65vw, 800px);
    height: min(65vw, 800px);
    top: -25%;
    right: -15%;
    animation: shape-drift 20s infinite ease-in-out;
}

.shape-2 {
    width: min(45vw, 560px);
    height: min(45vw, 560px);
    bottom: -30%;
    left: -12%;
    background: rgba(255, 255, 255, 0.04);
    animation: shape-drift 25s infinite ease-in-out 5s reverse;
}

.shape-3 {
    width: min(30vw, 380px);
    height: min(30vw, 380px);
    top: 20%;
    left: 40%;
    background: rgba(255, 255, 255, 0.03);
    animation: shape-drift 18s infinite ease-in-out 8s;
}

.mission-label {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.mission-title {
    color: #ffffff;
    margin-bottom: 2rem;
}

.mission-body {
    display: grid;
    gap: 1.25rem;
    max-width: 820px;
}

.mission-text {
    font-size: clamp(1.0625rem, 1.5vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
}

.mission-text strong {
    color: #ffffff;
    font-weight: 700;
}

.mission-stats {
    display: flex;
    gap: 3.5rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-inner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

/* ---------- PARTNERS SECTION ---------- */
.partners {
    background: var(--bg-primary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.partner-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 60px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8125rem;
    color: #ffffff;
    letter-spacing: 0.01em;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.google-cloud { background: #4285F4; }
.aws { background: linear-gradient(135deg, #FF9900, #FF6600); }
.azure { background: #00A4EF; }
.nvidia { background: #76B900; }
.ibm { background: #6929D4; }
.sap { background: linear-gradient(135deg, #E12828, #C41E3A); }

/* ---------- SOCIAL / LINKEDIN ---------- */
.social {
    background: var(--bg-secondary);
}

.linkedin-embed {
    margin: 2.5rem 0;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ---------- TEAM SECTION ---------- */
.team {
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    perspective: 1200px;
}

.team-card-inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s var(--ease-out),
                border-color 0.3s;
    transform-style: preserve-3d;
}

.team-card:hover .team-card-inner {
    transform: perspective(1000px) rotateX(2.5deg) rotateY(-2.5deg) translateY(-10px);
    border-color: var(--border-accent);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(204, 255, 0, 0.12),
        0 0 40px rgba(204, 255, 0, 0.08);
}

.team-avatar {
    margin-bottom: 1.5rem;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.02em;
}

.avatar-dave {
    background: linear-gradient(135deg, #ccff00 0%, #00ff88 100%);
}
.avatar-sarah {
    background: linear-gradient(135deg, #8000FF 0%, #00D4FF 100%);
}
.avatar-marcus {
    background: linear-gradient(135deg, #FF6B00 0%, #ccff00 100%);
}

.team-info {
    display: flex;
    flex-direction: column;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}

.team-role {
    font-size: 0.9375rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.125rem;
    line-height: 1.4;
}

.team-bio {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.team-edu {
    font-size: 0.8125rem;
    color: var(--text-dim);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.team-linkedin:hover {
    color: var(--accent);
}

/* ---------- FOOTER ---------- */
.footer {
    position: relative;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-glow {
    position: absolute;
    width: min(60vw, 700px);
    height: min(60vw, 700px);
    bottom: -25%;
    right: -10%;
    background: radial-gradient(circle at center,
        var(--purple-light) 0%,
        transparent 70%);
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-16) 6vw var(--space-10);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: var(--space-10);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    width: 52px;
    height: 52px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='%230a0a0f'/%3E%3Cpath d='M208.33 208.33l-44.93-44.93 14.68-14.68 10.42 10.42 9.55 9.55 52.07 52.07 4.25-4.25z' fill='%23ccff00'/%3E%3Cpath d='M128 256c.254 0 .5-.256.5-.5V18.33c-.078-.008-.247-.113-.5-.12-.254 0-.5.256-.5.5v237.17c0 .254.256.5.5.5z' fill='%23ccff00'/%3E%3Cpath d='M128.33 208.33l-14.68-14.68 4.252-4.252 14.68 14.68-14.68-14.68-31.702-31.702-1.063 1.063z' fill='%23ccff00'/%3E%3Cpath d='M128.33 208.33l14.68-14.68-4.252-4.252-14.68 14.68 14.68-14.68 31.702-31.702 4.252 4.252z' fill='%23ccff00'/%3E%3Cpath d='M128.33 128c.254 0 .5-.256.5-.5v-207.736c0-.254-.256-.5-.5-.5H7.691c-.254 0-.5.256-.5.5v208.335c0 .254.256.5.5.5h120.641z' fill='%23ccff00'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-dim);
    max-width: 200px;
}

.footer-links-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

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

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.footer-social a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

/* ---------- ACCENT UTILITY ---------- */
.accent { color: var(--accent); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.25rem; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .mission-stats { gap: 2.5rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-main { flex-direction: column; }
}

@media (max-width: 768px) {
    .section { padding: var(--space-16) 5vw; }
    .hero-content { padding-top: 6rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.0625rem; }
    .mission-stats { flex-direction: column; gap: 2rem; }
    .team-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-links-group { flex-direction: column; gap: 1.5rem; }
    .footer-links { flex-direction: column; gap: 0.75rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.1rem; }
    .partners-grid { grid-template-columns: 1fr; }
    .team-card-inner { padding: 1.75rem; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
