:root {
    --bg: #050712;
    --bg-soft: #090d1d;
    --surface: rgba(14, 19, 42, .72);
    --surface-strong: #0d132b;
    --line: rgba(255, 255, 255, .11);
    --line-strong: rgba(255, 255, 255, .2);
    --text: #f7f8ff;
    --muted: #9ca7c6;
    --muted-2: #687392;
    --violet: #8f7cff;
    --cyan: #55d9ff;
    --peach: #ff9b70;
    --lime: #9fffc3;
    --header-height: 88px;
    --shell: min(1440px, calc(100vw - 72px));
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --ease-spring: cubic-bezier(.2, .85, .25, 1.2);
    --shadow: 0 32px 90px rgba(0, 0, 0, .42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(79, 93, 255, .07), transparent 34rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    background: rgba(143, 124, 255, .45);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

button,
a,
select,
input {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

svg {
    display: block;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    left: 16px;
    top: 16px;
    padding: 12px 18px;
    border-radius: 999px;
    transform: translateY(-160%);
    background: #fff;
    color: #050712;
    font-weight: 800;
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-noise {
    position: fixed;
    z-index: 1000;
    inset: 0;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.cursor-orbit {
    position: fixed;
    z-index: 900;
    width: 42px;
    height: 42px;
    left: 0;
    top: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    opacity: 0;
    transform: translate3d(-100px, -100px, 0);
    transition: width .3s var(--ease-out), height .3s var(--ease-out), border-color .3s ease, background .3s ease, opacity .3s ease;
    mix-blend-mode: difference;
}

.cursor-orbit::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}

.cursor-orbit.is-visible {
    opacity: 1;
}

.cursor-orbit.is-active {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .55);
}

.site-header {
    position: fixed;
    z-index: 500;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 max(28px, calc((100vw - 1540px) / 2));
    border-bottom: 1px solid transparent;
    transition: background .45s ease, border-color .45s ease, height .45s var(--ease-out), backdrop-filter .45s ease;
}

.site-header.is-scrolled {
    height: 72px;
    background: rgba(5, 7, 18, .76);
    border-color: rgba(255, 255, 255, .08);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: max-content;
}

.brand-mark {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
}

.brand-mark span {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
}

.brand-mark span:nth-child(1) {
    width: 31px;
    height: 12px;
    transform: rotate(20deg);
}

.brand-mark span:nth-child(2) {
    width: 31px;
    height: 12px;
    transform: rotate(-40deg);
}

.brand-mark span:nth-child(3) {
    width: 6px;
    height: 6px;
    border: 0;
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    box-shadow: 0 0 20px var(--cyan);
}

.brand-word {
    font-size: 18px;
    font-weight: 760;
    letter-spacing: -.035em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.site-nav a {
    position: relative;
    color: rgba(241, 244, 255, .7);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: .02em;
    transition: color .25s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 1px;
    background: #fff;
    transition: right .35s var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    right: 0;
}

.nav-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 17px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    background: rgba(255, 255, 255, .045);
    cursor: pointer;
    font-size: 12px;
    font-weight: 720;
    transition: border-color .25s ease, background .25s ease, transform .25s var(--ease-out);
}

.nav-cta:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .09);
}

.nav-cta svg,
.button svg,
.text-action svg,
.scale-step svg,
.swap-button svg,
.catalog-search svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero {
    position: relative;
    min-height: 100svh;
    height: max(760px, 100svh);
    overflow: hidden;
    isolation: isolate;
    background: #050712;
}

.hero::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: auto 0 0;
    height: 230px;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-canvas,
.cta-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-canvas {
    z-index: 0;
    cursor: grab;
    touch-action: pan-y;
}

.hero-canvas:active {
    cursor: grabbing;
}

.hero-aurora {
    position: absolute;
    z-index: 1;
    inset: -25%;
    pointer-events: none;
    background:
        radial-gradient(circle at 74% 43%, rgba(111, 90, 255, .16), transparent 22%),
        radial-gradient(circle at 62% 75%, rgba(71, 216, 255, .08), transparent 24%),
        radial-gradient(circle at 25% 15%, rgba(255, 92, 150, .05), transparent 26%);
    filter: blur(18px);
    animation: aurora-breathe 9s ease-in-out infinite alternate;
}

.hero-grid,
.manifesto-grid {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    opacity: .35;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to right, #000 0, transparent 63%);
}

.hero-copy {
    position: absolute;
    z-index: 10;
    left: max(36px, calc((100vw - 1440px) / 2));
    top: 50%;
    width: min(700px, 50vw);
    transform: translateY(-51%);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 24px;
    color: #9ba7c6;
    font-size: 11px;
    font-weight: 760;
    letter-spacing: .19em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow > span {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    box-shadow: 0 0 10px rgba(85, 217, 255, .65);
}

.hero h1,
.section-heading h2,
.stories-heading h2,
.catalog-heading h2,
.manifesto-inner h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(58px, 7vw, 116px);
    font-weight: 770;
    line-height: .88;
    letter-spacing: -.075em;
}

.hero h1 em,
.section-heading h2 em,
.stories-heading h2 em,
.catalog-heading h2 em,
.manifesto-inner h2 em,
.final-cta h2 em {
    display: inline-block;
    color: transparent;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -.06em;
    background: linear-gradient(105deg, #f9fbff 10%, #9ba8ff 42%, #75e5ff 70%, #e3f8ff 90%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 28px rgba(116, 202, 255, .1));
}

.hero-intro {
    max-width: 570px;
    margin: 32px 0 0;
    color: #aeb8d4;
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.65;
}

.hero-actions,
.final-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 55px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    overflow: hidden;
    font-size: 12px;
    font-weight: 780;
    letter-spacing: .015em;
    transition: transform .3s var(--ease-out), border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.button-primary {
    background: #f7f8ff;
    color: #070914;
    box-shadow: 0 12px 35px rgba(203, 215, 255, .18);
}

.button-primary::before {
    content: "";
    position: absolute;
    inset: -2px;
    transform: translateX(-105%);
    background: linear-gradient(110deg, transparent 20%, rgba(122, 212, 255, .6), rgba(151, 125, 255, .7));
    transition: transform .6s var(--ease-out);
}

.button-primary > * {
    position: relative;
}

.button-primary:hover::before {
    transform: translateX(0);
}

.button-primary:hover {
    box-shadow: 0 14px 48px rgba(112, 160, 255, .28);
}

.button-ghost {
    border-color: rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .035);
    color: #e8ebf9;
    backdrop-filter: blur(10px);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .075);
}

.play-icon {
    position: relative;
    display: inline-block;
    width: 29px;
    height: 29px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
}

.play-icon::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 9px;
    border-left: 6px solid #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.scale-hud {
    position: absolute;
    z-index: 11;
    right: max(36px, calc((100vw - 1440px) / 2));
    top: 50%;
    width: min(330px, 25vw);
    padding: 22px 0 22px 26px;
    transform: translateY(-50%);
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.hud-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8793b6;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hud-index {
    color: #fff;
    font-size: 12px;
}

.scale-hud h2 {
    margin: 22px 0 4px;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1;
    letter-spacing: -.055em;
}

.hud-measure {
    margin: 0;
    color: #c0c8e1;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
}

.hud-description {
    margin: 27px 0 0;
    color: #9ba6c3;
    font-size: 13px;
    line-height: 1.65;
}

.hud-fact {
    margin-top: 26px;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.hud-fact span {
    color: #647092;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hud-fact p {
    margin: 7px 0 0;
    color: #d9ddec;
    font-size: 12px;
    line-height: 1.55;
}

.scale-controls {
    position: absolute;
    z-index: 12;
    left: 50%;
    bottom: 54px;
    display: grid;
    grid-template-columns: 48px minmax(300px, 680px) 48px;
    align-items: center;
    gap: 15px;
    width: min(790px, calc(100vw - 170px));
    transform: translateX(-50%);
}

.scale-step {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    background: rgba(5, 7, 18, .48);
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: transform .25s var(--ease-spring), border-color .25s ease, background .25s ease;
}

.scale-step:hover {
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08);
}

.scale-track-wrap {
    position: relative;
    padding-top: 20px;
}

.scale-track-meta {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    color: #66708d;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 9px;
}

.scale-range {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 22px;
    margin: 0;
    appearance: none;
    background: transparent;
    cursor: ew-resize;
}

.scale-range::-webkit-slider-runnable-track {
    height: 1px;
    background: linear-gradient(90deg, rgba(91, 226, 255, .7), rgba(143, 124, 255, .8), rgba(255, 125, 154, .65));
}

.scale-range::-moz-range-track {
    height: 1px;
    background: linear-gradient(90deg, rgba(91, 226, 255, .7), rgba(143, 124, 255, .8), rgba(255, 125, 154, .65));
}

.scale-range::-webkit-slider-thumb {
    width: 19px;
    height: 19px;
    margin-top: -9px;
    appearance: none;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #7c8cff;
    box-shadow: 0 0 0 7px rgba(124, 140, 255, .16), 0 0 28px rgba(95, 192, 255, .65);
}

.scale-range::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #7c8cff;
    box-shadow: 0 0 0 7px rgba(124, 140, 255, .16), 0 0 28px rgba(95, 192, 255, .65);
}

.scale-ticks {
    position: absolute;
    left: 0;
    right: 0;
    top: 31px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.scale-ticks i {
    width: 1px;
    height: 5px;
    background: rgba(255, 255, 255, .19);
}

.hero-side-label {
    position: absolute;
    z-index: 10;
    right: 18px;
    top: 50%;
    color: rgba(255, 255, 255, .24);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .3em;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
}

.scroll-cue {
    position: absolute;
    z-index: 12;
    left: max(36px, calc((100vw - 1440px) / 2));
    bottom: 43px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #737e9e;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.scroll-cue span {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 37px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
}

.scroll-cue span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    width: 3px;
    height: 7px;
    border-radius: 3px;
    background: #fff;
    transform: translateX(-50%);
    animation: scroll-dot 1.8s ease-in-out infinite;
}

.section-shell {
    position: relative;
    width: var(--shell);
    margin: 0 auto;
}

.compare-section {
    position: relative;
    overflow: hidden;
    padding: 155px 0 185px;
    background:
        radial-gradient(circle at 85% 15%, rgba(117, 86, 255, .08), transparent 28rem),
        var(--bg);
}

.section-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.section-glow-a {
    right: -340px;
    top: 140px;
    background: rgba(62, 122, 255, .09);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: end;
    gap: 90px;
    margin-bottom: 68px;
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -38px;
}

.section-heading h2,
.stories-heading h2,
.catalog-heading h2,
.manifesto-inner h2,
.final-cta h2 {
    font-size: clamp(46px, 6vw, 92px);
}

.section-heading > p:last-child,
.stories-heading > p {
    margin: 0 0 8px;
    color: #929dbd;
    font-size: 15px;
    line-height: 1.7;
}

.compare-lab {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(18, 24, 52, .82), rgba(8, 11, 26, .92));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.compare-lab::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, rgba(255, 255, 255, .035), transparent 27%, transparent 70%, rgba(119, 106, 255, .04));
}

.compare-toolbar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 22px;
    padding: 26px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.object-picker {
    display: grid;
    gap: 9px;
}

.object-picker > span {
    color: #6f7a99;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.object-picker select {
    width: 100%;
    min-height: 58px;
    padding: 0 46px 0 18px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 15px;
    outline: 0;
    appearance: none;
    color: #f5f7ff;
    background:
        linear-gradient(45deg, transparent 50%, #8793b4 50%) calc(100% - 22px) 26px / 6px 6px no-repeat,
        linear-gradient(135deg, #8793b4 50%, transparent 50%) calc(100% - 16px) 26px / 6px 6px no-repeat,
        rgba(255, 255, 255, .035);
    font-size: 14px;
    font-weight: 650;
    cursor: pointer;
    transition: border-color .25s ease, background-color .25s ease;
}

.object-picker select:hover,
.object-picker select:focus-visible {
    border-color: rgba(139, 142, 255, .6);
    background-color: rgba(255, 255, 255, .065);
}

.object-picker select option {
    color: #0a0d1a;
    background: #fff;
}

.swap-button {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin-bottom: 6px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
    transition: transform .35s var(--ease-spring), background .25s ease, border-color .25s ease;
}

.swap-button:hover {
    transform: rotate(180deg);
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .09);
}

.comparison-stage {
    position: relative;
    z-index: 1;
    height: min(54vw, 620px);
    min-height: 410px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 110%, rgba(81, 105, 225, .12), transparent 46%),
        #070a17;
}

.comparison-stage canvas {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: grab;
    touch-action: none;
}

.comparison-stage canvas:active {
    cursor: grabbing;
}

.stage-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to top, #000, rgba(0, 0, 0, .3) 60%, transparent);
}

.stage-badge {
    position: absolute;
    z-index: 3;
    left: 22px;
    top: 22px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    color: #8d98b7;
    background: rgba(5, 7, 18, .55);
    backdrop-filter: blur(10px);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .15em;
}

.stage-hint {
    position: absolute;
    z-index: 3;
    right: 22px;
    top: 27px;
    color: #58627f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.compare-results {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr minmax(230px, .7fr) 1fr;
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.result-object,
.ratio-core {
    min-height: 165px;
    padding: 28px 34px;
}

.result-object {
    display: flex;
    align-items: center;
    gap: 18px;
}

.result-b {
    justify-content: flex-end;
    text-align: right;
}

.result-dot {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--dot, #fff);
    box-shadow: 0 0 30px color-mix(in srgb, var(--dot, #fff) 42%, transparent);
}

.result-object span,
.ratio-core span {
    display: block;
    color: #66718f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.result-object h3 {
    margin: 8px 0 4px;
    font-size: clamp(19px, 2vw, 27px);
    letter-spacing: -.04em;
}

.result-object p {
    margin: 0;
    color: #a1abc7;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
}

.ratio-core {
    display: grid;
    place-content: center;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .08);
    border-right: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .018);
}

.ratio-core strong {
    display: block;
    margin-top: 6px;
    color: transparent;
    background: linear-gradient(90deg, #fff, #9cafff, #77e0ff);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: clamp(35px, 4.5vw, 62px);
    line-height: 1;
    letter-spacing: -.06em;
}

.ratio-core p {
    max-width: 240px;
    margin: 10px auto 0;
    color: #7f8aa8;
    font-size: 10px;
    line-height: 1.5;
}

.compare-actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 20px 28px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.text-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border: 0;
    color: #929dba;
    background: none;
    cursor: pointer;
    font-size: 10px;
    font-weight: 730;
    transition: color .25s ease;
}

.text-action:hover,
.text-action:focus-visible {
    color: #fff;
}

.text-action svg {
    width: 15px;
}

.stories-section {
    position: relative;
    padding: 155px 0 190px;
    background: linear-gradient(to bottom, #050712, #080b18 36%, #050712);
}

.stories-heading {
    display: grid;
    grid-template-columns: 1.2fr .5fr;
    align-items: end;
    gap: 100px;
    margin-bottom: 64px;
}

.stories-heading .eyebrow {
    margin-bottom: 25px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.38fr .81fr .81fr;
    gap: 18px;
}

.story-card {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
    isolation: isolate;
    background: #0a0d1b;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .24);
    transition: transform .7s var(--ease-out), border-color .4s ease, box-shadow .5s ease;
}

.story-card:hover {
    z-index: 2;
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, .22);
    box-shadow: 0 42px 90px rgba(0, 0, 0, .38);
}

.story-card-featured {
    min-height: 660px;
}

.story-art,
.story-overlay {
    position: absolute;
    inset: 0;
}

.story-art {
    transform: scale(1.01);
    transition: transform 1.2s var(--ease-out), filter .8s ease;
}

.story-card:hover .story-art {
    transform: scale(1.07);
}

.story-overlay {
    z-index: 2;
    background: linear-gradient(to top, rgba(4, 6, 14, .98) 3%, rgba(5, 7, 18, .58) 43%, transparent 74%);
}

.story-number {
    position: absolute;
    z-index: 4;
    top: 25px;
    right: 25px;
    color: rgba(255, 255, 255, .4);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
}

.story-content {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px;
}

.story-content > span:first-child {
    color: #8994b1;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.story-content h3 {
    margin: 15px 0 14px;
    font-size: clamp(32px, 3.4vw, 52px);
    line-height: .96;
    letter-spacing: -.055em;
}

.story-card:not(.story-card-featured) .story-content h3 {
    font-size: clamp(29px, 2.6vw, 40px);
}

.story-content p {
    max-width: 460px;
    margin: 0;
    color: #a4aec8;
    font-size: 12px;
    line-height: 1.62;
}

.story-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #eff2ff;
    font-size: 10px;
    font-weight: 730;
}

.story-link b {
    display: inline-grid;
    place-items: center;
    width: 33px;
    height: 33px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    font-weight: 400;
    transition: background .3s ease, transform .3s var(--ease-spring);
}

.story-card:hover .story-link b {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, .1);
}

.solar-art {
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(253, 111, 62, .13), transparent 20%),
        radial-gradient(circle at 72% 45%, rgba(90, 102, 255, .12), transparent 24%),
        #060817;
}

.solar-art::before,
.solar-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .75) 0 1px, transparent 1.4px);
    background-size: 53px 53px;
    opacity: .25;
}

.solar-art::after {
    background-size: 91px 91px;
    transform: translate(21px, 17px);
    opacity: .12;
}

.solar-star {
    position: absolute;
    left: 30%;
    top: 38%;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 38%, #fffde3, #ffd168 37%, #fd754d 73%, rgba(253, 117, 77, .1));
    box-shadow: 0 0 45px rgba(255, 176, 75, .85), 0 0 160px rgba(255, 93, 78, .35);
    animation: solar-pulse 4s ease-in-out infinite alternate;
}

.orbit {
    position: absolute;
    left: 30%;
    top: 38%;
    border: 1px solid rgba(181, 190, 255, .14);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-16deg);
}

.orbit i {
    position: absolute;
    right: 8%;
    top: 20%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a5d9ff;
    box-shadow: 0 0 16px currentColor;
}

.orbit-one { width: 240px; height: 120px; }
.orbit-two { width: 390px; height: 210px; }
.orbit-three { width: 590px; height: 330px; }
.orbit-four { width: 790px; height: 470px; }
.orbit-two i { background: #f4a66f; }
.orbit-three i { width: 12px; height: 12px; background: #72b5ff; }
.orbit-four i { background: #927cff; }

.ocean-art {
    background: linear-gradient(to bottom, #124975 0%, #082743 24%, #041220 55%, #02070d 100%);
}

.ocean-light {
    position: absolute;
    left: 50%;
    top: -10%;
    width: 110%;
    height: 75%;
    transform: translateX(-50%);
    background: conic-gradient(from 165deg at 50% 0%, transparent 0 44%, rgba(100, 225, 255, .22) 47%, transparent 50% 56%, rgba(147, 226, 255, .13) 59%, transparent 63%);
    filter: blur(15px);
}

.whale-shape {
    position: absolute;
    left: 18%;
    top: 36%;
    width: 68%;
    height: 12%;
    border-radius: 58% 42% 48% 52% / 60% 53% 47% 40%;
    background: linear-gradient(to bottom, rgba(120, 181, 224, .72), rgba(13, 47, 76, .85));
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
    transform: rotate(-6deg);
}

.whale-shape::before {
    content: "";
    position: absolute;
    left: -18%;
    top: 14%;
    border-right: 75px solid rgba(72, 125, 165, .7);
    border-top: 38px solid transparent;
    border-bottom: 38px solid transparent;
}

.whale-shape::after {
    content: "";
    position: absolute;
    right: 28%;
    bottom: -35px;
    border-left: 35px solid transparent;
    border-right: 8px solid transparent;
    border-top: 50px solid rgba(29, 80, 115, .8);
    transform: rotate(17deg);
}

.depth-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(140, 213, 255, .11);
}

.depth-one { top: 28%; }
.depth-two { top: 52%; }
.depth-three { top: 74%; }

.human-art {
    background:
        radial-gradient(circle at 50% 42%, rgba(181, 79, 255, .2), transparent 28%),
        linear-gradient(160deg, #16102d, #060817 62%);
}

.human-rings {
    position: absolute;
    left: 50%;
    top: 43%;
    width: 420px;
    height: 420px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(177, 148, 255, .14);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(158, 122, 255, .04), 0 0 0 120px rgba(158, 122, 255, .025);
}

.human-silhouette {
    position: absolute;
    left: 50%;
    top: 49%;
    width: 80px;
    height: 300px;
    transform: translate(-50%, -50%);
}

.human-silhouette i {
    position: absolute;
    display: block;
    background: linear-gradient(180deg, rgba(235, 224, 255, .9), rgba(110, 73, 178, .58));
    box-shadow: 0 0 32px rgba(180, 125, 255, .2);
}

.human-silhouette i:nth-child(1) { left: 25px; width: 32px; height: 32px; border-radius: 50%; }
.human-silhouette i:nth-child(2) { left: 22px; top: 38px; width: 38px; height: 115px; border-radius: 22px 22px 12px 12px; }
.human-silhouette i:nth-child(3) { left: 5px; top: 47px; width: 16px; height: 115px; border-radius: 12px; transform: rotate(7deg); }
.human-silhouette i:nth-child(4) { right: 2px; top: 47px; width: 16px; height: 115px; border-radius: 12px; transform: rotate(-7deg); }
.human-silhouette i:nth-child(5) { left: 22px; top: 142px; width: 38px; height: 145px; background: linear-gradient(90deg, transparent 44%, rgba(28, 17, 54, .8) 45% 55%, transparent 56%), linear-gradient(180deg, rgba(142, 96, 211, .75), rgba(76, 48, 126, .5)); clip-path: polygon(0 0,100% 0,100% 100%,58% 100%,50% 20%,42% 100%,0 100%); }

.human-scan {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(145, 242, 255, .9), transparent);
    box-shadow: 0 0 15px rgba(145, 242, 255, .55);
    animation: scan-line 5s linear infinite;
}

.catalog-section {
    padding: 135px 0 180px;
    background: #050712;
}

.catalog-heading {
    display: grid;
    grid-template-columns: 1fr 430px;
    align-items: end;
    gap: 70px;
}

.catalog-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -30px;
}

.catalog-search {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    margin-bottom: 6px;
    padding: 0 7px 0 17px;
    min-height: 55px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 15px;
    background: rgba(255, 255, 255, .035);
    transition: border-color .25s ease, background .25s ease;
}

.catalog-search:focus-within {
    border-color: rgba(122, 130, 255, .55);
    background: rgba(255, 255, 255, .055);
}

.catalog-search svg {
    width: 18px;
    color: #707b9c;
}

.catalog-search input {
    min-width: 0;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font-size: 13px;
}

.catalog-search input::placeholder {
    color: #66708d;
}

.catalog-search kbd {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 9px;
    color: #707b9a;
    background: rgba(255, 255, 255, .035);
    box-shadow: none;
    font-family: inherit;
    font-size: 10px;
}

.catalog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 55px 0 30px;
}

.catalog-filter button {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 999px;
    color: #7f8aa7;
    background: rgba(255, 255, 255, .025);
    cursor: pointer;
    font-size: 9px;
    font-weight: 760;
    letter-spacing: .06em;
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.catalog-filter button:hover,
.catalog-filter button.active {
    color: #fff;
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .075);
}

.object-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .09);
    border-left: 1px solid rgba(255, 255, 255, .09);
}

.object-card {
    position: relative;
    min-height: 285px;
    padding: 27px;
    overflow: hidden;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .09);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    text-align: left;
    background: rgba(255, 255, 255, .012);
    cursor: pointer;
    transition: background .45s ease, transform .45s var(--ease-out);
}

.object-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -55% 10%;
    height: 80%;
    border-radius: 50%;
    opacity: 0;
    background: var(--object-accent);
    filter: blur(80px);
    transform: scale(.6);
    transition: opacity .55s ease, transform .65s var(--ease-out);
}

.object-card:hover {
    z-index: 2;
    background: rgba(255, 255, 255, .04);
}

.object-card:hover::before {
    opacity: .16;
    transform: scale(1);
}

.object-card[hidden] {
    display: none;
}

.object-card-index {
    position: absolute;
    right: 20px;
    top: 19px;
    color: #4f5975;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 9px;
}

.object-orbit {
    position: relative;
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
    margin: 8px 0 40px;
}

.object-orbit i {
    position: absolute;
    border: 1px solid color-mix(in srgb, var(--object-accent) 38%, transparent);
    border-radius: 50%;
    transition: transform .6s var(--ease-out), border-color .5s ease;
}

.object-orbit i:nth-child(1) { width: 76px; height: 28px; transform: rotate(18deg); }
.object-orbit i:nth-child(2) { width: 76px; height: 28px; transform: rotate(-42deg); }
.object-orbit i:nth-child(3) { width: 13px; height: 13px; background: var(--object-accent); box-shadow: 0 0 28px color-mix(in srgb, var(--object-accent) 65%, transparent); }

.object-card:hover .object-orbit i:nth-child(1) { transform: rotate(155deg) scale(1.08); }
.object-card:hover .object-orbit i:nth-child(2) { transform: rotate(95deg) scale(1.08); }

.object-category {
    display: block;
    color: #68728f;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.object-card strong {
    display: block;
    margin-top: 7px;
    font-size: 20px;
    letter-spacing: -.035em;
}

.object-measure {
    display: block;
    margin-top: 6px;
    color: #9da7c1;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
}

.object-arrow {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    color: #818aa3;
    transition: color .3s ease, transform .4s var(--ease-spring), background .3s ease;
}

.object-card:hover .object-arrow {
    color: #fff;
    transform: rotate(45deg);
    background: rgba(255, 255, 255, .08);
}

.manifesto-section {
    position: relative;
    min-height: 870px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(73, 85, 205, .15), transparent 31%),
        #050712;
}

.manifesto-grid {
    opacity: .45;
    mask-image: radial-gradient(circle, #000, transparent 70%);
}

.manifesto-orb {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(60vw, 760px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(255, 255, 255, .015), 0 0 0 180px rgba(255, 255, 255, .009);
}

.manifesto-orb::before {
    content: "";
    position: absolute;
    inset: 17%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(167, 195, 255, .28), rgba(93, 76, 214, .06) 52%, transparent 70%);
    box-shadow: inset -50px -50px 90px rgba(0, 0, 0, .38), 0 0 100px rgba(84, 98, 232, .13);
}

.manifesto-orb i {
    position: absolute;
    inset: 7%;
    border: 1px solid rgba(151, 157, 255, .13);
    border-radius: 50%;
    transform: rotateX(68deg) rotateZ(10deg);
    animation: orbit-spin 18s linear infinite;
}

.manifesto-orb i:nth-child(2) {
    transform: rotateY(68deg) rotateZ(50deg);
    animation-direction: reverse;
    animation-duration: 25s;
}

.manifesto-orb i:nth-child(3) {
    inset: 30%;
    border-color: rgba(97, 230, 255, .22);
    animation-duration: 12s;
}

.manifesto-inner {
    position: relative;
    z-index: 2;
    width: min(970px, calc(100vw - 48px));
    text-align: center;
}

.manifesto-inner .eyebrow {
    justify-content: center;
}

.manifesto-inner > p:not(.eyebrow) {
    max-width: 730px;
    margin: 34px auto 0;
    color: #a0aac7;
    font-size: 15px;
    line-height: 1.75;
}

.manifesto-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.manifesto-stats > div {
    display: grid;
    gap: 8px;
    padding: 28px 18px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.manifesto-stats > div:last-child {
    border-right: 0;
}

.manifesto-stats strong {
    font-size: 30px;
    letter-spacing: -.05em;
}

.manifesto-stats span {
    color: #717c9c;
    font-size: 8px;
    font-weight: 760;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.final-cta {
    position: relative;
    min-height: 780px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #04060e;
}

.final-cta::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0 15%, rgba(4, 6, 14, .18) 45%, #04060e 86%);
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    width: min(900px, calc(100vw - 48px));
    text-align: center;
}

.cta-kicker {
    display: block;
    margin-bottom: 24px;
    color: #7b86a5;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.final-actions {
    justify-content: center;
}


.network-footer {
    position: relative;
    padding: 80px 0 72px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    isolation: isolate;
}

.network-footer::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: min(980px, 92vw);
    height: 360px;
    background:
        radial-gradient(circle at 20% 45%, rgba(82, 205, 255, .11), transparent 38%),
        radial-gradient(circle at 82% 30%, rgba(149, 95, 255, .11), transparent 38%);
    filter: blur(30px);
    opacity: .85;
    transform: translateX(-50%);
    pointer-events: none;
}

.network-footer-head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 42px;
}

.network-kicker {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    color: #8f9ab8;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.network-kicker span {
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, #56d8ff, #a071ff);
    box-shadow: 0 0 18px rgba(86, 216, 255, .75);
}

.network-footer h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 570;
    line-height: .94;
    letter-spacing: -.055em;
}

.network-footer h2 em {
    color: transparent;
    background: linear-gradient(110deg, #ffffff 5%, #8edfff 48%, #b89bff 92%);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: inherit;
    font-style: normal;
}

.network-footer-head > p {
    max-width: 520px;
    margin: 0 0 4px;
    color: #7c87a5;
    font-size: 13px;
    line-height: 1.85;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.network-card {
    --network-accent: 86, 216, 255;
    position: relative;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 15px;
    min-height: 112px;
    padding: 19px 19px 19px 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 18px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
        rgba(9, 12, 26, .66);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
    transform: translateZ(0);
    transition:
        transform .5s var(--ease-out),
        border-color .35s ease,
        box-shadow .5s var(--ease-out),
        background .35s ease;
}

.network-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(115deg, rgba(var(--network-accent), .13), transparent 42%);
    opacity: .32;
    transition: opacity .35s ease;
    pointer-events: none;
}

.network-card-glow {
    position: absolute;
    right: -58px;
    bottom: -74px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(var(--network-accent), .17);
    filter: blur(46px);
    opacity: .2;
    transition: opacity .35s ease, transform .55s var(--ease-out);
    pointer-events: none;
}

.network-monogram {
    position: relative;
    z-index: 1;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(var(--network-accent), .3);
    border-radius: 15px;
    color: rgb(var(--network-accent));
    background: rgba(var(--network-accent), .075);
    box-shadow:
        inset 0 0 20px rgba(var(--network-accent), .05),
        0 0 28px rgba(var(--network-accent), .05);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
}

.network-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 6px;
    min-width: 0;
}

.network-copy strong {
    overflow: hidden;
    font-size: 12px;
    font-weight: 720;
    letter-spacing: -.01em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.network-copy small {
    overflow: hidden;
    color: #78839f;
    font-size: 9px;
    font-weight: 560;
    letter-spacing: .015em;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.network-card > svg {
    position: relative;
    z-index: 1;
    width: 18px;
    fill: none;
    stroke: #66708d;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .3s ease, transform .45s var(--ease-out);
}

.network-card:hover,
.network-card:focus-visible {
    border-color: rgba(var(--network-accent), .28);
    background:
        linear-gradient(135deg, rgba(var(--network-accent), .09), rgba(255, 255, 255, .022)),
        rgba(11, 15, 31, .82);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        0 22px 55px rgba(0, 0, 0, .28),
        0 0 45px rgba(var(--network-accent), .055);
    transform: translateY(-5px);
}

.network-card:hover::before,
.network-card:focus-visible::before,
.network-card:hover .network-card-glow,
.network-card:focus-visible .network-card-glow {
    opacity: .85;
}

.network-card:hover .network-card-glow,
.network-card:focus-visible .network-card-glow {
    transform: scale(1.15) translate(-8px, -5px);
}

.network-card:hover > svg,
.network-card:focus-visible > svg {
    stroke: rgb(var(--network-accent));
    transform: translate(3px, -3px);
}

.network-card:focus-visible {
    outline: 2px solid rgba(var(--network-accent), .7);
    outline-offset: 3px;
}

.network-ploppbox { --network-accent: 83, 221, 255; }
.network-arcade { --network-accent: 255, 87, 186; }
.network-holistic { --network-accent: 106, 221, 170; }
.network-huskurer { --network-accent: 242, 181, 91; }
.network-folk { --network-accent: 148, 214, 111; }
.network-venue { --network-accent: 163, 119, 255; }
.network-foundry { --network-accent: 238, 195, 119; }

.site-footer {
    width: var(--shell);
    margin: 0 auto;
    padding: 65px 0 30px;
    background: var(--bg);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 50px;
    padding-bottom: 55px;
}

.footer-main > p {
    margin: 0;
    color: #727d9b;
    font-size: 12px;
}

.footer-main nav {
    display: flex;
    gap: 28px;
}

.footer-main nav a,
.footer-bottom {
    color: #78829e;
    font-size: 10px;
}

.footer-main nav a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom span:nth-child(2) {
    text-align: center;
}

.footer-bottom a {
    justify-self: end;
}

.toast {
    position: fixed;
    z-index: 1200;
    left: 50%;
    bottom: 30px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #fff;
    background: rgba(13, 18, 39, .88);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
    backdrop-filter: blur(15px);
    font-size: 11px;
    font-weight: 670;
    opacity: 0;
    transform: translate(-50%, 20px);
    pointer-events: none;
    transition: opacity .3s ease, transform .45s var(--ease-out);
}

.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.noscript-notice {
    position: fixed;
    z-index: 3000;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    color: #050712;
    background: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
    transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes aurora-breathe {
    from { transform: translate3d(-1%, -1%, 0) scale(.98); opacity: .7; }
    to { transform: translate3d(1%, 1%, 0) scale(1.04); opacity: 1; }
}

@keyframes scroll-dot {
    0% { transform: translate(-50%, 0); opacity: 0; }
    25% { opacity: 1; }
    75% { opacity: 1; }
    100% { transform: translate(-50%, 13px); opacity: 0; }
}

@keyframes solar-pulse {
    to { transform: scale(1.07); filter: brightness(1.15); }
}

@keyframes scan-line {
    0% { top: 18%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 77%; opacity: 0; }
}

@keyframes orbit-spin {
    to { transform: rotateX(68deg) rotateZ(370deg); }
}

@media (max-width: 1180px) {
    :root { --shell: min(100% - 44px, 1180px); }
    .site-nav { display: none; }
    .site-header { grid-template-columns: 1fr auto; }
    .hero-copy { width: min(620px, 58vw); }
    .scale-hud { width: 285px; }
    .story-grid { grid-template-columns: 1.25fr 1fr; }
    .story-card:last-child { grid-column: 2; }
    .story-card-featured { grid-row: span 2; }
    .object-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    :root { --header-height: 72px; --shell: calc(100% - 32px); }
    .site-header { padding: 0 18px; }
    .nav-cta span { display: none; }
    .nav-cta { width: 42px; height: 42px; justify-content: center; padding: 0; }
    .hero { height: auto; min-height: 940px; }
    .hero-copy { left: 24px; right: 24px; top: 135px; width: auto; transform: none; }
    .hero h1 { font-size: clamp(55px, 12vw, 88px); }
    .hero-intro { max-width: 620px; }
    .scale-hud { left: 24px; right: 24px; top: auto; bottom: 205px; width: auto; transform: none; padding: 19px 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(5,7,18,.45); backdrop-filter: blur(12px); }
    .hud-description { margin-top: 13px; }
    .hud-fact { display: none; }
    .scale-controls { bottom: 120px; width: calc(100% - 42px); grid-template-columns: 40px 1fr 40px; gap: 8px; }
    .scroll-cue { display: none; }
    .hero-side-label { display: none; }
    .section-heading, .stories-heading, .catalog-heading { grid-template-columns: 1fr; gap: 30px; }
    .section-heading .eyebrow, .catalog-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
    .section-heading > p:last-child, .stories-heading > p { max-width: 620px; }
    .compare-section, .stories-section, .catalog-section { padding-top: 110px; padding-bottom: 125px; }
    .compare-results { grid-template-columns: 1fr 1fr; }
    .ratio-core { grid-column: 1 / -1; grid-row: 1; min-height: 130px; border-left: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .story-grid { grid-template-columns: 1fr 1fr; }
    .story-card-featured { grid-column: 1 / -1; min-height: 600px; }
    .story-card:last-child { grid-column: auto; }
    .object-grid { grid-template-columns: repeat(2, 1fr); }
    .manifesto-stats { grid-template-columns: repeat(2, 1fr); }
    .manifesto-stats > div:nth-child(2) { border-right: 0; }
    .manifesto-stats > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
    .network-footer-head { grid-template-columns: 1fr; gap: 28px; }
    .network-footer-head > p { max-width: 700px; }
    .network-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-main { grid-template-columns: 1fr auto; }
    .footer-main > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 640px) {
    :root { --shell: calc(100% - 24px); }
    .brand-word { font-size: 16px; }
    .hero { min-height: 990px; }
    .hero-copy { left: 18px; right: 18px; top: 115px; }
    .hero h1 { font-size: clamp(48px, 15vw, 72px); }
    .hero-intro { margin-top: 24px; font-size: 15px; line-height: 1.6; }
    .hero-actions { margin-top: 28px; }
    .button { min-height: 51px; padding: 0 18px; }
    .scale-hud { left: 14px; right: 14px; bottom: 204px; }
    .scale-hud h2 { font-size: 28px; }
    .hud-description { max-height: 44px; overflow: hidden; }
    .scale-controls { bottom: 125px; width: calc(100% - 20px); }
    .scale-track-meta { display: none; }
    .scale-track-wrap { padding-top: 4px; }
    .scale-ticks { top: 15px; }
    .section-heading h2, .stories-heading h2, .catalog-heading h2, .manifesto-inner h2, .final-cta h2 { font-size: clamp(43px, 13vw, 66px); }
    .compare-toolbar { grid-template-columns: 1fr auto; padding: 18px; }
    .compare-toolbar .object-picker:last-child { grid-column: 1 / -1; grid-row: 2; }
    .swap-button { grid-column: 2; grid-row: 1; }
    .comparison-stage { min-height: 360px; }
    .stage-hint { display: none; }
    .compare-results { display: block; }
    .result-object { min-height: 120px; padding: 22px; }
    .result-b { justify-content: flex-start; text-align: left; border-top: 1px solid rgba(255,255,255,.08); }
    .ratio-core { min-height: 120px; }
    .compare-actions { justify-content: flex-start; flex-direction: column; gap: 2px; padding: 16px 22px; }
    .story-grid { grid-template-columns: 1fr; }
    .story-card, .story-card-featured { min-height: 560px; }
    .story-content { padding: 28px; }
    .object-grid { grid-template-columns: 1fr; }
    .object-card { min-height: 240px; }
    .object-orbit { margin-bottom: 25px; }
    .manifesto-section { min-height: 880px; }
    .manifesto-orb { width: 110vw; }
    .manifesto-stats { margin-top: 55px; }
    .manifesto-stats > div { padding: 22px 10px; }
    .final-cta { min-height: 680px; }
    .network-footer { padding-top: 64px; }
    .network-footer h2 { font-size: clamp(40px, 13vw, 60px); }
    .network-grid { grid-template-columns: 1fr; }
    .network-card { min-height: 104px; }
    .footer-main { grid-template-columns: 1fr; gap: 28px; }
    .footer-main nav { flex-wrap: wrap; }
    .footer-main > p { grid-column: auto; grid-row: auto; }
    .footer-bottom { grid-template-columns: 1fr; }
    .footer-bottom span:nth-child(2) { text-align: left; }
    .footer-bottom a { justify-self: start; }
}

@media (pointer: coarse) {
    .cursor-orbit { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
    :root { --muted: #c5cbe0; --line: rgba(255,255,255,.25); }
    .site-header.is-scrolled { background: rgba(3,4,9,.96); }
    .button-ghost, .object-picker select, .compare-lab { border-color: rgba(255,255,255,.35); }
}
