:root {
    --ix-navy: #102a43;
    --ix-navy-2: #163b61;
    --ix-blue: #1f65d6;
    --ix-blue-2: #4b8df8;
    --ix-cyan: #12a8b8;
    --ix-ink: #172230;
    --ix-muted: #5d6b7c;
    --ix-line: #dce5ef;
    --ix-soft: #f4f8fc;
    --ix-soft-blue: #edf4ff;
    --ix-white: #fff;
    --ix-success: #16855b;
    --ix-shadow: 0 18px 48px rgba(17, 43, 73, .10);
    --ix-radius: 18px;
    --ix-max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ix-ink);
    background: var(--ix-white);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--ix-blue);
    text-decoration: none;
}

a:hover {
    color: var(--ix-navy);
}

img {
    display: block;
    max-width: 100%;
}

.ix-container {
    width: min(calc(100% - 40px), var(--ix-max));
    margin-inline: auto;
}

.ix-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(220, 229, 239, .9);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
}

.ix-header-row {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.ix-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ix-navy);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.45px;
    white-space: nowrap;
}

.ix-brand-mark {
    width: 34px;
    height: 34px;
    position: relative;
    display: inline-block;
    border-radius: 11px;
    background: linear-gradient(145deg, var(--ix-blue), var(--ix-cyan));
    box-shadow: 0 7px 18px rgba(31, 101, 214, .24);
}

.ix-brand-mark::before,
.ix-brand-mark::after {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, .94);
    border-radius: 8px;
}

.ix-brand-mark::before {
    width: 7px;
    height: 22px;
    left: 9px;
    top: 6px;
    transform: skew(-12deg);
}

.ix-brand-mark::after {
    width: 12px;
    height: 7px;
    right: 7px;
    top: 13px;
}

.ix-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.ix-nav a {
    color: #34475b;
    font-size: 14px;
    font-weight: 650;
}

.ix-nav a[aria-current="page"] {
    color: var(--ix-blue);
}

.ix-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 750;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.ix-btn:hover {
    transform: translateY(-1px);
}

.ix-btn-primary {
    color: var(--ix-white);
    background: linear-gradient(135deg, var(--ix-blue), #174ea6);
    box-shadow: 0 10px 24px rgba(31, 101, 214, .24);
}

.ix-btn-primary:hover {
    color: var(--ix-white);
    box-shadow: 0 14px 28px rgba(31, 101, 214, .30);
}

.ix-btn-secondary {
    color: var(--ix-navy);
    border-color: #cbd8e6;
    background: var(--ix-white);
}

.ix-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 68px;
    background:
        radial-gradient(circle at 88% 8%, rgba(18, 168, 184, .13), transparent 31%),
        radial-gradient(circle at 5% 15%, rgba(31, 101, 214, .12), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.ix-hero::after {
    width: 520px;
    height: 520px;
    position: absolute;
    z-index: 0;
    right: -280px;
    bottom: -340px;
    content: "";
    border: 1px solid rgba(31, 101, 214, .15);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(31, 101, 214, .025), 0 0 0 140px rgba(18, 168, 184, .018);
}

.ix-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    align-items: center;
    gap: 64px;
}

.ix-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--ix-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.ix-eyebrow::before {
    width: 28px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--ix-blue), var(--ix-cyan));
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--ix-navy);
    line-height: 1.18;
}

h1 {
    max-width: 780px;
    margin-bottom: 22px;
    font-size: clamp(38px, 5vw, 62px);
    letter-spacing: -2.25px;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(29px, 3.5vw, 42px);
    letter-spacing: -1.2px;
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: -.25px;
}

.ix-hero-copy {
    max-width: 730px;
    margin: 0 0 28px;
    color: #4b5e73;
    font-size: 18px;
}

.ix-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ix-chips {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.ix-chip {
    padding: 7px 11px;
    color: #3d5268;
    border: 1px solid #d6e2ee;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 700;
}

.ix-console {
    padding: 18px;
    border: 1px solid rgba(207, 220, 235, .9);
    border-radius: 24px;
    background: rgba(255, 255, 255, .90);
    box-shadow: var(--ix-shadow);
}

.ix-console-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
}

.ix-console-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cad5e1;
}

.ix-console-title {
    margin-left: 6px;
    color: #53667a;
    font-size: 12px;
    font-weight: 750;
}

.ix-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.ix-kpi {
    min-height: 106px;
    padding: 16px;
    border: 1px solid #e1e9f2;
    border-radius: 15px;
    background: linear-gradient(145deg, #fff, #f5f9fd);
}

.ix-kpi-label {
    display: block;
    margin-bottom: 11px;
    color: var(--ix-muted);
    font-size: 12px;
    font-weight: 700;
}

.ix-kpi strong {
    display: block;
    color: var(--ix-navy);
    font-size: 24px;
    line-height: 1.1;
}

.ix-kpi small {
    color: var(--ix-success);
    font-size: 11px;
    font-weight: 750;
}

.ix-section-nav {
    position: sticky;
    z-index: 35;
    top: 72px;
    border-bottom: 1px solid var(--ix-line);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
}

.ix-section-links {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.ix-section-links::-webkit-scrollbar {
    display: none;
}

.ix-section-links a {
    color: #516479;
    font-size: 13px;
    font-weight: 720;
    white-space: nowrap;
}

.ix-section {
    padding: 84px 0;
}

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

.ix-section-dark {
    color: #dbe7f5;
    background:
        radial-gradient(circle at 90% 20%, rgba(34, 148, 214, .20), transparent 30%),
        linear-gradient(135deg, #0e2a45, #153f63);
}

.ix-section-dark h2,
.ix-section-dark h3 {
    color: #fff;
}

.ix-section-dark .ix-lead {
    color: #c6d6e8;
}

.ix-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.ix-heading.center {
    margin-inline: auto;
    text-align: center;
}

.ix-lead {
    margin: 0;
    color: var(--ix-muted);
    font-size: 17px;
}

.ix-grid-2,
.ix-grid-3,
.ix-grid-4 {
    display: grid;
    gap: 20px;
}

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

.ix-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

.ix-card {
    padding: 25px;
    border: 1px solid var(--ix-line);
    border-radius: var(--ix-radius);
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 43, 73, .045);
}

.ix-card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    color: var(--ix-blue);
    border: 1px solid #cfe0f7;
    border-radius: 12px;
    background: var(--ix-soft-blue);
    font-size: 18px;
    font-weight: 850;
}

.ix-card p {
    margin: 0;
    color: var(--ix-muted);
}

.ix-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.ix-list li {
    position: relative;
    margin: 9px 0;
    padding-left: 22px;
    color: #536579;
}

.ix-list li::before {
    position: absolute;
    left: 0;
    top: .65em;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ix-blue), var(--ix-cyan));
}

.ix-process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 13px;
    counter-reset: ix-step;
}

.ix-step {
    position: relative;
    min-height: 170px;
    padding: 23px 20px;
    border: 1px solid var(--ix-line);
    border-radius: 16px;
    background: #fff;
    counter-increment: ix-step;
}

.ix-step::before {
    display: block;
    margin-bottom: 24px;
    color: var(--ix-blue);
    content: "0" counter(ix-step);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
}

.ix-step p {
    margin: 0;
    color: var(--ix-muted);
    font-size: 14px;
}

.ix-feature-band {
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 38px;
    border: 1px solid #cdddf0;
    border-radius: 22px;
    background: linear-gradient(135deg, #eef5ff, #f4fbfc);
}

.ix-mini-dashboard {
    padding: 17px;
    border: 1px solid #d5e1ee;
    border-radius: 17px;
    background: #fff;
}

.ix-bars {
    min-height: 160px;
    display: flex;
    align-items: end;
    gap: 10px;
    padding: 18px 10px 6px;
    border-bottom: 1px solid #dce5ef;
}

.ix-bars span {
    flex: 1;
    min-width: 12px;
    border-radius: 7px 7px 2px 2px;
    background: linear-gradient(180deg, var(--ix-blue-2), var(--ix-blue));
}

.ix-bars span:nth-child(even) {
    background: linear-gradient(180deg, #52c5ca, var(--ix-cyan));
}

.ix-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 13px;
}

.ix-stat {
    padding: 10px;
    border-radius: 10px;
    background: var(--ix-soft);
}

.ix-stat small,
.ix-stat strong {
    display: block;
}

.ix-stat small {
    color: var(--ix-muted);
    font-size: 10px;
}

.ix-stat strong {
    color: var(--ix-navy);
}

.ix-faq {
    display: grid;
    gap: 12px;
}

.ix-faq details {
    border: 1px solid var(--ix-line);
    border-radius: 14px;
    background: #fff;
}

.ix-faq summary {
    padding: 18px 52px 18px 20px;
    position: relative;
    color: var(--ix-navy);
    cursor: pointer;
    font-weight: 750;
    list-style: none;
}

.ix-faq summary::-webkit-details-marker {
    display: none;
}

.ix-faq summary::after {
    position: absolute;
    right: 20px;
    content: "+";
    color: var(--ix-blue);
    font-size: 22px;
    line-height: 1;
}

.ix-faq details[open] summary::after {
    content: "−";
}

.ix-faq p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--ix-muted);
}

.ix-cta {
    padding: 52px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 5%, rgba(64, 183, 213, .28), transparent 30%),
        linear-gradient(135deg, #102f4e, #18527d);
    box-shadow: var(--ix-shadow);
}

.ix-cta h2 {
    margin-bottom: 10px;
    color: #fff;
}

.ix-cta p {
    margin: 0;
    color: #cee0ef;
}

.ix-cta .ix-btn-secondary {
    border-color: #fff;
}

.ix-footer {
    margin-top: 84px;
    padding: 52px 0 28px;
    color: #b9c9d9;
    background: #0b2339;
}

.ix-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 44px;
}

.ix-footer .ix-brand {
    color: #fff;
}

.ix-footer p {
    max-width: 510px;
    color: #b7c7d7;
}

.ix-footer h3 {
    color: #fff;
    font-size: 14px;
}

.ix-footer-links {
    display: grid;
    gap: 8px;
}

.ix-footer a {
    color: #c1d0df;
    font-size: 14px;
}

.ix-footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: #8ea4b7;
    font-size: 12px;
}

.ix-breadcrumbs {
    padding-top: 18px;
    color: #718196;
    font-size: 12px;
}

.ix-breadcrumbs span {
    margin: 0 7px;
}

@media (max-width: 1020px) {
    .ix-nav {
        gap: 14px;
    }

    .ix-nav a:not(.ix-btn) {
        display: none;
    }

    .ix-hero-grid {
        gap: 36px;
    }

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

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

@media (max-width: 760px) {
    .ix-container {
        width: min(calc(100% - 28px), var(--ix-max));
    }

    .ix-header-row {
        min-height: 64px;
    }

    .ix-header .ix-btn {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .ix-hero {
        padding: 58px 0 46px;
    }

    .ix-hero-grid,
    .ix-feature-band,
    .ix-cta,
    .ix-footer-grid {
        grid-template-columns: 1fr;
    }

    .ix-hero-grid {
        gap: 34px;
    }

    h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .ix-hero-copy {
        font-size: 16px;
    }

    .ix-section-nav {
        top: 64px;
    }

    .ix-section {
        padding: 64px 0;
    }

    .ix-grid-2,
    .ix-grid-3,
    .ix-grid-4,
    .ix-process {
        grid-template-columns: 1fr;
    }

    .ix-cta {
        padding: 32px 24px;
    }

    .ix-footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .ix-brand {
        font-size: 18px;
    }

    .ix-brand-mark {
        width: 30px;
        height: 30px;
    }

    h1 {
        font-size: 36px;
    }

    .ix-kpi-grid {
        grid-template-columns: 1fr;
    }

    .ix-actions .ix-btn {
        width: 100%;
    }
}
