/* ==========================================================================
   IGNITE42 — Sparking Innovation
   Design System / Global Stylesheet
   Enterprise Applications · AI Consulting · IP Products
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Surfaces — deep space navy derived from the flame mark */
    --navy-950: #03060d;
    --navy-900: #05080f;
    --navy-850: #070b16;
    --navy-800: #0a1020;
    --navy-700: #0e162a;
    --navy-600: #142138;
    --ink: #0b2447;

    /* Brand accents */
    --cyan: #35e4f2;
    --teal: #00c8d7;
    --aqua: #00a8cc;
    --blue: #0077cc;
    --lime: #b6f200;
    --lime-soft: #d4ff5a;

    /* Type */
    --text: #e9effb;
    --text-dim: #a3b4d0;
    --text-mute: #6b7f9e;

    /* Lines & glass */
    --line: rgba(120, 165, 225, 0.14);
    --line-strong: rgba(120, 165, 225, 0.30);
    --glass: rgba(255, 255, 255, 0.035);
    --glass-2: rgba(255, 255, 255, 0.065);

    /* Gradients */
    --grad-brand: linear-gradient(100deg, #35e4f2 0%, #00a8cc 40%, #b6f200 100%);
    --grad-brand-soft: linear-gradient(100deg, rgba(53, 228, 242, .16), rgba(182, 242, 0, .16));
    --grad-flame: linear-gradient(180deg, #0b2447 0%, #00a8cc 50%, #b6f200 100%);
    --grad-hairline: linear-gradient(90deg, transparent, var(--teal), var(--lime), transparent);
    --grad-surface: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015));

    /* Glow */
    --glow-teal: 0 0 46px rgba(0, 200, 215, .30);
    --glow-lime: 0 0 46px rgba(182, 242, 0, .24);
    --shadow-lg: 0 30px 70px -20px rgba(0, 0, 0, .8);

    /* Geometry */
    --r-xs: 8px;
    --r-sm: 12px;
    --r: 18px;
    --r-lg: 26px;
    --r-xl: 34px;
    --container: 1240px;
    --nav-h: 84px;

    /* Motion */
    --ease: cubic-bezier(.22, 1, .36, 1);
    --ease-io: cubic-bezier(.65, 0, .35, 1);
    --spring: cubic-bezier(.34, 1.56, .64, 1);

    /* Fonts */
    --f-display: 'Space Grotesk', 'Poppins', system-ui, sans-serif;
    --f-body: 'Inter', system-ui, -apple-system, sans-serif;
    --f-mono: 'JetBrains Mono', 'Space Mono', ui-monospace, monospace;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 20px);
    -webkit-text-size-adjust: 100%;
    /* `clip` (not `hidden`) contains the horizontal travel of the reveal
       animations without turning the root into a scroll container */
    overflow-x: clip;
}

body {
    font-family: var(--f-body);
    background: var(--navy-900);
    color: var(--text);
    line-height: 1.65;
    font-size: 16.5px;
    font-weight: 400;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.is-locked {
    overflow: hidden;
}

/* Ambient page backdrop: mesh grid + drifting aurora */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(rgba(120, 165, 225, .045) 1px, transparent 1px) 0 0 / 64px 64px,
        linear-gradient(90deg, rgba(120, 165, 225, .045) 1px, transparent 1px) 0 0 / 64px 64px,
        radial-gradient(ellipse 80% 55% at 50% -10%, rgba(0, 120, 160, .30), transparent 70%),
        var(--navy-900);
    -webkit-mask-image: radial-gradient(ellipse 120% 90% at 50% 0%, #000 30%, rgba(0, 0, 0, .35) 100%);
    mask-image: radial-gradient(ellipse 120% 90% at 50% 0%, #000 30%, rgba(0, 0, 0, .35) 100%);
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: -20%;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle 480px at 12% 18%, rgba(0, 168, 204, .16), transparent 60%),
        radial-gradient(circle 420px at 88% 42%, rgba(182, 242, 0, .09), transparent 60%),
        radial-gradient(circle 520px at 45% 88%, rgba(0, 119, 204, .13), transparent 62%);
    animation: aurora 26s var(--ease-io) infinite alternate;
    filter: blur(20px);
}

@keyframes aurora {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(3%, -2.5%, 0) scale(1.08); }
    100% { transform: translate3d(-2.5%, 2%, 0) scale(1.03); }
}

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

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

ul {
    list-style: none;
}

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

::selection {
    background: rgba(182, 242, 0, .28);
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--aqua), var(--ink));
    border-radius: 99px;
    border: 3px solid var(--navy-950);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--cyan), var(--aqua)); }

:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.container {
    width: min(100% - 44px, var(--container));
    margin-inline: auto;
}

section {
    position: relative;
    padding: clamp(72px, 9vw, 130px) 0;
}

.section-head {
    max-width: 760px;
    margin: 0 auto clamp(44px, 5vw, 68px);
    text-align: center;
}

.section-head.left {
    margin-inline: 0;
    text-align: left;
}

.section-head p {
    color: var(--text-dim);
    font-size: 1.06rem;
    margin-top: 18px;
}

/* Eyebrow / kicker pill */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cyan);
    padding: 8px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 99px;
    background: rgba(0, 200, 215, .07);
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 10px var(--lime);
    animation: blip 2s ease-in-out infinite;
}

@keyframes blip {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .35; transform: scale(.7); }
}

/* Headings */
h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.025em;
}

h1 { font-size: clamp(2.5rem, 6.4vw, 4.7rem); font-weight: 700; }
h2 { font-size: clamp(1.95rem, 3.9vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }

.grad {
    background: var(--grad-brand);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 7s linear infinite;
}

@keyframes shimmer {
    to { background-position: 220% center; }
}

.mono {
    font-family: var(--f-mono);
    letter-spacing: -.02em;
}

.muted { color: var(--text-dim); }

/* Divider hairline */
.hairline {
    height: 1px;
    background: var(--grad-hairline);
    opacity: .5;
    border: 0;
}

/* --------------------------------------------------------------------------
   4. PRELOADER
   -------------------------------------------------------------------------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    background: var(--navy-950);
    transition: opacity .7s var(--ease), visibility .7s;
}

#preloader.done {
    opacity: 0;
    visibility: hidden;
}

.pre-inner {
    display: grid;
    justify-items: center;
    gap: 26px;
}

.pre-flame {
    width: 74px;
    filter: drop-shadow(0 0 26px rgba(0, 200, 215, .55));
    animation: preFlame 1.7s var(--ease) infinite;
}

@keyframes preFlame {
    0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 22px rgba(0, 200, 215, .45)); }
    50% { transform: translateY(-9px) scale(1.06); filter: drop-shadow(0 0 40px rgba(182, 242, 0, .6)); }
}

.pre-word {
    font-family: var(--f-mono);
    font-size: .74rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--text-mute);
}

.pre-bar {
    width: 190px;
    height: 2px;
    background: rgba(255, 255, 255, .08);
    border-radius: 99px;
    overflow: hidden;
}

.pre-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--grad-brand);
    box-shadow: var(--glow-teal);
    transition: width .3s linear;
}

/* --------------------------------------------------------------------------
   5. CURSOR + SCROLL PROGRESS + BACK TO TOP
   -------------------------------------------------------------------------- */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    border-radius: 50%;
    mix-blend-mode: screen;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--lime);
    box-shadow: 0 0 12px var(--lime);
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(53, 228, 242, .65);
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease), height .3s var(--ease),
                border-color .3s var(--ease), background .3s var(--ease);
}

.cursor-ring.hot {
    width: 62px;
    height: 62px;
    border-color: rgba(182, 242, 0, .8);
    background: rgba(182, 242, 0, .08);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2.5px;
    width: 0;
    z-index: 9998;
    background: var(--grad-brand);
    box-shadow: 0 0 14px rgba(0, 200, 215, .8);
}

.to-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 900;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: rgba(10, 16, 32, .8);
    backdrop-filter: blur(14px);
    color: var(--cyan);
    cursor: pointer;
    opacity: 0;
    transform: translateY(18px) scale(.85);
    pointer-events: none;
    transition: all .45s var(--ease);
}

.to-top.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.to-top:hover {
    border-color: var(--lime);
    color: var(--lime);
    box-shadow: var(--glow-lime);
}

/* --------------------------------------------------------------------------
   6. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
#header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: height .45s var(--ease), background .45s var(--ease),
                border-color .45s var(--ease), backdrop-filter .45s var(--ease);
    border-bottom: 1px solid transparent;
}

#header.scrolled {
    height: 68px;
    background: rgba(5, 8, 15, .72);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border-bottom-color: var(--line);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

/* Brand lockup: flame mark + CSS gradient wordmark */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* The mobile drawer is position:fixed, so it would paint over these static
   siblings. Positioning them keeps the logo and close button on top of it. */
.brand,
.menu-toggle {
    position: relative;
    z-index: 2;
}

.brand-mark {
    width: 34px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(0, 200, 215, .45));
    transition: transform .5s var(--spring), filter .5s var(--ease);
}

.brand:hover .brand-mark {
    transform: translateY(-3px) rotate(-4deg) scale(1.06);
    filter: drop-shadow(0 0 24px rgba(182, 242, 0, .65));
}

.brand-text {
    display: grid;
    line-height: 1;
}

.brand-name {
    font-family: var(--f-display);
    font-size: 1.42rem;
    font-weight: 700;
    letter-spacing: -.03em;
    background: var(--grad-brand);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 6s linear infinite;
}

.brand-tag {
    font-family: var(--f-mono);
    font-size: .53rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-top: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-links > li > a {
    position: relative;
    display: block;
    padding: 9px 15px;
    font-size: .91rem;
    font-weight: 500;
    color: var(--text-dim);
    border-radius: 99px;
    transition: color .3s var(--ease), background .3s var(--ease);
}

.nav-links > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-brand);
    transform: translateX(-50%);
    transition: width .35s var(--ease);
}

.nav-links > li > a:hover {
    color: var(--text);
    background: var(--glass);
}

.nav-links > li > a:hover::after { width: 22px; }

.nav-links > li > a.active {
    color: #fff;
    background: rgba(0, 200, 215, .10);
}

.nav-links > li > a.active::after { width: 22px; }

/* "New" flag for the AI Products entry */
.nav-flag {
    position: absolute;
    top: -3px;
    right: 2px;
    font-family: var(--f-mono);
    font-size: .5rem;
    letter-spacing: .1em;
    padding: 2px 5px;
    border-radius: 4px;
    background: var(--lime);
    color: #16250b;
    font-weight: 700;
}

.nav-cta {
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: var(--glass);
    color: var(--text);
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   7. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--f-body);
    font-size: .93rem;
    font-weight: 600;
    letter-spacing: .01em;
    border-radius: 99px;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    white-space: nowrap;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease),
                border-color .35s var(--ease), color .35s var(--ease);
}

.btn i { transition: transform .35s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn:active { transform: scale(.97); }

/* Primary — brand gradient with sweeping sheen */
.btn-primary {
    background: var(--grad-brand);
    background-size: 200% auto;
    color: #04121c;
    box-shadow: 0 12px 34px -12px rgba(0, 200, 215, .7);
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, .55) 50%, transparent 75%);
    transform: translateX(-120%);
    transition: transform .8s var(--ease);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px -12px rgba(0, 200, 215, .85), var(--glow-lime);
}

.btn-primary:hover::after { transform: translateX(120%); }

/* Ghost — glass with animated border */
.btn-ghost {
    background: var(--glass);
    border-color: var(--line-strong);
    color: var(--text);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    transform: translateY(-3px);
    border-color: var(--cyan);
    color: #fff;
    box-shadow: var(--glow-teal);
}

/* Lime — high-contrast accent */
.btn-lime {
    background: var(--lime);
    color: #16250b;
    box-shadow: 0 12px 34px -14px rgba(182, 242, 0, .8);
}

.btn-lime:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px -12px rgba(182, 242, 0, .9);
}

.btn-sm {
    padding: 11px 22px;
    font-size: .85rem;
}

/* Text link with arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--f-mono);
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--cyan);
    transition: gap .3s var(--ease), color .3s var(--ease);
}

.link-arrow:hover {
    gap: 15px;
    color: var(--lime);
}

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 60px) 0 80px;
    overflow: hidden;
}

/* canvas is a replaced element: inset:0 alone will not stretch it,
   so width/height must be set explicitly */
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: .85;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero h1 {
    line-height: 1.14;
    margin-bottom: 26px;
}

/* Word-by-word mask reveal.
   The padding/negative-margin pair widens the clipping box beyond the glyph
   box so ascenders and descenders are never shaved off, while the word still
   starts fully outside the visible area. */
.reveal-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding: .06em .04em .2em;
    margin: -.06em -.04em -.2em;
}

.reveal-word > span {
    display: inline-block;
    transform: translateY(125%);
    animation: wordUp .95s var(--ease) forwards;
    animation-delay: var(--d, 0s);
}

@keyframes wordUp {
    to { transform: translateY(0); }
}

.hero-lede {
    font-size: 1.13rem;
    color: var(--text-dim);
    max-width: 580px;
    margin-bottom: 20px;
}

/* Rotating typewriter line */
.type-line {
    font-family: var(--f-mono);
    font-size: 1rem;
    color: var(--text-mute);
    margin-bottom: 36px;
    min-height: 1.6em;
}

.type-line .t-out {
    color: var(--lime);
    font-weight: 500;
}

.type-caret {
    display: inline-block;
    width: 9px;
    height: 1.05em;
    background: var(--cyan);
    vertical-align: text-bottom;
    margin-left: 3px;
    animation: caret 1s step-end infinite;
}

@keyframes caret {
    50% { opacity: 0; }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 42px;
}

/* Trust row under the fold */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 26px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--f-mono);
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-mute);
}

.hero-trust i { color: var(--teal); }

/* Hero visual: orbiting flame */
.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 460px;
}

.orbit-flame {
    width: clamp(180px, 20vw, 260px);
    filter: drop-shadow(0 0 60px rgba(0, 200, 215, .5));
    animation: floaty 6s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

@keyframes floaty {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-22px) rotate(1.5deg); }
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    animation: spin linear infinite;
}

.orbit-ring::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 16px var(--lime);
    transform: translateX(-50%);
}

.ring-1 { width: 300px; height: 300px; animation-duration: 22s; }
.ring-2 { width: 400px; height: 400px; animation-duration: 34s; animation-direction: reverse; border-style: dashed; opacity: .6; }
.ring-3 { width: 500px; height: 500px; animation-duration: 48s; opacity: .35; }
.ring-2::before { background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.ring-3::before { background: var(--aqua); box-shadow: 0 0 16px var(--aqua); }

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

/* Floating spec chips around the flame */
.spec-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 99px;
    border: 1px solid var(--line-strong);
    background: rgba(10, 16, 32, .78);
    backdrop-filter: blur(14px);
    font-family: var(--f-mono);
    font-size: .72rem;
    color: var(--text-dim);
    white-space: nowrap;
    z-index: 4;
    animation: floaty 5s ease-in-out infinite;
}

.spec-chip i { color: var(--lime); }
.chip-a { top: 12%; left: -6%; animation-delay: -1s; }
.chip-b { top: 44%; right: -10%; animation-delay: -2.4s; }
.chip-c { bottom: 12%; left: 2%; animation-delay: -3.6s; }

/* Scroll cue */
.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: grid;
    justify-items: center;
    gap: 9px;
    z-index: 2;
    font-family: var(--f-mono);
    font-size: .62rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--text-mute);
}

.scroll-cue .rail {
    width: 1px;
    height: 46px;
    background: linear-gradient(180deg, var(--cyan), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-cue .rail::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--lime);
    animation: railRun 2.2s var(--ease-io) infinite;
}

@keyframes railRun {
    to { top: 100%; }
}

/* Compact page hero for interior pages */
.hero-sub {
    min-height: auto;
    padding: calc(var(--nav-h) + 90px) 0 clamp(60px, 7vw, 96px);
    text-align: center;
}

.hero-sub h1 { font-size: clamp(2.1rem, 5vw, 3.7rem); margin-bottom: 18px; }
.hero-sub .hero-lede { margin-inline: auto; text-align: center; }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: .74rem;
    color: var(--text-mute);
    margin-top: 26px;
}

.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: var(--line-strong); }

/* --------------------------------------------------------------------------
   9. MARQUEE
   -------------------------------------------------------------------------- */
.marquee {
    position: relative;
    padding: 26px 0;
    border-block: 1px solid var(--line);
    background: rgba(5, 8, 15, .55);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 52px;
    animation: slide 40s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

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

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-mono);
    font-size: .95rem;
    letter-spacing: .04em;
    color: var(--text-mute);
    transition: color .3s var(--ease);
}

.marquee-item:hover { color: var(--lime); }
.marquee-item i { color: var(--teal); font-size: .9em; }

/* --------------------------------------------------------------------------
   10. CARDS (glass + spotlight + tilt)
   -------------------------------------------------------------------------- */
.card {
    position: relative;
    padding: 34px 30px;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    background: var(--grad-surface);
    backdrop-filter: blur(14px);
    overflow: hidden;
    isolation: isolate;
    transition: transform .5s var(--ease), border-color .5s var(--ease),
                box-shadow .5s var(--ease);
    transform-style: preserve-3d;
}

/* Cursor-following spotlight (driven by --mx/--my from JS) */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%),
                rgba(0, 200, 215, .16), transparent 62%);
    transition: opacity .45s var(--ease);
}

/* Top hairline that draws in on hover */
.card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--grad-hairline);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s var(--ease);
}

.card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 200, 215, .18);
}

.card:hover::before { opacity: 1; }
.card:hover::after { transform: scaleX(1); }

.card h3 { margin-bottom: 12px; }

.card p {
    color: var(--text-dim);
    font-size: .95rem;
}

/* Icon badge */
.icon-badge {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    margin-bottom: 22px;
    font-size: 1.35rem;
    color: var(--cyan);
    border: 1px solid var(--line-strong);
    background: linear-gradient(150deg, rgba(0, 200, 215, .16), rgba(182, 242, 0, .06));
    transition: transform .5s var(--spring), color .4s var(--ease), box-shadow .4s var(--ease);
}

.card:hover .icon-badge {
    transform: translateY(-4px) rotate(-6deg) scale(1.08);
    color: var(--lime);
    box-shadow: var(--glow-teal);
}

/* Numbered index watermark */
.card-index {
    position: absolute;
    top: 22px;
    right: 26px;
    font-family: var(--f-mono);
    font-size: .78rem;
    color: var(--text-mute);
    opacity: .55;
    transition: color .4s var(--ease), opacity .4s var(--ease);
}

.card:hover .card-index { color: var(--lime); opacity: 1; }

/* Feature bullet list inside cards */
.card-list {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px dashed var(--line);
    display: grid;
    gap: 9px;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .87rem;
    color: var(--text-dim);
}

.card-list li::before {
    content: "▹";
    color: var(--lime);
    flex-shrink: 0;
    line-height: 1.5;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

/* --------------------------------------------------------------------------
   11. SPLIT / FEATURE SECTIONS
   -------------------------------------------------------------------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.split-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 380px;
}

.split-flame {
    width: clamp(180px, 22vw, 280px);
    filter: drop-shadow(0 0 60px rgba(0, 200, 215, .45));
    animation: floaty 7s ease-in-out infinite;
}

.split-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 204, .22), transparent 68%);
    animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: .8; }
    50% { transform: scale(1.18); opacity: 1; }
}

.split h2 { margin-bottom: 20px; }
.split p { color: var(--text-dim); margin-bottom: 18px; }

.tagline-mono {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 1rem;
    color: var(--teal);
    margin-bottom: 22px;
}

/* Mini stat row */
.mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    margin: 30px 0;
    padding: 24px 0;
    border-block: 1px solid var(--line);
}

.mini-stats div { display: grid; gap: 4px; }

.mini-stats b {
    font-family: var(--f-display);
    font-size: 1.85rem;
    font-weight: 700;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mini-stats small {
    font-family: var(--f-mono);
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-mute);
}

/* --------------------------------------------------------------------------
   12. STATS / COUNTERS
   -------------------------------------------------------------------------- */
.stats-band {
    position: relative;
    border-block: 1px solid var(--line);
    background:
        radial-gradient(ellipse 70% 100% at 50% 0%, rgba(0, 168, 204, .12), transparent 70%),
        rgba(5, 8, 15, .5);
}

.stat {
    position: relative;
    padding: 34px 24px;
    text-align: center;
    border-radius: var(--r);
    border: 1px solid transparent;
    transition: border-color .45s var(--ease), background .45s var(--ease), transform .45s var(--ease);
}

.stat:hover {
    border-color: var(--line-strong);
    background: var(--glass);
    transform: translateY(-6px);
}

.stat-num {
    font-family: var(--f-display);
    font-size: clamp(2.4rem, 4.6vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    background: var(--grad-brand);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 8s linear infinite;
}

.stat-label {
    display: block;
    margin-top: 12px;
    font-size: .86rem;
    color: var(--text-dim);
}

.stat-rule {
    width: 34px;
    height: 2px;
    margin: 16px auto 0;
    border-radius: 2px;
    background: var(--lime);
    box-shadow: 0 0 12px var(--lime);
    transform: scaleX(.35);
    transition: transform .5s var(--ease);
}

.stat:hover .stat-rule { transform: scaleX(1); }

/* --------------------------------------------------------------------------
   13. AI PRODUCTS (IP)
   -------------------------------------------------------------------------- */
.products {
    position: relative;
    overflow: hidden;
}

.products::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 60% 70% at 50% 50%, rgba(182, 242, 0, .07), transparent 70%),
        repeating-linear-gradient(115deg, transparent 0 22px, rgba(120, 165, 225, .035) 22px 23px);
}

.product-card {
    position: relative;
    padding: 34px 30px 30px;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    background: linear-gradient(165deg, rgba(0, 200, 215, .07), rgba(255, 255, 255, .015) 55%);
    backdrop-filter: blur(14px);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}

/* Animated conic border sweep */
.product-card::before {
    content: "";
    position: absolute;
    inset: -60%;
    z-index: -2;
    background: conic-gradient(from 0deg, transparent 0 72%, rgba(53, 228, 242, .5) 84%, rgba(182, 242, 0, .6) 92%, transparent 100%);
    opacity: 0;
    animation: spin 6s linear infinite;
    transition: opacity .5s var(--ease);
}

.product-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: calc(var(--r-lg) - 1px);
    background: linear-gradient(165deg, #0a1524, #06090f);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

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

.product-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.product-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    font-size: 1.25rem;
    color: #04121c;
    background: var(--grad-brand);
    box-shadow: 0 10px 26px -10px rgba(0, 200, 215, .8);
    transition: transform .5s var(--spring);
}

.product-card:hover .product-icon { transform: rotate(-8deg) scale(1.1); }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border-radius: 99px;
    font-family: var(--f-mono);
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid var(--line-strong);
    color: var(--text-dim);
    background: rgba(255, 255, 255, .04);
}

.pill.soon {
    color: var(--lime);
    border-color: rgba(182, 242, 0, .4);
    background: rgba(182, 242, 0, .08);
}

.pill.soon::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime);
    animation: blip 1.8s ease-in-out infinite;
}

.pill.beta { color: var(--cyan); border-color: rgba(53, 228, 242, .4); background: rgba(53, 228, 242, .08); }

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

.product-kicker {
    font-family: var(--f-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}

/* :not() keeps the kicker from absorbing the flex free space —
   only the description should stretch and push the tags to the bottom */
.product-card > p:not(.product-kicker) {
    color: var(--text-dim);
    font-size: .94rem;
    flex-grow: 1;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px dashed var(--line);
}

.tag {
    font-family: var(--f-mono);
    font-size: .68rem;
    padding: 5px 11px;
    border-radius: 7px;
    color: var(--text-dim);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    transition: all .3s var(--ease);
}

.product-card:hover .tag { border-color: var(--line-strong); color: var(--text); }

/* Featured single-product block — a lone card in a 3-up grid reads as an
   accident, so the solo product gets a wider two-column treatment instead. */
.product-solo {
    max-width: 940px;
    margin-inline: auto;
}

.product-card.feature {
    display: grid;
    grid-template-columns: minmax(200px, 260px) 1fr;
    gap: clamp(28px, 4vw, 48px);
    padding: clamp(30px, 4vw, 46px);
}

.feature-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-right: clamp(20px, 3vw, 36px);
    border-right: 1px dashed var(--line);
}

.product-card.feature .product-icon {
    width: 68px;
    height: 68px;
    font-size: 1.6rem;
    border-radius: 19px;
    margin-bottom: 4px;
}

.product-card.feature h3 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: 0;
}

.product-card.feature .product-kicker { margin-bottom: 0; }

.feature-main > p:first-child {
    font-size: 1.04rem;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.feature-main .card-list { border-top: 0; padding-top: 14px; }
.feature-main .card-list li { font-size: .92rem; }

.solo-note {
    display: block;
    max-width: 940px;
    margin: 26px auto 0;
    text-align: center;
    font-family: var(--f-mono);
    font-size: .78rem;
    letter-spacing: .06em;
    color: var(--text-mute);
}

@media (max-width: 760px) {
    .product-card.feature { grid-template-columns: 1fr; }
    .feature-side {
        padding-right: 0;
        padding-bottom: 24px;
        border-right: 0;
        border-bottom: 1px dashed var(--line);
    }
}

/* "Your product here" placeholder tile */
.product-card.ghost {
    display: grid;
    place-items: center;
    text-align: center;
    gap: 14px;
    border-style: dashed;
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, .015);
    min-height: 260px;
}

.product-card.ghost::before,
.product-card.ghost::after { display: none; }

.product-card.ghost i { font-size: 1.8rem; color: var(--text-mute); }
.product-card.ghost:hover { border-color: var(--lime); transform: translateY(-6px); }
.product-card.ghost:hover i { color: var(--lime); }

/* Notice banner (content pending) */
.notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 820px;
    margin: 0 auto 48px;
    padding: 20px 24px;
    border-radius: var(--r);
    border: 1px dashed rgba(182, 242, 0, .35);
    background: rgba(182, 242, 0, .05);
}

.notice i { color: var(--lime); font-size: 1.1rem; margin-top: 3px; }
.notice p { color: var(--text-dim); font-size: .92rem; }
.notice b { color: var(--text); }

/* AI capability pillars */
.pillar {
    display: flex;
    gap: 18px;
    padding: 26px;
    border-radius: var(--r);
    border: 1px solid var(--line);
    background: var(--glass);
    transition: all .45s var(--ease);
}

.pillar:hover {
    background: var(--glass-2);
    border-color: var(--line-strong);
    transform: translateX(6px);
}

.pillar i {
    font-size: 1.3rem;
    color: var(--lime);
    flex-shrink: 0;
    margin-top: 3px;
}

.pillar h4 { font-size: 1.02rem; margin-bottom: 6px; }
.pillar p { font-size: .89rem; color: var(--text-dim); }

/* --------------------------------------------------------------------------
   14. TIMELINE / PROCESS
   -------------------------------------------------------------------------- */
.timeline {
    position: relative;
    max-width: 900px;
    margin-inline: auto;
    padding-left: 8px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--line);
}

.timeline-fill {
    position: absolute;
    left: 27px;
    top: 10px;
    width: 2px;
    height: 0;
    background: var(--grad-brand);
    box-shadow: 0 0 16px rgba(0, 200, 215, .7);
    transition: height .18s linear;
}

.step {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 26px;
    padding-bottom: 42px;
}

.step:last-child { padding-bottom: 0; }

.step-dot {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: var(--f-mono);
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-mute);
    background: var(--navy-800);
    border: 1px solid var(--line-strong);
    transition: all .5s var(--ease);
}

.step.lit .step-dot {
    color: #04121c;
    background: var(--grad-brand);
    border-color: transparent;
    box-shadow: var(--glow-teal);
    transform: scale(1.06);
}

.step-body { padding-top: 6px; }
.step-body h3 { margin-bottom: 8px; }
.step-body p { color: var(--text-dim); font-size: .95rem; }

.step-tag {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: .66rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   15. TESTIMONIALS
   -------------------------------------------------------------------------- */
.tslider {
    position: relative;
    max-width: 920px;
    margin-inline: auto;
}

.tviewport { overflow: hidden; }

.ttrack {
    display: flex;
    transition: transform .75s var(--ease);
}

.tslide {
    min-width: 100%;
    padding: 6px;
}

.tcard {
    position: relative;
    padding: clamp(30px, 4vw, 52px);
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    background: var(--grad-surface);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.tcard::before {
    content: "\201C";
    position: absolute;
    top: -30px;
    right: 20px;
    font-family: var(--f-display);
    font-size: 12rem;
    line-height: 1;
    color: rgba(0, 200, 215, .07);
    pointer-events: none;
}

.tcard p {
    font-size: clamp(1rem, 1.35vw, 1.14rem);
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 30px;
    position: relative;
}

.tclient {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.tlogo {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    padding: 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .93);
    border: 1px solid var(--line-strong);
}

.tlogo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tclient h4 { font-size: 1.05rem; }

.tclient span {
    font-family: var(--f-mono);
    font-size: .74rem;
    color: var(--text-mute);
    letter-spacing: .06em;
}

.tstars {
    margin-left: auto;
    color: var(--lime);
    font-size: .8rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

.tnav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
}

.tbtn {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: var(--glass);
    color: var(--text-dim);
    cursor: pointer;
    transition: all .4s var(--ease);
}

.tbtn:hover {
    color: var(--lime);
    border-color: var(--lime);
    box-shadow: var(--glow-lime);
    transform: scale(1.08);
}

.tdots { display: flex; gap: 9px; }

.tdot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    border: 0;
    background: var(--line-strong);
    cursor: pointer;
    transition: all .4s var(--ease);
}

.tdot.on {
    width: 28px;
    background: var(--grad-brand);
    box-shadow: 0 0 12px rgba(0, 200, 215, .6);
}

/* --------------------------------------------------------------------------
   16. INDUSTRY TILES
   -------------------------------------------------------------------------- */
.industry {
    position: relative;
    padding: 28px 24px;
    border-radius: var(--r);
    border: 1px solid var(--line);
    background: var(--glass);
    overflow: hidden;
    transition: all .5s var(--ease);
}

.industry i {
    font-size: 1.6rem;
    color: var(--teal);
    margin-bottom: 16px;
    display: block;
    transition: all .5s var(--spring);
}

.industry h3 { font-size: 1.08rem; margin-bottom: 8px; }
.industry p { font-size: .88rem; color: var(--text-dim); }

.industry::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .55s var(--ease);
}

.industry:hover {
    background: var(--glass-2);
    border-color: var(--line-strong);
    transform: translateY(-6px);
}

.industry:hover::before { transform: scaleX(1); }
.industry:hover i { color: var(--lime); transform: scale(1.15) translateY(-3px); }

/* --------------------------------------------------------------------------
   17. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
    position: relative;
    padding: clamp(56px, 7vw, 88px) clamp(28px, 5vw, 70px);
    border-radius: var(--r-xl);
    border: 1px solid var(--line-strong);
    background:
        radial-gradient(ellipse 70% 130% at 15% 0%, rgba(0, 200, 215, .18), transparent 62%),
        radial-gradient(ellipse 60% 120% at 90% 100%, rgba(182, 242, 0, .13), transparent 62%),
        linear-gradient(150deg, #0a1524, #06090f);
    overflow: hidden;
    text-align: center;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent 0 48px, rgba(120, 165, 225, .05) 48px 49px);
    pointer-events: none;
}

.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 16px; }

.cta-band p {
    color: var(--text-dim);
    max-width: 620px;
    margin: 0 auto 34px;
}

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

/* --------------------------------------------------------------------------
   18. CONTACT
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 34px;
    align-items: start;
}

.info-panel {
    padding: 36px 32px;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    background: var(--grad-surface);
    backdrop-filter: blur(14px);
}

.info-panel h3 { margin-bottom: 24px; }

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left .35s var(--ease);
}

.info-row:last-of-type { border-bottom: 0; }
.info-row:hover { padding-left: 6px; }

.info-row i {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 11px;
    font-size: .92rem;
    color: var(--cyan);
    background: rgba(0, 200, 215, .1);
    border: 1px solid var(--line-strong);
    transition: all .4s var(--ease);
}

.info-row:hover i { color: var(--lime); background: rgba(182, 242, 0, .12); }

.info-row small {
    display: block;
    font-family: var(--f-mono);
    font-size: .66rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 3px;
}

.info-row span { color: var(--text); font-size: .95rem; }
.info-row a:hover { color: var(--cyan); }

.why-list {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px dashed var(--line);
    display: grid;
    gap: 12px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .92rem;
    color: var(--text-dim);
}

.why-list i { color: var(--lime); font-size: .82rem; margin-top: 5px; }

.form-panel {
    padding: 36px 32px;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    background: var(--grad-surface);
    backdrop-filter: blur(14px);
}

.form-panel h3 { margin-bottom: 8px; }

.form-panel > p {
    color: var(--text-dim);
    font-size: .92rem;
    margin-bottom: 28px;
}

.field { margin-bottom: 20px; }

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--f-mono);
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 10px;
}

.field label i { color: var(--teal); }

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 17px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    background: rgba(3, 6, 13, .6);
    color: var(--text);
    font-size: .95rem;
    transition: border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.field textarea { resize: vertical; min-height: 128px; }

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2335e4f2' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.field select option { background: var(--navy-800); color: var(--text); }

.field input::placeholder,
.field textarea::placeholder { color: var(--text-mute); }

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--cyan);
    background: rgba(3, 6, 13, .85);
    box-shadow: 0 0 0 4px rgba(53, 228, 242, .1);
}

/* Honeypot — off-screen rather than display:none, which some bots skip */
.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-note {
    font-family: var(--f-mono);
    font-size: .7rem;
    color: var(--text-mute);
    text-align: center;
    margin-top: 16px;
}

.form-status {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: var(--r-sm);
    font-size: .9rem;
    border: 1px solid;
}

.form-status.show { display: flex; }
.form-status.ok { color: var(--lime); border-color: rgba(182, 242, 0, .4); background: rgba(182, 242, 0, .07); }
.form-status.err { color: #ff8080; border-color: rgba(255, 128, 128, .4); background: rgba(255, 128, 128, .07); }

/* --------------------------------------------------------------------------
   19. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq {
    max-width: 840px;
    margin-inline: auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: var(--r);
    border: 1px solid var(--line);
    background: var(--glass);
    overflow: hidden;
    transition: border-color .4s var(--ease), background .4s var(--ease);
}

.faq-item.open {
    border-color: var(--line-strong);
    background: var(--glass-2);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: var(--f-display);
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text);
}

.faq-q i {
    color: var(--cyan);
    font-size: .85rem;
    transition: transform .4s var(--ease), color .4s var(--ease);
}

.faq-item.open .faq-q i { transform: rotate(45deg); color: var(--lime); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease);
}

.faq-a p {
    padding: 0 26px 24px;
    color: var(--text-dim);
    font-size: .94rem;
}

/* --------------------------------------------------------------------------
   20. FOOTER
   -------------------------------------------------------------------------- */
footer {
    position: relative;
    margin-top: clamp(40px, 6vw, 80px);
    padding: clamp(56px, 7vw, 84px) 0 0;
    border-top: 1px solid var(--line);
    background:
        radial-gradient(ellipse 70% 100% at 50% 0%, rgba(0, 168, 204, .1), transparent 70%),
        rgba(3, 6, 13, .7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 52px;
}

.footer-brand .brand { margin-bottom: 20px; }

.footer-brand p {
    color: var(--text-dim);
    font-size: .93rem;
    max-width: 330px;
    margin-bottom: 26px;
}

.socials { display: flex; gap: 11px; }

.socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--glass);
    color: var(--text-dim);
    transition: all .4s var(--ease);
}

.socials a:hover {
    color: #04121c;
    background: var(--grad-brand);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--glow-teal);
}

.footer-col h4 {
    font-family: var(--f-mono);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 20px;
}

.footer-col li { margin-bottom: 11px; }

.footer-col a {
    font-size: .92rem;
    color: var(--text-dim);
    transition: color .3s var(--ease), padding-left .3s var(--ease);
}

.footer-col a:hover {
    color: var(--cyan);
    padding-left: 6px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 24px 0 30px;
    border-top: 1px solid var(--line);
    font-family: var(--f-mono);
    font-size: .76rem;
    color: var(--text-mute);
}

.footer-bottom a:hover { color: var(--cyan); }

/* --------------------------------------------------------------------------
   21. SCROLL REVEAL
   -------------------------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}

[data-reveal="left"] { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal="scale"] { transform: scale(.93); }

[data-reveal].in {
    opacity: 1;
    transform: none;
}

/* --------------------------------------------------------------------------
   22. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { min-height: 380px; order: -1; }
    .ring-3 { display: none; }
    .split { grid-template-columns: 1fr; }
    .split-visual { min-height: 280px; order: -1; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
    :root { --nav-h: 72px; }

    .cursor-dot,
    .cursor-ring { display: none; }

    .menu-toggle { display: grid; }

    .nav-cta { display: none; }

    .nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(86vw, 340px);
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 8px;
        padding: 90px 26px 40px;
        background: rgba(5, 8, 15, .96);
        backdrop-filter: blur(26px);
        border-left: 1px solid var(--line-strong);
        transform: translateX(100%);
        transition: transform .55s var(--ease);
        margin-left: 0;
    }

    .nav-links.open { transform: none; }

    .nav-links > li > a {
        padding: 15px 18px;
        font-size: 1.05rem;
        border-radius: var(--r-sm);
    }

    .nav-links > li > a::after { display: none; }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 999;
        background: rgba(3, 6, 13, .7);
        backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        transition: all .45s var(--ease);
    }

    .nav-backdrop.on { opacity: 1; visibility: visible; }

    .chip-b, .chip-c { display: none; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .mini-stats { gap: 24px; }

    /* Narrow screens have no side margin to absorb a sideways reveal,
       so slide these in vertically instead */
    [data-reveal="left"],
    [data-reveal="right"] { transform: translateY(30px); }
}

@media (max-width: 620px) {
    body { font-size: 15.8px; }
    .container { width: calc(100% - 32px); }
    section { padding: 62px 0; }
    .card { padding: 28px 22px; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-actions .btn { width: 100%; }
    .step { grid-template-columns: 44px 1fr; gap: 18px; }
    .step-dot { width: 44px; height: 44px; font-size: .8rem; }
    .timeline::before, .timeline-fill { left: 21px; }
    .chip-a { display: none; }
    .tclient { flex-wrap: wrap; }
    .tstars { margin-left: 0; width: 100%; }
    .footer-bottom { justify-content: center; text-align: center; }
    .to-top { right: 16px; bottom: 16px; }
}

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

    [data-reveal] { opacity: 1 !important; transform: none !important; }
    .reveal-word > span { transform: none !important; }
    body::after { animation: none; }
    .hero-canvas { display: none; }
}

/* Print */
@media print {
    #header, #preloader, .to-top, .scroll-progress,
    .cursor-dot, .cursor-ring, .hero-canvas { display: none !important; }
    body { background: #fff; color: #000; }
}
