:root {
    --skin: #E4B898;
    --forest: #3A5A38;
    --blush: #D4A888;
    --deep: #1A2218;
    --dark: #2A3228;
    --chloro-pale: #A8C4A0;
    --chloro: #5A7A58;
    --chloro-mid: #8AA884;
}

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

body {
    background: var(--deep);
    color: var(--chloro-pale);
    font-family: 'Karla', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* Membrane blobs */
.blob {
    position: fixed;
    border-radius: 50%;
    background: var(--forest);
    opacity: 0.06;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.blob-light {
    background: var(--chloro);
    opacity: 0.05;
}

.blob-warm {
    background: var(--skin);
    opacity: 0.03;
}

/* Surface grid -- no visible containers */
.surface {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(30, auto);
    row-gap: 16px;
    max-width: 960px;
    margin: 0 auto;
    padding: 80px 24px 120px;
    min-height: 100vh;
}

/* Domain name */
.domain-name {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--chloro-pale);
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 2s ease;
}

.domain-name.diffused {
    opacity: 1;
}

/* Whisper text */
.whisper {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    color: var(--chloro-mid);
    letter-spacing: 0.03em;
    opacity: 0;
    transition: opacity 2.5s ease;
}

.whisper.diffused {
    opacity: 0.8;
}

/* Body text nodes */
.body-node {
    font-family: 'Karla', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.85;
    color: var(--chloro-pale);
    opacity: 0;
    transition: opacity 2s ease;
}

.body-node.diffused {
    opacity: 0.85;
}

/* Data nodes */
.data-node {
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    transition: opacity 2s ease;
}

.data-node.diffused {
    opacity: 0.7;
}

.data-label {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--chloro);
}

.data-value {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--chloro-mid);
}

/* Domain end */
.domain-end {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: 20px;
    color: var(--chloro);
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 3s ease;
}

.domain-end.diffused {
    opacity: 0.6;
}

/* Mobile */
@media (max-width: 768px) {
    .surface {
        display: block;
        padding: 60px 20px 80px;
    }

    .surface > * {
        margin-bottom: 32px;
    }

    .domain-name {
        margin-bottom: 48px;
    }
}
