/* ============================================
   interplanetary.quest — styles.css
   Muji-space-naturalism · Hexagonal Atlas
   ============================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
    --void-mantle: #0E0C09;
    --basalt-core: #2B2520;
    --mineral-gold: #D4A853;
    --dust-beige: #BFB8A8;
    --moss-signal: #6B8F71;
    --worn-leather: #8B7E6A;
    --terracotta: #C4956A;
    --deep-earth: #1A1611;

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    --hex-size: clamp(180px, 20vw, 320px);
    --hex-gap: clamp(8px, 1.2vw, 16px);
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--void-mantle);
    color: var(--dust-beige);
    font-family: var(--font-body);
    font-size: clamp(14px, 1.1vw, 18px);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* --- BLOB FIELD (background organic shapes) --- */
.blob-field {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.06;
    will-change: transform;
}
.blob-a { width: 600px; height: 600px; background: var(--mineral-gold); top: -10%; left: -5%; animation: blobDrift 40s ease-in-out infinite alternate; }
.blob-b { width: 500px; height: 500px; background: var(--moss-signal); top: 30%; right: -10%; animation: blobDrift 50s ease-in-out infinite alternate-reverse; }
.blob-c { width: 400px; height: 400px; background: var(--terracotta); bottom: 20%; left: 20%; animation: blobDrift 45s ease-in-out infinite alternate; }
.blob-d { width: 350px; height: 350px; background: var(--dust-beige); bottom: -5%; right: 30%; animation: blobDrift 55s ease-in-out infinite alternate-reverse; }

@keyframes blobDrift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.1); }
    100% { transform: translate(-20px, 50px) scale(0.95); }
}

/* --- SCAN OVERLAY --- */
.scan-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
}
.scan-overlay.active { opacity: 1; }
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--mineral-gold);
    opacity: 0.4;
    box-shadow: 0 0 20px var(--mineral-gold);
}

/* --- ORBITAL RING NAV --- */
.orbital-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 12px 0;
    background: linear-gradient(180deg, rgba(14,12,9,0.95) 0%, rgba(14,12,9,0) 100%);
    pointer-events: none;
}
.orbital-track {
    display: flex;
    justify-content: center;
    gap: 4px;
    pointer-events: all;
}
.orbit-hex {
    position: relative;
    width: 40px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.orbit-hex:hover { transform: scale(1.15); }
.orbit-hex .hex-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.orbit-hex .hex-border {
    fill: none;
    stroke: var(--worn-leather);
    stroke-width: 1.5;
    transition: stroke 0.4s, fill 0.4s;
}
.orbit-hex:hover .hex-border,
.orbit-hex.active .hex-border {
    stroke: var(--mineral-gold);
    fill: rgba(212,168,83,0.08);
}
.orbit-glyph {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: var(--worn-leather);
    transition: color 0.4s;
}
.orbit-hex:hover .orbit-glyph,
.orbit-hex.active .orbit-glyph {
    color: var(--mineral-gold);
}

/* Tooltip */
.orbit-hex::after {
    content: attr(data-label);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mineral-gold);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    padding-top: 4px;
}
.orbit-hex:hover::after,
.orbit-hex.active::after { opacity: 1; }

/* --- ATLAS MAIN --- */
.atlas {
    position: relative;
    z-index: 1;
}

/* --- SECTION BASE --- */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vh, 120px) clamp(20px, 4vw, 80px);
    position: relative;
}

/* --- META STRIP (core) --- */
.meta-strip {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--worn-leather);
    opacity: 0.6;
    z-index: 2;
}

/* --- CORE STAGE --- */
.core-stage {
    position: relative;
    width: min(600px, 80vw);
    height: min(600px, 80vw);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

/* Core hex */
.core-hex {
    position: relative;
    width: clamp(200px, 28vw, 340px);
    height: clamp(230px, 32vw, 390px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.core-hex-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.core-gradient {
    position: absolute;
    inset: 8%;
    clip-path: polygon(50% 2%, 97% 27%, 97% 88%, 50% 98%, 3% 88%, 3% 27%);
    background: radial-gradient(ellipse at 40% 40%, rgba(212,168,83,0.12), rgba(107,143,113,0.06), transparent 70%);
}
.core-illustration {
    position: relative;
    width: 70%;
    height: 70%;
    z-index: 1;
    color: var(--dust-beige);
}
.core-readout {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 2;
}
.readout-row {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--worn-leather);
    opacity: 0.8;
}

/* Satellites */
.satellite {
    position: absolute;
    width: clamp(60px, 8vw, 100px);
    height: clamp(69px, 9.2vw, 115px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    animation: satFadeIn 0.8s ease forwards;
}
.satellite .hex-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.satellite-label {
    position: relative;
    z-index: 1;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--worn-leather);
}
.satellite-data {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--mineral-gold);
    opacity: 0.6;
}

/* Satellite positions (around core hex) */
.satellite-1 { top: 2%; left: 50%; transform: translate(-50%, 0); animation-delay: 0.5s; }
.satellite-2 { top: 22%; right: 8%; animation-delay: 0.6s; }
.satellite-3 { bottom: 22%; right: 8%; animation-delay: 0.7s; }
.satellite-4 { bottom: 2%; left: 50%; transform: translate(-50%, 0); animation-delay: 0.8s; }
.satellite-5 { bottom: 22%; left: 8%; animation-delay: 0.9s; }
.satellite-6 { top: 22%; left: 8%; animation-delay: 1.0s; }

@keyframes satFadeIn {
    from { opacity: 0; transform: translate(-50%, 10px) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
.satellite-1, .satellite-4 { animation-name: satFadeIn; }
.satellite-2, .satellite-3, .satellite-5, .satellite-6 {
    animation-name: satFadeInSide;
}
@keyframes satFadeInSide {
    from { opacity: 0; scale: 0.9; }
    to { opacity: 1; scale: 1; }
}

/* Orbit traces */
.orbit-trace {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.orbit-trace ellipse {
    stroke: var(--basalt-core);
    stroke-width: 0.5;
    opacity: 0.4;
}

/* --- CORE HEADER --- */
.core-header {
    text-align: center;
    max-width: 640px;
    z-index: 2;
}
.eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--worn-leather);
    margin-bottom: 16px;
}
.display {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dust-beige);
    line-height: 1.05;
    margin-bottom: 20px;
}
.display-alt {
    color: var(--mineral-gold);
}
.lede {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.2vw, 18px);
    color: var(--worn-leather);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

/* Scroll cue */
.scroll-cue {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.cue-text {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--worn-leather);
    opacity: 0.6;
}
.cue-line {
    width: 1px;
    height: 40px;
    background: var(--worn-leather);
    opacity: 0.3;
    animation: cuePulse 2s ease-in-out infinite;
}
@keyframes cuePulse {
    0%, 100% { opacity: 0.15; transform: scaleY(0.6); }
    50% { opacity: 0.5; transform: scaleY(1); }
}

/* --- PLANET SECTIONS --- */
.planet-section {
    padding-top: 100px;
}
.planet-header {
    text-align: left;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 40px;
}
.planet-header.align-right {
    text-align: right;
}
.planet-index {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--worn-leather);
    display: block;
    margin-bottom: 8px;
}
.planet-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dust-beige);
    line-height: 1.1;
    margin-bottom: 8px;
}
.planet-subtitle {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mineral-gold);
    opacity: 0.7;
}

/* --- HONEYCOMB CLUSTERS --- */
.honeycomb-cluster {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--hex-gap);
    max-width: 1100px;
    width: 100%;
}
.honeycomb-cluster.offset-left {
    padding-left: clamp(0px, 5vw, 80px);
}

/* --- HEX CELLS --- */
.hex-cell {
    position: relative;
    width: var(--hex-size);
    height: calc(var(--hex-size) * 1.15);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hex-cell.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.hex-cell .hex-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hex borders */
.hex-border {
    fill: none;
    stroke: var(--basalt-core);
    stroke-width: 1;
    transition: stroke 0.6s ease;
}
.hex-border-draw {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 1.2s ease;
}
.hex-cell.visible .hex-border-draw,
.belt-hex.visible .hex-border-draw,
.terminus.visible .hex-border-draw {
    stroke-dashoffset: 0;
}
.core-hex .hex-border-draw {
    stroke-dashoffset: 0;
    animation: hexDraw 2s ease forwards;
}
@keyframes hexDraw {
    from { stroke-dashoffset: 600; }
    to { stroke-dashoffset: 0; }
}

.hex-cell:hover .hex-border {
    stroke: var(--mineral-gold);
}

/* Hex content */
.hex-content {
    position: relative;
    z-index: 2;
    padding: clamp(16px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}
.hex-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mineral-gold);
    margin-bottom: 6px;
}
.hex-body {
    font-family: var(--font-body);
    font-size: clamp(12px, 1vw, 15px);
    line-height: 1.65;
    color: var(--dust-beige);
    opacity: 0.85;
}
.hex-note {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--worn-leather);
    opacity: 0.7;
}

/* Data cells */
.data-key {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--worn-leather);
}
.data-val {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--dust-beige);
    letter-spacing: 0.04em;
}
.data-unit {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--worn-leather);
    text-transform: uppercase;
}
.data-div {
    width: 24px;
    height: 1px;
    background: var(--basalt-core);
    margin: 6px auto;
}

/* Large hex */
.hex-large {
    width: calc(var(--hex-size) * 1.4);
    height: calc(var(--hex-size) * 1.4 * 1.15);
}

/* Hex gradients */
.hex-gradient {
    position: absolute;
    inset: 4%;
    clip-path: polygon(50% 2%, 97% 27%, 97% 88%, 50% 98%, 3% 88%, 3% 27%);
    z-index: 0;
}
.gradient-mercury { background: radial-gradient(ellipse at 40% 40%, rgba(139,126,106,0.2), rgba(43,37,32,0.3), transparent 75%); }
.gradient-mercury-2 { background: linear-gradient(135deg, rgba(139,126,106,0.15), rgba(43,37,32,0.2)); }
.gradient-venus { background: radial-gradient(ellipse at 50% 50%, rgba(212,168,83,0.18), rgba(196,149,106,0.1), transparent 75%); }
.gradient-venus-2 { background: linear-gradient(135deg, rgba(212,168,83,0.12), rgba(196,149,106,0.15)); }
.gradient-earth { background: radial-gradient(ellipse at 45% 45%, rgba(107,143,113,0.2), rgba(43,37,32,0.15), transparent 75%); }
.gradient-earth-2 { background: linear-gradient(135deg, rgba(107,143,113,0.15), rgba(43,37,32,0.2)); }
.gradient-mars { background: radial-gradient(ellipse at 45% 50%, rgba(196,149,106,0.22), rgba(139,126,106,0.1), transparent 75%); }
.gradient-mars-2 { background: linear-gradient(135deg, rgba(196,149,106,0.18), rgba(139,126,106,0.12)); }
.gradient-jupiter { background: radial-gradient(ellipse at 50% 50%, rgba(212,168,83,0.15), rgba(196,149,106,0.1), transparent 75%); }
.gradient-jupiter-2 { background: linear-gradient(135deg, rgba(212,168,83,0.1), rgba(139,126,106,0.15)); }
.gradient-saturn { background: radial-gradient(ellipse at 50% 50%, rgba(212,168,83,0.18), rgba(191,184,168,0.08), transparent 75%); }
.gradient-saturn-2 { background: linear-gradient(135deg, rgba(212,168,83,0.12), rgba(191,184,168,0.1)); }
.gradient-uranus { background: radial-gradient(ellipse at 50% 50%, rgba(107,143,113,0.15), rgba(139,126,106,0.08), transparent 75%); }
.gradient-uranus-2 { background: linear-gradient(135deg, rgba(107,143,113,0.1), rgba(139,126,106,0.12)); }
.gradient-neptune { background: radial-gradient(ellipse at 50% 50%, rgba(107,143,113,0.2), rgba(43,37,32,0.15), transparent 75%); }
.gradient-neptune-2 { background: linear-gradient(135deg, rgba(107,143,113,0.15), rgba(43,37,32,0.18)); }

/* Topo pattern overlay */
.hex-topo {
    position: absolute;
    inset: 4%;
    clip-path: polygon(50% 2%, 97% 27%, 97% 88%, 50% 98%, 3% 88%, 3% 27%);
    z-index: 1;
    background:
        repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg 8deg, rgba(191,184,168,0.03) 8deg 10deg);
    opacity: 0.5;
}

/* Hex illustrations */
.hex-illustration {
    position: relative;
    z-index: 2;
    width: 65%;
    height: 65%;
    color: var(--dust-beige);
}
.hex-illustration.small {
    width: 50%;
    height: auto;
}

/* Illustration strokes */
.illo-path {
    stroke: var(--dust-beige);
    stroke-width: 1.5;
    fill: none;
    opacity: 0.7;
}
.illo-annot {
    stroke: var(--worn-leather);
    stroke-width: 0.8;
    opacity: 0.5;
}
.illo-tick { opacity: 0.6; }
.illo-crater {
    stroke: var(--dust-beige);
    stroke-width: 1;
    fill: none;
    opacity: 0.5;
}

/* Drifter hex */
.hex-drifter {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}
.hex-drifter.visible {
    opacity: 0.7;
}
.drift-label {
    position: relative;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--worn-leather);
    opacity: 0.7;
    margin-top: 4px;
}

/* --- BELT SECTIONS --- */
.belt-section {
    min-height: 60vh;
}
.belt-header {
    text-align: center;
    max-width: 520px;
    margin-bottom: 40px;
}
.belt-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mineral-gold);
    display: block;
    margin-bottom: 12px;
}
.belt-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dust-beige);
    margin-bottom: 12px;
}
.belt-body {
    font-family: var(--font-body);
    font-size: clamp(13px, 1vw, 16px);
    color: var(--worn-leather);
    line-height: 1.7;
}

/* Belt field */
.belt-field {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 600px;
}
.wide-field {
    max-width: 800px;
}
.belt-hex {
    width: clamp(50px, 8vw, 90px);
    height: clamp(57px, 9.2vw, 103px);
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.belt-hex.visible {
    opacity: 0.5;
}
.belt-hex .hex-svg {
    width: 100%;
    height: 100%;
}
.belt-hex .hex-border {
    stroke: var(--basalt-core);
    stroke-width: 1.5;
}

/* Glitch effect for belts */
.belt-section.glitching .belt-hex {
    animation: hexGlitch 0.15s steps(2) 3;
}
@keyframes hexGlitch {
    0% { transform: translate(0,0); }
    25% { transform: translate(-3px, 2px); }
    50% { transform: translate(2px, -1px); }
    75% { transform: translate(-1px, -2px); }
    100% { transform: translate(0,0); }
}
.belt-section.glitching .belt-header {
    animation: textGlitch 0.2s steps(3) 2;
}
@keyframes textGlitch {
    0% { transform: translate(0,0); filter: none; }
    33% { transform: translate(4px, 0); filter: hue-rotate(20deg); }
    66% { transform: translate(-2px, 0); filter: hue-rotate(-20deg); }
    100% { transform: translate(0,0); filter: none; }
}

/* --- TERMINUS --- */
.terminus {
    min-height: 80vh;
    padding-bottom: 40px;
}
.terminus-frame {
    position: relative;
    width: min(700px, 90vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.terminus-border {
    width: clamp(200px, 30vw, 300px);
    height: auto;
    margin-bottom: 24px;
}
.terminus-border .hex-border {
    stroke: var(--worn-leather);
    stroke-width: 1;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 2s ease;
}
.terminus.visible .terminus-border .hex-border {
    stroke-dashoffset: 0;
}
.terminus-content {
    max-width: 480px;
}
.terminus-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mineral-gold);
    display: block;
    margin-bottom: 12px;
    opacity: 0.8;
}
.terminus-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dust-beige);
    margin-bottom: 16px;
}
.terminus-body {
    font-family: var(--font-body);
    font-size: clamp(13px, 1.1vw, 17px);
    color: var(--worn-leather);
    line-height: 1.7;
    margin-bottom: 24px;
}
.terminus-readout {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--worn-leather);
    opacity: 0.6;
}
.terminus-illustration {
    width: min(400px, 80vw);
    margin-top: 32px;
    opacity: 0.5;
}
.terminus-illustration .illo-path {
    stroke: var(--worn-leather);
    stroke-width: 1;
}

/* --- FOOTER --- */
.footer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(43,37,32,0.4);
    text-align: center;
    width: 100%;
    max-width: 600px;
}
.footer-line {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--worn-leather);
    margin-bottom: 6px;
}
.footer-line.dim {
    opacity: 0.4;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    :root {
        --hex-size: clamp(140px, 42vw, 200px);
    }
    .orbital-track { gap: 2px; }
    .orbit-hex { width: 32px; height: 37px; }
    .orbit-glyph { font-size: 11px; }
    .meta-strip { gap: 12px; font-size: 8px; flex-wrap: wrap; }
    .core-stage { width: 90vw; height: 90vw; }
    .honeycomb-cluster { gap: 6px; }
    .honeycomb-cluster.offset-left { padding-left: 0; }
    .hex-large {
        width: calc(var(--hex-size) * 1.2);
        height: calc(var(--hex-size) * 1.2 * 1.15);
    }
    .satellite { display: none; }
    .terminus-readout { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    :root {
        --hex-size: clamp(120px, 70vw, 260px);
    }
    .honeycomb-cluster {
        flex-direction: column;
        align-items: center;
    }
}
