:root {
    --bg-dark: #050810;
    --bg-light: #0d1120;
    --primary: #00cfb4;
    --secondary: #6366f1;
    --accent: #f59e0b;
    --pink: #f472b6;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    opacity: 0.55;
}

/* ============ NAVIGATION ============ */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5, 8, 16, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
}

.logo-hi {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1.02rem;
}

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

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-muted);
    transition: 0.3s;
}

/* ============ BUTTONS ============ */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: rgba(0, 207, 180, 0.1);
    color: var(--primary) !important;
    border: 1px solid rgba(0, 207, 180, 0.3);
}

.btn-primary:hover {
    background: rgba(0, 207, 180, 0.2);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.35);
}

.btn-gradient:hover {
    box-shadow: 0 18px 40px rgba(0, 207, 180, 0.4);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-main) !important;
    background: transparent;
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 130px 10% 80px;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    filter: blur(130px);
    z-index: -1;
    opacity: 0.3;
}

.hero::before {
    top: -5%;
    left: 5%;
    background: var(--primary);
}

.hero::after {
    bottom: -10%;
    right: 5%;
    background: var(--secondary);
}

.hero-content {
    flex: 1.2;
    max-width: 660px;
    z-index: 2;
}

.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid rgba(0, 207, 180, 0.3);
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    background: rgba(0, 207, 180, 0.07);
}

h1 {
    font-size: 4.8rem;
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -2.5px;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, #00cfb4, #6366f1, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 92%;
    margin-bottom: 18px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-top: 35px;
    flex-wrap: wrap;
}

/* ============ ORBIT HERO VISUAL ============ */
.hero-visual {
    flex: 0.85;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.orbit-system {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-core {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 50px rgba(0, 207, 180, 0.5), 0 0 100px rgba(99, 102, 241, 0.3);
    animation: pulse-core 3s ease-in-out infinite alternate;
    z-index: 10;
    letter-spacing: -1px;
}

@keyframes pulse-core {
    0% { transform: scale(0.92); box-shadow: 0 0 30px rgba(0, 207, 180, 0.4); }
    100% { transform: scale(1.08); box-shadow: 0 0 80px rgba(0, 207, 180, 0.7), 0 0 50px rgba(99, 102, 241, 0.4); }
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
}

.orbit-1 {
    width: 130px;
    height: 130px;
    border-top: 2px solid var(--primary);
    border-right: 1px solid rgba(0, 207, 180, 0.3);
    animation: orbit-spin 6s linear infinite;
}

.orbit-2 {
    width: 200px;
    height: 200px;
    border-bottom: 2px solid var(--secondary);
    border-left: 1px solid rgba(99, 102, 241, 0.3);
    animation: orbit-spin 10s linear infinite reverse;
}

.orbit-3 {
    width: 270px;
    height: 270px;
    border-top: 1px dashed rgba(244, 114, 182, 0.4);
    border-bottom: 1px dashed rgba(244, 114, 182, 0.2);
    animation: orbit-spin 16s linear infinite;
}

.orbit-4 {
    width: 335px;
    height: 335px;
    border-right: 1px dashed rgba(255, 255, 255, 0.1);
    border-left: 1px dashed rgba(255, 255, 255, 0.1);
    animation: orbit-spin 24s linear infinite reverse;
}

@keyframes orbit-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Orbit dots */
.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.dot-blue {
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
}

.dot-purple {
    background: var(--secondary);
    box-shadow: 0 0 12px var(--secondary);
}

.dot-teal {
    background: #2addc3;
    box-shadow: 0 0 12px #2addc3;
    top: auto;
    bottom: -6px;
}

.dot-pink {
    background: var(--pink);
    box-shadow: 0 0 12px var(--pink);
}

.orbit-status {
    margin-top: 35px;
    color: var(--text-muted);
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    text-align: center;
    animation: blink 2.5s infinite;
    max-width: 340px;
}

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

/* ============ STATS BAND ============ */
.stats-band {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 50px 10%;
    background: var(--bg-light);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 60px;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
    flex-shrink: 0;
}

/* ============ SECTIONS ============ */
.section {
    padding: 120px 10%;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.section-tag.center {
    display: block;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dark-section {
    background: var(--bg-light);
    position: relative;
}

/* ============ GLASS CARD ============ */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    border-radius: inherit;
}

.glass:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.14);
}

/* ============ MISSION ============ */
.mission-wrap {
    display: flex;
    align-items: center;
    gap: 80px;
}

.mission-left {
    flex: 1;
}

.mission-left h2 {
    font-size: 3.2rem;
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 800;
    margin-bottom: 25px;
}

.mission-left p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.mission-left strong {
    color: var(--primary);
    font-weight: 600;
}

.mission-right {
    flex: 1;
}

.mission-pillars {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateX(10px) !important;
    box-shadow: 0 10px 30px rgba(0, 207, 180, 0.1);
    border-color: rgba(0, 207, 180, 0.2);
}

.pillar-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.pillar-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.pillar-content p {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.5;
}

/* ============ PRODUCTS ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 10px;
}

.product-card {
    padding: 40px 35px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 18px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 207, 180, 0.15);
    border-color: rgba(0, 207, 180, 0.3);
}

.product-card.coming-soon {
    opacity: 0.55;
    cursor: default;
}

.product-card.coming-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--glass-border);
    opacity: 0.6;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.product-logo-dim {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: -1px;
}

.product-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 207, 180, 0.3);
}

.soon-tag {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-muted);
    box-shadow: none;
    border: 1px solid var(--glass-border);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.product-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.72;
    flex-grow: 1;
}

.product-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 20px;
    background: rgba(0, 207, 180, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 207, 180, 0.2);
    letter-spacing: 0.5px;
}

.chip-dim {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border-color: var(--glass-border);
}

.product-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 6px;
    transition: gap 0.25s ease;
}

.product-card:hover .product-cta {
    gap: 14px;
}

.product-cta.muted {
    color: var(--text-muted);
}

/* ============ VISION ============ */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.vision-card {
    padding: 40px 32px;
    position: relative;
}

.vision-num {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 22px;
    letter-spacing: -2px;
    opacity: 0.7;
}

.vision-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.vision-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============ FROM THE DESK (CAROUSEL) ============ */
.desk-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.desk-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
    opacity: 0.15;
    background: var(--secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.desk-container {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.desk-slider {
    position: relative;
    min-height: 320px;
}

.desk-card {
    padding: 50px 55px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(60px) scale(0.97);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: 28px;
}

.desk-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    position: relative;
}

.desk-card.exit-left {
    opacity: 0;
    transform: translateX(-60px) scale(0.97);
}

.quote-mark {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 0.5;
    opacity: 0.35;
    margin-bottom: 18px;
    font-family: Georgia, serif;
}

.desk-card blockquote {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 38px;
    font-style: italic;
    letter-spacing: 0.02em;
}

.desk-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 207, 180, 0.4);
}

.author-avatar.av-purple {
    background: linear-gradient(135deg, var(--secondary), var(--pink));
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.author-avatar.av-teal {
    background: linear-gradient(135deg, #2addc3, var(--primary));
    box-shadow: 0 4px 15px rgba(42, 221, 195, 0.4);
}

.author-avatar.av-orange {
    background: linear-gradient(135deg, var(--accent), #ef4444);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.author-role {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.desk-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid rgba(0, 207, 180, 0.25);
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(0, 207, 180, 0.07);
    white-space: nowrap;
}

/* Dots + progress */
.desk-nav {
    margin-top: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.desk-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.desk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.desk-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--primary);
}

.desk-progress {
    width: 280px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.desk-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* Arrows */
.desk-arrows {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
}

.desk-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desk-arrow:hover {
    background: rgba(0, 207, 180, 0.1);
    border-color: rgba(0, 207, 180, 0.4);
    color: var(--primary);
    transform: scale(1.08);
}

/* ============ FOOTER ============ */
footer {
    background: var(--bg-light);
    border-top: 1px solid var(--glass-border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 70px 10%;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-brand .logo {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.97rem;
    max-width: 280px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col h5 {
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-col a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.97rem;
    transition: color 0.3s ease;
    opacity: 0.75;
}

.footer-col a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding: 20px 10%;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ============ ANIMATIONS ============ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.85s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.85s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.35s forwards;
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .mission-wrap {
        flex-direction: column;
        gap: 50px;
    }

    .mission-left h2 {
        font-size: 2.6rem;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 160px;
    }

    .hero-content {
        margin-bottom: 60px;
    }

    .hero-content p {
        margin: 0 auto 20px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    h1 {
        font-size: 3.5rem;
    }

    .stat-divider {
        display: none;
    }

    .stats-band {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
        letter-spacing: -1.5px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(5, 8, 16, 0.97);
        padding: 30px 5%;
        gap: 24px;
        border-bottom: 1px solid var(--glass-border);
        backdrop-filter: blur(20px);
        z-index: 99;
    }

    .menu-toggle {
        display: flex;
    }

    .desk-card {
        padding: 36px 28px;
    }

    .desk-card blockquote {
        font-size: 1.15rem;
    }

    .desk-author {
        flex-wrap: wrap;
        gap: 14px;
    }

    .desk-label {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 80px 6%;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .footer-inner {
        padding: 50px 6%;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.3rem;
    }

    .orbit-system {
        width: 260px;
        height: 260px;
    }

    .orbit-4 {
        display: none;
    }
}
