/* ---- SECTIONS ---- */
.section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
}

.section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ff6b4a;
    margin-bottom: 12px;
}

.section__title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.05rem;
    color: #a8a8b8;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- FEATURES GRID ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: #13131b;
    border: 1px solid #22222e;
    border-radius: 20px;
    padding: 32px 28px;
    transition: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f04e2f, transparent);
    opacity: 0;
    transition: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    border-color: rgba(240, 78, 47, 0.4);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(240, 78, 47, 0.28);
    transform: translateY(-4px);
}

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

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(240, 78, 47, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card__icon {
    background: rgba(240, 78, 47, 0.2);
    box-shadow: 0 0 20px rgba(240, 78, 47, 0.28);
}

.feature-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: #ff6b4a;
    fill: none;
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #6b6b7d;
    line-height: 1.6;
}

/* ---- CODE SHOWCASE ---- */
.code-showcase {
    background: #13131b;
    border: 1px solid #22222e;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.4);
    margin-top: 40px;
}

.code-showcase__tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #22222e;
    overflow-x: auto;
}

.code-showcase__tab {
    padding: 14px 22px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #6b6b7d;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    letter-spacing: -0.01em;
}

.code-showcase__tab:hover {
    color: #f0f0f5;
}

.code-showcase__tab--active {
    color: #ff6b4a;
    border-bottom-color: #f04e2f;
    background: rgba(240, 78, 47, 0.04);
}

.code-showcase__body {
    padding: 28px;
    overflow-x: auto;
}

.code-showcase__body pre {
    margin: 0;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #a8a8b8;
    white-space: pre;
}

.code-showcase__body .kw {
    color: #c792ea;
}

.code-showcase__body .str {
    color: #a3d98c;
}

.code-showcase__body .fn {
    color: #82b1ff;
}

.code-showcase__body .cm {
    color: #546e7a;
    font-style: italic;
}

.code-showcase__body .url {
    color: #f78c6c;
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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


.nav {
    position: sticky;
    top: 16px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 12px 28px;
    background: #212525;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 100px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.nav-brand img {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.15s;
}

.nav-links a:hover {
    color: var(--brand-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 8px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-outline {
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--ink);
}

.btn-outline:hover {
    border-color: var(--ink);
    background: var(--surface-soft);
}

.nav-actions .btn-outline {
    border-color: transparent;
}

.nav-actions .btn-outline:hover {
    border-color: transparent;
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.btn-primary {
    border: 1px solid transparent;
    background: var(--brand-dark);
    color: #101010;
    border-radius: 14px;
}

.btn-primary:hover {
    background: #ff922b;
}

.btn-lg {
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 10px;
}

.btn-primary.btn-lg {
    border-radius: 16px;
}


.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 768px) {
    .nav {
        margin: 8px 16px 0;
        max-width: none;
        padding: 12px 16px;
        border-radius: 20px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links,
    .nav-actions {
        display: none;
        width: 100%;
    }

    .nav--open .nav-links {
        display: flex;
        order: 3;
        justify-content: center;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .nav--open .nav-actions {
        display: flex;
        order: 2;
        justify-content: center;
    }

    .nav-links a {
        font-size: 14px;
    }

    .nav--open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav--open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav--open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ── RESET ─────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}


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

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

button {
    cursor: pointer;
    border: none;
    background: transparent;
    font: inherit
}

/* ── DESIGN TOKENS ──────────────────────────── */
:root {
    --bg: #07070F;
    --s1: #0D0D1A;
    --s2: #111120;
    --s3: #181828;
    --border: #1C1C30;
    --border-b: #262640;
    --v: #7B6EE8;
    /* violet accent */
    --v-soft: rgba(123, 110, 232, .14);
    --v-glow: rgba(123, 110, 232, .28);
    --green: #3DDB82;
    --amber: #F5A623;
    --t1: #E6E6F5;
    --t2: #8E8EAA;
    --t3: #4A4A6A;
    --ff-head: 'Space Grotesk', sans-serif;
    --ff-body: 'Inter', sans-serif;
    --ff-mono: 'JetBrains Mono', monospace;
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --surface: #171717;
    --surface-soft: #222222;
    --ink: #f4f4f4;
    --muted: #b7b7b7;
    --border-strong: #555555;
    --brand-dark: #ff7a00;
    --brand-soft: rgba(255, 122, 0, 0.14);
}

/* ─── LANGUAGES ───────────────────────────── */
.lang-sec {
    overflow: hidden;
    padding: 72px 0;
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
    background: var(--bg-s);
}

.lang-hd {
    text-align: center;
    padding: 0 40px;
    margin-bottom: 44px
}

.lang-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden
}

.marquee {
    display: flex;
    gap: 10px;
    animation: mq 32s linear infinite;
    width: max-content
}

.marquee.rev {
    animation-direction: reverse
}

@keyframes mq {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.lang-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 15px;
    background: var(--bg-c);
    border: 1px solid var(--bd);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--t2);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── BASE ───────────────────────────────────── */
html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--t1);
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

/* subtle dot grid on entire page */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(123, 110, 232, .07) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* page content sits above the grid */
body>* {
    position: relative;
    z-index: 1
}

/* ── TYPE ───────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: var(--ff-head);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.02em
}

code,
pre,
kbd {
    font-family: var(--ff-mono)
}

/* ── LAYOUT ─────────────────────────────────── */
.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px
}

section {
    padding: 100px 0
}

/* ── BUTTONS ────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s var(--ease-out);
    font-family: var(--ff-body);
    white-space: nowrap;
}

.btn-p {
    background: var(--v);
    color: #fff
}

.btn-p:hover {
    background: #9180F5;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px var(--v-glow)
}

.btn-g {
    background: transparent;
    color: var(--t2);
    border: 1px solid var(--border-b)
}

.btn-g:hover {
    border-color: var(--v);
    color: var(--t1)
}

.btn-lg {
    padding: 13px 28px;
    font-size: .95rem
}

/* ── SECTION LABELS ─────────────────────────── */
.eyebrow {
    display: block;
    font-family: var(--ff-mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--v);
    margin-bottom: 12px;
}

.sec-head {
    text-align: center;
    margin-bottom: 60px
}

.sec-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 14px
}

.sec-head p {
    color: var(--t2);
    max-width: 540px;
    margin: 0 auto;
    font-size: 1.05rem
}

/* ── HERO ───────────────────────────────────── */
#hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Ambient orbs */
#hero::after {
    content: '';
    position: absolute;
    top: -200px;
    left: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(123, 110, 232, .1) 0%, transparent 65%);
    pointer-events: none;
}

.hero-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: var(--v-soft);
    border: 1px solid rgba(123, 110, 232, .3);
    border-radius: 100px;
    font-family: var(--ff-mono);
    font-size: .72rem;
    color: var(--v);
    margin-bottom: 22px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--v);
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    margin-bottom: 18px
}

.grad {
    background: linear-gradient(130deg, #7B6EE8 0%, #A78BFA 55%, #C4B5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 32px
}

.hero-acts {
    display: flex;
    gap: 14px;
    align-items: center
}

.hero-note {
    margin-top: 14px;
    font-size: .78rem;
    color: var(--t3)
}

.hero-note em {
    color: var(--green);
    font-style: normal
}

/* ── TERMINAL ───────────────────────────────── */
.terminal {
    background: var(--s1);
    border: 1px solid var(--border-b);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .04);
}

.t-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 16px;
    background: var(--s2);
    border-bottom: 1px solid var(--border);
}

.t-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%
}

.t-dot.r {
    background: #FF5F56
}

.t-dot.y {
    background: #FFBD2E
}

.t-dot.g {
    background: #27C93F
}

.t-label {
    margin-left: 8px;
    font-family: var(--ff-mono);
    font-size: .7rem;
    color: var(--t3);
}

.t-body {
    padding: 18px 20px
}

#wave-canvas {
    width: 100%;
    height: 64px;
    border-radius: 6px;
    background: rgba(123, 110, 232, .04);
    margin-bottom: 18px;
    display: block;
}

.t-out {
    font-family: var(--ff-mono);
    font-size: .78rem;
    line-height: 1.75;
    min-height: 180px;
}

.t-line {
    display: block
}

/* syntax colours */
.cd {
    color: var(--t3)
}

.ck {
    color: #F9A8D4
}

.cv {
    color: #86EFAC
}

.cn {
    color: #FCD34D
}

.cp {
    color: var(--t2)
}

.cu {
    color: #60A5FA
}

.cs {
    color: var(--green)
}

/* status badges */
.sbadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: .7rem;
    font-family: var(--ff-mono);
    margin: 6px 0;
}

.sp {
    background: rgba(245, 166, 35, .1);
    border: 1px solid rgba(245, 166, 35, .3);
    color: var(--amber)
}

.sc {
    background: rgba(61, 219, 130, .1);
    border: 1px solid rgba(61, 219, 130, .3);
    color: var(--green)
}

.spin {
    display: inline-block;
    animation: spin 1s linear infinite
}

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

.cursor-blink {
    display: inline-block;
    width: 7px;
    height: .85em;
    background: var(--v);
    vertical-align: middle;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* ── STATS STRIP ────────────────────────────── */
#stats {
    padding: 0
}

.stats-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--s1)
}

.stats-g {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat {
    padding: 38px 32px;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.stat:last-child {
    border-right: none
}

.stat::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--v), rgba(123, 110, 232, 0));
    transition: width 1.2s var(--ease-out);
}

.stat.lit::after {
    width: 100%
}

.snum {
    font-family: var(--ff-head);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.snum .a {
    color: var(--v)
}

.slabel {
    font-size: .82rem;
    color: var(--t3)
}

.ssub {
    font-size: .72rem;
    color: var(--t3);
    margin-top: 3px
}


/* ── PRICING CALCULATOR ─────────────────────── */
#pricing {
    background: var(--s1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.price-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.price-l h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 14px
}

.price-l>p {
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 28px
}

.tier-table {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden
}

.tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: var(--s2);
    border-bottom: 1px solid var(--border);
    font-size: .85rem;
}

.tier-row:last-child {
    border-bottom: none
}

.tier-row .tp {
    font-family: var(--ff-mono);
    color: var(--v)
}

.tier-note {
    margin-top: 14px;
    font-size: .78rem;
    color: var(--t3);
    line-height: 1.6
}

.calc-box {
    background: var(--bg);
    border: 1px solid var(--border-b);
    border-radius: 14px;
    padding: 30px
}

.calc-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: .82rem;
    color: var(--t3);
}

.calc-row-top span.val {
    font-family: var(--ff-mono);
    font-size: .88rem;
    color: var(--v)
}

input[type=range] {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border-b);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    margin-bottom: 28px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--v);
    box-shadow: 0 0 0 4px rgba(123, 110, 232, .2);
    cursor: pointer;
}

.calc-result {
    background: var(--s1);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
}

.big-price {
    font-family: var(--ff-head);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.big-price .a {
    color: var(--v)
}

.price-sub {
    font-size: .8rem;
    color: var(--t3);
    margin-bottom: 20px
}

.breakdown {
    display: flex;
    flex-direction: column
}

.brow {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    padding: 8px 0;
    border-top: 1px solid var(--border);
}

.brow:first-child {
    border-top: none
}

.brow span {
    color: var(--t3)
}

.brow strong {
    color: var(--t2)
}

/* ── LATENCY ────────────────────────────────── */
#latency {}

.lat-g {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lat-row {
    background: var(--s1);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 24px;
    display: grid;
    grid-template-columns: 200px 1fr 100px;
    gap: 20px;
    align-items: center;
}

.lat-label {
    font-size: .87rem;
    color: var(--t2)
}

.bar-wrap {
    height: 6px;
    background: var(--border-b);
    border-radius: 4px;
    overflow: hidden
}

.bar {
    height: 100%;
    border-radius: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--v), var(--green));
    transition: width 1.2s var(--ease-out);
}

.lat-time {
    font-family: var(--ff-mono);
    font-size: .8rem;
    color: var(--green);
    text-align: right
}


/* ── LIMITS ─────────────────────────────────── */
#limits {}

.limits-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.limit-card {
    background: var(--s1);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden
}

.limit-card h4 {
    font-family: var(--ff-mono);
    font-size: .8rem;
    font-weight: 500;
    padding: 16px 20px;
    background: var(--s2);
    border-bottom: 1px solid var(--border);
    color: var(--t2)
}

.limit-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 20px;
    border-bottom: 1px solid var(--border);
    font-size: .82rem
}

.limit-row:last-child {
    border-bottom: none
}

.limit-row span {
    color: var(--t3)
}

.limit-row strong {
    font-family: var(--ff-mono);
    color: var(--t2);
    font-weight: 500
}

/* ── CTA ────────────────────────────────────── */
#cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

#cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(123, 110, 232, .1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-in {
    position: relative
}

.cta-tag {
    display: inline-block;
    margin-bottom: 24px;
    font-family: var(--ff-mono);
    font-size: .78rem;
    color: var(--v);
}

#cta h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 16px
}

#cta>div>p {
    font-size: 1.05rem;
    color: var(--t2);
    margin-bottom: 36px
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center
}

.cta-note {
    margin-top: 18px;
    font-size: .78rem;
    color: var(--t3)
}

/* ── REVEAL ANIMATION ───────────────────────── */
.rev {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s var(--ease-out), transform .6s var(--ease-out)
}

.rev.in {
    opacity: 1;
    transform: translateY(0)
}

/* ── RESPONSIVE ─────────────────────────────── */
@media(max-width:900px) {

    .hero-in,
    .code-in,
    .price-in,
    .models-g,
    .limits-g {
        grid-template-columns: 1fr
    }

    .stats-g,
    .flow-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .feats-g,
    .uc-g,
    .trust-g {
        grid-template-columns: 1fr 1fr
    }

    .lat-row {
        grid-template-columns: 1fr;
        gap: 8px
    }

    section {
        padding: 70px 0
    }
}

@media(max-width:600px) {

    .feats-g,
    .uc-g,
    .trust-g,
    .stats-g,
    .flow-grid {
        grid-template-columns: 1fr
    }

    .cta-btns,
    .hero-acts {
        flex-direction: column;
        align-items: flex-start
    }


    .hero-in {
        gap: 40px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}