﻿:root {
    --primary: #07a4f0;
    --primary-dark: #0282fb;
    --accent: #0ab6ea;
    --bg: #040713;
    --bg-soft: #071024;
    --bg-card: rgba(255, 255, 255, 0.075);
    --bg-card-strong: rgba(255, 255, 255, 0.12);
    --text: #ffffff;
    --muted: #a8b4d0;
    --muted-strong: #d7def5;
    --border: rgba(255, 255, 255, 0.13);
    --border-blue: rgba(7, 164, 240, 0.34);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
    --blue-shadow: 0 24px 70px rgba(2, 130, 251, 0.26);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --gradient: linear-gradient(135deg, #07a4f0, #0282fb, #0ab6ea);
} 

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(7, 164, 240, 0.18), transparent 34%), radial-gradient(circle at top right, rgba(2, 130, 251, 0.18), transparent 34%), radial-gradient(circle at bottom, rgba(10, 182, 234, 0.12), transparent 30%), var(--bg);
    overflow-x: hidden;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 78px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(4, 7, 19, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    transition: 0.25s ease;
}

    .site-header.scrolled {
        height: 66px;
        background: rgba(4, 7, 19, 0.94);
    }


.logo-mark {
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

    .logo-mark img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

.brand-logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
    display: block;
}


.brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-mark {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}
.brand-text strong,
.footer-brand strong {
    display: block;
    font-size: 18px;
    line-height: 1;
}

.brand-text span,
.footer-brand span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted-strong);
    font-size: 14px;
}

    .nav-links a {
        transition: 0.2s ease;
    }

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn {
    min-height: 44px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-primary {
    color: #ffffff;
    background: var(--gradient);
    box-shadow: var(--blue-shadow);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 30px 80px rgba(2, 130, 251, 0.38);
    }

.btn-secondary,
.btn-header {
    color: var(--text);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.14);
}

    .btn-secondary:hover,
    .btn-header:hover {
        background: rgba(7, 164, 240, 0.1);
        border-color: var(--border-blue);
        transform: translateY(-2px);
    }

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

    .menu-btn span {
        display: block;
        width: 18px;
        height: 2px;
        margin: 4px auto;
        border-radius: 10px;
        background: white;
    }

.hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 7% 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.42;
    mask-image: linear-gradient(to bottom, black 20%, transparent 96%);
}

.hero-network-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.65;
}

    .hero-network-bg span {
        position: absolute;
        width: 260px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(7, 164, 240, 0.75), transparent);
        transform-origin: left center;
        animation: networkMove 8s ease-in-out infinite;
    }

        .hero-network-bg span::before,
        .hero-network-bg span::after {
            content: "";
            position: absolute;
            top: -4px;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #07a4f0;
            box-shadow: 0 0 18px rgba(7, 164, 240, 0.9);
        }

        .hero-network-bg span::before {
            left: 0;
        }

        .hero-network-bg span::after {
            right: 0;
        }

        .hero-network-bg span:nth-child(1) {
            top: 20%;
            left: 8%;
            --r: 22deg;
            transform: rotate(22deg);
            animation-delay: 0s;
        }

        .hero-network-bg span:nth-child(2) {
            top: 35%;
            right: 10%;
            --r: -28deg;
            transform: rotate(-28deg);
            animation-delay: 1s;
        }

        .hero-network-bg span:nth-child(3) {
            top: 58%;
            left: 15%;
            --r: -15deg;
            transform: rotate(-15deg);
            animation-delay: 2s;
        }

        .hero-network-bg span:nth-child(4) {
            top: 72%;
            right: 18%;
            --r: 18deg;
            transform: rotate(18deg);
            animation-delay: 3s;
        }

        .hero-network-bg span:nth-child(5) {
            top: 48%;
            left: 45%;
            --r: 42deg;
            transform: rotate(42deg);
            animation-delay: 1.7s;
        }

        .hero-network-bg span:nth-child(6) {
            top: 15%;
            left: 55%;
            --r: -38deg;
            transform: rotate(-38deg);
            animation-delay: 2.6s;
        }

@keyframes networkMove {
    0%, 100% {
        opacity: 0.22;
        filter: blur(0);
        transform: translateY(0) scaleX(0.72) rotate(var(--r, 0deg));
    }

    50% {
        opacity: 0.9;
        filter: blur(0.2px);
        transform: translateY(-18px) scaleX(1.08) rotate(var(--r, 0deg));
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

    .hero-particles i {
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(10, 182, 234, 0.9);
        box-shadow: 0 0 18px rgba(10, 182, 234, 0.9);
        animation: particleFloat 9s linear infinite;
    }

        .hero-particles i:nth-child(1) {
            left: 8%;
            top: 80%;
            animation-delay: 0s;
        }

        .hero-particles i:nth-child(2) {
            left: 18%;
            top: 65%;
            animation-delay: 1s;
        }

        .hero-particles i:nth-child(3) {
            left: 32%;
            top: 85%;
            animation-delay: 2.2s;
        }

        .hero-particles i:nth-child(4) {
            left: 48%;
            top: 75%;
            animation-delay: 3.1s;
        }

        .hero-particles i:nth-child(5) {
            left: 64%;
            top: 88%;
            animation-delay: 0.8s;
        }

        .hero-particles i:nth-child(6) {
            left: 78%;
            top: 70%;
            animation-delay: 2.7s;
        }

        .hero-particles i:nth-child(7) {
            left: 88%;
            top: 82%;
            animation-delay: 4s;
        }

        .hero-particles i:nth-child(8) {
            left: 55%;
            top: 62%;
            animation-delay: 5s;
        }

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(0.7);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 0.85;
    }

    100% {
        transform: translateY(-520px) translateX(90px) scale(1.2);
        opacity: 0;
    }
}


.hero-orb {
    position: absolute;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.42;
    pointer-events: none;
}

.hero-orb-one {
    right: 7%;
    top: 12%;
    background: var(--primary-dark);
}

.hero-orb-two {
    left: 6%;
    bottom: 10%;
    background: var(--accent);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    width: fit-content;
    margin-bottom: 24px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(7, 164, 240, 0.28);
    border-radius: 999px;
    background: rgba(7, 164, 240, 0.075);
}

    .eyebrow span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--primary);
        box-shadow: 0 0 0 rgba(7, 164, 240, 0.7);
        animation: pulse 1.8s infinite;
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(7, 164, 240, 0.7);
    }

    70% {
        box-shadow: 0 0 0 11px rgba(7, 164, 240, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(7, 164, 240, 0);
    }
}

.hero-copy h1 {
    margin: 0;
    max-width: 850px;
    font-size: clamp(46px, 6.5vw, 94px);
    line-height: 0.95;
    letter-spacing: -4px;
}

    .hero-copy h1 span {
    color: #07a4f0;
}

.hero-copy p {
    max-width: 670px;
    margin: 28px 0 34px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-highlights {
    max-width: 730px;
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.045);
}

    .hero-highlights div {
        padding: 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

        .hero-highlights div:last-child {
            border-right: 0;
        }

    .hero-highlights strong,
    .hero-highlights span {
        display: block;
    }

    .hero-highlights strong {
        font-size: 19px;
    }

    .hero-highlights span {
        margin-top: 5px;
        color: var(--muted);
        font-size: 13px;
    }

.hero-visual {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card,
.platform-panel,
.glass-card,
.module-card,
.workflow-card,
.industry-card,
.viewer-window,
.security-card,
.cta-card {
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)), rgba(7, 16, 36, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.dashboard-card {
    position: relative;
    z-index: 2;
    width: min(100%, 570px);
    padding: 24px;
    border-radius: var(--radius-xl);
}

.window-dots,
.viewer-topbar div {
    display: flex;
    gap: 8px;
}

    .window-dots span,
    .viewer-topbar span {
        width: 11px;
        height: 11px;
        border-radius: 50%;
    }

        .window-dots span:nth-child(1),
        .viewer-topbar span:nth-child(1) {
            background: #ff5f57;
        }

        .window-dots span:nth-child(2),
        .viewer-topbar span:nth-child(2) {
            background: #ffbd2e;
        }

        .window-dots span:nth-child(3),
        .viewer-topbar span:nth-child(3) {
            background: #28c840;
        }

.dashboard-title {
    margin: 24px 0 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

    .dashboard-title span {
        color: var(--primary);
        font-size: 13px;
        font-weight: 900;
    }

    .dashboard-title h3 {
        margin: 6px 0 0;
        font-size: 25px;
    }

.live-badge {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(7, 164, 240, 0.1);
    border: 1px solid rgba(7, 164, 240, 0.26);
    font-size: 12px;
    font-weight: 900;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

    .dashboard-metrics div {
        padding: 19px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.065);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dashboard-metrics span {
        display: block;
        color: var(--muted);
        font-size: 13px;
    }

    .dashboard-metrics strong {
        display: block;
        margin-top: 6px;
        font-size: 30px;
    }

.document-list {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.document-row {
    padding: 14px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.052);
    border: 1px solid rgba(255, 255, 255, 0.095);
}

    .document-row.active {
        border-color: rgba(7, 164, 240, 0.42);
        background: rgba(7, 164, 240, 0.095);
    }

.file-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: white;
    background: var(--gradient);
    font-size: 12px;
    font-weight: 900;
}

.document-row strong,
.document-row span {
    display: block;
}

.document-row strong {
    font-size: 14px;
}

.document-row span {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

.document-row small {
    color: var(--primary);
    font-weight: 900;
    font-size: 12px;
}

.workflow-mini {
    margin-top: 18px;
    padding: 18px;
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .workflow-mini .step {
        color: var(--muted);
        font-size: 13px;
        font-weight: 900;
    }

    .workflow-mini .complete {
        color: var(--text);
    }

    .workflow-mini .line {
        height: 2px;
        background: linear-gradient(90deg, var(--primary), rgba(255, 255, 255, 0.12));
    }

.floating-chip {
    position: absolute;
    z-index: 3;
    padding: 14px 18px;
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.115);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
    font-weight: 900;
    font-size: 13px;
    animation: float 5s ease-in-out infinite;
}

.chip-one {
    top: 70px;
    left: -8px;
}

.chip-two {
    right: -10px;
    top: 210px;
    animation-delay: 0.8s;
}

.chip-three {
    left: 34px;
    bottom: 70px;
    animation-delay: 1.4s;
}


@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.industry-strip {
    margin: 0 7%;
    padding: 22px 0;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

    .industry-strip strong {
        color: var(--muted-strong);
        font-size: 14px;
    }

.section {
    padding: 110px 7%;
}

.section-heading {
    max-width: 870px;
    margin-bottom: 48px;
}

    .section-heading.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section-heading span,
    .workflow-copy span,
    .viewer-copy > span,
    .security-copy span,
    .cta-card > span {
        display: block;
        margin-bottom: 12px;
        color: var(--primary);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .section-heading h2,
    .workflow-copy h2,
    .viewer-copy h2,
    .security-copy h2,
    .cta-card h2 {
        margin: 0;
        font-size: clamp(34px, 4.2vw, 62px);
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .section-heading p,
    .workflow-copy p,
    .viewer-copy p,
    .security-copy p,
    .cta-card p {
        margin: 18px 0 0;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.8;
    }

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.glass-card {
    min-height: 250px;
    padding: 28px;
    border-radius: var(--radius-lg);
    transition: 0.25s ease;
}

    .glass-card:hover,
    .module-card:hover,
    .industry-card:hover {
        transform: translateY(-6px);
        border-color: rgba(7, 164, 240, 0.38);
    }

.card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: var(--primary);
    background: rgba(7, 164, 240, 0.1);
    font-weight: 900;
}

.glass-card h3,
.module-card h3,
.workflow-steps h3,
.industry-card h3,
.security-grid h3 {
    margin: 0 0 12px;
    font-size: 21px;
}

.glass-card p,
.module-card p,
.workflow-steps p,
.industry-card p,
.security-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.platform-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 58px;
    align-items: center;
}

.platform-panel {
    min-height: 500px;
    padding: 36px;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    background: radial-gradient(circle at top right, rgba(7, 164, 240, 0.22), transparent 38%), linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
}

.platform-layer {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transform: perspective(900px) rotateX(0deg) rotateY(-8deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

    .platform-layer strong,
    .platform-layer span {
        display: block;
    }

    .platform-layer strong {
        font-size: 24px;
    }

    .platform-layer span {
        margin-top: 7px;
        color: var(--muted);
    }

.layer-two {
    margin-left: 40px;
}

.layer-three {
    margin-left: 80px;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.module-card {
    min-height: 245px;
    padding: 28px;
    border-radius: var(--radius-lg);
    transition: 0.25s ease;
}

    .module-card.wide {
        grid-column: span 2;
    }

    .module-card span {
        display: block;
        margin-bottom: 28px;
        color: var(--primary);
        font-weight: 900;
    }

.workflow-card {
    padding: 42px;
    border-radius: var(--radius-xl);
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 42px;
    background: radial-gradient(circle at top right, rgba(2, 130, 251, 0.2), transparent 36%), linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

    .workflow-steps div {
        padding: 24px;
        border-radius: 21px;
        background: rgba(4, 7, 19, 0.42);
        border: 1px solid rgba(255, 255, 255, 0.095);
    }

    .workflow-steps strong {
        display: block;
        margin-bottom: 22px;
        color: var(--primary);
        font-size: 13px;
    }

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.industry-card {
    min-height: 240px;
    padding: 26px;
    border-radius: var(--radius-lg);
    transition: 0.25s ease;
}

    .industry-card > span {
        width: 52px;
        height: 52px;
        margin-bottom: 22px;
        display: grid;
        place-items: center;
        border-radius: 17px;
        background: rgba(7, 164, 240, 0.1);
        font-size: 24px;
    }

.viewer-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.viewer-points {
    display: grid;
    gap: 13px;
    margin-top: 30px;
}

    .viewer-points div {
        padding: 18px 20px;
        display: flex;
        justify-content: space-between;
        gap: 20px;
        border-radius: 19px;
        background: rgba(255, 255, 255, 0.055);
        border: 1px solid rgba(255, 255, 255, 0.095);
    }

    .viewer-points strong {
        color: var(--primary);
    }

    .viewer-points span {
        color: var(--muted);
    }

.viewer-window {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.viewer-topbar {
    height: 58px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .viewer-topbar strong {
        color: var(--muted-strong);
        font-size: 13px;
    }

.viewer-screen {
    position: relative;
    min-height: 410px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(7, 164, 240, 0.11), rgba(10, 182, 234, 0.045)), repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 50px);
}

.document-preview {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.preview-line {
    height: 12px;
    width: 72%;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

    .preview-line.long {
        width: 90%;
    }

    .preview-line.short {
        width: 45%;
    }

    .preview-line.tiny {
        width: 30%;
    }

.preview-box {
    height: 150px;
    margin: 28px 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(7, 164, 240, 0.28), rgba(2, 130, 251, 0.08)), rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(7, 164, 240, 0.28);
}

.viewer-sidebar {
    display: grid;
    gap: 14px;
}

    .viewer-sidebar div {
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.075);
        border: 1px solid rgba(255, 255, 255, 0.095);
    }

.scan-effect {
    position: absolute;
    left: 0;
    right: 0;
    top: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scan 3.2s infinite;
}

@keyframes scan {
    0% {
        top: 8%;
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    100% {
        top: 92%;
        opacity: 0;
    }
}

.viewer-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .viewer-footer div {
        padding: 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

        .viewer-footer div:last-child {
            border-right: 0;
        }

    .viewer-footer span,
    .viewer-footer strong {
        display: block;
    }

    .viewer-footer span {
        color: var(--muted);
        font-size: 12px;
        margin-bottom: 6px;
    }

    .viewer-footer strong {
        font-size: 15px;
    }

.security-card {
    padding: 44px;
    border-radius: var(--radius-xl);
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 42px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

    .security-grid div {
        padding: 24px;
        border-radius: 21px;
        background: rgba(4, 7, 19, 0.44);
        border: 1px solid rgba(255, 255, 255, 0.095);
    }

.cta-section {
    padding-top: 60px;
}

.cta-card {
    padding: 72px;
    text-align: center;
    border-radius: 38px;
    background: radial-gradient(circle at top left, rgba(7, 164, 240, 0.24), transparent 35%), radial-gradient(circle at bottom right, rgba(2, 130, 251, 0.24), transparent 35%), rgba(255, 255, 255, 0.08);
}

    .cta-card h2 {
        max-width: 900px;
        margin: 0 auto;
    }

    .cta-card p {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-buttons {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer {
    padding: 36px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

    .footer-links a:hover {
        color: var(--primary);
    }

.site-footer p {
    margin: 0;
    font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.72s ease;
}

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

@media (max-width: 1180px) {
    .hero-content,
    .platform-layout,
    .viewer-layout,
    .workflow-card,
    .security-card {
        grid-template-columns: 1fr;
    }

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

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

    .hero-visual {
        min-height: 520px;
    }
}

@media (max-width: 820px) {
    .site-header {
        height: 70px;
        padding: 0 20px;
    }

    .brand-text span {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 78px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 21px;
        background: rgba(4, 7, 19, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.13);
        box-shadow: var(--shadow);
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links a {
            padding: 15px;
            border-radius: 14px;
        }

            .nav-links a:hover {
                background: rgba(255, 255, 255, 0.07);
            }

    .btn-header {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 125px 20px 72px;
    }

    .hero-copy h1 {
        letter-spacing: -2px;
    }

    .hero-copy p {
        font-size: 16px;
    }

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

        .hero-highlights div {
            border-right: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

            .hero-highlights div:last-child {
                border-bottom: 0;
            }

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

    .floating-chip {
        display: none;
    }

    .industry-strip {
        margin: 0 20px;
    }

    .section {
        padding: 78px 20px;
    }

    .problem-grid,
    .industry-grid,
    .module-grid,
    .workflow-steps,
    .security-grid,
    .viewer-footer,
    .viewer-screen {
        grid-template-columns: 1fr;
    }

    .module-card.wide {
        grid-column: auto;
    }

    .workflow-card,
    .security-card,
    .cta-card {
        padding: 28px;
        border-radius: 28px;
    }

    .viewer-points div {
        display: block;
    }

    .viewer-points span {
        display: block;
        margin-top: 7px;
    }

    .viewer-sidebar {
        display: none;
    }

    .layer-two,
    .layer-three {
        margin-left: 0;
    }

    .platform-layer {
        transform: none;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

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

    .document-row {
        grid-template-columns: auto 1fr;
    }

        .document-row small {
            grid-column: 2;
        }

    .workflow-mini {
        grid-template-columns: 1fr;
    }

        .workflow-mini .line {
            display: none;
        }

    .section-heading h2,
    .workflow-copy h2,
    .viewer-copy h2,
    .security-copy h2,
    .cta-card h2 {
        letter-spacing: -1px;
    }
}
