/* SSETTL.com — Vaporwave Aurora Sidebar */

:root {
    --void-indigo: #0f0a2e;
    --twilight-plum: #2d1b69;
    --neon-fuchsia: #ff71ce;
    --digital-lagoon: #01cdfe;
    --plasma-purple: #b967ff;
    --solar-peach: #fffb96;
    --lavender-white: #e0d6f0;
    --muted-lilac: #8b7faa;
    --frosted-violet: rgba(45, 27, 105, 0.6);
    --warm-magenta: #6b1d5e;
    --teal-deep: #0d4f4f;

    --aurora: linear-gradient(135deg, #01cdfe 0%, #b967ff 25%, #ff71ce 50%, #fffb96 75%, #01cdfe 100%);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

    --sidebar-w: 280px;
    --font-head: 'Jost', 'Raleway', system-ui, sans-serif;
    --font-sub: 'Josefin Sans', 'Work Sans', sans-serif;
    --font-body: 'Work Sans', system-ui, sans-serif;
    --font-mono: 'Space Mono', 'Space', monospace;
}

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

html, body {
    background: var(--void-indigo);
    color: var(--lavender-white);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.75;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(185, 103, 255, 0.10), transparent 60%),
        radial-gradient(ellipse at 70% 100%, rgba(1, 205, 254, 0.08), transparent 55%),
        var(--void-indigo);
    position: relative;
}

/* ---------- Global decorative layers ---------- */

.scanlines {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 1;
    background-image: repeating-linear-gradient(
        to bottom,
        rgba(1, 205, 254, 0.06) 0px,
        rgba(1, 205, 254, 0.06) 1px,
        transparent 1px,
        transparent 4px
    );
    animation: scanDrift 12s linear infinite;
    mix-blend-mode: screen;
}

@keyframes scanDrift {
    from { background-position: 0 0; }
    to   { background-position: 0 -200px; }
}

.grid-floor {
    pointer-events: none;
    position: fixed;
    bottom: -10vh;
    left: 0;
    right: 0;
    height: 60vh;
    perspective: 600px;
    z-index: 0;
    opacity: 0.7;
}

.grid-floor::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(185, 103, 255, 0.18) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(185, 103, 255, 0.18) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: rotateX(70deg);
    transform-origin: bottom;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 80%, transparent 100%);
    animation: gridDrift 8s linear infinite;
}

@keyframes gridDrift {
    from { background-position: 0 0; }
    to   { background-position: 0 60px; }
}

/* ---------- Sidebar ---------- */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-w);
    height: 100vh;
    z-index: 100;
    overflow: hidden;
    border-right: 1px solid rgba(185, 103, 255, 0.25);
    transform: translateX(-100%);
    animation: sidebarSlide 1.4s var(--ease-expo) 1.6s forwards;
}

@keyframes sidebarSlide {
    to { transform: translateX(0); }
}

.sidebar-aurora {
    position: absolute;
    inset: -10%;
    background: var(--aurora);
    background-size: 400% 400%;
    animation: auroraShift 15s ease infinite;
    opacity: 0.55;
    will-change: background-position;
    filter: blur(2px);
}

.sidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 46, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1;
}

@keyframes auroraShift {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.sidebar-inner {
    position: relative;
    z-index: 2;
    padding: 36px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--lavender-white);
}

.brand-glyph {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--solar-peach);
    text-decoration: none;
    margin-bottom: 60px;
}

.brand-glyph svg { color: var(--neon-fuchsia); filter: drop-shadow(0 0 10px rgba(255,113,206,0.6)); }

.brand-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lavender-white);
}

.nav-glyphs {
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex: 1;
}

.glyph {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted-lilac);
    text-decoration: none;
    font-family: var(--font-sub);
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.05em;
    padding: 8px 10px 8px 4px;
    border-radius: 4px;
    transition: color 0.4s var(--ease-expo), transform 0.4s var(--ease-expo);
    animation: glyphPulse 12s ease-in-out infinite;
}

.glyph:nth-child(1) { animation-delay: 0s; }
.glyph:nth-child(2) { animation-delay: 2.4s; }
.glyph:nth-child(3) { animation-delay: 4.8s; }
.glyph:nth-child(4) { animation-delay: 7.2s; }
.glyph:nth-child(5) { animation-delay: 9.6s; }

@keyframes glyphPulse {
    0%, 100% { color: var(--muted-lilac); filter: none; }
    20%      { color: var(--digital-lagoon); filter: drop-shadow(0 0 8px rgba(1,205,254,0.6)); }
    40%      { color: var(--plasma-purple); filter: drop-shadow(0 0 10px rgba(185,103,255,0.6)); }
    60%      { color: var(--neon-fuchsia); filter: drop-shadow(0 0 10px rgba(255,113,206,0.6)); }
    80%      { color: var(--solar-peach); filter: drop-shadow(0 0 8px rgba(255,251,150,0.5)); }
}

.glyph:hover {
    color: var(--lavender-white);
    transform: translateX(4px);
}

.glyph.active {
    color: var(--neon-fuchsia);
    box-shadow: 0 0 24px rgba(255, 113, 206, 0.35), inset 0 0 0 1px rgba(255, 113, 206, 0.4);
}

.glyph-label {
    transform: translateX(-6px);
    opacity: 0;
    transition: transform 0.3s var(--ease-expo), opacity 0.3s var(--ease-expo);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    white-space: nowrap;
}

.glyph:hover .glyph-label,
.glyph.active .glyph-label {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-meta {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--muted-lilac);
}

.sidebar-meta .meta-time { color: var(--neon-fuchsia); }

/* ---------- Main column ---------- */

.main {
    margin-left: var(--sidebar-w);
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.section {
    position: relative;
    min-height: 90vh;
    padding: 12vh 6vw;
    overflow: hidden;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--digital-lagoon);
    margin-bottom: 28px;
}

.section-label .label-num { color: var(--neon-fuchsia); font-weight: 700; }

.section-headline {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lavender-white);
    line-height: 1.05;
    margin-bottom: 28px;
    max-width: 14ch;
    text-shadow: 0 0 30px rgba(185, 103, 255, 0.25);
}

.section-lede {
    font-family: var(--font-sub);
    font-weight: 300;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    color: var(--muted-lilac);
    max-width: 720px;
    margin-bottom: 60px;
}

/* ---------- Section: Void ---------- */

.section-void {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, var(--void-indigo) 0%, #1a1144 100%);
}

.void-aurora {
    position: absolute;
    inset: 0;
    background: var(--aurora);
    background-size: 400% 400%;
    animation: auroraShift 15s ease infinite, voidFadeIn 3s ease forwards;
    opacity: 0;
    mix-blend-mode: overlay;
    will-change: background-position, opacity;
}

@keyframes voidFadeIn {
    to { opacity: 0.55; }
}

.void-glyph-watermark {
    position: absolute;
    font-family: var(--font-head);
    font-size: clamp(280px, 40vw, 520px);
    color: var(--twilight-plum);
    opacity: 0.35;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.void-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.void-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(3.5rem, 12vw, 9rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lavender-white);
    text-shadow:
        0 0 30px rgba(255, 113, 206, 0.4),
        0 0 60px rgba(185, 103, 255, 0.35);
    min-height: 1.2em;
}

.void-title .vchar {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.void-title .vchar.in { opacity: 1; transform: translateY(0); }

.void-sub {
    font-family: var(--font-sub);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--muted-lilac);
    margin-top: 24px;
    opacity: 0;
    transition: opacity 1.2s ease;
    letter-spacing: 0.06em;
}

.void-sub.in { opacity: 1; }

.void-meta {
    margin-top: 60px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--digital-lagoon);
    letter-spacing: 0.3em;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-expo) 4s forwards;
}

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

.horizon-line {
    position: absolute;
    bottom: 28%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, var(--solar-peach) 50%, transparent 100%);
    box-shadow: 0 0 24px var(--solar-peach), 0 0 60px rgba(255, 113, 206, 0.5);
    z-index: 2;
}

.float-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.6;
}

.shape-cube {
    width: 90px; height: 90px;
    border: 1.5px solid var(--digital-lagoon);
    top: 18%; left: 8%;
    transform: rotate(20deg);
    animation: floatA 9s ease-in-out infinite;
    box-shadow: 0 0 24px rgba(1, 205, 254, 0.4);
}

.shape-sphere {
    width: 70px; height: 70px;
    border: 1.5px solid var(--neon-fuchsia);
    border-radius: 50%;
    top: 28%; right: 10%;
    animation: floatB 11s ease-in-out infinite;
    box-shadow: 0 0 28px rgba(255, 113, 206, 0.4);
}

.shape-pyramid {
    width: 0; height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 80px solid transparent;
    bottom: 20%; right: 22%;
    filter: drop-shadow(0 0 14px rgba(185, 103, 255, 0.5));
    animation: floatC 13s ease-in-out infinite;
}

.shape-pyramid::before {
    content: "";
    position: absolute;
    top: 0; left: -50px;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 80px solid var(--plasma-purple);
    opacity: 0.4;
}

@keyframes floatA {
    0%, 100% { transform: rotate(20deg) translateY(0); }
    50%      { transform: rotate(40deg) translateY(-30px); }
}
@keyframes floatB {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-15px, -25px); }
}
@keyframes floatC {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-20px); }
}

/* ---------- Aurora Bar ---------- */

.aurora-bar {
    height: 4px;
    margin: 0 6vw;
    margin-left: calc(var(--sidebar-w) + 6vw);
    overflow: hidden;
    position: relative;
    background: rgba(45, 27, 105, 0.4);
}

.aurora-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--aurora);
    background-size: 400% 400%;
    animation: auroraShift 15s ease infinite;
    transition: width 1.5s var(--ease-expo);
    box-shadow: 0 0 18px rgba(255, 113, 206, 0.5);
}

.aurora-bar.in span { width: 100%; }

/* ---------- Section: Manifesto ---------- */

.section-manifesto {
    background: linear-gradient(180deg, #1a1144 0%, var(--twilight-plum) 50%, #3a1d6b 100%);
}

.kanji-watermark {
    position: absolute;
    top: 5%;
    right: 4%;
    font-family: var(--font-head);
    font-size: clamp(180px, 22vw, 320px);
    color: var(--twilight-plum);
    opacity: 0.45;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    letter-spacing: -0.05em;
}

.hero-breakout {
    margin: 40px -6vw 60px;
    position: relative;
}

.duotone-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255, 113, 206, 0.4);
    border-bottom: 1px solid rgba(255, 113, 206, 0.4);
}

.duotone-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.1) saturate(1.2);
}

.duotone-caption {
    position: absolute;
    bottom: 16px;
    left: 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--solar-peach);
    background: rgba(15, 10, 46, 0.7);
    padding: 6px 12px;
    border: 1px solid rgba(255, 251, 150, 0.3);
}

.manifesto-body {
    max-width: 720px;
    position: relative;
}

.manifesto-body p {
    margin-bottom: 1.6em;
    color: var(--lavender-white);
}

.pull-quote {
    font-family: var(--font-sub);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    color: var(--solar-peach);
    line-height: 1.3;
    margin: 1em 0 1.4em -120px;
    padding-left: 20px;
    border-left: 1px solid var(--neon-fuchsia);
    max-width: 360px;
}

.pull-quote.alt {
    color: var(--digital-lagoon);
    border-left-color: var(--digital-lagoon);
    margin-left: -100px;
    margin-right: 0;
    text-align: right;
    border-left: none;
    border-right: 1px solid var(--digital-lagoon);
    padding-left: 0;
    padding-right: 20px;
    margin-left: auto;
}

.counter {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--neon-fuchsia);
    text-shadow: 0 0 12px rgba(255, 113, 206, 0.5);
    letter-spacing: 0.04em;
    font-size: 1.05em;
    transition: text-shadow 0.5s ease;
}

.counter.done {
    text-shadow: 0 0 20px rgba(255, 113, 206, 0.75), 0 0 40px rgba(255, 113, 206, 0.3);
}

/* ---------- Section: Artifacts ---------- */

.section-artifacts {
    background: linear-gradient(180deg, #3a1d6b 0%, var(--twilight-plum) 50%, var(--warm-magenta) 100%);
}

.artifacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
}

.artifact {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--void-indigo);
    transition: transform 0.5s var(--ease-expo);
}

.artifact::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: var(--aurora);
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: overlay;
}

.artifact::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    border: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.4s ease;
}

.artifact-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.artifact-image svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: filter 0.6s var(--ease-expo);
}

.artifact[data-tone="fuchsia"] .artifact-image::after,
.artifact[data-tone="lagoon"] .artifact-image::after {
    content: "";
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    transition: opacity 0.6s var(--ease-expo);
}

.artifact[data-tone="fuchsia"] .artifact-image::after {
    background: linear-gradient(135deg, var(--void-indigo) 0%, var(--neon-fuchsia) 100%);
}

.artifact[data-tone="lagoon"] .artifact-image::after {
    background: linear-gradient(135deg, var(--void-indigo) 0%, var(--digital-lagoon) 100%);
}

.artifact:hover {
    transform: scale(1.03);
}

.artifact:hover .artifact-image::after {
    opacity: 0;
}

.artifact:hover::before {
    opacity: 0.4;
    animation: auroraShift 8s ease infinite;
}

.artifact:hover::after {
    border-color: var(--neon-fuchsia);
    box-shadow: 0 0 30px rgba(255, 113, 206, 0.5), 0 0 60px rgba(185, 103, 255, 0.25);
}

.artifact figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 18px;
    background: linear-gradient(to top, rgba(15, 10, 46, 0.92), transparent);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--lavender-white);
    z-index: 4;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-expo);
}

.artifact:hover figcaption {
    transform: translateY(0);
}

/* ---------- Section: Signal ---------- */

.section-signal {
    background: linear-gradient(180deg, var(--warm-magenta) 0%, #2a3552 50%, var(--teal-deep) 100%);
    text-align: left;
}

.signal-wrap {
    position: relative;
    height: 540px;
    max-width: 720px;
    margin: 60px auto;
}

.signal-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--digital-lagoon);
    animation: ringPulse 6s ease-in-out infinite;
}

.ring-1 { width: 120px; height: 120px; border-color: var(--neon-fuchsia); animation-delay: 0s; }
.ring-2 { width: 240px; height: 240px; border-color: var(--plasma-purple); animation-delay: 0.5s; }
.ring-3 { width: 360px; height: 360px; border-color: var(--digital-lagoon); animation-delay: 1s; }
.ring-4 { width: 480px; height: 480px; border-color: var(--solar-peach); animation-delay: 1.5s; opacity: 0.6; }

.ring-core {
    width: 24px;
    height: 24px;
    background: var(--neon-fuchsia);
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 30px var(--neon-fuchsia), 0 0 60px rgba(255, 113, 206, 0.5);
    animation: corePulse 6s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50%      { transform: scale(1.1); opacity: 0.85; }
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.4); }
}

.orbit-num {
    position: absolute;
    font-family: var(--font-mono);
    text-align: center;
    color: var(--lavender-white);
    z-index: 4;
}

.orbit-num .counter {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--neon-fuchsia);
}

.orbit-num em {
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--muted-lilac);
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

.orbit-n { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-e { top: 50%; right: 0; transform: translateY(-50%); }
.orbit-s { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-w { top: 50%; left: 0; transform: translateY(-50%); }

.signal-footnote {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted-lilac);
    letter-spacing: 0.14em;
    max-width: 720px;
    margin: 40px auto 0;
}

/* ---------- Section: Departure ---------- */

.section-departure {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--void-indigo);
    position: relative;
    overflow: hidden;
}

.departure-aurora {
    position: absolute;
    inset: 0;
    background: var(--aurora);
    background-size: 400% 400%;
    animation: auroraShift 15s ease infinite;
    opacity: 0;
    transition: opacity 1.6s var(--ease-expo);
    z-index: 1;
}

.section-departure.in .departure-aurora { opacity: 0.85; }

.departure-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding: 0 20px;
}

.departure-headline {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(2.8rem, 7vw, 6rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--void-indigo);
    line-height: 1.05;
    text-shadow:
        0 0 30px rgba(255, 251, 150, 0.6),
        0 0 60px rgba(255, 113, 206, 0.4);
}

.departure-sub {
    font-family: var(--font-sub);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--void-indigo);
    margin-top: 28px;
    opacity: 0.85;
}

.departure-shape {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 50px;
    color: var(--void-indigo);
    text-decoration: none;
    transition: transform 0.5s var(--ease-expo), color 0.4s ease;
    cursor: pointer;
}

.departure-shape svg {
    transition: transform 1.6s var(--ease-expo), filter 0.4s ease;
    filter: drop-shadow(0 0 12px rgba(15, 10, 46, 0.4));
}

.departure-shape:hover {
    color: var(--void-indigo);
    transform: scale(1.05);
}

.departure-shape:hover svg {
    transform: rotate(60deg);
    filter: drop-shadow(0 0 24px rgba(255, 113, 206, 0.7));
}

.departure-link-reveal {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo);
    color: var(--void-indigo);
}

.departure-shape:hover .departure-link-reveal {
    opacity: 1;
    transform: translateY(0);
}

.departure-meta {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--void-indigo);
    opacity: 0.7;
}

/* ---------- Reveal animations (Intersection Observer) ---------- */

.section .section-headline,
.section .section-lede,
.section .section-label,
.section .manifesto-body p,
.section .hero-breakout,
.section .artifacts-grid,
.section .signal-wrap,
.section .signal-footnote {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s var(--ease-expo), transform 1s var(--ease-expo);
}

.section.in .section-headline,
.section.in .section-lede,
.section.in .section-label,
.section.in .manifesto-body p,
.section.in .hero-breakout,
.section.in .artifacts-grid,
.section.in .signal-wrap,
.section.in .signal-footnote {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.section.in .manifesto-body p:nth-child(1) { transition-delay: 0.05s; }
.section.in .manifesto-body p:nth-child(2) { transition-delay: 0.15s; }
.section.in .manifesto-body p:nth-child(3) { transition-delay: 0.25s; }
.section.in .manifesto-body p:nth-child(4) { transition-delay: 0.35s; }
.section.in .manifesto-body p:nth-child(5) { transition-delay: 0.45s; }
.section.in .manifesto-body p:nth-child(6) { transition-delay: 0.55s; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    :root { --sidebar-w: 72px; }

    .brand-text,
    .glyph-label,
    .sidebar-meta { display: none; }

    .sidebar-inner { padding: 24px 12px; align-items: center; }

    .nav-glyphs { align-items: center; }

    .glyph { padding: 10px; justify-content: center; }

    .pull-quote { margin-left: 0 !important; max-width: 100%; padding-left: 16px; }
    .pull-quote.alt { margin-right: 0; padding-right: 16px; text-align: right; }

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

    .signal-wrap { height: 460px; }
    .ring-4 { width: 380px; height: 380px; }
    .ring-3 { width: 290px; height: 290px; }
    .ring-2 { width: 200px; height: 200px; }
    .ring-1 { width: 100px; height: 100px; }
}

@media (max-width: 768px) {
    :root { --sidebar-w: 0px; }

    body { padding-bottom: 64px; }

    .sidebar {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 64px;
        border-right: none;
        border-top: 1px solid rgba(185, 103, 255, 0.35);
        transform: translateY(100%);
        animation: sidebarSlideMobile 1.4s var(--ease-expo) 1.6s forwards;
    }

    @keyframes sidebarSlideMobile {
        to { transform: translateY(0); }
    }

    .sidebar-inner {
        flex-direction: row;
        padding: 8px 16px;
        align-items: center;
        justify-content: space-around;
    }

    .brand-glyph { display: none; }

    .nav-glyphs {
        flex-direction: row;
        gap: 8px;
        flex: 1;
        justify-content: space-around;
    }

    .glyph { padding: 8px; }

    .main { margin-left: 0; }

    .section { padding: 8vh 5vw; }

    .aurora-bar { margin-left: 5vw; margin-right: 5vw; }

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

    .signal-wrap { height: 380px; }
    .ring-4 { width: 300px; height: 300px; }
    .ring-3 { width: 230px; height: 230px; }
    .ring-2 { width: 160px; height: 160px; }
    .ring-1 { width: 80px; height: 80px; }

    .orbit-num .counter { font-size: 1.5rem; }
    .orbit-num em { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001s !important;
        transition-duration: 0.1s !important;
    }
    .void-aurora { opacity: 0.4; }
    .sidebar { transform: translateX(0); }
}
