:root {
    --bg: #070b14;
    --surface: #111827;
    --surface-soft: #0f1729;
    --text: #f7f9ff;
    --muted: #b3bfd3;
    --line: rgba(255, 255, 255, 0.12);
    --accent: #16f2b3;
    --accent-2: #12a6ff;
    --shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(circle at 10% 0%, #0f1f3f 0%, var(--bg) 45%) fixed;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
    pointer-events: none;
    z-index: -2;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.28;
    pointer-events: none;
    z-index: -3;
}

.orb-1 {
    width: 360px;
    height: 360px;
    background: var(--accent);
    top: -90px;
    left: -90px;
    animation: floatOne 12s ease-in-out infinite;
}

.orb-2 {
    width: 340px;
    height: 340px;
    background: var(--accent-2);
    right: -80px;
    top: 24%;
    animation: floatTwo 14s ease-in-out infinite;
}

@keyframes floatOne {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(28px, 12px);
    }
}

@keyframes floatTwo {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-24px, 18px);
    }
}

.section {
    padding: 92px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(7, 11, 20, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand img {
    height: 44px;
    width: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 6px 12px;
    border: 1px solid rgba(22, 242, 179, 0.4);
    border-radius: 999px;
    color: #b8ffe7;
    background: rgba(22, 242, 179, 0.08);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.hero {
    padding-top: 110px;
}

.hero-title {
    font-family: "Syne", "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 760px;
    margin: 18px 0;
}

.hero-subtitle {
    max-width: 760px;
    color: var(--muted);
    margin: 0;
    font-size: clamp(1rem, 2.4vw, 1.2rem);
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 12px 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #07111b;
    background: linear-gradient(135deg, var(--accent), #7fffe2);
    box-shadow: 0 12px 28px rgba(22, 242, 179, 0.34);
}

.btn-secondary {
    border-color: rgba(18, 166, 255, 0.5);
    background: rgba(18, 166, 255, 0.12);
    color: #d2edff;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: #eaf3ff;
}

.stats {
    margin-top: 38px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats article {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(10, 16, 31, 0.9));
    box-shadow: var(--shadow);
}

.stats h3 {
    margin: 0 0 4px;
    color: #cdfff0;
    font-size: 1.1rem;
}

.stats p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.section-title {
    font-family: "Syne", "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: clamp(1.6rem, 4.2vw, 2.7rem);
    margin: 0;
}

.section-subtitle {
    margin: 10px 0 0;
    color: var(--muted);
}

.service-grid {
    margin-top: 26px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    background: linear-gradient(170deg, rgba(14, 20, 35, 0.95), rgba(11, 16, 28, 0.95));
    box-shadow: var(--shadow);
}

.card h3 {
    margin: 0 0 9px;
    font-size: 1.15rem;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.values-list {
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(170deg, rgba(14, 20, 35, 0.95), rgba(11, 16, 28, 0.95));
    box-shadow: var(--shadow);
    padding: 10px 18px;
}

.values-list p {
    margin: 12px 0;
    color: var(--muted);
}

.values-list strong {
    color: #e8f6ff;
}

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

.cta {
    border-radius: 22px;
    border: 1px solid rgba(22, 242, 179, 0.4);
    background: linear-gradient(145deg, rgba(14, 28, 40, 0.9), rgba(11, 20, 35, 0.88));
    box-shadow: var(--shadow);
    padding: clamp(24px, 5vw, 36px);
    text-align: center;
}

.cta h2 {
    margin-top: 0;
    font-family: "Syne", "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: clamp(1.4rem, 4vw, 2.3rem);
}

.cta p {
    margin: 0 0 18px;
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 10, 20, 0.84);
}

.footer-wrap {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-wrap p {
    margin: 0;
    color: var(--muted);
}

.footer-wrap a {
    color: #bde8ff;
    font-weight: 600;
}

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

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

@media (max-width: 960px) {
    .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .section {
        padding: 70px 0;
    }

    .site-header {
        position: static;
    }

    .nav-wrap {
        min-height: 72px;
    }

    .brand img {
        height: 38px;
    }

    .btn {
        width: 100%;
    }

    .stats,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        width: 100%;
    }
}