
html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    background: radial-gradient(1200px 600px at 80% -10%, rgba(0,188,212,.08), transparent), radial-gradient(1000px 500px at 10% 110%, rgba(40,240,166,.06), transparent), var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1200px, 92%);
    margin-inline: auto
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: linear-gradient(90deg,var(--brand),var(--brand-2));
    color: #04261d;
    padding: .9rem 1.15rem;
    border-radius: 14px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(40,240,166,.2);
    transition: transform .15s ease, filter .2s ease
}

    .btn:hover {
        transform: translateY(-1px);
        filter: saturate(1.1)
    }

    .btn.secondary {
        background: transparent;
        color: var(--text);
        border: 1px solid rgba(40,240,166,.35)
    }

.pill {
    display: inline-block;
    border: 1px solid rgba(40,240,166,.35);
    padding: .35rem .7rem;
    border-radius: 999px;
    color: var(--brand);
    background: rgba(40,240,166,.08);
    font-weight: 600;
    letter-spacing: .3px
}

header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(8px);
    background: linear-gradient(180deg, rgba(11,17,20,.8), rgba(11,17,20,.55) 60%, transparent);
    z-index: 30;
    border-bottom: 1px solid rgba(255,255,255,.04)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem
}

.logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: radial-gradient(50% 50% at 50% 40%, rgba(40,240,166,.5), rgba(40,240,166,.12) 60%, transparent 70%), #0a1412;
    border: 1px solid rgba(40,240,166,.35);
    box-shadow: 0 0 30px rgba(40,240,166,.25) inset
}
/* minimalist mountain+trees mark (SVG is in HTML) */
.nav a {
    color: var(--muted);
    font-weight: 600;
    padding: .5rem .75rem;
    border-radius: 10px
}

    .nav a:hover {
        color: var(--text);
        background: rgba(255,255,255,.05)
    }


/* HERO */
.hero {
    position: relative;
    overflow: hidden
}

    .hero .grid {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(rgba(40,240,166,.15) 1px, transparent 1px),radial-gradient(rgba(0,188,212,.15) 1px, transparent 1px);
        background-size: 26px 26px, 40px 40px;
        background-position: 0 0, 8px 12px;
        opacity: .25
    }

.code-rain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%)
}


.hero .wrap {
    padding: clamp(3rem, 6vw, 6rem) 0
}

.headline {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -.02em;
    font-weight: 800
}

.sub {
    max-width: 62ch;
    color: var(--muted);
    font-size: 1.1rem
}

.hero-card {
    margin-top: 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.0));
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow)
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.4rem
}


/* SECTIONS */
section {
    padding: clamp(2.5rem, 6vw, 4.5rem) 0
}

h2 {
    font-size: clamp(1.6rem,3vw,2.2rem);
    margin: 0 0 .8rem
}

.kicker {
    color: var(--brand);
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .18em;
    font-weight: 800;
    margin-bottom: .3rem
}

.grid-3 {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0,1fr))
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 640px) {
    .grid-3 {
        grid-template-columns: 1fr
    }
}


.card {
    background: var(--panel);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: var(--shadow)
}

    .card h3 {
        margin: .2rem 0 .35rem;
        font-size: 1.15rem
    }

    .card p {
        color: var(--muted)
    }

.chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid rgba(255,255,255,.12);
    padding: .35rem .6rem;
    border-radius: 10px;
    font-size: .85rem;
    color: var(--muted)
}


/* showcase */
.showcase {
    display: grid;
    gap: 1rem;
    grid-template-columns: 2fr 1fr
}

.shot {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    background: linear-gradient(180deg, rgba(40,240,166,.08), rgba(255,255,255,.02));
    min-height: 220px
}

    .shot.small {
        min-height: 180px
    }

@media (max-width: 900px) {
    .showcase {
        grid-template-columns: 1fr
    }
}


/* footer */
footer {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 2rem 0;
    color: var(--muted)
}


/* mountains & trees SVG tint */
.mark path {
    filter: drop-shadow(0 0 10px rgba(40,240,166,.35))
}


/* contact */
form {
    display: grid;
    gap: .9rem;
    margin-top: .8rem
}

input, textarea {
    background: #0a1215;
    border: 1px solid rgba(255,255,255,.08);
    color: var(--text);
    padding: .85rem 1rem;
    border-radius: 12px;
    outline: none
}

    input:focus, textarea:focus {
        box-shadow: var(--ring);
        border-color: rgba(40,240,166,.45)
    }

textarea {
    min-height: 140px;
    resize: vertical
}


/* price cards */
.pricing {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0,1fr));
}

@media (max-width: 900px) {
    .pricing {
        grid-template-columns: 1fr
    }
}

.price {
    position: relative
}

    .price .tag {
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: .7rem;
        letter-spacing: .12em
    }

.num {
    font-size: 2rem;
    font-weight: 800
}


.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
}