/* ==========================================================================
   LBSA — Lietuvos verslo sistemų agentūra
   Landing page stylesheet
   Aesthetic: computational / "data instrument" — near-black ink, signal-lime
   accent, characterful grotesque display, technical mono labels.
   Stack: plain CSS, no framework. Animation driven by GSAP + Three.js (JS).
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
    /* surfaces */
    --bg:          #07090A;
    --bg-2:        #0B0E0F;
    --surface:     #101413;
    --surface-2:   #151B19;
    --line:        rgba(220, 255, 200, 0.09);
    --line-strong: rgba(220, 255, 200, 0.18);

    /* ink */
    --text:        #EAEFE6;
    --text-dim:    #99A39A;
    --text-faint:  #5A625A;

    /* signal */
    --accent:      #C9F24D;   /* signal lime */
    --accent-deep: #A6D52B;
    --accent-2:    #57E3BE;   /* mint */
    --accent-glow: rgba(201, 242, 77, 0.16);

    /* type */
    --font-display: "Bricolage Grotesque", "Times New Roman", serif;
    --font-body:    "Hanken Grotesk", system-ui, sans-serif;
    --font-mono:    "JetBrains Mono", ui-monospace, monospace;

    /* metrics */
    --maxw:   1320px;
    --gutter: clamp(1.25rem, 4vw, 3.5rem);
    --radius: 16px;
    --radius-sm: 10px;

    /* motion */
    --ease:     cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--accent); color: #0A0C06; }

/* hide native cursor only when our custom cursor is active (fine pointer) */
@media (pointer: fine) {
    .cursor-on, .cursor-on a, .cursor-on button { cursor: none; }
}

/* ---------- 3. Atmosphere (grain + glow) --------------------------------- */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 4. Layout helpers -------------------------------------------- */
.shell {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    position: relative;
    padding-block: clamp(5rem, 11vw, 9.5rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--accent);
    opacity: 0.7;
}

.section-head { max-width: 46rem; }

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.02em;
    font-size: clamp(2.1rem, 5.2vw, 3.9rem);
    margin-top: 1.4rem;
}
.section-title em { font-style: normal; color: var(--accent); }

.lede {
    color: var(--text-dim);
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.7;
    max-width: 38rem;
    margin-top: 1.5rem;
}

/* JS-reveal initial states (only when JS active; cleared on failure/reduced) */
.js [data-reveal] { opacity: 0; will-change: transform, opacity; }
.no-anim [data-reveal],
.reduced [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ---------- 5. Custom cursor --------------------------------------------- */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    z-index: 9999;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 7px; height: 7px;
    background: #fff;
}
.cursor-ring {
    width: 38px; height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    transition: width 0.25s var(--ease), height 0.25s var(--ease),
                border-color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.cursor-ring.is-hover {
    width: 64px; height: 64px;
    border-color: var(--accent);
    background: var(--accent-glow);
}
.cursor-dot.is-hover { opacity: 0; }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- 6. Loader ---------------------------------------------------- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;                /* shown only when .js */
    align-items: flex-end;
    justify-content: space-between;
    padding: var(--gutter);
    background: var(--bg);
    animation: loaderFail 0.6s ease 4.2s forwards;   /* safety net if JS dies */
}
.js .loader { display: flex; }
.loader__mark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 13vw, 9rem);
    letter-spacing: -0.04em;
    line-height: 0.9;
    color: var(--text);
}
.loader__mark span { color: var(--accent); }
.loader__count {
    font-family: var(--font-mono);
    font-size: clamp(3rem, 13vw, 9rem);
    font-weight: 400;
    color: var(--text-faint);
    line-height: 0.9;
}
.loader__bar {
    position: absolute;
    left: var(--gutter); right: var(--gutter);
    bottom: calc(var(--gutter) - 1px);
    height: 1px;
    background: var(--line);
    transform: scaleX(0);
    transform-origin: left;
}
.loader__bar i { display: block; height: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; }
@keyframes loaderFail { to { opacity: 0; visibility: hidden; } }

/* ---------- 7. Header / nav ---------------------------------------------- */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 900;
    padding-block: 1.35rem;
    transition: padding 0.4s var(--ease), background 0.4s var(--ease),
                backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
.header.is-stuck {
    padding-block: 0.85rem;
    background: rgba(7, 9, 10, 0.72);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border-bottom-color: var(--line);
}
.header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 1.4rem;
}
.brand__glyph {
    width: 34px; height: 34px;
    flex: none;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #0A0C06;
    font-size: 0.95rem;
    overflow: hidden;
}
.brand__glyph svg { width: 22px; height: 22px; }
.brand small {
    display: block;
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-faint);
}
.nav {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}
.nav__links {
    display: flex;
    gap: 2rem;
    font-size: 0.92rem;
    color: var(--text-dim);
}
.nav__links a {
    position: relative;
    transition: color 0.25s var(--ease);
}
.nav__links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -5px;
    width: 100%; height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* buttons */
.btn {
    --pad-y: 0.92rem;
    --pad-x: 1.5rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: var(--pad-y) var(--pad-x);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.94rem;
    letter-spacing: 0.01em;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn svg { width: 17px; height: 17px; }
.btn--solid {
    background: var(--accent);
    color: #0A0C06;
}
.btn--solid::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: #fff;
    transform: translateY(101%);
    transition: transform 0.45s var(--ease);
}
.btn--solid:hover::before { transform: translateY(0); }
.btn--ghost {
    border: 1px solid var(--line-strong);
    color: var(--text);
}
.btn--ghost::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: var(--accent);
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.45s var(--ease);
}
.btn--ghost:hover { color: #0A0C06; border-color: var(--accent); }
.btn--ghost:hover::before { transform: scale(1); }
.btn--lg { --pad-y: 1.15rem; --pad-x: 2rem; font-size: 1rem; }

.nav__toggle { display: none; }

/* ---------- 8. Hero ------------------------------------------------------ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    overflow: hidden;
}
.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__canvas canvas { width: 100% !important; height: 100% !important; }
.hero::after {   /* depth vignette + bottom fade into page */
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(120% 80% at 70% 30%, transparent 40%, rgba(7,9,10,0.55) 100%),
        linear-gradient(to bottom, transparent 55%, var(--bg) 99%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero__eyebrow { margin-bottom: 1.8rem; }
.hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.7rem, 8.2vw, 6.6rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    max-width: 16ch;
}
.hero__title .ln { display: block; overflow: hidden; }
.hero__title .ln > span { display: block; }   /* mask-reveal target */
.hero__title em { font-style: normal; color: var(--accent); }
.hero__title .stroke {
    color: transparent;
    -webkit-text-stroke: 1.2px var(--text-dim);
}
.hero__sub {
    margin-top: 2rem;
    max-width: 34rem;
    color: var(--text-dim);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.65;
}
.hero__actions {
    margin-top: 2.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.hero__meta {
    position: absolute;
    z-index: 2;
    left: var(--gutter);
    right: var(--gutter);
    bottom: 2.2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-faint);
    max-width: var(--maxw);
    margin-inline: auto;
}
.scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}
.scroll-cue i {
    width: 26px; height: 40px;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    position: relative;
    flex: none;
}
.scroll-cue i::after {
    content: "";
    position: absolute;
    top: 7px; left: 50%;
    width: 3px; height: 7px;
    margin-left: -1.5px;
    border-radius: 2px;
    background: var(--accent);
    animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
    0% { opacity: 0; transform: translateY(0); }
    35% { opacity: 1; }
    70% { opacity: 0; transform: translateY(13px); }
    100% { opacity: 0; }
}

/* ---------- 9. Marquee --------------------------------------------------- */
.marquee {
    position: relative;
    z-index: 3;
    border-block: 1px solid var(--line);
    background: var(--bg-2);
    padding-block: 1.15rem;
    overflow: hidden;
    white-space: nowrap;
}
.marquee__track {
    display: inline-flex;
    gap: 3rem;
    will-change: transform;
}
.marquee__track span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.1rem, 2.4vw, 1.6rem);
    letter-spacing: -0.01em;
    color: var(--text-dim);
    display: inline-flex;
    align-items: center;
    gap: 3rem;
}
.marquee__track span::after {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex: none;
}

/* ---------- 10. Stats ---------------------------------------------------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.stat {
    background: var(--bg);
    padding: clamp(1.6rem, 3vw, 2.6rem);
}
.stat__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
    letter-spacing: -0.03em;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.1em;
}
.stat__num sup,
.stat__num .suffix {
    font-size: 0.42em;
    color: var(--accent);
    font-family: var(--font-mono);
    letter-spacing: 0;
    align-self: flex-start;
    margin-top: 0.35em;
}
.stat__label {
    margin-top: 0.9rem;
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.4;
}

/* ---------- 11. Services ------------------------------------------------- */
.services__grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.card {
    position: relative;
    padding: clamp(1.8rem, 3vw, 2.8rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    overflow: hidden;
    transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.card::before {   /* accent wash that follows hover via JS custom props */
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%),
                var(--accent-glow), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }
.card__no {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--text-faint);
}
.card__icon {
    width: 52px; height: 52px;
    margin: 1.5rem 0 1.6rem;
    border-radius: 13px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    color: var(--accent);
    background: rgba(201, 242, 77, 0.05);
}
.card__icon svg { width: 26px; height: 26px; }
.card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.card__text {
    margin-top: 0.9rem;
    color: var(--text-dim);
    font-size: 0.98rem;
    line-height: 1.65;
}
.card__tags {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    padding: 0.35rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 100px;
}

/* ---------- 12. Showcase (dashboard mock) -------------------------------- */
.showcase {
    background:
        radial-gradient(80% 120% at 100% 0%, rgba(87, 227, 190, 0.06), transparent 55%),
        var(--bg-2);
    border-block: 1px solid var(--line);
}
.showcase__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}
.showcase__list { margin-top: 2.2rem; display: grid; gap: 1.3rem; }
.feat {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feat svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 2px; }
.feat b { font-weight: 600; display: block; }
.feat span { color: var(--text-dim); font-size: 0.95rem; }

/* the mock device */
.dash {
    position: relative;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: linear-gradient(180deg, #0E1413, #090C0B);
    padding: 1.2rem;
    box-shadow:
        0 40px 80px -40px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 0 80px -20px rgba(201, 242, 77, 0.12);
}
.dash__bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px solid var(--line);
}
.dash__dots { display: flex; gap: 0.4rem; }
.dash__dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.dash__live {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.dash__live i {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 0 0 rgba(87, 227, 190, 0.55);
    animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(87, 227, 190, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(87, 227, 190, 0); }
    100% { box-shadow: 0 0 0 0 rgba(87, 227, 190, 0); }
}
.dash__body {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0.9rem;
}
.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1.1rem;
}
.panel__label {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-faint);
}
.panel--kpi { grid-column: 1 / 2; }
.kpi__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: -0.03em;
    margin-top: 0.4rem;
    line-height: 1;
}
.kpi__delta {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: var(--accent);
    font-family: var(--font-mono);
}
.panel--ring {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ring-wrap { display: grid; place-items: center; padding: 0.6rem 0; }
.ring { transform: rotate(-90deg); }
.ring__bg { fill: none; stroke: var(--line); stroke-width: 9; }
.ring__fg {
    fill: none;
    stroke: var(--accent);
    stroke-width: 9;
    stroke-linecap: round;
}
.ring__txt {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
}
.ring-center { position: relative; display: grid; place-items: center; }
.panel--chart { grid-column: 1 / 2; }
.bars {
    margin-top: 0.9rem;
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 92px;
}
.bars i {
    flex: 1;
    height: var(--h, 30%);
    background: linear-gradient(to top, var(--accent-deep), var(--accent));
    border-radius: 4px 4px 0 0;
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0.9;
}
.spark { margin-top: 0.8rem; }
.spark path.line {
    fill: none;
    stroke: var(--accent-2);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.spark path.area { fill: url(#sparkFill); opacity: 0.5; }

/* ---------- 13. Process -------------------------------------------------- */
.process__grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.process__line {
    position: absolute;
    top: 0; left: 0;
    height: 2px;
    width: 100%;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    z-index: 2;
}
.step {
    background: var(--bg);
    padding: clamp(1.6rem, 2.6vw, 2.4rem);
    min-height: 14rem;
    display: flex;
    flex-direction: column;
    transition: background 0.4s var(--ease);
}
.step:hover { background: var(--surface); }
.step__no {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}
.step__title {
    margin-top: auto;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    letter-spacing: -0.02em;
}
.step__text {
    margin-top: 0.7rem;
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* ---------- 14. CTA ------------------------------------------------------ */
.cta { position: relative; overflow: hidden; }
.cta__panel {
    position: relative;
    border-radius: clamp(20px, 3vw, 32px);
    border: 1px solid var(--line-strong);
    padding: clamp(2.5rem, 7vw, 6rem);
    text-align: center;
    background:
        radial-gradient(90% 140% at 50% -20%, rgba(201, 242, 77, 0.14), transparent 60%),
        linear-gradient(180deg, var(--surface), var(--bg-2));
    overflow: hidden;
}
.cta__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000, transparent 75%);
    pointer-events: none;
    opacity: 0.6;
}
.cta__inner { position: relative; z-index: 1; }
.cta__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.2rem, 6vw, 4.6rem);
    line-height: 1;
    letter-spacing: -0.035em;
    max-width: 18ch;
    margin: 1.5rem auto 0;
}
.cta__title em { font-style: normal; color: var(--accent); }
.cta__sub {
    margin: 1.5rem auto 0;
    max-width: 36rem;
    color: var(--text-dim);
    font-size: 1.1rem;
}
.cta__actions {
    margin-top: 2.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ---------- 15. Footer --------------------------------------------------- */
.footer {
    border-top: 1px solid var(--line);
    padding-block: clamp(3rem, 6vw, 5rem) 2.5rem;
}
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
}
.footer__brand .brand { font-size: 1.6rem; }
.footer__brand p {
    margin-top: 1.2rem;
    color: var(--text-dim);
    max-width: 26rem;
    font-size: 0.96rem;
    line-height: 1.6;
}
.footer__col h4 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-faint);
    margin-bottom: 1.2rem;
    font-weight: 500;
}
.footer__col a, .footer__col li {
    display: block;
    color: var(--text-dim);
    padding: 0.35rem 0;
    transition: color 0.25s var(--ease);
    font-size: 0.96rem;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
    margin-top: clamp(3rem, 6vw, 5rem);
    padding-top: 1.8rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    color: var(--text-faint);
}

/* ---------- 16. Responsive ----------------------------------------------- */
@media (max-width: 980px) {
    .showcase__grid { grid-template-columns: 1fr; }
    .process__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
    .nav__links, .nav .btn { display: none; }
    .nav__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px; height: 44px;
        border: 1px solid var(--line-strong);
        border-radius: 11px;
        color: var(--text);
    }
    .nav__toggle svg { width: 22px; height: 22px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .services__grid { grid-template-columns: 1fr; }
    .dash__body { grid-template-columns: 1fr; }
    .panel--ring { grid-column: 1 / 2; grid-row: auto; flex-direction: row; align-items: center; }
    .hero__meta { font-size: 0.62rem; }
    .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .stats { grid-template-columns: 1fr; }
    .process__grid { grid-template-columns: 1fr; }
}

/* ---------- 17. Reduced motion ------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .loader { display: none !important; }
    .bars i { transform: none; }
}
