/* PX Quantum - Scientific Precision Aesthetic */

/* ═══════════════════════════════════════════════════════════════════
   BASE & VARIABLES
   ═══════════════════════════════════════════════════════════════════ */

:root {
    /* Colors - Scientific Cyan/Blue (NOT purple) */
    --primary: #00C9FF;
    --primary-dark: #0099CC;
    --accent: #00FFFF;
    --orange: #FF6B35;
    --warm: #FFB347;

    /* Lighter Theme */
    --bg-dark: #1A1A2E;
    --bg-darker: #16213E;
    --bg-light: #0F3460;
    --bg-lighter: #533483;

    /* Text */
    --text: #FFFFFF;
    --text-dim: #B8B8D1;
    --text-dimmer: #8B8BA7;

    /* Grid */
    --grid-color: rgba(0, 201, 255, 0.15);
    --grid-size: 40px;

    /* Spacing */
    --spacing-unit: 8px;
    --section-padding: calc(var(--spacing-unit) * 12);
    --container-width: 1200px;

    /* Typography */
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --font-sans: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════ */

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

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

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    position: relative;
}

/* ═══════════════════════════════════════════════════════════════════
   QUANTUM GRID BACKGROUND
   ═══════════════════════════════════════════════════════════════════ */

.quantum-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    opacity: 1;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 201, 255, 0.15);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 4);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition-base);
}

.logo-bracket {
    color: var(--primary);
}

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

.nav-links {
    display: flex;
    gap: calc(var(--spacing-unit) * 5);
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    text-decoration: none;
    position: relative;
    transition: var(--transition-base);
    font-weight: 400;
}

.nav-link::before {
    content: attr(data-index);
    margin-right: calc(var(--spacing-unit) * 1.5);
    color: var(--text-dimmer);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition-base);
}

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

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

/* ═══════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════ */

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: calc(var(--spacing-unit) * 3);
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: calc(var(--spacing-unit) * 4);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.section-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: calc(var(--spacing-unit) * 3);
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════ */

.main {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 4);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════ */

.hero {
    padding: calc(var(--spacing-unit) * 20) 0 calc(var(--spacing-unit) * 15);
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at top, rgba(0, 201, 255, 0.1) 0%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

/* Phoenix Hero Image */
.hero-phoenix {
    width: 100%;
    max-width: 500px;
    margin: 0 auto calc(var(--spacing-unit) * 6);
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.1s forwards;
}

.phoenix-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 40px rgba(0, 201, 255, 0.4));
    transition: var(--transition-slow);
}

.phoenix-image:hover {
    filter: drop-shadow(0 15px 60px rgba(0, 201, 255, 0.6));
    transform: scale(1.02);
}

.hero-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: calc(var(--spacing-unit) * 4);
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: calc(var(--spacing-unit) * 4);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) {  animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 2;
    color: var(--text-dim);
    margin-bottom: calc(var(--spacing-unit) * 6);
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    justify-content: center;
    margin-bottom: calc(var(--spacing-unit) * 12);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-metrics {
    display: flex;
    gap: calc(var(--spacing-unit) * 8);
    justify-content: center;
    padding-top: calc(var(--spacing-unit) * 8);
    border-top: 1px solid rgba(0, 201, 255, 0.1);
}

.metric {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.metric:nth-child(1) { animation-delay: 0.8s; }
.metric:nth-child(2) { animation-delay: 0.9s; }
.metric:nth-child(3) { animation-delay: 1s; }

.metric-value {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.metric-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-dimmer);
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition-base);
    font-weight: 500;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text-dim);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: var(--transition-base);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════
   MISSION SECTION
   ═══════════════════════════════════════════════════════════════════ */

.mission {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(15, 52, 96, 0.6) 100%);
    border-top: 1px solid rgba(0, 201, 255, 0.3);
    border-bottom: 1px solid rgba(0, 201, 255, 0.3);
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
    align-items: start;
}

.mission-visual {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.visual-box {
    padding: calc(var(--spacing-unit) * 3);
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.8) 0%, rgba(83, 52, 131, 0.6) 100%);
    border: 1px solid rgba(0, 201, 255, 0.4);
    border-left: 3px solid var(--primary);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.visual-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.visual-box:hover {
    background: linear-gradient(135deg, rgba(15, 52, 96, 1) 0%, rgba(83, 52, 131, 0.8) 100%);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0, 201, 255, 0.2);
}

.visual-box:hover::before {
    transform: translateX(100%);
}

.visual-text {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   AREAS SECTION
   ═══════════════════════════════════════════════════════════════════ */

.areas {
    padding: var(--section-padding) 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-unit) * 3);
}

.area-card {
    padding: calc(var(--spacing-unit) * 4);
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.6) 0%, rgba(26, 26, 46, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 201, 255, 0.3);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 201, 255, 0.15), transparent);
    transition: var(--transition-slow);
}

.area-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: var(--transition-slow);
}

.area-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 201, 255, 0.3);
}

.area-card:hover::before {
    width: 100%;
}

.area-card:hover::after {
    opacity: 1;
}

.area-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.area-number {
    font-family: var(--font-mono);
    font-size: 24px;
    color: var(--primary);
    font-weight: 500;
}

.area-status {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--text-dimmer);
    padding: 4px 8px;
    border: 1px solid var(--text-dimmer);
}

.area-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: calc(var(--spacing-unit) * 2);
    letter-spacing: -0.5px;
}

.area-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.area-link {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: 500;
}

.area-link:hover {
    color: var(--accent);
    transform: translateX(4px);
    display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════ */

.cta {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 201, 255, 0.1);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: calc(var(--spacing-unit) * 3);
    letter-spacing: -1px;
}

.cta-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE HERO (Research & Contact Pages)
   ═══════════════════════════════════════════════════════════════════ */

.page-hero {
    padding: calc(var(--spacing-unit) * 15) 0 calc(var(--spacing-unit) * 10);
    text-align: center;
    border-bottom: 1px solid rgba(0, 201, 255, 0.1);
}

.page-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: calc(var(--spacing-unit) * 3);
    font-weight: 500;
}

.page-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: calc(var(--spacing-unit) * 3);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   RESEARCH SECTIONS
   ═══════════════════════════════════════════════════════════════════ */

.research-sections {
    padding: var(--section-padding) 0;
}

.research-item {
    margin-bottom: calc(var(--spacing-unit) * 12);
    padding-bottom: calc(var(--spacing-unit) * 8);
    border-bottom: 1px solid rgba(0, 201, 255, 0.1);
}

.research-item:last-child {
    border-bottom: none;
}

.research-header {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.research-number {
    font-family: var(--font-mono);
    font-size: 48px;
    color: var(--primary);
    font-weight: 300;
    opacity: 0.3;
}

.research-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: calc(var(--spacing-unit) * 3);
    letter-spacing: -0.5px;
}

.research-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: calc(var(--spacing-unit) * 4);
    max-width: 900px;
}

.research-points {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
    max-width: 800px;
}

.point {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    align-items: start;
}

.point-marker {
    font-family: var(--font-mono);
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.point-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════════════
   APPLICATIONS
   ═══════════════════════════════════════════════════════════════════ */

.applications {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 201, 255, 0.1);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--spacing-unit) * 3);
}

.app-card {
    padding: calc(var(--spacing-unit) * 3);
    background: var(--bg-light);
    border: 1px solid rgba(0, 201, 255, 0.1);
    transition: var(--transition-base);
}

.app-card:hover {
    border-color: var(--primary);
    background: var(--bg-lighter);
}

.app-title {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    font-weight: 500;
}

.app-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-dim);
}

.collaboration-cta {
    padding: var(--section-padding) 0;
}

.cta-box {
    text-align: center;
    padding: calc(var(--spacing-unit) * 6);
    background: var(--bg-light);
    border: 1px solid rgba(0, 201, 255, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════ */

.contact-content {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
}

.info-section {
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.info-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: calc(var(--spacing-unit) * 3);
    letter-spacing: -0.5px;
}

.info-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--primary);
}

.info-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.interest-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.5);
}

.interest-item {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    align-items: start;
}

.interest-marker {
    font-family: var(--font-mono);
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.interest-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dim);
}

.contact-box {
    padding: calc(var(--spacing-unit) * 4);
    background: var(--bg-light);
    border: 1px solid rgba(0, 201, 255, 0.2);
    border-left: 3px solid var(--primary);
}

.contact-box-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.contact-box-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.contact-email {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--primary);
    text-decoration: none;
    padding: calc(var(--spacing-unit) * 2);
    background: var(--bg-darker);
    border: 1px solid rgba(0, 201, 255, 0.3);
    margin-bottom: calc(var(--spacing-unit) * 3);
    transition: var(--transition-base);
    font-weight: 400;
}

.contact-email:hover {
    background: var(--bg-light);
    color: var(--accent);
    border-color: var(--accent);
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1);
    padding-top: calc(var(--spacing-unit) * 2);
    border-top: 1px solid rgba(0, 201, 255, 0.1);
}

.meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.meta-label {
    font-family: var(--font-mono);
    color: var(--text-dimmer);
}

.meta-value {
    font-family: var(--font-mono);
    color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════════════
   OPPORTUNITIES
   ═══════════════════════════════════════════════════════════════════ */

.opportunities {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 201, 255, 0.1);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-unit) * 3);
}

.opportunity-card {
    padding: calc(var(--spacing-unit) * 4);
    background: var(--bg-light);
    border: 1px solid rgba(0, 201, 255, 0.1);
    transition: var(--transition-base);
}

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

.opportunity-number {
    font-family: var(--font-mono);
    font-size: 36px;
    color: var(--primary);
    font-weight: 300;
    opacity: 0.3;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.opportunity-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: calc(var(--spacing-unit) * 2);
    letter-spacing: -0.5px;
}

.opportunity-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dim);
}

.final-cta {
    padding: var(--section-padding) 0;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */

.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 201, 255, 0.1);
    padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 4);
    margin-top: var(--section-padding);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 4);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: calc(var(--spacing-unit) * 4);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.footer-logo {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-dimmer);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.5);
}

.footer-link {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition-base);
}

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

.footer-email {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
}

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

.footer-bottom {
    padding-top: calc(var(--spacing-unit) * 3);
    border-top: 1px solid rgba(0, 201, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright,
.footer-location {
    font-size: 11px;
    color: var(--text-dimmer);
    font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */

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


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: calc(var(--spacing-unit) * 8);
    }

    .nav-container {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 2);
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-metrics {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 4);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 1);
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }
}
