.live-notification {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 330px;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);

    transform: translateY(140%);
    opacity: 0;
    transition: 0.45s;

    z-index: 999999;
}

.live-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.live-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.live-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.live-text {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .live-notification {
        left: 10px;
        right: 10px;
        width: auto;
    }
}





:root {
    --bg: #05060b;
    --bg-2: #0a0d18;
    --panel: rgba(255, 255, 255, 0.045);
    --panel-strong: rgba(255, 255, 255, 0.07);
    --line: rgba(255, 255, 255, 0.1);
    --ink: #eaf0ff;
    --ink-soft: #8d97b3;
    --cyan: #00e5ff;
    --violet: #7c5cff;
    --magenta: #ff3dae;
    --green: #28f0b0;
    --font-display: "Orbitron", sans-serif;
    --font-body: "Inter", -apple-system, sans-serif;
    --font-mono: "IBM Plex Mono", monospace;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img,
svg {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}
section {
    position: relative;
}
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ink);
}
:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

.glow-text {
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- NAV ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 6, 11, 0.7);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.03em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
}
.nav-links a {
    transition: color 0.18s ease;
}
.nav-links a:hover {
    color: var(--cyan);
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--panel);
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    position: relative;
    transition: background 0.15s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition:
        transform 0.2s ease,
        top 0.2s ease;
}
.nav-toggle span::before {
    top: -6px;
}
.nav-toggle span::after {
    top: 6px;
}
.nav-toggle[aria-expanded="true"] span {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] span::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
    top: 0;
    transform: rotate(-45deg);
}
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: #05060b;
    padding: 0;
    overflow-y: auto;
}
.mobile-menu.open {
    display: flex;
    flex-direction: column;
}
.mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    padding: 0 32px;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}
.mm-header .brand {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.mm-close {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--panel);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ink);
}
.mm-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 32px 48px;
}
.mobile-menu a.mm-link {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--ink);
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.mobile-menu .mm-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}
.mobile-menu .mm-cta .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}
.btn-glow {
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    color: #040508;
    box-shadow: 0 0 24px -4px rgba(0, 229, 255, 0.5);
}
.btn-glow:hover {
    box-shadow: 0 0 34px -2px rgba(0, 229, 255, 0.7);
    transform: translateY(-1px);
}
.btn-ghost {
    border-color: var(--line);
    color: var(--ink);
    background: var(--panel);
}
.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}
.link-plain {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.18s ease;
}
.link-plain:hover {
    color: var(--ink);
}

/* ---------- HERO ---------- */
.hero {
    padding: 100px 0 90px;
    overflow: hidden;
}
#particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.95;
}
.hero .wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    column-gap: 40px;
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
}
.hero h1 {
    font-size: clamp(34px, 4.6vw, 52px);
    line-height: 1.12;
    margin-bottom: 22px;
}
.hero p.lede {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 480px;
    margin-bottom: 34px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 26px;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--ink);
}
.stat-label {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-top: 4px;
}

/* ---------- ROBOT VISUAL ---------- */
.robot-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 340px;
}
.robot-stage.mobile-stage {
    display: none;
    margin: 24px 0;
}
.robot-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.35), rgba(0, 229, 255, 0.12) 55%, transparent 75%);
    filter: blur(10px);
}
.robot-glow::before,
.robot-glow::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 255, 0.35);
    animation: pulse-ring 3.6s ease-out infinite;
}
.robot-glow::after {
    animation-delay: 1.8s;
    border-color: rgba(124, 92, 255, 0.3);
}
@keyframes pulse-ring {
    0% {
        width: 220px;
        height: 220px;
        opacity: 0.9;
    }
    100% {
        width: 440px;
        height: 440px;
        opacity: 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    .robot-glow::before,
    .robot-glow::after {
        animation: none;
        display: none;
    }
}
.robot-svg {
    position: relative;
    z-index: 2;
    width: 300px;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .robot-svg {
        animation: none;
    }
}
.hud-badge {
    position: absolute;
    background: rgba(10, 13, 24, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px 15px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 9px;
    z-index: 3;
}
.hud-badge .lbl {
    color: var(--ink-soft);
    font-weight: 500;
}
.hb-1 {
    top: 6%;
    left: 0%;
}
.hb-2 {
    bottom: 16%;
    right: -2%;
}
.hb-3 {
    top: 42%;
    right: 4%;
}
.hud-row {
    display: none;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
    position: relative;
    z-index: 3;
}
.hud-row span {
    background: rgba(10, 13, 24, 0.75);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-soft);
}
.hud-row span b {
    color: var(--ink);
    font-weight: 700;
    margin-right: 4px;
}

/* ---------- ABOUT ---------- */
.about {
    padding: 120px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
}
.about .wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}
.about h2 {
    font-size: clamp(28px, 3.6vw, 38px);
    margin-bottom: 20px;
    max-width: 520px;
}
.about-lede {
    font-size: 16px;
    color: var(--ink-soft);
    max-width: 480px;
    margin-bottom: 36px;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 44px;
}
.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.av-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    margin-top: 6px;
    flex-shrink: 0;
}
.about-value h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.about-value p {
    font-size: 13.5px;
    color: var(--ink-soft);
    max-width: 400px;
}
.about-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}
.about-visual {
    display: flex;
    justify-content: center;
}
.about-visual svg {
    width: 100%;
    max-width: 380px;
}
.radar-sweep {
    animation: radar-spin 6s linear infinite;
}
@keyframes radar-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@media (prefers-reduced-motion: reduce) {
    .radar-sweep {
        animation: none;
    }
}

.trust {
    padding: 30px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
}
.trust .wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-family: var(--font-mono);
    color: var(--ink-soft);
}
.trust-item .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
}

/* ---------- SECTION HEAD ---------- */
.section-head {
    max-width: 600px;
    margin-bottom: 56px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-head h2 {
    font-size: clamp(26px, 3.2vw, 36px);
}
.section-head p {
    color: var(--ink-soft);
    font-size: 15.5px;
    margin-top: 16px;
}

/* ---------- FEATURES ---------- */
.features {
    padding: 120px 0;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px 28px;
    text-align: center;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.4);
    background: var(--panel-strong);
}
.feature-icon-wrap {
    width: 96px;
    height: 96px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
}
.feature-card h3 {
    font-size: 16.5px;
    color: var(--ink);
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 700;
}
.feature-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ---------- PARTNERS MARQUEE ---------- */
.partners {
    padding: 90px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.partners .section-head {
    margin-bottom: 44px;
}
.partner-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    overflow: hidden;
}
.partner-track {
    display: flex;
    gap: 52px;
    width: max-content;
    animation: partner-scroll 30s linear infinite;
}
.partner-track:hover {
    animation-play-state: paused;
}
@keyframes partner-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@media (prefers-reduced-motion: reduce) {
    .partner-track {
        animation: none;
        overflow-x: auto;
    }
}
.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    width: 110px;
}
.partner-icon-wrap {
    width: 96px;
    height: 96px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--panel);
    border: 1px solid var(--line);
}
.partner-item span {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-soft);
    text-align: center;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.feature-card h3 {
    font-size: 16.5px;
    color: var(--ink);
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 700;
}
.feature-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ---------- ROADMAP / FUTURE TIMELINE ---------- */
.roadmap {
    padding: 120px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.roadmap-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}
.roadmap-line {
    position: absolute;
    top: 20px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    opacity: 0.4;
}
.roadmap-step {
    position: relative;
    z-index: 1;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 20px;
}
.roadmap-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    margin-bottom: 18px;
}
.roadmap-step .tag {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.roadmap-step h4 {
    font-size: 15.5px;
    color: var(--ink);
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 700;
}
.roadmap-step p {
    font-size: 13px;
    color: var(--ink-soft);
}

/* ---------- SECURITY ---------- */
.security {
    padding: 120px 0;
}
.security .wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.sec-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
}
.sec-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}
.sec-row:first-child {
    border-top: none;
    padding-top: 0;
}
.sec-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(124, 92, 255, 0.12);
    border: 1px solid rgba(124, 92, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sec-row h4 {
    color: var(--ink);
    font-size: 14.5px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 4px;
}
.sec-row p {
    color: var(--ink-soft);
    font-size: 13px;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 110px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.contact-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 28px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}
.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.4);
}
.contact-card h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.contact-card p {
    font-size: 14px;
    color: var(--ink-soft);
}

/* ---------- FAQ ---------- */
.faq {
    padding: 120px 0;
}
.faq-list {
    max-width: 760px;
}
.faq-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: none;
    border: none;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    padding: 20px 24px;
    cursor: pointer;
}
.faq-q-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.faq-item[data-open="true"] .faq-q-icon {
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}
.faq-a p {
    font-size: 14px;
    color: var(--ink-soft);
    padding: 0 24px 22px;
    max-width: 600px;
}

/* ---------- FINAL CTA ---------- */
.cta-final {
    padding: 120px 0 130px;
    text-align: center;
}
.cta-card {
    position: relative;
    border-radius: 28px;
    padding: 64px 40px;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(124, 92, 255, 0.12));
    border: 1px solid var(--line);
    overflow: hidden;
}
.cta-card h2 {
    font-size: clamp(26px, 3.6vw, 38px);
    max-width: 600px;
    margin: 0 auto 16px;
}
.cta-card p {
    color: var(--ink-soft);
    font-size: 15.5px;
    margin-bottom: 32px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 52px;
}
.footer-brand p {
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 14px;
    max-width: 260px;
}
.footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-mono);
}
.footer-col a {
    display: block;
    font-size: 13.5px;
    color: var(--ink-soft);
    margin-bottom: 12px;
    transition: color 0.18s ease;
}
.footer-col a:hover {
    color: var(--cyan);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding-top: 26px;
}
.footer-bottom p {
    font-size: 12px;
    color: var(--ink-soft);
}

/* ---------- REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-cta .link-plain {
        display: none;
    }
    .hero .wrap {
        display: block;
    }
    .robot-stage.desktop-stage {
        display: none;
    }
    .robot-stage.mobile-stage {
        display: flex;
    }
    .hud-badge {
        display: none;
    }
    .hud-row {
        display: flex;
    }
    .about .wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual {
        order: -1;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .roadmap-track {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
    }
    .roadmap-line {
        display: none;
    }
    .security .wrap {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px;
    }
}
@media (max-width: 560px) {
    .wrap {
        padding: 0 20px;
    }
    .hero {
        padding: 70px 0 50px;
    }
    .roadmap-track {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta-card {
        padding: 44px 24px;
    }
}
