:root {
    --bg: #f8fafc;
    --ink: #0f172a;
    --slate: #64748b;
    --border: #e2e8f0;
    --blue: #1d4ed8;
    --amber: #f59e0b;
    --dark: #040d1a;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font:
        15px/1.55 "DM Sans",
        system-ui,
        sans-serif;
}
.container {
    max-width: 960px;
    margin: auto;
    padding: 0 2rem;
}
.nav {
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background: #ffffffef;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}
.brand {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #10265d;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    color: #fff;
    font: 700 25px Georgia;
    background: #10265d;
    border-radius: 50% 50% 50% 5px;
}
.nav-links {
    display: flex;
    gap: 4px;
}
.nav-links a {
    padding: 6px 14px;
    text-decoration: none;
    color: var(--slate);
    font-size: 14px;
    font-weight: 500;
}
.nav-links a:hover {
    color: var(--blue);
}
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 43px;
    padding: 10px 23px;
    border: 1px solid transparent;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition:
        0.2s transform,
        0.2s box-shadow;
}
.button:hover {
    transform: translateY(-2px);
}
.button-blue {
    background: var(--blue);
    color: #fff;
}
.button-amber {
    background: var(--amber);
    color: #16130b;
    box-shadow: 0 4px 20px #f59e0b5c;
}
.button-ghost {
    color: #94a3b8;
    border-color: #ffffff2c;
}
.button-outline {
    color: #334155;
    border-color: var(--border);
    background: #fff;
}
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 22px;
}
.dark-grid {
    background-color: var(--dark);
    background-image: linear-gradient(#ffffff0a 1px, transparent 1px),
        linear-gradient(90deg, #ffffff0a 1px, transparent 1px),
        radial-gradient(ellipse at 18% 0, #f59e0b12, transparent 38%);
    background-size:
        48px 48px,
        48px 48px,
        auto;
}
.hero {
    padding: 78px 0 70px;
    text-align: center;
}
.hero-content {
    max-width: 900px;
    padding-bottom: 20px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 10px;
    text-transform: uppercase;
}
.eyebrow i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.amber {
    color: var(--amber);
    background: #f59e0b18;
    border: 1px solid #f59e0b33;
    padding: 5px 15px;
    border-radius: 20px;
}
.hero h1,
.white-title {
    margin: 25px 0 18px;
    color: #fff;
    font-size: clamp(34px, 5.5vw, 54px);
    line-height: 1.1;
    letter-spacing: -2px;
}
/*.hero h1 span {
    font-weight: 300;
    color: #94a3b8;
}*/
.hero h1 small {
    font-size: 0.9em;
    color: #94a3b8;
    font-weight: 300;
}
.lede,
.section-lede {
    max-width: 540px;
    margin: 0 auto 33px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
}
.button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.ticker {
    overflow: hidden;
    background: #0b1929;
    color: #64748b;
    border-block: 1px solid #ffffff0a;
    white-space: nowrap;
}
.ticker-track {
    display: flex;
    width: max-content;
    gap: 28px;
    padding: 13px 0;
    animation: ticker 30s linear infinite;
}
.ticker b {
    color: #1e3a5f;
}
@keyframes ticker {
    to {
        transform: translateX(-35%);
    }
}
.proof {
    background: #fff;
    border-bottom: 1px solid var(--border);
}
.stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding-block: 25px;
}
.stats div {
    text-align: center;
    padding: 10px;
    border-right: 1px solid var(--border);
}
.stats div:last-child {
    border: 0;
}
.stats strong {
    display: block;
    font-size: 23px;
    letter-spacing: -0.5px;
}
.stats span {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.3;
}
.section {
    padding: 78px 0;
}
.white {
    background: #fff;
}
.pale {
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.centered {
    text-align: center;
}
.section-label {
    margin: 0 0 10px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.section h2 {
    margin: 0 0 12px;
    font-size: clamp(25px, 4vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.8px;
}
.section h2 em {
    font-style: normal;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    background-clip: text;
    color: transparent;
}
.grid {
    display: grid;
    gap: 14px;
}
.four {
    grid-template-columns: repeat(4, 1fr);
}
.three {
    grid-template-columns: repeat(3, 1fr);
}
.two {
    grid-template-columns: repeat(2, 1fr);
}
.solution-preview {
    margin-bottom: 24px;
    text-align: left;
}
.preview-card,
.case-card,
.team article {
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    transition: 0.2s;
}
.preview-card:hover,
.case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 28px #0f172a16;
}
.preview-card b {
    font-size: 25px;
}
.preview-card h3,
.case-card h3 {
    font-size: 14px;
    margin: 10px 0 5px;
}
.preview-card p,
.case-card p {
    margin: 0;
    color: var(--slate);
    font-size: 12px;
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
}
.case-card {
    cursor: pointer;
    border-top-width: 1px;
}
.case-card .pill,
.product-chip {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    letter-spacing: 0.07em;
    font-weight: 700;
    background: var(--tint);
    color: var(--accent);
    text-transform: uppercase;
}
.case-card h3 {
    font-size: 15px;
    line-height: 1.4;
}
.case-card strong {
    display: block;
    margin-top: 13px;
    padding-top: 10px;
    border-top: 1px solid var(--tint);
    font-size: 13px;
    color: var(--accent);
}
.why {
    padding-block: 90px;
}
.muted {
    color: #475569;
}
.white-title {
    font-size: clamp(30px, 5vw, 48px);
    margin: 0 0 40px;
}
.advantage-grid {
    text-align: left;
}
.advantage-grid article {
    padding: 28px;
    border: 1px solid #ffffff12;
    border-radius: 20px;
    background: #ffffff08;
}
.advantage-grid b {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid #60a5fa44;
    border-radius: 15px;
    color: #60a5fa;
    font-size: 24px;
}
.advantage-grid h3 {
    color: #fff;
    font-size: 18px;
    margin: 17px 0 8px;
}
.advantage-grid p {
    margin: 0;
    color: #94a3b8;
    font-size: 13.5px;
}
.tabs {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin: 36px 0 18px;
}
.tab,
.filter {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 7px 14px;
    background: #f1f5f9;
    color: #64748b;
    font: 600 12px inherit;
    cursor: pointer;
}
.tab.active,
.filter.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.solution-list {
    display: grid;
    gap: 12px;
}
.solution-group {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}
.solution-toggle {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 0;
    background: #fff;
    text-align: left;
    cursor: pointer;
}
.solution-toggle .icon {
    font-size: 25px;
}
.solution-toggle h3 {
    font-size: 17px;
    margin: 0;
}
.solution-toggle p {
    margin: 2px 0 0;
    color: var(--slate);
    font-size: 12px;
}
.solution-toggle .arrow {
    margin-left: auto;
    font-size: 22px;
    color: var(--slate);
}
.products {
    display: none;
    padding: 0 20px 20px;
    border-top: 1px solid var(--border);
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.solution-group.open .products {
    display: grid;
}
.solution-group.open .arrow {
    transform: rotate(90deg);
}
.product {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 13px;
}
.product h4 {
    margin: 10px 0 5px;
    font-size: 15px;
}
.product p {
    margin: 0;
    color: var(--slate);
    font-size: 12px;
}
.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 30px 0 18px;
}
.team article {
    --accent: #1d4ed8;
    text-align: left;
}
.team article div {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--blue);
    font-weight: 800;
}
.team h3 {
    margin: 14px 0 5px;
}
.team p {
    color: var(--slate);
    font-size: 13px;
    margin: 0;
}
.final-cta {
    padding-block: 92px;
}
.final-cta small {
    display: block;
    margin-top: 45px;
    color: #1e3a5f;
    font-size: 11px;
}
.dark-lede {
    color: #64748b;
}
.ai-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px 9px 10px;
    border: 1px solid #e8eaed;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 4px 20px #0002;
    font: 700 13px inherit;
    cursor: pointer;
}
.ai-button span,
.ai-head span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: conic-gradient(#4285f4, #9b72cb, #d96570, #f4b400, #0f9d58, #4285f4);
    animation: spin 5s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.ai-panel {
    position: fixed;
    z-index: 40;
    right: 20px;
    bottom: 20px;
    width: min(390px, calc(100vw - 40px));
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 15px 45px #0003;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
}
.ai-panel.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
}
.ai-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--dark);
    color: #fff;
}
.ai-head strong {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ai-head span {
    width: 23px;
    height: 23px;
}
.ai-head button {
    border: 0;
    background: none;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}
.ai-body {
    padding: 20px;
}
.ai-body p {
    margin-top: 0;
    color: #334155;
}
.suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.suggestions button {
    padding: 6px 9px;
    border: 1px solid #bfdbfe;
    border-radius: 15px;
    background: #eff6ff;
    color: var(--blue);
    font: 500 11px inherit;
}
.ai-input {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--border);
}
.ai-input input {
    min-width: 0;
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px;
    font: inherit;
}
.ai-input button {
    width: 36px;
    border: 0;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    font-size: 18px;
}
@media (max-width: 720px) {
    .nav {
        padding: 0 1rem;
    }
    .menu-toggle {
        display: block;
        order: 2;
    }
    .nav-cta {
        display: none;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        padding: 10px;
        background: #fff;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 10px;
    }
    .container {
        padding-inline: 1.25rem;
    }
    .hero {
        padding-block: 65px 57px;
    }
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats div:nth-child(3) {
        border-right: 0;
    }
    .stats div {
        padding: 13px 8px;
    }
    .four,
    .three {
        grid-template-columns: repeat(2, 1fr);
    }
    .section {
        padding-block: 58px;
    }
    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .products {
        grid-template-columns: 1fr;
    }
    .ai-button {
        right: 15px;
        bottom: 15px;
    }
}
@media (max-width: 470px) {
    .hero h1 {
        letter-spacing: -1.3px;
    }
    .two,
    .three,
    .four {
        grid-template-columns: 1fr;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats div:nth-child(3) {
        border-right: 1px solid var(--border);
    }
    .stats div:nth-child(even) {
        border-right: 0;
    }
    .section h2 {
        font-size: 27px;
    }
    .products {
        padding-inline: 13px;
    }
    .solution-toggle {
        padding: 15px;
    }
    .button {
        width: 100%;
    }
    .button-row {
        display: grid;
    }
    .filters {
        justify-content: flex-start;
    }
}
