@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #070710;
    --bg-soft: #0c0c18;
    --panel: rgba(255, 255, 255, 0.055);
    --panel-strong: rgba(255, 255, 255, 0.085);
    --line: rgba(255, 255, 255, 0.12);
    --line-soft: rgba(255, 255, 255, 0.075);
    --text: #f5f4f8;
    --muted: #aaa8b7;
    --purple: #786aff;
    --purple-soft: #a59cff;
    --blue: #48c9ff;
    --coral: #ff7d68;
    --green: #67e8a4;
    --max-width: 1240px;
    --radius-lg: 32px;
    --radius-md: 22px;
    --header-height: 84px;
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    color: var(--text);
    background:
        radial-gradient(circle at 77% 4%, rgba(89, 79, 223, .15), transparent 25%),
        var(--bg);
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    color: white;
    background: var(--purple);
}

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

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

img,
svg {
    display: block;
}

.container {
    width: min(calc(100% - 48px), var(--max-width));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    color: #111;
    background: white;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

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

.scroll-progress {
    position: fixed;
    z-index: 180;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    overflow: hidden;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--purple), var(--blue), var(--coral));
    box-shadow: 0 0 13px rgba(117, 102, 255, .75);
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
}

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

.ambient {
    position: absolute;
    z-index: -1;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.ambient--one {
    top: 780px;
    left: 0;
    width: 180px;
    background: rgba(91, 76, 234, .12);
}

.ambient--two {
    top: 2620px;
    right: 0;
    width: 180px;
    background: rgba(255, 105, 84, .09);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: height .3s ease, background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.brand-mark {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    font-size: 29px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.09em;
}

.brand-mark span {
    margin-top: 1px;
    margin-left: 1px;
    color: var(--coral);
    font-size: .62em;
    letter-spacing: -.03em;
}

.brand-word {
    color: #a9a7b4;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
    margin-right: 38px;
}

.desktop-nav a {
    position: relative;
    color: #c9c7d1;
    font-size: 13px;
    font-weight: 600;
    transition: color .2s ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--purple-soft);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.desktop-nav a:hover {
    color: white;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.button {
    --magnetic-x: 0px;
    --magnetic-y: 0px;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
    will-change: transform;
}

.button:hover {
    transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 2px), 0);
}

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.audience-list article:focus-visible,
.faq-list summary:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 4px;
}

.button--small {
    min-height: 42px;
    padding: 0 15px;
    border-radius: 12px;
    font-size: 12px;
}

.button--small svg {
    width: 16px;
    fill: currentColor;
}

.button--ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, .04);
}

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

.button--primary {
    position: relative;
    overflow: hidden;
    padding-right: 17px;
    color: white;
    background: linear-gradient(135deg, #6557f2, #8b72ff);
    background-size: 180% 180%;
    box-shadow: 0 16px 45px rgba(87, 70, 234, .25), inset 0 1px rgba(255, 255, 255, .23);
    animation: button-gradient 7s ease infinite;
}

.button--primary::before {
    position: absolute;
    top: -70%;
    left: -30%;
    width: 38%;
    height: 240%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    transform: rotate(22deg);
    transition: left .6s ease;
}

.button--primary:hover {
    box-shadow: 0 20px 55px rgba(87, 70, 234, .4), inset 0 1px rgba(255, 255, 255, .23);
}

.button--primary:hover::before {
    left: 120%;
}

@keyframes button-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.button-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, .13);
}

.button-icon svg {
    width: 17px;
    fill: currentColor;
}

.button-arrow {
    width: 18px;
    margin-left: 3px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    transition: transform .2s ease;
}

.button:hover .button-arrow {
    transform: translateX(3px);
}

.hero {
    position: relative;
    padding-top: 154px;
}

.hero::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 870px;
    content: "";
    opacity: .22;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: radial-gradient(ellipse 70% 65% at 65% 35%, black, transparent);
}

.hero-grid {
    display: grid;
    min-height: 610px;
    grid-template-columns: .93fr 1.07fr;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 4;
    padding-bottom: 36px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #b9b6c6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    box-shadow: inset 0 1px rgba(255, 255, 255, .05);
}

.eyebrow-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 5px rgba(255, 125, 104, .1);
}

.eyebrow-dot::after {
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(255, 125, 104, .35);
    border-radius: inherit;
    content: "";
    animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
    to {
        opacity: 0;
        transform: scale(1.8);
    }
}

.hero-title {
    max-width: 720px;
    margin: 25px 0 22px;
    font-size: clamp(58px, 6.25vw, 92px);
    font-weight: 700;
    line-height: .94;
    letter-spacing: -.072em;
}

.hero-title b {
    font: inherit;
}

.hero-title span {
    color: transparent;
    background: linear-gradient(105deg, #f5f4f8 3%, #aaa4ff 53%, #ff8f7c 104%);
    background-clip: text;
    -webkit-background-clip: text;
}

[data-site-content-multiline] {
    white-space: pre-line;
}

.hero-lead {
    max-width: 590px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 0;
    color: #c7c4d0;
    font-size: 13px;
    font-weight: 700;
    transition: color .2s ease;
}

.text-link span {
    transition: transform .2s ease;
}

.text-link:hover {
    color: white;
}

.text-link:hover span {
    transform: translateY(3px);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.hero-note p {
    margin: 0;
    color: #777582;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.avatar-stack {
    display: flex;
    padding-left: 7px;
}

.avatar-stack span {
    display: grid;
    width: 30px;
    height: 30px;
    margin-left: -7px;
    place-items: center;
    border: 2px solid var(--bg);
    border-radius: 50%;
    color: white;
    background: #2b2840;
    font-size: 10px;
    font-weight: 800;
}

.avatar-stack span:nth-child(2) {
    background: #5c52bf;
}

.avatar-stack span:nth-child(3) {
    color: #1a1725;
    background: #ff907d;
}

.hero-visual {
    position: relative;
    z-index: 2;
    align-self: stretch;
    margin-right: -11vw;
    margin-left: -8vw;
}

.hero-visual picture,
.hero-visual img {
    width: 100%;
    height: 100%;
}

.hero-visual img {
    position: relative;
    z-index: 1;
    object-fit: cover;
    object-position: center;
    filter: saturate(.94) contrast(1.05);
    mask-image: linear-gradient(90deg, transparent 0%, black 14%, black 83%, transparent 99%);
    animation: hero-breathe 10s ease-in-out infinite;
}

@keyframes hero-breathe {
    0%, 100% {
        filter: saturate(.94) contrast(1.05) brightness(1);
        transform: scale(1);
    }
    50% {
        filter: saturate(1.02) contrast(1.05) brightness(1.06);
        transform: scale(1.012);
    }
}

.visual-fade {
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, var(--bg) 0, transparent 9%, transparent 85%, var(--bg) 100%),
        linear-gradient(90deg, var(--bg) 0, transparent 30%);
}

.visual-orbit {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 57%;
    border: 1px solid rgba(134, 123, 255, .17);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.visual-orbit::after {
    position: absolute;
    top: 13%;
    left: 7%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    content: "";
    background: var(--blue);
    box-shadow: 0 0 18px 5px rgba(72, 201, 255, .5);
}

.visual-orbit--one {
    width: 510px;
    height: 510px;
    animation: orbit 24s linear infinite;
}

.visual-orbit--two {
    width: 640px;
    height: 640px;
    opacity: .6;
    animation: orbit 36s linear infinite reverse;
}

@keyframes orbit {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    background: rgba(12, 12, 27, .66);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .25), inset 0 1px rgba(255, 255, 255, .07);
    backdrop-filter: blur(16px);
    transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
    transition: transform .25s ease-out;
}

.floating-card--top {
    top: 17%;
    right: 13%;
    gap: 9px;
    padding: 12px 14px;
    color: #cbc8d7;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.floating-card--top strong {
    margin-left: 10px;
    color: white;
    font-size: 15px;
}

.card-status {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px rgba(103, 232, 164, .7);
}

.floating-card--bottom {
    bottom: 19%;
    left: 18%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
}

.card-label {
    color: #a8a5b3;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mini-tags {
    display: flex;
    gap: 5px;
}

.mini-tags i {
    padding: 4px 7px;
    border-radius: 6px;
    color: #d6d3e1;
    background: rgba(255, 255, 255, .08);
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
}

.countdown-wrap {
    position: relative;
    z-index: 6;
    display: flex;
    min-height: 116px;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding: 22px 28px;
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
        rgba(10, 10, 20, .75);
    box-shadow: inset 0 1px rgba(255, 255, 255, .04), 0 20px 80px rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px);
}

.countdown-copy {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.countdown-copy p {
    margin: 0;
    color: #777481;
    font-size: 12px;
    font-weight: 600;
}

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

.countdown div {
    display: grid;
    min-width: 68px;
    justify-items: center;
}

.countdown strong {
    color: #eceaf2;
    font-size: 31px;
    font-variant-numeric: tabular-nums;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.05em;
}

.countdown strong.is-ticking {
    animation: digit-tick .42s cubic-bezier(.22, .8, .2, 1);
}

@keyframes digit-tick {
    0% {
        opacity: .25;
        filter: blur(5px);
        transform: translateY(-7px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.countdown span {
    margin-top: 9px;
    color: #777582;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.countdown i {
    color: #45434e;
    font-size: 25px;
    font-style: normal;
    line-height: 1;
}

.ticker-section {
    max-width: 100vw;
    overflow: hidden;
    overflow: clip;
    padding: 55px 0 18px;
    contain: paint;
}

.ticker {
    position: relative;
    width: 100%;
    height: 52px;
    max-width: 100%;
    overflow: hidden;
    overflow: clip;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, .015);
    contain: layout paint;
}

.ticker::before,
.ticker::after {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    width: min(9vw, 100px);
    content: "";
    pointer-events: none;
}

.ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}

.ticker::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg), transparent);
}

.ticker-canvas {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 50px;
}

.section {
    position: relative;
    padding: 145px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 64px;
}

.section h2 {
    margin: 17px 0 0;
    font-size: clamp(45px, 5.4vw, 72px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -.065em;
}

.section h2 em {
    color: #827f8e;
    font-style: normal;
}

.section-intro {
    max-width: 510px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.idea::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 800px;
    content: "";
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(105, 91, 244, .08), transparent);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    align-items: center;
}

.chaos-card,
.system-card {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .025);
}

.chaos-card::before,
.system-card::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .3;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(black, transparent 90%);
}

.system-card {
    border-color: rgba(120, 106, 255, .22);
    background:
        radial-gradient(circle at 50% 54%, rgba(100, 87, 240, .15), transparent 42%),
        rgba(255, 255, 255, .035);
    box-shadow: 0 30px 100px rgba(42, 31, 127, .14);
}

.card-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #e1dfe7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.status-badge {
    padding: 5px 8px;
    border: 1px solid;
    border-radius: 999px;
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .08em;
}

.status-badge--muted {
    border-color: rgba(255, 255, 255, .09);
    color: #75727f;
    background: rgba(255, 255, 255, .03);
}

.status-badge--live {
    border-color: rgba(103, 232, 164, .2);
    color: var(--green);
    background: rgba(103, 232, 164, .07);
}

.chaos-map,
.system-map {
    position: relative;
    height: 320px;
    margin-top: 22px;
}

.chaos-map span {
    position: absolute;
    z-index: 2;
    top: var(--y);
    left: var(--x);
    display: grid;
    width: 115px;
    height: 56px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    color: #aaa7b4;
    background: rgba(19, 19, 31, .82);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    font-size: 10px;
    font-weight: 700;
    transform: rotate(var(--r));
}

.chaos-map svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(255, 255, 255, .09);
    stroke-dasharray: 4 7;
    stroke-dashoffset: 0;
    stroke-width: 1;
    animation: data-dash 9s linear infinite;
}

@keyframes data-dash {
    to { stroke-dashoffset: -110; }
}

.chaos-card > p,
.system-card > p {
    position: absolute;
    z-index: 2;
    right: 26px;
    bottom: 23px;
    left: 26px;
    margin: 0;
    color: #6f6c79;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.system-core {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: flex;
    width: 90px;
    height: 90px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 28px;
    color: white;
    background: linear-gradient(145deg, #7769ff, #5146c5);
    box-shadow: 0 0 55px rgba(102, 89, 243, .4), inset 0 1px rgba(255, 255, 255, .28);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.08em;
    transform: translate(-50%, -50%) rotate(-4deg);
}

.system-core span {
    align-self: flex-start;
    margin-top: 21px;
    margin-left: 1px;
    color: var(--coral);
    font-size: 16px;
}

.system-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 245px;
    height: 245px;
    border: 1px dashed rgba(149, 138, 255, .2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbit 30s linear infinite;
}

.system-flow {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.system-flow marker path {
    fill: #aaa1ff;
}

.flow-line {
    fill: none;
    stroke: url("#flow-inward");
    stroke-dasharray: 5 10;
    stroke-linecap: round;
    stroke-width: 1.25;
    marker-end: url("#flow-arrow");
    vector-effect: non-scaling-stroke;
    animation: flow-to-core 2.4s linear infinite;
}

.flow--2,
.flow--3,
.flow--4 {
    stroke: url("#flow-inward-reverse");
}

.flow--2,
.flow--5 {
    animation-delay: -.8s;
}

.flow--3,
.flow--6 {
    animation-delay: -1.6s;
}

@keyframes flow-to-core {
    to { stroke-dashoffset: -30; }
}

.node {
    position: absolute;
    z-index: 2;
    display: grid;
    min-width: 70px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 9px;
    color: #c0bdcb;
    background: #151524;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    font-size: 9px;
    font-weight: 800;
    animation: node-breathe 3.8s ease-in-out infinite;
}

.node:nth-of-type(2) { animation-delay: -.6s; }
.node:nth-of-type(3) { animation-delay: -1.2s; }
.node:nth-of-type(4) { animation-delay: -1.8s; }
.node:nth-of-type(5) { animation-delay: -2.4s; }
.node:nth-of-type(6) { animation-delay: -3s; }

@keyframes node-breathe {
    0%, 100% {
        border-color: rgba(255, 255, 255, .1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    }
    50% {
        border-color: rgba(145, 134, 255, .25);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .18), 0 0 19px rgba(120, 106, 255, .1);
    }
}

.node::after {
    content: none;
}

.node--1 { top: 10%; left: 15%; }
.node--2 { top: 7%; right: 15%; }
.node--3 { top: 46%; right: 3%; }
.node--4 { right: 18%; bottom: 6%; }
.node--5 { bottom: 8%; left: 14%; }
.node--6 { top: 46%; left: 2%; }
.transform-arrow {
    position: relative;
    z-index: 3;
    display: grid;
    width: 62px;
    height: 62px;
    margin-left: -7px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    color: #d8d5e2;
    background: #10101d;
    box-shadow: 0 0 0 8px var(--bg);
    font-size: 22px;
}

.journey {
    padding-top: 80px;
}

.journey-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
}

.journey-heading .section-kicker {
    align-self: flex-start;
    margin-top: 14px;
}

.journey-heading h2 {
    width: 65%;
}

.journey-line {
    position: relative;
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .022);
    grid-template-columns: repeat(5, 1fr);
}

.journey-line::before {
    position: absolute;
    z-index: 0;
    top: 87px;
    right: 10%;
    left: 10%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, var(--purple), var(--blue), var(--coral));
    background-size: 200% 100%;
    box-shadow: 0 0 12px rgba(107, 94, 244, .3);
    animation: journey-flow 5s linear infinite;
}

@keyframes journey-flow {
    to { background-position: -200% 0; }
}

.journey-line article {
    position: relative;
    z-index: 1;
    min-height: 268px;
    padding: 25px 23px;
    border-right: 1px solid var(--line-soft);
}

.journey-line article:last-child {
    border-right: 0;
}

.journey-line article > span {
    color: #5e5b67;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.journey-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-top: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    color: #d9d5e5;
    background: #121220;
    box-shadow: 0 0 0 7px #090911;
}

.journey-icon svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

.journey-line article:nth-child(1) .journey-icon { color: var(--purple-soft); }
.journey-line article:nth-child(3) .journey-icon { color: var(--blue); }
.journey-line article:nth-child(5) .journey-icon { color: var(--coral); }

.journey-line h3 {
    margin: 25px 0 7px;
    font-size: 18px;
    font-weight: 650;
    letter-spacing: -.03em;
}

.journey-line p {
    margin: 0;
    color: #767380;
    font-size: 11px;
    line-height: 1.55;
}

.possibilities {
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 10%, rgba(86, 74, 219, .09), transparent 32%),
        #090912;
}

.section-heading--center {
    display: flex;
    max-width: 760px;
    align-items: center;
    flex-direction: column;
    gap: 0;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading--center .section-intro {
    margin-top: 24px;
}

.bento-grid {
    display: grid;
    grid-auto-rows: minmax(330px, auto);
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

.bento {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --lift: 0px;
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .028);
    transform: perspective(1100px) translateY(var(--lift)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    transition: border-color .3s ease, transform .18s ease-out, background .3s ease;
    will-change: transform;
}

.bento:hover {
    --lift: -3px;
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
}

.bento--large {
    min-height: 470px;
    grid-column: 1 / -1;
}

.bento-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 13px;
    color: #c4bfec;
    background: rgba(119, 105, 255, .08);
}

.bento-icon svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
}

.bento-index {
    position: absolute;
    top: 34px;
    right: 34px;
    color: #55525e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.bento h3 {
    margin: 22px 0 9px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.045em;
}

.bento > p {
    max-width: 475px;
    margin: 0;
    color: #817e8b;
    font-size: 13px;
}

.bento--operations {
    background:
        radial-gradient(circle at 85% 65%, rgba(72, 201, 255, .08), transparent 36%),
        rgba(255, 255, 255, .028);
}

.bento--operations h3,
.bento--operations > p,
.bento--ai h3,
.bento--ai > p {
    max-width: 39%;
}

.calendar-ui {
    position: absolute;
    top: 56px;
    right: 48px;
    bottom: -26px;
    width: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px 22px 0 0;
    background: rgba(13, 14, 27, .8);
    box-shadow: 0 30px 65px rgba(0, 0, 0, .25);
    transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
}

.calendar-top {
    display: flex;
    height: 52px;
    align-items: center;
    gap: 5px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line-soft);
}

.calendar-top i,
.site-bar i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #393743;
}

.calendar-top span {
    margin-left: auto;
    color: #9b98a6;
    font-size: 9px;
    font-weight: 700;
}

.calendar-row {
    display: grid;
    min-height: 96px;
    border-bottom: 1px solid var(--line-soft);
    grid-template-columns: 55px 1fr 1fr;
}

.calendar-row time {
    padding-top: 14px;
    border-right: 1px solid var(--line-soft);
    color: #55535e;
    font-size: 8px;
    text-align: center;
}

.calendar-row > span {
    border-right: 1px solid var(--line-soft);
}

.calendar-row .slot {
    align-self: start;
    margin: 10px 7px;
    padding: 9px;
    border: 1px solid;
    border-radius: 9px;
    font-size: 8px;
    font-weight: 700;
    animation: slot-float 5s ease-in-out infinite;
}

.calendar-row:nth-child(3) .slot { animation-delay: -1.3s; }
.calendar-row:nth-child(4) .slot { animation-delay: -2.6s; }

@keyframes slot-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.calendar-row .slot b {
    display: block;
    margin-top: 3px;
    opacity: .55;
    font-size: 7px;
}

.slot--blue {
    border-color: rgba(72, 201, 255, .2) !important;
    color: #80d8fc;
    background: rgba(72, 201, 255, .08);
}

.slot--coral {
    border-color: rgba(255, 125, 104, .2) !important;
    color: #ff9f8e;
    background: rgba(255, 125, 104, .08);
}

.slot--purple {
    border-color: rgba(120, 106, 255, .22) !important;
    color: #aaa2ff;
    background: rgba(120, 106, 255, .09);
}

.chart-ui {
    position: absolute;
    right: 28px;
    bottom: 22px;
    left: 28px;
}

.chart-ui span {
    color: #686571;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.chart-ui strong {
    float: right;
    color: var(--green);
    font-size: 12px;
}

.chart-ui svg {
    width: 100%;
    height: 92px;
    margin-top: 10px;
    overflow: visible;
}

.chart-fill {
    fill: url("#chart-fill");
}

.chart-line {
    fill: none;
    stroke: var(--green);
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    stroke-linecap: round;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.bento.is-visible .chart-line {
    animation: chart-draw 1.8s cubic-bezier(.2, .8, .2, 1) .25s forwards;
}

@keyframes chart-draw {
    to { stroke-dashoffset: 0; }
}

.bento--site {
    background:
        radial-gradient(circle at 70% 100%, rgba(255, 125, 104, .09), transparent 45%),
        rgba(255, 255, 255, .028);
}

.site-ui {
    position: absolute;
    right: 30px;
    bottom: -40px;
    left: 30px;
    height: 195px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 16px 16px 0 0;
    background:
        radial-gradient(circle at 75% 50%, rgba(255, 139, 116, .28), transparent 22%),
        linear-gradient(135deg, #292353, #17182a 64%);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .25);
}

.site-bar {
    display: flex;
    height: 29px;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(4, 4, 10, .35);
}

.site-body {
    padding: 23px;
}

.site-body small {
    display: block;
    color: #9990f8;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: .12em;
}

.site-body strong {
    display: block;
    margin-top: 8px;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -.05em;
}

.site-body span {
    display: inline-flex;
    margin-top: 14px;
    padding: 6px 9px;
    border-radius: 6px;
    color: #271d1b;
    background: #ff927f;
    font-size: 6px;
    font-weight: 800;
    animation: site-cta-pulse 3s ease-in-out infinite;
}

@keyframes site-cta-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 146, 127, 0); }
    50% { box-shadow: 0 0 0 6px rgba(255, 146, 127, .08); }
}

.team-ui {
    position: absolute;
    top: 76px;
    right: 32px;
    left: 53%;
    display: grid;
    gap: 7px;
}

.bento--team {
    min-height: 330px;
    grid-column: 1 / -1;
}

.bento--team h3,
.bento--team > p {
    max-width: 42%;
}

.team-ui > span {
    display: grid;
    min-height: 42px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: rgba(255, 255, 255, .022);
    grid-template-columns: 28px 1fr auto;
}

.team-ui i {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 7px;
    color: #c6c0fa;
    background: rgba(120, 106, 255, .15);
    font-size: 6px;
    font-style: normal;
    font-weight: 800;
}

.team-ui b {
    color: #a7a4b0;
    font-size: 8px;
}

.team-ui em {
    color: var(--green);
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
}

.bento--ai {
    background:
        radial-gradient(circle at 78% 55%, rgba(120, 106, 255, .12), transparent 35%),
        rgba(255, 255, 255, .028);
}

.ai-ui {
    position: absolute;
    top: 58px;
    right: 54px;
    width: 48%;
}

.ai-question,
.ai-answer {
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(11, 11, 22, .74);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
}

.ai-question {
    display: flex;
    min-height: 70px;
    align-items: center;
    gap: 13px;
    padding: 12px 15px;
    border-radius: 17px;
}

.ai-question i {
    display: grid;
    width: 38px;
    height: 38px;
    flex: none;
    place-items: center;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, #7668ff, #a06fff);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.ai-question span {
    color: #aaa7b4;
    font-size: 10px;
    font-weight: 600;
}

.ai-answer {
    position: relative;
    min-height: 130px;
    margin: 10px 0 0 36px;
    overflow: hidden;
    padding: 24px;
    border-color: rgba(120, 106, 255, .15);
    border-radius: 17px;
    background:
        linear-gradient(135deg, rgba(120, 106, 255, .09), rgba(255, 255, 255, .025)),
        rgba(11, 11, 22, .78);
}

.ai-answer p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #9996a4;
    font-size: 11px;
    line-height: 1.65;
}

.ai-answer strong {
    color: var(--green);
}

.shimmer {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 28%;
    height: 140%;
    opacity: .22;
    background: linear-gradient(90deg, transparent, #8f83ff, transparent);
    filter: blur(8px);
    transform: rotate(18deg);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 25% { left: -35%; }
    70%, 100% { left: 120%; }
}

.module-map {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .04);
    background:
        radial-gradient(circle at 50% 48%, rgba(119, 104, 255, .12), transparent 30%),
        linear-gradient(180deg, #090912, #080811);
}

.module-map-glow {
    position: absolute;
    top: 42%;
    left: 50%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    opacity: .42;
    pointer-events: none;
    background: rgba(112, 96, 255, .16);
    filter: blur(120px);
    transform: translate(-50%, -50%);
}

.module-map-heading {
    position: relative;
    z-index: 1;
}

.module-map-heading h2 em {
    color: #9187e9;
}

.module-map-board {
    position: relative;
    display: grid;
    gap: 76px 110px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
        rgba(255, 255, 255, .018);
    background-size: 44px 44px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-map-board::before,
.module-map-board::after {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    content: "";
    opacity: .7;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(126, 112, 255, .46), transparent);
}

.module-map-board::before {
    width: 74%;
    height: 1px;
    transform: translate(-50%, -50%);
}

.module-map-board::after {
    width: 1px;
    height: 74%;
    background: linear-gradient(180deg, transparent, rgba(126, 112, 255, .46), transparent);
    transform: translate(-50%, -50%);
}

.module-card {
    --module-accent: 145, 132, 255;
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 260px;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 23px;
    background:
        radial-gradient(circle at 0 0, rgba(var(--module-accent), .1), transparent 44%),
        rgba(10, 10, 20, .91);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .16), inset 0 1px rgba(255, 255, 255, .025);
    transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.module-card::after {
    position: absolute;
    top: -1px;
    left: 27px;
    width: 62px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(var(--module-accent), .9), transparent);
    box-shadow: 0 0 13px rgba(var(--module-accent), .35);
}

.module-card:hover {
    border-color: rgba(var(--module-accent), .28);
    background:
        radial-gradient(circle at 0 0, rgba(var(--module-accent), .14), transparent 48%),
        rgba(12, 12, 24, .95);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22), inset 0 1px rgba(255, 255, 255, .04);
}

.module-card--operations { --module-accent: 70, 199, 255; }
.module-card--finance { --module-accent: 103, 232, 164; }
.module-card--growth { --module-accent: 255, 125, 104; }

.module-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.module-card header > span {
    color: #575461;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.module-icon {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid rgba(var(--module-accent), .22);
    border-radius: 13px;
    color: rgb(var(--module-accent));
    background: rgba(var(--module-accent), .07);
}

.module-icon svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

.module-card h3 {
    margin: 22px 0 17px;
    font-size: 23px;
    font-weight: 620;
    line-height: 1.2;
    letter-spacing: -.045em;
}

.module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.module-tags span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 999px;
    color: #8c8996;
    background: rgba(255, 255, 255, .025);
    font-size: 9px;
    font-weight: 700;
    transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.module-card:hover .module-tags span {
    border-color: rgba(var(--module-accent), .16);
    color: #b7b3c1;
    background: rgba(var(--module-accent), .035);
}

.module-core {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: grid;
    width: 94px;
    height: 94px;
    place-items: center;
    border: 1px solid rgba(153, 141, 255, .35);
    border-radius: 29px;
    background: linear-gradient(145deg, #7668ff, #4e43c6);
    box-shadow: 0 0 0 10px #090913, 0 0 65px rgba(113, 97, 255, .48), inset 0 1px rgba(255, 255, 255, .35);
    transform: translate(-50%, -50%) rotate(-4deg);
}

.module-core::before,
.module-core i {
    position: absolute;
    inset: -27px;
    border: 1px solid rgba(143, 130, 255, .16);
    border-radius: 50%;
    content: "";
    animation: module-core-pulse 3.4s ease-out infinite;
}

.module-core i {
    inset: -49px;
    opacity: .5;
    animation-delay: -1.7s;
}

.module-core b {
    color: white;
    font-size: 31px;
    line-height: 1;
    letter-spacing: -.09em;
}

.module-core b span {
    color: var(--coral);
    font-size: .53em;
    vertical-align: top;
}

.module-core small {
    position: absolute;
    bottom: 13px;
    color: rgba(255, 255, 255, .62);
    font-size: 5px;
    font-weight: 800;
    letter-spacing: .15em;
}

@keyframes module-core-pulse {
    0%, 100% { opacity: .35; transform: scale(.9); }
    50% { opacity: .75; transform: scale(1.04); }
}

.module-map-note {
    display: flex;
    max-width: 760px;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 28px auto 0;
    text-align: center;
}

.module-map-note > span {
    position: relative;
    display: grid;
    width: 25px;
    height: 25px;
    flex: none;
    place-items: center;
    border: 1px solid rgba(103, 232, 164, .18);
    border-radius: 50%;
    background: rgba(103, 232, 164, .05);
}

.module-map-note > span i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px rgba(103, 232, 164, .8);
}

.module-map-note p {
    margin: 0;
    color: #777480;
    font-size: 11px;
    line-height: 1.6;
}

.audience {
    background: #f0eee9;
    color: #151419;
}

.audience .section-kicker {
    color: #706d72;
}

.audience-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.audience-copy {
    position: sticky;
    top: 130px;
    align-self: start;
}

.audience-copy h2 {
    margin-bottom: 27px;
}

.audience-copy h2 em {
    color: #8a817b;
}

.audience-copy p {
    max-width: 440px;
    margin: 0;
    color: #747078;
    font-size: 15px;
}

.audience-list {
    border-top: 1px solid rgba(21, 20, 25, .13);
}

.audience-list article {
    display: grid;
    min-height: 126px;
    align-items: center;
    border-bottom: 1px solid rgba(21, 20, 25, .13);
    grid-template-columns: 54px 1fr 34px;
    transition: background .25s ease;
}

.audience-list article:hover {
    background: rgba(255, 255, 255, .32);
}

.audience-list article > span {
    color: #9c9692;
    font-size: 9px;
    font-weight: 800;
}

.audience-list h3 {
    margin: 0 0 3px;
    font-size: 23px;
    font-weight: 650;
    letter-spacing: -.04em;
}

.audience-list p {
    margin: 0;
    color: #7f7a7b;
    font-size: 11px;
}

.audience-list i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(21, 20, 25, .15);
    border-radius: 50%;
    font-size: 13px;
    font-style: normal;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.audience-list article:hover i {
    color: white;
    background: #151419;
    transform: rotate(45deg);
}

.faq {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .035);
    background:
        radial-gradient(circle at 15% 25%, rgba(72, 201, 255, .055), transparent 25%),
        #080811;
}

.faq-grid {
    display: grid;
    gap: 100px;
    grid-template-columns: .82fr 1.18fr;
}

.faq-copy h2 {
    margin-bottom: 25px;
}

.faq-copy h2 em {
    color: #777382;
}

.faq-copy > p {
    max-width: 440px;
    margin: 0;
    color: #797682;
    font-size: 14px;
}

.faq-list {
    position: relative;
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    transition: background .3s ease;
}

.faq-list details[open] {
    background: linear-gradient(90deg, rgba(120, 106, 255, .055), transparent 72%);
}

.faq-list summary {
    display: grid;
    min-height: 112px;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    grid-template-columns: 38px minmax(0, 1fr) 40px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary > span {
    color: #5d5966;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.faq-list summary b {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.025em;
}

.faq-list summary i {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .025);
    transition: border-color .25s ease, background .25s ease, transform .3s ease;
}

.faq-list summary i::before,
.faq-list summary i::after {
    position: absolute;
    width: 12px;
    height: 1px;
    content: "";
    background: #b0acb9;
}

.faq-list summary i::after {
    transform: rotate(90deg);
}

.faq-list summary:hover i,
.faq-list details[open] summary i {
    border-color: rgba(134, 121, 255, .38);
    background: rgba(120, 106, 255, .12);
}

.faq-list details[open] summary i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 56px 27px 54px;
    animation: faq-answer-in .35s ease both;
}

.faq-answer p {
    max-width: 600px;
    margin: 0;
    color: #888592;
    font-size: 13px;
    line-height: 1.75;
}

@keyframes faq-answer-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.final-cta {
    padding: 110px 0;
}

.cta-card {
    position: relative;
    display: grid;
    min-height: 560px;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(125, 105, 255, .35), rgba(29, 23, 73, .62) 52%, rgba(255, 113, 88, .18)),
        #16142c;
    box-shadow: inset 0 1px rgba(255, 255, 255, .13), 0 50px 150px rgba(23, 16, 72, .2);
}

.cta-card::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .17;
    background-image:
        linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 73%);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(141, 118, 255, .35);
    filter: blur(95px);
    transform: translate(-50%, -50%);
}

.cta-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgba(255, 255, 255, .028);
    font-size: 440px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.12em;
    transform: translate(-52%, calc(-50% + var(--mark-shift, 0px)));
    transition: transform .1s linear;
    user-select: none;
}

.cta-mark span {
    color: rgba(255, 125, 104, .04);
    font-size: .5em;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 680px;
    align-items: center;
    flex-direction: column;
    padding: 50px 24px;
    text-align: center;
}

.cta-content .section-kicker {
    color: #cbc5fa;
}

.cta-content h2 {
    margin-top: 17px;
}

.cta-content p {
    max-width: 610px;
    margin: 20px 0 30px;
    color: rgba(240, 237, 249, .68);
    font-size: 15px;
}

.button--light {
    color: #1c1731;
    background: #f3f1f7;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.button--light .button-icon {
    color: white;
    background: #7669ef;
}

.button--light:hover {
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.cta-content small {
    margin-top: 14px;
    color: rgba(255, 255, 255, .38);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.site-footer {
    padding: 40px 0 50px;
    border-top: 1px solid var(--line-soft);
}

.footer-inner {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
}

.footer-inner p {
    margin: 0;
    color: #66636e;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    line-height: 1.55;
    text-align: center;
    text-transform: uppercase;
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    color: #777480;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.footer-meta a {
    color: #c2bfc9;
    transition: color .2s ease;
}

.footer-meta a:hover {
    color: white;
}

.telegram-fab {
    position: fixed;
    z-index: 80;
    right: 20px;
    bottom: 20px;
    display: none;
    min-height: 50px;
    align-items: center;
    gap: 8px;
    padding: 0 16px 0 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: white;
    background: #675af0;
    box-shadow: 0 15px 40px rgba(40, 28, 141, .4);
    font-size: 11px;
    font-weight: 800;
}

.telegram-fab::before,
.telegram-fab::after {
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(139, 125, 255, .5);
    border-radius: inherit;
    content: "";
    pointer-events: none;
    animation: fab-ripple 2.6s ease-out infinite;
}

.telegram-fab::after {
    animation-delay: 1.3s;
}

@keyframes fab-ripple {
    0% {
        opacity: .7;
        transform: scale(1);
    }
    75%, 100% {
        opacity: 0;
        transform: scale(1.22, 1.45);
    }
}

.telegram-fab svg {
    width: 20px;
    fill: currentColor;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .75s cubic-bezier(.2, .7, .2, 1) var(--reveal-delay, 0ms),
        transform .75s cubic-bezier(.2, .7, .2, 1) var(--reveal-delay, 0ms);
}

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

.section:target .reveal {
    opacity: 1;
    transform: translateY(0);
}

.bento.reveal.is-visible {
    transform: perspective(1100px) translateY(var(--lift)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.cursor-aura {
    position: fixed;
    z-index: 3;
    top: -240px;
    left: -240px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(112, 95, 255, .09), rgba(71, 196, 255, .025) 38%, transparent 70%);
    mix-blend-mode: screen;
    transition: opacity .5s ease;
    will-change: transform;
}

.cursor-aura.is-active {
    opacity: 1;
}

.has-spotlight::after {
    position: absolute;
    z-index: 4;
    inset: 0;
    border-radius: inherit;
    content: "";
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(360px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(138, 124, 255, .12), transparent 62%);
    mix-blend-mode: screen;
    transition: opacity .35s ease;
}

.has-spotlight:hover::after {
    opacity: 1;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: .9fr 1.1fr;
    }

    .hero-visual {
        margin-right: -18vw;
        margin-left: -13vw;
    }

    .floating-card--bottom {
        left: 22%;
    }

    .section-heading {
        gap: 50px;
    }

    .calendar-ui {
        right: 28px;
        width: 53%;
    }

    .ai-ui {
        right: 34px;
        width: 51%;
    }

    .module-map-board {
        gap: 58px 76px;
        padding: 28px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 72px;
    }

    .container {
        width: min(calc(100% - 36px), var(--max-width));
    }

    .desktop-nav {
        display: none;
    }

    .hero {
        padding-top: 125px;
    }

    .hero-grid {
        display: flex;
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-copy {
        max-width: 690px;
        padding-bottom: 0;
    }

    .hero-title {
        font-size: clamp(59px, 11vw, 88px);
    }

    .hero-visual {
        width: calc(100% + 72px);
        height: 610px;
        margin: -30px -36px -15px;
    }

    .hero-visual img {
        object-position: 60% center;
        mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .visual-fade {
        background:
            linear-gradient(180deg, var(--bg) 0, transparent 11%, transparent 78%, var(--bg) 100%),
            linear-gradient(90deg, var(--bg) 0, transparent 20%);
    }

    .countdown-wrap {
        margin-top: 0;
    }

    .section {
        padding: 110px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .transform-arrow {
        margin: -12px auto;
        transform: rotate(90deg);
    }

    .journey-heading {
        display: block;
    }

    .journey-heading h2 {
        width: 100%;
    }

    .journey-line {
        overflow-x: auto;
        grid-template-columns: repeat(5, minmax(200px, 1fr));
        scrollbar-width: thin;
    }

    .journey-line::before {
        right: 100px;
        left: 100px;
        width: 800px;
    }

    .bento--operations h3,
    .bento--operations > p,
    .bento--ai h3,
    .bento--ai > p {
        max-width: 46%;
    }

    .module-map-board {
        gap: 44px 54px;
        padding: 22px;
    }

    .module-card {
        min-height: 275px;
        padding: 23px;
    }

    .module-core {
        width: 78px;
        height: 78px;
        border-radius: 24px;
        box-shadow: 0 0 0 8px #090913, 0 0 52px rgba(113, 97, 255, .42), inset 0 1px rgba(255, 255, 255, .35);
    }

    .audience-grid {
        gap: 55px;
        grid-template-columns: 1fr;
    }

    .audience-copy {
        position: static;
    }

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

    .faq-copy > p {
        max-width: 620px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .site-header .brand-word,
    .site-header .button--small {
        display: none;
    }

    .header-inner::after {
        max-width: calc(100vw - 80px);
        flex: none;
        overflow: hidden;
        content: "СЕНТЯБРЬ 2026";
        color: #817e8b;
        font-size: 8px;
        font-weight: 800;
        letter-spacing: .13em;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero {
        padding-top: 112px;
    }

    .hero-title {
        margin-top: 20px;
        font-size: clamp(49px, 15.5vw, 72px);
        letter-spacing: -.073em;
    }

    .hero-lead {
        max-width: 94%;
        font-size: 15px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-top: 29px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .text-link {
        margin-left: 4px;
    }

    .hero-note {
        margin-top: 22px;
    }

    .hero-visual {
        width: calc(100% + 28px);
        height: 420px;
        margin: -15px -14px 0;
    }

    .hero-visual img {
        object-position: 62% center;
    }

    .visual-orbit--one {
        width: 330px;
        height: 330px;
    }

    .visual-orbit--two {
        width: 400px;
        height: 400px;
    }

    .floating-card--top {
        top: 15%;
        right: 7%;
    }

    .floating-card--bottom {
        bottom: 14%;
        left: 5%;
    }

    .countdown-wrap {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        padding: 23px 19px;
    }

    .countdown-copy p {
        font-size: 10px;
    }

    .countdown {
        width: 100%;
        justify-content: space-between;
        gap: 4px;
    }

    .countdown div {
        min-width: 49px;
    }

    .countdown strong {
        font-size: 25px;
    }

    .countdown i {
        font-size: 20px;
    }

    .ticker-section {
        padding-top: 40px;
    }

    .section {
        padding: 88px 0;
    }

    .section h2 {
        font-size: clamp(42px, 12vw, 58px);
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-intro {
        font-size: 14px;
    }

    .chaos-card,
    .system-card {
        min-height: 405px;
        padding: 20px;
        border-radius: 25px;
    }

    .chaos-map,
    .system-map {
        height: 270px;
    }

    .chaos-map span {
        width: 96px;
        height: 47px;
        font-size: 8px;
    }

    .system-ring {
        width: 210px;
        height: 210px;
    }

    .system-core {
        width: 76px;
        height: 76px;
        border-radius: 23px;
    }

    .system-core span {
        margin-top: 16px;
    }

    .node {
        min-width: 60px;
        height: 29px;
        font-size: 8px;
    }

    .journey {
        padding-top: 28px;
    }

    .journey-heading {
        margin-bottom: 42px;
    }

    .journey-heading .section-kicker {
        margin-bottom: 5px;
    }

    .journey-line {
        display: block;
        overflow: hidden;
        border-radius: 24px;
        scroll-snap-type: none;
    }

    .journey-line::before {
        top: 70px;
        right: auto;
        bottom: 70px;
        left: 44px;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, var(--purple), var(--blue), var(--coral));
        background-size: 100% 200%;
        animation: journey-flow-mobile 5s linear infinite;
    }

    .journey-line article {
        min-height: 140px;
        padding: 28px 22px 27px 86px;
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
        scroll-snap-align: none;
    }

    .journey-line article:last-child {
        border-bottom: 0;
    }

    .journey-line article > span {
        position: absolute;
        top: 18px;
        left: 29px;
    }

    .journey-icon {
        position: absolute;
        top: 51px;
        left: 22px;
        width: 45px;
        height: 45px;
        margin: 0;
    }

    .journey-line h3 {
        margin: 10px 0 7px;
        font-size: 19px;
    }

    .journey-line p {
        max-width: 260px;
        font-size: 11px;
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .bento {
        min-height: 400px;
        padding: 23px;
        border-radius: 25px;
    }

    .bento--large {
        min-height: 530px;
    }

    .bento h3 {
        font-size: 23px;
    }

    .bento--operations h3,
    .bento--operations > p,
    .bento--ai h3,
    .bento--ai > p {
        max-width: 100%;
    }

    .calendar-ui {
        top: auto;
        right: 18px;
        bottom: -20px;
        left: 18px;
        width: auto;
        height: 285px;
        transform: none;
    }

    .chart-ui {
        bottom: 28px;
    }

    .site-ui {
        bottom: -20px;
        height: 205px;
    }

    .team-ui {
        top: auto;
        right: 29px;
        bottom: 29px;
        left: 29px;
    }

    .bento--team h3,
    .bento--team > p {
        max-width: 100%;
    }

    .ai-ui {
        top: auto;
        right: 20px;
        bottom: 26px;
        left: 20px;
        width: auto;
    }

    .module-map-board {
        display: flex;
        gap: 12px;
        padding: 12px;
        flex-direction: column;
        background:
            linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px),
            rgba(255, 255, 255, .018);
        background-size: 36px 36px;
    }

    .module-map-board::before,
    .module-map-board::after {
        display: none;
    }

    .module-core {
        position: relative;
        top: auto;
        left: auto;
        order: -1;
        width: 76px;
        height: 76px;
        margin: 17px auto 25px;
        transform: rotate(-4deg);
    }

    .module-core::before {
        inset: -20px;
    }

    .module-core i {
        inset: -37px;
    }

    .module-core b {
        font-size: 27px;
    }

    .module-core small {
        bottom: 10px;
    }

    .module-card {
        min-height: 0;
        padding: 22px;
        border-radius: 20px;
    }

    .module-card h3 {
        margin: 19px 0 15px;
        font-size: 21px;
    }

    .module-map-note {
        align-items: flex-start;
        text-align: left;
    }

    .audience-grid {
        gap: 46px;
    }

    .audience-list article {
        min-height: 114px;
        grid-template-columns: 38px 1fr 30px;
    }

    .audience-list h3 {
        font-size: 20px;
    }

    .audience-list p {
        padding-right: 10px;
    }

    .faq-grid {
        gap: 42px;
    }

    .faq-list summary {
        min-height: 96px;
        gap: 10px;
        grid-template-columns: 28px minmax(0, 1fr) 36px;
    }

    .faq-list summary b {
        font-size: 16px;
    }

    .faq-list summary i {
        width: 34px;
        height: 34px;
    }

    .faq-answer {
        padding: 0 42px 24px 38px;
    }

    .faq-answer p {
        font-size: 12px;
    }

    .final-cta {
        padding: 70px 0;
    }

    .cta-card {
        min-height: 590px;
        border-radius: 28px;
    }

    .cta-mark {
        font-size: 290px;
    }

    .cta-content {
        padding: 44px 20px;
    }

    .cta-content h2 {
        font-size: 48px;
    }

    .cta-content p {
        font-size: 13px;
    }

    .cta-content .button {
        width: 100%;
    }

    .footer-inner {
        gap: 24px;
        grid-template-columns: 1fr auto;
    }

    .footer-inner p {
        display: none;
    }

    .telegram-fab {
        display: flex;
        right: max(14px, env(safe-area-inset-right));
        max-width: calc(100vw - 28px);
    }
}

@keyframes journey-flow-mobile {
    to { background-position: 0 -200%; }
}

@media (max-width: 390px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-visual {
        height: 380px;
    }

    .floating-card--top {
        display: none;
    }

    .countdown strong {
        font-size: 22px;
    }

    .countdown span {
        letter-spacing: .06em;
    }

    .chaos-map span {
        width: 86px;
    }

    .node--3,
    .node--6 {
        display: none;
    }

    .flow--3,
    .flow--6 {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

}
