:root {
    --ink: #f5f6fa;
    --ink-soft: #b7bdca;
    --ink-muted: #777f90;
    --night: #07080d;
    --night-soft: #0d1018;
    --panel: #111520;
    --panel-high: #171c29;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.18);
    --paper: #f2f0ea;
    --paper-ink: #10121a;
    --blue: #4f6cff;
    --blue-deep: #245cff;
    --aqua: #34dfc3;
    --coral: #ff835f;
    --lime: #c8f65b;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --shell: 1240px;
    --header-height: 76px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--night);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--night);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

button {
    color: inherit;
}

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

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

::selection {
    color: #06100e;
    background: var(--aqua);
}

:focus-visible {
    outline: 2px solid var(--aqua);
    outline-offset: 4px;
}

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

.display {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    letter-spacing: -0.045em;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--aqua);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.17em;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 22px;
    height: 1px;
    content: "";
    background: currentColor;
}

.section-heading {
    max-width: 820px;
    margin: 0;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(2.6rem, 6vw, 5.75rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.section-intro {
    max-width: 610px;
    margin: 24px 0 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.anchor-alias {
    position: relative;
    top: calc(var(--header-height) * -1);
    display: block;
    height: 0;
    visibility: hidden;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    transition: transform 240ms var(--ease-out), color 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(52, 223, 195, 0.22);
}

.button-primary {
    min-height: 58px;
    padding-inline: 28px;
    color: #07100f;
    background: var(--aqua);
}

.button-secondary {
    min-height: 58px;
    padding-inline: 28px;
    border-color: var(--line-strong);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.075);
}

.button svg {
    width: 16px;
    height: 16px;
    transition: transform 220ms var(--ease-out);
}

.button:hover svg {
    transform: translate(3px, -3px);
}

.hero {
    position: relative;
    min-height: 940px;
    padding: 156px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at var(--spot-x, 74%) var(--spot-y, 26%), rgba(79, 108, 255, 0.19), transparent 24%),
        radial-gradient(circle at 8% 78%, rgba(52, 223, 195, 0.09), transparent 30%),
        linear-gradient(180deg, #080910 0%, #07080d 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.hero::after {
    position: absolute;
    z-index: 0;
    top: 80px;
    left: 50%;
    width: min(92vw, 1340px);
    aspect-ratio: 1.6;
    border: 1px solid rgba(79, 108, 255, 0.11);
    border-radius: 50%;
    content: "";
    transform: translateX(-50%) rotate(-10deg);
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
    gap: clamp(40px, 7vw, 96px);
    align-items: center;
}

.hero-copy {
    padding-bottom: 26px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.pulse-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--aqua);
    box-shadow: 0 0 18px rgba(52, 223, 195, 0.9);
}

.pulse-dot::after {
    position: absolute;
    inset: -5px;
    border: 1px solid var(--aqua);
    border-radius: inherit;
    content: "";
    animation: pulse-ring 2.4s ease-out infinite;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(4rem, 7.35vw, 7.15rem);
    font-weight: 600;
    letter-spacing: -0.07em;
    line-height: 0.86;
}

html[lang="ro"] .hero h1,
html[lang="es"] .hero h1,
html[lang="ru"] .hero h1,
html[lang="uk"] .hero h1 {
    font-size: clamp(3.15rem, 5.7vw, 5rem);
    line-height: 0.9;
}

.hero h1 .accent {
    display: inline-block;
    color: transparent;
    background: linear-gradient(105deg, #f7f8fb 0%, #9cafff 34%, var(--aqua) 92%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-lede {
    max-width: 610px;
    margin: 34px 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.04rem, 1.45vw, 1.22rem);
    line-height: 1.68;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 40px;
}

.hero-footnote {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 32px;
    color: var(--ink-muted);
    font-size: 12px;
    font-weight: 700;
}

.hero-footnote span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-footnote span::before {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    content: "";
    background: var(--blue);
}

.hero-stage-wrap {
    position: relative;
    perspective: 1300px;
}

.hero-stage {
    position: relative;
    min-height: 622px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(28, 34, 49, 0.94), rgba(10, 13, 21, 0.92)),
        var(--panel);
    box-shadow: 0 60px 130px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transform-style: preserve-3d;
    transition: transform 650ms var(--ease-out), border-color 280ms ease;
}

.hero-stage:hover {
    border-color: rgba(52, 223, 195, 0.35);
}

.stage-aura {
    position: absolute;
    top: 50px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(79, 108, 255, 0.2);
    filter: blur(80px);
    pointer-events: none;
    transition: background 350ms ease;
}

.hero-stage[data-mode="ai"] .stage-aura {
    background: rgba(52, 223, 195, 0.2);
}

.hero-stage[data-mode="cloud"] .stage-aura {
    background: rgba(255, 131, 95, 0.18);
}

#signal-canvas {
    position: absolute;
    inset: 78px 0 auto;
    width: 100%;
    height: 300px;
    opacity: 0.92;
    pointer-events: none;
}

.stage-bar {
    position: relative;
    z-index: 2;
    display: flex;
    height: 62px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.stage-dots {
    display: flex;
    gap: 6px;
}

.stage-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.stage-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--aqua);
}

.stage-status::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    content: "";
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
}

.stage-mode-switcher {
    position: relative;
    z-index: 4;
    display: flex;
    margin: 18px 18px 0;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(3, 5, 10, 0.46);
    backdrop-filter: blur(10px);
}

.mode-button {
    flex: 1;
    min-height: 38px;
    padding: 0 8px;
    border: 0;
    border-radius: 9px;
    color: var(--ink-muted);
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.mode-button[aria-selected="true"] {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.stage-core {
    position: relative;
    z-index: 3;
    min-height: 297px;
    padding: 53px 25px 20px;
}

.stage-ring {
    position: absolute;
    top: 19px;
    right: 30px;
    width: 164px;
    height: 164px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    animation: spin 22s linear infinite;
}

.stage-ring::before,
.stage-ring::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.stage-ring::before {
    inset: 19px;
    border: 1px dashed rgba(79, 108, 255, 0.36);
}

.stage-ring::after {
    top: -4px;
    left: 75px;
    width: 8px;
    height: 8px;
    background: var(--aqua);
    box-shadow: 0 0 20px var(--aqua);
}

.mode-panel {
    display: none;
    animation: mode-in 430ms var(--ease-out) both;
}

.mode-panel.is-active {
    display: block;
}

.mode-index {
    display: inline-flex;
    padding: 5px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-muted);
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.mode-panel h2 {
    max-width: 350px;
    margin: 15px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 3.2vw, 3.3rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.mode-panel p {
    max-width: 340px;
    margin: 15px 0 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.6;
}

.stage-metrics {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 18px 18px;
}

.stage-metric {
    min-height: 93px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(8px);
}

.stage-metric span {
    display: block;
    color: var(--ink-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stage-metric strong {
    display: block;
    margin-top: 7px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    letter-spacing: -0.025em;
}

.stage-progress {
    height: 2px;
    margin-top: 11px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.stage-progress i {
    display: block;
    width: var(--progress);
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--aqua));
    transform-origin: left;
    animation: progress-in 900ms var(--ease-out) both;
}

.hero-caption {
    position: absolute;
    top: 50%;
    right: -28px;
    color: var(--ink-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
    transform: translateY(-50%);
}

.signal-strip {
    position: relative;
    z-index: 3;
    margin-top: 88px;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.012);
}

.signal-track {
    display: flex;
    width: max-content;
    animation: marquee 34s linear infinite;
}

.signal-item {
    display: flex;
    height: 68px;
    align-items: center;
    gap: 26px;
    padding-right: 26px;
    color: #c5cad5;
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    white-space: nowrap;
    text-transform: uppercase;
}

.signal-item::after {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    content: "";
    background: var(--aqua);
}

.proof {
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
    background: #090b12;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(4, 1fr);
    gap: 0;
    align-items: stretch;
}

.proof-copy {
    display: flex;
    align-items: center;
    padding-right: 32px;
    color: var(--ink-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

.proof-item {
    padding: 2px 22px;
    border-left: 1px solid var(--line);
}

.proof-item strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.85rem, 3vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 1;
}

.proof-item span {
    display: block;
    margin-top: 9px;
    color: var(--ink-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.capabilities {
    padding: 148px 0 160px;
    background:
        radial-gradient(circle at 90% 40%, rgba(79, 108, 255, 0.08), transparent 27%),
        var(--night);
}

.capabilities-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 68px;
}

.capabilities-header .section-intro {
    flex: 0 0 420px;
    margin: 0 0 5px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 14px;
    aspect-ratio: 1;
}

.cap-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    overflow: hidden;
    transition: transform 350ms var(--ease-out), border-color 250ms ease, background 250ms ease;
}

.cap-card::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0;
    background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(79, 108, 255, 0.17), transparent 42%);
    transition: opacity 250ms ease;
    pointer-events: none;
}

.cap-card:hover {
    z-index: 2;
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-5px);
}

.cap-card:hover::before {
    opacity: 1;
}

.cap-card > * {
    position: relative;
    z-index: 1;
}

.cap-card-product {
    grid-column: span 2;
    grid-row: span 2;
    background:
        radial-gradient(circle at 77% 70%, rgba(79, 108, 255, 0.18), transparent 37%),
        linear-gradient(145deg, #151a27, #0c0f17);
}

.cap-card-ai {
    grid-column: span 1;
    grid-row: span 1;
    color: #07100f;
    border-color: transparent;
    background: var(--aqua);
}

.cap-card-cloud {
    grid-column: span 1;
    grid-row: span 1;
}

.cap-card-mobile,
.cap-card-web3 {
    grid-column: span 1;
    grid-row: span 1;
}

.cap-card-ops {
    grid-column: span 1;
    grid-row: span 1;
    color: var(--paper-ink);
    border-color: transparent;
    background: var(--paper);
}

.cap-num {
    color: var(--ink-muted);
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.cap-card-ai .cap-num,
.cap-card-ops .cap-num {
    color: rgba(7, 16, 15, 0.5);
}

.cap-copy {
    margin-top: auto;
}

.cap-copy h3 {
    max-width: 520px;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.75rem, 3vw, 3.35rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1;
}

.cap-card:not(.cap-card-product) .cap-copy h3 {
    font-size: clamp(1.75rem, 2.35vw, 2.65rem);
}

.cap-copy p {
    max-width: 470px;
    margin: 15px 0 0;
    color: var(--ink-soft);
    font-size: 13px;
}

.cap-card-ai .cap-copy p,
.cap-card-ops .cap-copy p {
    color: rgba(7, 16, 15, 0.64);
}

.cap-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cap-link::after {
    content: "↗";
    font-size: 15px;
}

.product-visual {
    position: absolute;
    top: 55px;
    right: 36px;
    width: min(44%, 320px);
    min-width: 260px;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7, 9, 15, 0.64);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.product-visual::before {
    display: block;
    height: 31px;
    border-bottom: 1px solid var(--line);
    content: "";
    background: radial-gradient(circle at 15px 15px, var(--coral) 0 3px, transparent 4px), radial-gradient(circle at 26px 15px, #f6cb54 0 3px, transparent 4px), radial-gradient(circle at 37px 15px, var(--aqua) 0 3px, transparent 4px);
}

.visual-sidebar {
    position: absolute;
    top: 47px;
    bottom: 16px;
    left: 14px;
    width: 52px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.visual-sidebar i {
    display: block;
    width: 25px;
    height: 4px;
    margin: 16px auto;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.15);
}

.visual-chart {
    position: absolute;
    top: 54px;
    right: 17px;
    bottom: 76px;
    left: 80px;
    display: flex;
    align-items: end;
    gap: 7px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 100% 25%;
}

.visual-chart i {
    flex: 1;
    height: var(--bar);
    border-radius: 4px 4px 1px 1px;
    background: linear-gradient(to top, var(--blue), var(--aqua));
    animation: chart-breathe 4s ease-in-out infinite alternate;
    animation-delay: var(--delay);
}

.visual-row {
    position: absolute;
    right: 17px;
    bottom: 20px;
    left: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.visual-row i {
    height: 39px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.055);
}

.ai-orbit {
    position: absolute;
    top: -55px;
    right: -42px;
    width: 255px;
    height: 255px;
    border: 1px solid rgba(7, 16, 15, 0.15);
    border-radius: 50%;
}

.ai-orbit::before,
.ai-orbit::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.ai-orbit::before {
    inset: 31px;
    border: 1px dashed rgba(7, 16, 15, 0.25);
    animation: spin 18s linear infinite reverse;
}

.ai-orbit::after {
    top: 65px;
    left: 38px;
    width: 13px;
    height: 13px;
    background: var(--night);
    box-shadow: 0 0 0 8px rgba(7, 16, 15, 0.08);
}

.deployment-map {
    position: absolute;
    top: 42px;
    right: 25px;
    width: 45%;
}

.deploy-line {
    position: relative;
    height: 36px;
    margin-bottom: 13px;
    border-bottom: 1px solid var(--line);
}

.deploy-line::before {
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: var(--blue);
    box-shadow: 0 0 15px var(--blue);
    animation: deploy 3.2s ease-in-out infinite;
    animation-delay: var(--delay);
}

.phone-visual {
    position: absolute;
    top: 47px;
    right: 25px;
    width: 108px;
    height: 188px;
    padding: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 26px;
    background: #090c14;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
    transform: rotate(7deg);
}

.phone-visual::before {
    display: block;
    width: 34px;
    height: 5px;
    margin: 0 auto 10px;
    border-radius: 9px;
    content: "";
    background: rgba(255, 255, 255, 0.12);
}

.phone-screen {
    height: 147px;
    border-radius: 17px;
    background:
        radial-gradient(circle at 60% 30%, rgba(52, 223, 195, 0.65), transparent 25%),
        linear-gradient(150deg, #313fa4, #12182b 62%);
}

.chain-visual {
    position: absolute;
    top: 64px;
    right: 29px;
    width: 150px;
    height: 150px;
}

.chain-visual i {
    position: absolute;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(79, 108, 255, 0.42);
    transform: rotate(45deg);
}

.chain-visual i:nth-child(1) { top: 10px; left: 47px; }
.chain-visual i:nth-child(2) { top: 56px; left: 2px; border-color: rgba(52, 223, 195, 0.48); }
.chain-visual i:nth-child(3) { top: 56px; right: 2px; border-color: rgba(255, 131, 95, 0.45); }

.ops-pulse {
    position: absolute;
    top: 30px;
    right: 35px;
    width: 44%;
    height: 110px;
}

.ops-pulse svg {
    width: 100%;
    height: 100%;
}

.ops-pulse path {
    fill: none;
    stroke: var(--blue-deep);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw-line 4s var(--ease-out) infinite;
}

.ai-applied {
    position: relative;
    padding: 148px 0 156px;
    color: var(--paper-ink);
    background: var(--paper);
    overflow: hidden;
}

.ai-applied::before {
    position: absolute;
    top: -240px;
    right: -200px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(16, 18, 26, 0.09);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 80px rgba(16, 18, 26, 0.025), 0 0 0 160px rgba(16, 18, 26, 0.018);
}

.ai-applied .section-kicker {
    color: #0e7f70;
}

.ai-applied .section-intro {
    color: rgba(16, 18, 26, 0.62);
}

.ai-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(530px, 1.14fr);
    gap: clamp(60px, 9vw, 130px);
    align-items: start;
}

.ai-copy {
    position: sticky;
    top: 120px;
}

.ai-board {
    display: grid;
    grid-template-columns: 185px 1fr;
    min-height: 570px;
    border: 1px solid rgba(16, 18, 26, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.54);
    box-shadow: 0 34px 90px rgba(31, 32, 37, 0.1);
    overflow: hidden;
}

.sector-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 15px;
    border-right: 1px solid rgba(16, 18, 26, 0.11);
    background: rgba(16, 18, 26, 0.025);
}

.sector-tab {
    display: flex;
    min-height: 56px;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border: 0;
    border-radius: 13px;
    color: rgba(16, 18, 26, 0.52);
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.sector-tab:hover {
    color: var(--paper-ink);
    transform: translateX(2px);
}

.sector-tab[aria-selected="true"] {
    color: #06110f;
    background: var(--aqua);
}

.sector-icon {
    display: grid;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 9px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
}

.sector-content {
    position: relative;
    min-width: 0;
    padding: 38px 38px 34px;
    overflow: hidden;
}

.sector-content::after {
    position: absolute;
    right: -75px;
    bottom: -105px;
    width: 280px;
    height: 280px;
    border: 45px solid rgba(79, 108, 255, 0.055);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.sector-panel {
    position: relative;
    z-index: 1;
    animation: sector-in 450ms var(--ease-out) both;
}

.sector-panel[hidden] {
    display: none;
}

.sector-panel-label {
    color: #0d806f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sector-panel h3 {
    max-width: 430px;
    margin: 14px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.sector-panel > p {
    max-width: 440px;
    margin: 18px 0 0;
    color: rgba(16, 18, 26, 0.62);
    font-size: 14px;
}

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

.workflow-list li {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 15px;
    border: 1px solid rgba(16, 18, 26, 0.1);
    border-radius: 12px;
    color: rgba(16, 18, 26, 0.78);
    background: rgba(255, 255, 255, 0.44);
    font-size: 12px;
    font-weight: 700;
}

.workflow-list li::after {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    content: "";
    background: var(--aqua);
    box-shadow: 0 0 0 5px rgba(52, 223, 195, 0.12);
}

.sector-note {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-top: 25px;
    color: rgba(16, 18, 26, 0.5);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sector-note::before {
    width: 17px;
    height: 1px;
    content: "";
    background: currentColor;
}

a.sector-note {
    width: fit-content;
    transition: color 180ms ease, transform 220ms var(--ease-out);
}

a.sector-note:hover {
    color: #0d806f;
    transform: translateX(3px);
}

.approach {
    padding: 160px 0 150px;
    background:
        linear-gradient(180deg, rgba(79, 108, 255, 0.04), transparent 28%),
        var(--night);
}

.approach-head {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: end;
    margin-bottom: 80px;
}

.approach-head .section-intro {
    margin: 0 0 5px;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.timeline::before {
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, var(--blue), var(--aqua), var(--coral));
    opacity: 0.55;
}

.timeline-step {
    position: relative;
    min-height: 315px;
    padding: 66px 28px 30px;
    border-right: 1px solid var(--line);
}

.timeline-step:first-child {
    padding-left: 0;
}

.timeline-step:last-child {
    padding-right: 0;
    border-right: 0;
}

.timeline-dot {
    position: absolute;
    z-index: 1;
    top: 13px;
    left: 28px;
    width: 15px;
    height: 15px;
    border: 4px solid var(--night);
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 1px rgba(79, 108, 255, 0.55), 0 0 22px rgba(79, 108, 255, 0.55);
}

.timeline-step:first-child .timeline-dot {
    left: 0;
}

.timeline-step:nth-child(2) .timeline-dot { background: #697cff; }
.timeline-step:nth-child(3) .timeline-dot { background: var(--aqua); box-shadow: 0 0 0 1px rgba(52, 223, 195, 0.5), 0 0 22px rgba(52, 223, 195, 0.45); }
.timeline-step:nth-child(4) .timeline-dot { background: var(--coral); box-shadow: 0 0 0 1px rgba(255, 131, 95, 0.5), 0 0 22px rgba(255, 131, 95, 0.4); }

.timeline-num {
    color: var(--ink-muted);
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.timeline-step h3 {
    margin: 24px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.timeline-step p {
    margin: 13px 0 0;
    color: var(--ink-muted);
    font-size: 13px;
}

.timeline-output {
    display: inline-flex;
    margin-top: 24px;
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--ink-soft);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.engagement {
    padding: 30px 0 160px;
}

.engagement-frame {
    padding: clamp(34px, 6vw, 76px);
    border: 1px solid var(--line);
    border-radius: 36px;
    background:
        radial-gradient(circle at 100% 0, rgba(79, 108, 255, 0.19), transparent 30%),
        linear-gradient(145deg, #151925, #0b0e16);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.engagement-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;
}

.engagement-top h2 {
    max-width: 720px;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.8rem, 5.7vw, 5.4rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 0.96;
}

.engagement-top p {
    max-width: 330px;
    margin: 0 0 5px;
    color: var(--ink-soft);
    font-size: 14px;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.model-card {
    min-height: 340px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 220ms ease, background 220ms ease, transform 280ms var(--ease-out);
}

.model-card:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.model-card.is-featured {
    color: #07100f;
    border-color: transparent;
    background: var(--aqua);
}

.model-label {
    color: var(--ink-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.is-featured .model-label {
    color: rgba(7, 16, 15, 0.5);
}

.model-card h3 {
    margin: 19px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.model-card > p {
    min-height: 66px;
    margin: 13px 0 0;
    color: var(--ink-muted);
    font-size: 12px;
}

.is-featured > p {
    color: rgba(7, 16, 15, 0.61);
}

.model-card ul {
    display: grid;
    gap: 9px;
    margin: 24px 0 0;
    padding: 0;
    color: var(--ink-soft);
    font-size: 11px;
    list-style: none;
}

.is-featured ul {
    color: rgba(7, 16, 15, 0.75);
}

.model-card li {
    display: flex;
    align-items: start;
    gap: 8px;
}

.model-card li::before {
    margin-top: 7px;
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    border-radius: 50%;
    content: "";
    background: var(--blue);
}

.is-featured li::before {
    background: var(--night);
}

.estimator-section {
    position: relative;
    padding: 126px 0 142px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 4% 18%, rgba(52, 223, 195, 0.11), transparent 27%),
        radial-gradient(circle at 96% 82%, rgba(79, 108, 255, 0.13), transparent 30%),
        #090b12;
    scroll-margin-top: calc(var(--header-height) + 24px);
    overflow: hidden;
}

.estimator-section::before {
    position: absolute;
    top: 55px;
    left: 50%;
    width: min(92vw, 1180px);
    height: 430px;
    border: 1px solid rgba(79, 108, 255, 0.08);
    border-radius: 50%;
    content: "";
    transform: translateX(-50%) rotate(-5deg);
    pointer-events: none;
}

.pricing-calculator {
    position: relative;
    z-index: 1;
    padding: clamp(34px, 5vw, 64px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 34px;
    background:
        radial-gradient(circle at 100% 0, rgba(79, 108, 255, 0.16), transparent 28%),
        linear-gradient(145deg, rgba(21, 25, 37, 0.98), rgba(10, 13, 21, 0.98));
    box-shadow: 0 45px 110px rgba(0, 0, 0, 0.32);
}

.calculator-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
    align-items: end;
    gap: 42px;
}

.calculator-header .section-kicker {
    margin-bottom: 14px;
}

.calculator-header h2 {
    max-width: 710px;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.35rem, 4.4vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 1;
}

.calculator-header-copy > p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
}

.calculator-header-copy > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--aqua);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.calculator-header-copy > span i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 12px rgba(52, 223, 195, 0.6);
}

.calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
    align-items: start;
    gap: clamp(24px, 3vw, 38px);
    margin-top: 44px;
}

.calculator-controls,
.calculator-group {
    min-width: 0;
}

.calculator-group {
    margin: 0;
    padding: 0;
    border: 0;
}

.calculator-group legend {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    padding: 0;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.calculator-group legend span {
    color: var(--aqua);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.calculator-group legend > small {
    margin-left: auto;
    color: var(--ink-muted);
    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

.calculator-choice {
    position: relative;
    display: block;
    cursor: pointer;
}

.calculator-choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.calculator-choice-body {
    position: relative;
    display: flex;
    min-height: 82px;
    flex-direction: column;
    justify-content: center;
    padding: 16px 45px 16px 17px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 180ms ease, background 180ms ease, transform 220ms var(--ease-out), box-shadow 180ms ease;
}

.calculator-choice-body::after {
    position: absolute;
    top: 17px;
    right: 17px;
    width: 13px;
    height: 13px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    content: "";
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.calculator-choice:hover .calculator-choice-body {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.calculator-choice input:checked + .calculator-choice-body {
    border-color: rgba(52, 223, 195, 0.62);
    background: rgba(52, 223, 195, 0.09);
    box-shadow: inset 0 0 0 1px rgba(52, 223, 195, 0.08);
}

.calculator-choice input:checked + .calculator-choice-body::after {
    border-color: var(--aqua);
    background: var(--aqua);
    box-shadow: inset 0 0 0 3px #10151d, 0 0 14px rgba(52, 223, 195, 0.3);
}

.calculator-choice input:focus-visible + .calculator-choice-body {
    outline: 2px solid var(--aqua);
    outline-offset: 3px;
}

.calculator-choice-body strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.calculator-choice-body small {
    margin-top: 6px;
    color: var(--ink-muted);
    font-size: 9px;
    line-height: 1.45;
}

.calculator-choice-project .calculator-choice-body {
    min-height: 76px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.calculator-choice-project .calculator-choice-body small {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink-muted);
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    font-weight: 700;
}

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

.calculator-group-spaced {
    margin-top: 28px;
}

.calculator-options {
    display: grid;
    gap: 8px;
}

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

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

.calculator-choice-extra .calculator-choice-body::after {
    border-radius: 4px;
}

.calculator-choice-extra input:checked + .calculator-choice-body::after {
    border-color: var(--aqua);
    border-radius: 4px;
    background: var(--aqua);
    box-shadow: inset 0 0 0 3px #10151d, 0 0 14px rgba(52, 223, 195, 0.3);
}

.calculator-reset {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    padding: 0;
    border: 0;
    color: var(--ink-muted);
    background: transparent;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease;
}

.calculator-reset:hover {
    color: var(--aqua);
}

.calculator-reset svg {
    width: 14px;
    height: 14px;
}

.calculator-result {
    position: sticky;
    top: calc(var(--header-height) + 22px);
    min-width: 0;
    padding: 28px;
    border-radius: 23px;
    color: #07100f;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.42), transparent 31%),
        var(--aqua);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
}

.calculator-result-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: rgba(7, 16, 15, 0.62);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.calculator-result-kicker i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #07100f;
    box-shadow: 0 0 0 4px rgba(7, 16, 15, 0.08);
}

.calculator-result-block {
    margin-top: 43px;
}

.calculator-result-block > span,
.calculator-result-details dt {
    display: block;
    color: rgba(7, 16, 15, 0.56);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

#calculator-price {
    display: block;
    margin-top: 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 3.1vw, 3rem);
    font-weight: 650;
    letter-spacing: -0.065em;
    line-height: 1.03;
    overflow-wrap: anywhere;
}

.calculator-result-details {
    display: grid;
    gap: 15px;
    margin: 27px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid rgba(7, 16, 15, 0.17);
}

.calculator-result-details div {
    display: grid;
    grid-template-columns: minmax(90px, 0.42fr) minmax(0, 1fr);
    gap: 12px;
}

.calculator-result-details dd {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
    text-align: right;
}

.calculator-result-note {
    margin: 23px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(7, 16, 15, 0.17);
    color: rgba(7, 16, 15, 0.68);
    font-size: 10px;
    line-height: 1.55;
}

.calculator-cta {
    width: 100%;
    margin-top: 23px;
    color: var(--ink);
    background: var(--night);
}

.calculator-cta:hover {
    transform: translateY(-2px);
    background: #141923;
    box-shadow: 0 12px 26px rgba(7, 16, 15, 0.19);
}

.calculator-cta.is-sending {
    opacity: 0.76;
    pointer-events: none;
}

.calculator-cta.is-sending svg {
    animation: spin 900ms linear infinite;
}

.calculator-disclaimer {
    margin: 15px 0 0;
    color: rgba(7, 16, 15, 0.55);
    font-size: 8px;
    line-height: 1.5;
    text-align: center;
}

.contact {
    position: relative;
    padding: 145px 0 55px;
    color: var(--paper-ink);
    background: var(--paper);
    overflow: hidden;
}

.contact::before {
    position: absolute;
    top: -280px;
    left: 40%;
    width: 700px;
    height: 700px;
    border: 100px solid rgba(79, 108, 255, 0.05);
    border-radius: 50%;
    content: "";
}

.contact-main {
    position: relative;
    z-index: 1;
}

.contact-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(16, 18, 26, 0.54);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-kicker i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #159d89;
    box-shadow: 0 0 0 5px rgba(21, 157, 137, 0.12);
}

.contact h2 {
    max-width: 1100px;
    margin: 36px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(4rem, 10vw, 9.7rem);
    font-weight: 600;
    letter-spacing: -0.075em;
    line-height: 0.83;
}

.contact h2 span {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(16, 18, 26, 0.4);
}

.contact-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 58px;
    padding-top: 28px;
    border-top: 1px solid rgba(16, 18, 26, 0.17);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.contact-email::after {
    content: "↗";
    color: var(--blue-deep);
}

.copy-email {
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid rgba(16, 18, 26, 0.18);
    border-radius: 999px;
    color: var(--paper-ink);
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease;
}

.copy-email:hover {
    color: var(--ink);
    background: var(--paper-ink);
}

.contact-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 38px;
}

.location-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: end;
    padding: 25px;
    border: 1px solid rgba(16, 18, 26, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.35);
}

.location-card small {
    display: block;
    color: rgba(16, 18, 26, 0.48);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.location-card strong {
    display: block;
    margin-top: 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    letter-spacing: -0.035em;
}

.location-card a {
    color: rgba(16, 18, 26, 0.64);
    font-size: 12px;
    font-weight: 700;
}

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

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 750ms var(--ease-out), transform 750ms var(--ease-out);
}

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

.snapshot .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.js .reveal-delay-1 { transition-delay: 90ms; }
.js .reveal-delay-2 { transition-delay: 180ms; }
.js .reveal-delay-3 { transition-delay: 270ms; }

@keyframes pulse-ring {
    0% { opacity: 0.8; transform: scale(0.65); }
    70%, 100% { opacity: 0; transform: scale(1.65); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes mode-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes sector-in {
    from { opacity: 0; transform: translateX(14px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes progress-in {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

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

@keyframes chart-breathe {
    from { filter: saturate(0.85); transform: scaleY(0.88); transform-origin: bottom; }
    to { filter: saturate(1.25); transform: scaleY(1); transform-origin: bottom; }
}

@keyframes deploy {
    0%, 12% { left: 0; opacity: 0; }
    22% { opacity: 1; }
    88% { opacity: 1; }
    100% { left: calc(100% - 8px); opacity: 0; }
}

@keyframes draw-line {
    0%, 10% { stroke-dashoffset: 500; }
    55%, 85% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -500; }
}

@media (max-width: 1080px) {
    .hero-layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
        gap: 34px;
    }

    .hero h1 {
        font-size: clamp(4rem, 8.8vw, 6rem);
    }

    .capabilities-header,
    .engagement-top {
        align-items: start;
        flex-direction: column;
    }

    .capabilities-header .section-intro {
        flex-basis: auto;
        margin-top: 0;
    }

    .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: 330px;
        aspect-ratio: auto;
    }

    .cap-card-product {
        grid-column: span 2;
        grid-row: span 2;
    }

    .cap-card-ai,
    .cap-card-cloud,
    .cap-card-mobile,
    .cap-card-web3 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .cap-card-ops {
        grid-column: span 2;
        grid-row: span 1;
    }

    .ai-layout {
        grid-template-columns: 1fr;
    }

    .ai-copy {
        position: static;
    }

    .ai-copy .section-heading {
        max-width: 700px;
    }

    .approach-head {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        padding-inline: 20px;
    }

    .model-card {
        padding: 21px;
    }

    .calculator-header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 17px;
    }

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

    .calculator-projects {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 68px;
    }

    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .hero {
        min-height: auto;
        padding-top: 122px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .hero-copy {
        padding: 0;
    }

    .hero h1 {
        max-width: 680px;
        font-size: clamp(4rem, 14vw, 7rem);
    }

    html[lang="ro"] .hero h1,
    html[lang="es"] .hero h1,
    html[lang="ru"] .hero h1,
    html[lang="uk"] .hero h1 {
        font-size: clamp(3.5rem, 11vw, 5.2rem);
    }

    .hero-stage-wrap {
        width: min(100%, 590px);
        margin-inline: auto;
    }

    .hero-caption {
        right: -10px;
    }

    .signal-strip {
        margin-top: 110px;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-copy {
        grid-column: 1 / -1;
        padding: 0 0 24px;
    }

    .proof-item {
        padding: 19px 16px;
        border-top: 1px solid var(--line);
    }

    .proof-item:nth-child(2),
    .proof-item:nth-child(4) {
        border-left: 0;
    }

    .capabilities,
    .ai-applied,
    .approach {
        padding-block: 110px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: auto;
        aspect-ratio: auto;
    }

    .cap-card,
    .cap-card-product,
    .cap-card-ai,
    .cap-card-cloud,
    .cap-card-mobile,
    .cap-card-web3,
    .cap-card-ops {
        grid-column: 1;
        grid-row: auto;
        min-height: 380px;
    }

    .cap-card-product {
        min-height: 560px;
    }

    .product-visual {
        width: min(45%, 300px);
    }

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

    .sector-tabs {
        flex-direction: row;
        padding: 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(16, 18, 26, 0.11);
        overflow-x: auto;
        scrollbar-width: none;
    }

    .sector-tabs::-webkit-scrollbar {
        display: none;
    }

    .sector-tab {
        min-width: 145px;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        display: none;
    }

    .timeline-step,
    .timeline-step:first-child,
    .timeline-step:last-child {
        min-height: 280px;
        padding: 42px 25px 25px;
        border-top: 1px solid var(--line);
        border-right: 1px solid var(--line);
    }

    .timeline-step:nth-child(2n) {
        border-right: 0;
    }

    .timeline-dot,
    .timeline-step:first-child .timeline-dot {
        top: -8px;
        left: 24px;
    }

    .model-grid {
        grid-template-columns: 1fr;
    }

    .model-card {
        min-height: auto;
    }

    .model-card > p {
        min-height: 0;
    }

    .estimator-section {
        padding-block: 92px 105px;
    }

    .pricing-calculator {
        padding: 38px;
        border-radius: 28px;
    }

    .calculator-layout {
        grid-template-columns: 1fr;
    }

    .calculator-result {
        position: static;
    }

    .contact h2 {
        font-size: clamp(4rem, 14.5vw, 7.4rem);
    }

}

@media (max-width: 560px) {
    .section-heading {
        font-size: clamp(2.7rem, 13.2vw, 4.6rem);
    }

    .hero {
        padding-top: 110px;
    }

    .hero-eyebrow {
        margin-bottom: 21px;
        font-size: 9px;
    }

    .hero h1 {
        font-size: clamp(3.75rem, 18vw, 5.4rem);
        line-height: 0.9;
    }

    .hero-lede {
        margin-top: 26px;
    }

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

    .button {
        width: 100%;
    }

    .hero-footnote {
        display: grid;
        gap: 9px;
    }

    .hero-stage {
        min-height: 580px;
        border-radius: 24px;
    }

    .hero-caption {
        right: 8px;
        padding: 8px 4px;
        border-radius: 999px;
        background: rgba(7, 8, 13, 0.72);
    }

    .stage-core {
        min-height: 285px;
        padding-inline: 18px;
    }

    .stage-ring {
        right: -25px;
    }

    .mode-panel h2 {
        max-width: 280px;
        font-size: 2.55rem;
    }

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

    .stage-metric {
        display: grid;
        min-height: 65px;
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .stage-metric strong {
        grid-column: 1;
    }

    .stage-progress {
        grid-column: 2;
        grid-row: 1 / span 2;
        width: 58px;
    }

    .signal-strip {
        margin-top: 80px;
    }

    .proof {
        padding-top: 18px;
    }

    .proof-item {
        padding-inline: 12px;
    }

    .capabilities-header {
        margin-bottom: 44px;
    }

    .bento-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .cap-card,
    .cap-card-product,
    .cap-card-ai,
    .cap-card-cloud,
    .cap-card-mobile,
    .cap-card-web3,
    .cap-card-ops {
        grid-column: auto;
        grid-row: auto;
        min-height: 360px;
        padding: 24px;
    }

    .cap-card-product {
        min-height: 490px;
    }

    .product-visual {
        top: 55px;
        right: -15px;
        width: 78%;
        min-width: 250px;
        height: 228px;
    }

    .deployment-map,
    .ops-pulse {
        width: 60%;
    }

    .cap-copy h3 {
        font-size: 2.55rem;
    }

    .ai-board {
        border-radius: 21px;
    }

    .sector-content {
        padding: 30px 22px 28px;
    }

    .sector-panel h3 {
        font-size: 2.65rem;
    }

    .workflow-list li {
        min-height: 54px;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .timeline-step,
    .timeline-step:first-child,
    .timeline-step:last-child,
    .timeline-step:nth-child(2n) {
        min-height: 245px;
        padding: 38px 12px 24px;
        border-right: 0;
    }

    .timeline-dot,
    .timeline-step:first-child .timeline-dot {
        left: 12px;
    }

    .engagement {
        padding-bottom: 110px;
    }

    .engagement-frame {
        margin-inline: -3px;
        padding: 26px;
        border-radius: 25px;
    }

    .estimator-section {
        padding-block: 72px 84px;
    }

    .pricing-calculator {
        padding: 24px;
        border-radius: 24px;
    }

    .calculator-header h2 {
        font-size: clamp(2.25rem, 11vw, 3.45rem);
    }

    .calculator-projects,
    .calculator-options-inline,
    .calculator-group-row,
    .calculator-extras {
        grid-template-columns: 1fr;
    }

    .calculator-group-row {
        gap: 28px;
    }

    .calculator-result {
        padding: 24px;
    }

    #calculator-price {
        font-size: clamp(2rem, 11vw, 2.85rem);
    }

    .calculator-result-details div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .calculator-result-details dd {
        text-align: left;
    }

    .contact {
        padding-top: 105px;
    }

    .contact h2 {
        font-size: clamp(3.55rem, 17.3vw, 5.5rem);
    }

    .contact-actions {
        align-items: start;
        flex-direction: column;
    }

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

    .location-card {
        grid-template-columns: 1fr;
    }

}

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

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

    .hero-stage {
        transform: none !important;
    }
}
