:root {
    --background: #05070d;
    --background-soft: #090d18;
    --surface: rgba(15, 20, 34, 0.72);
    --surface-strong: rgba(21, 28, 46, 0.92);
    --surface-light: rgba(255, 255, 255, 0.055);
    --line: rgba(255, 255, 255, 0.105);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f7f9ff;
    --text-soft: #aab4c8;
    --text-muted: #727e94;
    --cyan: #61e7ff;
    --blue: #6577ff;
    --violet: #9f6cff;
    --pink: #ff5fb7;
    --green: #5df4bb;
    --orange: #ffb15c;
    --radius-small: 14px;
    --radius-medium: 24px;
    --radius-large: 36px;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 20% -10%,
            rgba(76, 95, 255, 0.2),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 15%,
            rgba(128, 56, 255, 0.15),
            transparent 34%
        ),
        var(--background);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.5;
}

body.menu-open {
    overflow: hidden;
}

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

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

img,
svg {
    max-width: 100%;
}

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

.page-noise {
    position: fixed;
    inset: 0;
    z-index: 30;
    opacity: 0.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='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.grid-background {
    position: fixed;
    inset: 0;
    z-index: -4;
    opacity: 0.17;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.aurora {
    position: fixed;
    z-index: -3;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
}

.aurora-one {
    top: 10%;
    left: -300px;
    background: var(--blue);
}

.aurora-two {
    top: 42%;
    right: -340px;
    background: var(--violet);
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    transition:
        background 220ms ease,
        border-color 220ms ease,
        backdrop-filter 220ms ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    border-color: var(--line);
    background: rgba(5, 7, 13, 0.78);
    backdrop-filter: blur(22px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 38px;
}

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

.brand-mark {
    position: relative;
    display: inline-flex;
    align-items: end;
    gap: 3px;
    width: 28px;
    height: 28px;
    padding: 5px;
    border: 1px solid rgba(113, 221, 255, 0.38);
    border-radius: 9px;
    background:
        linear-gradient(
            145deg,
            rgba(97, 231, 255, 0.19),
            rgba(101, 119, 255, 0.09)
        );
    box-shadow:
        inset 0 0 16px rgba(97, 231, 255, 0.09),
        0 0 28px rgba(101, 119, 255, 0.12);
}

.brand-mark span {
    display: block;
    width: 4px;
    border-radius: 10px;
    background: linear-gradient(to top, var(--blue), var(--cyan));
    box-shadow: 0 0 8px rgba(97, 231, 255, 0.45);
}

.brand-mark span:nth-child(1) {
    height: 8px;
}

.brand-mark span:nth-child(2) {
    height: 16px;
}

.brand-mark span:nth-child(3) {
    height: 12px;
}

.brand-name {
    font-size: 0.91rem;
    font-weight: 800;
    letter-spacing: 0.24em;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
}

.main-navigation a,
.text-link {
    color: var(--text-soft);
    font-size: 0.88rem;
    transition: color 180ms ease;
}

.main-navigation a:hover,
.text-link:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.menu-button {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.91rem;
    font-weight: 700;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 0.82rem;
}

.button-primary {
    color: #05070d;
    background: linear-gradient(135deg, #7cf0ff, #8690ff 58%, #bd76ff);
    box-shadow:
        0 15px 40px rgba(101, 119, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.button-primary:hover {
    box-shadow:
        0 20px 55px rgba(101, 119, 255, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.button-secondary,
.button-ghost {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    backdrop-filter: blur(14px);
}

.button-secondary:hover,
.button-ghost:hover {
    border-color: rgba(97, 231, 255, 0.38);
    background: rgba(255, 255, 255, 0.07);
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 0 48px;
    overflow: hidden;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: calc(100vh - 245px);
    grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1.07fr);
    align-items: center;
    gap: 76px;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a8dfff;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 28px;
    padding: 9px 14px;
    border: 1px solid rgba(97, 231, 255, 0.18);
    border-radius: 999px;
    background: rgba(97, 231, 255, 0.055);
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
}

.hero-title {
    max-width: 780px;
    margin: 0;
    font-size: clamp(4rem, 7.1vw, 7.1rem);
    line-height: 0.91;
    letter-spacing: -0.067em;
}

.gradient-text {
    display: block;
    padding-bottom: 0.08em;
    background:
        linear-gradient(
            100deg,
            #ffffff 0%,
            #91efff 27%,
            #8b91ff 61%,
            #d785ff 100%
        );
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 665px;
    margin: 32px 0 0;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    margin-top: 54px;
}

.hero-trust div {
    display: grid;
    gap: 4px;
}

.hero-trust strong {
    font-size: 0.87rem;
}

.hero-trust span {
    color: var(--text-muted);
    font-size: 0.76rem;
}

.hero-visual {
    position: relative;
}

.system-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 30px;
    background:
        linear-gradient(
            155deg,
            rgba(23, 29, 49, 0.95),
            rgba(8, 12, 22, 0.91)
        );
    box-shadow:
        0 50px 140px rgba(0, 0, 0, 0.55),
        0 0 120px rgba(81, 89, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transform: perspective(1300px) rotateY(-5deg) rotateX(2deg);
}

.system-shell::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.07),
            transparent 22%,
            transparent 76%,
            rgba(130, 106, 255, 0.06)
        );
}

.system-shell-top {
    min-height: 52px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.window-controls {
    display: flex;
    gap: 7px;
}

.window-controls span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.window-controls span:nth-child(1) {
    background: #ff6c7a;
}

.window-controls span:nth-child(2) {
    background: #ffc668;
}

.window-controls span:nth-child(3) {
    background: #5ce5a0;
}

.shell-title {
    color: var(--text-muted);
    font-size: 0.69rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-online {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    gap: 7px;
    color: #9bf6ce;
    font-size: 0.68rem;
}

.status-online i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(93, 244, 187, 0.9);
}

.system-display {
    position: relative;
    min-height: 525px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            rgba(98, 105, 255, 0.12),
            transparent 32%
        ),
        linear-gradient(
            rgba(255, 255, 255, 0.016) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.016) 1px,
            transparent 1px
        );
    background-size: auto, 30px 30px, 30px 30px;
}

.system-display::before,
.system-display::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.system-display::before {
    inset: 0;
    background:
        radial-gradient(
            circle at 18% 28%,
            rgba(97, 231, 255, 0.14),
            transparent 16%
        ),
        radial-gradient(
            circle at 78% 22%,
            rgba(159, 108, 255, 0.13),
            transparent 16%
        ),
        radial-gradient(
            circle at 76% 80%,
            rgba(255, 95, 183, 0.1),
            transparent 18%
        );
}

.system-display::after {
    top: 50%;
    left: 50%;
    width: 1px;
    height: 82%;
    opacity: 0.4;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(103, 133, 255, 0.42),
        transparent
    );
    transform: translate(-50%, -50%) rotate(37deg);
}

.system-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(108, 131, 255, 0.14);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-a {
    width: 190px;
    height: 190px;
    animation: rotate-ring 22s linear infinite;
}

.ring-b {
    width: 320px;
    height: 320px;
    border-style: dashed;
    animation: rotate-ring-reverse 34s linear infinite;
}

.ring-c {
    width: 470px;
    height: 470px;
    opacity: 0.42;
    animation: rotate-ring 48s linear infinite;
}

.ring-a::before,
.ring-b::before,
.ring-c::before {
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    content: "";
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(97, 231, 255, 0.78);
}

.system-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 156px;
    height: 156px;
    display: grid;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(130, 148, 255, 0.3);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(56, 70, 130, 0.95),
            rgba(12, 17, 33, 0.96) 64%
        );
    box-shadow:
        0 0 70px rgba(101, 119, 255, 0.23),
        inset 0 0 40px rgba(97, 231, 255, 0.07);
    transform: translate(-50%, -50%);
}

.core-logo {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 35px;
    margin-bottom: 11px;
}

.core-logo span {
    width: 7px;
    border-radius: 10px;
    background: linear-gradient(to top, var(--blue), var(--cyan));
    box-shadow: 0 0 14px rgba(97, 231, 255, 0.42);
}

.core-logo span:nth-child(1) {
    height: 17px;
}

.core-logo span:nth-child(2) {
    height: 31px;
}

.core-logo span:nth-child(3) {
    height: 23px;
}

.system-core strong {
    font-size: 0.84rem;
    letter-spacing: 0.2em;
}

.system-core small {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 0.54rem;
    letter-spacing: 0.18em;
}

.system-node {
    position: absolute;
    z-index: 4;
    min-width: 150px;
    padding: 13px 15px 13px 31px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(12, 17, 31, 0.88);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.system-node:hover {
    z-index: 6;
    border-color: rgba(97, 231, 255, 0.38);
    background: rgba(24, 31, 52, 0.97);
    transform: translateY(-4px);
}

.system-node strong,
.system-node small {
    display: block;
}

.system-node strong {
    font-size: 0.79rem;
}

.system-node small {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 0.61rem;
}

.node-light {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 13px rgba(97, 231, 255, 0.85);
    transform: translateY(-50%);
}

.node-clarvox {
    top: 82px;
    left: 34px;
}

.node-ai {
    top: 105px;
    right: 30px;
}

.node-wewe {
    right: 44px;
    bottom: 73px;
}

.node-siteproof {
    bottom: 92px;
    left: 42px;
}

.node-ai .node-light {
    background: var(--violet);
    box-shadow: 0 0 13px rgba(159, 108, 255, 0.85);
}

.node-wewe .node-light {
    background: var(--pink);
    box-shadow: 0 0 13px rgba(255, 95, 183, 0.85);
}

.node-siteproof .node-light {
    background: var(--green);
    box-shadow: 0 0 13px rgba(93, 244, 187, 0.85);
}

.system-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.system-metrics div {
    display: grid;
    gap: 3px;
    padding: 19px 20px;
    border-right: 1px solid var(--line);
}

.system-metrics div:last-child {
    border-right: 0;
}

.system-metrics span {
    color: var(--text-muted);
    font-size: 0.64rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.system-metrics strong {
    font-size: 0.78rem;
}

.hero-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 18px;
    color: var(--text-muted);
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, var(--line-strong), transparent);
}

.hero-footer a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(116, 129, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    top: -510px;
    right: -400px;
    width: 1140px;
    height: 1140px;
}

.orbit-two {
    right: -180px;
    bottom: -380px;
    width: 720px;
    height: 720px;
}

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

.section-heading {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 470px);
    align-items: end;
    gap: 70px;
    margin-bottom: 58px;
}

.section-heading h2,
.platform-copy h2,
.vision-copy h2,
.cta-panel h2 {
    margin: 14px 0 0;
    font-size: clamp(2.65rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.section-heading h2 span,
.platform-copy h2 span {
    color: #8490a8;
}

.section-heading p,
.platform-copy p,
.vision-copy p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.flagship-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            145deg,
            rgba(25, 31, 51, 0.86),
            rgba(8, 11, 20, 0.94)
        );
    box-shadow: var(--shadow);
    transition:
        transform 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.product-card:hover {
    z-index: 3;
    border-color: rgba(121, 147, 255, 0.32);
    box-shadow:
        0 45px 110px rgba(0, 0, 0, 0.52),
        0 0 70px rgba(94, 96, 255, 0.07);
    transform: translateY(-7px);
}

.product-card-glow {
    position: absolute;
    top: -200px;
    right: -170px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    opacity: 0.16;
    filter: blur(80px);
    pointer-events: none;
}

.clarvox-card .product-card-glow {
    background: var(--cyan);
}

.ai-card .product-card-glow {
    background: var(--violet);
}

.wewe-card .product-card-glow {
    background: var(--pink);
}

.tracker-card .product-card-glow {
    background: var(--green);
}

.product-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 28px 30px 0;
    color: var(--text-muted);
    font-size: 0.66rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.product-index {
    color: var(--text-soft);
}

.product-visual {
    position: relative;
    height: 280px;
    margin: 25px 25px 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #090d17;
}

.product-content {
    position: relative;
    z-index: 2;
    padding: 31px;
}

.product-logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.product-logo-row h3 {
    margin: 0;
    font-size: 2.15rem;
    letter-spacing: -0.04em;
}

.product-logo-row span {
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.61rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-content > p {
    min-height: 76px;
    margin: 18px 0 22px;
    color: var(--text-soft);
    line-height: 1.65;
}

.product-features {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-features li {
    position: relative;
    padding-left: 19px;
    color: #cbd3e1;
    font-size: 0.86rem;
}

.product-features li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 6px;
    height: 6px;
    content: "";
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(97, 231, 255, 0.52);
}

.ai-card .product-features li::before {
    background: var(--violet);
}

.wewe-card .product-features li::before {
    background: var(--pink);
}

.tracker-card .product-features li::before {
    background: var(--green);
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-top: 28px;
}

.product-button {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    gap: 12px;
    padding: 0 17px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.81rem;
    font-weight: 700;
    transition:
        border-color 180ms ease,
        background 180ms ease;
}

.product-button:hover {
    border-color: rgba(97, 231, 255, 0.43);
    background: rgba(255, 255, 255, 0.09);
}

.product-actions > a:last-child {
    color: var(--text-muted);
    font-size: 0.76rem;
}

.mixer-panel {
    position: absolute;
    inset: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.055),
            transparent 35%
        ),
        #111722;
    transform: perspective(780px) rotateX(8deg);
}

.mixer-channel {
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto 1.2fr;
    justify-items: center;
    gap: 13px;
    padding: 13px 8px;
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 9px;
    background:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.035),
            rgba(0, 0, 0, 0.14)
        );
}

.mixer-channel.master {
    border-color: rgba(97, 231, 255, 0.18);
}

.meter {
    width: 7px;
    height: 68px;
    align-self: end;
    border-radius: 10px;
    background:
        linear-gradient(
            to top,
            #4df2ab 0 46%,
            #f0d856 46% 62%,
            rgba(255, 255, 255, 0.07) 62%
        );
    box-shadow: 0 0 10px rgba(77, 242, 171, 0.15);
}

.meter.medium {
    background:
        linear-gradient(
            to top,
            #4df2ab 0 61%,
            #f0d856 61% 77%,
            rgba(255, 255, 255, 0.07) 77%
        );
}

.meter.high {
    background:
        linear-gradient(
            to top,
            #4df2ab 0 54%,
            #f0d856 54% 74%,
            #ff6d7c 74% 82%,
            rgba(255, 255, 255, 0.07) 82%
        );
}

.master-meter {
    height: 78px;
    background:
        linear-gradient(
            to top,
            var(--cyan) 0 71%,
            rgba(255, 255, 255, 0.07) 71%
        );
}

.knob {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 36% 28%,
            #79808c,
            #252b35 38%,
            #0b0e14 75%
        );
    box-shadow:
        inset -3px -3px 8px rgba(0, 0, 0, 0.56),
        0 4px 9px rgba(0, 0, 0, 0.5);
}

.knob::after {
    display: block;
    width: 2px;
    height: 9px;
    margin: 4px auto 0;
    content: "";
    border-radius: 10px;
    background: var(--cyan);
    box-shadow: 0 0 7px rgba(97, 231, 255, 0.65);
}

.knob-two::after {
    transform: rotate(35deg);
    transform-origin: 50% 10px;
}

.knob-three::after {
    transform: rotate(-34deg);
    transform-origin: 50% 10px;
}

.knob-four::after {
    background: var(--pink);
}

.fader {
    position: relative;
    width: 6px;
    height: 78px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.72);
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.07);
}

.fader i {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 24px;
    height: 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    background:
        linear-gradient(
            to bottom,
            #737b88,
            #252a32 52%,
            #11151b
        );
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
}

.ai-visual {
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(159, 108, 255, 0.22),
            transparent 34%
        ),
        #080b15;
}

.ai-terminal {
    width: 80%;
    overflow: hidden;
    border: 1px solid rgba(159, 108, 255, 0.24);
    border-radius: 15px;
    background: rgba(7, 10, 19, 0.9);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
    transform: perspective(800px) rotateY(-7deg) rotateX(3deg);
}

.ai-terminal-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 13px;
    border-bottom: 1px solid var(--line);
}

.ai-terminal-header span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
}

.ai-terminal-header small {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.53rem;
    letter-spacing: 0.11em;
}

.ai-lines {
    display: grid;
    gap: 12px;
    padding: 28px 25px;
}

.ai-lines i {
    width: var(--width);
    height: 7px;
    border-radius: 10px;
    background:
        linear-gradient(
            90deg,
            rgba(104, 226, 255, 0.86),
            rgba(159, 108, 255, 0.45)
        );
    box-shadow: 0 0 15px rgba(159, 108, 255, 0.12);
}

.ai-pulse {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 0 22px;
}

.ai-pulse span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--violet);
    box-shadow: 0 0 15px rgba(159, 108, 255, 0.65);
    animation: pulse 1.6s ease-in-out infinite;
}

.ai-pulse span:nth-child(2) {
    animation-delay: 180ms;
}

.ai-pulse span:nth-child(3) {
    animation-delay: 360ms;
}

.wewe-visual {
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle,
            rgba(255, 95, 183, 0.16),
            transparent 44%
        ),
        #090b15;
}

.communication-map {
    position: relative;
    width: 255px;
    height: 220px;
}

.communication-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 95, 183, 0.45);
    border-radius: 23px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 95, 183, 0.32),
            rgba(87, 76, 255, 0.25)
        );
    box-shadow:
        0 0 50px rgba(255, 95, 183, 0.19),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.communication-map::before,
.communication-map::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    border: 1px solid rgba(255, 95, 183, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.communication-map::before {
    width: 180px;
    height: 180px;
}

.communication-map::after {
    width: 230px;
    height: 230px;
    border-style: dashed;
}

.communication-node {
    position: absolute;
    z-index: 2;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(14, 18, 30, 0.92);
    color: var(--text-soft);
    font-size: 0.65rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.n1 {
    top: 4px;
    left: 91px;
}

.n2 {
    top: 52px;
    right: 0;
}

.n3 {
    right: 14px;
    bottom: 24px;
}

.n4 {
    bottom: 5px;
    left: 35px;
}

.n5 {
    top: 58px;
    left: 0;
}

.tracker-visual {
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at 60% 50%,
            rgba(93, 244, 187, 0.12),
            transparent 36%
        ),
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        #080d14;
    background-size: auto, 26px 26px, 26px 26px;
}

.map-surface {
    position: relative;
    width: 88%;
}

.map-surface svg {
    overflow: visible;
}

.map-surface path {
    fill: none;
    stroke: url("#route-gradient");
    stroke: var(--green);
    stroke-width: 3;
    stroke-dasharray: 10 8;
    filter: drop-shadow(0 0 8px rgba(93, 244, 187, 0.48));
    animation: route-flow 18s linear infinite;
}

.map-surface circle {
    fill: #08120f;
    stroke: var(--green);
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(93, 244, 187, 0.8));
}

.map-location {
    position: absolute;
    top: 20%;
    right: 2%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(93, 244, 187, 0.23);
    border-radius: 999px;
    background: rgba(8, 18, 15, 0.9);
    color: #baf8dd;
    font-size: 0.62rem;
}

.map-location span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(93, 244, 187, 0.9);
}

.ecosystem {
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255, 255, 255, 0.015),
            transparent
        );
}

.compact-heading {
    margin-bottom: 44px;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.ecosystem-card {
    position: relative;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        );
    transition:
        transform 200ms ease,
        border-color 200ms ease,
        background 200ms ease;
}

.ecosystem-card::before {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    content: "";
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.06;
    filter: blur(35px);
}

.ecosystem-card:hover {
    border-color: rgba(105, 139, 255, 0.34);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.02)
        );
    transform: translateY(-5px);
}

.ecosystem-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(103, 139, 255, 0.23);
    border-radius: 13px;
    background:
        linear-gradient(
            145deg,
            rgba(103, 139, 255, 0.16),
            rgba(97, 231, 255, 0.06)
        );
    color: #b9c8ff;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.ecosystem-category {
    color: var(--text-muted);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ecosystem-card h3 {
    margin: 8px 0 7px;
    font-size: 1.32rem;
}

.ecosystem-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.6;
}

.ecosystem-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--text-muted);
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.ecosystem-card:hover .ecosystem-arrow {
    color: var(--cyan);
    transform: translate(3px, -3px);
}

.platform-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: 90px;
}

.platform-copy p {
    max-width: 550px;
    margin: 27px 0 32px;
}

.platform-stack {
    position: relative;
    min-height: 460px;
    perspective: 900px;
}

.platform-layer {
    position: absolute;
    right: 0;
    left: 0;
    min-height: 112px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            rgba(30, 38, 63, 0.96),
            rgba(10, 14, 25, 0.98)
        );
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    transform: rotateX(56deg) rotateZ(-2deg);
    transform-origin: center;
}

.platform-layer span {
    color: var(--text-muted);
    font-size: 0.63rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.platform-layer strong {
    font-size: 0.92rem;
}

.layer-product {
    top: 0;
    z-index: 4;
    border-color: rgba(97, 231, 255, 0.26);
}

.layer-services {
    top: 92px;
    z-index: 3;
    left: 22px;
    right: 22px;
    border-color: rgba(111, 126, 255, 0.24);
}

.layer-security {
    top: 184px;
    z-index: 2;
    left: 44px;
    right: 44px;
    border-color: rgba(159, 108, 255, 0.24);
}

.layer-infra {
    top: 276px;
    z-index: 1;
    left: 66px;
    right: 66px;
}

.vision-panel {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
    gap: 70px;
    padding: 70px;
    border: 1px solid var(--line);
    border-radius: 40px;
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(99, 119, 255, 0.22),
            transparent 35%
        ),
        radial-gradient(
            circle at 20% 100%,
            rgba(97, 231, 255, 0.1),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(24, 30, 50, 0.88),
            rgba(7, 10, 18, 0.96)
        );
    box-shadow: var(--shadow);
}

.vision-panel::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at 70% 30%, black, transparent 65%);
}

.vision-radial {
    position: absolute;
    top: -100px;
    right: -30px;
    width: 570px;
    height: 570px;
    border: 1px solid rgba(112, 132, 255, 0.17);
    border-radius: 50%;
}

.vision-radial::before,
.vision-radial::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    border: 1px solid rgba(112, 132, 255, 0.13);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vision-radial::before {
    width: 390px;
    height: 390px;
}

.vision-radial::after {
    width: 210px;
    height: 210px;
}

.vision-copy,
.vision-stats {
    position: relative;
    z-index: 2;
}

.vision-copy p {
    max-width: 650px;
    margin-top: 28px;
}

.vision-stats {
    display: grid;
    gap: 13px;
}

.vision-stats div {
    display: grid;
    gap: 3px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(14px);
}

.vision-stats strong {
    font-size: 1.8rem;
}

.vision-stats span {
    color: var(--text-muted);
    font-size: 0.76rem;
}

.cta-section {
    padding: 0 0 120px;
}

.cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    padding: 55px 60px;
    border: 1px solid rgba(112, 135, 255, 0.22);
    border-radius: 34px;
    background:
        radial-gradient(
            circle at 88% 30%,
            rgba(150, 98, 255, 0.19),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 110%,
            rgba(97, 231, 255, 0.1),
            transparent 35%
        ),
        rgba(18, 23, 39, 0.82);
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    max-width: 760px;
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

.site-footer {
    padding: 72px 0 30px;
    border-top: 1px solid var(--line);
    background: rgba(2, 4, 9, 0.55);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.7fr);
    gap: 70px;
}

.footer-brand p {
    max-width: 330px;
    margin: 21px 0 0;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-column strong {
    margin-bottom: 7px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-column a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 180ms ease;
}

.footer-column a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 70px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 0.72rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

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

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

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

@keyframes pulse {
    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.78);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes route-flow {
    to {
        stroke-dashoffset: -180;
    }
}

@media (max-width: 1120px) {
    .main-navigation {
        gap: 17px;
    }

    .main-navigation a:nth-child(4),
    .main-navigation a:nth-child(5) {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
        gap: 42px;
    }

    .hero-title {
        font-size: clamp(3.6rem, 6.7vw, 5.8rem);
    }

    .system-display {
        min-height: 470px;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .platform-layout {
        gap: 45px;
    }
}

@media (max-width: 900px) {
    .header-actions .text-link {
        display: none;
    }

    .hero {
        padding-top: 135px;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-visual {
        max-width: 760px;
        margin: 20px auto 0;
    }

    .system-shell {
        transform: none;
    }

    .section-heading,
    .platform-layout,
    .vision-panel,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 22px;
    }

    .platform-copy {
        max-width: 720px;
    }

    .platform-stack {
        max-width: 700px;
        margin-inline: auto;
    }

    .vision-panel {
        min-height: auto;
    }

    .vision-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-actions {
        flex-direction: row;
    }

    .footer-main {
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 35px;
    }
}

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

    .header-inner {
        min-height: 74px;
    }

    .header-actions {
        display: none;
    }

    .menu-button {
        position: relative;
        z-index: 31;
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        margin-left: auto;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 13px;
        background: rgba(255, 255, 255, 0.035);
    }

    .menu-button span {
        position: absolute;
        width: 18px;
        height: 1px;
        background: var(--text);
        transition:
            transform 180ms ease,
            top 180ms ease;
    }

    .menu-button span:first-child {
        top: 16px;
    }

    .menu-button span:last-child {
        top: 24px;
    }

    .menu-button[aria-expanded="true"] span:first-child {
        top: 20px;
        transform: rotate(45deg);
    }

    .menu-button[aria-expanded="true"] span:last-child {
        top: 20px;
        transform: rotate(-45deg);
    }

    .main-navigation {
        position: fixed;
        inset: 0;
        z-index: 30;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 25px;
        padding: 90px 36px;
        opacity: 0;
        background: rgba(5, 7, 13, 0.97);
        backdrop-filter: blur(22px);
        transition:
            opacity 180ms ease,
            visibility 180ms ease;
    }

    .main-navigation.open {
        visibility: visible;
        opacity: 1;
    }

    .main-navigation a,
    .main-navigation a:nth-child(4),
    .main-navigation a:nth-child(5) {
        display: block;
        color: var(--text);
        font-size: 1.65rem;
        font-weight: 700;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 38px;
    }

    .hero-title {
        font-size: clamp(3.3rem, 15vw, 5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-trust {
        gap: 20px;
    }

    .system-display {
        min-height: 410px;
    }

    .system-node {
        min-width: 128px;
        padding: 11px 12px 11px 27px;
    }

    .node-clarvox {
        top: 57px;
        left: 15px;
    }

    .node-ai {
        top: 76px;
        right: 12px;
    }

    .node-wewe {
        right: 18px;
        bottom: 55px;
    }

    .node-siteproof {
        bottom: 70px;
        left: 16px;
    }

    .system-core {
        width: 130px;
        height: 130px;
    }

    .ring-a {
        width: 170px;
        height: 170px;
    }

    .ring-b {
        width: 285px;
        height: 285px;
    }

    .ring-c {
        width: 390px;
        height: 390px;
    }

    .system-metrics {
        grid-template-columns: 1fr;
    }

    .system-metrics div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .system-metrics div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 82px 0;
    }

    .section-heading h2,
    .platform-copy h2,
    .vision-copy h2 {
        font-size: clamp(2.4rem, 11vw, 3.8rem);
    }

    .flagship-grid,
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 0;
    }

    .product-visual {
        height: 240px;
    }

    .product-content > p {
        min-height: 0;
    }

    .ecosystem-card {
        min-height: 220px;
    }

    .platform-layout {
        gap: 60px;
    }

    .platform-stack {
        min-height: 400px;
    }

    .platform-layer {
        padding: 19px 20px;
    }

    .vision-panel {
        padding: 39px 28px;
        border-radius: 29px;
    }

    .vision-stats {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding-bottom: 82px;
    }

    .cta-panel {
        gap: 34px;
        padding: 39px 28px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .hero-actions,
    .product-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .system-display {
        min-height: 360px;
    }

    .system-node {
        min-width: 112px;
    }

    .system-node small {
        display: none;
    }

    .system-core {
        width: 112px;
        height: 112px;
    }

    .ring-b {
        width: 250px;
        height: 250px;
    }

    .ring-c {
        width: 340px;
        height: 340px;
    }

    .node-clarvox {
        top: 40px;
    }

    .node-ai {
        top: 62px;
    }

    .node-wewe {
        bottom: 42px;
    }

    .node-siteproof {
        bottom: 57px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

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