﻿@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #0f172a;
    --muted: #5b6478;
    --bg: #f7f8fb;
    --card: #ffffff;
    --border: #e6e8f0;
    --accent: #4f46e5;
    --accent-2: #0ea5b7;
    --navy: #0b1225;
    --navy-2: #111a35;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(15,23,42,.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter',system-ui,-apple-system,sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px
}

section {
    padding: 96px 0
}

h1, h2, h3, h4 {
    line-height: 1.15;
    letter-spacing: -.02em
}

h2 {
    font-size: 34px;
    font-weight: 800
}

h3 {
    font-size: 19px;
    font-weight: 700
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(79,70,229,.08);
    border: 1px solid rgba(79,70,229,.18);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

    .eyebrow.on-dark {
        color: #c7d2fe;
        background: rgba(199,210,254,.1);
        border-color: rgba(199,210,254,.25)
    }

.section-head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center
}

    .section-head p {
        color: var(--muted);
        font-size: 16px;
        margin-top: 14px
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: .15s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff
}

    .btn-primary:hover {
        background: #4338ca
    }

.btn-ghost {
    background: #fff;
    color: var(--ink);
    border-color: var(--border)
}

    .btn-ghost:hover {
        border-color: var(--accent);
        color: var(--accent)
    }

.btn-on-dark {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: rgba(255,255,255,.18)
}

    .btn-on-dark:hover {
        background: rgba(255,255,255,.16)
    }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    padding: 8px 14px;
    border-radius: 999px;
}

    .pill .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent-2)
    }

/* NAV */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247,248,251,.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1160px;
    margin: 0 auto
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 17px
}

    .logo .mark {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        background: linear-gradient(135deg,var(--accent),var(--accent-2));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 800;
        font-size: 15px;
    }

.navlinks {
    display: flex;
    align-items: center;
    gap: 32px
}

    .navlinks a {
        font-size: 14.5px;
        font-weight: 600;
        color: var(--muted)
    }

        .navlinks a:hover {
            color: var(--ink)
        }

.navcta {
    display: flex;
    align-items: center;
    gap: 14px
}

    .navcta a.product-link {
        font-size: 14.5px;
        font-weight: 700;
        color: var(--accent)
    }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer
}

/* HERO */
.hero {
    background: radial-gradient(1100px 500px at 15% -10%, #1d2a55 0%, transparent 60%), radial-gradient(900px 500px at 100% 0%, #0c3a3f 0%, transparent 55%), var(--navy);
    color: #fff;
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
}

    .hero .wrap {
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 56px;
        align-items: center
    }

    .hero h1 {
        font-size: 47px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 20px
    }

        .hero h1 span {
            background: linear-gradient(90deg,#818cf8,#5eead4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent
        }

    .hero p.lead {
        color: #aab2c8;
        font-size: 17px;
        max-width: 520px;
        margin-bottom: 30px
    }

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 38px;
    flex-wrap: wrap
}

.hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.hero-visual {
    background: var(--navy-2);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 30px 60px rgba(0,0,0,.35);
}

    .hero-visual .browser-dots {
        display: flex;
        gap: 6px;
        margin-bottom: 16px
    }

        .hero-visual .browser-dots span {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: rgba(255,255,255,.15)
        }

    .hero-visual .stack-card {
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .hero-visual .stack-card .ico {
            width: 36px;
            height: 36px;
            border-radius: 9px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            background: linear-gradient(135deg,var(--accent),var(--accent-2));
        }

        .hero-visual .stack-card div p {
            font-size: 13px;
            font-weight: 700;
            color: #fff
        }

        .hero-visual .stack-card div span {
            font-size: 12px;
            color: #94a3b8
        }

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

    .card .ico {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #fff;
        background: linear-gradient(135deg,var(--accent),var(--accent-2));
    }

    .card h3 {
        margin-bottom: 8px
    }

    .card p {
        color: var(--muted);
        font-size: 14.5px
    }

/* WHY CUSTOM */
.why {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

    .why .wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center
    }

    .why h2 {
        margin-bottom: 18px
    }

    .why p.lead {
        color: var(--muted);
        margin-bottom: 26px
    }

    .why ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 16px
    }

    .why li {
        display: flex;
        gap: 12px;
        font-size: 15px;
        color: var(--ink)
    }

        .why li .check {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(79,70,229,.1);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 800;
            margin-top: 2px;
        }

.why-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow)
}

/* PRODUCT / INCYTE */
.product {
    background: linear-gradient(160deg,var(--navy) 0%,#0a2230 100%);
    color: #fff;
    border-radius: 28px;
    margin: 0 24px;
    padding: 72px 56px;
    position: relative;
    overflow: hidden;
}

    .product::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle,rgba(94,234,212,.18),transparent 70%);
    }

.product-inner {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.product-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 52px
}

.product h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 16px
}

.product p.lead {
    color: #aab2c8;
    font-size: 16px;
    margin-bottom: 26px
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px
}

.product-shot {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 60px rgba(0,0,0,.4)
}

.product-feats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px
}

    .product-feats .f {
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 12px;
        padding: 20px;
    }

        .product-feats .f .ico {
            font-size: 20px;
            margin-bottom: 10px
        }

        .product-feats .f h4 {
            font-size: 14.5px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px
        }

        .product-feats .f p {
            font-size: 13px;
            color: #94a3b8
        }

.product-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px
}

/* ABOUT */
.about .wrap {
    max-width: 820px;
    text-align: center
}

.about p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 16px
}

.about h2 {
    margin-bottom: 10px
}

/* CONTACT */
.contact {
    background: var(--card);
    border-top: 1px solid var(--border)
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    margin-top: 8px
}

.contact-info .item {
    display: flex;
    gap: 14px;
    margin-bottom: 24px
}

.contact-info .ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(79,70,229,.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.contact-info h4 {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 3px
}

.contact-info p {
    font-size: 15px;
    font-weight: 600
}

.map-box {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 8px
}

    .map-box iframe {
        width: 100%;
        height: 220px;
        border: 0;
        display: block
    }

form {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

input, textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 14.5px;
    background: #fbfbfd;
}

    input:focus, textarea:focus {
        outline: none;
        border-color: var(--accent);
        background: #fff
    }

textarea {
    min-height: 120px;
    resize: vertical
}

/* FOOTER */
footer {
    background: var(--navy);
    color: #94a3b8;
    padding: 64px 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px
}

    .footer-grid .logo {
        color: #fff;
        margin-bottom: 14px
    }

    .footer-grid p {
        font-size: 14px;
        line-height: 1.7
    }

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 16px
}

.footer-col a {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: #94a3b8
}

    .footer-col a:hover {
        color: #fff
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px
}

@media(max-width:920px) {
    .hero .wrap {
        grid-template-columns: 1fr
    }

    .hero-visual {
        order: -1
    }

    .services-grid {
        grid-template-columns: 1fr 1fr
    }

    .why .wrap {
        grid-template-columns: 1fr
    }

    .why-img {
        order: -1
    }

    .product {
        padding: 48px 26px;
        margin: 0 12px
    }

    .product-top {
        grid-template-columns: 1fr
    }

    .product-feats {
        grid-template-columns: 1fr 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .navlinks {
        display: none
    }
}

@media(max-width:600px) {
    .hero h1 {
        font-size: 34px
    }

    section {
        padding: 64px 0
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .product-feats {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}
