/* ==========================================================================
   CSS Variables & Design Tokens
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg: #FFFFFF;
    --color-text-main: #0B132B; /* Deep Navy Blue */
    --color-text-muted: #5C677D;
    
    --color-orange: #FF6B35; /* Vibrant Orange */
    --color-teal: #00CED1;   /* Teal */
    --color-navy: #0B132B;   /* Deep Navy Blue */

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(11, 19, 43, 0.08);
    --glass-blur: blur(12px);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle mesh gradient background for Antigravity vibe */
    background-image: radial-gradient(at 0% 0%, rgba(0, 206, 209, 0.05) 0px, transparent 50%),
                      radial-gradient(at 100% 0%, rgba(255, 107, 53, 0.05) 0px, transparent 50%),
                      radial-gradient(at 100% 100%, rgba(11, 19, 43, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4, .subtitle, .brand-text {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--color-orange), var(--color-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-teal);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-orange), #ff8c61);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary.small {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.btn-primary.large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
    background: white;
    color: var(--color-navy);
}

.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}
.btn-light:hover {
    background: var(--color-teal);
    color: white;
    transform: translateY(-3px);
}

/* ==========================================================================
   Navigation (Glassmorphism)
   ========================================================================== */
.glass-nav {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: var(--glass-shadow);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: 1px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--color-text-main);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-teal);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-teal);
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px; /* Offset for nav */
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    animation: floatOrb 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.orb-1 { width: 400px; height: 400px; background: var(--color-teal); top: -100px; right: -100px; }
.orb-2 { width: 300px; height: 300px; background: var(--color-orange); bottom: -50px; left: -50px; animation-delay: -3s; }
.orb-3 { width: 250px; height: 250px; background: var(--color-navy); top: 40%; left: 30%; animation-delay: -6s; opacity: 0.2; }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
    align-items: center;
    z-index: 1;
}

.hero-text-area {
    padding-right: 2rem;
}

.headline {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-navy);
}

.description {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3.5rem;
    padding-top: 2.5rem; border-top: 1px solid var(--glass-border);
}
.stat-val {
    font-family: var(--font-heading); font-size: 2rem; font-weight: 600;
    color: var(--color-navy);
}
.stat-val sup { font-size: 1rem; vertical-align: super; }
.stat-lbl { font-size: 0.9rem; color: var(--color-text-muted); margin-top: 0.2rem; }

/* ==========================================================================
   Hero Composition (Antigravity 3D Area)
   ========================================================================== */
.hero-visual-area {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.composition-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Main Video Glass Card */
.main-video-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 20px 50px rgba(11, 19, 43, 0.15),
                inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.glass-header {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* Floating Elements around video */
.floating-element {
    position: absolute;
    z-index: 3;
}

.glass-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    color: var(--color-navy);
}

.orange-glow { color: var(--color-orange) !important; box-shadow: 0 10px 25px rgba(255, 107, 53, 0.25) !important; }
.teal-glow { color: var(--color-teal) !important; box-shadow: 0 10px 25px rgba(0, 206, 209, 0.25) !important; }
.navy-glow { color: var(--color-navy) !important; box-shadow: 0 10px 25px rgba(11, 19, 43, 0.25) !important; }
.purple-glow { color: #9333ea !important; box-shadow: 0 10px 25px rgba(147, 51, 234, 0.25) !important; }
.pink-glow { color: #db2777 !important; box-shadow: 0 10px 25px rgba(219, 39, 119, 0.25) !important; }
.yellow-glow { color: #f59e0b !important; box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25) !important; }

.el-1 { top: 15%; left: 10%; } /* Bicycle */
.el-2 { bottom: 15%; right: 5%; } /* Bus */
.el-3 { top: 20%; right: -5%; } /* Buildings */

/* Antigravity Animations */
.floating-element.floating-slow { animation: floatEl 6s ease-in-out infinite; }
.floating-element.floating-medium { animation: floatEl 5s ease-in-out infinite reverse; }
.floating-element.floating-fast { animation: floatEl 4s ease-in-out infinite; }
@keyframes floatEl {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   Ticker Section
   ========================================================================== */
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-wrap {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden; padding: 1rem 0;
    position: relative; z-index: 10;
}
.ticker { display: inline-block; animation: tick 25s linear infinite; white-space: nowrap; }
.ticker-item {
    display: inline-flex; align-items: center; gap: 0.8rem;
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--color-navy); margin-right: 3rem;
}
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-orange); }

/* ==========================================================================
   About Section
   ========================================================================== */
.about { padding: 4rem 0; position: relative; z-index: 10; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text p { margin-bottom: 1.5rem; font-size: 1.15rem; color: var(--color-text-muted); }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.tag {
    font-size: 0.85rem; font-weight: 500;
    padding: 0.5rem 1.2rem; border-radius: 50px;
    border: 1px solid var(--glass-border); color: var(--color-navy);
    background: rgba(255, 255, 255, 0.5); transition: var(--transition-smooth); cursor: default;
}
.tag:hover { background: var(--color-navy); color: white; border-color: var(--color-navy); }

.phase-card {
    background: rgba(255, 255, 255, 0.4); backdrop-filter: var(--glass-blur);
    border-radius: 20px; border: 1px solid var(--glass-border); padding: 1.5rem 2rem;
    margin-bottom: 1.5rem; transition: var(--transition-smooth);
}
.phase-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.7); box-shadow: var(--glass-shadow); }
.phase-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; }
.phase-num { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; color: white; font-size: 1.1rem; }
.phase-num.s1 { background: var(--color-orange); }
.phase-num.s2 { background: var(--color-teal); }
.phase-num.s3 { background: var(--color-navy); }
.phase-card h4 { font-size: 1.1rem; color: var(--color-navy); margin-bottom: 0.5rem; }
.phase-card p { font-size: 0.95rem; color: var(--color-text-muted); }
.phase-months { display: block; margin-top: 0.5rem; font-size: 0.8rem; font-weight: 600; color: var(--color-teal); text-transform: uppercase;}

/* ==========================================================================
   Hero Visual Enhancement
   ========================================================================== */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.glass-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    color: var(--color-navy);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Features/Objectives Section
   ========================================================================== */
.features { padding: 4rem 0; position: relative; z-index: 10; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 3rem; color: var(--color-navy); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.glass-feature-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex; flex-direction: column;
    box-shadow: var(--glass-shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
}
.glass-feature-card:hover {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 25px 50px rgba(11, 19, 43, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.obj-so { font-weight: 800; color: var(--color-text-muted); margin-bottom: 1rem; }
.card-icon-wrapper {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.card-icon-wrapper.orange { color: var(--color-orange); }
.card-icon-wrapper.teal { color: var(--color-teal); }
.card-icon-wrapper.navy { color: var(--color-navy); }
.card-icon-wrapper.purple { color: #9B5DE5; }

.glass-feature-card h3 { font-size: 1.25rem; color: var(--color-navy); margin-bottom: 1rem; font-weight: 600; line-height: 1.4; }
.glass-feature-card p { color: var(--color-text-muted); font-size: 0.95rem; }

/* ==========================================================================
   Cities Area
   ========================================================================== */
.cities { padding: 4rem 0; position: relative; z-index: 10; }
.cities-map-area { position: relative; }
.map-placeholder {
    border-radius: 24px; overflow: hidden; border: 1px solid var(--glass-border);
    height: 500px; position: relative; box-shadow: var(--glass-shadow); background: white;
}
#hangout-map { width: 100%; height: 100%; z-index: 1; }

.cities-list { display: flex; flex-direction: column; gap: 1.5rem; }
.city-row-card {
    background: rgba(255, 255, 255, 0.5); border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur); border-radius: 20px; padding: 1.5rem;
    display: flex; align-items: center; gap: 1.5rem; transition: var(--transition-smooth);
}
.city-row-card:hover { transform: translateX(10px); background: rgba(255, 255, 255, 0.8); box-shadow: var(--glass-shadow); }

.city-flag-big { font-size: 2.5rem; line-height: 1; }
.city-info h4 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.city-info span { font-size: 0.95rem; color: var(--color-text-muted); }
.city-badge-sm {
    margin-left: auto;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 50px;
}
.city-badge-sm.pilot { background: rgba(0, 206, 209, 0.2); color: var(--color-teal); }
.city-badge-sm.observer { background: rgba(11, 19, 43, 0.1); color: var(--color-navy); }

/* ==========================================================================
   Work Packages Area
   ========================================================================== */
.workpackages { padding: 4rem 0; position: relative; z-index: 10; }
.wp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.wp-card {
    background: rgba(255, 255, 255, 0.5); backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border); border-radius: 20px; padding: 2rem;
    display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: start;
    transition: var(--transition-smooth); box-shadow: var(--glass-shadow);
}
.wp-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.8); }
.wp-num { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; color: white; font-size: 1.2rem; }
.wp-body h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.wp-body p { font-size: 0.95rem; color: var(--color-text-muted); }
.wp-meta { font-size: 0.85rem; font-weight: 600; color: var(--color-teal); text-align: right; }
.wp-card.full { grid-column: 1 / -1; }

/* ==========================================================================
   Consortium Area
   ========================================================================== */
.consortium { padding: 4rem 0; position: relative; z-index: 10; }
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.partner-card {
    background: rgba(255, 255, 255, 0.4); backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border); border-radius: 20px; padding: 2.5rem 1.5rem;
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem;
    transition: var(--transition-smooth); box-shadow: var(--glass-shadow);
}
.partner-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.8); }
.partner-logo-wrap { height: 75px; display: flex; align-items: center; justify-content: center; }
.partner-logo-wrap img { max-height: 60px; max-width: 100%; object-fit: contain; mix-blend-mode: multiply; }
.partner-initials-fallback { width: 60px; height: 60px; border-radius: 12px; display: none; align-items: center; justify-content: center; color: white; font-weight: 800; }
.partner-card h4 { font-size: 1rem; }
.partner-country { font-size: 0.9rem; color: var(--color-text-muted); }
.partner-role-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 50px; margin-top: auto; }
.role-coord { background: rgba(255, 107, 53, 0.15); color: var(--color-orange); }
.role-partner { background: rgba(11, 19, 43, 0.1); color: var(--color-navy); }
.role-city { background: rgba(0, 206, 209, 0.15); color: var(--color-teal); }
.role-coop { background: rgba(11, 19, 43, 0.05); color: var(--color-text-muted); }

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: var(--glass-blur);
    padding: 6rem 0; text-align: center; color: var(--color-navy);
    border-radius: 40px; margin: 4rem 5%; position: relative; overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
}
.cta-section::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(0, 206, 209, 0.2) 0%, transparent 60%);
    animation: rotateGradient 20s linear infinite; z-index: 0; pointer-events: none;
}
@keyframes rotateGradient {
    100% { transform: rotate(360deg); }
}
.cta-content { position: relative; z-index: 10; }
.cta-section .section-header h2 { color: var(--color-navy); margin-bottom: 1rem; }
.cta-section p { font-size: 1.15rem; color: var(--color-text-muted); max-width: 600px; margin: 0 auto; }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; margin-top: 2.5rem; }

/* CTA Floating Elements */
.cta-floating-elements {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glass-icon-mini {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    color: var(--color-navy);
}

.cta-el-1 { top: 15%; left: 8%; }
.cta-el-2 { bottom: 20%; left: 12%; }
.cta-el-3 { top: 25%; right: 10%; }
.cta-el-4 { bottom: 15%; right: 15%; }

@media (max-width: 1024px) {
    .cta-el-1, .cta-el-4 { display: none; }
}
@media (max-width: 768px) {
    .cta-floating-elements { display: none; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.glass-footer {
    padding: 4rem 0 2rem; margin-top: 4rem;
    background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.5); color: var(--color-text-muted);
}
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; margin-bottom: 3rem; }
.footer-note { font-size: 0.9rem; margin-top: 1rem; line-height: 1.6; }
.footer-links { display: flex; gap: 2rem; justify-content: center; font-weight: 500; }
.footer-links a:hover { color: var(--color-orange); }
.dut-box { background: rgba(255,255,255,0.8); border-radius: 16px; padding: 1.5rem; text-align: right; box-shadow: var(--glass-shadow); }
.dut-box small { display: block; font-size: 0.8rem; font-weight: 700; color: var(--color-teal); text-transform: uppercase; margin-bottom: 0.5rem; }
.dut-box span { font-size: 0.9rem; }
.copyright { text-align: center; border-top: 1px solid var(--glass-border); padding-top: 2rem; font-size: 0.9rem; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .headline { font-size: 3.5rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .about-text { padding-right: 0; }
    .cards-grid, .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .dut-box { text-align: center; }
    .wp-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 4rem; }
    .hero-text-area { padding-right: 0; }
    .hero-stats { justify-content: center; flex-wrap: wrap; }
    
    .nav-links { display: none; }
    .cards-grid, .partners-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
}
