    :root {
        --bg: #f7f2e8;
        --surface: rgba(255, 255, 255, 0.7);
        --surface-strong: rgba(255, 255, 255, 0.88);
        --text: #1d1a17;
        --muted: #5f564d;
        --line: rgba(29, 26, 23, 0.08);
        --gold: #f2b84b;
        --plum: #663399;
        --shadow: 0 24px 80px rgba(65, 47, 35, 0.12);
        --font-body: "Aptos", "Segoe UI", "Trebuchet MS", Arial, sans-serif;
        --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        min-height: 100%;
        scroll-behavior: smooth;
    }

    body {
        min-height: 100dvh;
        color: var(--text);
        font-family: var(--font-body);
        background:
            radial-gradient(circle at top left, rgba(242, 184, 75, 0.28), transparent 34%),
            radial-gradient(circle at 82% 18%, rgba(102, 51, 153, 0.22), transparent 28%),
            linear-gradient(135deg, #fbf7f0 0%, #f3ede2 52%, #f8f4ec 100%);
        overflow-x: hidden;
    }

    body::before,
    body::after {
        content: "";
        position: fixed;
        inset: auto;
        width: 28rem;
        height: 28rem;
        border-radius: 50%;
        filter: blur(70px);
        opacity: 0.45;
        pointer-events: none;
        z-index: 0;
    }

    body::before {
        top: -10rem;
        right: -8rem;
        background: rgba(102, 51, 153, 0.28);
    }

    body::after {
        bottom: -12rem;
        left: -8rem;
        background: rgba(242, 184, 75, 0.34);
    }

    .page-shell {
        position: relative;
        z-index: 1;
        min-height: 100dvh;
        display: grid;
        grid-template-rows: auto minmax(0, 1fr) auto;
        padding: clamp(0.75rem, 2vh, 1.5rem) clamp(1.25rem, 3vw, 3rem);
    }

    .site-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0.35rem 0 0.9rem;
    }

    .brand {
        color: var(--text);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: lowercase;
    }

    .hero-section {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
        gap: clamp(2rem, 4vw, 4.5rem);
        align-items: center;
        width: min(1180px, 100%);
        margin: 0 auto;
        min-height: 0;
        padding: clamp(0.75rem, 2.5vh, 2rem) 0;
    }

    .hero-copy,
    .visual-frame {
        animation: fade-up 0.9s ease forwards;
        opacity: 0;
    }

    .hero-copy {
        animation-delay: 0.08s;
    }

    .visual-frame {
        animation-delay: 0.18s;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.55rem 0.9rem;
        margin-bottom: 1.25rem;
        border: 1px solid rgba(102, 51, 153, 0.18);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.55);
        color: var(--plum);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    h1 {
        font-family: var(--font-display);
        font-size: clamp(3rem, 7vw, 5.8rem);
        line-height: 0.95;
        letter-spacing: -0.04em;
        font-weight: 700;
        max-width: 11ch;
        margin-bottom: 1.35rem;
    }

    .lead {
        max-width: 34rem;
        font-size: clamp(1.05rem, 2vw, 1.3rem);
        line-height: 1.7;
        font-weight: 500;
        color: var(--muted);
    }

    .hero-meta {
        display: grid;
        gap: 1rem;
        margin-top: 2rem;
    }

    .status-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        width: fit-content;
        max-width: 100%;
        padding: 0.9rem 1.15rem;
        border: 1px solid rgba(29, 26, 23, 0.08);
        border-radius: 999px;
        background: var(--surface-strong);
        box-shadow: 0 12px 30px rgba(36, 28, 20, 0.08);
        color: var(--text);
        font-size: 0.98rem;
        font-weight: 500;
    }

    .status-dot {
        width: 0.7rem;
        height: 0.7rem;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold), var(--plum));
        box-shadow: 0 0 0 0 rgba(102, 51, 153, 0.34);
        animation: pulse 2.8s ease-in-out infinite;
    }

    .supporting-copy {
        font-size: 0.98rem;
        color: var(--muted);
    }

    .hero-visual {
        display: flex;
        justify-content: center;
    }

    .visual-frame {
        position: relative;
        width: min(100%, 500px);
        min-height: clamp(340px, 44dvh, 480px);
        border: 1px solid var(--line);
        border-radius: 2rem;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.5)),
            linear-gradient(135deg, rgba(242, 184, 75, 0.12), rgba(102, 51, 153, 0.14));
        box-shadow: var(--shadow);
        backdrop-filter: blur(12px);
        overflow: hidden;
        isolation: isolate;
    }

    .visual-frame::before {
        content: "";
        position: absolute;
        inset: 1.2rem;
        border: 1px solid rgba(29, 26, 23, 0.06);
        border-radius: 1.5rem;
    }

    .visual-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(8px);
        opacity: 0.9;
    }

    .orb-gold {
        width: 10rem;
        height: 10rem;
        top: 2.5rem;
        right: 2rem;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(242, 184, 75, 0.85));
        animation: float 8s ease-in-out infinite;
    }

    .orb-plum {
        width: 12rem;
        height: 12rem;
        left: 1.5rem;
        bottom: 2rem;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(102, 51, 153, 0.88));
        animation: float 9s ease-in-out infinite reverse;
    }

    .lane-stack {
        position: absolute;
        inset: 15% 12% 12%;
        display: grid;
        align-content: center;
        gap: 1.15rem;
    }

    .lane {
        display: block;
        height: clamp(3.5rem, 8vw, 4.75rem);
        border-radius: 1.4rem;
        transform: translateX(var(--offset, 0));
        box-shadow: 0 18px 30px rgba(40, 31, 24, 0.12);
        animation: drift 7s ease-in-out infinite;
    }

    .lane-plum {
        --offset: 10%;
        background: linear-gradient(135deg, rgba(102, 51, 153, 0.95), rgba(138, 92, 181, 0.82));
    }

    .lane-gold {
        --offset: -8%;
        animation-delay: -2s;
        background: linear-gradient(135deg, rgba(242, 184, 75, 0.98), rgba(255, 210, 122, 0.88));
    }

    .lane-neutral {
        --offset: 14%;
        animation-delay: -4s;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 230, 219, 0.92));
    }

    .lane.soft {
        --offset: -4%;
        animation-delay: -1s;
        opacity: 0.82;
    }

    .site-footer {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 0.35rem;
        padding: 0.7rem 0 0.1rem;
        color: var(--muted);
        font-size: 0.92rem;
        text-align: center;
    }

    @media (max-height: 860px) and (min-width: 961px) {
        .hero-section {
            gap: clamp(1.5rem, 3vw, 3rem);
        }

        h1 {
            font-size: clamp(2.6rem, 5vw, 4.6rem);
            margin-bottom: 1rem;
        }

        .hero-meta {
            margin-top: 1.35rem;
        }

        .visual-frame {
            min-height: clamp(300px, 38dvh, 400px);
        }
    }

    @keyframes fade-up {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(102, 51, 153, 0.32);
        }

        50% {
            box-shadow: 0 0 0 12px rgba(102, 51, 153, 0);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translate3d(0, 0, 0);
        }

        50% {
            transform: translate3d(0, -14px, 0);
        }
    }

    @keyframes drift {

        0%,
        100% {
            transform: translateX(var(--offset, 0));
        }

        50% {
            transform: translateX(calc(var(--offset, 0) * -0.55));
        }
    }

    @media (max-width: 960px) {
        .page-shell {
            padding-inline: 1.25rem;
        }

        .hero-section {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 1.5rem 0 2.5rem;
        }

        .hero-copy {
            max-width: 44rem;
        }

        h1 {
            max-width: 12ch;
        }

        .hero-visual {
            order: 2;
        }

        .visual-frame {
            min-height: 400px;
        }
    }

    @media (max-width: 640px) {
        .page-shell {
            padding: 1rem 1rem 1.25rem;
        }

        .site-header {
            padding-bottom: 0.75rem;
        }

        .brand {
            font-size: 1rem;
        }

        h1 {
            font-size: clamp(2.4rem, 14vw, 3.6rem);
            max-width: 10ch;
        }

        .lead {
            font-size: 1rem;
        }

        .status-pill {
            width: 100%;
            border-radius: 1.1rem;
            padding: 0.9rem 1rem;
        }

        .visual-frame {
            min-height: 320px;
            border-radius: 1.4rem;
        }

        .lane-stack {
            inset: 18% 10% 14%;
        }

        .lane {
            border-radius: 1rem;
        }

        .site-footer {
            font-size: 0.85rem;
        }
    }

    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }