/* ========================================
   RAIDHO | HORSES FOR PEACE
   World Movement Design System v2
   ======================================== */

:root {
    --bg-deep: #030306;
    --bg-dark: #080810;
    --bg-surface: #0c0c16;
    --bg-elevated: #14141f;
    --bg-card: #111119;
    --gold: #D4A853;
    --gold-bright: #F0C86A;
    --gold-dim: rgba(212, 168, 83, 0.3);
    --gold-glow: rgba(212, 168, 83, 0.1);
    --gold-ultra: rgba(212, 168, 83, 0.04);
    --amber: #E8A838;
    --text-primary: #F2EFE8;
    --text-secondary: #9A978F;
    --text-muted: #555260;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(212, 168, 83, 0.15);
    --container: 1280px;
    --font-display: 'Cinzel', serif;
    --font-brand: 'Cinzel Decorative', 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-deep);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.accent-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.brand-name {
    font-family: var(--font-brand);
    white-space: nowrap;
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.preloader-ring {
    width: 48px;
    height: 48px;
    border: 2px solid var(--border-subtle);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: preloaderSpin 1s linear infinite;
}

.preloader-text {
    font-family: var(--font-brand);
    font-size: 0.8rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    white-space: nowrap;
}

.preloader-sub {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

/* ========================================
   SECTION LABELS
   ======================================== */
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-label.centered {
    justify-content: center;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.label-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--gold);
    font-weight: 600;
}

/* ========================================
   TYPOGRAPHY SYSTEM
   ======================================== */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ========================================
   TUBELIGHT NAVIGATION
   ======================================== */
.tubelight-nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding-top: 1.2rem;
    transition: opacity 0.4s ease;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(8, 8, 16, 0.4);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.3rem;
    border-radius: 100px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.2rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    z-index: 2;
}

.nav-item:hover {
    color: var(--text-primary);
}

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

.nav-icon {
    width: 16px;
    height: 16px;
    display: none;
}

.nav-label {
    display: inline;
}

.nav-indicator {
    position: absolute;
    height: calc(100% - 0.6rem);
    top: 0.3rem;
    left: 0.3rem;
    background: rgba(212, 168, 83, 0.06);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    pointer-events: none;
}

.nav-indicator::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background: var(--gold);
    border-radius: 0 0 4px 4px;
    box-shadow:
        0 0 8px rgba(212,168,83,0.4),
        0 0 20px rgba(212,168,83,0.2);
}

.nav-indicator::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 16px;
    background: radial-gradient(ellipse, rgba(212,168,83,0.15), transparent);
    border-radius: 50%;
    filter: blur(4px);
}

/* Mobile nav */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
    background: rgba(8,8,16,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    cursor: pointer;
    padding: 12px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========================================
   HERO — WebGL Shader
   ======================================== */
.hero {
    height: 100vh;
    height: 100dvh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.shader-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    touch-action: none;
    background: #000;
}

.shader-canvas-final {
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: var(--font-brand);
    font-size: clamp(3rem, 9vw, 7.5rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1;
    white-space: nowrap;
    margin-bottom: 2.5rem;
    opacity: 0;
    background: linear-gradient(135deg, #D4A853 0%, #F0C86A 40%, #E8A838 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 60px rgba(212,168,83,0.2));
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    color: rgba(242, 239, 232, 0.7);
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.9;
    max-width: 700px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

/* Hero Buttons */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    border: none;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.btn-hero svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

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

.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: #0a0a0a;
    box-shadow: 0 4px 20px rgba(212,168,83,0.25);
}

.btn-hero-primary:hover {
    box-shadow: 0 8px 32px rgba(212,168,83,0.4);
    transform: translateY(-2px);
}

.btn-hero-ghost {
    background: rgba(212,168,83,0.08);
    border: 1px solid rgba(212,168,83,0.25);
    color: var(--gold);
}

.btn-hero-ghost:hover {
    background: rgba(212,168,83,0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 0.85rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
}

@media (min-width: 769px) {
    .hero-scroll-indicator {
        bottom: 1rem;
    }
}

.hero-scroll-indicator span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid var(--text-muted);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 10rem 0;
    position: relative;
}

/* ========================================
   MANIFESTO
   ======================================== */
.section-manifesto {
    padding: 12rem 0;
    background: var(--bg-dark);
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-lines {
    margin-top: 3rem;
}

.manifesto-line {
    font-family: var(--font-accent);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
}

.manifesto-line.large {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-primary);
    font-weight: 400;
}

.manifesto-line.gold {
    color: var(--gold);
}

.manifesto-line.signature {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-top: 1rem;
}

.manifesto-break {
    height: 3rem;
}

/* ========================================
   LIVE SYNC
   ======================================== */
.section-sync {
    background: var(--bg-surface);
    overflow: hidden;
    padding: 10rem 0;
}

.sync-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sync-radial {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    opacity: 0.5;
}

.sync-rings {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.sync-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(212,168,83,0.06);
    animation: syncRingPulse 4s ease-out infinite;
}

.sync-ring:nth-child(1) { width: 300px; height: 300px; animation-delay: 0s; }
.sync-ring:nth-child(2) { width: 500px; height: 500px; animation-delay: 1.3s; }
.sync-ring:nth-child(3) { width: 700px; height: 700px; animation-delay: 2.6s; }

@keyframes syncRingPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.sync-content {
    position: relative;
    z-index: 2;
}

.sync-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    padding: 0.4rem 1.2rem;
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 100px;
}

.live-dot {
    width: 8px; height: 8px;
    background: #E74C3C;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
    box-shadow: 0 0 8px rgba(231,76,60,0.5);
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231,76,60,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(231,76,60,0); }
}

.live-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
    font-weight: 600;
}

.counter-number {
    font-family: var(--font-display);
    font-size: clamp(5rem, 14vw, 11rem);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    background: linear-gradient(to bottom, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-label {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

.counter-label strong {
    color: var(--gold);
    font-weight: 500;
}

.counter-waves {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 3rem 0;
    height: 36px;
}

.wave-bar {
    width: 3px;
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.5;
    animation: waveBar 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.3s; }
.wave-bar:nth-child(7) { animation-delay: 0.2s; }
.wave-bar:nth-child(8) { animation-delay: 0.1s; }
.wave-bar:nth-child(9) { animation-delay: 0s; }

@keyframes waveBar {
    0%, 100% { transform: scaleY(0.25); }
    50% { transform: scaleY(1); }
}

.sync-quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--gold);
    margin-top: 2rem;
    font-weight: 300;
}

/* ========================================
   ALEXANDRA — Editorial Design
   ======================================== */
.section-alexandra {
    background: var(--bg-dark);
    overflow: hidden;
    position: relative;
}

.alexandra-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.alexandra-glow {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(212,168,83,0.03) 0%, transparent 65%);
}

.alexandra-editorial {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.alex-header {
    text-align: center;
    margin-bottom: 6rem;
}

.alex-name-display {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 0.9;
    background: linear-gradient(180deg, var(--text-primary) 20%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.alex-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

/* Story Grid */
.alex-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 6rem;
}

/* Image */
.alex-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-deep);
    line-height: 0;
    font-size: 0;
}

.alex-image {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.75) contrast(1.1) saturate(0.9);
    transform: scale(1.02);
    transform-origin: center center;
}

.alex-image-vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, transparent 40%, rgba(3,3,6,0.9)),
        linear-gradient(to right, rgba(3,3,6,0.3), transparent 30%);
    pointer-events: none;
}

.alex-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212,168,83,0.15);
    border-radius: inherit;
    z-index: 2;
    pointer-events: none;
}

.alex-image-caption {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.2rem;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.alex-caption-line {
    width: 24px;
    height: 1px;
    background: var(--gold-dim);
}

/* Pull Quote */
.alex-pullquote {
    font-family: var(--font-accent);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    font-weight: 300;
    margin: 0 0 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.alex-quote-mark {
    font-family: var(--font-display);
    font-size: 1.8em;
    color: var(--gold);
    font-style: normal;
    line-height: 0;
    vertical-align: -0.25em;
    opacity: 0.4;
}

/* Narrative */
.alex-narrative p {
    font-family: var(--font-accent);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.alex-narrative p:last-child {
    color: var(--text-primary);
    font-weight: 400;
}

/* Journey Chapters */
.alex-chapters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-subtle);
}

.alex-chapter {
    padding: 2.5rem 2rem;
    position: relative;
}

.alex-chapter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    width: 32px;
    height: 2px;
    background: var(--gold);
}

.chapter-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.15;
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.chapter-title {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.chapter-text {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* ========================================
   MOVEMENT / ORBITAL SYSTEM
   ======================================== */
.section-movement {
    background: var(--bg-surface);
    overflow: hidden;
}

.movement-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(212,168,83,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.movement-header {
    margin-bottom: 5rem;
}

/* Orbit visualization */
.orbit-system {
    position: relative;
    width: 560px;
    height: 560px;
    margin: 0 auto 5rem;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring-1 {
    width: 240px; height: 240px;
    border-color: rgba(212,168,83,0.2);
    animation: orbitPulse 6s ease-in-out infinite;
}

.orbit-ring-2 {
    width: 380px; height: 380px;
    border-color: rgba(212,168,83,0.1);
    animation: orbitPulse 8s ease-in-out infinite 1s;
}

.orbit-ring-3 {
    width: 520px; height: 520px;
    border-color: rgba(212,168,83,0.05);
    animation: orbitPulse 10s ease-in-out infinite 2s;
}

@keyframes orbitPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
}

.orbit-label {
    position: absolute;
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
}

.orbit-label-1 {
    top: -1px; left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: var(--gold);
    background: var(--bg-surface);
    padding: 0.2rem 0.8rem;
    font-weight: 500;
    font-family: var(--font-brand);
    white-space: nowrap;
}

.orbit-label-2 {
    top: -1px; left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: var(--text-secondary);
    background: var(--bg-surface);
    padding: 0.2rem 0.8rem;
}

.orbit-label-3 {
    top: -1px; left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: var(--text-muted);
    background: var(--bg-surface);
    padding: 0.2rem 0.8rem;
}

/* Core */
.orbit-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,168,83,0.15), rgba(212,168,83,0.03));
    border: 1px solid rgba(212,168,83,0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.orbit-core-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(212,168,83,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: coreGlow 3s ease-in-out infinite;
}

@keyframes coreGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.orbit-core-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.orbit-core-sub {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 300;
    position: relative;
    z-index: 2;
    margin-top: 0.15rem;
}

/* Floating orbital dots */
.orbit-dot {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212,168,83,0.4);
    z-index: 3;
}

.od-1 { top: 50%; left: 50%; animation: orbitFloat1 12s linear infinite; }
.od-2 { top: 50%; left: 50%; animation: orbitFloat2 16s linear infinite; }
.od-3 { top: 50%; left: 50%; animation: orbitFloat3 20s linear infinite; }
.od-4 { top: 50%; left: 50%; animation: orbitFloat1 14s linear infinite reverse; }
.od-5 { top: 50%; left: 50%; animation: orbitFloat2 18s linear infinite reverse; width: 4px; height: 4px; opacity: 0.6; }
.od-6 { top: 50%; left: 50%; animation: orbitFloat3 22s linear infinite reverse; width: 4px; height: 4px; opacity: 0.5; }

@keyframes orbitFloat1 {
    0%   { transform: translate(-50%, -50%) rotate(0deg)   translateX(120px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(120px) rotate(-360deg); }
}
@keyframes orbitFloat2 {
    0%   { transform: translate(-50%, -50%) rotate(0deg)   translateX(190px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(190px) rotate(-360deg); }
}
@keyframes orbitFloat3 {
    0%   { transform: translate(-50%, -50%) rotate(0deg)   translateX(260px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(260px) rotate(-360deg); }
}

/* Legend */
.orbit-legend {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.orbit-legend-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out);
}

.orbit-legend-item:hover,
.orbit-legend-item.scroll-active {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.legend-marker {
    width: 12px; height: 12px;
    min-width: 12px;
    border-radius: 50%;
    margin-top: 3px;
}

.legend-marker-core { background: var(--gold); box-shadow: 0 0 12px rgba(212,168,83,0.4); }
.legend-marker-1 { background: var(--gold); opacity: 0.7; }
.legend-marker-2 { background: var(--gold); opacity: 0.4; }
.legend-marker-3 { background: var(--gold); opacity: 0.2; }

.legend-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.legend-desc {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

/* ========================================
   PILLARS
   ======================================== */
.section-pillars {
    background: var(--bg-dark);
}

.pillars-header {
    margin-bottom: 5rem;
}

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

.pillar-card {
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.5s var(--ease-out);
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pillar-card:hover,
.pillar-card.scroll-active {
    background: var(--bg-elevated);
    border-color: var(--gold-dim);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pillar-card:hover::before,
.pillar-card.scroll-active::before {
    transform: scaleX(1);
}

.pillar-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.08;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.pillar-icon {
    width: 40px; height: 40px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

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

.pillar-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pillar-text {
    font-family: var(--font-accent);
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ========================================
   GLOBAL PEACE DAYS
   ======================================== */
.section-gpd {
    background: var(--bg-surface);
    overflow: hidden;
    padding: 10rem 0;
}

.gpd-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, var(--gold-ultra) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, var(--gold-ultra) 0%, transparent 50%);
}

.gpd-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.gpd-title {
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
}

.gpd-desc {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.gpd-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.gpd-stat {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out);
}

.gpd-stat:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
}

.gpd-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.gpd-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

/* ========================================
   MAP — 3D Scroll Container
   ======================================== */
.section-map {
    background: var(--bg-dark);
    padding-bottom: 2rem;
}

.map-scroll-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 2rem;
}

.map-3d-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.map-frame {
    width: 100%;
    height: 650px;
    border: 3px solid rgba(100, 100, 100, 0.4);
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    padding: 0.5rem;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 20px 60px rgba(0,0,0,0.5),
        0 40px 100px rgba(0,0,0,0.3);
    overflow: hidden;
}

.map-inner {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--radius-xl) - 6px);
    overflow: hidden;
}

/* --- Map Touch Hint --- */
.map-touch-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
    padding: 0.6rem 1.2rem;
    animation: touchHintPulse 2.5s ease-in-out infinite;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    white-space: nowrap;
}

.map-touch-hint.hidden {
    opacity: 0;
    visibility: hidden;
}

.touch-hint-icon {
    color: var(--gold);
    display: flex;
    align-items: center;
    animation: touchHintSwipe 2.5s ease-in-out infinite;
}

.touch-hint-text {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
}

@keyframes touchHintPulse {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}

@keyframes touchHintSwipe {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(6px); }
    75% { transform: translateX(-6px); }
}

/* --- Mapbox controls theming --- */
.mapboxgl-ctrl-group {
    background: rgba(8, 8, 16, 0.8) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--radius-sm) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
}

.mapboxgl-ctrl-group button {
    background: transparent !important;
    border-color: var(--border-subtle) !important;
}

.mapboxgl-ctrl-group button + button {
    border-top-color: var(--border-subtle) !important;
}

.mapboxgl-ctrl-group button span {
    filter: invert(1) brightness(0.8);
}

.mapboxgl-ctrl-group button:hover span {
    filter: invert(1) brightness(1) sepia(1) hue-rotate(10deg) saturate(3);
}

.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon,
.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
    filter: invert(1) brightness(0.8) !important;
}

/* --- Rich popup styling --- */
.mapboxgl-popup-content {
    background: rgba(14, 14, 25, 0.95) !important;
    border: 1px solid rgba(212, 168, 83, 0.25) !important;
    border-radius: var(--radius-md) !important;
    color: var(--text-primary) !important;
    padding: 0 !important;
    font-family: var(--font-body) !important;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.6),
        0 0 60px rgba(212,168,83,0.08) !important;
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.mapboxgl-popup-close-button {
    color: var(--text-secondary) !important;
    font-size: 1.2rem !important;
    padding: 4px 10px !important;
    right: 2px !important;
    top: 2px !important;
    z-index: 5;
}

.mapboxgl-popup-close-button:hover {
    color: var(--gold) !important;
    background: transparent !important;
}

.mapboxgl-popup-tip {
    border-top-color: rgba(14, 14, 25, 0.95) !important;
}

.popup-peace {
    padding: 1.5rem 1.8rem 1.3rem;
    text-align: center;
}

.popup-badge {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: linear-gradient(135deg, var(--gold), var(--amber));
    padding: 0.25rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 0.8rem;
}

.popup-city {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold-bright);
    margin: 0 0 0.25rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.popup-region {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    margin: 0 0 1rem;
}

.popup-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding: 0.8rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 0.8rem;
}

.popup-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-stat-num {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.2;
}

.popup-stat-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.popup-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #4ade80;
    font-weight: 500;
}

.popup-live-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: popupPulse 1.5s infinite;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
}

@keyframes popupPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

/* ========================================
   PATHS / JOIN
   ======================================== */
.section-join {
    background: var(--bg-surface);
}

.join-header { margin-bottom: 4rem; }

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.path-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.5s var(--ease-out);
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
}

.path-card:hover {
    background: var(--bg-elevated);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.path-card.featured {
    border-color: var(--gold-dim);
    background: linear-gradient(to bottom, rgba(212,168,83,0.05), var(--bg-card));
    transform: scale(1.03);
    z-index: 2;
}

.path-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
}

.featured-badge {
    position: absolute;
    top: -11px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: #0a0a0a;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.4rem 1.6rem;
    white-space: nowrap;
    border-radius: 100px;
}

.path-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    display: block;
}

.path-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin: 0.5rem 0 1.5rem;
    font-weight: 400;
}

.path-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold);
}

.path-price span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.path-divider {
    width: 100%;
    height: 1px;
    background: var(--border-subtle);
    margin: 2rem 0;
}

.path-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.path-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.55rem 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 300;
    line-height: 1.5;
}

.path-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.btn-path {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: all 0.4s var(--ease-out);
}

.btn-path:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,168,83,0.06);
}

.btn-path-primary {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: #0a0a0a;
}

.btn-path-primary:hover {
    box-shadow: 0 8px 24px rgba(212,168,83,0.3);
    transform: translateY(-2px);
}

/* ========================================
   FINAL CTA
   ======================================== */
.section-final {
    padding: 14rem 0;
    background: var(--bg-dark);
    overflow: hidden;
    position: relative;
}

.final-content {
    position: relative;
    z-index: 10;
    max-width: 750px;
    margin: 0 auto;
}

.final-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.final-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.final-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 2.5rem;
    border-radius: 1px;
}

.final-closing {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-deep);
    padding: 6rem 0 2.5rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 480px;
}

.footer-hero-title {
    font-family: var(--font-brand);
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.1;
    white-space: nowrap;
    background: linear-gradient(135deg, #D4A853 0%, #F0C86A 40%, #E8A838 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(212,168,83,0.15));
    margin: 0;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.footer-nav {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    font-weight: 300;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-motto {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.copyright {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ========================================
   GSAP ANIMATION STATES
   ======================================== */
.anim-reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .section { padding: 7rem 0; }
    .section-manifesto { padding: 8rem 0; }

    .alex-name-display { font-size: clamp(3rem, 10vw, 6rem); }
    .alex-header { margin-bottom: 2.5rem; }
    .alex-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .alex-image-frame { max-width: 400px; margin: 0 auto; }
    .alex-chapters { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; padding-top: 3rem; }

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

    .gpd-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .paths-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .path-card.featured { transform: none; }
    .path-card.featured:hover { transform: translateY(-8px); }

    .orbit-system { width: 440px; height: 440px; }
    .orbit-ring-1 { width: 190px; height: 190px; }
    .orbit-ring-2 { width: 300px; height: 300px; }
    .orbit-ring-3 { width: 410px; height: 410px; }
    .orbit-core { width: 100px; height: 100px; }
    .orbit-core-title { font-size: 0.75rem; }
    @keyframes orbitFloat1 {
        0%   { transform: translate(-50%, -50%) rotate(0deg)   translateX(95px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(95px) rotate(-360deg); }
    }
    @keyframes orbitFloat2 {
        0%   { transform: translate(-50%, -50%) rotate(0deg)   translateX(150px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg); }
    }
    @keyframes orbitFloat3 {
        0%   { transform: translate(-50%, -50%) rotate(0deg)   translateX(205px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(205px) rotate(-360deg); }
    }
    .orbit-legend { grid-template-columns: repeat(2, 1fr); }

    .footer-top { flex-direction: column; gap: 3rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .map-frame { height: 450px; }
}

@media (max-width: 768px) {
    .tubelight-nav {
        top: 0;
        bottom: auto;
        padding-top: 0.8rem;
        padding-bottom: 0;
        width: auto;
    }

    .nav-pill {
        gap: 0.15rem;
        padding: 0.35rem;
    }

    .nav-label { display: none; }
    .nav-icon { display: block; }

    .nav-item {
        padding: 0.6rem 0.8rem;
    }

    .mobile-menu-toggle { display: none; }

    .hero {
        height: auto;
        min-height: 100svh;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn-hero { width: 100%; max-width: 300px; justify-content: center; }

    .gpd-stats { grid-template-columns: 1fr 1fr; }

    .orbit-system { width: 320px; height: 320px; margin-bottom: 3rem; }
    .orbit-ring-1 { width: 150px; height: 150px; }
    .orbit-ring-2 { width: 230px; height: 230px; }
    .orbit-ring-3 { width: 300px; height: 300px; }
    .orbit-core { width: 80px; height: 80px; }
    .orbit-core-title { font-size: 0.65rem; letter-spacing: 0.2em; }
    .orbit-core-sub { font-size: 0.6rem; }
    .orbit-label { font-size: 0.5rem; }
    .orbit-dot { width: 4px; height: 4px; }
    @keyframes orbitFloat1 {
        0%   { transform: translate(-50%, -50%) rotate(0deg)   translateX(75px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(75px) rotate(-360deg); }
    }
    @keyframes orbitFloat2 {
        0%   { transform: translate(-50%, -50%) rotate(0deg)   translateX(115px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(115px) rotate(-360deg); }
    }
    @keyframes orbitFloat3 {
        0%   { transform: translate(-50%, -50%) rotate(0deg)   translateX(150px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg); }
    }
    .orbit-legend { grid-template-columns: 1fr; }

    .footer-nav { flex-direction: column; gap: 2rem; }

    .map-frame { height: 380px; }
}

@media (max-width: 480px) {
    .section { padding: 5rem 0; }
    .container { padding: 0 1.25rem; }

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

    .orbit-system { width: 260px; height: 260px; margin-bottom: 2rem; }
    .orbit-ring-1 { width: 120px; height: 120px; }
    .orbit-ring-2 { width: 190px; height: 190px; }
    .orbit-ring-3 { width: 245px; height: 245px; }
    .orbit-core { width: 65px; height: 65px; }
    .orbit-core-title { font-size: 0.55rem; }
    .orbit-core-sub { display: none; }
    .orbit-dot { width: 3px; height: 3px; }
    @keyframes orbitFloat1 {
        0%   { transform: translate(-50%, -50%) rotate(0deg)   translateX(60px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(60px) rotate(-360deg); }
    }
    @keyframes orbitFloat2 {
        0%   { transform: translate(-50%, -50%) rotate(0deg)   translateX(95px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(95px) rotate(-360deg); }
    }
    @keyframes orbitFloat3 {
        0%   { transform: translate(-50%, -50%) rotate(0deg)   translateX(122px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(122px) rotate(-360deg); }
    }

    .alex-chapters { gap: 1rem; }
    .alex-chapter { padding: 1.5rem 1.2rem; }

    .hero-title { white-space: normal; font-size: clamp(2.2rem, 12vw, 4rem); text-align: center; }

    .gpd-stats { grid-template-columns: 1fr; }

    .nav-item { padding: 0.5rem 0.6rem; }
}
