﻿```css
/* =========================================================
   KASHU KÔJI — VITO / REDO
   COMPLETE STYLESHEET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    background: #050505;
}

body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(120, 100, 130, .10),
            transparent 45%
        ),
        radial-gradient(
            ellipse at 90% 60%,
            rgba(70, 70, 90, .07),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #090909 0%,
            #050505 55%,
            #0a0a0a 100%
        );
    color: #d6d3d3;
    font-family: "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}


/* =========================================================
   ATMOSPHERE
   ========================================================= */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
    opacity: .035;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            #ffffff 3px
        );
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .035;
    background-image:
        linear-gradient(
            rgba(255,255,255,.18) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.18) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle,
            transparent 30%,
            rgba(0,0,0,.55) 100%
        );
    z-index: 40;
}


/* =========================================================
   HEADER
   ========================================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    background:
        linear-gradient(
            rgba(3,3,3,.85),
            transparent
        );
}

.logo {
    color: #d8d5d0;
    text-decoration: none;
    font-size: .8rem;
    letter-spacing: .28rem;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: #777;
    text-decoration: none;
    font-size: .65rem;
    letter-spacing: .25rem;
    transition: color .4s ease;
}

nav a:hover {
    color: #ddd;
}


/* =========================================================
   MAIN
   ========================================================= */

main {
    position: relative;
    z-index: 1;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 100vh;
    margin: 18px;
    padding: 120px 8vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;

    border-radius: 18px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 65vh;
    background:
        linear-gradient(
            transparent,
            #555,
            transparent
        );
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    width: min(70vw, 800px);
    height: min(70vw, 800px);
    background-image:
        url("vito-watermark.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .075;
    filter:
        grayscale(1)
        contrast(1.3);
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: -2;
    pointer-events: none;
}

.signal,
.section-number {
    color: #777;
    font-size: .65rem;
    letter-spacing: .42rem;
}

.signal {
    margin-bottom: 2rem;
    animation:
        pulse 4s ease-in-out infinite;
}

.hero h1 {
    font-size:
        clamp(4rem, 12vw, 11rem);
    line-height: .82;
    font-weight: 200;
    letter-spacing: .12em;
    color: #dedbd6;
}

.hero h1 span {
    color: #8d8983;
}

.subtitle {
    margin-top: 2rem;
    color: #777;
    font-size: .65rem;
    letter-spacing: .5rem;
}

.intro {
    margin-top: 3rem;
    max-width: 520px;
    color: #85827e;
    font-size: .9rem;
    line-height: 1.9;
}

.enter {
    margin-top: 3.5rem;
    color: #aaa;
    text-decoration: none;
    font-size: .65rem;
    letter-spacing: .3rem;
    transition:
        all .4s ease;
}

.enter:hover {
    color: #fff;
    letter-spacing: .4rem;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    min-height: 100vh;
    margin: 18px;
    padding: 15vh 12vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;

    border-top:
        1px solid rgba(255,255,255,.05);

    border-radius: 18px;
    overflow: hidden;
}


/* =========================================================
   SECTION CONTENT
   ========================================================= */

.section-number {
    margin-bottom: 2rem;
}

.section h2 {
    max-width: 900px;
    margin-top: 0;
    margin-bottom: 2.5rem;
    font-size:
        clamp(3rem, 8vw, 7rem);
    line-height: .88;
    letter-spacing: -.045em;
    font-weight: 500;
    color: #d5d1cb;
}

.text {
    max-width: 570px;
    color: #777;
    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================================
   GENERAL LINKS
   ========================================================= */

.links {
    margin-top: 3rem;
    max-width: 760px;
}

.links a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    border-top:
        1px solid rgba(255,255,255,.10);
    color: #aaa;
    text-decoration: none;
    transition:
        opacity .25s ease,
        transform .25s ease;
}

.links a:last-child {
    border-bottom:
        1px solid rgba(255,255,255,.10);
}

.links a:hover {
    opacity: .65;
    transform: translateX(8px);
}

.links span {
    letter-spacing: .14em;
    font-size: .85rem;
}

.links small {
    opacity: .4;
    letter-spacing: .16em;
}


/* =========================================================
   VITO SECTION
   ========================================================= */

.vito-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}


/* ---------------------------------------------------------
   VITO IMAGE
   --------------------------------------------------------- */

.vito-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.vito-background img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .22;
    filter:
        grayscale(1)
        contrast(1.25)
        brightness(.65);
    transform: scale(1.04);
}


/* ---------------------------------------------------------
   DARK FADE
   --------------------------------------------------------- */

.vito-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at center,
            rgba(5,5,5,.05) 0%,
            rgba(5,5,5,.20) 35%,
            rgba(5,5,5,.60) 65%,
            rgba(5,5,5,.96) 100%
        );
}


/* ---------------------------------------------------------
   VITO CONTENT
   --------------------------------------------------------- */

.vito-section > *:not(.vito-background) {
    position: relative;
    z-index: 2;
}


/* ---------------------------------------------------------
   VITO WATERMARK
   --------------------------------------------------------- */

.vito-mark {
    margin-top: 4rem;
    font-size:
        clamp(5rem, 18vw, 15rem);
    line-height: .8;
    letter-spacing: -.08em;
    opacity: .045;
    pointer-events: none;
}


/* =========================================================
   QUOTE
   ========================================================= */

.quote {
    margin-top: 4rem;
    font-size:
        clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.5;
    opacity: .45;
    letter-spacing: -.02em;
}


/* =========================================================
   LORE ARCHIVE
   ========================================================= */

.lore-archive {
    margin-top: 5rem;
    max-width: 760px;
    padding-top: 2rem;
    border-top:
        1px solid rgba(255,255,255,.10);

    border-radius: 14px;
    overflow: hidden;
}

.lore-label {
    font-size: .65rem;
    letter-spacing: .3em;
    opacity: .4;
    margin-bottom: 1.2rem;
}

.lore-intro {
    max-width: 520px;
    line-height: 1.7;
    opacity: .45;
    font-size: .85rem;
    margin-bottom: 2rem;
}

.lore-links {
    display: flex;
    flex-direction: column;
}

.lore-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.3rem 0;
    border-top:
        1px solid rgba(255,255,255,.08);
    color: inherit;
    text-decoration: none;
    transition:
        opacity .25s ease,
        padding-left .25s ease;
}

.lore-links a:last-child {
    border-bottom:
        1px solid rgba(255,255,255,.08);
}

.lore-links a:hover {
    opacity: .65;
    padding-left: .5rem;
}

.lore-links span {
    font-size: .85rem;
    letter-spacing: .08em;
}

.lore-links small {
    font-size: .65rem;
    letter-spacing: .18em;
    opacity: .45;
    white-space: nowrap;
}

.lore-copyright {
    margin-top: 2rem;
    font-size: .6rem;
    line-height: 1.7;
    letter-spacing: .08em;
    opacity: .25;
}


/* =========================================================
   ABOUT
   ========================================================= */

.manifesto {
    margin-top: 5rem;
    color: #aaa;
    font-size:
        clamp(1rem, 2vw, 1.5rem);
    line-height: 2.2;
    letter-spacing: .2rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    position: relative;
    z-index: 2;
    min-height: 120px;
    padding: 2rem 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top:
        1px solid rgba(255,255,255,.08);
    color: #444;
    font-size: .55rem;
    letter-spacing: .25rem;
}


/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes pulse {

    0%,
    100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}


/* =========================================================
   AUDIO CONTROL
   ========================================================= */

.audio-control {
    position: fixed;
    right: 28px;
    bottom: 28px;

    width: 170px;

    z-index: 9999;

    transform-origin: bottom right;

    transition:
        transform .28s ease,
        opacity .28s ease;
}


/* =========================================================
   AUDIO — EXPAND WHOLE BLOCK
   ========================================================= */

.audio-control:focus-within {
    transform: scale(1.1);
}


/* =========================================================
   PLAY TRANSMISSION
   ========================================================= */

#audioButton {
    display: block;

    width: auto;

    margin-left: auto;

    padding: 7px 11px;

    background:
        rgba(5,5,5,.72);

    border:
        1px solid rgba(255,255,255,.14);

    color:
        rgba(210,210,210,.58);

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 7px;

    font-weight: 400;

    letter-spacing: .18em;

    cursor: pointer;

    transition:
        color .25s ease,
        border-color .25s ease;

    backdrop-filter:
        blur(8px);

    border-radius: 8px;
}

#audioButton:hover {
    color: #ddd;

    border-color:
        rgba(255,255,255,.30);
}

#audioButton.active {
    color:
        rgba(220,220,220,.80);

    border-color:
        rgba(255,255,255,.25);

    box-shadow:
        0 0 14px rgba(255,255,255,.035);
}


/* =========================================================
   AUDIO PANEL
   ========================================================= */

.audio-panel {
    width: 170px;

    margin-top: 7px;

    padding: 8px 10px;

    background:
        rgba(5,5,5,.82);

    border:
        1px solid rgba(255,255,255,.07);

    backdrop-filter:
        blur(10px);

    border-radius: 10px;
}


/* =========================================================
   AUDIO ROWS
   ========================================================= */

.audio-row {
    display: grid;

    grid-template-columns:
        30px 1fr;

    align-items: center;

    gap: 8px;

    height: 19px;
}

.audio-row span {
    color:
        rgba(210,210,210,.32);

    font-size: 7px;

    font-weight: 400;

    letter-spacing: .13em;
}


/* =========================================================
   ULTRA THIN SLIDERS
   ========================================================= */

.audio-row input[type="range"] {
    width: 100%;

    height: 7px;

    margin: 0;
    padding: 0;

    appearance: none;
    -webkit-appearance: none;

    background: transparent;

    cursor: pointer;
}


/* =========================================================
   CHROME / EDGE TRACK
   ========================================================= */

.audio-row input[type="range"]::-webkit-slider-runnable-track {
    height: 1px;

    background:
        rgba(255,255,255,.18);

    border: none;
}


/* =========================================================
   CHROME / EDGE THUMB
   ========================================================= */

.audio-row input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;

    width: 4px;
    height: 4px;

    margin-top: -1.5px;

    border: none;

    border-radius: 50%;

    background:
        rgba(215,215,215,.62);
}


/* =========================================================
   FIREFOX TRACK
   ========================================================= */

.audio-row input[type="range"]::-moz-range-track {
    height: 1px;

    background:
        rgba(255,255,255,.18);

    border: none;
}


/* =========================================================
   FIREFOX THUMB
   ========================================================= */

.audio-row input[type="range"]::-moz-range-thumb {
    width: 4px;
    height: 4px;

    border: none;

    border-radius: 50%;

    background:
        rgba(215,215,215,.62);
}


/* =========================================================
   SLIDER HOVER
   ========================================================= */

.audio-row input[type="range"]:hover::-webkit-slider-runnable-track {
    background:
        rgba(255,255,255,.30);
}

.audio-row input[type="range"]:hover::-webkit-slider-thumb {
    background: #ddd;
}

.audio-row input[type="range"]:hover::-moz-range-track {
    background:
        rgba(255,255,255,.30);
}

.audio-row input[type="range"]:hover::-moz-range-thumb {
    background: #ddd;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    header {
        height: 70px;
        padding: 0 6vw;
    }

    nav {
        gap: 1rem;
    }

    nav a {
        font-size: .5rem;
        letter-spacing: .12rem;
    }

    .hero {
        min-height: calc(100vh - 36px);
        margin: 18px;
        padding: 100px 7vw;
        border-radius: 14px;
    }

    .hero h1 {
        font-size:
            clamp(3.2rem, 18vw, 6rem);
    }

    .subtitle {
        letter-spacing: .25rem;
    }

    .section {
        min-height: auto;
        margin: 18px;
        padding: 12vh 8vw;
        border-radius: 14px;
    }

    .section h2 {
        font-size:
            clamp(2.8rem, 15vw, 5rem);
    }

    .vito-background img {
        object-position: center;
        opacity: .18;
    }

    .lore-links a {
        align-items: flex-start;
        flex-direction: column;
        gap: .6rem;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }

    .audio-control {
        right: 15px;
        bottom: 15px;
        width: 155px;
    }

    .audio-panel {
        width: 155px;
    }

    .audio-control:focus-within {
        transform: scale(1.1);
    }
}
```

/* ============================================================
   OBSERVER ENTRY
   ============================================================ */

.observer-entry {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,0.055) 0%,
            rgba(255,255,255,0.018) 22%,
            transparent 62%
        );
}

.observer-entry::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: observerEntryPulse 7s ease-in-out infinite;
}

.observer-entry::after {
    content: "";
    position: absolute;
    width: 760px;
    height: 760px;
    border: 1px solid rgba(255,255,255,0.025);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.observer-entry-inner {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    text-align: center;
}

.observer-entry-signal {
    margin: 0 0 24px;
    font-size: 11px;
    letter-spacing: 0.32em;
    opacity: 0.45;
}

.observer-entry-line {
    width: 90px;
    height: 1px;
    margin: 0 auto 38px;
    background: currentColor;
    opacity: 0.25;
}

.observer-entry h2 {
    margin: 0;
    font-size: clamp(58px, 11vw, 150px);
    line-height: 0.85;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.observer-entry-subtitle {
    margin: 28px 0 0;
    font-size: 12px;
    letter-spacing: 0.45em;
    opacity: 0.55;
}

.observer-entry-text {
    max-width: 560px;
    margin: 35px auto 45px;
    line-height: 1.8;
    opacity: 0.62;
}

.observer-entry-button {
    display: inline-flex;
    flex-direction: column;
    gap: 7px;
    min-width: 250px;
    padding: 18px 28px;
    border: 1px solid rgba(255,255,255,0.22);
    text-decoration: none;
    color: inherit;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.observer-entry-button span {
    font-size: 12px;
    letter-spacing: 0.22em;
}

.observer-entry-button small {
    font-size: 9px;
    letter-spacing: 0.18em;
    opacity: 0.45;
}

.observer-entry-button:hover {
    border-color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.045);
    transform: translateY(-3px);
}

@keyframes observerEntryPulse {
    0%,
    100% {
        opacity: 0.45;
        transform: translate(-50%, -50%) scale(0.96);
    }

    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.03);
    }
}

@media (max-width: 700px) {

    .observer-entry {
        min-height: 65vh;
        padding: 90px 22px;
    }

    .observer-entry-subtitle {
        letter-spacing: 0.25em;
    }

    .observer-entry-text {
        font-size: 14px;
    }

    .observer-entry-button {
        width: 100%;
        max-width: 320px;
    }
}





/* =========================================================
   MOBILE HEADER FIX
   ========================================================= */

@media (max-width: 700px) {

    header {
        height: 70px;
        padding: 0 18px;
        overflow: hidden;
    }

    .logo {
        font-size: .55rem;
        letter-spacing: .16rem;
        white-space: nowrap;
    }

    nav {
        display: flex;
        align-items: center;
        gap: .85rem;
        flex-shrink: 0;
    }

    nav a {
        font-size: .48rem;
        letter-spacing: .08rem;
        white-space: nowrap;
    }
}


/* ================================
   VITO WATCH EPISODE SYSTEM
   ================================ */

.lore-links.vito-watch {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 720px;
    margin-top: 2rem;
    padding: 1rem 0;
    overflow: hidden;
}

.vito-episode {
    display: flex !important;
    align-items: center;
    gap: 1.2rem;
    min-height: 48px;
    padding: .55rem 1rem;
    color: #aaa;
    text-decoration: none;
    border-left: 1px solid rgba(255,255,255,.12);
    transition: all .25s ease;
}

.vito-episode:hover {
    color: #eee;
    background: rgba(255,255,255,.045);
    padding-left: 1.4rem;
}

.vito-number {
    min-width: 34px;
    font-family: monospace;
    font-size: .75rem;
    letter-spacing: .08rem;
    opacity: .55;
}

.vito-title {
    font-size: .72rem;
    letter-spacing: .12rem;
}

.vito-crown {
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 70px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: #0b0b0b;
    color: #777;
    cursor: pointer;
    font-size: 1rem;
    transition: .3s ease;
}

.vito-crown:hover {
    color: #ddd;
    transform: translateY(-50%) rotate(15deg);
}

.vito-winding {
    animation: vitoWind .35s ease;
}

@keyframes vitoWind {
    0%   { transform: translateY(0); opacity: 1; }
    45%  { transform: translateY(-18px); opacity: .35; }
    100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 700px) {
    .lore-links.vito-watch {
        padding-right: 20px;
    }

    .vito-episode {
        min-height: 44px;
        gap: .8rem;
        padding: .5rem .6rem;
    }

    .vito-title {
        font-size: .58rem;
        letter-spacing: .07rem;
    }

    .vito-crown {
        right: -5px;
        width: 30px;
    }
}


/* OBSERVER NAV FIX */
nav a{white-space:nowrap!important;flex-shrink:0!important;overflow:visible!important}

