:root {
    --bg: #ffffff;
    --soft: #f6f8fb;
    --text: #132033;
    --muted: #657186;
    --line: #e4e9f0;

    --primary: #24556a;
    --primary-dark: #173d4d;
    --primary-soft: #e9f2f5;

    --accent: #3f7488;
    --dark: #12232d;

    --radius: 18px;

    --shadow:
        0 20px 60px
        rgba(16, 32, 48, 0.09);
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    background: var(--bg);
    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;
}


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


img {
    max-width: 100%;
}


.container {
    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background:
        rgba(255, 255, 255, 0.97);

    border-bottom:
        1px solid var(--line);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter:
        blur(16px);
}


.header-inner {
    min-height: 120px;

    display: flex;
    align-items: center;

    gap: 40px;
}


.product-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex-shrink: 0;

    margin-right: auto;
}


.product-logo img {
    display: block;

    width: 380px;
    height: 105px;

    max-width: 100%;

    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 28px;

    color: #475569;

    font-size: 14px;
    font-weight: 550;

    white-space: nowrap;
}


.nav a {
    transition:
        color 0.2s ease;
}


.nav a:hover {
    color: var(--primary);
}


.nav-cta {
    padding:
        11px
        18px;

    border-radius: 10px;

    background: var(--primary);

    color: #ffffff !important;

    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.nav-cta:hover {
    background: var(--primary-dark);

    transform: translateY(-1px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    padding:
        70px
        0
        90px;

    background:
        radial-gradient(
            circle at 20% 25%,
            #edf5f8 0,
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #ffffff,
            #f8fbfc
        );
}


.hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -210px;
    bottom: -230px;

    border-radius: 50%;

    background:
        rgba(233, 242, 245, 0.7);
}


.hero-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 72px;
}


/* =========================================================
   HERO LEFT - INFOGRAPHIC
========================================================= */

.hero-platform-visual {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}


.hero-platform-image {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 700px;

    object-fit: contain;

    object-position:
        left center;

    border-radius: 24px;

    box-shadow:
        0 22px 70px
        rgba(20, 52, 68, 0.10);
}


/* =========================================================
   HERO RIGHT - COPY
========================================================= */

.hero-copy {
    width: 100%;
    min-width: 0;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: center;
}


.eyebrow {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 750;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.hero-copy .eyebrow {
    margin-bottom: 18px;
}


.hero h1 {
    margin: 0;

    max-width: 570px;

    font-size:
        clamp(
            46px,
            4.6vw,
            68px
        );

    line-height: 1.04;

    letter-spacing: -0.045em;
}


.hero-text {
    max-width: 580px;

    margin:
        28px
        0
        0;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.72;
}


.hero-actions {
    margin-top: 34px;

    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}


.hero-points {
    margin-top: 30px;

    max-width: 580px;

    display: grid;

    grid-template-columns:
        repeat(2, auto);

    gap:
        10px
        24px;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    min-height: 48px;

    padding:
        0
        20px;

    border-radius: 11px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 700;

    transition: 0.2s ease;
}


.button-primary {
    background: var(--primary);

    color: #ffffff;
}


.button-primary:hover {
    background: var(--primary-dark);

    transform: translateY(-1px);
}


.button-secondary {
    border:
        1px solid var(--line);

    background: #ffffff;
}


.button-secondary:hover {
    border-color: #bdc9d5;

    transform: translateY(-1px);
}


/* =========================================================
   COMMON SECTIONS
========================================================= */

.section {
    padding:
        96px
        0;
}


.section-soft {
    background: var(--soft);
}


.section-dark {
    background: var(--dark);

    color: #ffffff;
}


.section-heading {
    max-width: 760px;

    margin-bottom: 48px;
}


.section-heading.centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.section-heading h2,
.split-copy h2,
.cta-card h2 {
    margin:
        0
        0
        18px;

    font-size:
        clamp(
            34px,
            4vw,
            48px
        );

    line-height: 1.12;

    letter-spacing: -0.03em;
}


.section-heading p,
.split-copy > p,
.cta-card p {
    margin: 0;

    color: var(--muted);

    font-size: 17px;
}


.dark-heading p {
    color: #b6c4cc;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.three-column {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.feature-card {
    padding: 28px;

    border:
        1px solid var(--line);

    border-radius: var(--radius);

    background: #ffffff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.feature-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 40px
        rgba(16, 32, 48, 0.07);
}


.feature-icon {
    width: 44px;
    height: 44px;

    margin-bottom: 20px;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-soft);

    color: var(--primary);

    font-weight: 800;
}


.feature-card h3,
.capability h3,
.use-case-grid h3 {
    margin:
        0
        0
        10px;

    font-size: 20px;
}


.feature-card p,
.capability p,
.use-case-grid p {
    color: var(--muted);
}


.feature-card ul {
    margin:
        20px
        0
        0;

    padding:
        18px
        0
        0
        18px;

    border-top:
        1px solid var(--line);

    color: #506072;

    font-size: 14px;
}


.feature-card li {
    margin-bottom: 7px;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.capability-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid var(--line);

    border-left:
        1px solid var(--line);
}


.capability {
    padding: 30px;

    background: #ffffff;

    border-right:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);

    transition:
        background 0.2s ease;
}


.capability:hover {
    background: #fbfcfd;
}


.capability-number {
    display: block;

    margin-bottom: 40px;

    color: #92a2b1;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   PRODUCT SHOWCASE
========================================================= */

.product-showcase {
    position: relative;

    width: 100%;

    padding:
        100px
        0
        105px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(225, 238, 255, 0.55),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
}


/* =========================================================
   PRODUCT SHOWCASE HEADING
========================================================= */

.product-showcase-heading {
    width: 100%;

    max-width: 760px;

    margin:
        0
        auto
        46px;

    text-align: center;
}


.product-showcase-heading h2 {
    margin:
        0
        0
        18px;

    font-size:
        clamp(
            34px,
            4vw,
            48px
        );

    line-height: 1.12;

    letter-spacing: -0.03em;
}


.product-showcase-heading p {
    width: 100%;

    max-width: 680px;

    margin:
        0
        auto;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.65;
}


/* =========================================================
   PRODUCT SHOWCASE IMAGE

   IMPORTANT:
   This is intentionally 900px while the normal page
   container is 1180px.

   That means the screenshot cannot stretch across
   the full page.
========================================================= */

.product-showcase-media {
    display: block;

    width: 900px;
    max-width: 100%;

    margin:
        0
        auto;

    padding: 8px;

    box-sizing: border-box;

    border:
        1px solid
        rgba(36, 85, 106, 0.13);

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 24px 65px
        rgba(23, 61, 77, 0.10);

    overflow: hidden;
}


.product-showcase-media img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    margin: 0;

    padding: 0;

    border-radius: 14px;

    object-fit: contain;
}


/* =========================================================
   PRODUCT PROOF POINTS
========================================================= */

.product-proof-points {
    width: 900px;
    max-width: 100%;

    margin:
        38px
        auto
        0;

    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(0, 1fr)
        );

    gap: 0;
}


.product-proof-item {
    min-width: 0;

    padding:
        4px
        18px;

    text-align: center;
}


.product-proof-item:not(:last-child) {
    border-right:
        1px solid var(--line);
}


.product-proof-item strong {
    display: block;

    margin-bottom: 6px;

    color: var(--text);

    font-size: 15px;
    font-weight: 700;
}


.product-proof-item span {
    display: block;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   SPLIT SECTIONS
========================================================= */

.split-section {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 70px;
}


.mini-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 15px;

    margin-top: 30px;
}


.mini-grid div {
    padding: 17px;

    border:
        1px solid var(--line);

    border-radius: 12px;
}


.mini-grid strong,
.mini-grid span {
    display: block;
}


.mini-grid span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   KNOWLEDGE ASSISTANT MOCKUP
========================================================= */

.mock-window {
    border:
        1px solid var(--line);

    border-radius: 20px;

    background: #ffffff;

    overflow: hidden;

    box-shadow: var(--shadow);
}


.mock-topbar {
    min-height: 54px;

    padding:
        0
        16px;

    display: flex;
    align-items: center;

    gap: 7px;

    border-bottom:
        1px solid var(--line);
}


.mock-topbar span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #cbd5df;
}


.mock-topbar strong {
    margin-left: 7px;

    font-size: 13px;
}


.mock-content {
    min-height: 330px;

    padding: 28px;

    background: #f7f9fb;
}


.mock-bubble {
    max-width: 78%;

    margin-bottom: 18px;

    padding:
        13px
        15px;

    border-radius: 14px;

    font-size: 14px;
}


.mock-bubble.user {
    margin-left: auto;

    background: var(--primary);

    color: #ffffff;
}


.mock-bubble.assistant {
    background: #ffffff;

    border:
        1px solid var(--line);
}


.mock-source {
    margin-top: 14px;

    padding-top: 10px;

    border-top:
        1px solid var(--line);

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   AGENTS
========================================================= */

.agent-flow {
    margin-top: 50px;

    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;

    gap: 18px;
}


.agent-flow > div:not(.agent-arrow) {
    min-height: 150px;

    padding: 24px;

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.05);
}


.agent-flow span,
.agent-flow strong,
.agent-flow small {
    display: block;
}


.agent-flow span {
    margin-bottom: 24px;

    color: #91b3c0;

    font-size: 11px;
    font-weight: 800;
}


.agent-flow strong {
    font-size: 18px;
}


.agent-flow small {
    margin-top: 7px;

    color: #aebec6;
}


.agent-arrow {
    color: #8299a3;

    font-size: 22px;
}


/* =========================================================
   SECURITY
========================================================= */

.security-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 15px;
}


.security-item {
    padding: 23px;

    border:
        1px solid var(--line);

    border-radius: 14px;
}


.security-item strong {
    display: block;

    margin-bottom: 6px;
}


.security-item p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   USE CASES
========================================================= */

.use-case-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.use-case-grid article {
    padding: 25px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background: #ffffff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.use-case-grid article:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 35px
        rgba(16, 32, 48, 0.06);
}


/* =========================================================
   EMBEDDED AI WIDGET
========================================================= */

.widget-section {
    overflow: hidden;
}


.code-box {
    margin-top: 28px;

    padding: 16px;

    border-radius: 12px;

    background: #152632;

    color: #d6e8ee;

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: 12px;

    overflow-wrap: anywhere;
}


.widget-demo {
    max-width: 380px;

    margin: auto;

    border:
        1px solid var(--line);

    border-radius: 20px;

    overflow: hidden;

    background: #ffffff;

    box-shadow: var(--shadow);
}


.widget-header {
    padding:
        15px
        17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #475d68;

    color: #ffffff;
}


.widget-header strong,
.widget-header small {
    display: block;
}


.widget-header small {
    color: #dbe3e7;
}


.widget-body {
    min-height: 285px;

    padding: 17px;

    background: #f7f9fb;
}


.widget-message {
    max-width: 82%;

    margin-bottom: 12px;

    padding:
        10px
        12px;

    border-radius: 13px;

    font-size: 13px;
}


.widget-message.assistant {
    background: #ffffff;

    border:
        1px solid var(--line);
}


.widget-message.user {
    margin-left: auto;

    background: #607681;

    color: #ffffff;
}


.widget-input {
    padding: 10px;

    display: flex;
    align-items: center;

    gap: 8px;

    border-top:
        1px solid var(--line);
}


.widget-input span {
    flex: 1;

    padding: 10px;

    border:
        1px solid var(--line);

    border-radius: 9px;

    color: #8d9aa6;

    font-size: 12px;
}


.widget-input button {
    height: 37px;

    border: 0;

    border-radius: 9px;

    padding:
        0
        13px;

    background: #526b76;

    color: #ffffff;
}


.widget-powered {
    padding:
        0
        10px
        9px;

    text-align: center;

    color: #99a5af;

    font-size: 9px;
}


/* =========================================================
   FINAL CTA
========================================================= */

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


.cta-card {
    padding: 48px;

    border-radius: 24px;

    display: grid;

    grid-template-columns:
        1.4fr
        auto;

    align-items: center;

    gap: 50px;

    background:
        linear-gradient(
            135deg,
            #edf4f6,
            #f9fbfc
        );

    border:
        1px solid #dce7eb;
}


.cta-actions {
    display: flex;
    flex-direction: column;

    gap: 10px;

    min-width: 170px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    margin-top: 70px;

    padding:
        30px
        0;

    border-top:
        1px solid var(--line);

    color: var(--muted);

    font-size: 12px;
}


.footer-inner {
    display: flex;

    justify-content: space-between;

    gap: 30px;
}


.footer-company-link {
    color: #132033;
    font-weight: 600;
    text-decoration: none;
}

.footer-company-link:hover {
    color: #24556a;
}


/* =========================================================
   RESPONSIVE - SMALL DESKTOP
========================================================= */

@media (max-width: 1050px) {

    .header-inner {
        min-height: 108px;

        gap: 24px;
    }


    .product-logo img {
        width: 320px;
        height: 90px;
    }


    .nav {
        gap: 16px;

        font-size: 13px;
    }


    .hero-grid {
        gap: 46px;
    }


    .hero-platform-image {
        max-height: 610px;
    }


    .hero h1 {
        font-size:
            clamp(
                42px,
                4.6vw,
                58px
            );
    }

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 900px) {

    .header-inner {
        min-height: 100px;
    }


    .nav {
        display: none;
    }


    .product-logo {
        margin-right: auto;
    }


    .product-logo img {
        width: 300px;
        height: 82px;
    }


    /* HERO */

    .hero {
        padding:
            60px
            0
            75px;
    }


    .hero-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .hero-copy {
        order: 1;

        max-width: 720px;
    }


    .hero-platform-visual {
        order: 2;

        justify-content: center;
    }


    .hero-platform-image {
        width: auto;

        max-width: 650px;
        max-height: none;

        margin: 0 auto;
    }


    .hero h1 {
        max-width: 700px;
    }


    .hero-text {
        max-width: 680px;
    }


    /* PRODUCT SHOWCASE */

    .product-showcase {
        padding:
            80px
            0;
    }


    .product-showcase-media {
        width: 100%;

        max-width: 100%;
    }


    .product-proof-points {
        width: 100%;

        max-width: 100%;

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap:
            24px
            0;
    }


    .product-proof-item {
        padding:
            8px
            20px;
    }


    .product-proof-item:not(:last-child) {
        border-right: 0;
    }


    /* OTHER SECTIONS */

    .split-section,
    .cta-card {
        grid-template-columns: 1fr;
    }


    .three-column,
    .capability-grid,
    .use-case-grid {
        grid-template-columns:
            1fr
            1fr;
    }


    .agent-flow {
        grid-template-columns: 1fr;
    }


    .agent-arrow {
        transform: rotate(90deg);

        text-align: center;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 620px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                1180px
            );
    }


    /* HEADER */

    .header-inner {
        min-height: 88px;
    }


    .product-logo img {
        width: 260px;
        height: 72px;
    }


    /* HERO */

    .hero {
        padding:
            48px
            0
            65px;
    }


    .hero h1 {
        font-size: 42px;
    }


    .hero-text {
        font-size: 17px;

        line-height: 1.65;
    }


    .hero-points {
        grid-template-columns: 1fr;
    }


    .hero-platform-image {
        width: 100%;

        max-width: 100%;

        border-radius: 16px;
    }


    /* GENERAL SECTIONS */

    .section {
        padding:
            70px
            0;
    }


    .three-column,
    .capability-grid,
    .use-case-grid,
    .mini-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }


    .split-section {
        gap: 45px;
    }


    /* PRODUCT SHOWCASE */

    .product-showcase {
        padding:
            65px
            0;
    }


    .product-showcase-heading {
        margin-bottom: 32px;
    }


    .product-showcase-media {
        width: 100%;

        max-width: 100%;

        margin:
            0
            auto;

        padding: 4px;

        border-radius: 14px;
    }


    .product-showcase-media img {
        display: block;

        width: 100%;

        max-width: 100%;

        height: auto;

        border-radius: 10px;
    }


    .product-proof-points {
        width: 100%;

        grid-template-columns: 1fr;

        margin-top: 28px;

        gap: 0;
    }


    .product-proof-item {
        padding:
            15px
            0;

        text-align: left;

        border-bottom:
            1px solid var(--line);
    }


    .product-proof-item:not(:last-child) {
        border-right: 0;
    }


    /* CTA */

    .cta-card {
        padding: 30px;
    }


    /* FOOTER */

    .footer-inner {
        flex-direction: column;

        gap: 10px;
    }

}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .header-inner {
        min-height: 82px;
    }


    .product-logo img {
        width: 230px;
        height: 66px;
    }


    .hero h1 {
        font-size: 37px;
    }


    .hero-actions {
        width: 100%;

        flex-direction: column;
    }


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

}

