/* ============================================
   archetypic.dev - Seapunk Depth Descent
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Triadic Palette */
    --abyssal-teal: #0A6E6E;
    --bioluminescent-cyan: #00E5CC;
    --mineral-gold: #B8860B;
    --sediment-amber: #D4A84B;
    --trench-magenta: #8B2252;
    --coral-rose: #C7547D;
    --basalt-black: #0B0E13;
    --pelagic-navy: #121B2E;
    --surface-slate: #1C2B3A;
    --seafoam-white: #E8F4F0;
    --silt-gray: #8A9BA8;

    /* Dynamic scroll properties (updated by JS) */
    --scroll-depth: 0;
    --blur-bg: 12px;
    --blur-mid: 3px;
    --blur-fg: 0px;
    --mouse-x: 0;
    --mouse-y: 0;

    /* Sidebar width */
    --sidebar-width: 280px;

    /* Easing */
    --ease-underwater: cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-width: none;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: var(--seafoam-white);
    background: var(--basalt-black);
    overflow-x: hidden;
}

/* Hidden SVG filters */
.svg-filters {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* --- Sidebar / Depth Gauge --- */
#sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    z-index: 100;
    background: linear-gradient(
        to bottom,
        var(--surface-slate) 0%,
        var(--abyssal-teal) 30%,
        var(--pelagic-navy) 60%,
        var(--basalt-black) 100%
    );
    transition: background 600ms var(--ease-underwater);
    overflow: hidden;
}

#sidebar-noise {
    position: absolute;
    inset: 0;
    filter: url(#noiseFilter);
    opacity: 0.05;
    background: var(--silt-gray);
    pointer-events: none;
    transition: opacity 600ms var(--ease-underwater);
}

#sidebar-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}

/* Site glyph */
#site-glyph {
    width: 40px;
    height: 40px;
    margin-bottom: 3rem;
    opacity: 0.9;
}

#site-glyph svg {
    width: 100%;
    height: 100%;
}

/* Depth gauge navigation */
#depth-gauge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
    padding: 2rem 0;
}

.depth-line {
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 50%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(0, 229, 204, 0.3) 0%,
        rgba(0, 229, 204, 0.1) 100%
    );
    transform: translateX(-50%);
}

.depth-node {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 0;
    text-decoration: none;
    cursor: pointer;
}

.node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 229, 204, 0.4);
    background: transparent;
    transition: all 600ms var(--ease-underwater);
    flex-shrink: 0;
}

.depth-node.active .node-dot {
    background: rgba(0, 229, 204, 0.6);
    border-color: var(--bioluminescent-cyan);
    box-shadow: 0 0 12px rgba(0, 229, 204, 0.4), 0 0 24px rgba(0, 229, 204, 0.15);
    animation: nodePulse 3s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% { box-shadow: 0 0 12px rgba(0, 229, 204, 0.4), 0 0 24px rgba(0, 229, 204, 0.15); }
    50% { box-shadow: 0 0 18px rgba(0, 229, 204, 0.6), 0 0 36px rgba(0, 229, 204, 0.25); }
}

.node-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--silt-gray);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 400ms var(--ease-underwater);
    white-space: nowrap;
}

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

.depth-node.active .node-label {
    color: var(--bioluminescent-cyan);
}

/* --- Main Content Area --- */
#main-content {
    margin-left: var(--sidebar-width);
    width: calc(100vw - var(--sidebar-width));
    position: relative;
}

/* --- Stratum (shared) --- */
.stratum {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stratum-bg-layer {
    position: absolute;
    inset: -20px;
    filter: blur(var(--blur-bg));
    z-index: 0;
    pointer-events: none;
}

.stratum-content {
    position: relative;
    z-index: 5;
    padding: clamp(2rem, 6vw, 5rem);
    max-width: 1100px;
    width: 100%;
}

/* --- Transition Zones --- */
.transition-zone {
    height: 80px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(199, 84, 125, 0.03) 50%,
        transparent 100%
    );
}

/* --- Watermark Glyphs --- */
.watermark-glyph {
    position: absolute;
    width: 20vw;
    height: 20vw;
    right: -2vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.08;
    stroke: var(--silt-gray);
    fill: none;
    pointer-events: none;
}

/* --- Bioluminescent Particles --- */
.particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--bioluminescent-cyan);
    opacity: 0;
    animation: particleDrift linear infinite;
}

@keyframes particleDrift {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: var(--particle-opacity, 0.3);
    }
    90% {
        opacity: var(--particle-opacity, 0.3);
    }
    100% {
        transform: translateY(var(--drift-y, 100vh)) translateX(var(--drift-x, 10px));
        opacity: 0;
    }
}

/* --- 3D Artifacts (shared) --- */
.artifact-container {
    position: absolute;
    z-index: 3;
    filter: blur(var(--blur-mid));
    pointer-events: none;
}

.artifact-perspective {
    perspective: 800px;
    transform-style: preserve-3d;
}

.artifact {
    transform-style: preserve-3d;
    animation: artifactRotate 30s linear infinite;
}

@keyframes artifactRotate {
    from { transform: rotateY(0deg) rotateX(calc(var(--mouse-y) * 5deg)) rotateZ(calc(var(--mouse-x) * 3deg)); }
    to { transform: rotateY(360deg) rotateX(calc(var(--mouse-y) * 5deg)) rotateZ(calc(var(--mouse-x) * 3deg)); }
}

/* --- Sediment Lines --- */
.sediment-line {
    width: 60%;
    height: 1px;
    margin: 2.5rem auto;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--mineral-gold) 30%,
        var(--mineral-gold) 70%,
        transparent 100%
    );
    opacity: 0.5;
}

.sediment-line.magenta-line {
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--trench-magenta) 30%,
        var(--trench-magenta) 70%,
        transparent 100%
    );
}

/* --- Blur Reveal (shared) --- */
.blur-reveal {
    filter: blur(6px);
    opacity: 0.3;
    transition: filter 1200ms var(--ease-underwater), opacity 1200ms var(--ease-underwater);
}

.blur-reveal.revealed {
    filter: blur(0px);
    opacity: 1;
}

/* ===================================================
   STRATUM 1: SURFACE
   =================================================== */
.stratum-surface {
    background: var(--surface-slate);
    min-height: 100vh;
}

.stratum-surface .stratum-bg-layer {
    background: radial-gradient(
        ellipse 60% 50% at 50% 10%,
        rgba(0, 229, 204, 0.08) 0%,
        transparent 70%
    );
}

/* Entry animation */
.stratum-surface .stratum-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    animation: surfaceEntry 1.5s var(--ease-underwater) forwards;
}

@keyframes surfaceEntry {
    0% {
        filter: blur(20px);
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        filter: blur(0px);
        opacity: 1;
        transform: translateY(0);
    }
}

.site-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    font-size: clamp(2.5rem, 8vw, 7rem);
    letter-spacing: 0.15em;
    color: var(--seafoam-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.site-tagline {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--mineral-gold);
    max-width: 600px;
    line-height: 1.6;
    font-variation-settings: 'WONK' 1;
}

/* Sphere artifact */
.artifact-sphere {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.sphere {
    width: 300px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
}

.sphere-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 204, 0.15);
    transform-style: preserve-3d;
}

.sphere-ring-1 { transform: rotateY(0deg); }
.sphere-ring-2 { transform: rotateY(36deg); }
.sphere-ring-3 { transform: rotateY(72deg); }
.sphere-ring-4 { transform: rotateY(108deg); }
.sphere-ring-5 { transform: rotateY(144deg); }

.sphere-highlight {
    position: absolute;
    top: 20%;
    left: 25%;
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 40% 40%,
        rgba(184, 134, 11, 0.2) 0%,
        transparent 70%
    );
}

/* ===================================================
   STRATUM 2: THERMOCLINE
   =================================================== */
.stratum-thermocline {
    background: var(--pelagic-navy);
    min-height: 100vh;
}

.stratum-thermocline .stratum-bg-layer {
    background: linear-gradient(
        to bottom,
        var(--surface-slate) 0%,
        var(--pelagic-navy) 20%,
        var(--pelagic-navy) 100%
    );
}

.two-column {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.col-wide {
    flex: 6;
    min-width: 0;
}

.col-narrow {
    flex: 4;
    min-width: 0;
    position: relative;
}

.stratum-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--seafoam-white);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.body-text {
    color: var(--seafoam-white);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pull-quote {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--mineral-gold);
    line-height: 1.6;
    padding-left: 1.5rem;
    border-left: 2px solid var(--sediment-amber);
    font-variation-settings: 'WONK' 1;
}

.inline-quote {
    border-left: none;
    padding-left: 0;
    text-align: center;
    margin-top: 2.5rem;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

/* Helix artifact */
.artifact-helix {
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 350px;
}

.helix {
    width: 200px;
    height: 350px;
    position: relative;
    transform-style: preserve-3d;
}

.helix-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1.5px solid transparent;
    border-radius: 50%;
}

.helix-strand-a {
    border-color: rgba(0, 229, 204, 0.2);
    transform: rotateX(75deg) translateZ(40px);
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
}

.helix-strand-b {
    border-color: rgba(0, 229, 204, 0.15);
    transform: rotateX(75deg) translateZ(-40px);
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
}

.helix-rung {
    position: absolute;
    left: 25%;
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 229, 204, 0.1), rgba(184, 134, 11, 0.2), rgba(0, 229, 204, 0.1));
}

.helix-rung-1 { top: 15%; transform: rotateY(20deg); }
.helix-rung-2 { top: 30%; transform: rotateY(40deg); }
.helix-rung-3 { top: 50%; transform: rotateY(0deg); }
.helix-rung-4 { top: 65%; transform: rotateY(-20deg); }
.helix-rung-5 { top: 80%; transform: rotateY(-40deg); }

/* ===================================================
   STRATUM 3: MESOPELAGIC
   =================================================== */
.stratum-mesopelagic {
    background: linear-gradient(to bottom, var(--pelagic-navy), #0E1524);
    min-height: 120vh;
}

.stratum-mesopelagic .stratum-bg-layer {
    background: radial-gradient(
        ellipse 80% 60% at 30% 50%,
        rgba(10, 110, 110, 0.06) 0%,
        transparent 70%
    );
}

.mesopelagic-content {
    max-width: 800px;
}

.mesopelagic-content .stratum-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

/* Icosahedron artifact */
.artifact-icosahedron {
    left: 60%;
    top: 30%;
    width: 250px;
    height: 250px;
}

.icosahedron {
    width: 250px;
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
}

.ico-face {
    position: absolute;
    width: 0;
    height: 0;
    transform-style: preserve-3d;
}

.ico-face-1 {
    left: 50%;
    top: 20%;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(10, 110, 110, 0.08);
    transform: translateX(-50%) rotateX(10deg) translateZ(20px);
}

.ico-face-2 {
    left: 30%;
    top: 40%;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 78px solid rgba(10, 110, 110, 0.06);
    transform: rotateY(72deg) translateZ(15px);
}

.ico-face-3 {
    left: 55%;
    top: 35%;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(10, 110, 110, 0.05);
    transform: rotateY(144deg) translateZ(25px);
}

.ico-face-4 {
    left: 35%;
    top: 50%;
    border-left: 48px solid transparent;
    border-right: 48px solid transparent;
    border-bottom: 82px solid rgba(10, 110, 110, 0.07);
    transform: rotateY(216deg) translateZ(10px);
}

.ico-face-5 {
    left: 45%;
    top: 25%;
    border-left: 42px solid transparent;
    border-right: 42px solid transparent;
    border-bottom: 72px solid rgba(10, 110, 110, 0.04);
    transform: rotateY(288deg) translateZ(18px);
}

.ico-face-6 {
    left: 40%;
    top: 55%;
    border-left: 46px solid transparent;
    border-right: 46px solid transparent;
    border-bottom: 80px solid rgba(10, 110, 110, 0.06);
    transform: rotateX(-30deg) translateZ(12px);
}

.ico-edge {
    position: absolute;
    height: 1px;
    transform-origin: 0 0;
}

.ico-edge-1 {
    top: 20%;
    left: 25%;
    width: 120px;
    background: linear-gradient(to right, transparent, rgba(0, 229, 204, 0.25), transparent);
    transform: rotate(30deg);
}

.ico-edge-2 {
    top: 30%;
    left: 45%;
    width: 100px;
    background: linear-gradient(to right, transparent, rgba(0, 229, 204, 0.2), transparent);
    transform: rotate(-45deg);
}

.ico-edge-3 {
    top: 55%;
    left: 30%;
    width: 110px;
    background: linear-gradient(to right, transparent, rgba(0, 229, 204, 0.15), transparent);
    transform: rotate(60deg);
}

.ico-edge-4 {
    top: 70%;
    left: 40%;
    width: 90px;
    background: linear-gradient(to right, transparent, rgba(0, 229, 204, 0.2), transparent);
    transform: rotate(-20deg);
}

.ico-highlight {
    position: absolute;
    top: 30%;
    left: 35%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 229, 204, 0.1) 0%,
        transparent 70%
    );
}

/* ===================================================
   STRATUM 4: BATHYPELAGIC
   =================================================== */
.stratum-bathypelagic {
    background: var(--basalt-black);
    min-height: 100vh;
}

.stratum-bathypelagic .stratum-bg-layer {
    background: radial-gradient(
        ellipse 50% 40% at 50% 50%,
        rgba(18, 27, 46, 0.5) 0%,
        var(--basalt-black) 70%
    );
}

.bathypelagic-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.bold-phrase {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--seafoam-white);
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.bold-phrase.coral-accent {
    border-left: 3px solid var(--coral-rose);
    padding-left: 1.5rem;
}

/* Torus artifact */
.artifact-torus {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    opacity: 0.4;
}

.torus {
    width: 220px;
    height: 220px;
    position: relative;
    transform-style: preserve-3d;
}

.torus-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 204, 0.08);
    transform-style: preserve-3d;
}

.torus-ring-1 { transform: rotateX(90deg) translateZ(0px); width: 220px; height: 220px; }
.torus-ring-2 { transform: rotateX(90deg) rotateY(30deg) translateZ(0px); width: 200px; height: 200px; top: 10px; left: 10px; }
.torus-ring-3 { transform: rotateX(90deg) rotateY(60deg) translateZ(0px); width: 180px; height: 180px; top: 20px; left: 20px; }
.torus-ring-4 { transform: rotateX(90deg) rotateY(90deg) translateZ(0px); width: 160px; height: 160px; top: 30px; left: 30px; }
.torus-ring-5 { transform: rotateX(90deg) rotateY(120deg) translateZ(0px); width: 140px; height: 140px; top: 40px; left: 40px; }
.torus-ring-6 { transform: rotateX(90deg) rotateY(150deg) translateZ(0px); width: 120px; height: 120px; top: 50px; left: 50px; }

/* ===================================================
   STRATUM 5: ABYSSAL
   =================================================== */
.stratum-abyssal {
    background: var(--basalt-black);
    min-height: 100vh;
}

.stratum-abyssal .stratum-bg-layer {
    background: var(--basalt-black);
}

.abyssal-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.abyssal-statement {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-style: normal;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--mineral-gold);
    max-width: 700px;
    line-height: 1.5;
    font-variation-settings: 'WONK' 1;
}

.abyss-fade {
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--basalt-black));
    margin-top: 4rem;
}

/* Spiral shell artifact */
.artifact-shell {
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
}

.shell {
    width: 280px;
    height: 280px;
    position: relative;
    transform-style: preserve-3d;
    animation: artifactRotateSlow 60s linear infinite;
}

@keyframes artifactRotateSlow {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.shell-whorl {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 204, 0.12);
    transform-style: preserve-3d;
}

.shell-whorl-1 {
    width: 280px; height: 280px;
    top: 0; left: 0;
    transform: rotateX(60deg);
}

.shell-whorl-2 {
    width: 220px; height: 220px;
    top: 30px; left: 30px;
    transform: rotateX(60deg) rotateZ(30deg);
    border-color: rgba(0, 229, 204, 0.1);
}

.shell-whorl-3 {
    width: 170px; height: 170px;
    top: 55px; left: 55px;
    transform: rotateX(60deg) rotateZ(60deg);
    border-color: rgba(0, 229, 204, 0.08);
}

.shell-whorl-4 {
    width: 125px; height: 125px;
    top: 77px; left: 77px;
    transform: rotateX(60deg) rotateZ(90deg);
    border-color: rgba(0, 229, 204, 0.06);
}

.shell-whorl-5 {
    width: 85px; height: 85px;
    top: 97px; left: 97px;
    transform: rotateX(60deg) rotateZ(120deg);
    border-color: rgba(0, 229, 204, 0.05);
}

.shell-whorl-6 {
    width: 50px; height: 50px;
    top: 115px; left: 115px;
    transform: rotateX(60deg) rotateZ(150deg);
    border-color: rgba(0, 229, 204, 0.04);
}

.shell-highlight {
    position: absolute;
    top: 25%;
    left: 30%;
    width: 40%;
    height: 40%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 40% 40%,
        rgba(184, 134, 11, 0.08) 0%,
        transparent 70%
    );
}

/* ===================================================
   RESPONSIVE
   =================================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --sidebar-width: 56px;
    }

    .node-label {
        display: none;
    }

    .two-column {
        flex-direction: column;
    }

    .col-narrow {
        order: -1;
    }

    .watermark-glyph {
        width: 30vw;
        height: 30vw;
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --sidebar-width: 0px;
    }

    #sidebar {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 56px;
        flex-direction: row;
        z-index: 200;
        background: linear-gradient(
            to right,
            var(--surface-slate),
            var(--pelagic-navy),
            var(--basalt-black)
        );
    }

    #sidebar-inner {
        flex-direction: row;
        padding: 0 1rem;
        justify-content: space-between;
        align-items: center;
    }

    #site-glyph {
        width: 28px;
        height: 28px;
        margin-bottom: 0;
        margin-right: 0.5rem;
    }

    #depth-gauge {
        flex-direction: row;
        padding: 0;
        gap: 0;
        flex: 1;
        justify-content: space-around;
    }

    .depth-line {
        display: none;
    }

    .depth-node {
        padding: 0.5rem;
    }

    .node-label {
        display: none;
    }

    #main-content {
        margin-left: 0;
        width: 100vw;
        padding-bottom: 56px;
    }

    .site-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .bold-phrase {
        font-size: clamp(1.2rem, 5vw, 2rem);
    }

    .artifact-container {
        display: none;
    }

    .watermark-glyph {
        width: 40vw;
        height: 40vw;
    }
}
