:root {
    --bg: #0f1012;
    --bg-soft: #17191d;
    --panel: #1d2127;
    --text: #f2f4f8;
    --muted: #adb4bf;
    --line: #2e343e;
    --accent: #8cff00;
    --accent-soft: #c5ff7a;
    --container: 1140px;
    --radius: 18px;
    --shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 10%, rgba(140, 255, 0, 0.15), transparent 38%),
        radial-gradient(circle at 92% 78%, rgba(140, 255, 0, 0.08), transparent 28%),
        linear-gradient(160deg, #0a0b0d 0%, #111318 46%, #0d0f13 100%);
    min-height: 100vh;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.15;
    font-family: 'Sora', sans-serif;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

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

.container {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(12px);
    background: rgba(12, 14, 17, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
    background: rgba(8, 9, 11, 0.94);
    border-color: rgba(140, 255, 0, 0.28);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    color: #0b0c0f;
    background: var(--accent);
    box-shadow: 0 0 0 7px rgba(140, 255, 0, 0.16);
}

.brand-text {
    color: #e7ecf3;
    letter-spacing: 0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav a {
    color: #dce2ea;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.92;
    transition: color 180ms ease, opacity 180ms ease;
}

.nav a:hover {
    color: #ffffff;
    opacity: 1;
}

.nav a.nav-cta {
    padding: 0.56rem 1rem;
    border-radius: 999px;
    color: #101010;
    background: var(--accent);
}

.nav a.nav-cta:hover {
    color: #101010;
}

.hero {
    position: relative;
    overflow: clip;
    padding: 6.5rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--accent-soft);
    margin-bottom: 1rem;
}

.hero-copy h1 {
    font-size: clamp(2rem, 4.4vw, 3.7rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}

.lead {
    font-size: 1.1rem;
    max-width: 62ch;
}

.hero-actions {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.78rem 1.15rem;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

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

.btn-primary {
    color: #111111;
    background: var(--accent);
    box-shadow: 0 10px 25px rgba(140, 255, 0, 0.25);
}

.btn-primary i {
    color: inherit;
}

.btn-outline {
    color: #edf2f8;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.05);
}

.hero-card {
    position: relative;
}

.glass {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
}

.glass h2 {
    margin-bottom: 0.55rem;
}

.time {
    color: var(--accent);
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.glass ul {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.glass li {
    color: #edf2f8;
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.glass li i {
    color: var(--accent);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 270px;
    height: 270px;
    background: rgba(140, 255, 0, 0.2);
    top: 8%;
    left: -6%;
    animation: drift 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
    width: 340px;
    height: 340px;
    background: rgba(140, 255, 0, 0.13);
    right: -8%;
    bottom: 4%;
    animation: drift 7s ease-in-out infinite alternate-reverse;
}

.stats {
    margin-top: 0.6rem;
    margin-bottom: 1.8rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stats article {
    border: 1px solid var(--line);
    background: rgba(17, 19, 24, 0.75);
    border-radius: 16px;
    padding: 1.15rem;
}

.stats h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.services {
    padding: 3rem 0;
}

.section-head {
    margin-bottom: 1.3rem;
}

.section-head h2 {
    font-size: clamp(1.65rem, 3.2vw, 2.45rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    border: 1px solid var(--line);
    background: linear-gradient(160deg, rgba(31, 35, 41, 0.86), rgba(17, 18, 22, 0.88));
    border-radius: 16px;
    padding: 1.2rem;
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 255, 0, 0.55);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.service-card i {
    font-size: 1.6rem;
    color: var(--accent);
}

.service-card h3 {
    margin-top: 0.75rem;
    margin-bottom: 0.55rem;
    font-size: 1.08rem;
}

.gallery {
    padding: 1rem 0 2.8rem;
}

.gallery .section-head p {
    max-width: 72ch;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-card {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: clip;
    background: rgba(16, 18, 22, 0.88);
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 255, 0, 0.5);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.gallery-card img,
.gallery-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.gallery-card img {
    object-fit: cover;
}

.gallery-placeholder {
    display: grid;
    place-content: center;
    gap: 0.5rem;
    text-align: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(140, 255, 0, 0.2), transparent 32%),
        linear-gradient(145deg, #212730 0%, #14171d 60%, #101218 100%);
    color: #eaf0f8;
}

.gallery-placeholder i {
    font-size: 2rem;
    color: var(--accent);
}

.gallery-placeholder span {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
}

.gallery-card figcaption {
    padding: 0.9rem 0.95rem 1rem;
    color: #e7edf5;
    font-size: 0.95rem;
    line-height: 1.45;
}

.why {
    padding: 2.5rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.why-copy,
.why-list {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(18, 20, 25, 0.8);
    padding: 1.35rem;
}

.why-copy h2 {
    margin-bottom: 0.7rem;
}

.why-list {
    display: grid;
    gap: 0.75rem;
}

.why-list div {
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #e6edf5;
}

.why-list i {
    color: var(--accent);
}

.cta {
    margin-top: 0.8rem;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid rgba(140, 255, 0, 0.35);
    background: linear-gradient(160deg, rgba(28, 33, 36, 0.88), rgba(14, 16, 20, 0.92));
    border-radius: 20px;
    padding: 2rem 1rem;
}

.cta h2 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.6rem, 3.3vw, 2.4rem);
}

.cta p {
    margin-bottom: 1rem;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(9, 10, 12, 0.9);
    padding-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 0.6rem;
}

.site-footer p {
    margin-bottom: 0.45rem;
}

.site-footer i {
    color: var(--accent);
    margin-right: 0.2rem;
}

.footer-bottom {
    margin-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 0.85rem 1rem 1.1rem;
}

.fallback-main {
    padding: 4rem 0;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes drift {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(0, 18px, 0) scale(1.04);
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

@media (max-width: 720px) {
    .container {
        width: min(100% - 1.4rem, var(--container));
    }

    .header-inner {
        min-height: 68px;
        align-items: flex-start;
        padding: 0.75rem 0;
        flex-direction: column;
    }

    .nav {
        width: 100%;
        justify-content: center;
        gap: 0.7rem 1rem;
    }

    .hero {
        padding-top: 4.8rem;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .services-grid,
    .gallery-grid,
    .stats,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
