#fx-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2000;
}

#intro-overlay {
    position: fixed;
    inset: 0;
    background-color: #0A0A0C;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
    padding: 24px;
    text-align: center;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.9s ease;
}

body.has-page-intro {
    overflow: hidden;
}

body.has-page-intro #main-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.985);
    transform-origin: top center;
}

.logo-container {
    width: 180px;
    height: 180px;
    position: relative;
    max-width: 56vw;
    max-height: 56vw;
    will-change: transform, opacity;
}

.logo-container svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hint {
    margin-top: 60px;
    font-size: 0.55rem;
    letter-spacing: 0.8em;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    text-align: center;
    padding-left: 0.8em;
    word-break: break-word;
    will-change: opacity, transform;
}

.portrait-divider,
.page-divider,
.node,
.node-label,
.node-dot,
.node::before,
.contact-panel,
.contact-panel::before {
    will-change: opacity, transform, box-shadow;
}

.portrait-divider,
.page-divider {
    display: block;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(124,77,255,0.35),
        rgba(0,229,255,0.35),
        rgba(255,64,129,0.3),
        rgba(124,77,255,0.35)
    );
    box-shadow:
        0 -10px 20px rgba(124, 77, 255, 0.15),
        0 -6px 12px rgba(0, 229, 255, 0.20),
        0 6px 12px rgba(255, 64, 129, 0.50);
}

.portrait-divider {
    align-self: stretch;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-bottom: 28px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    opacity: 0;
    transform: scaleX(0.94);
    transform-origin: center;
}

.page-divider {
    width: 100%;
    opacity: 0.84;
    transform: none;
    box-shadow:
        0 -8px 18px rgba(124, 77, 255, 0.12),
        0 -4px 10px rgba(0, 229, 255, 0.12),
        0 4px 10px rgba(255, 64, 129, 0.12);
}

.page-hero .page-divider {
    width: min(100%, var(--content-max-width));
}

.home-lower-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-top: 24px;
}

.home-lower-left {
    flex: 1 1 auto;
    min-width: 0;
}

.home-manifest-block {
    width: min(100%, 340px);
    margin-bottom: 28px;
    padding: 0;
    transition: transform 0.28s ease;
}

.home-manifest-copy {
    margin: 0;
    white-space: pre-wrap;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.64rem;
    line-height: 1.75;
    letter-spacing: 0.075em;
    color: rgba(26, 26, 29, 0.58);
    text-align: left;
    text-wrap: pretty;
    transition: color 0.28s ease, opacity 0.28s ease;
}

.home-manifest-block:hover,
.home-manifest-block:focus-within {
    transform: translateX(4px);
}

.home-manifest-block:hover .home-manifest-copy,
.home-manifest-block:focus-within .home-manifest-copy {
    color: rgba(26, 26, 29, 0.68);
}

.home-manifest-char {
    transition: color 0.18s ease;
}

.home-manifest-char.is-typed {
    color: rgba(26, 26, 29, 0.58);
}

.home-manifest-char.is-active {
    color: var(--dynamic-accent);
}

body.has-manifest-hover .home-manifest-copy {
    color: rgba(26, 26, 29, 0.68);
}

.home-manifest-copy p,
.home-manifest-copy .manifest-line {
    margin: 0;
}

.home-contact-row {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
}

.home-contact-panel {
    position: relative;
    width: 320px;
    padding: 16px 16px 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(124, 77, 255, 0.18);
    color: #1a1a1d;
    overflow: hidden;
}

.home-contact-panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: conic-gradient(
        from 0deg,
        rgba(0, 229, 255, 0.9),
        rgba(124, 77, 255, 0.9),
        rgba(255, 64, 129, 0.9),
        rgba(0, 229, 255, 0.9)
    );
    opacity: 0;
    z-index: 0;
    animation: homeContactBorderSpin 4s linear infinite;
    transition: opacity 0.25s ease;
}

.home-contact-panel::after {
    content: "";
    position: absolute;
    inset: 1px;
    background: rgba(255, 255, 255, 0.96);
    z-index: 1;
}

.home-contact-panel > * {
    position: relative;
    z-index: 2;
}

.home-contact-panel:hover::before,
.home-contact-panel:focus-within::before {
    opacity: 1;
}

@keyframes homeContactBorderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.home-contact-panel .contact-kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 0.52rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(26, 26, 29, 0.42);
}

.home-contact-panel label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26, 26, 29, 0.42);
}

.home-contact-panel .contact-to {
    background: rgba(26, 26, 29, 0.06);
    border: 1px solid rgba(26, 26, 29, 0.12);
    color: rgba(26, 26, 29, 0.65);
    cursor: not-allowed;
}

.home-contact-panel input,
.home-contact-panel textarea {
    width: 100%;
    border: 1px solid rgba(26, 26, 29, 0.08);
    background: rgba(255, 255, 255, 0.72);
    color: #1a1a1d;
    padding: 9px 11px;
    margin-bottom: 9px;
    font: inherit;
    font-size: 0.7rem;
    line-height: 1.5;
    resize: none;
    outline: none;
    box-sizing: border-box;
}

.home-contact-panel input:focus,
.home-contact-panel textarea:focus {
    border-color: rgba(255, 64, 129, 0.35);
}

.home-contact-panel .contact-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 15px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 6px;
    align-self: flex-start;
}

.home-contact-panel .contact-status {
    min-height: 1.2em;
    margin-top: 10px;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    color: rgba(26, 26, 29, 0.46);
}

body.home-page:not(.is-home-lower-ready) .home-lower-left,
body.home-page:not(.is-home-lower-ready) .home-contact-row {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 18px, 0);
}

.page-divider.is-muted {
    opacity: 0.55;
    box-shadow:
        0 -6px 14px rgba(124, 77, 255, 0.08),
        0 -4px 8px rgba(0, 229, 255, 0.08),
        0 4px 8px rgba(255, 64, 129, 0.08);
}

.system-media {
    position: relative;
    width: min(100%, 760px);
    max-width: 100%;
    margin-top: 4px;
}

.system-media-frame {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid color-mix(in srgb, var(--line-color) 82%, transparent);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.015), transparent 62%),
        radial-gradient(circle at 14% 24%,
            color-mix(in srgb, var(--dynamic-accent) 16%, transparent) 0%,
            rgba(0, 229, 255, 0.05) 28%,
            transparent 64%);
    transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.system-media-frame:hover {
    border-top-color: color-mix(in srgb, var(--dynamic-accent) 20%, var(--line-color));
    border-bottom-color: color-mix(in srgb, var(--dynamic-accent) 12%, var(--line-color));
    box-shadow:
        0 0 18px color-mix(in srgb, var(--dynamic-accent) 8%, transparent),
        0 10px 26px rgba(0, 0, 0, 0.06);
}

.system-media-stage {
    position: relative;
    display: grid;
    align-items: center;
    aspect-ratio: 16 / 9;
    min-height: 180px;
    padding: 20px 0;
    overflow: hidden;
}

.system-block.is-hero .system-media-stage {
    min-height: 230px;
    padding: 28px 0;
}

.system-block.is-hero .system-media-frame {
    box-shadow:
        0 0 26px color-mix(in srgb, var(--dynamic-accent) 10%, transparent),
        0 12px 34px rgba(0, 0, 0, 0.08);
}

.system-media.is-real .system-media-frame {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.018), transparent 58%),
        radial-gradient(circle at 50% 0%,
            color-mix(in srgb, var(--dynamic-accent) 12%, transparent) 0%,
            rgba(0, 229, 255, 0.05) 26%,
            transparent 62%),
        linear-gradient(180deg, rgba(5, 7, 11, 0.86), rgba(5, 7, 11, 0.3));
}

.system-media.is-real .system-media-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 22%),
        linear-gradient(180deg, transparent 76%, rgba(5, 7, 11, 0.26));
    opacity: 0.72;
}

.system-media img,
.system-media video {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: brightness(0.92) contrast(1.05) saturate(0.95);
}

.system-media.is-real img {
    object-position: 50% 8%;
    filter: brightness(0.9) contrast(1.08) saturate(0.92);
}

.is-measures .system-media.is-real img,
.is-measures-proof.system-media.is-real img {
    object-position: 50% 4%;
    transform: scale(1.028);
    transform-origin: center top;
}

.system-media video {
    background: #09090b;
}

.system-visual {
    position: relative;
    overflow: hidden;
}

.system-visual .system-media-frame::before,
.system-visual .system-media-frame::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124,77,255,0.22), rgba(0,229,255,0.18), transparent);
    pointer-events: none;
}

.system-visual .system-media-frame::before {
    top: 28%;
}

.system-visual .system-media-frame::after {
    bottom: 28%;
}

.system-visual-grid {
    position: relative;
    display: grid;
    gap: 16px;
    width: min(100%, 92%);
    margin: 0 auto;
}

.system-visual-node {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted-text);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.system-visual-node::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, rgba(124,77,255,0.55), rgba(0,229,255,0.42), rgba(255,64,129,0.32));
    box-shadow: 0 0 10px rgba(124, 77, 255, 0.14);
}

.system-visual-node span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.system-signal-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.54);
    text-decoration: none;
    transition: color 0.24s ease, text-shadow 0.24s ease, transform 0.24s ease;
}

.system-signal-link::before {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg,
        color-mix(in srgb, var(--dynamic-accent) 38%, transparent),
        transparent);
    transition: width 0.24s ease, background 0.24s ease;
}

.system-signal-link:hover,
.system-signal-link:focus-visible {
    color: var(--dynamic-accent);
    text-shadow: 0 0 10px color-mix(in srgb, var(--dynamic-accent) 18%, transparent);
    transform: translateX(2px);
}

.system-signal-link:hover::before,
.system-signal-link:focus-visible::before {
    width: 42px;
    background: linear-gradient(90deg,
        color-mix(in srgb, var(--dynamic-accent) 64%, transparent),
        transparent);
}

.detail-note {
    display: grid;
    gap: 12px;
    padding-top: 6px;
    max-width: 58ch;
}

.detail-note p {
    font-size: 0.82rem;
    line-height: 1.9;
    color: var(--muted-text);
}

.system-detail-template .system-highlights {
    max-width: 60ch;
}

.system-visual-node span::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--dynamic-accent) 68%, white);
    box-shadow:
        0 0 0 4px color-mix(in srgb, var(--dynamic-accent) 12%, transparent),
        0 0 14px color-mix(in srgb, var(--dynamic-accent) 24%, transparent);
}

.page-hero-side .aside-card,
.page-banner-card {
    width: min(100%, 360px);
}

body.about-page:not(.is-page-ready) .page-hero-copy > *,
body.about-page:not(.is-page-ready) .page-hero-side,
body.about-page:not(.is-page-ready) .page-divider-wrap,
body.about-page:not(.is-page-ready) .systems-intro,
body.about-page:not(.is-page-ready) .system-block,
body.about-page:not(.is-page-ready) .page-closure,
body.systems-page:not(.is-page-ready) .page-hero-copy > *,
body.systems-page:not(.is-page-ready) .page-hero-side,
body.systems-page:not(.is-page-ready) .page-divider-wrap,
body.systems-page:not(.is-page-ready) .systems-intro,
body.systems-page:not(.is-page-ready) .system-block,
body.systems-page:not(.is-page-ready) .page-closure {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 18px, 0);
}

body.home-page:not(.is-home-visual-ready) .portrait-left img,
body.home-page:not(.is-home-visual-ready) .portrait-right img {
    opacity: 0;
    visibility: hidden;
}

.portrait-split {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.portrait-split picture,
.portrait-split img {
    display: block;
    width: 100%;
    height: auto;
}

.portrait-split img {
    max-height: calc(100vh - 235px);
    object-fit: contain;
    object-position: center top;
}

.portrait-left {
    z-index: 1;
}

.portrait-left img {
    clip-path: inset(0 var(--portrait-seam-left-clip) 0 0);
    opacity: 0;
}

.portrait-right {
    z-index: 2;
}

.portrait-right img {
    clip-path: inset(0 0 0 var(--portrait-seam-right-clip));
    opacity: 0;
}

.node-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    opacity: 0;
    transform: translateY(8px) scale(0.98);
}

.node::before {
    content: '';
    display: block;
    height: 1px;
    width: clamp(64px, 7vw, 110px);
    background: linear-gradient(
        90deg,
        var(--node-color, rgba(124,77,255,0.3)),
        rgba(0,229,255,0.4),
        rgba(255,64,129,0.3)
    );
    box-shadow: 0 0 12px var(--node-color, rgba(124,77,255,0.2));
    opacity: 0.9;
    transform: scaleX(0.88);
    transform-origin: left center;
    transition: all 0.28s ease;
}

.node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--node-color, rgba(124,77,255,0.8));
    box-shadow:
        0 0 0 4px rgba(124,77,255,0.1),
        0 0 10px var(--node-color, rgba(124,77,255,0.22)),
        0 0 16px rgba(0,229,255,0.14);
    transition: all 0.28s ease;
    flex: 0 0 auto;
    opacity: 0.25;
    transform: scale(0.8);
}

.node-label {
    font-size: clamp(0.54rem, 0.46rem + 0.22vw, 0.68rem);
    letter-spacing: clamp(0.16em, 0.12em + 0.18vw, 0.24em);
    color: rgba(26,26,29,0.62);
    transition: all 0.28s ease;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-4px);
}

.node:hover::before {
    width: clamp(72px, 7.5vw, 108px);
    background: linear-gradient(
        90deg,
        rgba(124,77,255,0.42),
        rgba(0,229,255,0.55),
        rgba(255,64,129,0.42)
    );
    box-shadow:
        0 0 14px rgba(124,77,255,0.20),
        0 0 24px rgba(0,229,255,0.18),
        0 0 24px rgba(255,64,129,0.14);
}

.node:hover .node-dot {
    transform: scale(1.35);
    background: white;
    box-shadow:
        0 0 0 7px color-mix(in srgb, var(--node-color) 40%, transparent),
        0 0 20px var(--node-color),
        0 0 34px rgba(0,229,255,0.3);
}

.node:hover .node-label {
    color: var(--node-color);
    text-shadow: 0 0 10px var(--node-color);
}

.node-signal {
    gap: 10px;
    --node-color: rgba(26,26,29,0.7);
    flex-direction: row-reverse;
}

.node-signal::before {
    width: clamp(76px, 8vw, 120px);
    opacity: 0.92;
    transform-origin: right center;
    background: linear-gradient(
        270deg,
        color-mix(in srgb, var(--node-color, rgba(124,77,255,0.3)) 88%, white),
        rgba(0,229,255,0.72),
        rgba(255,64,129,0.62)
    );
    box-shadow:
        0 0 14px color-mix(in srgb, var(--node-color, rgba(124,77,255,0.2)) 75%, transparent),
        0 0 22px rgba(0,229,255,0.18);
}

.node-signal:hover::before {
    width: clamp(62px, 6.5vw, 96px);
    background: linear-gradient(
        270deg,
        rgba(124,77,255,0.62),
        rgba(0,229,255,0.82),
        rgba(255,64,129,0.68)
    );
    box-shadow:
        0 0 16px rgba(124,77,255,0.24),
        0 0 28px rgba(0,229,255,0.22),
        0 0 28px rgba(255,64,129,0.18);
}

.node-signal .node-label {
    font-size: clamp(0.54rem, 0.46rem + 0.22vw, 0.68rem);
    letter-spacing: clamp(0.16em, 0.12em + 0.18vw, 0.24em);
    opacity: 0.62;
    text-align: right;
}

.node-signal:hover .node-label {
    opacity: 1;
}

.node-future {
    opacity: 0.45;
    position: relative;
    pointer-events: auto;
    cursor: default;
}

.node-future::after {
    content: 'LOCKED';
    font-size: 0.5rem;
    margin-left: 10px;
    opacity: 0.4;
    letter-spacing: 0.2em;
    color: rgba(26,26,29,0.52);
}

.node-future .node-dot {
    background: rgba(124,77,255,0.35);
    box-shadow:
        0 0 0 4px rgba(124,77,255,0.08),
        0 0 10px rgba(124,77,255,0.12);
}

.node-future .node-label {
    color: rgba(26,26,29,0.45);
}

.node-future:hover {
    opacity: 0.7;
}

.node-future:hover .node-label {
    color: rgba(26,26,29,0.7);
}

.node-initiate {
    top: 33%;
    right: 1.1%;
}

.node-about {
    top: 56%;
    right: 0.2%;
}

.node-threads {
    top: 40.5%;
    left: 23.5%;
}

.node-instagram {
    top: 58.75%;
    left: 23%;
}

.node-about::before {
    width: clamp(46px, 5vw, 74px);
}

.node-about:hover::before {
    width: clamp(60px, 6vw, 90px);
}

.terminal-btn {
    width: 100%;
    max-width: 700px;
    min-height: 64px;
    padding: 18px 24px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.introvert-note {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 0.6rem;
    color: #AAA;
    font-style: italic;
    line-height: 1.85;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    --modal-glow-x: 50%;
    --modal-glow-y: 18%;
    --modal-shift-x: 0px;
    --modal-shift-y: 0px;
    position: relative;
    overflow: hidden;
    width: min(100%, 520px);
    background: rgba(249, 249, 251, 0.96);
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
    padding: 24px 22px 20px;
    transform: translateY(12px) scale(0.985);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.modal-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background: radial-gradient(circle at var(--modal-glow-x) var(--modal-glow-y),
        color-mix(in srgb, var(--dynamic-accent) 18%, transparent) 0%,
        rgba(0, 229, 255, 0.08) 34%,
        rgba(255, 64, 129, 0.06) 54%,
        transparent 72%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.modal-overlay.is-open .modal-card {
    transform: translate3d(var(--modal-shift-x), var(--modal-shift-y), 0) scale(1);
}

.modal-overlay.is-open .modal-card.is-reactive {
    border-color: color-mix(in srgb, var(--dynamic-accent) 24%, rgba(0, 0, 0, 0.08));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.14),
        0 0 28px color-mix(in srgb, var(--dynamic-accent) 14%, transparent);
}

.modal-overlay.is-open .modal-card.is-reactive::before {
    opacity: 1;
}

.modal-kicker {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    opacity: 0.38;
    margin-bottom: 14px;
}

.modal-card h3 {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 700;
}

.modal-card p {
    font-size: 0.74rem;
    line-height: 1.9;
    color: rgba(26, 26, 29, 0.72);
    margin-bottom: 18px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.modal-actions .terminal-btn {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 0.72rem;
}

.modal-actions .terminal-btn:hover {
    box-shadow:
        0 0 16px color-mix(in srgb, var(--dynamic-accent) 26%, transparent),
        0 0 28px rgba(0, 229, 255, 0.10);
}

#page-transition {
    position: fixed;
    inset: 0;
    background: #0A0A0C;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.42s ease, visibility 0.42s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: opacity 0.48s cubic-bezier(0.22, 0.8, 0.24, 1), visibility 0.48s cubic-bezier(0.22, 0.8, 0.24, 1);
}

#page-transition::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 18%, rgba(124,77,255,0.12), rgba(0,229,255,0.06) 24%, transparent 58%);
    opacity: 0;
    transition: opacity 0.36s ease;
}

#page-transition.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

#page-transition.active::before {
    opacity: 1;
}

.transition-beam {
    position: absolute;
    left: 50%;
    top: calc(50% - 18px);
    width: min(220px, 54vw);
    height: 1px;
    transform: translateX(-50%) scaleX(0.72);
    transform-origin: center;
    background: linear-gradient(90deg, transparent, rgba(124,77,255,0.62), rgba(0,229,255,0.68), rgba(255,64,129,0.34), transparent);
    box-shadow:
        0 0 16px rgba(124,77,255,0.16),
        0 0 24px rgba(0,229,255,0.12);
    opacity: 0;
    transition: transform 0.42s cubic-bezier(0.22, 0.8, 0.24, 1), opacity 0.42s cubic-bezier(0.22, 0.8, 0.24, 1);
}

#page-transition.active .transition-beam {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.transition-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    text-align: center;
    padding-left: 0.34em;
}

.cursor-orb {
    position: fixed;
    left: 0;
    top: 0;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    background: radial-gradient(circle,
        color-mix(in srgb, var(--dynamic-accent) 26%, transparent) 0%,
        rgba(0, 229, 255, 0.10) 42%,
        rgba(255, 64, 129, 0.08) 68%,
        transparent 100%);
    filter: blur(22px);
    transition: opacity 0.35s ease;
}

body.has-cursor-orb .cursor-orb {
    opacity: 1;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 0.62rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.34);
}

.aside-card {
    border: 1px solid var(--line-color);
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

body.about-page .eyebrow,
body.core-page .eyebrow {
    color: var(--soft-text);
}

body.about-page .aside-card,
body.core-page .aside-card {
    background: var(--surface-color);
}

body.about-page .aside-item,
body.core-page .aside-item {
    border-bottom-color: var(--line-color);
}

body.about-page .aside-item span,
body.core-page .aside-item span {
    color: var(--muted-text);
}

body.about-page .page-divider,
body.core-page .page-divider {
    opacity: 0.58;
    box-shadow: none;
}

body.about-page.has-cursor-orb .cursor-orb,
body.core-page.has-cursor-orb .cursor-orb {
    opacity: 0.34;
}

.prose-lede {
    max-width: 62ch;
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    line-height: 1.78;
    color: var(--text-color);
}

.prose-emphasis {
    position: relative;
    padding-left: 18px;
    color: color-mix(in srgb, var(--text-color) 84%, var(--muted-text));
    font-weight: 500;
    letter-spacing: 0.02em;
}

.prose-emphasis::before {
    content: '';
    position: absolute;
    top: 0.42em;
    bottom: 0.42em;
    left: 0;
    width: 2px;
    background: linear-gradient(
        180deg,
        rgba(124, 97, 255, 0.72),
        rgba(139, 198, 255, 0.62),
        rgba(255, 153, 204, 0.58)
    );
}

body.initiate-page .investment-table-wrap {
    width: 100%;
    overflow-x: auto;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
}

body.initiate-page .investment-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    color: var(--muted-text);
}

body.initiate-page .investment-table th,
body.initiate-page .investment-table td {
    padding: 18px 16px;
    border-bottom: 1px solid var(--line-color);
    text-align: left;
    vertical-align: top;
}

body.initiate-page .investment-table th {
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--soft-text);
    font-weight: 500;
}

body.initiate-page .investment-table td {
    font-size: 0.78rem;
    line-height: 1.8;
}

body.initiate-page .investment-table td:first-child,
body.initiate-page .investment-table td:last-child {
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 0.04em;
}

body.initiate-page .investment-table tr {
    transition: background-color 0.18s ease, color 0.18s ease;
}

body.initiate-page .investment-table tbody tr:hover {
    background: color-mix(in srgb, var(--dynamic-accent) 5%, transparent);
}

body.initiate-page .investment-table tbody tr:last-child td {
    border-bottom: none;
}

body.initiate-page .table-note {
    max-width: 64ch;
}

.aside-card.is-active {
    border-color: color-mix(in srgb, var(--dynamic-accent) 42%, var(--line-color));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}

.aside-label {
    display: block;
    margin-bottom: 16px;
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.34);
}

.aside-list {
    display: grid;
    gap: 14px;
}

.aside-item {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aside-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.aside-item strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-color);
    margin-bottom: 6px;
}

.aside-item span {
    display: block;
    font-size: 0.7rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.56);
}

body.about-page .terminal-btn,
body.systems-page .terminal-btn {
    width: auto;
    max-width: none;
    padding: 12px 18px;
    border: 1px solid var(--dynamic-accent);
    color: var(--dynamic-accent);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    background: transparent;
    min-height: 48px;
    white-space: nowrap;
    box-shadow: 0 0 0 rgba(124, 77, 255, 0);
}

body.about-page .terminal-btn,
body.core-page .terminal-btn {
    transition:
        transform 0.18s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease,
        opacity 0.22s ease;
}

body.about-page .terminal-btn:hover,
body.systems-page .terminal-btn:hover {
    transform: translateY(-1px);
    background: var(--dynamic-accent);
    color: white;
    box-shadow: 0 0 15px color-mix(in srgb, var(--dynamic-accent) 32%, transparent);
}

body.about-page .terminal-btn:hover,
body.about-page .terminal-btn:focus-visible,
body.core-page .terminal-btn:hover,
body.core-page .terminal-btn:focus-visible {
    transform: translateY(-1px);
    color: var(--text-color);
    opacity: 0.78;
    text-shadow: none;
    box-shadow: none;
}

body.about-page .terminal-btn:hover,
body.about-page .terminal-btn:focus-visible,
body.core-page .terminal-btn:hover,
body.core-page .terminal-btn:focus-visible {
    background: color-mix(in srgb, var(--dynamic-accent) 7%, transparent);
    border-color: color-mix(in srgb, var(--dynamic-accent) 36%, var(--line-color));
}

.system-index-item {
    opacity: 0.72;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.system-index-item .system-title {
    font-size: 0.92em;
    line-height: 1.5;
}

.system-index-item .body-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.58);
}

.system-index-item .system-signal-link {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    opacity: 0.7;
}

.system-index-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.system-block.is-hero {
    margin-bottom: 48px;
}

.system-block.is-hero {
    margin-bottom: 48px;
}

.systems-index-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.system-index-item {
    padding: 20px 24px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.25s ease;
    position: relative;
}

.system-index-item:hover {
    border-color: rgba(0,255,255,0.4);
    transform: translateX(6px);
    background: rgba(255,255,255,0.02);
}

.system-index-item .system-title {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 6px;
}

.system-actions {
    margin-top: 10px;
}

.system-signal-link {
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0.6;
}

.system-index-item:hover .system-signal-link {
    opacity: 1;
}

.system-index-item {
    position: relative;
    overflow: hidden;
}

/* gradient border layer */
.system-index-item::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;

    background: conic-gradient(
        from 0deg,
        #00ffff,
        #7f5cff,
        #ff3cac,
        #00ffff
    );

    opacity: 0;
    z-index: 0;
    transition: opacity 0.3s ease;

    animation: rotateBorder 4s linear infinite;
}

/* inner mask (so it looks like border only) */
.system-index-item::after {
    content: "";
    position: absolute;
    inset: 1px;
    background: #0b0b0f; /* your page bg */
    z-index: 1;
}

/* bring content above layers */
.system-index-item > * {
    position: relative;
    z-index: 2;
}

/* activate on hover */
.system-index-item:hover::before {
    opacity: 1;
}

/* animation */
@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
