* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: #0f172a;
    background: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #e2e8f0;
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -.04em;
}

.logo span {
    color: #155eef;
}

nav {
    display: flex;
    gap: 24px;
}

nav a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 14px;
}

.nav-cta {
    text-decoration: none;
    background: #155eef;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
}

.hero {
    padding: 95px 0 80px;
    background:
        radial-gradient(circle at top right, rgba(21,94,239,.14), transparent 35%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 54px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: #eaf1ff;
    color: #155eef;
    border: 1px solid #c7d7fe;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.badge-light {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: #ffffff;
}

h1 {
    font-size: clamp(44px, 6vw, 72px);
    line-height: .98;
    letter-spacing: -.06em;
    margin: 24px 0;
}

.hero-copy p {
    color: #475569;
    font-size: 19px;
    max-width: 720px;
    margin-bottom: 16px;
}

.hero-actions,
.contact-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
}

.btn-primary {
    background: #155eef;
    color: #ffffff;
    border: 1px solid #155eef;
}

.btn-secondary {
    background: #ffffff;
    color: #155eef;
    border: 1px solid #c7d7fe;
}

.btn-secondary.dark {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,.35);
}

.hero-card {
    background: #0f172a;
    color: #ffffff;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 30px 80px rgba(15,23,42,.22);
}

.status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    margin-bottom: 24px;
    font-weight: 700;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}

.metric {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 20px;
    margin-top: 14px;
}

.metric strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 8px;
}

.metric span {
    color: #cbd5e1;
}

.trust-bar {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
}

.trust-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.trust-grid span {
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.trust-grid span:before {
    content: "✓";
    color: #155eef;
    margin-right: 6px;
}

.section {
    padding: 92px 0;
}

.section-soft {
    background: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 44px;
}

.section-header h2,
.about-grid h2,
.contact-copy h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -.04em;
    margin: 18px 0;
}

.section-header p {
    color: #64748b;
    font-size: 18px;
}

.grid {
    display: grid;
    gap: 22px;
}

.grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.grid.two {
    grid-template-columns: repeat(2, 1fr);
}

.card,
.platform-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 16px 45px rgba(15,23,42,.06);
}

.card h3,
.platform-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.card p,
.platform-card p {
    color: #64748b;
}

.platform-card ul {
    list-style: none;
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.platform-card li {
    color: #334155;
    font-weight: 700;
}

.platform-card li:before {
    content: "✓";
    color: #155eef;
    margin-right: 8px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.industry-grid div {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px;
    font-weight: 800;
    color: #334155;
    box-shadow: 0 12px 32px rgba(15,23,42,.05);
}

.section-dark {
    background: #0f172a;
    color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.about-grid p {
    color: #cbd5e1;
    font-size: 18px;
    margin-bottom: 16px;
}

.contact-final {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 36px;
    align-items: stretch;
    background: #0f172a;
    color: #ffffff;
    border-radius: 30px;
    padding: 48px;
    box-shadow: 0 24px 70px rgba(15,23,42,.18);
}

.contact-copy p {
    color: #cbd5e1;
    font-size: 18px;
    max-width: 680px;
}

.contact-info-box {
    background: #ffffff;
    color: #0f172a;
    border-radius: 24px;
    padding: 30px;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-line {
    border-top: 1px solid #e2e8f0;
    padding: 18px 0;
}

.contact-line strong {
    display: block;
    color: #64748b;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
}

.contact-line span,
.contact-line a {
    color: #0f172a;
    font-size: 16px;
    line-height: 1.6;
    text-decoration: none;
}

.contact-line a {
    font-weight: 800;
    color: #155eef;
}

.footer {
    background: #020617;
    color: #cbd5e1;
    padding: 54px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
}

.footer strong {
    color: #ffffff;
    font-size: 20px;
}

.footer p {
    margin-top: 14px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.copyright {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 20px;
    color: #94a3b8;
    font-size: 14px;
}

@media (max-width: 920px) {
    nav,
    .nav-cta {
        display: none;
    }

    .hero-grid,
    .grid.four,
    .grid.two,
    .industry-grid,
    .about-grid,
    .contact-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 70px;
    }

    .section {
        padding: 70px 0;
    }

    .contact-panel {
        padding: 32px;
    }
}
