@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(/fonts/outfit-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(/fonts/outfit-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(/fonts/outfit-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(/fonts/outfit-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(/fonts/outfit-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(/fonts/outfit-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
    --green: #10B981;
    --green-dim: rgba(16, 185, 129, 0.12);
    --green-glow: rgba(16, 185, 129, 0.25);
    --bg: #050508;
    --bg-nav: rgba(5, 5, 8, 0.85);
    --surface: rgba(255, 255, 255, 0.035);
    --surface-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    --nav-height: 72px;
}

html {
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--bg);
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 64px 64px;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--bg-nav);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
}

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

.nav-brand span {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.25rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.925rem;
    transition: color 0.2s;
}

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

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

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-muted);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-nav);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem 1.5rem;
}

.nav-mobile.open {
    display: block;
}

.nav-mobile a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile a:hover {
    color: var(--text);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 2rem) 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent 70%);
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green);
    color: #050508;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--green-glow);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dim);
    fill: none;
    stroke-width: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, var(--bg));
    pointer-events: none;
    z-index: 2;
}

.hero-shield {
    position: absolute;
    width: 360px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--green);
    opacity: 0.055;
    pointer-events: none;
    animation: shield-breathe 10s ease-in-out infinite;
}

@keyframes shield-breathe {
    0%, 100% { opacity: 0.055; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.085; transform: translate(-50%, -50%) scale(1.03); }
}

.hero-icon {
    position: absolute;
    color: var(--green);
    opacity: 0.09;
    pointer-events: none;
}

.hero-icon-lock {
    width: 44px;
    top: 20%;
    right: 18%;
    animation: float-a 6s ease-in-out infinite;
}

.hero-icon-monitor {
    width: 52px;
    bottom: 28%;
    left: 10%;
    animation: float-b 7s ease-in-out infinite;
}

.hero-icon-data {
    width: 40px;
    bottom: 20%;
    right: 13%;
    animation: float-a 8s ease-in-out infinite 1s;
}

.hero-icon-eye {
    width: 38px;
    top: 24%;
    left: 15%;
    animation: float-b 6.5s ease-in-out infinite 0.5s;
}

@keyframes float-a {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes float-b {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.25rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.14);
}

.product-card.featured {
    border-top: 3px solid var(--green);
}

.product-card.featured:hover {
    border-color: rgba(16, 185, 129, 0.35);
    border-top-color: var(--green);
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.product-type {
    font-size: 0.875rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    list-style: none;
}

.product-features li {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--green);
    background: var(--green-dim);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.925rem;
    font-weight: 600;
    transition: color 0.2s, gap 0.2s;
}

.product-link:hover {
    color: var(--green);
    gap: 0.65rem;
}

.product-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.product-status {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.mission {
}

.mission-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: start;
}

.mission-stat {
    text-align: center;
    padding-top: 0.25rem;
}

.mission-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    display: block;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
}

.mission-number-label {
    font-size: 0.925rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.mission-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.mission-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.mission-values {
    display: flex;
    gap: 2rem;
    margin-top: 2.25rem;
    list-style: none;
}

.mission-values li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.925rem;
    font-weight: 600;
}

.mission-values li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.about-content {
    max-width: 640px;
}

.about-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer {
    padding: 3.5rem 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact {
    display: flex;
    gap: 2rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.925rem;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--text);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .hero-glow { animation: none; opacity: 0.5; }
    .hero-shield { animation: none; }
    .hero-icon { animation: none; }
    .hero-scroll { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .product-card { transition: none; }
    .hero-cta { transition: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .hero h1 { font-size: 2.25rem; }
    .hero-sub { font-size: 1rem; }
    .hero-glow { width: 350px; height: 350px; }
    .hero-shield { width: 220px; }
    .hero-icon { display: none; }

    section { padding: 4rem 1.5rem; }

    .section-title { font-size: 1.75rem; }

    .products-grid { grid-template-columns: 1fr; }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .mission-values {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.875rem; }
    .nav-inner { padding: 0 1.25rem; }
    .mission-number { font-size: 3.5rem; }
    .product-card { padding: 1.75rem; }
}
