@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;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* ── Variables ───────────────────────────────────────────────── */
:root {
    --navy: #1e2a38;
    --navy-dark: #151f2b;
    --blue: #1F8BCB;
    --blue-dark: #1a7ab5;
    --white: #ffffff;
    --bg-alt: #f4f6f8;
    --body: #4a5568;
    --muted: #7a8fa3;
    --border: #e8ecf0;
    --radius: 8px;
    --radius-lg: 14px;
    --shadow: 0 4px 20px rgba(30,42,56,.08);
    --shadow-lg: 0 8px 40px rgba(30,42,56,.12);
    --trans: 0.2s ease;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--trans);
}

    a:hover {
        color: var(--blue-dark);
    }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    color: var(--navy);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.05rem;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 0.75rem;
}

.lead {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 600px;
}

.section-intro {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

    .section-intro .lead {
        margin: 0 auto;
    }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--navy);
}

    .section-dark h1,
    .section-dark h2,
    .section-dark h3,
    .section-dark h4 {
        color: var(--white);
    }

    .section-dark p {
        color: rgba(255,255,255,.7);
    }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white) !important;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-decoration: none;
}

    .navbar-brand .brand-dot {
        width: 8px;
        height: 8px;
        background: var(--blue);
        border-radius: 50%;
        display: inline-block;
    }

.navbar .nav-link {
    color: rgba(255,255,255,.8) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 1.4rem 1rem !important;
    transition: color var(--trans);
}

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        color: var(--white) !important;
    }

.navbar .nav-link-cta {
    background: var(--blue);
    color: var(--white) !important;
    border-radius: var(--radius);
    padding: 0.5rem 1.25rem !important;
    margin-left: 0.5rem;
    font-weight: 600;
    transition: background var(--trans);
}

    .navbar .nav-link-cta:hover {
        background: var(--blue-dark) !important;
    }

.navbar-toggler {
    border-color: rgba(255,255,255,.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary-incyte {
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

    .btn-primary-incyte:hover {
        background: var(--blue-dark);
        color: var(--white);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(31,139,203,.3);
    }

.btn-outline-incyte {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.35);
    border-radius: var(--radius);
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--trans);
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

    .btn-outline-incyte:hover {
        border-color: var(--white);
        color: var(--white);
        background: rgba(255,255,255,.1);
    }

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--trans);
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

    .btn-outline-navy:hover {
        border-color: var(--navy);
        color: var(--navy);
        background: var(--bg-alt);
    }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
    background: var(--navy);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(31,139,203,.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(31,139,203,.08) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
}

    .hero h1 span {
        color: var(--blue);
    }

.hero .lead {
    color: rgba(255,255,255,.75);
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.8rem;
    color: rgba(255,255,255,.75);
    font-weight: 500;
}

    .hero-badge i {
        color: var(--blue);
        font-size: 0.7rem;
    }

.hero-visual {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-mockup {
    background: #f4f6f8;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
}

.mockup-bar {
    background: var(--navy-dark);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot-r {
    background: #ff5f57;
}

.mockup-dot-y {
    background: #febc2e;
}

.mockup-dot-g {
    background: #28c840;
}

.mockup-url {
    flex: 1;
    background: rgba(255,255,255,.08);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 0.75rem;
    color: rgba(255,255,255,.5);
    margin: 0 8px;
}

.mockup-screen {
    background: #f4f6f8;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
    gap: 10px;
    flex-direction: column;
}

    .mockup-screen i {
        font-size: 2.5rem;
        opacity: .2;
    }

/* ── Features ────────────────────────────────────────────────── */
.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(31,139,203,.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    height: 100%;
    transition: box-shadow var(--trans), transform var(--trans);
}

    .feature-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-2px);
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.9375rem;
        color: var(--muted);
        margin: 0;
    }

.feature-row {
    padding: 64px 0;
}

.feature-row-img {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    border: 1px solid var(--border);
    flex-direction: column;
    gap: 12px;
}

    .feature-row-img i {
        font-size: 3rem;
        opacity: .2;
    }

    .feature-row-img span {
        font-size: 0.85rem;
    }

/* ── Signature: Custom-Built section ────────────────────────── */
.custom-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.custom-quote {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.03em;
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid var(--blue);
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

    .custom-list li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.9375rem;
        color: var(--body);
    }

        .custom-list li:last-child {
            border-bottom: none;
        }

        .custom-list li i {
            color: var(--blue);
            margin-top: 3px;
            flex-shrink: 0;
        }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: box-shadow var(--trans), transform var(--trans);
    position: relative;
}

    .pricing-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-3px);
    }

    .pricing-card.featured {
        border-color: var(--blue);
        border-width: 2px;
        box-shadow: 0 0 0 4px rgba(31,139,203,.08);
    }

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 1.25rem 0 0.25rem;
}

    .pricing-price sup {
        font-size: 1.25rem;
        vertical-align: super;
        font-weight: 600;
        letter-spacing: 0;
    }

.pricing-period {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.pricing-users {
    font-size: 0.85rem;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.5rem 0;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--body);
}

    .pricing-feature i {
        color: #10b981;
        margin-top: 2px;
        flex-shrink: 0;
    }

/* ── Stat bar ────────────────────────────────────────────────── */
.stat-bar {
    background: var(--navy);
    padding: 56px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.25rem;
}

    .stat-number span {
        color: var(--blue);
    }

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: rgba(255,255,255,.12);
    align-self: stretch;
}

/* ── Testimonial ─────────────────────────────────────────────── */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--body);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, rgba(31,139,203,.15) 0%, transparent 70%);
        pointer-events: none;
    }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy-dark);
    padding: 60px 0 32px;
    color: rgba(255,255,255,.55);
    font-size: 0.875rem;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,.4);
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        font-size: 0.875rem;
        transition: color var(--trans);
    }

        .footer-links a:hover {
            color: var(--white);
        }

.footer-divider {
    border-color: rgba(255,255,255,.08);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    color: rgba(255,255,255,.35);
    font-size: 0.8rem;
}

/* ── Page header (inner pages) ───────────────────────────────── */
.page-header {
    background: var(--navy);
    padding: 72px 0 64px;
}

    .page-header h1 {
        color: var(--white);
        margin-bottom: 0.75rem;
    }

    .page-header .lead {
        color: rgba(255,255,255,.65);
    }

/* ── Contact form ────────────────────────────────────────────── */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-label-incyte {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
    display: block;
}

.form-ctrl-incyte {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--navy);
    background: var(--white);
    font-family: inherit;
    transition: border-color var(--trans), box-shadow var(--trans);
    margin-bottom: 1.25rem;
}

    .form-ctrl-incyte:focus {
        outline: none;
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(31,139,203,.12);
    }

textarea.form-ctrl-incyte {
    resize: vertical;
    min-height: 130px;
}

select.form-ctrl-incyte {
    cursor: pointer;
}

/* ── Prose (legal pages) ─────────────────────────────────────── */
.prose {
    max-width: 760px;
    margin: 0 auto;
}

    .prose h2 {
        font-size: 1.35rem;
        margin: 2.5rem 0 0.75rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border);
    }

    .prose h3 {
        font-size: 1.1rem;
        margin: 1.75rem 0 0.5rem;
        color: var(--navy);
    }

    .prose p {
        margin-bottom: 1rem;
        font-size: 0.9375rem;
    }

    .prose ul, .prose ol {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }

    .prose li {
        margin-bottom: 0.4rem;
        font-size: 0.9375rem;
    }

    .prose table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

        .prose table th {
            background: var(--bg-alt);
            padding: 10px 14px;
            text-align: left;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--muted);
            border-bottom: 2px solid var(--border);
        }

        .prose table td {
            padding: 10px 14px;
            border-bottom: 1px solid var(--border);
            vertical-align: top;
        }

/* ── Utilities ───────────────────────────────────────────────── */
.text-blue {
    color: var(--blue) !important;
}

.text-navy {
    color: var(--navy) !important;
}

.text-muted-incyte {
    color: var(--muted) !important;
}

.gap-btn {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
}

.rounded-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    .hero {
        padding: 72px 0 56px;
    }

    .hero-visual {
        margin-top: 2.5rem;
    }

    .custom-quote {
        font-size: 1.6rem;
    }

    .stat-divider {
        display: none;
    }

    .pricing-card.featured {
        margin-top: 1rem;
    }

    .gap-btn {
        flex-direction: column;
        align-items: flex-start;
    }

        .gap-btn a, .gap-btn button {
            width: 100%;
            text-align: center;
        }
}

/* ── Scroll reveal ───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}
