:root {
    --public-bg: #07090d;
    --public-bg-soft: #0b0e14;
    --public-panel: rgba(15, 18, 27, 0.72);
    --public-panel-strong: #0f1219;
    --public-border: rgba(255, 255, 255, 0.08);
    --public-border-strong: rgba(255, 255, 255, 0.14);
    --public-text: #f7f8fb;
    --public-muted: #969ca9;
    --public-muted-strong: #b7bdc9;
    --public-accent: #9f8cff;
    --public-accent-soft: #c3a4ff;
    --public-positive: #8ee6af;
    --public-max: 1240px;
}


html {
    scroll-behavior: smooth;
}


.public-body {
    position: relative;

    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(116, 91, 255, 0.11),
            transparent 36%
        ),
        var(--public-bg);

    color: var(--public-text);
}


.public-background {
    position: fixed;
    inset: 0;

    z-index: -3;

    overflow: hidden;

    pointer-events: none;
}


.public-grid {
    position: absolute;
    inset: 0;

    opacity: 0.15;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size:
        72px 72px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8),
            transparent 78%
        );
}


.public-orb {
    position: absolute;

    width: 540px;
    height: 540px;

    border-radius: 50%;

    filter: blur(110px);

    opacity: 0.12;
}


.public-orb-one {
    top: 10%;
    right: -180px;

    background: #8067ff;
}


.public-orb-two {
    top: 52%;
    left: -240px;

    background: #bb71ff;
}


.public-cursor-glow {
    position: fixed;

    z-index: -2;

    width: 560px;
    height: 560px;

    margin:
        -280px
        0
        0
        -280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(139, 114, 255, 0.09),
            transparent 68%
        );

    pointer-events: none;

    transform:
        translate3d(
            -1000px,
            -1000px,
            0
        );

    transition:
        opacity 0.3s ease;
}


.public-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    border-bottom:
        1px solid transparent;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        backdrop-filter 0.25s ease;
}


.public-header.scrolled {
    border-color:
        var(--public-border);

    background:
        rgba(7, 9, 13, 0.78);

    backdrop-filter:
        blur(20px);
}


.public-header-inner {
    width:
        min(
            calc(100% - 48px),
            var(--public-max)
        );

    min-height: 82px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


.public-brand {
    display: inline-flex;
    align-items: center;

    gap: 11px;
}


.public-brand-mark {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.09);

    font-size: 14px;
    font-weight: 800;
}


.public-brand-copy {
    display: flex;
    flex-direction: column;

    line-height: 1;
}


.public-brand-copy strong {
    font-size: 12px;
    letter-spacing: 0.17em;
}


.public-brand-copy small {
    margin-top: 5px;

    color: #717887;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.29em;
}


.public-nav {
    display: flex;
    align-items: center;

    gap: 8px;
}


.public-nav-link {
    padding: 9px 11px;

    color: #9fa6b4;

    font-size: 13px;
    font-weight: 550;

    transition:
        color 0.18s ease;
}


.public-nav-link:hover {
    color: #ffffff;
}


.public-header-actions {
    display: flex;
    align-items: center;

    gap: 10px;
}


.language-switcher {
    position: relative;
}


.language-trigger {
    min-height: 40px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding:
        8px 11px;

    border:
        1px solid
        var(--public-border);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.025);

    color:
        var(--public-muted-strong);

    cursor: pointer;
}


.language-name {
    font-size: 12px;
}


.language-chevron {
    color: #737986;

    font-size: 10px;
}


.language-menu {
    position: absolute;

    top: calc(100% + 9px);
    right: 0;

    width: 156px;

    padding: 6px;

    border:
        1px solid
        var(--public-border);

    border-radius: 12px;

    background:
        rgba(13, 16, 23, 0.97);

    box-shadow:
        0 24px 70px
        rgba(0, 0, 0, 0.5);

    backdrop-filter:
        blur(18px);
}


.language-option {
    display: flex;
    align-items: center;

    gap: 9px;

    padding:
        9px 10px;

    border-radius: 8px;

    color:
        var(--public-muted-strong);

    font-size: 12px;
}


.language-option:hover,
.language-option.active {
    background:
        rgba(255, 255, 255, 0.055);

    color: #ffffff;
}


.public-login-button {
    min-height: 40px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding:
        8px 13px;

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    border-radius: 10px;

    background: #f4f5f7;

    color: #111319;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform 0.18s ease,
        background 0.18s ease;
}


.public-login-button:hover {
    transform:
        translateY(-1px);

    background: #ffffff;
}


.public-mobile-toggle {
    display: none;

    width: 40px;
    height: 40px;

    padding: 0;

    border:
        1px solid
        var(--public-border);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.025);

    cursor: pointer;
}


.public-mobile-toggle span {
    width: 16px;
    height: 1px;

    display: block;

    margin: 5px auto;

    background: #ffffff;
}


.public-mobile-menu {
    width:
        min(
            calc(100% - 32px),
            520px
        );

    margin:
        0 16px 12px auto;

    padding: 9px;

    border:
        1px solid
        var(--public-border);

    border-radius: 14px;

    background:
        rgba(11, 14, 20, 0.97);

    backdrop-filter:
        blur(18px);
}


.public-mobile-menu a {
    display: block;

    padding: 12px;

    border-radius: 9px;

    color:
        var(--public-muted-strong);

    font-size: 13px;
}


.public-mobile-menu a:hover {
    background:
        rgba(255, 255, 255, 0.045);

    color: #ffffff;
}


.public-flash {
    position: fixed;

    top: 96px;
    right: 24px;

    z-index: 3000;

    width:
        min(
            390px,
            calc(100vw - 48px)
        );

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    padding:
        13px 15px;

    border-radius: 11px;

    box-shadow:
        0 24px 70px
        rgba(0, 0, 0, 0.45);

    font-size: 13px;
}


.public-flash-success {
    border:
        1px solid
        rgba(73, 190, 117, 0.34);

    background:
        rgba(18, 51, 30, 0.96);

    color: #a4e9ba;
}


.public-flash-error {
    border:
        1px solid
        rgba(212, 83, 95, 0.35);

    background:
        rgba(57, 22, 27, 0.96);

    color: #ffbcc2;
}


.public-flash-close {
    padding: 0;

    border: 0;

    background: transparent;

    color: inherit;

    font-size: 20px;

    cursor: pointer;
}


.public-hero {
    min-height: 100vh;

    padding:
        150px 0 44px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.public-hero-inner,
.public-section-inner,
.public-footer-inner,
.public-footer-bottom {
    width:
        min(
            calc(100% - 48px),
            var(--public-max)
        );

    margin:
        0 auto;
}


.public-hero-inner {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(460px, 1.05fr);

    align-items: center;

    gap: 70px;
}


.public-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color:
        var(--public-accent-soft);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.public-eyebrow > span {
    width: 26px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--public-accent),
            transparent
        );
}


.hero-copy h1 {
    max-width: 720px;

    margin:
        24px 0 24px;

    font-size:
        clamp(
            48px,
            6vw,
            82px
        );

    font-weight: 620;
    letter-spacing: -0.055em;
    line-height: 0.99;
}


.hero-copy h1 span {
    display: block;

    color:
        transparent;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #c8c8d1 48%,
            #9f8cff 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;
}


.hero-description {
    max-width: 650px;

    margin: 0;

    color:
        var(--public-muted);

    font-size:
        clamp(
            15px,
            1.5vw,
            18px
        );

    line-height: 1.75;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 11px;

    margin-top: 34px;
}


.public-primary-button,
.public-secondary-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding:
        11px 17px;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}


.public-primary-button {
    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    background: #f3f4f6;

    color: #101217;

    box-shadow:
        0 12px 40px
        rgba(255, 255, 255, 0.06);
}


.public-primary-button:hover {
    transform:
        translateY(-2px);

    background: #ffffff;
}


.public-secondary-button {
    border:
        1px solid
        var(--public-border-strong);

    background:
        rgba(255, 255, 255, 0.035);

    color: #d8dbe3;
}


.public-secondary-button:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(255, 255, 255, 0.22);

    background:
        rgba(255, 255, 255, 0.055);
}


.hero-discover {
    margin-top: 44px;

    display: inline-flex;
    align-items: center;

    gap: 11px;

    color: #767d8c;

    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.hero-discover-line {
    width: 38px;
    height: 1px;

    background:
        rgba(255, 255, 255, 0.22);
}


.hero-visual {
    position: relative;

    min-height: 540px;
}


.hero-visual-halo {
    position: absolute;

    inset:
        50%
        auto
        auto
        50%;

    width: 420px;
    height: 420px;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(137, 108, 255, 0.21),
            transparent 65%
        );

    filter: blur(16px);
}


.hero-data-card {
    position: absolute;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    background:
        linear-gradient(
            145deg,
            rgba(22, 25, 36, 0.92),
            rgba(12, 15, 22, 0.82)
        );

    box-shadow:
        0 34px 90px
        rgba(0, 0, 0, 0.44);

    backdrop-filter:
        blur(22px);
}


.hero-data-card-main {
    top: 96px;
    left: 42px;

    width:
        min(
            530px,
            calc(100% - 70px)
        );

    padding: 22px;

    border-radius: 20px;

    transform:
        rotate(-2deg);
}


.hero-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 16px;
}


.hero-card-header > div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.hero-card-header strong {
    font-size: 14px;
}


.hero-card-kicker {
    color: #737b8b;

    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.15em;
}


.hero-live-pill {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding:
        5px 7px;

    border:
        1px solid
        rgba(86, 214, 135, 0.20);

    border-radius: 20px;

    background:
        rgba(54, 162, 97, 0.08);

    color: #8adca8;

    font-size: 8px;
    font-weight: 750;
}


.hero-live-pill i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #74d89a;

    box-shadow:
        0 0 12px
        rgba(116, 216, 154, 0.8);
}


.hero-chart {
    height: 190px;

    margin-top: 18px;

    overflow: hidden;
}


.hero-chart svg {
    width: 100%;
    height: 100%;
}


.hero-chart-grid {
    fill: none;

    stroke:
        rgba(255, 255, 255, 0.055);

    stroke-width: 1;
}


.hero-chart-path {
    fill: none;

    stroke:
        url(#chart-gradient);

    stroke-width: 3;

    stroke-linecap: round;

    filter:
        drop-shadow(
            0 0 10px
            rgba(148, 119, 255, 0.42)
        );
}


.hero-metrics {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;
}


.hero-metrics > div {
    padding: 12px;

    border:
        1px solid
        rgba(255, 255, 255, 0.055);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.02);
}


.hero-metrics span {
    display: block;

    margin-bottom: 5px;

    color: #717989;

    font-size: 9px;
}


.hero-metrics strong {
    font-size: 14px;
}


.hero-metrics .positive {
    color:
        var(--public-positive);
}


.hero-data-card-small {
    z-index: 2;

    width: 190px;

    padding: 16px;

    border-radius: 16px;
}


.hero-data-card-top {
    top: 28px;
    right: 0;

    transform:
        rotate(4deg);
}


.hero-data-card-bottom {
    right: 14px;
    bottom: 50px;

    transform:
        rotate(3deg);
}


.hero-data-card-small > strong {
    display: block;

    margin-top: 6px;

    font-size: 13px;
}


.hero-avatar-stack {
    display: flex;

    margin-top: 15px;
}


.hero-avatar-stack span {
    width: 30px;
    height: 30px;

    margin-left: -6px;

    display: grid;
    place-items: center;

    border:
        2px solid
        #11151d;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #34394a,
            #1c202b
        );

    color: #dadde5;

    font-size: 9px;
    font-weight: 750;
}


.hero-avatar-stack span:first-child {
    margin-left: 0;
}


.hero-deal-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;

    gap: 12px;

    margin-top: 11px;
}


.hero-deal-row strong {
    font-size: 21px;
}


.hero-deal-row span {
    color: #798190;

    font-size: 9px;
    font-weight: 750;
}


.hero-deal-divider {
    height: 1px;

    margin-top: 10px;

    background:
        rgba(255, 255, 255, 0.065);
}


.hero-suit {
    position: absolute;

    color:
        rgba(255, 255, 255, 0.06);

    font-family: Georgia, serif;

    pointer-events: none;
}


.hero-suit-one {
    bottom: 30px;
    left: 8px;

    font-size: 82px;

    transform:
        rotate(-16deg);
}


.hero-suit-two {
    top: 8px;
    left: 48%;

    font-size: 48px;

    transform:
        rotate(10deg);
}


.public-signals {
    width:
        min(
            calc(100% - 48px),
            var(--public-max)
        );

    margin:
        70px auto 0;

    padding-top: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    border-top:
        1px solid
        var(--public-border);
}


.public-signals-title {
    color: #686f7c;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.public-signal-list {
    display: flex;
    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 22px;
}


.public-signal-list span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #7e8593;

    font-size: 11px;
}


.public-signal-list i {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background:
        var(--public-accent);

    box-shadow:
        0 0 12px
        rgba(159, 140, 255, 0.6);
}


.public-section {
    position: relative;

    padding:
        120px 0;
}


.public-section-heading {
    max-width: 720px;
}


.public-section-heading h2,
.contact-copy h2,
.platform-copy h2 {
    margin:
        20px 0 20px;

    font-size:
        clamp(
            36px,
            5vw,
            60px
        );

    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.05;
}


.public-section-heading p,
.contact-copy > p,
.platform-copy p {
    margin: 0;

    color:
        var(--public-muted);

    font-size: 16px;
    line-height: 1.75;
}


.public-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;

    margin-top: 56px;
}


.public-feature-card {
    position: relative;

    min-height: 300px;

    padding: 26px;

    overflow: hidden;

    border:
        1px solid
        var(--public-border);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


.public-feature-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -120px;
    right: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(147, 120, 255, 0.13),
            transparent 70%
        );

    opacity: 0;

    transition:
        opacity 0.25s ease;
}


.public-feature-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(255, 255, 255, 0.14);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.018)
        );
}


.public-feature-card:hover::before {
    opacity: 1;
}


.public-card-number {
    color: #5e6573;

    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.1em;
}


.public-card-icon {
    width: 46px;
    height: 46px;

    margin-top: 62px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.025);

    color:
        var(--public-accent-soft);

    font-size: 18px;
}


.public-feature-card h3 {
    margin:
        20px 0 10px;

    font-size: 18px;
}


.public-feature-card p {
    margin: 0;

    color:
        var(--public-muted);

    font-size: 13px;
    line-height: 1.7;
}


.public-section-operators {
    padding-top: 1px;
    padding-bottom: 10px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255, 255, 255, 0.013),
            transparent
        );
}


.operator-layout {
    display: grid;

    grid-template-columns:
        minmax(390px, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: 80px;
}


.operator-visual {
    min-height: 540px;

    display: grid;
    place-items: center;
}


.operator-network {
    position: relative;

    width: 410px;
    height: 410px;

    border:
        1px solid
        rgba(255, 255, 255, 0.055);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(123, 95, 255, 0.075),
            transparent 60%
        );

    box-shadow:
        inset 0 0 80px
        rgba(111, 86, 255, 0.035);
}


.operator-network::before,
.operator-network::after {
    content: "";

    position: absolute;

    border:
        1px solid
        rgba(255, 255, 255, 0.045);

    border-radius: 50%;
}


.operator-network::before {
    inset: 58px;
}


.operator-network::after {
    inset: 118px;
}


.network-core,
.network-node {
    position: absolute;

    z-index: 3;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    background:
        #10131b;

    box-shadow:
        0 18px 50px
        rgba(0, 0, 0, 0.38);
}


.network-core {
    inset:
        50%
        auto
        auto
        50%;

    width: 62px;
    height: 62px;

    transform:
        translate(-50%, -50%);

    border-radius: 18px;

    color:
        var(--public-accent-soft);

    font-weight: 800;
}


.network-node {
    width: 94px;
    height: 38px;

    border-radius: 20px;

    color: #9ba2b0;

    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.08em;
}


.network-node-a {
    top: 44px;
    left: 40px;
}


.network-node-b {
    right: 28px;
    top: 170px;
}


.network-node-c {
    bottom: 42px;
    left: 64px;
}


.network-line {
    position: absolute;

    z-index: 1;

    height: 1px;

    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            rgba(154, 132, 255, 0.45),
            rgba(154, 132, 255, 0.03)
        );
}


.network-line-a {
    width: 165px;

    top: 124px;
    left: 119px;

    transform:
        rotate(37deg);
}


.network-line-b {
    width: 126px;

    top: 204px;
    left: 202px;
}


.network-line-c {
    width: 154px;

    top: 236px;
    left: 164px;

    transform:
        rotate(113deg);
}


.operator-heading {
    max-width: none;
}


.operator-feature-list {
    margin-top: 45px;
}


.operator-feature-list article {
    display: grid;

    grid-template-columns:
        44px 1fr;

    gap: 15px;

    padding:
        21px 0;

    border-top:
        1px solid
        var(--public-border);
}


.operator-feature-list article:last-child {
    border-bottom:
        1px solid
        var(--public-border);
}


.operator-feature-list article > span {
    color:
        var(--public-accent-soft);

    font-size: 10px;
    font-weight: 750;
}


.operator-feature-list h3 {
    margin:
        0 0 7px;

    font-size: 15px;
}


.operator-feature-list p {
    margin: 0;

    color:
        var(--public-muted);

    font-size: 13px;
    line-height: 1.65;
}


.platform-panel {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.85fr);

    align-items: center;

    gap: 80px;

    padding:
        64px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.014)
        );
}


.platform-panel::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -260px;
    top: -270px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(151, 121, 255, 0.16),
            transparent 70%
        );
}


.platform-copy {
    position: relative;

    z-index: 1;
}


.platform-metrics {
    position: relative;

    z-index: 1;

    display: flex;
    flex-direction: column;
}


.platform-metrics > div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding:
        20px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.075);
}


.platform-metrics > div:last-child {
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.075);
}


.platform-metrics span {
    color:
        var(--public-muted);

    font-size: 12px;
}


.platform-metrics strong {
    font-size: 13px;
}


.public-contact-section {
    padding-bottom: 150px;
}


.contact-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(520px, 1.2fr);

    gap: 90px;
}


.contact-copy {
    padding-top: 10px;
}


.contact-direct {
    margin-top: 40px;

    display: flex;
    flex-direction: column;

    gap: 6px;
}


.contact-direct span {
    color: #656c7a;

    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.contact-direct a {
    color: #d3d7df;

    font-size: 13px;
}


.contact-direct a:hover {
    color: #ffffff;
}


.public-contact-form {
    position: relative;

    padding: 30px;

    border:
        1px solid
        var(--public-border);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.022);

    backdrop-filter:
        blur(16px);
}


.contact-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px;
}


.public-form-field {
    margin-bottom: 14px;

    display: flex;
    flex-direction: column;

    gap: 7px;
}


.public-form-field label {
    color: #808795;

    font-size: 10px;
    font-weight: 650;
}


.public-form-field input,
.public-form-field select,
.public-form-field textarea {
    width: 100%;

    padding:
        12px 13px;

    border:
        1px solid
        rgba(255, 255, 255, 0.085);

    border-radius: 10px;

    outline: none;

    background:
        rgba(5, 7, 11, 0.70);

    color: #ffffff;

    transition:
        border-color 0.18s ease,
        background 0.18s ease;
}


.public-form-field textarea {
    resize: vertical;

    min-height: 150px;
}


.public-form-field input:focus,
.public-form-field select:focus,
.public-form-field textarea:focus {
    border-color:
        rgba(159, 140, 255, 0.55);

    background:
        rgba(7, 9, 14, 0.92);
}


.public-form-field select option {
    background: #11141c;
}


.public-honeypot {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    opacity: 0;

    pointer-events: none;
}


.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 8px;
}


.contact-form-footer > span {
    max-width: 250px;

    color: #656c78;

    font-size: 10px;
    line-height: 1.5;
}


.public-footer {
    padding:
        70px 0 28px;

    border-top:
        1px solid
        var(--public-border);

    background:
        rgba(0, 0, 0, 0.12);
}


.public-footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 50px;
}


.public-footer-brand {
    margin-bottom: 20px;
}


.public-footer-inner p {
    max-width: 390px;

    margin: 0;

    color: #676e7b;

    font-size: 12px;
    line-height: 1.7;
}


.public-footer-links {
    display: flex;
    flex-wrap: wrap;

    gap: 24px;
}


.public-footer-links a {
    color: #858c99;

    font-size: 12px;
}


.public-footer-links a:hover {
    color: #ffffff;
}


.public-footer-bottom {
    margin-top: 54px;

    padding-top: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.055);

    color: #555c69;

    font-size: 10px;
}


.public-footer-status {
    display: inline-flex;
    align-items: center;

    gap: 7px;
}


.public-footer-status i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        var(--public-positive);

    box-shadow:
        0 0 10px
        rgba(142, 230, 175, 0.45);
}


[data-reveal] {
    opacity: 0;

    transform:
        translateY(24px);

    transition:
        opacity 0.75s
        cubic-bezier(
            0.16,
            1,
            0.3,
            1
        ),
        transform 0.75s
        cubic-bezier(
            0.16,
            1,
            0.3,
            1
        );
}


[data-reveal].revealed {
    opacity: 1;

    transform:
        translateY(0);
}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    [data-reveal] {
        opacity: 1;

        transform: none;

        transition: none;
    }

    .public-cursor-glow {
        display: none;
    }

}


@media (max-width: 1100px) {

    .public-nav {
        display: none;
    }

    .public-mobile-toggle {
        display: block;
    }

    .public-hero-inner {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        width: 100%;
        max-width: 680px;

        margin: 0 auto;
    }

    .operator-layout,
    .platform-panel,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .operator-layout {
        gap: 34px;
    }

    .operator-visual {
        min-height: 480px;
    }

    .platform-panel {
        gap: 40px;
    }

    .contact-layout {
        gap: 45px;
    }

}


@media (max-width: 760px) {

    .public-header-inner,
    .public-hero-inner,
    .public-section-inner,
    .public-signals,
    .public-footer-inner,
    .public-footer-bottom {
        width:
            min(
                calc(100% - 32px),
                var(--public-max)
            );
    }

    .public-header-inner {
        min-height: 72px;
    }

    .language-name {
        display: none;
    }

    .public-login-button {
        display: none;
    }

    .public-hero {
        min-height: auto;

        padding:
            122px 0 50px;
    }

    .hero-copy h1 {
        font-size:
            clamp(
                43px,
                14vw,
                62px
            );
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-visual {
        min-height: 455px;
    }

    .hero-data-card-main {
        top: 92px;
        left: 8px;

        width:
            calc(100% - 16px);

        padding: 18px;
    }

    .hero-data-card-top {
        top: 20px;
        right: 4px;

        width: 160px;
    }

    .hero-data-card-bottom {
        right: 6px;
        bottom: 18px;

        width: 160px;
    }

    .hero-chart {
        height: 145px;
    }

    .public-signals {
        margin-top: 38px;

        align-items: flex-start;
        flex-direction: column;
    }

    .public-signal-list {
        justify-content: flex-start;

        gap: 12px 18px;
    }

    .public-section {
        padding:
            84px 0;
    }

    .public-feature-grid {
        grid-template-columns: 1fr;

        margin-top: 38px;
    }

    .public-feature-card {
        min-height: 250px;
    }

    .public-card-icon {
        margin-top: 34px;
    }

    .operator-visual {
        min-height: 380px;
    }

    .operator-network {
        width: 320px;
        height: 320px;
    }

    .operator-network::before {
        inset: 46px;
    }

    .operator-network::after {
        inset: 92px;
    }

    .network-node {
        width: 78px;
        height: 34px;

        font-size: 7px;
    }

    .network-node-a {
        top: 34px;
        left: 25px;
    }

    .network-node-b {
        right: 18px;
        top: 135px;
    }

    .network-node-c {
        bottom: 33px;
        left: 46px;
    }

    .network-line-a {
        width: 130px;

        top: 96px;
        left: 94px;
    }

    .network-line-b {
        width: 96px;

        top: 160px;
        left: 160px;
    }

    .network-line-c {
        width: 120px;

        top: 188px;
        left: 130px;
    }

    .platform-panel {
        padding: 32px 24px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .public-contact-form {
        padding: 20px;
    }

    .contact-form-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-footer-inner,
    .public-footer-bottom {
        flex-direction: column;
    }

}


@media (max-width: 460px) {

    .public-brand-copy {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions button {
        width: 100%;
    }

    .hero-data-card-small {
        transform: none;
    }

    .hero-metrics strong {
        font-size: 12px;
    }

    .operator-network {
        transform:
            scale(0.88);
    }

}

/* =========================================================
   SMALL MOBILE — centered premium layout
   320px / 375px / 425px
   ========================================================= */

@media (max-width: 480px) {

    /*
     * Global mobile content
     */

    .public-hero-inner,
    .public-section-inner,
    .public-signals,
    .public-footer-inner,
    .public-footer-bottom {
        width: calc(100% - 28px);

        margin-left: auto;
        margin-right: auto;
    }


    /*
     * HERO
     */

    .hero-copy {
        width: 100%;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }

    .hero-copy .public-eyebrow {
        justify-content: center;
    }

    .hero-copy h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }

    .hero-actions {
        align-items: center;
        justify-content: center;
    }

    .hero-discover {
        justify-content: center;

        margin-left: auto;
        margin-right: auto;
    }


    /*
     * GENERAL SECTION HEADINGS
     */

    .public-section-heading,
    .operator-heading,
    .platform-copy,
    .contact-copy {
        width: 100%;
        max-width: none;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }

    .public-section-heading .public-eyebrow,
    .operator-heading .public-eyebrow,
    .platform-copy .public-eyebrow,
    .contact-copy .public-eyebrow {
        justify-content: center;
    }

    .public-section-heading h2,
    .contact-copy h2,
    .platform-copy h2 {
        margin-left: auto;
        margin-right: auto;
    }

    .public-section-heading p,
    .contact-copy > p,
    .platform-copy p {
        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }


    /*
     * TALENT FEATURE CARDS
     */

    .public-feature-grid {
        width: 100%;

        justify-items: center;
    }

    .public-feature-card {
        width: 100%;
        max-width: 390px;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }

    .public-card-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .public-card-number {
        text-align: center;
    }

    .public-feature-card h3,
    .public-feature-card p {
        text-align: center;
    }


    /*
     * OPERATOR SECTION
     */

    .operator-layout {
        width: 100%;
    }

    .operator-feature-list {
        width: 100%;
        max-width: 390px;

        margin-left: auto;
        margin-right: auto;
    }

    .operator-feature-list article {
        grid-template-columns: 1fr;

        gap: 9px;

        text-align: center;
    }

    .operator-feature-list article > span {
        display: block;

        text-align: center;
    }

    .operator-feature-list h3,
    .operator-feature-list p {
        text-align: center;
    }

    .operator-visual {
        width: 100%;

        overflow: hidden;
    }


    /*
     * PLATFORM PANEL
     */

    .platform-panel {
        width: 100%;
        max-width: 410px;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }

    .platform-metrics > div {
        flex-direction: column;

        gap: 7px;

        text-align: center;
    }


    /*
     * SIGNALS UNDER HERO
     */

    .public-signals {
        align-items: center;

        text-align: center;
    }

    .public-signal-list {
        width: 100%;

        justify-content: center;
    }


    /*
     * CONTACT
     */

    .contact-layout {
        width: 100%;
    }

    .contact-direct {
        align-items: center;

        text-align: center;
    }

    .public-contact-form {
        width: 100%;
        max-width: 410px;

        margin-left: auto;
        margin-right: auto;
    }


    /*
     * FOOTER
     */

    .public-footer-inner,
    .public-footer-bottom {
        align-items: center;

        text-align: center;
    }

    .public-footer-brand {
        justify-content: center;
    }

    .public-footer-inner p {
        margin-left: auto;
        margin-right: auto;
    }

    .public-footer-links {
        justify-content: center;
    }

}

/* =========================================================
   EXTRA SMALL MOBILE — strict horizontal centering
   320px / 375px
   ========================================================= */

@media (max-width: 390px) {

    html,
    body,
    .public-body {
        width: 100%;
        max-width: 100%;

        overflow-x: clip;
    }


    /*
     * Main wrappers
     */

    .public-header-inner,
    .public-hero-inner,
    .public-section-inner,
    .public-signals,
    .public-footer-inner,
    .public-footer-bottom {
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);

        margin-left: auto;
        margin-right: auto;
    }


    /*
     * HERO
     */

    .hero-copy {
        width: 100%;
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;
    }

    .hero-copy h1,
    .hero-description {
        width: 100%;
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;
    }


    /*
     * Hero visual itself
     */

    .hero-visual {
        width: 100%;
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;

        overflow: visible;
    }


    /*
     * Main performance card:
     * force true mathematical centering
     */

    .hero-data-card-main {
        left: 50%;
        right: auto;

        width: calc(100% - 8px);
        max-width: calc(100% - 8px);

        transform:
            translateX(-50%)
            rotate(-1deg);
    }


    /*
     * Floating creator card
     */

    .hero-data-card-top {
        right: 0;
        left: auto;

        width: 154px;
        max-width: 46%;
    }


    /*
     * Floating deal card
     */

    .hero-data-card-bottom {
        right: 0;
        left: auto;

        width: 154px;
        max-width: 46%;
    }


    /*
     * Content sections
     */

    .public-feature-grid,
    .operator-layout,
    .platform-panel,
    .contact-layout {
        width: 100%;
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;
    }


    .public-feature-card,
    .public-contact-form {
        width: 100%;
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;
    }


    /*
     * Operator network was 320px wide,
     * which is too large inside a 320px viewport.
     */

    .operator-network {
        width: min(290px, 100%);
        height: min(290px, calc(100vw - 30px));

        margin-left: auto;
        margin-right: auto;

        transform: none;
    }


    /*
     * Avoid any decorative element
     * influencing perceived horizontal balance
     */

    .hero-suit-one {
        left: 0;
    }

    .hero-suit-two {
        left: 50%;

        transform:
            translateX(-50%)
            rotate(10deg);
    }

}

/* =========================================================
   MOBILE — compact spacing between Talents / Operators
   ========================================================= */

@media (max-width: 480px) {

    /* Reduce empty space after the Talent cards */
    #talents {
        padding-bottom: 24px;
    }


    /* Reduce empty space before and after Operators */
    .public-section-operators {
        padding-top: 20px;
        padding-bottom: 50px;
    }


    /* The visual + text were too far apart */
    .public-section-operators .operator-layout {
        gap: 40px;
    }


    /* Remove the oversized empty container around the circle */
    .public-section-operators .operator-visual {
        min-height: 340px;

        margin-top: 0;
        margin-bottom: 0;
    }

}


@media (max-width: 390px) {

    .public-section-operators .operator-visual {
        min-height: 305px;
    }

}

#talents {
    padding-top: 20px;
}