:root {
    --color-gold: #E8A538;
    --color-gold-light: #F4C56A;
    --color-gold-dark: #C88A2A;
    --color-navy: #0D1B2A;
    --color-navy-deep: #0A1420;
    --color-space: #1B2838;
    --color-slate: #3D5A80;
    --color-sky: #5B8FB9;
    --color-earth: #7EB4D2;
    --color-earth-light: #A8D4EA;
    --color-white: #FFFFFF;
    --color-light: #E8EEF2;
    --color-muted: #94A3B8;
    --color-dim: #64748B;
    --color-satellite: #4A5568;
    --gradient-gold: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    --gradient-space: linear-gradient(180deg, var(--color-navy) 0%, var(--color-space) 50%, var(--color-slate) 100%);
    --gradient-hero: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy) 50%, var(--color-space) 100%);
    --font-primary: 'Roboto', sans-serif;
    --font-display: 'Roboto', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --section-padding: clamp(80px, 10vw, 140px);
    --container-width: 1320px;
    --nav-height: 80px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-light);
    background: var(--color-navy-deep);
    overflow-x: hidden;
}

p {
    margin-bottom: 1.8em;
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    background: var(--color-gold);
    color: var(--color-navy);
}

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

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-gold {
    color: var(--color-gold);
}

.text-gradient {
    color: var(--color-gold);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

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

.section.compact {
    padding: clamp(40px, 6vw, 80px) 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.compact {
    margin-bottom: 32px;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-muted);
    max-width: 600px;
    margin-top: 20px;
    line-height: 1.7;
}

.section-header.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    transition: opacity 0.3s;
}

.nav-logo:hover {
    opacity: 0.85;
}

.nav-logo img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-muted);
    border-radius: 8px;
    transition: all 0.3s var(--ease-smooth);
}

.nav-links a:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
    color: var(--color-gold);
}

.nav-cta {
    margin-left: 16px;
    padding: 12px 24px !important;
    background: var(--gradient-gold) !important;
    color: var(--color-navy) !important;
    font-weight: 600 !important;
    border-radius: 100px !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-navy);
}

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

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-outline:hover {
    background: rgba(232, 165, 56, 0.1);
    color: var(--color-gold);
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover svg {
    transform: translate(3px, -3px);
}

.card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out-expo);
}

.card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(232, 165, 56, 0.2);
    transform: translateY(-4px);
}

.card.compact {
    padding: 28px;
}

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: var(--color-gold);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--color-white);
}

.card p {
    color: var(--color-muted);
    line-height: 1.7;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(126, 180, 210, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(232, 165, 56, 0.06) 0%, transparent 50%);
}

.hero-stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-stars::before,
.hero-stars::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(2px 2px at 100px 150px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1.5px 1.5px at 400px 50px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 200px 350px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 550px 250px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1.5px 1.5px at 700px 100px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 850px 300px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 50px 500px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1.5px 1.5px at 300px 450px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 600px 400px, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 750px 550px, rgba(255,255,255,0.7), transparent);
    background-size: 1000px 700px;
    animation: twinkle 6s ease-in-out infinite alternate;
}

.hero-stars::after {
    animation-delay: -3s;
    opacity: 0.5;
    background-size: 800px 500px;
}

@keyframes twinkle {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    padding-top: var(--nav-height);
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 6rem);
    margin-bottom: 28px;
    color: var(--color-white);
}

.hero-title .line {
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-muted);
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-visual {
    position: relative;
    flex: 0 0 500px;
    height: 500px;
    z-index: 1;
}

.hero-satellite,
.hero-satellite-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.hero-satellite {
    width: 60%;
}

.hero-satellite-3d {
    --poster-color: transparent;
    --progress-bar-color: var(--color-gold);
    --progress-bar-height: 0px;
    background-color: transparent;
    z-index: 1;
}

.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(232, 165, 56, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(65deg);
    animation: orbit-spin 25s linear infinite;
    z-index: 2;
    pointer-events: none;
}

.hero-orbit::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--color-gold);
}

.hero-orbit:nth-child(2) {
    width: 80%;
    height: 80%;
    border-color: rgba(126, 180, 210, 0.1);
    animation-duration: 18s;
    animation-direction: reverse;
}

@keyframes orbit-spin {
    from { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(0deg); }
    to { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(360deg); }
}

.hero-earth {
    display: none;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-dim);
    font-size: 0.85rem;
    z-index: 10;
}

.scroll-hint .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-dim);
    border-radius: 12px;
    position: relative;
}

.scroll-hint .wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0; top: 18px; }
}

.page-header {
    padding: calc(var(--nav-height) + 80px) 0 60px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.page-header.compact {
    padding: calc(var(--nav-height) + 50px) 0 40px;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 30% 80%, rgba(126, 180, 210, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 70% 30%, rgba(232, 165, 56, 0.04) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-white);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--color-muted);
    max-width: 600px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-row.compact {
    gap: 50px;
    padding: 40px 0;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.member-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out-expo);
}

.member-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(232, 165, 56, 0.2);
}

.member-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.member-card h4 {
    font-size: 1.05rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.member-role {
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.member-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.member-links a {
    font-size: 0.8rem;
    color: var(--color-earth);
    padding: 4px 12px;
    background: rgba(126, 180, 210, 0.1);
    border-radius: 100px;
    transition: all 0.3s;
}

.member-links a:hover {
    background: rgba(126, 180, 210, 0.2);
    color: var(--color-white);
}

.subsystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.subsystem-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out-expo);
}

.subsystem-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(232, 165, 56, 0.2);
}

.subsystem-card .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.subsystem-card h3 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.subsystem-card .abbr {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-earth);
    margin-bottom: 16px;
}

.subsystem-card p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.position-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.position-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(232, 165, 56, 0.2);
    transform: translateX(8px);
}

.position-card.expandable {
    flex-direction: column;
    align-items: stretch;
}

.position-card .position-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.position-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: rgba(232, 165, 56, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.position-icon svg {
    width: 28px;
    height: 28px;
}

.position-content {
    flex: 1;
}

.position-content h3 {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.position-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.position-meta span {
    font-size: 0.85rem;
    color: var(--color-earth);
}

.position-content p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.position-toggle {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    transition: transform 0.3s var(--ease-smooth);
    flex-shrink: 0;
    margin-left: auto;
}

.position-card.expanded .position-toggle {
    transform: rotate(180deg);
}

.position-details {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.position-card.expanded .position-details {
    display: block;
}

.position-details h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gold);
    margin: 16px 0 8px;
}

.position-details h3:first-child {
    margin-top: 0;
}

.position-details p {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.position-details ul {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    padding-left: 20px;
    margin: 8px 0;
}

.position-details li {
    margin-bottom: 4px;
}

.position-apply {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.position-card .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.sponsors-grid {
    display: grid;
    gap: 20px;
}

.sponsors-diamond {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.sponsors-platinum {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.sponsors-gold {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.sponsors-silver {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.sponsors-bronze {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.sponsors-academic {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.sponsors-supporters {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
}

.sponsor-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(232, 165, 56, 0.3);
    transform: translateY(-4px);
}

.sponsor-card h4 {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.sponsor-card p {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.sponsor-img {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: all 0.3s;
}

.sponsor-card:hover .sponsor-img {
    opacity: 1;
    filter: none;
}

.sponsor-card--lightlogo .sponsor-img {
    filter: grayscale(100%) brightness(1.3) contrast(1.1);
    opacity: 0.9;
}

.sponsor-card--lightlogo:hover .sponsor-img {
    filter: none;
    opacity: 1;
}

.sponsor-card.diamond {
    padding: 40px;
    background: linear-gradient(135deg, rgba(185, 242, 255, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(185, 242, 255, 0.15);
}

.sponsor-card.diamond:hover {
    border-color: rgba(185, 242, 255, 0.4);
}

.sponsor-card.diamond .sponsor-img {
    max-height: 80px;
    max-width: 220px;
}

.sponsor-card.platinum {
    background: linear-gradient(135deg, rgba(229, 228, 226, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(229, 228, 226, 0.12);
}

.sponsor-card.platinum:hover {
    border-color: rgba(229, 228, 226, 0.35);
}

.sponsor-card.platinum .sponsor-img {
    max-height: 70px;
}

.sponsor-card.gold {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
}

.sponsor-card.gold:hover {
    border-color: rgba(232, 165, 56, 0.4);
}

.sponsor-card.silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(192, 192, 192, 0.12);
}

.sponsor-card.silver:hover {
    border-color: rgba(192, 192, 192, 0.35);
}

.sponsor-card.bronze {
    padding: 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
}

.sponsor-card.bronze:hover {
    border-color: rgba(205, 127, 50, 0.35);
}

.sponsor-card.bronze .sponsor-img,
.sponsor-card.supporter .sponsor-img {
    max-height: 40px;
    max-width: 120px;
    margin-bottom: 12px;
}

.sponsor-card.bronze h4 {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.sponsor-card.academic {
    padding: 28px;
    text-align: center;
}

.sponsor-card.academic .sponsor-img {
    max-height: 50px;
}

.sponsor-card.academic h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.sponsor-card.academic p {
    font-size: 0.8rem;
}

.sponsor-card.supporter {
    padding: 20px;
    text-align: center;
    justify-content: center;
}

.sponsor-card.supporter h4 {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--color-muted);
}

.sponsor-card.supporter:hover h4 {
    color: var(--color-white);
}

.repo-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.repo-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out-expo);
}

.repo-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(232, 165, 56, 0.2);
    transform: translateX(8px);
}

.repo-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: rgba(232, 165, 56, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.repo-icon svg {
    width: 28px;
    height: 28px;
}

.repo-info {
    flex: 1;
}

.repo-info h4 {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.repo-info p {
    font-size: 0.95rem;
    color: var(--color-muted);
}

.repo-arrow {
    width: 24px;
    height: 24px;
    color: var(--color-dim);
    transition: all 0.3s var(--ease-out-expo);
}

.repo-card:hover .repo-arrow {
    color: var(--color-gold);
    transform: translate(4px, -4px);
}

.publications-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.publication-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-smooth);
}

.publication-card:hover {
    background: rgba(232, 165, 56, 0.05);
    border-color: rgba(232, 165, 56, 0.2);
    transform: translateX(4px);
}

.publication-content {
    flex: 1;
}

.publication-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 6px;
    line-height: 1.4;
}

.publication-authors {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 4px;
}

.publication-venue {
    font-size: 0.8rem;
    color: var(--color-dim);
    font-family: var(--font-mono);
}

.publication-arrow {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s var(--ease-smooth);
    flex-shrink: 0;
}

.publication-card:hover .publication-arrow {
    opacity: 1;
    transform: translateX(0);
}

.cta-section {
    text-align: center;
    padding: 100px 0;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232, 165, 56, 0.08) 0%, transparent 70%);
}

.cta-section.compact {
    padding: 60px 0;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.15rem;
    color: var(--color-muted);
    max-width: 500px;
    margin: 0 auto 32px;
}

.footer {
    padding: 60px 0 40px;
    background: var(--color-navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.95rem;
    color: var(--color-muted);
    padding: 6px 0;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-partners a {
    display: block;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-partners a:hover {
    opacity: 1;
}

.footer-partners img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-self: end;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--color-muted);
    transition: all 0.3s var(--ease-smooth);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-navy);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-section {
    background: radial-gradient(ellipse at center, rgba(13, 27, 42, 0.8) 0%, var(--color-navy-deep) 70%);
    overflow: hidden;
    position: relative;
}

.timeline-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    animation: starTwinkle var(--duration) ease-in-out var(--delay) infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.star::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.orbital-timeline {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 900px;
    margin: 60px auto 0;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    z-index: 5;
}

.earth-glow {
    position: absolute;
    inset: -80px;
    background: radial-gradient(circle, rgba(100, 180, 255, 0.25) 0%, rgba(50, 120, 200, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: earthPulse 5s ease-in-out infinite;
}

@keyframes earthPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.08); opacity: 0.9; }
}

.earth-planet {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        inset -25px -15px 50px rgba(0, 0, 0, 0.6),
        inset 15px 10px 40px rgba(150, 200, 255, 0.2),
        0 0 80px rgba(100, 160, 220, 0.25);
}

.earth-surface {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 25%, rgba(180, 220, 255, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse 35% 25% at 25% 35%, #3d6b4f 0%, transparent 100%),
        radial-gradient(ellipse 20% 15% at 65% 40%, #4a7a5c 0%, transparent 100%),
        radial-gradient(ellipse 15% 30% at 55% 55%, #3d6b4f 0%, transparent 100%),
        radial-gradient(ellipse 12% 20% at 35% 60%, #4a7a5c 0%, transparent 100%),
        radial-gradient(ellipse 25% 20% at 80% 50%, #3d6b4f 0%, transparent 100%),
        radial-gradient(ellipse 30% 15% at 75% 35%, #4a7a5c 0%, transparent 100%),
        radial-gradient(ellipse 60% 10% at 50% 92%, rgba(220, 230, 240, 0.6) 0%, transparent 100%),
        radial-gradient(circle at 35% 35%, #4a90b8 0%, #1e5a7a 50%, #0d3a52 100%);
}

.earth-clouds {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: 
        radial-gradient(ellipse 40% 8% at 20% 25%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 30% 6% at 60% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(ellipse 25% 5% at 45% 50%, rgba(255, 255, 255, 0.25) 0%, transparent 100%),
        radial-gradient(ellipse 35% 7% at 70% 65%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        radial-gradient(ellipse 20% 4% at 30% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0.9;
}

.earth-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.earth-atmosphere {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(100, 180, 255, 0.15);
    box-shadow: 0 0 30px rgba(100, 180, 255, 0.15), inset 0 0 20px rgba(100, 180, 255, 0.05);
}

.orbit-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.milestone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.milestone-1 { transform: translate(-50%, -50%) rotate(0deg) translateY(-340px) rotate(0deg); }
.milestone-2 { transform: translate(-50%, -50%) rotate(45deg) translateY(-340px) rotate(-45deg); }
.milestone-3 { transform: translate(-50%, -50%) rotate(90deg) translateY(-340px) rotate(-90deg); }
.milestone-4 { transform: translate(-50%, -50%) rotate(135deg) translateY(-340px) rotate(-135deg); }
.milestone-5 { transform: translate(-50%, -50%) rotate(180deg) translateY(-340px) rotate(180deg); }
.milestone-6 { transform: translate(-50%, -50%) rotate(225deg) translateY(-340px) rotate(-225deg); }
.milestone-7 { transform: translate(-50%, -50%) rotate(270deg) translateY(-340px) rotate(-270deg); }
.milestone-8 { transform: translate(-50%, -50%) rotate(315deg) translateY(-340px) rotate(-315deg); }

.milestone-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-muted);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    z-index: 2;
}

.milestone.completed .milestone-dot {
    background: linear-gradient(135deg, #E8A538, #F4C56A);
    border-color: rgba(232, 165, 56, 0.5);
    box-shadow: 0 0 20px rgba(232, 165, 56, 0.4);
}

.milestone.current .milestone-dot {
    background: linear-gradient(135deg, #E8A538, #F4C56A);
    border-color: rgba(232, 165, 56, 0.6);
    box-shadow: 0 0 30px rgba(232, 165, 56, 0.6);
}

.milestone.upcoming .milestone-dot {
    background: rgba(148, 163, 184, 0.3);
    border-color: rgba(148, 163, 184, 0.4);
}

.satellite-marker {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E8A538, #F4C56A);
}

.satellite-marker svg {
    width: 20px;
    height: 20px;
    color: var(--color-navy);
}

@keyframes satelliteSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes satelliteGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.5), 0 0 40px rgba(34, 197, 94, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(34, 197, 94, 0.7), 0 0 60px rgba(34, 197, 94, 0.4);
        transform: scale(1.05);
    }
}

@keyframes pulse-glow {
    0%, 100% { 
        border-color: rgba(213, 147, 6, 0.8);
    }
    50% { 
        border-color: rgba(213, 147, 6, 1);
    }
}

.launch-marker {
    background: linear-gradient(135deg, #22C55E, #16A34A) !important;
    border-color: rgba(34, 197, 94, 0.5) !important;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.milestone-content {
    position: absolute;
    white-space: nowrap;
    text-align: center;
    pointer-events: none;
    opacity: 1;
    transition: all 0.3s var(--ease-smooth);
}

.milestone-1 .milestone-content { bottom: calc(100% + 15px); left: 50%; transform: translateX(-50%); }
.milestone-2 .milestone-content { left: calc(100% + 20px); top: 50%; transform: translateY(-50%); text-align: left; }
.milestone-3 .milestone-content { left: calc(100% + 20px); top: 50%; transform: translateY(-50%); text-align: left; }
.milestone-4 .milestone-content { left: calc(100% + 20px); top: 50%; transform: translateY(-50%); text-align: left; }
.milestone-5 .milestone-content { top: calc(100% + 15px); left: 50%; transform: translateX(-50%); }
.milestone-6 .milestone-content { right: calc(100% + 20px); top: 50%; transform: translateY(-50%); text-align: right; }
.milestone-7 .milestone-content { right: calc(100% + 20px); top: 50%; transform: translateY(-50%); text-align: right; }
.milestone-8 .milestone-content { right: calc(100% + 20px); top: 50%; transform: translateY(-50%); text-align: right; }

.milestone-date {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.milestone.completed .milestone-date,
.milestone.current .milestone-date { color: #E8A538; }
.milestone.upcoming .milestone-date { color: var(--color-muted); }

.milestone-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2px;
}

.milestone-content p {
    font-size: 0.8rem;
    color: var(--color-muted);
    max-width: 180px;
}

.current-label .milestone-date {
    background: linear-gradient(135deg, #E8A538, #F4C56A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.85rem;
    font-weight: 700;
}

.milestone-image {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: var(--color-navy);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s var(--ease-smooth);
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.milestone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.milestone-1 .milestone-image { top: calc(100% + 60px); left: 50%; transform: translateX(-50%) scale(0.8); }
.milestone-2 .milestone-image,
.milestone-3 .milestone-image,
.milestone-4 .milestone-image { right: calc(100% + 30px); top: 50%; transform: translateY(-50%) scale(0.8); }
.milestone-5 .milestone-image { bottom: calc(100% + 60px); left: 50%; transform: translateX(-50%) scale(0.8); }
.milestone-6 .milestone-image,
.milestone-7 .milestone-image,
.milestone-8 .milestone-image { left: calc(100% + 30px); top: 50%; transform: translateY(-50%) scale(0.8); }

.milestone-1:hover .milestone-image,
.milestone-5:hover .milestone-image {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.milestone-2:hover .milestone-image,
.milestone-3:hover .milestone-image,
.milestone-4:hover .milestone-image,
.milestone-6:hover .milestone-image,
.milestone-7:hover .milestone-image,
.milestone-8:hover .milestone-image {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.milestone:hover .milestone-dot {
    transform: scale(1.2);
}

.annotation-arrow {
    z-index: 10;
}

.annotation-arrow:hover > div {
    background: rgba(232, 165, 56, 0.2);
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.annotation-arrow > div {
    transition: all 0.3s ease;
}

.payload-annotation {
    z-index: 10;
}

.payload-annotation:hover .payload-subsystem-image {
    border-color: rgba(126, 180, 210, 1);
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(126, 180, 210, 0.5);
}

.payload-annotation:hover > div:not(.payload-subsystem-image) {
    background: rgba(126, 180, 210, 0.15);
    border-color: rgba(126, 180, 210, 0.8);
    transform: scale(1.05);
}

.payload-subsystem-image {
    transition: all 0.3s ease;
}

.subsystem-section {
    background: rgba(91, 155, 213, 0.02);
}

.subsystem-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.subsystem-feature {
    background: rgba(91, 155, 213, 0.06);
    border: 1px solid rgba(91, 155, 213, 0.15);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.3s ease;
}

.subsystem-feature:hover {
    border-color: rgba(91, 155, 213, 0.4);
}

.subsystem-feature-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
    font-family: var(--font-mono, monospace);
}

.subsystem-feature-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
}

.subsystem-visual {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(91, 155, 213, 0.08);
    border: 2px solid rgba(91, 155, 213, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

@media (max-width: 768px) {
    .subsystem-features {
        grid-template-columns: 1fr;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--color-muted);
}

@media (max-width: 1200px) {
    .hero-visual {
        flex: 0 0 400px;
        height: 400px;
        opacity: 0.8;
    }
    
    .hero-layout {
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .orbital-timeline {
        height: 800px;
        max-width: 800px;
    }
    
    .orbit-center {
        width: 140px;
        height: 140px;
    }
    
    .milestone-1 { transform: translate(-50%, -50%) rotate(0deg) translateY(-300px) rotate(0deg); }
    .milestone-2 { transform: translate(-50%, -50%) rotate(45deg) translateY(-300px) rotate(-45deg); }
    .milestone-3 { transform: translate(-50%, -50%) rotate(90deg) translateY(-300px) rotate(-90deg); }
    .milestone-4 { transform: translate(-50%, -50%) rotate(135deg) translateY(-300px) rotate(-135deg); }
    .milestone-5 { transform: translate(-50%, -50%) rotate(180deg) translateY(-300px) rotate(180deg); }
    .milestone-6 { transform: translate(-50%, -50%) rotate(225deg) translateY(-300px) rotate(-225deg); }
    .milestone-7 { transform: translate(-50%, -50%) rotate(270deg) translateY(-300px) rotate(-270deg); }
    .milestone-8 { transform: translate(-50%, -50%) rotate(315deg) translateY(-300px) rotate(-315deg); }
    
    .milestone-image { width: 60px; height: 60px; }
    .milestone-content h4 { font-size: 0.85rem; }
    .milestone-content p { font-size: 0.75rem; max-width: 140px; }
}

@media (max-width: 1024px) {
    .hero-layout { flex-direction: column; }
    .hero-visual { display: none; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-row { gap: 40px; flex-wrap: wrap; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
    
    .orbital-timeline { height: 700px; max-width: 700px; }
    .orbit-center { width: 120px; height: 120px; }
    .earth-glow { inset: -40px; }
    
    .milestone-1 { transform: translate(-50%, -50%) rotate(0deg) translateY(-260px) rotate(0deg); }
    .milestone-2 { transform: translate(-50%, -50%) rotate(45deg) translateY(-260px) rotate(-45deg); }
    .milestone-3 { transform: translate(-50%, -50%) rotate(90deg) translateY(-260px) rotate(-90deg); }
    .milestone-4 { transform: translate(-50%, -50%) rotate(135deg) translateY(-260px) rotate(-135deg); }
    .milestone-5 { transform: translate(-50%, -50%) rotate(180deg) translateY(-260px) rotate(180deg); }
    .milestone-6 { transform: translate(-50%, -50%) rotate(225deg) translateY(-260px) rotate(-225deg); }
    .milestone-7 { transform: translate(-50%, -50%) rotate(270deg) translateY(-260px) rotate(-270deg); }
    .milestone-8 { transform: translate(-50%, -50%) rotate(315deg) translateY(-260px) rotate(-315deg); }
    
    .milestone-image { width: 55px; height: 55px; }
    .milestone-content h4 { font-size: 0.8rem; }
    .milestone-content p { font-size: 0.7rem; max-width: 120px; }
    .milestone-date { font-size: 0.65rem; }
}

@media (max-width: 900px) {
    .orbital-timeline {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 40px 0;
        max-width: 100%;
    }
    
    .orbit-center, .orbit-path { display: none; }
    .timeline-stars { opacity: 0.5; }
    
    .milestone {
        position: relative;
        top: auto;
        left: auto;
        transform: none !important;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 0 24px 45px;
        border-left: 3px solid rgba(148, 163, 184, 0.15);
        margin-left: 15px;
    }
    
    .milestone.completed { border-left-color: rgba(232, 165, 56, 0.5); }
    .milestone.current { border-left-color: var(--color-gold); border-left-width: 4px; }
    .milestone.upcoming { border-left-style: dashed; }
    .milestone-dot { position: absolute; left: -12px; top: 24px; }
    .milestone.current .milestone-dot { left: -20px; }
    
    .milestone-content {
        position: relative;
        opacity: 1;
        transform: none !important;
        text-align: left;
        white-space: normal;
        top: auto; bottom: auto; left: auto; right: auto;
    }
    
    .milestone-content p { max-width: 100%; }
    
    .milestone-image {
        position: relative;
        opacity: 1;
        transform: none !important;
        flex-shrink: 0;
        top: auto; left: auto; right: auto; bottom: auto;
        width: 60px; height: 60px;
    }
    
    .satellite-marker { left: -19px; }
}

@media (max-width: 768px) {
    :root { --nav-height: 70px; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-navy-deep);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        transition: right 0.4s var(--ease-out-expo);
    }
    
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.5rem; padding: 16px 24px; }
    .nav-cta { margin-left: 0 !important; margin-top: 16px; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .stats-row { flex-direction: column; gap: 32px; }
    .stat-value { font-size: 2.5rem; }
    .position-card { flex-direction: column; text-align: center; }
    
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-brand { max-width: 100%; text-align: center; }
    .footer-col { text-align: center; }
    .footer-bottom { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-social { justify-self: center; }
    .footer-partners { gap: 32px; padding: 24px 0; }
    .footer-partners img { height: 32px; }
    
    .sponsors-diamond, .sponsors-platinum, .sponsors-gold, .sponsors-silver { grid-template-columns: 1fr; }
    .sponsors-bronze, .sponsors-academic { grid-template-columns: repeat(2, 1fr); }
    .sponsors-supporters { grid-template-columns: repeat(3, 1fr); }
    .members-grid { grid-template-columns: 1fr; }
    
    .publication-card { padding: 16px; }
    .publication-content h4 { font-size: 0.95rem; }
    .publication-authors { font-size: 0.8rem; }
    
    .annotation-arrow { transform: scale(0.85); }
    .annotation-arrow[style*="left: -12%"] { left: -8% !important; }
    .annotation-arrow[style*="right: -12%"] { right: -8% !important; }
    .payload-annotation { transform: scale(0.7); }
    .payload-annotation[style*="left: -12%"] { left: -5% !important; }
    .payload-annotation[style*="right: -12%"] { right: -5% !important; }
    .payload-subsystem-image { width: 100px !important; height: 100px !important; }
    .payload-annotation[style*="top: -10%"] { top: -5% !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; }
    .btn { width: 100%; }
    .page-title { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .card, .member-card, .subsystem-card, .position-card, .repo-card { padding: 24px; }
    
    .milestone { padding-left: 35px; margin-left: 10px; }
    .milestone-image { width: 50px; height: 50px; }
    .milestone-content h4 { font-size: 0.9rem; }
    
    .sponsors-bronze, .sponsors-academic, .sponsors-supporters { grid-template-columns: repeat(2, 1fr); }
}
