
:root {
    --pink: #ff1493;
    --pink-light: #ff69b4;
    --navy: #000080;
    --dark-navy: #000022;
    --text: #1d1d1f;
    --white: #ffffff;
    --light-grey: #f5f5f7;
    --mono: 'JetBrains Mono', monospace;
    --glass: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-white: rgba(255, 255, 255, 0.7);
    --glass-white-border: rgba(255, 255, 255, 0.5);
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--dark-navy);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* SCROLL PROGRESS */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--pink-light), var(--pink));
    z-index: 10001;
    transition: width 0.35s cubic-bezier(0.2, 0, 0.2, 1);
    box-shadow: 0 0 12px var(--pink), 0 0 30px rgba(255, 20, 147, 0.4);
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-navy); }
::-webkit-scrollbar-thumb {
    background: rgba(255, 20, 147, 0.25);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 20, 147, 0.45); }

/* ─── PRELOADER ─── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.preloader-logo {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    letter-spacing: -4px;
    color: var(--white);
    opacity: 0;
    transform: scale(0.8);
}
.preloader-line {
    width: 120px;
    height: 2px;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: center;
    box-shadow: 0 0 20px var(--pink);
}
.preloader-tagline {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateY(10px);
}

/* ─── MARQUEE ─── */
.marquee-strip {
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 20, 147, 0.03);
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 25s linear infinite;
    will-change: transform;
}
.marquee-track-reverse {
    animation: marquee-scroll-reverse 25s linear infinite;
}
.marquee-track span {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    padding: 0 24px;
    flex-shrink: 0;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ─── CUSTOM CURSOR ─── */
body { cursor: none; }
a, button, .magnetic, .nav-cta, .hamburger { cursor: none; }

.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--pink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 12px var(--pink), 0 0 24px rgba(255, 20, 147, 0.4);
    mix-blend-mode: screen;
}
.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(255, 20, 147, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.3s ease;
}
.cursor-dot.hovering {
    width: 16px; height: 16px;
    background: var(--white);
    box-shadow: 0 0 20px var(--pink), 0 0 40px rgba(255, 20, 147, 0.6);
}
.cursor-ring.hovering {
    width: 50px; height: 50px;
    border-color: rgba(255, 255, 255, 0.3);
}
.cursor-particle {
    position: fixed;
    pointer-events: none;
    z-index: 99996;
    border-radius: 50%;
    mix-blend-mode: screen;
}
@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring, .cursor-particle { display: none !important; }
}

/* ─── CARD ANIMATIONS ─── */
.card-hidden {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
}
.card-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    transition: opacity 0.8s cubic-bezier(0.2, 0, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0, 0.2, 1) !important;
}

/* ─── SPLIT TEXT ─── */
.word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: 4px;
}
.word-inner {
    display: inline-block;
    will-change: transform;
}

/* KEYFRAMES */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 20, 147, 0.2), 0 0 60px rgba(255, 20, 147, 0.1); }
    50% { box-shadow: 0 0 30px rgba(255, 20, 147, 0.4), 0 0 80px rgba(255, 20, 147, 0.2); }
}
@keyframes hero-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ─────────── NAV ─────────── */
nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    height: 64px;
    background: rgba(0, 0, 34, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s ease;
}
nav.scrolled {
    top: 8px;
    background: rgba(0, 0, 34, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.nav-container {
    width: 100%;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo-ultra {
    height: 50px;
    width: auto;
    mix-blend-mode: lighten;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}
.nav-cta {
    background: linear-gradient(135deg, var(--pink), #e0117f) !important;
    color: white !important;
    padding: 9px 22px !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease !important;
}
.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.5) !important;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─────────── HERO ─────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000022 0%, #0a0030 25%, #000022 50%, #100028 75%, #000022 100%);
    background-size: 400% 400%;
    animation: hero-gradient 15s ease infinite;
}
/* Orbs */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}
.hero::before {
    width: 500px;
    height: 500px;
    background: rgba(255, 20, 147, 0.15);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}
.hero::after {
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 128, 0.25);
    bottom: -80px;
    left: -80px;
    animation: float 10s ease-in-out infinite reverse;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-tag {
    font-family: var(--mono);
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 12px;
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 100px;
    margin-bottom: 28px;
    background: rgba(255, 20, 147, 0.06);
    animation: fade-up 0.8s ease-out 0.2s both;
}
.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fade-up 0.8s ease-out 0.4s both;
}
.subtitle {
    font-family: var(--mono);
    font-size: 12px;
    opacity: 0.4;
    letter-spacing: 4px;
    animation: fade-up 0.8s ease-out 0.6s both;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite, fade-up 0.8s ease-out 1s both;
    z-index: 1;
}
.hero-scroll-hint span {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.3;
}
.scroll-arrow {
    width: 16px;
    height: 16px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
}

/* ─────────── SECTIONS ─────────── */
.section { width: 100%; position: relative; overflow: hidden; }
.dark-section {
    background: var(--dark-navy);
    position: relative;
}
.dark-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(255, 20, 147, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 100%, rgba(0, 0, 128, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.alt-section {
    background: linear-gradient(180deg, #050520 0%, #0a0a30 100%);
    position: relative;
}
.alt-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(0, 0, 128, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.sapphire-section {
    background: linear-gradient(135deg, #0a0020 0%, #1a0035 50%, #0a0020 100%);
    position: relative;
}
.sapphire-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 30%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.minimal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
    position: relative;
    z-index: 1;
}
.section-tag {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 40px;
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 100px;
    background: rgba(255, 20, 147, 0.04);
}
.large-text {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

/* ─────────── GLASS CARD ─────────── */
.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}
.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 20, 147, 0.3);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 50px rgba(255, 20, 147, 0.12);
}

/* ─────────── GENESIS ─────────── */
.mega-minimal-text {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 60px;
}
.evolution-flow { max-width: 900px; }
.evo-step {
    margin-bottom: 32px;
    padding: 28px 32px;
    border-left: 2px solid rgba(255, 20, 147, 0.4);
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 16px 16px 0;
    transition: all 0.3s ease;
}
.evo-step::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 32px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 12px rgba(255, 20, 147, 0.5);
}
.evo-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-left-color: var(--pink);
    transform: translateX(6px);
}
.evo-step p { font-size: 1.05rem; color: rgba(255, 255, 255, 0.75); line-height: 1.7; }

/* ─────────── PHILOSOPHY ─────────── */
.philosophy-jobs-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}
.jobs-mega-text {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 40px;
}
.detail-block {
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.detail-block:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 20, 147, 0.15);
    transform: translateY(-3px);
}
.detail-block h3 {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
    color: var(--pink);
}
.detail-block p { color: rgba(255, 255, 255, 0.7); line-height: 1.7; }

/* ─────────── TEAM ─────────── */
.sub-nav {
    margin-bottom: 50px;
    font-family: var(--mono);
    font-size: 12px;
    opacity: 0.35;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    perspective: 1000px;
}
.team-card {
    padding: 44px 36px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}
.team-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-1deg) scale(1.02);
}
.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.team-card:hover::after { opacity: 1; }
.card-num {
    font-family: var(--mono);
    color: rgba(255, 255, 255, 0.2);
    font-size: 11px;
    margin-bottom: 20px;
    display: block;
}
.member-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.role {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 18px;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    background: rgba(0, 0, 128, 0.2);
    border: 1px solid rgba(0, 0, 128, 0.3);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.7);
}
.team-card > p { color: rgba(255, 255, 255, 0.7); line-height: 1.7; font-size: 0.95rem; }

/* ─────────── SAPPHIRE / PRODUCT ─────────── */
.sapphire-title {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}
.pink-info-box {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.15), rgba(255, 20, 147, 0.05));
    border: 1px solid rgba(255, 20, 147, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 36px;
    border-radius: 24px;
    animation: glow-pulse 4s ease-in-out infinite;
}
.pink-info-box h3 {
    font-family: var(--mono);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--pink);
}
.pink-info-box ul { list-style: none; }
.pink-info-box li {
    font-size: 0.9rem;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}
.pink-info-box li:hover { padding-left: 8px; color: var(--white); }
.pink-info-box li:last-child { border-bottom: none; }
.white-text { color: rgba(255, 255, 255, 0.85); }
.white-para { color: rgba(255, 255, 255, 0.5); line-height: 1.8; font-size: 1rem; }
.headline-rhythm { margin-bottom: 24px; }

/* ─────────── MANUFACTURING ─────────── */
.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    perspective: 800px;
}
.m-card {
    padding: 40px 28px 32px;
    transition: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
    transform-style: preserve-3d;
}
.m-card:hover {
    transform: translateY(-8px) rotateY(-2deg) scale(1.02);
}
.m-num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--white);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--pink), #e0117f);
    padding: 5px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(255, 20, 147, 0.3);
}
.m-card h4 {
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
.m-card p { color: rgba(255, 255, 255, 0.5); line-height: 1.7; }

/* ─────────── ENGINEERING TABLE ─────────── */
.center-text { text-align: center; }
.table-container {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}
.engineering-table { width: 100%; border-collapse: collapse; text-align: left; }
.engineering-table th {
    padding: 18px 28px;
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--pink);
    background: rgba(255, 20, 147, 0.04);
}
.engineering-table td {
    padding: 18px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}
.engineering-table tbody tr { transition: background 0.3s ease; }
.engineering-table tbody tr:hover { background: rgba(255, 20, 147, 0.04); }
.engineering-table tbody tr:last-child td { border-bottom: none; }
.status-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(0, 200, 83, 0.1);
    color: #00e676;
    border: 1px solid rgba(0, 200, 83, 0.2);
}

/* ─────────── SPONSORS ─────────── */
.sponsorship-showcase { display: flex; flex-direction: column; gap: 16px; }
.jobs-sponsor-hero {
    padding: 44px 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
    transform-style: preserve-3d;
}
.jobs-sponsor-hero:hover {
    transform: translateY(-4px) rotateX(1deg) scale(1.01);
}
.sponsor-bg-title {
    position: absolute;
    font-size: 10rem;
    font-weight: 800;
    color: var(--white);
    opacity: 0.02;
    top: 50%;
    left: 5%;
    transform: translateY(-50%) rotate(-5deg);
    z-index: 0;
    white-space: nowrap;
    transition: opacity 0.4s ease;
}
.jobs-sponsor-hero:hover .sponsor-bg-title { opacity: 0.05; }
.sponsor-info { flex: 0 1 60%; position: relative; z-index: 2; }
.sponsor-info h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.sponsor-description { color: rgba(255, 255, 255, 0.65); font-size: 0.9rem; line-height: 1.6; }
.sponsor-amount {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
    position: relative;
    text-shadow: none;
}

/* ─────────── FOOTER ─────────── */
footer {
    text-align: center;
    padding: 120px 20px;
    background: var(--dark-navy);
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 20, 147, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.footer-email {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
.footer-email:hover {
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-bottom {
    margin-top: 40px;
    font-family: var(--mono);
    font-size: 11px;
    opacity: 0.25;
    letter-spacing: 1px;
}

/* ─────────── UTILS ─────────── */
.pink { color: var(--pink) !important; -webkit-text-fill-color: var(--pink) !important; }

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 992px) {
    .philosophy-jobs-layout { grid-template-columns: 1fr; gap: 40px; }
    .manufacturing-grid { grid-template-columns: 1fr; }
    .jobs-sponsor-hero { flex-direction: column; text-align: center; padding: 44px 28px; }
    .sponsor-amount { margin-top: 20px; }
    .minimal-container { padding: 80px 24px; }
    nav { width: 95%; top: 10px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(0, 0, 34, 0.95);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 14px; width: 100%; padding: 14px 16px; }
    .nav-cta { margin-top: 16px; text-align: center !important; width: 100% !important; display: block !important; }
    .team-grid { grid-template-columns: 1fr; }
    .sub-nav { justify-content: center; }
    .hero-scroll-hint { display: none; }
    nav { width: 94%; border-radius: 16px; }
}

@media (max-width: 480px) {
    .minimal-container { padding: 64px 16px; }
    .team-card, .m-card { padding: 32px 20px; }
    .pink-info-box { padding: 24px; }
    .jobs-sponsor-hero { padding: 32px 20px; }
}
