/* ============================================================
   simulai.xyz — Frozen Aurora in Concrete Monolith
   Neubrutalism + Translucent Frost + Aurora Lights + Art-Deco
   ============================================================ */

:root {
    --void-concrete: #0E0E1A;
    --concrete-deep: #1B1B2F;
    --frost-slab: rgba(200, 210, 230, 0.08);
    --ice-edge: #2A2A42;
    --borealis-core: #6DD5D1;
    --borealis-bloom: #9B72CF;
    --borealis-crest: #E8A0BF;
    --frost-white: #E8E8F0;
    --glacial-gray: #A8B4C8;
    --deep-frost: #5A6178;
    --fracture-pink: #FF6B9D;
    --body-text: #C8CCD8;

    --gutter: clamp(24px, 3vw, 48px);
    --slab-pad: clamp(32px, 5vw, 80px);

    --font-display: 'Poiret One', 'Inter', sans-serif;
    --font-secondary: 'Josefin Sans', 'Inter', sans-serif;
    --font-body: 'Libre Baskerville', 'Inter', serif;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background: var(--void-concrete);
    color: var(--body-text);
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.75;
    min-height: 100vh;
    position: relative;
    opacity: 0;
    animation: bodyFadeIn 200ms ease forwards 100ms;
}

@keyframes bodyFadeIn {
    to { opacity: 1; }
}

/* ============================================================
   AURORA LAYER — Persistent fixed gradient background
   ============================================================ */
.aurora-layer {
    position: fixed;
    inset: 0;
    z-index: -3;
    background: linear-gradient(
        135deg,
        rgba(109, 213, 209, 0.15) 0%,
        rgba(155, 114, 207, 0.12) 35%,
        rgba(232, 160, 191, 0.10) 65%,
        rgba(109, 213, 209, 0.08) 100%
    );
    background-size: 200% 200%;
    animation: aurora-drift 20s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    pointer-events: none;
}

@keyframes aurora-drift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 30% 100%; }
}

/* ============================================================
   AURORA THREADS — middle layer
   ============================================================ */
.aurora-threads {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

.thread {
    stroke-dasharray: 40 800;
    stroke-linecap: round;
    will-change: stroke-dashoffset;
    animation: thread-flow 18s linear infinite;
}

.thread-2 { animation-duration: 22s; animation-delay: -3s; }
.thread-3 { animation-duration: 26s; animation-delay: -7s; }
.thread-4 { animation-duration: 20s; animation-delay: -11s; }
.thread-5 { animation-duration: 24s; animation-delay: -5s; }
.thread-6 { animation-duration: 28s; animation-delay: -9s; }
.thread-fracture { animation-duration: 14s; animation-delay: -2s; }

@keyframes thread-flow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1600; }
}

/* ============================================================
   CONCRETE TEXTURE — full-page noise
   ============================================================ */
.concrete-texture {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    animation: textureFadeIn 1200ms ease forwards 200ms;
    mix-blend-mode: screen;
}

@keyframes textureFadeIn {
    to { opacity: 1; }
}

/* ============================================================
   HEX NAV GLYPH (top-right)
   ============================================================ */
.hex-nav {
    position: fixed;
    top: clamp(20px, 3vw, 40px);
    right: clamp(20px, 3vw, 40px);
    z-index: 100;
    width: 48px;
    height: 48px;
    display: block;
    transform: rotate(0deg);
    opacity: 0;
    animation: hexAppear 600ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1800ms;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1), filter 300ms ease;
    cursor: pointer;
    text-decoration: none;
}

.hex-nav svg {
    display: block;
    filter: drop-shadow(0 0 8px rgba(109, 213, 209, 0.4));
}

.hex-nav:hover {
    transform: rotate(180deg);
    filter: drop-shadow(0 0 16px rgba(109, 213, 209, 0.7));
}

@keyframes hexAppear {
    0% { opacity: 0; transform: rotate(-360deg) scale(0.5); }
    100% { opacity: 1; transform: rotate(0deg) scale(1); }
}

/* ============================================================
   THE MONOLITH HEADER
   ============================================================ */
.monolith {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 65% 35%;
    grid-template-rows: 1fr;
    padding: var(--gutter);
    gap: var(--gutter);
    z-index: 1;
}

.monolith-block {
    position: relative;
    background: rgba(27, 27, 47, 0.55); /* #1B1B2F base concrete */
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 4px solid var(--concrete-deep);
    box-shadow: inset 0 0 0 1px var(--ice-edge);
    padding: var(--slab-pad);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transform: translateX(-110%);
    animation: monolithSlide 800ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards 400ms;
    transition: border-color 300ms ease;
}

.monolith-block::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 4px solid transparent;
    background: linear-gradient(120deg, var(--borealis-core), var(--borealis-bloom), var(--borealis-crest)) border-box;
    -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity 600ms ease;
}

.monolith-block:hover::before {
    opacity: 0.6;
}

@keyframes monolithSlide {
    0% { transform: translateX(-110%); }
    100% { transform: translateX(0); }
}

.monolith-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--deep-frost);
    margin-bottom: clamp(40px, 6vh, 80px);
    opacity: 0;
    animation: fadeUp 800ms ease forwards 1400ms;
}

.meta-line {
    display: block;
}

.site-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.8rem, 11vw, 9rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--frost-white);
    text-shadow: 0 0 40px rgba(109, 213, 209, 0.3), 0 4px 0 rgba(0,0,0,0.4);
    line-height: 0.95;
    margin-bottom: clamp(20px, 3vh, 40px);
    display: flex;
    flex-wrap: wrap;
}

.site-title .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(-8px);
    filter: blur(4px);
    animation: letterStamp 400ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.site-title .letter:nth-child(1) { animation-delay: 1200ms; }
.site-title .letter:nth-child(2) { animation-delay: 1260ms; }
.site-title .letter:nth-child(3) { animation-delay: 1320ms; }
.site-title .letter:nth-child(4) { animation-delay: 1380ms; }
.site-title .letter:nth-child(5) { animation-delay: 1440ms; }
.site-title .letter:nth-child(6) { animation-delay: 1500ms; }
.site-title .letter:nth-child(7) { animation-delay: 1560ms; }

@keyframes letterStamp {
    0% { opacity: 0; transform: translateY(-8px) scale(1.05); filter: blur(4px); }
    60% { opacity: 1; transform: translateY(2px) scale(1); filter: blur(0px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0px); }
}

.monolith-sub {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    line-height: 1.7;
    color: var(--glacial-gray);
    max-width: 38ch;
    opacity: 0;
    animation: fadeUp 800ms ease forwards 2000ms;
}

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

.monolith-frost {
    position: relative;
    background: rgba(200, 210, 230, 0.06);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border: 3px solid var(--ice-edge);
    padding: clamp(20px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    animation: fadeUp 1000ms ease forwards 1800ms;
    overflow: hidden;
}

.monolith-frost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(109, 213, 209, 0.12) 0%,
        rgba(155, 114, 207, 0.08) 50%,
        rgba(232, 160, 191, 0.10) 100%);
    pointer-events: none;
    opacity: 0.9;
    background-size: 200% 200%;
    animation: aurora-drift 24s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.frost-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.frost-label, .frost-status {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: clamp(0.7rem, 0.95vw, 0.85rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--borealis-core);
    display: block;
}

.frost-status {
    color: var(--glacial-gray);
    font-weight: 300;
    align-self: flex-end;
    text-align: right;
}

.frost-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.frost-lines span {
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--borealis-core), var(--borealis-bloom), transparent);
    opacity: 0.4;
    animation: frostPulse 4s ease-in-out infinite;
}

.frost-lines span:nth-child(1) { width: 70%; animation-delay: 0s; }
.frost-lines span:nth-child(2) { width: 90%; animation-delay: 0.5s; align-self: flex-end; }
.frost-lines span:nth-child(3) { width: 50%; animation-delay: 1s; }
.frost-lines span:nth-child(4) { width: 80%; animation-delay: 1.5s; align-self: flex-end; }
.frost-lines span:nth-child(5) { width: 60%; animation-delay: 2s; }

@keyframes frostPulse {
    0%, 100% { opacity: 0.25; transform: scaleX(0.95); }
    50% { opacity: 0.7; transform: scaleX(1); }
}

/* Frost crystal positioning in monolith */
.crystal-tl {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 220px;
    height: 220px;
    pointer-events: none;
    transform: rotate(0deg);
}

/* ============================================================
   HEX SECTION MARKER between monolith and drift
   ============================================================ */
.hex-marker {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: clamp(40px, 6vh, 80px) 0;
    position: relative;
    z-index: 2;
}

.hex-marker svg {
    animation: hexRotate 24s linear infinite;
}

@keyframes hexRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================================
   THE DRIFT — staggered slabs
   ============================================================ */
.drift {
    position: relative;
    width: 100%;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
    z-index: 2;
}

.slab {
    position: relative;
    background: rgba(14, 14, 26, 0.65);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 3px solid var(--ice-edge);
    padding: var(--slab-pad);
    overflow: hidden;
    transition: border-color 300ms ease, transform 400ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 400ms ease;
    opacity: 0;
    transform: translateY(40px);
}

.slab.in-view {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 800ms ease, transform 800ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 300ms ease, box-shadow 300ms ease;
}

.slab:hover {
    border-color: var(--borealis-core);
    box-shadow: 0 0 60px rgba(109, 213, 209, 0.15);
}

.slab-1 {
    grid-column: 1 / span 7;
    margin-top: clamp(40px, 6vh, 100px);
}

.slab-2 {
    grid-column: 5 / span 8;
    margin-top: 60px;
}

.slab-3 {
    grid-column: 2 / span 7;
    margin-top: 40px;
    margin-bottom: clamp(40px, 6vh, 100px);
}

.slab.in-view.left-heavy {
    animation: slideInLeft 900ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.slab.in-view.right-heavy {
    animation: slideInRight 900ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-60px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(60px); }
    100% { opacity: 1; transform: translateX(0); }
}

.slab-index {
    display: inline-block;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: clamp(0.75rem, 1vw, 0.95rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--borealis-core);
    margin-bottom: clamp(24px, 3vh, 40px);
    padding: 6px 14px;
    border: 1.5px solid var(--ice-edge);
    background: rgba(14, 14, 26, 0.4);
}

.slab-index.dashed {
    border-style: dashed;
    border-color: var(--fracture-pink);
    color: var(--fracture-pink);
}

.slab-heading {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--frost-white);
    text-shadow: 0 0 40px rgba(109, 213, 209, 0.3);
    line-height: 1.05;
    margin-bottom: clamp(24px, 3vh, 40px);
    max-width: 14ch;
}

.slab-subhead {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--frost-white);
    text-shadow: 0 0 30px rgba(155, 114, 207, 0.3);
    line-height: 1.15;
    margin-bottom: clamp(20px, 2.5vh, 32px);
}

.slab-body {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.75;
    color: var(--body-text);
    opacity: 0.9;
    max-width: 60ch;
    transition: transform 300ms ease;
}

.slab-body-narrow {
    max-width: 38ch;
    margin-left: auto;
    text-align: left;
}

.slab-body:hover {
    transform: translateY(-2px);
}

/* Slab 2 specific */
.slab-2 .slab-inner {
    margin-left: auto;
    max-width: 70%;
}

.dual-labels {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    margin-bottom: clamp(28px, 3vh, 40px);
}

.josefin-label {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--glacial-gray);
}

.josefin-label-end {
    text-align: right;
    font-weight: 600;
    color: var(--borealis-bloom);
}

.aurora-line {
    display: block;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg,
        var(--borealis-core),
        var(--borealis-bloom),
        var(--borealis-crest));
    opacity: 0.7;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(109, 213, 209, 0.5);
}

/* Slab 3 hex layout */
.slab-hex-wrap {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: start;
}

.slab-hex {
    width: 160px;
    height: 160px;
    animation: hexRotateSlow 36s linear infinite;
}

@keyframes hexRotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Frost crystal corner positioning */
.crystal-corner {
    position: absolute;
    width: 180px;
    height: 180px;
    pointer-events: none;
}

.crystal-tl-2 {
    top: -20px;
    left: -20px;
}

.crystal-br {
    bottom: -20px;
    right: -20px;
}

/* Pulse dot — micro-interaction indicator */
.pulse-dot {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 6px;
    height: 6px;
    background: var(--borealis-core);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(109, 213, 209, 0.4);
    animation: dotBreathe 2s ease-in-out infinite;
}

.pulse-dot-end {
    left: auto;
    right: 24px;
}

@keyframes dotBreathe {
    0%, 100% { transform: scale(1); box-shadow: 0 0 12px rgba(109, 213, 209, 0.4); }
    50% { transform: scale(1.3); box-shadow: 0 0 20px rgba(109, 213, 209, 0.7); }
}

/* ============================================================
   THE FRACTURE ZONE
   ============================================================ */
.fracture {
    position: relative;
    width: 100%;
    margin-top: clamp(60px, 10vh, 140px);
    padding: clamp(80px, 12vh, 160px) var(--gutter);
    z-index: 3;
    overflow: hidden;
}

.fracture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(109, 213, 209, 0.20) 0%,
        rgba(155, 114, 207, 0.18) 35%,
        rgba(255, 107, 157, 0.20) 65%,
        rgba(232, 160, 191, 0.18) 100%);
    pointer-events: none;
    z-index: -1;
    background-size: 200% 200%;
    animation: aurora-drift 16s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.honeycomb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}

.zone-label {
    display: block;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: clamp(0.8rem, 1.1vw, 1rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--fracture-pink);
    margin-bottom: clamp(40px, 5vh, 80px);
    padding-left: clamp(20px, 3vw, 40px);
    border-left: 2px dashed var(--fracture-pink);
    position: relative;
    z-index: 2;
}

.fracture-stack {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
}

.fracture-slab {
    position: relative;
    border-style: dashed;
    border-color: var(--fracture-pink);
    border-width: 3px;
}

.fracture-slab-a {
    grid-column: 2 / span 7;
    z-index: 2;
}

.fracture-slab-b {
    grid-column: 5 / span 7;
    margin-top: -80px;
    z-index: 3;
    transform: translateX(40px);
}

.fracture-text {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    line-height: 1.65;
    color: var(--frost-white);
    opacity: 0.85;
    max-width: 50ch;
}

.fracture-words {
    position: relative;
    z-index: 2;
    margin-top: clamp(80px, 12vh, 160px);
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vh, 48px);
}

.fracture-word {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--frost-white);
    text-shadow: 0 0 50px rgba(255, 107, 157, 0.5), 0 0 80px rgba(109, 213, 209, 0.3);
    line-height: 1;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1), text-shadow 600ms ease;
}

.fracture-word:hover {
    transform: scale(1.03);
    text-shadow: 0 0 60px rgba(255, 107, 157, 0.8), 0 0 100px rgba(109, 213, 209, 0.5);
}

.fw-1 {
    font-size: clamp(2.8rem, 8vw, 7rem);
    text-align: left;
    padding-left: 0;
}

.fw-2 {
    font-size: clamp(3.2rem, 9vw, 8rem);
    text-align: right;
    padding-right: clamp(0px, 4vw, 80px);
    color: var(--fracture-pink);
    text-shadow: 0 0 60px rgba(255, 107, 157, 0.7);
}

.fw-3 {
    font-size: clamp(2.4rem, 7vw, 6rem);
    text-align: left;
    padding-left: clamp(40px, 8vw, 160px);
}

.fw-4 {
    font-size: clamp(3.6rem, 10vw, 9rem);
    text-align: right;
    padding-right: 0;
}

/* ============================================================
   THE TERMINUS
   ============================================================ */
.terminus {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: clamp(80px, 14vh, 200px) var(--gutter);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    overflow: hidden;
}

.terminus::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(109, 213, 209, 0.30) 0%,
        rgba(155, 114, 207, 0.28) 35%,
        rgba(232, 160, 191, 0.30) 65%,
        rgba(109, 213, 209, 0.25) 100%);
    z-index: -1;
    background-size: 250% 250%;
    animation: aurora-drift 18s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.terminus-crystal {
    position: absolute;
    width: 240px;
    height: 240px;
    pointer-events: none;
    z-index: 1;
}

.terminus-crystal-tl { top: 4vh; left: 4vw; }
.terminus-crystal-tr { top: 4vh; right: 4vw; }
.terminus-crystal-bl { bottom: 4vh; left: 4vw; }
.terminus-crystal-br { bottom: 4vh; right: 4vw; }

.terminus-column {
    position: relative;
    z-index: 2;
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(40px, 6vh, 80px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1200ms ease, transform 1200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.terminus-column.in-view {
    opacity: 1;
    transform: translateY(0);
}

.terminus-label {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--borealis-core);
    padding: 8px 20px;
    border: 1.5px solid var(--borealis-core);
    background: rgba(14, 14, 26, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.terminus-statement {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--frost-white);
    text-shadow:
        0 0 40px rgba(109, 213, 209, 0.5),
        0 0 80px rgba(155, 114, 207, 0.3),
        0 0 120px rgba(232, 160, 191, 0.2);
    line-height: 1.2;
}

.terminus-glyph {
    width: 64px;
    height: 64px;
    animation: dotBreathe 2.4s ease-in-out infinite, hexRotateSlow 60s linear infinite;
    filter: drop-shadow(0 0 20px rgba(109, 213, 209, 0.6));
}

.terminus-glyph svg {
    display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .monolith {
        grid-template-columns: 1fr;
        grid-template-rows: 70vh 30vh;
        min-height: 100vh;
    }
    .slab-hex-wrap {
        grid-template-columns: 1fr;
    }
    .slab-hex {
        margin: 0 auto;
    }
    .slab-1, .slab-2, .slab-3 {
        grid-column: 1 / -1;
    }
    .fracture-slab-a, .fracture-slab-b {
        grid-column: 1 / -1;
    }
    .fracture-slab-b {
        margin-top: -40px;
        transform: translateX(20px);
    }
}

@media (max-width: 640px) {
    :root {
        --slab-pad: 28px;
        --gutter: 16px;
    }
    .monolith {
        padding: 16px;
        gap: 16px;
        grid-template-rows: 60vh 30vh;
    }
    .site-title {
        font-size: clamp(2.2rem, 16vw, 4rem);
    }
    .slab-2 .slab-inner {
        max-width: 100%;
        margin-left: 0;
    }
    .slab-body-narrow {
        margin-left: 0;
    }
    .dual-labels {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .aurora-line {
        height: 2px;
    }
    .fracture-word {
        text-align: left !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .terminus-crystal {
        width: 140px;
        height: 140px;
    }
    .hex-nav {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }
    .hex-nav svg {
        width: 36px;
        height: 36px;
    }
}
