:root {
    --bg: #05060a;
    --bg-soft: #0c1018;
    --panel: rgba(255, 255, 255, .065);
    --panel-strong: rgba(255, 255, 255, .1);
    --line: rgba(255, 255, 255, .13);
    --text: #f7f8fb;
    --muted: #9ea7b8;
    --muted-strong: #c9d1df;
    --white: #fff;
    --blue: #63b3ff;
    --green: #73f5b4;
    --pink: #ff72c8;
    --radius: 8px;
    --shadow: 0 24px 80px rgba(0, 0, 0, .36);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 16% 8%, rgba(99, 179, 255, .24), transparent 30rem),
        radial-gradient(circle at 84% 18%, rgba(255, 114, 200, .17), transparent 28rem),
        radial-gradient(circle at 54% 60%, rgba(115, 245, 180, .12), transparent 34rem),
        linear-gradient(180deg, #05060a 0%, #090d14 42%, #05060a 100%);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.045), transparent);
    opacity: .5;
    pointer-events: none;
}

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

.shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -60px;
    z-index: 1000;
    background: var(--white);
    color: #05060a;
    padding: 10px 14px;
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 12px;
}

.progress {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--pink), var(--green));
}

.cursor-glow {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 179, 255, .16), rgba(255, 114, 200, .08), transparent 70%);
    filter: blur(28px);
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    transition: background .3s ease, border .3s ease, transform .3s ease;
}

.site-header.is-scrolled {
    background: rgba(5, 6, 10, .72);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(22px);
}

.nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand span span {
    color: var(--blue);
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #05060a;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff, #9ed4ff 48%, #ffb4e4);
    box-shadow: 0 0 34px rgba(99, 179, 255, .45);
}

.brand-logo {
    overflow: hidden;
    background: #070a10;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .045);
    backdrop-filter: blur(18px);
    border-radius: 999px;
}

.nav-links a {
    padding: 10px 15px;
    color: var(--muted-strong);
    border-radius: 999px;
    font-size: 14px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--white);
    background: rgba(255, 255, 255, .08);
}

.nav-links .nav-cta {
    background: var(--white);
    color: #05060a;
}

.language-toggle {
    width: 74px;
    height: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(255, 255, 255, .055);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    vertical-align: middle;
}

.language-toggle:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .09);
}

.language-globe {
    position: relative;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    border: 1.7px solid currentColor;
    border-radius: 50%;
}

.language-globe::before,
.language-globe::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.language-globe::before {
    width: 100%;
    height: 1.7px;
    background: currentColor;
}

.language-globe::after {
    width: 6px;
    height: 100%;
    border-left: 1.7px solid currentColor;
    border-right: 1.7px solid currentColor;
    border-radius: 50%;
}

.language-toggle [data-lang-label] {
    display: inline-block;
    min-width: 20px;
    text-align: center;
}

.language-toggle svg {
    display: none;
}

.nav-toggle {
    display: none;
}

.hero,
.page-hero,
.product-hero,
.contact-hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 130px 0 70px;
}

.hero {
    grid-template-columns: 1.08fr .92fr;
    gap: 64px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: #dce8f8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 22px var(--green);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(42px, 6.5vw, 82px);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 900;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(30px, 4.2vw, 54px);
    line-height: 1.06;
    letter-spacing: 0;
    font-weight: 850;
}

h3 {
    font-size: 26px;
    line-height: 1.12;
    letter-spacing: 0;
}

p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-lead,
.page-hero p,
.product-hero p,
.contact-hero p {
    max-width: 720px;
    font-size: 19px;
}

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

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.button-primary {
    color: #05060a;
    background: linear-gradient(135deg, #fff, #bfe2ff);
    box-shadow: 0 16px 50px rgba(99, 179, 255, .28);
}

.button-ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .055);
}

.button::after,
.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    translate: -130% 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
    transform: skewX(-18deg);
}

.button:hover::after,
.product-card:hover::after {
    animation: shine .82s ease;
}

.hero-console,
.product-display,
.contact-panel,
.cta-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.hero-console {
    padding: 24px;
    min-height: 480px;
}

.hero-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .42;
    filter: saturate(1.18) contrast(1.05);
    transform: scale(1.03);
}

.hero-console::before,
.product-display::before,
.cta-panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at 30% 20%, rgba(99, 179, 255, .25), transparent 34%), radial-gradient(circle at 90% 10%, rgba(255, 114, 200, .2), transparent 28%);
    pointer-events: none;
}

.console-top,
.console-grid,
.pipeline {
    position: relative;
    z-index: 1;
}

.console-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.console-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255,255,255,.34);
}

.console-top strong {
    margin-left: auto;
    color: var(--muted-strong);
    font-size: 13px;
}

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

.console-grid div,
.process-card,
.usecase,
.stat {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(14px);
}

.console-grid div {
    min-height: 118px;
    padding: 18px;
}

.console-grid small,
.product-card small {
    display: block;
    color: var(--muted);
    margin-bottom: 12px;
}

.console-grid strong {
    display: block;
    font-size: 26px;
}

.pipeline {
    margin-top: 48px;
    display: grid;
    gap: 12px;
}

.pipeline span {
    width: calc(52% + (var(--i) * 9%));
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(90deg, rgba(99,179,255,.2), rgba(255,255,255,.04));
    border-radius: 999px;
    color: #eef5ff;
    animation: float 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * -.34s);
}

.story-section,
.products-preview,
.systems-lab,
.tech-section,
.process-section,
.roadmap-section,
.usecases-section,
.stats-section,
.feature-section,
.product-blueprint,
.cta {
    position: relative;
    z-index: 1;
    padding: 96px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 54px;
    align-items: start;
}

.section-head {
    max-width: 860px;
    margin-bottom: 44px;
}

.section-head.compact {
    max-width: 760px;
}

.build-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    width: max-content;
    opacity: .95;
}

.marquee div {
    display: flex;
    gap: 16px;
    padding-right: 16px;
    animation: marquee 26s linear infinite;
}

.marquee span {
    display: inline-flex;
    padding: 20px 34px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.055);
    font-size: clamp(26px, 5vw, 56px);
    font-weight: 900;
    color: rgba(255,255,255,.9);
}

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

.product-card {
    position: relative;
    min-height: 390px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 20% 0, rgba(99, 179, 255, .18), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.038));
    background:
        radial-gradient(circle at 20% 0, color-mix(in srgb, var(--accent), transparent 70%), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.038));
    box-shadow: 0 20px 70px rgba(0,0,0,.22);
    transition: border .25s ease, transform .25s ease, box-shadow .25s ease;
}

.product-link {
    position: absolute;
    inset: 0;
    z-index: 4;
}

.product-card:hover {
    border-color: rgba(255,255,255,.22);
    box-shadow: 0 28px 90px rgba(0,0,0,.36), 0 0 52px rgba(99, 179, 255, .16);
    border-color: color-mix(in srgb, var(--accent), white 10%);
    box-shadow: 0 28px 90px rgba(0,0,0,.36), 0 0 52px color-mix(in srgb, var(--accent), transparent 80%);
}

.product-orbit {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.22);
    background: radial-gradient(circle, rgba(99, 179, 255, .45), transparent 62%);
    border: 1px solid color-mix(in srgb, var(--accent), transparent 45%);
    background: radial-gradient(circle, color-mix(in srgb, var(--accent), white 10%), transparent 62%);
    filter: blur(.2px);
    margin-bottom: 34px;
    box-shadow: 0 0 58px rgba(99, 179, 255, .22);
    box-shadow: 0 0 58px color-mix(in srgb, var(--accent), transparent 55%);
}

.product-card__top,
.product-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    color: var(--muted-strong);
    font-size: 13px;
}

.product-card__top strong {
    color: #05060a;
    background: var(--accent);
    padding: 7px 9px;
    border-radius: 999px;
}

.product-card h3 {
    margin-bottom: 16px;
}

.feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 28px;
}

.feature-row span,
.tech-cloud span {
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: var(--muted-strong);
    font-size: 13px;
}

.product-card__footer {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.product-card__footer span {
    color: var(--white);
    font-weight: 800;
}

.systems-lab {
    overflow: hidden;
}

.systems-lab-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.system-mockup {
    position: relative;
    min-height: 520px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 18% 12%, rgba(99,179,255,.2), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
    box-shadow: 0 28px 90px rgba(0,0,0,.28);
    overflow: hidden;
}

.system-mockup--hotelixerp { --accent-rgb: 109, 225, 255; }
.system-mockup--ticketsync { --accent-rgb: 255, 122, 217; }
.system-mockup--routeflow { --accent-rgb: 140, 255, 155; }
.system-mockup--smart-parking { --accent-rgb: 255, 209, 102; }
.system-mockup--pointfusion-pos { --accent-rgb: 184, 156, 255; }
.system-mockup--corebusiness-erp { --accent-rgb: 124, 255, 215; }

.system-mockup::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .42;
    pointer-events: none;
}

.system-mockup--wide {
    min-height: 640px;
    margin-bottom: 18px;
}

.mockup-framebar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    background: rgba(3, 6, 12, .52);
    backdrop-filter: blur(18px);
}

.mockup-framebar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.34);
}

.mockup-framebar span:first-child {
    background: #ff7b7b;
}

.mockup-framebar span:nth-child(2) {
    background: #ffd166;
}

.mockup-framebar span:nth-child(3) {
    background: #73f5b4;
}

.mockup-framebar strong {
    margin-left: auto;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mockup-screen {
    position: relative;
    display: grid;
    grid-template-columns: 72px 1fr;
    min-height: 390px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius);
    background: rgba(5, 8, 14, .68);
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.mockup-sidebar {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 18px 14px;
    border-right: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.045);
}

.mockup-sidebar span {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--accent);
    box-shadow: 0 0 34px rgba(var(--accent-rgb, 99, 179, 255), .5);
}

.mockup-sidebar i {
    width: 34px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
}

.mockup-main {
    min-width: 0;
    padding: 20px;
}

.mockup-topbar,
.mockup-kpis,
.mockup-body,
.mockup-table div,
.mockup-caption,
.blueprint-grid {
    position: relative;
}

.mockup-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.mockup-topbar small,
.mockup-caption span {
    display: block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mockup-topbar strong {
    display: block;
    margin-top: 4px;
    font-size: clamp(22px, 3vw, 34px);
}

.mockup-topbar > span {
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: 999px;
    color: #05060a;
    background: var(--accent);
    font-size: 12px;
    font-weight: 900;
}

.mockup-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.mockup-kpis div {
    min-height: 92px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    background: rgba(255,255,255,.06);
}

.mockup-kpis small {
    display: block;
    min-height: 34px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.mockup-kpis strong {
    display: block;
    margin-top: 10px;
    font-size: 28px;
}

.mockup-body {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 12px;
}

.mockup-chart,
.mockup-table {
    min-height: 190px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    background: rgba(255,255,255,.045);
}

.mockup-chart {
    display: flex;
    align-items: end;
    gap: 10px;
    padding: 16px;
}

.mockup-chart span {
    flex: 1;
    min-height: 32px;
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, var(--accent), rgba(255,255,255,.1));
    box-shadow: 0 0 24px rgba(var(--accent-rgb, 99, 179, 255), .36);
}

.mockup-table {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 14px;
}

.mockup-table div {
    display: grid;
    grid-template-columns: 1fr 54px;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 7px;
    background: rgba(255,255,255,.055);
}

.mockup-table span {
    min-width: 0;
    overflow: hidden;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mockup-table i {
    height: 8px;
    border-radius: 999px;
    background: rgba(var(--accent-rgb, 99, 179, 255), .72);
}

.mockup-caption {
    display: grid;
    gap: 8px;
}

.mockup-caption p {
    margin: 0;
    font-size: 15px;
}

.mockup-flow {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 32px 1fr 32px 1fr;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.mockup-flow div {
    min-width: 0;
    min-height: 76px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 20% 0, rgba(var(--accent-rgb, 99, 179, 255), .22), transparent 48%),
        rgba(255,255,255,.05);
}

.mockup-flow small,
.mockup-flow strong {
    display: block;
}

.mockup-flow small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mockup-flow strong {
    overflow: hidden;
    margin-top: 8px;
    color: var(--muted-strong);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mockup-flow > span {
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), transparent);
    box-shadow: 0 0 18px rgba(var(--accent-rgb, 99, 179, 255), .45);
}

.product-blueprint {
    padding-top: 70px;
}

.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.blueprint-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(14px);
}

.blueprint-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.blueprint-card p {
    margin: 0;
    font-size: 15px;
}

.tech-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-cloud span {
    padding: 14px 18px;
    font-weight: 800;
}

.process-grid,
.usecase-grid,
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.process-card {
    padding: 24px;
}

.process-card span {
    color: var(--blue);
    font-weight: 900;
}

.roadmap-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline div {
    padding: 20px;
    border-left: 2px solid var(--blue);
    background: linear-gradient(90deg, rgba(99,179,255,.12), rgba(255,255,255,.035));
}

.timeline strong,
.timeline span {
    display: block;
}

.timeline span {
    color: var(--muted);
    margin-top: 8px;
}

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

.usecase {
    min-height: 120px;
    display: flex;
    align-items: end;
    padding: 22px;
    color: var(--muted-strong);
    font-weight: 800;
}

.stat {
    min-height: 150px;
    display: grid;
    align-content: center;
    padding: 24px;
}

.stat strong {
    font-size: 52px;
}

.stat span {
    color: var(--muted);
}

.page-hero {
    min-height: 70vh;
}

.page-hero h1,
.product-hero h1,
.contact-hero h1 {
    font-size: clamp(38px, 5.6vw, 68px);
    line-height: 1.04;
}

.page-products {
    padding-top: 0;
}

.product-hero,
.contact-hero {
    grid-template-columns: 1fr .62fr;
    gap: 48px;
}

.product-display {
    min-height: 440px;
    padding: 28px;
    display: grid;
    align-content: end;
    background:
        radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--accent), transparent 55%), transparent 45%),
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
}

.product-display strong {
    position: relative;
    font-size: 52px;
    line-height: 1;
}

.product-display span,
.product-display small {
    position: relative;
    color: var(--muted-strong);
    font-weight: 800;
}

.contact-panel,
.contact-form {
    padding: 26px;
    display: grid;
    gap: 12px;
}

.contact-panel a,
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.05);
    color: var(--muted-strong);
    font-weight: 800;
}

.contact-form {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.website-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form label.full,
.contact-form .button,
.contact-direct,
.form-alert {
    grid-column: 1 / -1;
}

.contact-form span {
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    outline: none;
    font: inherit;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(99,179,255,.12);
}

.form-alert {
    padding: 14px 16px;
    border-radius: var(--radius);
    line-height: 1.55;
    color: var(--text);
}

.form-alert.success {
    border: 1px solid rgba(115,245,180,.34);
    background: rgba(115,245,180,.12);
}

.form-alert.warning {
    border: 1px solid rgba(255,209,102,.36);
    background: rgba(255,209,102,.12);
}

.contact-direct {
    margin: 0;
    font-size: 14px;
}

.contact-direct a {
    color: var(--white);
    font-weight: 800;
}

.chatbot {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
}

.chatbot-toggle {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    color: #05060a;
    background: linear-gradient(135deg, #fff, #bfe2ff);
    box-shadow: 0 18px 55px rgba(99,179,255,.35);
    font-weight: 900;
    cursor: pointer;
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: min(380px, calc(100vw - 32px));
    display: none;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 11, 18, .88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
}

.chatbot.is-open .chatbot-panel {
    display: block;
}

.chatbot-head,
.chatbot-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-bottom: 1px solid var(--line);
}

.chatbot-head {
    justify-content: space-between;
}

.chatbot-head strong,
.chatbot-head span {
    display: block;
}

.chatbot-head span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
}

.chatbot-head button,
.chatbot-input button,
.chatbot-prompts button {
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255,255,255,.06);
    cursor: pointer;
}

.chatbot-head button {
    width: 34px;
    height: 34px;
    font-size: 20px;
}

.chatbot-messages {
    display: grid;
    gap: 10px;
    max-height: 330px;
    overflow: auto;
    padding: 14px;
}

.bot-message,
.user-message {
    width: fit-content;
    max-width: 92%;
    margin: 0;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
}

.bot-message {
    background: rgba(255,255,255,.07);
    color: var(--muted-strong);
}

.user-message {
    justify-self: end;
    color: #05060a;
    background: #fff;
}

.chatbot-prompts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0 14px 14px;
}

.chatbot-prompts button {
    padding: 8px 10px;
    color: var(--muted-strong);
}

.chatbot-input {
    border-top: 1px solid var(--line);
    border-bottom: 0;
}

.chatbot-input input {
    min-width: 0;
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 14px;
    color: var(--text);
    background: rgba(255,255,255,.06);
    outline: none;
}

.chatbot-input button {
    padding: 12px 14px;
    font-weight: 800;
}

.cta {
    padding-top: 70px;
}

.cta-panel {
    padding: clamp(30px, 6vw, 72px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
}

.cta-panel h2 {
    max-width: 720px;
    margin-bottom: 0;
}

.cta-panel span {
    position: relative;
    color: var(--blue);
    font-weight: 900;
}

.footer {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: start;
    padding: 56px 0 34px;
    border-top: 1px solid var(--line);
}

.footer p {
    max-width: 480px;
    margin: 16px 0 0;
}

.footer-links {
    display: flex;
    gap: 18px;
    color: var(--muted-strong);
}

.footer small {
    grid-column: 1 / -1;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}

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

@keyframes shine {
    to {
        translate: 150% 0;
    }
}

@keyframes float {
    50% {
        transform: translateY(-10px);
    }
}

@keyframes marquee {
    to {
        transform: translateX(-100%);
    }
}

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

    .cursor-glow {
        display: none;
    }
}

@media (max-width: 980px) {
    .hero,
    .story-grid,
    .roadmap-section,
    .product-hero,
    .contact-hero,
    .cta-panel,
    .footer {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .systems-lab-grid,
    .process-grid,
    .usecase-grid,
    .stats-section,
    .blueprint-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-toggle {
        display: grid;
        gap: 5px;
        width: 42px;
        height: 42px;
        place-content: center;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: rgba(255,255,255,.06);
    }

    .nav-toggle span {
        width: 18px;
        height: 2px;
        background: var(--white);
    }

    .nav-links {
        position: fixed;
        top: 84px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-radius: var(--radius);
    }

    .language-toggle {
        justify-content: center;
        width: 100%;
    }

    .nav-links.is-open {
        display: flex;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(100% - 28px, 1180px);
    }

    h1 {
        font-size: 42px;
    }

    .hero,
    .page-hero,
    .product-hero,
    .contact-hero {
        padding-top: 118px;
    }

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

    .contact-form {
        grid-template-columns: 1fr;
    }

    .chatbot {
        right: 14px;
        bottom: 14px;
    }

    .product-grid,
    .systems-lab-grid,
    .process-grid,
    .usecase-grid,
    .stats-section,
    .console-grid,
    .blueprint-grid {
        grid-template-columns: 1fr;
    }

    .systems-lab,
    .product-blueprint {
        display: none;
    }

    .products-preview,
    .tech-section,
    .process-section,
    .roadmap-section,
    .usecases-section,
    .stats-section,
    .feature-section,
    .cta {
        padding: 58px 0;
    }

    .page-products {
        padding-top: 0;
    }

    .product-card {
        min-height: 0;
        padding: 20px;
        background:
            radial-gradient(circle at 16% 0, rgba(99, 179, 255, .16), transparent 42%),
            linear-gradient(180deg, rgba(18, 25, 36, .96), rgba(7, 10, 16, .98));
        transform: none !important;
    }

    .product-card__top,
    .product-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-card__top strong {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .product-orbit {
        width: 64px;
        height: 64px;
        margin-bottom: 22px;
        box-shadow: 0 0 34px rgba(99, 179, 255, .2);
    }

    .product-card h3 {
        font-size: 24px;
    }

    .product-card p {
        font-size: 15px;
        line-height: 1.65;
    }

    .feature-row {
        margin: 20px 0 24px;
    }

    .mockup-kpis {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .mockup-kpis div {
        min-height: 76px;
        padding: 10px;
    }

    .mockup-kpis small {
        min-height: 28px;
        font-size: 10px;
    }

    .mockup-kpis strong {
        font-size: 20px;
    }

    .mockup-body {
        grid-template-columns: 1fr;
    }

    .mockup-flow {
        grid-template-columns: 1fr 18px 1fr 18px 1fr;
        gap: 6px;
    }

    .mockup-flow div {
        min-height: 68px;
        padding: 9px;
    }

    .mockup-flow small {
        font-size: 9px;
    }

    .mockup-flow strong {
        font-size: 11px;
    }

    .mockup-flow > span {
        width: auto;
        height: 2px;
        margin: auto;
        background: linear-gradient(90deg, var(--accent), transparent);
    }

    .hero-console,
    .product-display,
    .system-mockup {
        min-height: 360px;
    }

    .system-mockup {
        padding: 12px;
        gap: 12px;
        border-radius: 12px;
        background:
            radial-gradient(circle at 12% 0, rgba(var(--accent-rgb, 99, 179, 255), .26), transparent 32%),
            linear-gradient(180deg, rgba(18, 25, 36, .96), rgba(7, 10, 16, .98));
        border-color: rgba(var(--accent-rgb, 99, 179, 255), .3);
        box-shadow: 0 22px 70px rgba(0,0,0,.42);
    }

    .system-mockup--wide {
        min-height: 0;
    }

    .mockup-framebar {
        height: 34px;
        padding: 0 10px;
        background: rgba(0, 0, 0, .28);
        border-color: rgba(255,255,255,.14);
    }

    .mockup-screen {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 12px;
        background: rgba(3, 8, 14, .82);
        border-color: rgba(255,255,255,.16);
    }

    .mockup-sidebar {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        align-content: center;
        gap: 8px;
        padding: 10px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
        background: rgba(255,255,255,.06);
    }

    .mockup-sidebar span,
    .mockup-sidebar i {
        width: 100%;
        max-width: 30px;
        justify-self: center;
    }

    .mockup-main {
        padding: 12px;
        display: grid;
        gap: 12px;
    }

    .mockup-topbar {
        align-items: start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 12px;
        padding: 12px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 10px;
        background: rgba(255,255,255,.055);
    }

    .mockup-topbar strong {
        font-size: 24px;
    }

    .mockup-chart,
    .mockup-table {
        min-height: 150px;
        background: rgba(255,255,255,.06);
        border-color: rgba(255,255,255,.13);
    }

    .mockup-chart {
        padding: 12px;
    }

    .mockup-table {
        gap: 8px;
        padding: 10px;
    }

    .mockup-table div {
        grid-template-columns: 1fr 38px;
        padding: 8px;
        background: rgba(255,255,255,.08);
    }

    .mockup-caption {
        padding: 12px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 10px;
        background: rgba(255,255,255,.055);
    }

    .mockup-caption p {
        font-size: 14px;
    }

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