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

    :root {
        --bg: #07091a;
        --bg-2: #0b0e22;
        --bg-card: #0e1228;
        --bg-card-h: #13172e;
        --gold: #c8a84b;
        --gold-light: #e8c870;
        --gold-dim: rgba(200, 168, 75, 0.22);
        --gold-border: rgba(200, 168, 75, 0.32);
        --crimson: #8b1e2e;
        --crimson-b: #c4364e;
        --blue-acc: #5b8dd5;
        --purple-acc: #7b6db5;
        --text: #e8e0d0;
        --text-muted: #9a9080;
        --text-dim: #4a4438;
        --ff-display: 'Cookie', cursive;
        --ff-serif: 'Poppins', sans-serif;
        --ff-body: 'Poppins', sans-serif;
        --max-w: 1100px;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background: var(--bg);
        color: var(--text);
        font-family: var(--ff-body);
        font-size: 18px;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Grain overlay */
    body::after {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 9999;
        opacity: 0.55;
    }

    /* ── NAV ── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 40px;
        background: linear-gradient(to bottom, rgba(7, 9, 26, 0.96) 60%, transparent);
    }

    /* Nav logo: flex row containing circular badge + wordmark text */
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .nav-logo-img {
        /* Circular logo badge — 40px matches nav vertical rhythm */
        height: 40px;
        width: 40px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        /* Subtle gold ring on hover to match the CTA accent colour */
        transition: box-shadow 0.2s;
    }

    .nav-logo:hover .nav-logo-img {
        box-shadow: 0 0 0 2px var(--gold);
    }

    .nav-logo-text {
        font-family: var(--ff-body);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.22em;
        color: var(--gold);
    }

    .nav-cta {
        font-family: var(--ff-body);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--bg);
        background: var(--gold);
        padding: 10px 24px;
        text-decoration: none;
        transition: background 0.2s, transform 0.15s;
    }

    .nav-cta:hover {
        background: var(--gold-light);
        transform: translateY(-1px);
    }

    /* ── SHARED ── */
    .container {
        max-width: var(--max-w);
        margin: 0 auto;
        width: 100%;
    }

    section {
        position: relative;
        padding: 100px 24px;
    }

    .eyebrow {
        font-family: var(--ff-body);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.32em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 16px;
        display: block;
    }

    h2 {
        font-family: var(--ff-display);
        font-size: clamp(48px, 8vw, 72px);
        font-weight: 700;
        line-height: 1.08;
        color: var(--text);
        margin-bottom: 24px;
    }

    h3 {
        font-family: var(--ff-display);
        font-size: clamp(36px, 6vw, 60px);
        font-weight: 600;
        color: var(--text);
        margin-bottom: 12px;
    }

    p {
        color: var(--text-muted);
        line-height: 1.78;
    }

    .rule {
        width: 52px;
        height: 1px;
        background: var(--gold);
        margin: 22px 0;
        opacity: 0.55;
    }

    .btn {
        display: inline-block;
        font-family: var(--ff-body);
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--bg);
        background: var(--gold);
        padding: 18px 52px;
        text-decoration: none;
        transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .btn:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(200, 168, 75, 0.28);
    }

    /* fade-up */
    .fu {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .fu.vis {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── HERO ── */
    #hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 130px 24px 90px;
        overflow: hidden;
    }

    #hero-canvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .hero-glow-r {
        position: absolute;
        width: 900px;
        height: 900px;
        border-radius: 50%;
        background: radial-gradient(ellipse, rgba(139, 30, 46, 0.16) 0%, transparent 65%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: glow-pulse 9s ease-in-out infinite;
    }

    .hero-glow-g {
        position: absolute;
        width: 550px;
        height: 550px;
        border-radius: 50%;
        background: radial-gradient(ellipse, rgba(200, 168, 75, 0.07) 0%, transparent 65%);
        top: 35%;
        left: 65%;
        animation: glow-pulse 13s ease-in-out infinite reverse;
    }

    @keyframes glow-pulse {

        0%,
        100% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        50% {
            transform: translate(-50%, -50%) scale(1.18);
            opacity: 0.65;
        }
    }

    .hero-inner {
        position: relative;
        z-index: 10;
        max-width: 820px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: 1px solid var(--gold-border);
        background: rgba(200, 168, 75, 0.06);
        padding: 9px 22px;
        margin-bottom: 36px;
        font-family: var(--ff-body);
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--gold);
    }

    .live-dot {
        width: 7px;
        height: 7px;
        background: #4ade80;
        border-radius: 50%;
        position: relative;
        flex-shrink: 0;
    }

    .live-dot::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        background: rgba(74, 222, 128, 0.3);
        animation: ring 2.2s ease-in-out infinite;
    }

    @keyframes ring {

        0%,
        100% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.8);
            opacity: 0;
        }
    }

    .hero-title {
        font-family: var(--ff-display);
        font-size: clamp(54px, 12vw, 128px);
        font-weight: 900;
        line-height: 0.93;
        letter-spacing: -0.01em;
        color: var(--text);
        margin-bottom: 8px;
    }

    .hero-title em {
        font-style: normal;
        color: var(--gold);
    }

    .hero-sub {
        font-family: var(--ff-serif);
        font-size: clamp(19px, 2.8vw, 27px);
        font-weight: 300;
        font-style: italic;
        color: var(--text-muted);
        margin-bottom: 28px;
    }

    .hero-desc {
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto 52px;
        color: var(--text-muted);
        line-height: 1.7;
    }

    .hero-desc strong {
        color: var(--text);
        font-weight: 500;
    }

    .hero-formats {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 60px;
        gap: 0;
    }

    .fmt-pill {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 26px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.02);
        font-family: var(--ff-body);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.28em;
        color: var(--text-muted);
    }

    .fmt-pill+.fmt-pill {
        border-left: none;
    }

    .pip {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .pip-gold {
        background: var(--gold);
    }

    .pip-blue {
        background: var(--blue-acc);
    }

    .pip-purple {
        background: var(--purple-acc);
    }

    .pip-red {
        background: var(--crimson-b);
    }

    /* ── PLAY SECTION ── */
    #play {
        background: var(--bg-2);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .section-intro {
        font-family: var(--ff-serif);
        font-size: clamp(16px, 3vw, 24px);
        font-style: italic;
        color: var(--text-muted);
        margin-bottom: 68px;
        max-width: 580px;
    }

    .steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        position: relative;
    }

    .steps::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 8%;
        right: 8%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--gold-border), transparent);
    }

    .step {
        padding-right: 52px;
    }

    .step+.step {
        padding-left: 52px;
        padding-right: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }

    .step-n {
        display: block;
        font-family: var(--ff-body);
        font-size: 52px;
        font-weight: 900;
        color: var(--gold);
        opacity: 0.18;
        line-height: 1;
        margin-bottom: 22px;
    }

    .step h3 {
        font-family: var(--ff-body);
        font-size: 28px;
        margin-bottom: 14px;
    }

    /* ── SINE SECTION ── */
    #sine {
        overflow: hidden;
    }

    #sine::before {
        content: '';
        position: absolute;
        right: -80px;
        top: -80px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(ellipse, rgba(139, 30, 46, 0.11) 0%, transparent 65%);
        pointer-events: none;
    }

    .sine-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 88px;
        align-items: start;
    }

    .sine-lede {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .sine-lede em {
        color: var(--text);
        font-style: italic;
    }

    .sine-features {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .sine-feat {
        display: flex;
        gap: 18px;
        align-items: flex-start;
    }

    .sine-icon {
        flex-shrink: 0;
        width: 64px;
        height: 64px;
        border: 1px solid var(--gold-border);
        background: rgba(200, 168, 75, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .sine-feat h4 {
        font-family: var(--ff-body);
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.06em;
        color: var(--text);
        margin-bottom: 6px;
    }

    .sine-feat p {
        font-size: 14px;
    }

    .sine-pull {
        border-left: 3px solid var(--gold);
        padding: 26px 32px;
        background: rgba(200, 168, 75, 0.035);
        margin-top: 72px;
    }

    .sine-pull blockquote {
        font-family: var(--ff-serif);
        font-size: clamp(20px, 2.8vw, 30px);
        font-weight: 300;
        font-style: italic;
        color: var(--text);
        line-height: 1.45;
    }

    .sine-pull cite {
        display: block;
        margin-top: 14px;
        font-family: var(--ff-body);
        font-size: 10px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold);
    }

    /* ── FORMATS ── */
    #formats {
        background: var(--bg-2);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .formats-hd {
        max-width: 680px;
        margin-bottom: 60px;
    }

    .formats-sub {
        font-family: var(--ff-serif);
        font-size: clamp(17px, 2.2vw, 21px);
        font-style: italic;
        color: var(--text-muted);
    }

    .fmt-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: rgba(255, 255, 255, 0.04);
        margin-bottom: 48px;
    }

    .fmt-card {
        background: var(--bg-card);
        padding: 38px 28px;
        position: relative;
        overflow: hidden;
        transition: background 0.28s;
    }

    .fmt-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
    }

    .fmt-card:hover {
        background: var(--bg-card-h);
    }

    .fmt-card.c-play::before {
        background: var(--gold);
    }

    .fmt-card.c-read::before {
        background: var(--blue-acc);
    }

    .fmt-card.c-listen::before {
        background: var(--purple-acc);
    }

    .fmt-card.c-watch::before {
        background: var(--crimson-b);
    }

    .fmt-tag {
        font-family: var(--ff-body);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.3em;
        padding: 5px 11px;
        display: inline-block;
        margin-bottom: 22px;
    }

    .fmt-card.c-play .fmt-tag {
        color: var(--gold);
        background: rgba(200, 168, 75, 0.1);
    }

    .fmt-card.c-read .fmt-tag {
        color: var(--blue-acc);
        background: rgba(91, 141, 213, 0.1);
    }

    .fmt-card.c-listen .fmt-tag {
        color: var(--purple-acc);
        background: rgba(123, 109, 181, 0.1);
    }

    .fmt-card.c-watch .fmt-tag {
        color: var(--crimson-b);
        background: rgba(196, 54, 78, 0.1);
    }

    .fmt-card h3 {
        font-family: var(--ff-body);
        font-size: 20px;
        margin-bottom: 6px;
    }

    .fmt-sub {
        display: block;
        font-family: var(--ff-body);
        font-style: italic;
        font-size: 14px;
        color: var(--gold);
        margin-bottom: 14px;
    }

    .fmt-card p {
        font-size: 14px;
    }

    .fmt-feats {
        list-style: none;
        margin-top: 18px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 16px;
    }

    .fmt-feats li {
        font-size: 14px;
        color: var(--text);
        line-height: 1.5;
        display: flex;
        gap: 8px;
        align-items: flex-start;
    }

    .fmt-feats li::before {
        content: '—';
        color: var(--gold);
        opacity: 0.6;
        flex-shrink: 0;
        font-family: var(--ff-display);
        font-size: 10px;
        margin-top: 2px;
    }

    .fmt-foot {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 40px;
        font-family: var(--ff-serif);
        font-size: clamp(15px, 2vw, 19px);
        font-style: italic;
        color: var(--text-muted);
    }

    .fmt-foot strong {
        color: var(--gold);
        font-style: normal;
        font-family: var(--ff-display);
        font-weight: 600;
    }

    /* ── MONETISE ── */
    #monetise {
        overflow: hidden;
    }

    #monetise::before {
        content: '';
        position: absolute;
        left: -100px;
        bottom: -100px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(ellipse, rgba(200, 168, 75, 0.06) 0%, transparent 65%);
        pointer-events: none;
    }

    .mon-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 88px;
        align-items: start;
    }

    .mon-lede {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 8px;
    }

    .mon-sub {
        font-size: 14px;
        margin-top: 16px;
    }

    .rev-split {
        margin-top: 44px;
    }

    .rev-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    }

    .rev-row:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.055);
    }

    .rev-label {
        font-size: 14px;
        color: var(--text-muted);
    }

    .rev-label strong {
        display: block;
        font-size: 15px;
        color: var(--text);
        font-weight: 500;
        margin-bottom: 2px;
    }

    .rev-pct {
        font-family: var(--ff-display);
        font-size: 34px;
        font-weight: 700;
        line-height: 1;
    }

    .rev-pct.c {
        color: var(--gold);
    }

    .rev-pct.p {
        color: var(--purple-acc);
    }

    .rev-pct.x {
        color: var(--text-dim);
    }

    .tiers {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .tier {
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: var(--bg-card);
        padding: 22px 26px;
        transition: border-color 0.25s;
    }

    .tier:hover {
        border-color: var(--gold-border);
    }

    .tier.featured {
        border-color: var(--gold-border);
        background: linear-gradient(135deg, rgba(200, 168, 75, 0.07), var(--bg-card));
    }

    .tier-hd {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 8px;
    }

    .tier-name {
        font-family: var(--ff-body);
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.16em;
        color: var(--text);
    }

    .tier-price {
        font-size: 12px;
        color: var(--text-muted);
    }

    .tier-price strong {
        color: var(--gold);
        font-size: 17px;
    }

    .tier p {
        font-size: 13px;
    }

    /* ── URGENCY ── */
    #urgency {
        background: var(--bg-2);
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .urg-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: 1px solid var(--gold-border);
        background: rgba(200, 168, 75, 0.06);
        padding: 9px 22px;
        margin-bottom: 32px;
        font-family: var(--ff-body);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: var(--gold);
    }

    .urg-h2 {
        font-size: clamp(26px, 4vw, 46px);
        margin-bottom: 16px;
    }

    .urg-sub {
        font-size: 16px;
        max-width: 440px;
        margin: 0 auto 44px;
    }

    /* ── WAITLIST ── */
    .waitlist {
        margin: 0 auto;
    }

    .wl-wrap {
        max-width: 480px;
        margin: 0 auto;
    }

    .wl-wrap h2 {
        font-size: clamp(26px, 4vw, 42px);
        margin-bottom: 12px;
        text-align: center;
    }

    .wl-intro {
        margin-bottom: 48px;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

    /* Zoho form overrides — applied via JS */
    #sf3z82072f1c3762622af5af690d9cfa0ef2ad92d253bd51b7dcbcfce6a3f072075d {
        width: 100% !important;
    }

    /* ── FOOTER ── */
    .footer-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 44px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Footer logo: keep old .ft-logo as fallback, add new image+text combo */
    .ft-logo-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .ft-logo-img {
        height: 36px;
        width: 36px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        /* Slightly muted opacity so the footer feels lighter than the nav */
        opacity: 0.85;
    }

    .ft-logo-text {
        font-family: var(--ff-body);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.22em;
        color: var(--gold);
    }

    .ft-tag {
        font-size: 12px;
        color: var(--text);
        margin-top: 4px;
    }

    .ft-mid {
        font-size: 12px;
        color: var(--text);
        text-align: center;
        line-height: 1.8;
    }

    .ft-mid a {
        color: var(--gold);
        text-decoration: none;
    }

    .ft-links {
        display: flex;
        gap: 20px;
    }

    .ft-links a {
        font-size: 11px;
        color: var(--text-muted);
        text-decoration: none;
        letter-spacing: 0.08em;
    }

    .ft-links a:hover {
        color: var(--text);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
        nav {
            padding: 16px 24px;
        }

        .fmt-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .steps {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .steps::before {
            display: none;
        }

        .step {
            padding: 0 0 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .step+.step {
            padding: 0 0 48px;
            border-left: none;
        }

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

        .sine-grid {
            grid-template-columns: 1fr;
            gap: 52px;
        }

        .mon-grid {
            grid-template-columns: 1fr;
            gap: 52px;
        }
    }

    @media (max-width: 600px) {
        section {
            padding: 72px 20px;
        }

        .fmt-grid {
            grid-template-columns: 1fr;
        }

        .hero-formats {
            flex-direction: column;
            align-items: center;
        }

        .fmt-pill+.fmt-pill {
            border-left: 1px solid rgba(255, 255, 255, 0.07);
            border-top: none;
        }

        .footer-inner {
            flex-direction: column;
            text-align: center;
        }

        .ft-links {
            justify-content: center;
        }
    }

    #customForm.quick_form_24_css* {
        -webkit-box-sizing: border-box !important;
        -moz-box-sizing: border-box !important;
        box-sizing: border-box !important;
        overflow-wrap: break-word
    }

    @media only screen and (max-width:200px) {
        .quick_form_24_css[name="SIGNUP_BODY"] {
            width: 100% !important;
            min-width: 100% !important;
            margin: 0 auto !important;
            padding: 0 !important
        }
    }

    @media screen and (min-width:320px) and (max-width:580px) and (orientation:portrait) {
        .quick_form_24_css[name="SIGNUP_BODY"] {
            max-width: 300px !important;
            margin: 0 auto !important;
            padding: 0 !important
        }
    }

    @media only screen and (max-device-width:1024px) {
        .quick_form_24_css[name="SIGNUP_BODY"] {
            max-width: 500px !important;
            margin: 0 auto !important
        }
    }

    @media only screen and (max-device-width:1024px) and (orientation:landscape) {
        .quick_form_24_css[name="SIGNUP_BODY"] {
            max-width: 700px !important;
            margin: 0 auto !important
        }
    }

    @media screen and (min-width:475px) and (max-width:980px) and (orientation:landscape) {
        .quick_form_24_css[name="SIGNUP_BODY"] {
            max-width: 400px !important;
            margin: 0 auto !important;
            padding: 0 !important
        }
    }

    /* ════════════ LEGAL PAGES ════════════ */

    /* Hero header shared by privacy.html and terms.html */
    .legal-hero {
        padding: 160px 24px 72px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        overflow: hidden;
    }

    /* Subtle crimson glow behind header — matches brand */
    .legal-hero::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(ellipse, rgba(139, 30, 46, 0.1) 0%, transparent 65%);
        pointer-events: none;
    }

    .legal-hero .eyebrow {
        position: relative;
    }

    .legal-hero h1 {
        font-family: var(--ff-display);
        font-size: clamp(42px, 8vw, 80px);
        font-weight: 700;
        color: var(--text);
        line-height: 1.05;
        margin-bottom: 16px;
        position: relative;
    }

    .legal-hero-meta {
        font-size: 13px;
        color: var(--text-muted);
        letter-spacing: 0.06em;
        position: relative;
    }

    /* Two-column layout: sticky ToC sidebar + scrollable content */
    .legal-body {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 72px 24px 120px;
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 72px;
        align-items: start;
    }

    /* Sticky sidebar table of contents */
    .legal-toc {
        position: sticky;
        top: 100px;
    }

    .legal-toc-title {
        font-family: var(--ff-body);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 18px;
        display: block;
    }

    .legal-toc ol {
        list-style: none;
        counter-reset: toc-counter;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .legal-toc ol li {
        counter-increment: toc-counter;
    }

    .legal-toc ol li a {
        display: flex;
        align-items: baseline;
        gap: 10px;
        font-size: 13px;
        color: var(--text-muted);
        text-decoration: none;
        padding: 7px 12px;
        border-left: 2px solid transparent;
        transition: color 0.2s, border-color 0.2s, background 0.2s;
        line-height: 1.4;
    }

    /* Auto-numbered ToC entries via CSS counter */
    .legal-toc ol li a::before {
        content: counter(toc-counter, decimal-leading-zero);
        font-size: 10px;
        font-weight: 700;
        color: var(--gold);
        opacity: 0.5;
        flex-shrink: 0;
        letter-spacing: 0.05em;
    }

    .legal-toc ol li a:hover,
    .legal-toc ol li a.active {
        color: var(--text);
        border-left-color: var(--gold);
        background: rgba(200, 168, 75, 0.04);
    }

    /* Main content column */
    .legal-content {
        min-width: 0;
    }

    .legal-section {
        margin-bottom: 60px;
        scroll-margin-top: 110px;
    }

    .legal-section h2 {
        font-family: var(--ff-body);
        font-size: clamp(20px, 3vw, 26px);
        font-weight: 600;
        letter-spacing: 0.02em;
        color: var(--text);
        margin-bottom: 18px;
        display: flex;
        gap: 14px;
    }

    /* Section number pulled from data-n attribute */
    .legal-section h2::before {
        content: attr(data-n);
        font-size: 11px;
        font-weight: 700;
        color: var(--gold);
        opacity: 0.55;
        letter-spacing: 0.1em;
        flex-shrink: 0;
    }

    .legal-section p {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.85;
        margin-bottom: 14px;
    }

    .legal-section p:last-child {
        margin-bottom: 0;
    }

    .legal-section ul {
        list-style: none;
        margin: 14px 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .legal-section ul li {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.7;
        display: flex;
        gap: 12px;
    }

    .legal-section ul li::before {
        content: '—';
        color: var(--gold);
        opacity: 0.5;
        flex-shrink: 0;
        font-family: var(--ff-display);
        font-size: 10px;
        margin-top: 4px;
    }

    .legal-section a {
        color: var(--gold);
        text-decoration: none;
        border-bottom: 1px solid rgba(200, 168, 75, 0.3);
        transition: border-color 0.2s;
    }

    .legal-section a:hover {
        border-bottom-color: var(--gold);
    }

    /* Highlight box for important notices */
    .legal-callout {
        border-left: 3px solid var(--gold);
        background: rgba(200, 168, 75, 0.04);
        padding: 18px 22px;
        margin: 20px 0;
    }

    .legal-callout p {
        margin-bottom: 0;
        font-size: 14px;
    }

    /* Divider between sections */
    .legal-section+.legal-section {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 60px;
    }

    /* ── Legal data tables ── */
    .legal-table {
        width: 100%;
        border-collapse: collapse;
        margin: 14px 0;
        font-size: 14px;
    }

    .legal-table th {
        font-family: var(--ff-body);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--gold);
        text-align: left;
        padding: 10px 16px;
        border-bottom: 1px solid rgba(200, 168, 75, 0.25);
        background: rgba(200, 168, 75, 0.04);
    }

    .legal-table td {
        padding: 12px 16px;
        vertical-align: top;
        color: var(--text-muted);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        line-height: 1.7;
    }

    /* First column acts as a row label */
    .legal-table td:first-child {
        font-weight: 600;
        color: var(--text);
        white-space: nowrap;
        width: 1%;
    }

    .legal-table tr:last-child td {
        border-bottom: none;
    }

    .legal-table tr:hover td {
        background: rgba(255, 255, 255, 0.015);
    }

    /* ── Legal pages responsive ── */
    @media (max-width: 860px) {
        .legal-body {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .legal-toc {
            position: static;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 32px;
        }

        /* Two-up grid for ToC on tablet */
        .legal-toc ol {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
        }
    }

    @media (max-width: 580px) {

        /* Prevent table label column from squishing content */
        .legal-table td:first-child {
            white-space: normal;
        }
    }

    @media (max-width: 480px) {
        .legal-toc ol {
            grid-template-columns: 1fr;
        }
    }