﻿/* ═══════════════════════════════
   THE VOID | Version A
   Side-by-side split layout
   Vortex engine from moiss_gravitational_vortex_v7
   ═══════════════════════════════ */
:root {
    --m: #9B2335;
    --m2: #C62E44;
    --m-glow: rgba(155, 35, 53, .08);
    --void: #0a0a0b;
    --deep: #0e0e10;
    --surface: #14141a;
    --panel: #18181e;
    --t: #F0ECE4;
    --t2: #8a8680;
    --t3: #555550;
    --bd: rgba(255, 255, 255, .06);
    --bd2: rgba(255, 255, 255, .03);
    --g: #22C55E;
    --a: #F59E0B;
    --r: #EF4444;
    --c: #06B6D4;
}

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

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--void);
    color: var(--t);
    font-family: 'DM Sans', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(155, 35, 53, .35);
    color: var(--t);
}

/* Noise texture (v7) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
}

/* ═══ BOOT ═══ */
.boot {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--void);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s ease;
}

.boot.fade {
    opacity: 0;
    pointer-events: none;
}

.boot-inner {
    max-width: 520px;
    width: 90%;
    font-family: 'IBM Plex Mono', monospace;
}

.boot-logo {
    height: 36px;
    opacity: .65;
    display: block;
    margin-bottom: 24px;
    object-fit: contain;
}

.boot-output {
    font-size: 11px;
    line-height: 1.8;
    color: var(--t3);
    min-height: 200px;
}

.boot-output .bline {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .3s, transform .3s;
}

.boot-output .bline.show {
    opacity: 1;
    transform: none;
}

.boot-output .ok {
    color: var(--g);
}

.boot-output .warn {
    color: var(--a);
}

.boot-output .err {
    color: var(--r);
}

.boot-output .hl {
    color: var(--m2);
}

.boot-cursor {
    color: var(--m2);
    animation: blink 1s step-end infinite;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ═══ SPLIT LAYOUT ═══ */
.split {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* ▌LEFT FIXED ▌ */
.left-fixed {
    position: relative;
    width: 55%;
    min-width: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--bd);
    /* Changed from border-right to border-left */
}

/* Embedded vortex iframe */
.vortex-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: var(--void);
}


/* ▌RIGHT SCROLLABLE ▌ */
.right-scroll {
    width: 45%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(155, 35, 53, .3) transparent;
}

.right-scroll::-webkit-scrollbar {
    width: 4px;
}

.right-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.right-scroll::-webkit-scrollbar-thumb {
    background: rgba(155, 35, 53, .3);
    border-radius: 2px;
}

/* ═══ RIGHT SECTIONS ═══ */
.rs-section {
    min-height: 100vh;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid var(--bd);
}

/* Tags / Labels */
.rs-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--m2);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.rs-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    letter-spacing: 6px;
    line-height: .88;
    margin-bottom: 10px;
}

.rs-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--t3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rs-body {
    font-size: 15px;
    color: var(--t2);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 24px;
}

.rs-lead {
    font-size: 17px;
    color: var(--t2);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 32px;
}

/* Aethryva logo in identity section */
.rs-logo-group {
    margin-bottom: 32px;
    text-align: left;
}

.rs-aethryva-logo {
    height: 32px;
    opacity: .55;
    object-fit: contain;
    max-width: 180px;
    display: block;
}

/* Section logo + title inline pattern (PriyAI Sentinel, MOISSCode) */
.rs-section-logo-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.rs-section-logo {
    height: 80px !important;
    max-height: none !important;
    object-fit: contain;
    opacity: .9;
    padding: 0;
    margin: 0;
}

.rs-section-logo-title .rs-title {
    margin-bottom: 0;
}

/* Patent section */
.rs-patents {
    background: linear-gradient(180deg, var(--deep) 0%, #0a0506 50%, var(--deep) 100%);
}

.patent-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}

.patent-card {
    background: rgba(155, 35, 53, 0.04);
    border: 1px solid rgba(155, 35, 53, 0.15);
    border-radius: 6px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.patent-card:hover {
    border-color: rgba(155, 35, 53, 0.5);
    box-shadow: 0 0 20px rgba(155, 35, 53, 0.1);
}

.patent-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.patent-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: rgba(155, 35, 53, 0.7);
    line-height: 1;
    letter-spacing: 1px;
}

.patent-appno {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1.5px;
}

.patent-brief {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Publications section */
.rs-publications {
    background: linear-gradient(180deg, var(--deep) 0%, #060308 50%, var(--deep) 100%);
}

.publication-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 12px;
    margin-bottom: 28px;
}

.publication-subheading {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    color: rgba(155, 35, 53, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(155, 35, 53, 0.15);
}

.publication-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-left: 2px solid rgba(155, 35, 53, 0.3);
    transition: border-color 0.3s ease;
}

.publication-card:hover {
    border-left-color: rgba(155, 35, 53, 0.7);
}

.publication-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: rgba(155, 35, 53, 0.5);
    line-height: 1;
    min-width: 28px;
    padding-top: 2px;
}

.publication-content {
    flex: 1;
}

.publication-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.publication-meta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
}

.publication-doi {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 300;
    color: rgba(155, 35, 53, 0.5);
    letter-spacing: 0.3px;
    margin: 0 0 12px 0;
}

/* Identity section */
.rs-identity {
    background: linear-gradient(180deg, var(--void) 0%, var(--deep) 100%);
}

.rs-credentials {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 8px 0 16px 0;
}

.rs-lead {
    white-space: nowrap;
}

.rs-lead-accent {
    color: #9B2335;
    font-weight: 700;
    font-style: italic;
}

.rs-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 10vw, 120px);
    letter-spacing: .08em;
    line-height: .85;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--t) 0%, rgba(240, 236, 228, .6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 32px;
}

.rs-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--m2);
    text-decoration: none;
    transition: color .2s;
}

.rs-link:hover {
    color: var(--t);
}

.rs-scroll-hint {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--t3);
    letter-spacing: 2px;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

/* Formula blocks */
.rs-formula-block {
    padding: 20px;
    background: rgba(155, 35, 53, .03);
    border: 1px solid rgba(155, 35, 53, .12);
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.rs-formula {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 22px;
    color: var(--t);
    margin-bottom: 8px;
}

.rs-formula-caption {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--t3);
    letter-spacing: 1px;
}

/* Badges */
.rs-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.bdg {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 3px 8px;
    border-radius: 3px;
}

.bdg-g {
    background: rgba(34, 197, 94, .12);
    color: #4ade80;
}

.bdg-a {
    background: rgba(245, 158, 11, .12);
    color: #fbbf24;
}

.bdg-r {
    background: rgba(239, 68, 68, .12);
    color: #f87171;
}

/* Stat grid */
.rs-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.rs-stat-grid--2 {
    gap: 20px;
}

.rs-stat {
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--bd);
    border-radius: 6px;
    text-align: center;
}

.rs-stat--big {
    padding: 24px;
}

.rs-stat-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    color: var(--t);
    display: block;
    line-height: 1;
}

.rs-stat--big .rs-stat-val {
    font-size: 48px;
}

.rs-stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--t3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-top: 6px;
}

/* CTA buttons */
.rs-cta {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--m2);
    border: 1px solid rgba(155, 35, 53, .25);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all .25s;
    margin-top: 8px;
}

.rs-cta:hover {
    background: rgba(155, 35, 53, .1);
    border-color: rgba(155, 35, 53, .5);
    color: var(--t);
}

/* Features list */
.rs-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.rs-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--t2);
}

.rs-feat-icon {
    color: var(--m2);
    font-size: 11px;
}

/* Section backgrounds */
.rs-moiss {
    background: var(--deep);
}

.rs-kae {
    background: var(--void);
}

.rs-impact {
    background: var(--deep);
}

.rs-priyai {
    background: var(--void);
}

.rs-connect {
    background: var(--deep);
}

.rs-connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.rs-connect-block {
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--bd);
    border-radius: 6px;
}

.rs-connect-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--t3);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.rs-connect-val {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--m2);
    text-decoration: none;
    display: block;
    transition: color .2s;
}

.rs-connect-val:hover {
    color: var(--t);
}

.rs-footer {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--t3);
    letter-spacing: 1px;
    padding-top: 20px;
    border-top: 1px solid var(--bd);
}

/* ═══ INTERVENTION CONTROLS ═══ */
.lf-controls {
    background: var(--deep);
    border-top: 1px solid var(--bd);
    padding: 10px 12px;
    flex-shrink: 0;
    overflow-y: auto;
    max-height: 42vh;
}

.ctrl-section {
    margin-bottom: 10px;
}

.ctrl-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--t3);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.int-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-height: 110px;
    overflow-y: auto;
}

.int-opt {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border: 1px solid var(--bd);
    border-radius: 4px;
    cursor: pointer;
    transition: all .15s;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--t2);
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
}

.int-opt:hover {
    border-color: var(--int-c, var(--m2));
    background: rgba(255, 255, 255, 0.04);
}

.int-opt--sel {
    border-color: var(--int-c, var(--m2));
    background: rgba(155, 35, 53, 0.1);
    color: var(--t);
    box-shadow: 0 0 8px rgba(155, 35, 53, 0.2);
}

.int-opt-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.int-opt-name {
    white-space: nowrap;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.int-opt-pk {
    font-size: 7px;
    color: var(--t3);
    white-space: nowrap;
}

.ctrl-actions {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.ctrl-btn {
    flex: 1;
    padding: 8px 6px;
    border-radius: 4px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, 0.02);
    color: var(--t2);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
}

.ctrl-btn--give {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.ctrl-btn--give:hover {
    background: rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
}

.ctrl-btn--perturb {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.25);
    color: #fbbf24;
}

.ctrl-btn--perturb:hover {
    background: rgba(245, 158, 11, 0.15);
}

.ctrl-btn--reset {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--bd);
    color: var(--t3);
}

.ctrl-btn--reset:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--t);
}

.active-ints {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 80px;
    overflow-y: auto;
}

.active-ints-empty {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--t3);
    font-style: italic;
}

.active-int {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 6px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
    border: 1px solid var(--bd);
}

.active-int-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.active-int-name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--t2);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.active-int-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 1px 5px;
    border-radius: 2px;
    color: var(--void);
}

.active-int-time {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    color: var(--t3);
    white-space: nowrap;
}

/* ═══ TABLET (≤ 1024px) ═══ */
@media(max-width:1024px) {
    .left-fixed {
        width: 50%;
        min-width: 350px;
    }

    .right-scroll {
        width: 50%;
    }

    .rs-section {
        padding: 48px 32px;
    }

    .rs-name {
        font-size: clamp(56px, 8vw, 90px);
    }

    .rs-title {
        font-size: 56px;
    }


}

/* ═══ MOBILE (≤ 768px) | Single scrollable page ═══ */
@media(max-width:768px) {

    html,
    body {
        overflow: auto;
        overflow-x: hidden;
    }

    /* Convert split into single scrollable column */
    .split {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    /* Vortex is a hero section, NOT fixed */
    .left-fixed {
        position: relative;
        width: 100%;
        min-width: 0;
        height: 85vh;
        min-height: 400px;
        max-height: 600px;
        border-left: none;
        border-bottom: 1px solid var(--bd);
        flex-shrink: 0;
        order: -1;
    }

    /* Content flows below the vortex */
    .right-scroll {
        width: 100%;
        height: auto;
        overflow: visible;
    }

    /* Sections: no fixed height, just flow naturally */
    .rs-section {
        min-height: auto;
        padding: 48px 24px;
        text-align: center;
        align-items: center;
    }

    .rs-links {
        align-items: center;
    }

    .rs-lead {
        white-space: normal;
        font-size: 14px;
        line-height: 1.6;
    }

    .rs-section-logo-title {
        justify-content: center;
    }

    /* Patent cards */
    .patent-grid {
        gap: 10px;
    }

    .patent-card {
        padding: 16px;
    }

    .patent-header {
        flex-wrap: wrap;
        gap: 4px;
    }

    .patent-num {
        font-size: 22px;
    }

    .patent-appno {
        font-size: 10px;
    }

    .patent-brief {
        font-size: 11px;
    }

    /* Publications */
    .publication-card {
        padding: 16px;
        gap: 12px;
    }

    .publication-title {
        font-size: 13px;
    }

    /* Stats grid */
    .rs-stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Features list — center */
    .rs-features {
        text-align: left;
        display: inline-block;
    }

    /* Badges */
    .rs-badges {
        justify-content: center;
    }

    /* Connect grid */
    .rs-connect-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rs-connect-block {
        text-align: center;
    }

    /* Scroll hint */
    .rs-scroll-hint {
        text-align: center;
    }

    .rs-subtitle {
        font-size: 11px;
    }

    /* Identity section gets extra top space */
    .rs-identity {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* Name sizing */
    .rs-name {
        font-size: clamp(48px, 14vw, 72px);
    }

    .rs-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .rs-lead {
        font-size: 15px;
        max-width: none;
    }

    .rs-body {
        font-size: 14px;
        max-width: none;
    }

    /* Logo */
    .rs-logo-group {
        margin-bottom: 20px;
    }

    .rs-aethryva-logo {
        height: 24px;
    }

    /* Stat grids, single column */
    .rs-stat-grid,
    .rs-connect-grid {
        grid-template-columns: 1fr;
    }

    .rs-stat--big {
        padding: 16px;
    }

    .rs-stat--big .rs-stat-val {
        font-size: 36px;
    }

    /* Formula */
    .rs-formula {
        font-size: 16px;
    }

    .rs-formula-block {
        padding: 14px;
    }

    /* Badges */
    .bdg {
        font-size: 8px;
        padding: 2px 6px;
    }

    /* Features */
    .rs-feat {
        font-size: 12px;
    }

    /* CTA */
    .rs-cta {
        font-size: 11px;
        padding: 8px 16px;
    }

    /* Connect */
    .rs-connect-block {
        padding: 12px;
    }

    /* Scroll animations: show immediately on mobile (no IntersectionObserver root issue) */
    .rs-section .rs-tag,
    .rs-section .rs-title,
    .rs-section .rs-subtitle,
    .rs-section .rs-body,
    .rs-section .rs-lead,
    .rs-section .rs-formula-block,
    .rs-section .rs-badges,
    .rs-section .rs-stat-grid,
    .rs-section .rs-features,
    .rs-section .rs-cta,
    .rs-section .rs-connect-grid,
    .rs-section .rs-name,
    .rs-section .rs-links,
    .rs-section .rs-logo-group {
        opacity: 1;
        transform: none;
    }
}

/* ═══ SMALL MOBILE (≤ 480px) ═══ */
@media(max-width:480px) {
    .left-fixed {
        height: 75vh;
        min-height: 350px;
        max-height: 500px;
    }

    .rs-section {
        padding: 36px 16px;
    }

    .rs-name {
        font-size: clamp(40px, 12vw, 56px);
    }

    .rs-title {
        font-size: clamp(28px, 8vw, 42px);
    }

    .rs-formula {
        font-size: 14px;
    }

    .rs-lead,
    .rs-body {
        font-size: 13px;
    }

    .lf-header-title {
        font-size: .85rem;
        letter-spacing: 2px;
    }

    .rs-stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

/* ═══ SCROLL ANIMATIONS ═══ */
.rs-section .rs-tag,
.rs-section .rs-title,
.rs-section .rs-subtitle,
.rs-section .rs-body,
.rs-section .rs-lead,
.rs-section .rs-formula-block,
.rs-section .rs-badges,
.rs-section .rs-stat-grid,
.rs-section .rs-features,
.rs-section .rs-cta,
.rs-section .rs-connect-grid,
.rs-section .rs-name,
.rs-section .rs-links,
.rs-section .rs-logo-group {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.rs-section.in-view .rs-tag,
.rs-section.in-view .rs-title,
.rs-section.in-view .rs-subtitle,
.rs-section.in-view .rs-body,
.rs-section.in-view .rs-lead,
.rs-section.in-view .rs-formula-block,
.rs-section.in-view .rs-badges,
.rs-section.in-view .rs-stat-grid,
.rs-section.in-view .rs-features,
.rs-section.in-view .rs-cta,
.rs-section.in-view .rs-connect-grid,
.rs-section.in-view .rs-name,
.rs-section.in-view .rs-links,
.rs-section.in-view .rs-logo-group {
    opacity: 1;
    transform: none;
}

/* Stagger delays */
.rs-section.in-view .rs-logo-group {
    transition-delay: .05s;
}

.rs-section.in-view .rs-tag {
    transition-delay: .1s;
}

.rs-section.in-view .rs-name,
.rs-section.in-view .rs-title {
    transition-delay: .2s;
}

.rs-section.in-view .rs-subtitle {
    transition-delay: .3s;
}

.rs-section.in-view .rs-lead,
.rs-section.in-view .rs-body {
    transition-delay: .35s;
}

.rs-section.in-view .rs-formula-block {
    transition-delay: .4s;
}

.rs-section.in-view .rs-badges,
.rs-section.in-view .rs-features {
    transition-delay: .5s;
}

.rs-section.in-view .rs-stat-grid {
    transition-delay: .55s;
}

.rs-section.in-view .rs-links {
    transition-delay: .4s;
}

.rs-section.in-view .rs-cta {
    transition-delay: .6s;
}

.rs-section.in-view .rs-connect-grid {
    transition-delay: .4s;
}

/* (end of styles) */

/* (end of styles) */
