:root {
    --bg: #f6f8fc;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: rgba(255, 255, 255, 0.99);
    --surface-deep: #10131b;

    --text: #090f1d;
    --text-soft: #172033;
    --muted: #3f4858;

    --line: rgba(16, 19, 27, 0.13);
    --line-strong: rgba(16, 19, 27, 0.25);

    --green: #d7ff3f;
    --cyan: #35e8ff;
    --blue: #5375ff;
    --violet: #9b6cff;
    --pink: #ff70c9;
    --orange: #ffb347;

    --shadow: 0 36px 120px rgba(28, 20, 8, 0.18);
    --shadow-soft: 0 18px 60px rgba(28, 20, 8, 0.1);

    --radius-xs: 14px;
    --radius-sm: 22px;
    --radius-md: 36px;
    --radius-lg: 58px;

    --container: 1240px;
    --header: 82px;

    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
    --font-mono: "JetBrains Mono", "SFMono-Regular", ui-monospace, Consolas, monospace;

    --ease: cubic-bezier(.16, 1, .3, 1);
    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --transition: .4s var(--ease);

    --glow-green: 0 0 0 1px color-mix(in srgb, var(--green) 38%, transparent), 0 18px 48px color-mix(in srgb, var(--green) 30%, transparent), 0 0 64px color-mix(in srgb, var(--green) 18%, transparent);
}

html[data-theme="dark"] {
    --bg: #03050a;
    --surface: rgba(12, 16, 26, 0.88);
    --surface-strong: rgba(13, 18, 30, 0.98);
    --surface-deep: #070a12;

    --text: #f8f8f2;
    --text-soft: #f0f3fa;
    --muted: #ffffff;

    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.24);

    --shadow: 0 36px 130px rgba(0, 0, 0, 0.58);
    --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.34);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-feature-settings: "cv11", "ss01";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

button:disabled {
    cursor: progress;
    opacity: .72;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
    background: var(--surface-strong);
    color: var(--text);
    outline: none;
    padding: 16px 17px;
    transition: border var(--transition), box-shadow var(--transition);
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: color-mix(in srgb, var(--cyan) 78%, transparent);
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--cyan) 18%, transparent);
}

::selection {
    color: #10131b;
    background: var(--green);
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 132px 0;
}

/* LOADER */

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--bg);
    transition: opacity .7s ease, visibility .7s ease;
}

/* Repeat visit in the same session → no loader at all (no flash). Set by inline head script. */
html.no-intro .loader {
    display: none !important;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader__inner {
    display: grid;
    place-items: center;
    gap: 16px;
    animation: loaderPulse 1.4s ease-in-out infinite;
}

.logo-orbit {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle, color-mix(in srgb, var(--cyan) 22%, transparent), transparent 68%);
}

.logo-orbit img,
.brand__mark img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

.logo-orbit img {
    width: 82px;
    height: 82px;
    filter: drop-shadow(0 0 28px color-mix(in srgb, var(--cyan) 38%, transparent));
}

.brand__mark img {
    width: 42px;
    height: 42px;
}

.loader__inner span {
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .28em;
    text-transform: uppercase;
}

/* AMBIENT */

.ambient {
    position: fixed;
    inset: 0;
    z-index: -5;
    overflow: hidden;
    pointer-events: none;
}

.ambient__grid {
    position: absolute;
    inset: 0;
    opacity: .48;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at center, #000, transparent 74%);
}

.ambient::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(120deg, transparent 0 42%, color-mix(in srgb, var(--cyan) 12%, transparent) 42% 43%, transparent 43% 100%),
        linear-gradient(60deg, transparent 0 56%, color-mix(in srgb, var(--green) 10%, transparent) 56% 57%, transparent 57% 100%);
    background-size: 360px 360px;
    mask-image: radial-gradient(circle at 50% 20%, #000, transparent 72%);
}

.ambient__scan {
    position: absolute;
    inset: 0;
    height: 220px;
    opacity: .16;
    background: linear-gradient(to bottom,
            transparent,
            color-mix(in srgb, var(--cyan) 22%, transparent),
            transparent);
    animation: scanMove 8s linear infinite;
}

.ambient__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(56px);
    opacity: .68;
    animation: orbMove 14s ease-in-out infinite;
}

html:not([data-theme="dark"]) .ambient__grid {
    opacity: .28;
}

html:not([data-theme="dark"]) .ambient__scan {
    opacity: .08;
}

html:not([data-theme="dark"]) .ambient__orb {
    opacity: .32;
    filter: blur(72px);
}

html[data-theme="dark"] .ambient__orb {
    opacity: .52;
}

.ambient__orb--one {
    width: 470px;
    height: 470px;
    left: -180px;
    top: 90px;
    background: var(--green);
}

.ambient__orb--two {
    width: 480px;
    height: 480px;
    right: -180px;
    top: 220px;
    background: var(--cyan);
    animation-delay: -4s;
}

.ambient__orb--three {
    width: 430px;
    height: 430px;
    left: 38%;
    bottom: -190px;
    background: var(--violet);
    animation-delay: -8s;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--cyan), var(--violet), var(--pink));
}

.cursor-glow {
    position: fixed;
    z-index: -1;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: radial-gradient(circle, color-mix(in srgb, var(--cyan) 18%, transparent), transparent 66%);
}

/* HEADER */

.header {
    position: fixed;
    top: 18px;
    left: 0;
    z-index: 5000;
    width: 100%;
}

.header__inner {
    min-height: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 18px 0 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-strong) 96%, transparent);
    backdrop-filter: blur(28px);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

.header.scrolled .header__inner {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand__mark {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.brand__mark svg {
    width: 36px;
    height: 36px;
}

.brand__text {
    display: grid;
    line-height: 1.05;
}

.brand__text strong {
    font-size: 15px;
    font-weight: 950;
    letter-spacing: 0;
}

.brand__text small {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 800;
}

.nav {
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav a {
    padding: 11px 13px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 850;
    transition: color var(--transition), background var(--transition);
}

.nav a:hover {
    color: var(--text);
    background: color-mix(in srgb, var(--green) 18%, transparent);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn,
.theme-btn {
    height: 45px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-strong);
    color: var(--text);
    font-weight: 950;
}

.lang-btn {
    min-width: 48px;
    padding: 0 14px;
    font-size: 13px;
}

.theme-btn {
    position: relative;
    width: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--text) 4%, transparent);
}

.theme-btn__sky {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background:
        radial-gradient(circle at 22% 28%, rgba(255, 255, 255, .92) 0 1px, transparent 2px),
        radial-gradient(circle at 66% 72%, rgba(255, 255, 255, .7) 0 1px, transparent 2px),
        linear-gradient(135deg, color-mix(in srgb, var(--cyan) 24%, transparent), color-mix(in srgb, var(--green) 16%, transparent));
    transition: background var(--transition);
}

html[data-theme="dark"] .theme-btn__sky {
    background:
        radial-gradient(circle at 23% 28%, rgba(255, 255, 255, .8) 0 1px, transparent 2px),
        radial-gradient(circle at 44% 70%, rgba(255, 255, 255, .54) 0 1px, transparent 2px),
        radial-gradient(circle at 73% 35%, rgba(255, 255, 255, .7) 0 1px, transparent 2px),
        linear-gradient(135deg, rgba(9, 13, 24, .95), rgba(29, 23, 58, .94));
}

.theme-icon {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.85;
    transform: translateY(-50%);
    transition: opacity var(--transition), transform var(--transition), color var(--transition);
}

.theme-icon--sun {
    left: 14px;
    color: #10131b;
    fill: color-mix(in srgb, var(--orange) 55%, var(--green));
}

.theme-icon--moon {
    right: 14px;
    color: #dfe8ff;
    fill: color-mix(in srgb, var(--blue) 20%, #ffffff);
    opacity: .54;
}

html[data-theme="dark"] .theme-icon--sun {
    opacity: .52;
    transform: translateY(-50%) rotate(-22deg) scale(.9);
}

html[data-theme="dark"] .theme-icon--moon {
    opacity: 1;
    transform: translateY(-50%) rotate(-8deg) scale(1.06);
}

.theme-btn__knob {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 32%, rgba(255, 255, 255, .96), transparent 24%),
        linear-gradient(135deg, var(--green), var(--orange));
    box-shadow:
        0 8px 22px color-mix(in srgb, var(--orange) 32%, transparent),
        inset 0 -7px 12px rgba(255, 134, 60, .28);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

html[data-theme="dark"] .theme-btn__knob {
    transform: translateX(43px);
    background:
        radial-gradient(circle at 63% 36%, rgba(3, 5, 10, .46) 0 4px, transparent 4.6px),
        radial-gradient(circle at 42% 68%, rgba(3, 5, 10, .34) 0 2px, transparent 2.5px),
        linear-gradient(135deg, #eef4ff, #8fa8ff);
    box-shadow:
        0 8px 22px color-mix(in srgb, var(--blue) 36%, transparent),
        inset -6px -8px 12px rgba(83, 117, 255, .24);
}

.menu-btn {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--text);
}

.menu-btn span {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--bg);
    transition: top var(--transition), transform var(--transition);
}

.menu-btn span:first-child {
    top: 18px;
}

.menu-btn span:last-child {
    top: 27px;
}

.menu-btn.active span:first-child {
    top: 23px;
    transform: rotate(45deg);
}

.menu-btn.active span:last-child {
    top: 23px;
    transform: rotate(-45deg);
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 210px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--bg) 78%, transparent), transparent 72%),
        radial-gradient(circle at 24% 42%, color-mix(in srgb, var(--bg) 76%, transparent), transparent 44%);
}

.hero__grid {
    position: relative;
    z-index: 1;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    align-items: center;
    gap: 74px;
}

.hero__content {
    min-width: 0;
    max-width: 100%;
}

.status-pill {
    width: fit-content;
    max-width: 100%;
    display: inline-grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-strong) 94%, transparent);
    backdrop-filter: blur(20px);
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.35;
    overflow-wrap: break-word;
}

.status-pill span {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.8s infinite;
}

.hero__title {
    max-width: 960px;
    font-family: var(--font-display);
    font-size: clamp(44px, 3.05vw, 82px);
    line-height: .96;
    letter-spacing: -.025em;
    font-weight: 700;
    overflow-wrap: break-word;
}

.hero__title span {
    display: block;
}

.gradient-text {
    width: auto;
    max-width: 100%;
    color: transparent;
    background: linear-gradient(90deg, var(--green), var(--cyan), var(--violet), var(--pink));
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientShift 5s linear infinite;
}

html:not([data-theme="dark"]) .gradient-text {
    background: linear-gradient(90deg, #28730f, #00798a, #5132c9, #ad1977);
    -webkit-background-clip: text;
    background-clip: text;
}

html[data-theme="dark"] .gradient-text {
    background: linear-gradient(90deg, #d7ff3f, #54f2ff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero__text {
    max-width: 810px;
    margin-top: 30px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 560;
    line-height: 1.75;
}

.hero__badges {
    max-width: 820px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero__badges span {
    max-width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-strong) 94%, transparent);
    color: var(--text-soft);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
    font-size: 13px;
    font-weight: 900;
    overflow-wrap: break-word;
}

.hero__launch {
    max-width: 810px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.hero__launch div {
    min-height: 86px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
    background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.hero__launch strong {
    display: block;
    color: var(--green);
    font-size: 13px;
    font-weight: 950;
}

.hero__launch span {
    display: block;
    margin-top: 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 950;
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn--primary {
    color: #10131b;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    box-shadow: 0 18px 52px color-mix(in srgb, var(--cyan) 24%, transparent);
}

.btn--secondary {
    color: var(--text);
    border: 1px solid var(--line);
    background: var(--surface);
    backdrop-filter: blur(18px);
}

.hero__metrics {
    max-width: 810px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 50px;
}

.hero__metrics div {
    min-height: 132px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.hero__metrics strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0;
}

.hero__metrics span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.hero__visual {
    position: relative;
    min-height: 680px;
    display: grid;
    place-items: center;
    perspective: 1200px;
}

.hero .reveal {
    opacity: 1;
    transform: none;
}

.visual-shell {
    width: min(100%, 560px);
    min-height: 650px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--surface-strong) 88%, transparent), color-mix(in srgb, var(--surface) 70%, transparent));
    backdrop-filter: blur(30px);
    box-shadow: var(--shadow);
    transform-style: preserve-3d;
}

.visual-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(115deg, transparent 0 36%, color-mix(in srgb, var(--cyan) 12%, transparent) 36% 37%, transparent 37% 100%),
        radial-gradient(circle at 80% 8%, color-mix(in srgb, var(--pink) 16%, transparent), transparent 28%);
    pointer-events: none;
}

.visual-shell > * {
    position: relative;
    z-index: 1;
}

.visual-shell__bar {
    height: 58px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
}

.visual-shell__bar div {
    display: flex;
    gap: 7px;
}

.visual-shell__bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--line-strong);
}

.visual-shell__bar p {
    margin-left: auto;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.visual-shell__media {
    height: auto;
    aspect-ratio: 1.44 / 1;
    margin: 22px;
}

.image-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--green) 26%, transparent), transparent 34%),
        radial-gradient(circle at 90% 90%, color-mix(in srgb, var(--cyan) 22%, transparent), transparent 36%),
        var(--surface-strong);
}

.image-panel img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    background: #05070d;
}

.image-panel.is-missing img {
    display: none;
}

.image-panel__fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.fallback-core {
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.fallback-core svg {
    width: 86px;
    height: 86px;
    color: var(--text);
}

.floating-node {
    position: absolute;
    z-index: 4;
    min-width: 148px;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-strong);
    box-shadow: var(--shadow-soft);
    animation: nodeFloat 4s ease-in-out infinite;
}

.floating-node span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
}

.floating-node strong {
    font-size: 14px;
}

.floating-node--one {
    left: 24px;
    top: 42px;
}

.floating-node--two {
    right: 24px;
    top: 138px;
    animation-delay: -1s;
}

.floating-node--three {
    left: 42px;
    bottom: 50px;
    animation-delay: -2s;
}

.visual-shell__bottom {
    display: grid;
    grid-template-columns: 1fr 170px;
    gap: 14px;
    padding: 0 22px 22px;
}

.visual-shell__bottom>div:first-child {
    padding: 22px;
    border-radius: var(--radius-sm);
    background: #10131b;
    color: #fff;
}

html[data-theme="dark"] .visual-shell__bottom>div:first-child {
    background: rgba(255, 255, 255, .08);
}

.visual-shell__bottom span {
    display: block;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    font-weight: 850;
}

.visual-shell__bottom strong {
    display: block;
    margin-top: 10px;
    font-size: 52px;
    line-height: 1;
    letter-spacing: 0;
}

.mini-bars {
    min-height: 132px;
    display: flex;
    align-items: end;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-strong);
}

.mini-bars i {
    flex: 1;
    border-radius: 999px;
    background: linear-gradient(var(--green), var(--cyan));
}

.terminal-card {
    position: absolute;
    left: -70px;
    rotate: 4deg;
    bottom: -175px;
    width: 360px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, .86);
    color: #fff;
    box-shadow: var(--shadow);
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 13px;
    line-height: 1.7;
}

.terminal-card span {
    color: var(--cyan);
}

/* MARQUEE */

.marquee {
    position: relative;
    z-index: 0;
    padding: 25px 0;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-strong) 58%, transparent);
    backdrop-filter: blur(18px);
}

.marquee__track {
    display: flex;
    min-width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee__track span {
    margin-right: 58px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .13em;
}

/* COMMON */

.section-head {
    max-width: 980px;
    margin-bottom: 60px;
}

.section-label {
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--green) 24%, transparent);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.2vw, 72px);
    line-height: .98;
    letter-spacing: -.025em;
    font-weight: 700;
}

.section-text {
    max-width: 900px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 18px;
    font-weight: 560;
    line-height: 1.75;
}

/* PRODUCTS */

.product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.product-tab {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-weight: 900;
    transition: transform var(--transition), background var(--transition);
}

.product-tab:hover {
    transform: translateY(-3px);
}

.product-tab.active {
    color: #10131b;
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.product-stage {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    backdrop-filter: blur(26px);
    box-shadow: var(--shadow);
}

.product-stage::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: calc(var(--radius-lg) - 12px);
    border: 1px solid color-mix(in srgb, var(--green) 12%, transparent);
    pointer-events: none;
}

.product-stage__media {
    min-height: 0;
    aspect-ratio: 1.44 / 1;
}

.product-stage__content {
    padding: 28px;
    align-self: center;
}

.product-stage__content>span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #10131b;
    background: var(--green);
    font-size: 12px;
    font-weight: 950;
}

.product-stage__content h3 {
    margin-bottom: 20px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
    letter-spacing: 0;
}

.product-stage__content p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 17px;
    font-weight: 540;
}

.product-stage__content ul {
    display: grid;
    gap: 13px;
    margin-top: 28px;
    list-style: none;
}

.product-stage__content li {
    color: var(--text-soft);
    font-weight: 800;
}

.product-stage__content li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    margin-right: 9px;
    border-radius: 50%;
    color: #10131b;
    background: var(--green);
    font-size: 11px;
    font-weight: 950;
}

.image-panel__fallback--ui {
    padding: 32px;
    align-content: center;
    gap: 16px;
}

.image-panel__fallback--ui div {
    width: min(100%, 520px);
    height: 120px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, color-mix(in srgb, var(--green) 50%, transparent), color-mix(in srgb, var(--cyan) 45%, transparent));
}

.image-panel__fallback--ui span {
    width: min(100%, 520px);
    height: 54px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--text) 10%, transparent);
}

.image-panel__fallback--ui span:nth-child(4) {
    width: min(70%, 360px);
}

/* CAPABILITIES */

.capabilities__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 74px;
    align-items: center;
}

.radar {
    position: relative;
    min-height: 560px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at center, color-mix(in srgb, var(--cyan) 18%, transparent), transparent 58%),
        var(--surface);
    backdrop-filter: blur(26px);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.radar__ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid color-mix(in srgb, var(--cyan) 36%, transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.radar__ring--one {
    width: 180px;
    height: 180px;
}

.radar__ring--two {
    width: 310px;
    height: 310px;
}

.radar__ring--three {
    width: 440px;
    height: 440px;
}

.radar__line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 220px;
    height: 2px;
    transform-origin: left center;
    background: linear-gradient(90deg, var(--cyan), transparent);
    animation: radarSpin 4s linear infinite;
}

.radar__core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 108px;
    height: 108px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
    font-weight: 950;
    letter-spacing: 0;
}

.radar-dot {
    position: absolute;
    padding: 10px 13px;
    border-radius: 999px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    color: var(--text);
    font-size: 13px;
    font-weight: 950;
    box-shadow: var(--shadow-soft);
    animation: nodeFloat 4s ease-in-out infinite;
}

.radar-dot--web {
    left: 14%;
    top: 18%;
}

.radar-dot--crm {
    right: 16%;
    top: 22%;
    animation-delay: -1s;
}

.radar-dot--app {
    left: 18%;
    bottom: 20%;
    animation-delay: -2s;
}

.radar-dot--ai {
    right: 17%;
    bottom: 24%;
    animation-delay: -3s;
}

.radar-dot--api {
    left: 42%;
    top: 10%;
    animation-delay: -1.5s;
}

.radar-dot--seo {
    left: 44%;
    bottom: 12%;
    animation-delay: -2.5s;
}

.capability-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.cap-card {
    min-height: 280px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    backdrop-filter: blur(26px);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), border var(--transition), box-shadow var(--transition);
}

.cap-card:hover,
.case-card:hover,
.price-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--cyan) 56%, transparent);
    box-shadow: var(--shadow);
}

.cap-card span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: #10131b;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 8px 24px color-mix(in srgb, var(--green) 28%, transparent);
}

.cap-card h3 {
    margin-bottom: 14px;
    font-size: 26px;
    letter-spacing: 0;
}

.cap-card p {
    color: var(--muted);
    line-height: 1.7;
}

/* STORY */

.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 74px;
    align-items: center;
}

.story__media {
    min-height: 0;
    aspect-ratio: 1.44 / 1;
}

.image-panel__fallback--team {
    text-align: center;
    gap: 18px;
}

.avatar-row {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.avatar-row span {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.image-panel__fallback--team strong {
    font-size: 40px;
    letter-spacing: 0;
}

.image-panel__fallback--team p {
    color: var(--muted);
    font-weight: 800;
}

.story__points {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.story__points div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.story__points strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.story__points span {
    color: var(--muted);
    font-weight: 560;
    line-height: 1.5;
}

/* WEBSITE KIT */

.kit {
    overflow: hidden;
}

.kit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.kit-card {
    position: relative;
    min-height: 300px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        linear-gradient(150deg, color-mix(in srgb, var(--surface-strong) 78%, transparent), color-mix(in srgb, var(--surface) 68%, transparent)),
        radial-gradient(circle at 86% 0%, color-mix(in srgb, var(--cyan) 18%, transparent), transparent 34%);
    backdrop-filter: blur(26px);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform var(--transition), border var(--transition), box-shadow var(--transition);
}

.kit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--green) 38%, transparent), color-mix(in srgb, var(--cyan) 32%, transparent));
    height: 3px;
}

.kit-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--green) 48%, transparent);
    box-shadow: var(--shadow);
}

.kit-card span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 58px;
    border-radius: 14px;
    color: #10131b;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    font-size: 13px;
    font-weight: 950;
}

.kit-card h3 {
    margin-bottom: 14px;
    font-size: 26px;
    letter-spacing: 0;
}

.kit-card p {
    color: var(--muted);
    font-weight: 540;
    line-height: 1.7;
}

.kit-card ul {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    list-style: none;
}

.kit-card li {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 780;
    line-height: 1.45;
}

.kit-card li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    margin-right: 9px;
    border-radius: 50%;
    color: #10131b;
    background: var(--green);
    font-size: 11px;
    font-weight: 950;
}

/* CASES */

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.case-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        linear-gradient(155deg, color-mix(in srgb, var(--surface-strong) 72%, transparent), color-mix(in srgb, var(--surface) 64%, transparent));
    backdrop-filter: blur(26px);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), border var(--transition), box-shadow var(--transition);
}

.case-card::after {
    content: "";
    position: absolute;
    inset: auto 22px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--cyan) 55%, transparent), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.case-card:hover::after {
    opacity: 1;
}

.case-card__image {
    height: auto;
    aspect-ratio: 1.44 / 1;
    border: 0;
    border-radius: 0;
    background: #05070d;
}

.case-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(to bottom, transparent 58%, rgba(3, 5, 10, .36)),
        linear-gradient(115deg, rgba(255, 255, 255, .18), transparent 32%);
    opacity: .72;
}

.image-panel__fallback--dashboard,
.image-panel__fallback--mobile {
    background:
        radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--green) 24%, transparent), transparent 34%),
        radial-gradient(circle at 90% 80%, color-mix(in srgb, var(--cyan) 24%, transparent), transparent 36%);
}

.case-card__body {
    padding: 26px;
}

.case-card__body span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #10131b;
    background: var(--green);
    font-size: 12px;
    font-weight: 950;
}

.case-card__body h3 {
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0;
}

.case-card__body p {
    color: var(--muted);
    font-weight: 540;
    line-height: 1.7;
}

.case-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    list-style: none;
}

.case-card__tags li {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-strong) 72%, transparent);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 900;
}

.case-card__tags li:first-child {
    color: #10131b;
    border-color: transparent;
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.case-card__link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--text);
    font-size: 14px;
    font-weight: 950;
}

.case-card__link::after {
    content: "→";
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #10131b;
    background: var(--green);
    transition: transform var(--transition);
}

.case-card__link:hover::after {
    transform: translateX(4px);
}

/* BEFORE AFTER */

.before-after__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 74px;
    align-items: center;
}

.compare {
    position: relative;
    min-height: 0;
    aspect-ratio: 1.44 / 1;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow);
    isolation: isolate;
}

.compare__side {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.compare__side img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    user-select: none;
}

.compare__side span {
    position: absolute;
    top: 20px;
    z-index: 4;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(12, 16, 26, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-weight: 950;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.compare__side--after {
    z-index: 1;
}

.compare__side--after span {
    right: 20px;
}

.compare__side--before {
    z-index: 2;
    width: 100%;
    clip-path: inset(0 50% 0 0);
}

.compare__side--before span {
    left: 20px;
}

.compare__handle {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 4;
    width: 2px;
    height: 100%;
    background: var(--cyan);
    box-shadow: 0 0 24px color-mix(in srgb, var(--cyan) 70%, transparent);
    transform: translateX(-50%);
    pointer-events: none;
}

.compare__handle::before {
    content: "↔";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(12, 16, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 22px;
    font-weight: 950;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.compare input[type="range"] {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

/* PRICING */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pricing-proof {
    margin-top: 18px;
}

.pricing-proof .kit-card {
    min-height: 260px;
}

.price-card {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    backdrop-filter: blur(26px);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform var(--transition), border var(--transition), box-shadow var(--transition);
}

.price-card--featured {
    border-color: color-mix(in srgb, var(--green) 54%, transparent);
    background:
        radial-gradient(circle at 82% 0%, color-mix(in srgb, var(--green) 28%, transparent), transparent 36%),
        var(--surface);
}

.price-card>span {
    width: fit-content;
    margin-bottom: 48px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #10131b;
    background: var(--green);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.price-card h3 {
    margin-bottom: 16px;
    font-size: 31px;
    line-height: 1;
    letter-spacing: 0;
}

.price-card p {
    color: var(--muted);
    font-weight: 540;
    line-height: 1.7;
}

.price {
    margin: 28px 0;
    color: var(--muted);
    font-size: 15px;
    font-weight: 850;
}

.price strong {
    display: block;
    margin-top: 8px;
    color: var(--text);
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0;
}

.price-card ul {
    display: grid;
    gap: 13px;
    margin-top: auto;
    list-style: none;
}

.price-card li {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 780;
}

.price-card li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    margin-right: 9px;
    border-radius: 50%;
    color: #10131b;
    background: var(--green);
    font-size: 11px;
    font-weight: 950;
}

/* LAB */

.lab__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 74px;
    align-items: center;
}

.builder {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    backdrop-filter: blur(26px);
    box-shadow: var(--shadow);
}

.builder__tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.builder-tab {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-strong);
    color: var(--text);
    font-weight: 950;
}

.builder-tab.active {
    color: #10131b;
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.builder__screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 22px 0;
    padding: 28px;
    border-radius: var(--radius-md);
    background: #10131b;
    color: #fff;
}

html[data-theme="dark"] .builder__screen {
    background: rgba(255, 255, 255, .08);
}

.builder__screen span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    font-weight: 850;
}

.builder__screen strong {
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0;
}

.builder__addons {
    display: grid;
    gap: 12px;
}

.builder__addons label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-strong);
    color: var(--text-soft);
    font-weight: 850;
}

.builder__addons input {
    width: auto;
}

/* CONTACT */

.contact-panel {
    display: grid;
    grid-template-columns: 1fr 470px;
    gap: 54px;
    padding: 54px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--green) 24%, transparent), transparent 34%),
        radial-gradient(circle at 100% 100%, color-mix(in srgb, var(--cyan) 20%, transparent), transparent 36%),
        var(--surface);
    backdrop-filter: blur(28px);
    box-shadow: var(--shadow);
}

.form {
    display: grid;
    gap: 15px;
}

.form.is-sent label,
.form.is-sent>button[type="submit"],
.form[data-state="sent"] label,
.form[data-state="sent"]>button[type="submit"] {
    display: none;
}

.form__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form__success {
    padding: 28px;
    border: 1px solid color-mix(in srgb, var(--green) 58%, var(--line));
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--green) 34%, transparent), transparent 42%),
        linear-gradient(155deg, color-mix(in srgb, var(--surface-strong) 98%, transparent), color-mix(in srgb, var(--surface) 90%, transparent));
    box-shadow: var(--shadow);
    outline: none;
}

.form__success[hidden] {
    display: none;
}

.form__success-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #10131b;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    font-size: 34px;
    font-weight: 950;
    box-shadow: 0 18px 54px color-mix(in srgb, var(--green) 28%, transparent);
}

.form__success h3 {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0;
}

.form__success p {
    color: var(--text-soft);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.65;
}

.form__success-steps {
    display: grid;
    gap: 8px;
    margin: 22px 0;
}

.form__success-steps span {
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: color-mix(in srgb, var(--surface-strong) 78%, transparent);
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
}

.form label span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 850;
}

.form__message {
    min-height: 20px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 760;
    line-height: 1.5;
}

.form.is-sent .form__message,
.form[data-state="sent"] .form__message {
    padding: 12px 14px;
    border: 1px solid color-mix(in srgb, var(--green) 34%, transparent);
    border-radius: 16px;
    background: color-mix(in srgb, var(--green) 14%, transparent);
    color: var(--text);
}

.form-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9200;
    max-width: min(420px, calc(100vw - 40px));
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--green) 56%, var(--line));
    border-radius: 22px;
    background: color-mix(in srgb, var(--surface-strong) 98%, transparent);
    color: var(--text);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    transform: translateY(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
}

.form-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.form-toast__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #10131b;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    font-weight: 950;
}

.form-toast strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.form-toast p {
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 720;
    line-height: 1.45;
}

/* FOOTER */

.footer-brand {
    display: grid;
    color: var(--text);
}

.footer-brand span {
    font-size: 22px;
    font-weight: 950;
    letter-spacing: 0;
}

.footer-brand small {
    color: var(--muted);
    font-size: 12px;
}

/* REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .85s ease, transform .85s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ANIMATIONS */

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .78;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes loaderAutoHide {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

@keyframes scanMove {
    from {
        transform: translateY(-260px);
    }

    to {
        transform: translateY(calc(100vh + 260px));
    }
}

@keyframes orbMove {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(44px, -34px, 0) scale(1.08);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--green) 50%, transparent);
    }

    70% {
        box-shadow: 0 0 0 13px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

@keyframes gradientShift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 260% 0;
    }
}

@keyframes nodeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes radarSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ABSTRACT GEOMETRIC SHAPES */

@keyframes absGeoFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    28% { transform: translate(22px, -28px) rotate(14deg) scale(1.05); }
    60% { transform: translate(-14px, 16px) rotate(-9deg) scale(.96); }
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    animation: absGeoFloat 22s ease-in-out infinite;
}

html[data-theme="dark"] .hero-shape { opacity: .14; }
html:not([data-theme="dark"]) .hero-shape { opacity: .07; }

.hero-shape--one {
    right: 6%;
    top: 14%;
    width: 210px;
    height: 210px;
    animation-delay: -4s;
}

.hero-shape--two {
    right: 24%;
    bottom: 8%;
    width: 150px;
    height: 150px;
    animation-delay: -10s;
}

.hero-shape--three {
    left: 4%;
    bottom: 22%;
    width: 120px;
    height: 120px;
    animation-delay: -16s;
}

/* CARD STAGGER REVEAL DELAYS */

.capability-cards .cap-card:nth-child(2) { transition-delay: .1s; }
.capability-cards .cap-card:nth-child(3) { transition-delay: .2s; }
.capability-cards .cap-card:nth-child(4) { transition-delay: .3s; }

.kit-grid .kit-card:nth-child(2) { transition-delay: .1s; }
.kit-grid .kit-card:nth-child(3) { transition-delay: .2s; }
.kit-grid .kit-card:nth-child(4) { transition-delay: .3s; }
.kit-grid .kit-card:nth-child(5) { transition-delay: .4s; }
.kit-grid .kit-card:nth-child(6) { transition-delay: .5s; }

.case-grid .case-card:nth-child(2) { transition-delay: .1s; }
.case-grid .case-card:nth-child(3) { transition-delay: .2s; }
.case-grid .case-card:nth-child(4) { transition-delay: .3s; }
.case-grid .case-card:nth-child(5) { transition-delay: .4s; }
.case-grid .case-card:nth-child(6) { transition-delay: .5s; }

.pricing-grid .price-card:nth-child(2) { transition-delay: .1s; }
.pricing-grid .price-card:nth-child(3) { transition-delay: .2s; }
.pricing-grid .price-card:nth-child(4) { transition-delay: .3s; }

/* CAP CARD ACCENT COLORS PER CARD */

.cap-card:nth-child(2) span {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 8px 24px color-mix(in srgb, var(--cyan) 28%, transparent);
}

.cap-card:nth-child(3) span {
    background: linear-gradient(135deg, var(--violet), var(--pink));
    box-shadow: 0 8px 24px color-mix(in srgb, var(--violet) 28%, transparent);
}

.cap-card:nth-child(4) span {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 8px 24px color-mix(in srgb, var(--orange) 28%, transparent);
}

.cap-card:nth-child(1) span {
    box-shadow: 0 8px 24px color-mix(in srgb, var(--green) 28%, transparent);
}

/* KIT CARD ACCENT VARIANTS */

.kit-card:nth-child(2)::before { background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.kit-card:nth-child(2) span { background: linear-gradient(135deg, var(--cyan), var(--blue)); }

.kit-card:nth-child(3)::before { background: linear-gradient(90deg, var(--violet), var(--cyan)); }
.kit-card:nth-child(3) span { background: linear-gradient(135deg, var(--violet), var(--pink)); }

.kit-card:nth-child(4)::before { background: linear-gradient(90deg, var(--orange), var(--green)); }
.kit-card:nth-child(4) span { background: linear-gradient(135deg, var(--orange), var(--green)); }

.kit-card:nth-child(5)::before { background: linear-gradient(90deg, var(--pink), var(--violet)); }
.kit-card:nth-child(5) span { background: linear-gradient(135deg, var(--pink), var(--violet)); }

.kit-card:nth-child(6)::before { background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.kit-card:nth-child(6) span { background: linear-gradient(135deg, var(--blue), var(--cyan)); }

/* PRICING CARD GRADIENT TOP BORDER + GLOW */

.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--cyan));
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    pointer-events: none;
}

.price-card:nth-child(2)::before { background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.price-card:nth-child(3)::before { background: linear-gradient(90deg, var(--violet), var(--pink)); }
.price-card:nth-child(4)::before { background: linear-gradient(90deg, var(--orange), var(--green)); }

.price-card--featured {
    box-shadow:
        var(--shadow),
        0 0 0 1px color-mix(in srgb, var(--green) 30%, transparent),
        0 0 60px color-mix(in srgb, var(--green) 10%, transparent);
}

/* MOST POPULAR BADGE */

.badge-popular {
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    color: #10131b;
    font-size: 12px;
    font-weight: 950;
    white-space: nowrap;
    box-shadow: 0 8px 28px color-mix(in srgb, var(--green) 40%, transparent);
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* PRICING CTA BUTTON */

.price-card .btn {
    margin-top: 28px;
    min-height: 50px;
    font-size: 14px;
    width: 100%;
}

/* EXTRA AMBIENT ORBS */

.ambient__orb--four {
    width: 350px;
    height: 350px;
    right: 12%;
    bottom: 24%;
    background: var(--pink);
    animation-delay: -11s;
}

.ambient__orb--five {
    width: 280px;
    height: 280px;
    left: 32%;
    top: 55%;
    background: var(--orange);
    animation-delay: -7s;
}

/* IMPROVED BTN HOVER */

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 24px 64px color-mix(in srgb, var(--cyan) 36%, transparent);
}

.btn--secondary:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--cyan) 48%, transparent);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--cyan) 12%, transparent);
}

/* RADAR GLOW PULSE */

@keyframes radarGlow {
    0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--cyan) 28%, transparent), var(--shadow); }
    50% { box-shadow: 0 0 0 12px transparent, var(--shadow); }
}

.radar__core {
    animation: radarGlow 3.5s ease-in-out infinite;
}

/* MARQUEE DIAMOND SEPARATOR */

.marquee__track .sep {
    margin-right: 58px;
    color: var(--green);
    font-size: 13px;
    opacity: .6;
}

/* SECTION GLOW HINT */

.capabilities::before,
.kit::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--cyan) 6%, transparent), transparent 60%);
}

/* SPOTLIGHT EFFECT ON CARDS */

.cap-card,
.kit-card,
.price-card {
    --mx: 50%;
    --my: 0%;
}

.cap-card::after,
.kit-card::after,
.price-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(220px circle at var(--mx) var(--my),
        color-mix(in srgb, var(--cyan) 11%, transparent),
        transparent 68%);
    pointer-events: none;
    transition: opacity .22s ease;
    z-index: 0;
}

.cap-card:hover::after,
.kit-card:hover::after,
.price-card:hover::after {
    opacity: 1;
}

/* CUSTOM CURSOR DOT */

.cursor-dot {
    position: fixed;
    z-index: 9001;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform .08s ease, background .2s ease, width .2s ease, height .2s ease;
    box-shadow: 0 0 12px var(--cyan);
}

body:has(.magnetic:hover) .cursor-dot,
body:has(.btn:hover) .cursor-dot {
    width: 40px;
    height: 40px;
    background: color-mix(in srgb, var(--green) 30%, transparent);
    box-shadow: 0 0 24px var(--green);
}

/* ANIMATED GRADIENT BORDER ON FEATURED PRICING */

@keyframes featuredGlow {
    0%, 100% {
        box-shadow: var(--shadow),
            0 0 0 1px color-mix(in srgb, var(--green) 36%, transparent),
            0 0 48px color-mix(in srgb, var(--green) 10%, transparent);
    }
    50% {
        box-shadow: var(--shadow),
            0 0 0 1px color-mix(in srgb, var(--cyan) 44%, transparent),
            0 0 72px color-mix(in srgb, var(--cyan) 14%, transparent);
    }
}

html[data-theme="dark"] .price-card--featured {
    animation: featuredGlow 3.2s ease-in-out infinite;
}

/* ANIMATED SHIMMER ON PRIMARY BTN */

@keyframes btnShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.btn--primary {
    background: linear-gradient(135deg, var(--green), var(--cyan), color-mix(in srgb, var(--green) 80%, var(--cyan)));
    background-size: 200% auto;
    animation: btnShimmer 3s linear infinite;
}

/* SECTION LABEL GLOW PULSE */

@keyframes labelGlow {
    0%, 100% { box-shadow: 0 0 14px color-mix(in srgb, var(--green) 22%, transparent); }
    50%       { box-shadow: 0 0 28px color-mix(in srgb, var(--green) 40%, transparent); }
}

html[data-theme="dark"] .section-label {
    animation: labelGlow 3.4s ease-in-out infinite;
}

/* SECTION ABSTRACT SHAPES */

.section-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.sec-shape {
    position: absolute;
    animation: absGeoFloat 24s ease-in-out infinite;
}

html[data-theme="dark"] .sec-shape { opacity: .09; }
html:not([data-theme="dark"]) .sec-shape { opacity: .04; }

.sec-shape--a { animation-delay: -6s; }
.sec-shape--b { animation-delay: -14s; }
.sec-shape--c { animation-delay: -20s; }

/* TERMINAL LINE REVEAL */

@keyframes termLineIn {
    from { opacity: 0; transform: translateX(-8px); }
    to   { opacity: 1; transform: translateX(0); }
}

.terminal-line--in {
    animation: termLineIn .3s ease forwards;
}

/* HERO SHAPES — relative z-index fix */

.hero {
    isolation: isolate;
}

.hero-shapes {
    z-index: 1;
}

.hero__grid {
    z-index: 2;
}

/* FLOATING DOTS CANVAS */

#particles-bg {
    opacity: 1;
    transition: opacity .4s ease;
}

/* CARD 3D TILT ON ALL MAJOR CARDS */

.cap-card,
.kit-card,
.price-card {
    transform-style: preserve-3d;
    transition:
        transform var(--transition),
        border var(--transition),
        box-shadow var(--transition);
}

/* REVEAL SLIDE VARIANTS */

.reveal--left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .85s ease, transform .85s ease;
}

.reveal--right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .85s ease, transform .85s ease;
}

.reveal--left.active,
.reveal--right.active {
    opacity: 1;
    transform: translateX(0);
}

/* IMPROVED CURSOR GLOW */

.cursor-glow {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle,
        color-mix(in srgb, var(--cyan) 14%, transparent),
        color-mix(in srgb, var(--violet) 4%, transparent) 50%,
        transparent 70%);
    transition: background .4s ease;
}

/* SECTION ENTRANCE ACCENT LINE */

@keyframes accentLineIn {
    from { width: 0; opacity: 0; }
    to   { width: 64px; opacity: 1; }
}

.section-head .section-label + .section-title::before {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--cyan));
    opacity: 0;
}

.section-head.active .section-label + .section-title::before {
    animation: accentLineIn .7s ease .3s forwards;
}

/* TRUST STATS SECTION */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.trust-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 32px 24px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--cyan));
}

.trust-card:nth-child(2)::before { background: linear-gradient(90deg, var(--orange), var(--pink)); }
.trust-card:nth-child(3)::before { background: linear-gradient(90deg, var(--violet), var(--pink)); }
.trust-card:nth-child(4)::before { background: linear-gradient(90deg, var(--cyan), var(--blue)); }

.trust-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--green) 44%, transparent);
    box-shadow: var(--shadow);
}

.trust-card--highlight:hover {
    border-color: color-mix(in srgb, var(--orange) 44%, transparent);
}

.trust-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-strong) 80%, transparent);
    color: var(--text);
}

.trust-card__icon svg {
    width: 28px;
    height: 28px;
}

.trust-val {
    display: block;
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trust-card--highlight .trust-val {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
}

.trust-card:nth-child(3) .trust-val { background: linear-gradient(135deg, var(--violet), var(--pink)); -webkit-background-clip: text; background-clip: text; }
.trust-card:nth-child(4) .trust-val { background: linear-gradient(135deg, var(--cyan), var(--blue)); -webkit-background-clip: text; background-clip: text; }

.trust-stars {
    color: var(--orange);
    font-size: 18px;
    letter-spacing: 3px;
}

.trust-card > span:last-of-type {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.trust-progress {
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--text) 12%, transparent);
    overflow: hidden;
    margin-top: 8px;
}

.trust-progress__fill {
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--cyan));
    transition: width 1.4s cubic-bezier(.4, 0, .2, 1);
}

.trust-card:nth-child(3) .trust-progress__fill { background: linear-gradient(90deg, var(--violet), var(--pink)); }
.trust-card:nth-child(4) .trust-progress__fill { background: linear-gradient(90deg, var(--cyan), var(--blue)); }

/* CAP CARD ICON */

.cap-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
}

.cap-icon {
    width: 24px;
    height: 24px;
    color: var(--muted);
    opacity: .7;
    flex-shrink: 0;
}

/* BUTTON RIPPLE */

.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, .24);
    animation: rippleAnim .55s ease-out forwards;
    pointer-events: none;
    z-index: 0;
}

@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

/* TRUST BAR */

.trust-bar {
    position: relative;
    z-index: 1;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-strong) 36%, transparent);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.trust-bar__inner span {
    padding: 7px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    color: var(--muted);
    background: color-mix(in srgb, var(--surface-strong) 68%, transparent);
    white-space: nowrap;
    cursor: default;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.trust-bar__inner span:hover {
    border-color: color-mix(in srgb, var(--green) 50%, transparent);
    color: var(--text);
    background: color-mix(in srgb, var(--green) 10%, transparent);
}

/* FAQ */

.faq-list {
    display: grid;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.faq-open {
    border-color: color-mix(in srgb, var(--green) 50%, transparent);
    box-shadow: 0 8px 32px color-mix(in srgb, var(--green) 8%, transparent);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 850;
    color: var(--text);
    background: none;
    transition: color var(--transition);
}

.faq-q:hover { color: var(--green); }

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--green) 40%, transparent);
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--green) 10%, transparent);
    transition: transform var(--transition), background var(--transition);
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--green);
    border-radius: 999px;
    transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after  { width: 2px; height: 12px; }

.faq-item.faq-open .faq-icon {
    background: var(--green);
    transform: rotate(45deg);
}

.faq-item.faq-open .faq-icon::before,
.faq-item.faq-open .faq-icon::after {
    background: #10131b;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .42s cubic-bezier(.4,0,.2,1);
}

.faq-a-inner {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 560;
    line-height: 1.75;
}

.faq-item.faq-open .faq-a {
    max-height: 400px;
}

/* FLOATING TELEGRAM */

.float-tg {
    position: fixed;
    left: 24px;
    bottom: 28px;
    z-index: 8000;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2aabee, #1e90c8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 8px 28px rgba(42,171,238,.42);
    text-decoration: none;
    overflow: hidden;
    transition: width var(--transition), gap var(--transition), padding var(--transition), transform var(--transition), box-shadow var(--transition);
}

.float-tg svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.float-tg__tooltip {
    max-width: 0;
    overflow: hidden;
    font-size: 13px;
    font-weight: 950;
    white-space: nowrap;
    transition: max-width var(--transition);
}

.float-tg:hover {
    width: auto;
    padding: 0 16px 0 12px;
    gap: 8px;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(42,171,238,.52);
}

.float-tg:hover .float-tg__tooltip {
    max-width: 180px;
}

/* MOBILE STICKY CTA */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 6900;
    display: none;
    gap: 10px;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--surface-strong) 96%, transparent);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(28px);
    box-shadow: 0 -8px 32px rgba(0,0,0,.18);
    transform: translateY(100%);
    transition: transform .4s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta .btn {
    flex: 1;
    min-height: 50px;
    font-size: 14px;
}

/* STATS BAR */

.stats-bar {
    padding: 52px 0;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-strong) 56%, transparent);
    backdrop-filter: blur(22px);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), var(--cyan), var(--violet), transparent);
    opacity: .7;
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 950;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    letter-spacing: 0;
}

.stat-item:nth-child(2) strong { background: linear-gradient(135deg, var(--cyan), var(--blue)); -webkit-background-clip: text; background-clip: text; }
.stat-item:nth-child(3) strong { background: linear-gradient(135deg, var(--violet), var(--pink)); -webkit-background-clip: text; background-clip: text; }
.stat-item:nth-child(4) strong { background: linear-gradient(135deg, var(--orange), var(--green)); -webkit-background-clip: text; background-clip: text; }

.stat-item span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
}

/* CTA BANNER */

.cta-banner {
    padding: 0 0 80px;
}

.cta-banner__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 54px 60px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(ellipse at 0% 50%, color-mix(in srgb, var(--green) 22%, transparent), transparent 44%),
        radial-gradient(ellipse at 100% 50%, color-mix(in srgb, var(--violet) 20%, transparent), transparent 44%),
        var(--surface);
    backdrop-filter: blur(28px);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cta-banner__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--cyan), var(--violet), var(--pink));
    background-size: 200% auto;
    animation: btnShimmer 3s linear infinite;
    pointer-events: none;
}

.cta-banner__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    animation: absGeoFloat 18s ease-in-out infinite;
}

html[data-theme="dark"] .cta-shape { opacity: .14; }
html:not([data-theme="dark"]) .cta-shape { opacity: .06; }

.cta-shape--a { width: 140px; height: 140px; right: 6%; top: -20%; animation-delay: -5s; }
.cta-shape--b { width: 100px; height: 100px; right: 20%; bottom: -30%; animation-delay: -12s; }

.cta-banner__text h2 {
    font-size: clamp(28px, 3vw, 48px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0;
}

.cta-banner__text p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 18px;
    font-weight: 560;
    line-height: 1.6;
    max-width: 580px;
}

/* SCROLL TO TOP */

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 8000;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    color: var(--text);
    font-size: 20px;
    font-weight: 950;
    display: grid;
    place-items: center;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition);
    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--green), var(--cyan));
    color: #10131b;
    box-shadow: 0 12px 36px color-mix(in srgb, var(--green) 36%, transparent);
    border-color: transparent;
    transform: translateY(-4px);
}

/* FOOTER REDESIGN */

.footer {
    position: relative;
    padding: 0;
    border-top: 1px solid var(--line);
    overflow: hidden;
}

.footer__glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 700px;
    height: 220px;
    transform: translateX(-50%) translateY(-50%);
    background: radial-gradient(ellipse, color-mix(in srgb, var(--green) 10%, transparent), transparent 72%);
    pointer-events: none;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    padding: 60px 0 44px;
    border-bottom: 1px solid var(--line);
}

.footer__brand-block {
    max-width: 300px;
}

.footer__tagline {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
}

.footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer__badges span {
    padding: 6px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    color: var(--muted);
    background: color-mix(in srgb, var(--surface-strong) 80%, transparent);
}

.footer__links {
    display: flex;
    gap: 64px;
    flex-shrink: 0;
}

.footer__links > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links strong {
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text);
    margin-bottom: 6px;
}

.footer__links a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--green);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    color: var(--muted);
    font-size: 14px;
}

.footer__bottom a {
    color: var(--text);
    font-weight: 950;
    transition: color var(--transition);
}

.footer__bottom a:hover { color: var(--green); }

/* CASE CARD IMAGE ZOOM */

.case-card__image {
    overflow: hidden;
}

.case-card__image img {
    transition: transform .65s var(--ease);
}

.case-card:hover .case-card__image img {
    transform: scale(1.07);
}

/* LOADER SPINNING RINGS */

.logo-orbit {
    position: relative;
}

@keyframes loaderRingCW  { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes loaderRingCCW { to { transform: translate(-50%, -50%) rotate(-360deg); } }

.logo-orbit::before,
.logo-orbit::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1.5px solid transparent;
    pointer-events: none;
}

.logo-orbit::before {
    width: 116px; height: 116px;
    border-top-color: var(--green);
    border-right-color: var(--cyan);
    animation: loaderRingCW 1.5s linear infinite;
}

.logo-orbit::after {
    width: 138px; height: 138px;
    border-bottom-color: var(--violet);
    border-left-color: var(--pink);
    animation: loaderRingCCW 2.2s linear infinite;
}

/* PRICING GRID BADGE SPACE */

.pricing-grid {
    padding-top: 22px;
}

/* STAT ITEM SUFFIX */

.stat-item strong::after {
    content: attr(data-suffix);
}

/* RESPONSIVE */

@media (max-width: 1200px) {

    .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .cta-banner__inner { flex-direction: column; gap: 28px; text-align: center; }
    .cta-banner__inner .btn { width: 100%; max-width: 320px; }
    .footer__top { flex-direction: column; }
    .footer__links { gap: 40px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }

    .hero__grid,
    .capabilities__grid,
    .story__grid,
    .before-after__grid,
    .lab__grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 640px;
    }

    .capability-cards,
    .kit-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-stage {
        grid-template-columns: 1fr;
    }

    .product-stage__media {
        min-height: 0;
    }
}

@media (max-width: 920px) {
    .cursor-glow {
        display: none;
    }

    .header {
        top: 12px;
    }

    .header__inner {
        min-height: 72px;
    }

    .brand__text {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .nav {
        position: fixed;
        top: 92px;
        left: 20px;
        right: 20px;
        display: grid;
        gap: 8px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 30px;
        background: var(--surface-strong);
        backdrop-filter: blur(26px);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-14px);
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav a {
        padding: 16px;
        border: 1px solid var(--line);
        background: color-mix(in srgb, var(--surface-strong) 94%, transparent);
        color: var(--text);
    }

    .hero {
        padding-top: 132px;
    }

    .hero__metrics {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        display: none;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 86px 0;
    }

    .hero {
        overflow: hidden;
    }

    html[data-theme="dark"] .hero::before {
        background:
            linear-gradient(90deg, rgba(3, 5, 10, .92), rgba(3, 5, 10, .64) 72%, rgba(3, 5, 10, .46)),
            linear-gradient(180deg, rgba(3, 5, 10, .42), rgba(3, 5, 10, .78));
    }

    .hero__title {
        font-size: 33px;
        line-height: 1.02;
    }

    .hero__content {
        width: 100%;
        max-width: 100%;
    }

    .hero__title,
    .hero__text,
    .hero__badges,
    .status-pill,
    .hero__launch {
        width: 100%;
        max-width: 100%;
    }

    .hero__title span {
        max-width: 100%;
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .hero__title .gradient-text {
        width: 100%;
        min-width: 0;
    }

    .hero__badges {
        gap: 8px;
    }

    .hero__badges span {
        flex: 1 1 auto;
        text-align: center;
    }

    .hero__launch {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 18px;
    }

    .hero__launch div {
        min-height: auto;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
    }

    .hero__launch strong {
        flex: 0 0 auto;
    }

    .hero__launch span {
        margin-top: 0;
        color: var(--text-soft);
    }

    .section-title {
        font-size: 34px;
    }

    .section-text,
    .hero__text {
        color: var(--text-soft);
        font-size: 16px;
        font-weight: 620;
    }

    .status-pill,
    .hero__badges span,
    .hero__launch span,
    .case-card__body p,
    .kit-card p,
    .price-card p,
    .product-stage__content p,
    .story__points span,
    .form label span,
    .footer__inner {
        color: var(--text-soft);
    }

    .ambient__orb {
        opacity: .16;
    }

    .hero__actions {
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .capability-cards,
    .kit-grid,
    .case-grid,
    .pricing-grid,
    .builder__tabs,
    .builder__screen {
        grid-template-columns: 1fr;
    }

    .radar {
        min-height: 420px;
    }

    .radar__ring--three {
        width: 320px;
        height: 320px;
    }

    .radar-dot {
        font-size: 11px;
    }

    .contact-panel {
        padding: 30px;
        border-radius: 34px;
    }

    .form-toast {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .footer__links {
        flex-wrap: wrap;
        gap: 28px;
    }
    .scroll-top {
        right: 16px;
        bottom: 80px;
    }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .sticky-cta { display: flex; }
    .float-tg { left: 16px; bottom: 80px; }
    .faq-q { font-size: 15px; }
}

@media (max-width: 430px) {
    .hero__title {
        font-size: 30px;
    }

    .theme-btn {
        width: 70px;
        height: 42px;
    }

    .theme-btn__knob {
        width: 31px;
        height: 31px;
    }

    html[data-theme="dark"] .theme-btn__knob {
        transform: translateX(31px);
    }

    .theme-icon--sun {
        left: 12px;
    }

    .theme-icon--moon {
        right: 12px;
    }

    .lang-btn {
        min-width: 44px;
        height: 42px;
    }

    .brand__mark {
        width: 50px;
        height: 50px;
    }

    .brand__mark img {
        width: 40px;
        height: 40px;
    }
}

/* =========================================================
   MODERN POLISH 2026 — typography system, motion, texture
   Display: Space Grotesk · Body: Inter · Numerics: JetBrains Mono
   ========================================================= */

/* --- Display font for all headings / titles --- */
.brand__text strong,
.product-content h3,
#productTitle,
.case-card__body h3,
.price-card h3,
.trust-card h3,
.faq-item h3,
.contact h3,
.story h3,
.kit-card h3,
.cap-card h3,
h1, h2, h3 {
    font-family: var(--font-display);
    letter-spacing: -.02em;
    font-weight: 700;
}

.brand__text strong {
    letter-spacing: -.01em;
}

/* --- Mono for numerics, prices, stats & technical labels --- */
.section-label,
.price-card > span,
.hero__launch strong {
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: .04em;
}

.stat-item strong,
.trust-val,
.price strong,
.builder__screen strong,
.hero__metrics strong {
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

/* --- Primary button: accent glow + tactile press --- */
.btn {
    position: relative;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}

.btn--primary {
    box-shadow: var(--glow-green);
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow:
        0 0 0 1px color-mix(in srgb, var(--green) 50%, transparent),
        0 24px 64px color-mix(in srgb, var(--green) 42%, transparent),
        0 0 90px color-mix(in srgb, var(--cyan) 26%, transparent);
}

.btn--primary:active {
    transform: translateY(-1px) scale(.985);
}

.btn--secondary:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    background: color-mix(in srgb, var(--surface-strong) 92%, var(--green) 8%);
}

/* --- Keyboard focus visibility (accessibility) --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    border-radius: 14px;
}

/* --- Refined glass: hairline top highlight on key surfaces --- */
.header__inner,
.hero__metrics div,
.trust-card,
.price-card,
.case-card,
.builder__screen {
    box-shadow:
        var(--shadow-soft),
        inset 0 1px 0 color-mix(in srgb, #ffffff 14%, transparent);
}

html:not([data-theme="dark"]) .header__inner,
html:not([data-theme="dark"]) .hero__metrics div,
html:not([data-theme="dark"]) .trust-card,
html:not([data-theme="dark"]) .price-card,
html:not([data-theme="dark"]) .case-card {
    box-shadow:
        var(--shadow-soft),
        inset 0 1px 0 color-mix(in srgb, #ffffff 80%, transparent);
}

/* --- Smoother section reveals with premium easing + stagger --- */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: none;
}

.reveal.active:nth-child(2) { transition-delay: .06s; }
.reveal.active:nth-child(3) { transition-delay: .12s; }
.reveal.active:nth-child(4) { transition-delay: .18s; }

/* --- Text selection --- */
::selection {
    background: color-mix(in srgb, var(--green) 40%, transparent);
    color: var(--text);
}

/* --- Subtle film grain for cinematic depth --- */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9500;
    pointer-events: none;
    opacity: .05;
    mix-blend-mode: soft-light;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

html:not([data-theme="dark"]) body::after {
    opacity: .03;
}

/* --- Respect reduced-motion preference (accessibility) --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .ambient__orb,
    .ambient__scan {
        animation: none !important;
    }

    body.kinetic-ready .hero__content > *,
    body.kinetic-ready .hero__title span,
    body.kinetic-ready .hero__visual {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
    }
}

/* =========================================================
   IMMERSIVE LAYER 2026 — Active Theory–inspired
   WebGL aurora bg · cinematic intro · kinetic hero · smooth scroll
   ========================================================= */

/* --- WebGL aurora background canvas --- */
#gl-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.4s ease;
}

#gl-bg.ready {
    opacity: 1;
}

/* Light mode: the shader renders a soft pastel mesh — slightly dialed back */
html:not([data-theme="dark"]) #gl-bg.ready {
    opacity: .9;
}

/* Tame the ambient orbs while the live shader is running */
body.gl-active .ambient__orb {
    opacity: .3;
}

body.gl-active .ambient__scan {
    opacity: .08;
}

html:not([data-theme="dark"]) body.gl-active .ambient__orb {
    opacity: .18;
}

/* --- Cinematic loader: counter + progress bar --- */
.loader__bar {
    width: 150px;
    height: 2px;
    margin-top: 10px;
    border-radius: 4px;
    overflow: hidden;
    background: color-mix(in srgb, var(--line-strong) 55%, transparent);
}

.loader__bar i {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--green), var(--cyan));
    box-shadow: 0 0 14px color-mix(in srgb, var(--cyan) 60%, transparent);
}

.loader .loader__count {
    margin-top: 4px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    color: var(--muted);
    opacity: .8;
}

.loader .loader__count b {
    color: var(--text);
    font-weight: 700;
}

/* --- Kinetic hero intro --- */
/* Initial hidden state — applied by JS only while the loader covers the page */
body.kinetic-ready .hero__title span {
    clip-path: inset(0 0 108% 0);
    transform: translateY(46px);
    opacity: 0;
}

body.kinetic-ready .status-pill,
body.kinetic-ready .hero__text,
body.kinetic-ready .hero__badges,
body.kinetic-ready .hero__launch,
body.kinetic-ready .hero__actions,
body.kinetic-ready .hero__metrics,
body.kinetic-ready .hero__visual {
    opacity: 0;
    transform: translateY(28px);
}

/* Revealed state — lines rise out of their mask, content staggers in */
body.kinetic-done .hero__title span {
    clip-path: inset(0 0 -12% 0);
    transform: translateY(0);
    opacity: 1;
    transition: clip-path 1.05s var(--ease), transform 1.05s var(--ease), opacity 1.05s var(--ease);
}

body.kinetic-done .hero__title span:nth-child(2) { transition-delay: .12s; }
body.kinetic-done .hero__title span:nth-child(3) { transition-delay: .24s; }

body.kinetic-done .status-pill,
body.kinetic-done .hero__text,
body.kinetic-done .hero__badges,
body.kinetic-done .hero__launch,
body.kinetic-done .hero__actions,
body.kinetic-done .hero__metrics,
body.kinetic-done .hero__visual {
    opacity: 1;
    transform: none;
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

body.kinetic-done .status-pill   { transition-delay: .30s; }
body.kinetic-done .hero__text    { transition-delay: .40s; }
body.kinetic-done .hero__badges  { transition-delay: .48s; }
body.kinetic-done .hero__launch  { transition-delay: .56s; }
body.kinetic-done .hero__actions { transition-delay: .64s; }
body.kinetic-done .hero__metrics { transition-delay: .72s; }
body.kinetic-done .hero__visual  { transition: opacity 1.2s var(--ease); transition-delay: .2s; }

/* --- Lenis smooth scroll plumbing --- */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* --- WebGL showcase section (real-time raymarched scene) --- */
.gl-stage {
    position: relative;
    margin-top: 42px;
    height: clamp(340px, 50vw, 560px);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    /* Fallback look if WebGL is unavailable (theme-aware) */
    background:
        radial-gradient(120% 120% at 30% 20%, color-mix(in srgb, var(--cyan) 22%, transparent), transparent 55%),
        radial-gradient(120% 120% at 80% 90%, color-mix(in srgb, var(--violet) 26%, transparent), transparent 55%),
        var(--surface-deep);
    box-shadow: var(--shadow), inset 0 1px 0 color-mix(in srgb, #fff 12%, transparent);
}

.gl-stage__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    transition: opacity 1s ease;
}

.gl-stage--live .gl-stage__canvas {
    opacity: 1;
}

.gl-stage__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(18px, 3vw, 34px);
    pointer-events: none;
}

.gl-stage__badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-strong) 84%, transparent);
    backdrop-filter: blur(14px);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--text);
    pointer-events: auto;
}

.gl-stage__badge i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
    animation: pulse 1.8s infinite;
}

.gl-stage__cta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    pointer-events: auto;
}

.gl-stage__hint {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--text);
    padding: 8px 13px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-strong) 80%, transparent);
    backdrop-filter: blur(14px);
}

@media (max-width: 640px) {
    .gl-stage__cta {
        gap: 12px;
    }
    .gl-stage__hint {
        font-size: 12px;
    }
}

/* =========================================================
   LIGHT-THEME CONTRAST FIXES
   Lime/light-gradient accents are unreadable on white — use
   darker brand tones in light mode only.
   ========================================================= */

/* Hero launch labels 01/02/03 (were lime on a white card) */
html:not([data-theme="dark"]) .hero__launch strong {
    color: #1c7d2b;
}

/* Stat-bar numbers — were a lime→cyan gradient (too light on white) */
html:not([data-theme="dark"]) .stat-item strong,
html:not([data-theme="dark"]) .stat-item:nth-child(2) strong,
html:not([data-theme="dark"]) .stat-item:nth-child(3) strong,
html:not([data-theme="dark"]) .stat-item:nth-child(4) strong {
    background: linear-gradient(135deg, #1b7d33, #0a7d8f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Trust-card big numbers — same problem */
html:not([data-theme="dark"]) .trust-card .trust-val {
    background: linear-gradient(135deg, #1b7d33, #0a7d8f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Marquee diamond separators — darker so they read on the light strip */
html:not([data-theme="dark"]) .marquee__track .sep {
    color: #2f7d3a;
}

/* FAQ question hover — lime is unreadable on white, use a darker green in light mode */
html:not([data-theme="dark"]) .faq-q:hover {
    color: #157a2a;
}

/* FAQ plus icon (closed state) — lime bars are invisible on white in light mode */
html:not([data-theme="dark"]) .faq-icon {
    border-color: color-mix(in srgb, #157a2a 50%, transparent);
}

html:not([data-theme="dark"]) .faq-icon::before,
html:not([data-theme="dark"]) .faq-icon::after {
    background: #157a2a;
}

/* =========================================================
   DISCOUNT GAME — "Speed Code" typing challenge
   ========================================================= */
.game-card {
    margin-top: 40px;
    max-width: 760px;
    padding: clamp(22px, 4vw, 40px);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    background: var(--surface);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow), inset 0 1px 0 color-mix(in srgb, #fff 12%, transparent);
    text-align: center;
}

.game-rules {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.game-rules div {
    min-width: 104px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
    background: color-mix(in srgb, var(--surface-strong) 85%, transparent);
}

.game-rules strong {
    display: block;
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

html:not([data-theme="dark"]) .game-rules strong {
    background: linear-gradient(135deg, #1b7d33, #0a7d8f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.game-rules span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}

.game-hint {
    margin-top: 18px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* play stage */
.game-hud {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-family: var(--font-mono);
}

.game-hud b {
    font-size: 30px;
    font-weight: 700;
    color: var(--text);
}

.game-hud i {
    margin-left: 6px;
    font-style: normal;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}

.game-timer b {
    background: linear-gradient(135deg, var(--green), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

html:not([data-theme="dark"]) .game-timer b {
    background: linear-gradient(135deg, #1b7d33, #0a7d8f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* play arena (catch-the-dots) */
.game-arena {
    position: relative;
    width: 100%;
    height: clamp(280px, 42vw, 360px);
    border-radius: var(--radius-sm);
    background:
        radial-gradient(120% 120% at 20% 10%, color-mix(in srgb, var(--cyan) 10%, transparent), transparent 55%),
        radial-gradient(120% 120% at 90% 100%, color-mix(in srgb, var(--violet) 10%, transparent), transparent 55%),
        var(--surface-deep);
    border: 1px solid var(--line);
    overflow: hidden;
    cursor: crosshair;
    touch-action: manipulation;
}

.game-dot {
    position: absolute;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: radial-gradient(circle at 35% 30%, #eafff0, var(--green) 45%, color-mix(in srgb, var(--green) 60%, var(--cyan)) 100%);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 22%, transparent), 0 6px 22px color-mix(in srgb, var(--green) 45%, transparent);
    animation: dotIn .18s var(--ease) both;
    -webkit-tap-highlight-color: transparent;
}

.game-dot--gold {
    background: radial-gradient(circle at 35% 30%, #fff6d6, #ffd23f 45%, #ffae34 100%);
    box-shadow: 0 0 0 4px color-mix(in srgb, #ffd23f 28%, transparent), 0 6px 24px color-mix(in srgb, #ffae34 50%, transparent);
}

.game-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 -6px 12px color-mix(in srgb, #000 22%, transparent);
}

@keyframes dotIn { from { transform: scale(0); } to { transform: scale(1); } }

.game-dot--pop {
    animation: dotPop .18s var(--ease) forwards;
    pointer-events: none;
}

@keyframes dotPop { to { transform: scale(1.7); opacity: 0; } }

/* result stage */
.game-result__badge {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
    background: color-mix(in srgb, var(--surface-strong) 85%, transparent);
    border: 1px solid var(--line);
}

.game-result__badge--win {
    color: #06121a;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    border-color: transparent;
}

.game-result__big {
    margin: 16px 0 4px;
    font-family: var(--font-display);
    font-size: clamp(52px, 11vw, 92px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.03em;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

html:not([data-theme="dark"]) .game-result__big {
    background: linear-gradient(135deg, #1b7d33, #0a7d8f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.game-result__big--muted {
    background: none;
    -webkit-text-fill-color: var(--text);
    color: var(--text);
    font-size: clamp(34px, 7vw, 52px);
}

.game-result__sub {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.game-code {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 10px 10px 10px 18px;
    border: 1px dashed var(--line-strong);
    border-radius: 999px;
    background: var(--surface-deep);
}

.game-code span {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--green);
}

html:not([data-theme="dark"]) .game-code span { color: #1b7d33; }

.game-code__copy {
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    background: color-mix(in srgb, var(--surface-strong) 90%, transparent);
    border: 1px solid var(--line);
    transition: background var(--transition);
}

.game-code__copy:hover { background: color-mix(in srgb, var(--green) 22%, transparent); }

.game-result .btn { display: inline-flex; }

/* =========================================================
   COOKIE CONSENT BANNER
   ========================================================= */
.consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 10001;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    transform: translateY(140%);
    opacity: 0;
    transition: transform .5s var(--ease), opacity .5s var(--ease);
}

.consent.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.consent__text {
    flex: 1 1 240px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-soft);
}

.consent__btns {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.consent__btn {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    transition: transform var(--transition), background var(--transition);
}

.consent__btn--ghost {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
}

.consent__btn--accent {
    color: #06121a;
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.consent__btn:hover { transform: translateY(-2px); }

/* =========================================================
   FLOATING TELEGRAM CONTACT BUTTON
   ========================================================= */
.tg-fab {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 9000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 0 20px 0 16px;
    border-radius: 999px;
    color: #fff;
    font-weight: 850;
    font-size: 14px;
    background: linear-gradient(135deg, #2aa3e0, #1d8fd1);
    box-shadow: 0 14px 36px color-mix(in srgb, #1d8fd1 45%, transparent);
    transition: transform var(--transition), box-shadow var(--transition);
}

.tg-fab svg { width: 22px; height: 22px; flex: 0 0 auto; }

.tg-fab:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 48px color-mix(in srgb, #1d8fd1 55%, transparent);
}

.tg-fab__label { white-space: nowrap; }

@media (max-width: 640px) {
    .tg-fab__label { display: none; }
    /* bottom-left, raised above the sticky CTA bar — mirrors .scroll-top on the right,
       so it never overlaps the scroll-top button or the bottom CTA bar */
    .tg-fab {
        height: 50px;
        width: 50px;
        padding: 0;
        justify-content: center;
        left: 16px;
        right: auto;
        bottom: 80px;
    }
}
