:root {
    --blue: #0679fd;
    --blue-dark: #0065dd;
    --blue-soft: #eaf3ff;
    --ink: #0d1424;
    --ink-2: #202b3e;
    --muted: #667085;
    --muted-2: #98a2b3;
    --line: #e4e9f0;
    --surface: #f6f8fb;
    --surface-2: #eef2f7;
    --white: #fff;
    --green: #12a36d;
    --orange: #f79009;
    --red: #e5484d;
    --purple: #6941c6;
    --shell: min(1240px, calc(100vw - 48px));
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .05);
    --shadow-lg: 0 32px 90px rgba(25, 54, 93, .15), 0 4px 16px rgba(25, 54, 93, .08);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    color: var(--white);
    background: var(--blue);
}

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

button,
input,
textarea,
select {
    color: inherit;
    font: inherit;
}

button {
    cursor: pointer;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: -.035em;
    line-height: 1.06;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    border-radius: 6px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    border-bottom: 1px solid transparent;
    transition: background .35s, box-shadow .35s, border-color .35s;
}

.site-header.scrolled,
body:not(.page-home) .site-header {
    background: rgba(255, 255, 255, .88);
    border-color: rgba(223, 229, 238, .8);
    box-shadow: 0 6px 24px rgba(20, 31, 48, .035);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--shell);
    height: 100%;
    margin-inline: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 184px;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
    margin-right: 44px;
}

.desktop-nav a {
    position: relative;
    padding: 27px 0;
    color: #344054;
    font-size: 14px;
    font-weight: 560;
    letter-spacing: -.01em;
    transition: color .2s;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 1.5px;
    content: "";
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
    color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-login {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.header-login:hover {
    color: var(--ink);
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 22px;
    color: var(--white);
    background: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(6, 121, 253, .16);
    font-size: 14px;
    font-weight: 650;
    letter-spacing: -.01em;
    transition: transform .25s var(--ease), background .25s, box-shadow .25s;
}

.button span {
    font-size: 17px;
    transition: transform .25s var(--ease);
}

.button:hover {
    background: var(--blue-dark);
    box-shadow: 0 12px 28px rgba(6, 121, 253, .22);
    transform: translateY(-2px);
}

.button:hover span {
    transform: translate(2px, -2px);
}

.button-small {
    min-height: 40px;
    gap: 14px;
    padding: 0 17px;
    font-size: 13px;
}

.button-white {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
}

.button-white:hover {
    background: #f5f8fd;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
}

.button-outline {
    color: var(--ink);
    background: transparent;
    border-color: #cfd6df;
    box-shadow: none;
}

.button-outline:hover {
    color: var(--blue);
    background: var(--white);
    border-color: var(--blue);
    box-shadow: none;
}

.button-full {
    width: 100%;
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    min-height: 880px;
    padding: 150px 0 98px;
    overflow: hidden;
    background:
        radial-gradient(circle at 81% 44%, rgba(6, 121, 253, .10), transparent 27%),
        linear-gradient(180deg, #f9fbfe 0%, #f3f7fc 74%, #fff 100%);
}

.hero::after {
    position: absolute;
    right: -9vw;
    bottom: -32vw;
    width: 62vw;
    height: 62vw;
    border: 1px solid rgba(6, 121, 253, .06);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 90px rgba(6, 121, 253, .018), 0 0 0 190px rgba(6, 121, 253, .012);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image: linear-gradient(rgba(44, 70, 105, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(44, 70, 105, .055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000, transparent 58%);
}

.hero-radar-line {
    position: absolute;
    top: 0;
    left: 56%;
    width: 1px;
    height: 100%;
    opacity: .35;
    background: linear-gradient(transparent, rgba(6, 121, 253, .4), transparent);
}

.hero-shell {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 610px;
    align-items: center;
    grid-template-columns: .82fr 1.18fr;
    gap: 56px;
}

.hero-copy {
    padding-bottom: 16px;
}

.eyebrow,
.section-index {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 24px;
    height: 1px;
    background: currentColor;
}

.hero h1 {
    max-width: 610px;
    margin: 24px 0 24px;
    font-size: clamp(56px, 5.05vw, 79px);
    font-weight: 690;
    letter-spacing: -.06em;
}

.hero-lead {
    max-width: 550px;
    margin-bottom: 32px;
    color: #536176;
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: -.015em;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.text-link,
.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 650;
}

.text-link span,
.inline-link span {
    color: var(--blue);
    font-size: 17px;
    transition: transform .25s var(--ease);
}

.text-link:hover span {
    transform: translateY(3px);
}

.inline-link:hover span {
    transform: translate(2px, -2px);
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 45px;
    padding-top: 24px;
    border-top: 1px solid #dce3ec;
}

.proof-avatars {
    display: flex;
}

.proof-avatars span {
    display: grid;
    width: 33px;
    height: 33px;
    margin-left: -8px;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    border: 2px solid #f5f8fc;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 700;
}

.proof-avatars span:first-child {
    margin-left: 0;
    background: var(--blue);
}

.proof-avatars span:last-child {
    background: #43536c;
}

.hero-proof p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.hero-proof strong {
    color: var(--ink-2);
    font-size: 12px;
}

.product-stage {
    position: relative;
    width: 760px;
    max-width: 64vw;
    transform: perspective(1800px) rotateY(-3deg) rotateX(1deg);
    transform-origin: 50% 50%;
}

.stage-glow {
    position: absolute;
    z-index: -1;
    top: 7%;
    left: 8%;
    width: 84%;
    height: 80%;
    opacity: .8;
    background: rgba(6, 121, 253, .25);
    border-radius: 40%;
    filter: blur(70px);
}

.product-window {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(177, 192, 211, .7);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.window-topbar {
    display: flex;
    height: 52px;
    align-items: center;
    padding: 0 16px 0 13px;
    background: #fff;
    border-bottom: 1px solid #e9edf3;
}

.window-brand {
    display: flex;
    width: 200px;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 750;
}

.window-search {
    display: flex;
    width: 250px;
    height: 29px;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    color: #98a2b3;
    background: #f6f8fb;
    border: 1px solid #eef1f5;
    border-radius: 5px;
    font-size: 8px;
}

.window-search svg {
    width: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.window-profile {
    display: grid;
    width: 27px;
    height: 27px;
    margin-left: auto;
    place-items: center;
    color: #fff;
    background: #1b2a41;
    border-radius: 50%;
    font-size: 8px;
    font-weight: 700;
}

.window-body {
    display: flex;
    min-height: 484px;
}

.product-sidebar {
    display: flex;
    width: 45px;
    flex: 0 0 45px;
    align-items: center;
    padding-top: 17px;
    background: #101827;
    flex-direction: column;
    gap: 17px;
}

.side-logo {
    width: 15px;
    height: 2px;
    margin-bottom: 7px;
    background: var(--blue);
    box-shadow: 0 4px 0 rgba(255, 255, 255, .35);
}

.side-item {
    position: relative;
    width: 15px;
    height: 15px;
    opacity: .42;
    border: 1px solid #d6deeb;
    border-radius: 3px;
}

.side-item.active {
    opacity: 1;
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 0 0 6px rgba(6, 121, 253, .14);
}

.dashboard {
    width: calc(100% - 45px);
    padding: 25px 22px 22px;
    background: #f5f7fa;
}

.dashboard-heading,
.priority-head,
.card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.dashboard-heading small,
.priority-head small,
.card-head small {
    display: block;
    margin-bottom: 4px;
    color: #8d98aa;
    font-size: 7px;
    font-weight: 750;
    letter-spacing: .09em;
}

.dashboard-heading strong {
    font-size: 15px;
}

.live-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    color: #087a56;
    background: #e8f8f2;
    border: 1px solid #c7ecdf;
    border-radius: 20px;
    font-size: 7px;
    font-weight: 650;
}

.live-pill i {
    width: 5px;
    height: 5px;
    background: #12a36d;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(18, 163, 109, .12);
}

.metric-row {
    display: grid;
    margin-top: 17px;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 10px;
}

.metric-card {
    position: relative;
    min-height: 111px;
    padding: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(16, 24, 40, .025);
}

.metric-card > svg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 39px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.5;
}

.metric-card > svg .area {
    opacity: .15;
    fill: var(--blue);
    stroke: none;
}

.metric-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #707c8e;
    font-size: 8px;
    font-weight: 600;
}

.metric-label span {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    color: var(--blue);
    background: #edf5ff;
    border-radius: 4px;
    font-size: 8px;
}

.metric-label .risk-dot {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(229, 72, 77, .1);
}

.metric-card > strong {
    display: block;
    margin: 9px 0 5px;
    color: #131b2b;
    font-size: 22px;
    letter-spacing: -.04em;
}

.metric-card > small {
    color: #98a2b3;
    font-size: 7px;
}

.metric-card > small b {
    color: var(--green);
}

.metric-card > small b.orange {
    color: var(--orange);
}

.dashboard-lower {
    display: grid;
    margin-top: 10px;
    grid-template-columns: 1.55fr .75fr;
    gap: 10px;
}

.collection-chart,
.risk-panel {
    height: 246px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 7px;
}

.card-head strong {
    display: block;
    font-size: 16px;
}

.card-head > span {
    padding: 4px 7px;
    color: #788497;
    background: #f6f8fb;
    border: 1px solid #e9edf2;
    border-radius: 4px;
    font-size: 7px;
}

.chart-wrap {
    position: relative;
    height: 170px;
    margin-top: 9px;
    padding-left: 25px;
}

.chart-wrap > svg {
    width: 100%;
    height: 148px;
    overflow: visible;
}

.grid-lines line {
    stroke: #ecf0f4;
    stroke-width: 1;
}

.chart-area {
    fill: url(#chartArea);
}

.chart-line {
    fill: none;
    stroke: var(--blue);
    stroke-linecap: round;
    stroke-width: 2;
}

.chart-wrap circle {
    fill: #fff;
    stroke: var(--blue);
    stroke-width: 2;
}

.chart-y {
    position: absolute;
    top: 0;
    bottom: 22px;
    left: 0;
    display: flex;
    justify-content: space-between;
    color: #a0a9b7;
    font-size: 6px;
    flex-direction: column;
}

.chart-months {
    display: flex;
    justify-content: space-between;
    color: #a0a9b7;
    font-size: 6px;
}

.risk-ring {
    position: relative;
    width: 112px;
    height: 112px;
    margin: 15px auto 10px;
}

.risk-ring circle {
    fill: none;
    stroke-width: 10;
    transform: rotate(-90deg);
    transform-origin: center;
}

.ring-base { stroke: #edf1f5; }
.ring-low { stroke: var(--blue); stroke-dasharray: 183 270; }
.ring-mid { stroke: var(--orange); stroke-dasharray: 65 270; stroke-dashoffset: -185; }
.ring-high { stroke: var(--red); stroke-dasharray: 20 270; stroke-dashoffset: -252; }

.risk-ring > div {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
}

.risk-ring strong {
    font-size: 18px;
    line-height: 1;
}

.risk-ring small {
    color: #98a2b3;
    font-size: 7px;
}

.risk-legend {
    display: grid;
    gap: 5px;
}

.risk-legend span {
    display: flex;
    align-items: center;
    color: #6d7889;
    font-size: 7px;
}

.risk-legend i {
    width: 5px;
    height: 5px;
    margin-right: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.risk-legend i.mid { background: var(--orange); }
.risk-legend i.high { background: var(--red); }
.risk-legend b { margin-left: auto; color: var(--ink); }

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 238px;
    padding: 12px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(210, 220, 232, .9);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(27, 50, 82, .15);
    backdrop-filter: blur(14px);
    animation: float 5s ease-in-out infinite;
}

.floating-card small {
    display: block;
    margin-bottom: 2px;
    color: #98a2b3;
    font-size: 6px;
    font-weight: 750;
    letter-spacing: .08em;
}

.floating-card strong {
    display: block;
    font-size: 8px;
    letter-spacing: -.01em;
}

.floating-card > span {
    margin-left: auto;
    color: #98a2b3;
    font-size: 6px;
}

.float-icon {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    place-items: center;
    border-radius: 6px;
}

.float-icon svg {
    width: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.alert-icon {
    color: var(--orange);
    background: #fff4e5;
}

.task-icon {
    color: var(--green);
    background: #eaf8f2;
    font-size: 14px;
    font-weight: 750;
}

.float-alert {
    top: 122px;
    right: -43px;
}

.float-task {
    right: 50px;
    bottom: -34px;
    animation-delay: -2.4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.trust-strip {
    position: relative;
    z-index: 3;
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.trust-strip .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trust-strip p {
    margin: 0;
    color: #8c97a8;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.trust-items {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3.2vw, 48px);
}

.trust-items span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7687;
    font-size: 12px;
    font-weight: 600;
}

.trust-items i {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    color: #59677b;
    background: #f1f4f7;
    border: 1px solid #e1e6ec;
    border-radius: 5px;
    font-size: 7px;
    font-style: normal;
    font-weight: 800;
}

.statement-section,
.feature-story,
.communication-section,
.modules-section,
.integration-section,
.insights-section,
.faq-section {
    padding: 140px 0;
}

.statement-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 0 48px;
}

.section-index {
    align-self: start;
    color: #8995a7;
    font-size: 10px;
    letter-spacing: .09em;
}

.section-index span {
    color: var(--blue);
}

.statement-copy {
    max-width: 890px;
}

.statement-copy h2,
.section-heading h2,
.performance-head h2,
.insights-head h2,
.faq-intro h2,
.inner-hero h1 {
    margin: 21px 0 27px;
    font-size: clamp(42px, 4.6vw, 66px);
    font-weight: 620;
    letter-spacing: -.055em;
}

h2 em,
.inner-hero h1 em {
    color: var(--blue);
    font-style: normal;
}

.statement-copy > p {
    max-width: 730px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.before-after {
    display: grid;
    margin-top: 74px;
    padding-bottom: 2px;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 56px 1fr;
}

.compare-card {
    min-height: 350px;
    padding: 34px 38px;
    border: 1px solid var(--line);
}

.compare-before {
    background: #f8f9fb;
}

.compare-after {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
}

.compare-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid #dfe4eb;
}

.compare-after .compare-head {
    border-color: rgba(255, 255, 255, .13);
}

.compare-label {
    font-size: 18px;
    font-weight: 680;
}

.compare-head i {
    color: var(--muted-2);
    font-size: 10px;
    font-style: normal;
    font-weight: 650;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.compare-after .compare-head i {
    color: rgba(255, 255, 255, .5);
}

.compare-card ul {
    display: grid;
    margin: 29px 0 0;
    padding: 0;
    list-style: none;
    gap: 18px;
}

.compare-card li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #637083;
    font-size: 14px;
}

.compare-card li span {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    place-items: center;
    color: #8e99a8;
    background: #edf0f4;
    border-radius: 50%;
    font-size: 12px;
}

.compare-after li {
    color: rgba(255, 255, 255, .82);
}

.compare-after li span {
    color: #fff;
    background: var(--blue);
}

.compare-divider {
    position: relative;
    display: grid;
    place-items: center;
}

.compare-divider::before {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: var(--line);
}

.compare-divider span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border: 7px solid #fff;
    border-radius: 50%;
    font-size: 15px;
    box-sizing: content-box;
}

.feature-risk {
    padding-top: 130px;
    background: #f5f7fa;
}

.two-column {
    display: grid;
    align-items: center;
    grid-template-columns: .86fr 1.14fr;
    gap: 90px;
}

.story-copy h2,
.modules-intro h2,
.security-copy h2 {
    margin: 24px 0;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 620;
    letter-spacing: -.05em;
}

.story-copy > p,
.modules-intro > p,
.security-copy > p {
    max-width: 560px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.risk-scale {
    display: grid;
    margin-top: 45px;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.risk-scale span {
    display: grid;
    color: #8b96a6;
    font-size: 10px;
    grid-template-columns: 9px 1fr;
    gap: 2px 9px;
}

.risk-scale i {
    width: 7px;
    height: 7px;
    margin-top: 6px;
    background: var(--green);
    border-radius: 50%;
    grid-row: 1 / 3;
}

.risk-scale i.mid { background: var(--orange); }
.risk-scale i.high { background: #ff7b43; }
.risk-scale i.critical { background: var(--red); }

.risk-scale b {
    color: var(--ink);
    font-size: 12px;
}

.priority-card {
    padding: 22px;
    background: #fff;
    border: 1px solid #dfe5ed;
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(40, 60, 86, .1);
}

.priority-head {
    padding: 8px 6px 21px;
}

.priority-head strong {
    display: block;
    font-size: 17px;
}

.priority-head > span {
    padding: 6px 9px;
    color: #657184;
    background: #f4f6f9;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 650;
}

.account-row {
    display: grid;
    min-height: 76px;
    align-items: center;
    padding: 0 12px;
    border-top: 1px solid #edf0f4;
    grid-template-columns: 38px minmax(150px, 1fr) 68px 62px 16px;
    gap: 12px;
    transition: background .2s;
}

.account-row:hover {
    background: #fafbfc;
}

.account-logo {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 7px;
    font-size: 8px;
    font-weight: 750;
}

.account-logo.navy { background: #243b61; }
.account-logo.violet { background: var(--purple); }
.account-logo.green { background: #087a56; }

.account-name strong,
.account-name small {
    display: block;
}

.account-name strong {
    margin-bottom: 3px;
    font-size: 12px;
}

.account-name small {
    color: #98a2b3;
    font-size: 9px;
}

.account-row > b {
    font-size: 11px;
}

.status {
    display: inline-flex;
    width: max-content;
    padding: 4px 7px;
    border-radius: 20px;
    font-size: 8px;
    font-weight: 650;
}

.status.critical { color: #c2292f; background: #ffecee; }
.status.high { color: #d25925; background: #fff0e9; }
.status.mid { color: #b47400; background: #fff7dd; }
.status.low { color: #087a56; background: #e8f8f2; }
.account-row > i { color: #b0b8c5; font-size: 13px; font-style: normal; }

.priority-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 7px 2px;
    border-top: 1px solid #edf0f4;
    color: #929dac;
    font-size: 8px;
}

.priority-foot > span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.priority-foot i {
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
}

.priority-foot a {
    color: var(--blue);
    font-weight: 650;
}

.workflow-section {
    padding: 150px 0 160px;
    overflow: hidden;
    background: #fff;
}

.section-heading {
    max-width: 820px;
    margin-inline: auto;
}

.section-heading.center {
    text-align: center;
}

.section-index.centered {
    justify-content: center;
}

.section-heading > p {
    color: var(--muted);
    font-size: 17px;
}

.workflow {
    position: relative;
    display: grid;
    margin-top: 84px;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.workflow-line {
    position: absolute;
    top: 56px;
    right: 7%;
    left: 7%;
    height: 1px;
    overflow: hidden;
    background: #dfe5ec;
}

.workflow-line span {
    display: block;
    width: 42%;
    height: 100%;
    background: var(--blue);
    animation: workflow-pulse 4.5s ease-in-out infinite alternate;
}

@keyframes workflow-pulse {
    from { transform: translateX(-100%); }
    to { transform: translateX(330%); }
}

.workflow-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    margin-bottom: 22px;
    color: #9ba6b5;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
}

.step-icon {
    display: grid;
    width: 57px;
    height: 57px;
    margin: 0 auto 25px;
    place-items: center;
    color: var(--blue);
    background: #fff;
    border: 1px solid #dbe2ea;
    border-radius: 50%;
    box-shadow: 0 0 0 10px #fff;
}

.step-icon.filled {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 0 0 10px #fff, 0 8px 22px rgba(6, 121, 253, .22);
}

.step-icon svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.workflow-step h3 {
    margin: 0 0 10px;
    font-size: 15px;
}

.workflow-step p {
    margin: 0 auto;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.communication-section {
    background: #f4f6f9;
}

.communication-section .two-column {
    grid-template-columns: 1.12fr .88fr;
}

.message-stage {
    padding: 18px;
    background: #e9eef5;
    border: 1px solid #dce3ec;
    border-radius: 12px;
}

.channel-tabs {
    display: grid;
    margin-bottom: 13px;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.channel-tabs button {
    display: flex;
    height: 43px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #6e7a8c;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 650;
}

.channel-tabs button span {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    background: #dce4ee;
    border-radius: 5px;
    font-size: 8px;
}

.channel-tabs button.active {
    color: var(--ink);
    background: #fff;
    border-color: #d8e0e9;
    box-shadow: 0 3px 10px rgba(31, 46, 69, .05);
}

.channel-tabs button.active span {
    color: #fff;
    background: var(--blue);
}

.message-window {
    min-height: 500px;
    padding: 23px;
    background: #fff;
    border: 1px solid #dce3ec;
    border-radius: 8px;
    transition: opacity .18s, transform .18s;
}

.message-window.changing {
    opacity: .45;
    transform: translateY(3px);
}

.message-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf0f4;
}

.message-top > div:first-child {
    display: grid;
    align-items: center;
    grid-template-columns: 37px 1fr;
    column-gap: 10px;
}

.message-avatar {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    color: #fff;
    background: var(--purple);
    border-radius: 8px;
    font-size: 9px;
    font-weight: 750;
    grid-row: 1 / 3;
}

.message-top strong {
    font-size: 12px;
}

.message-top small {
    color: #98a2b3;
    font-size: 8px;
}

.message-open {
    display: grid;
    color: #8d98a9;
    font-size: 8px;
    text-align: right;
}

.message-open b {
    color: var(--ink);
    font-size: 13px;
}

.message-date {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 23px 0;
    color: #a0a9b7;
    font-size: 7px;
}

.message-date::before,
.message-date::after {
    height: 1px;
    content: "";
    background: #eef1f4;
    flex: 1;
}

.message-bubble {
    width: 79%;
    margin-bottom: 11px;
    padding: 13px 15px 8px;
    border-radius: 8px;
    font-size: 9px;
    line-height: 1.65;
}

.message-bubble small {
    display: block;
    margin-top: 5px;
    color: #a0a9b7;
    font-size: 7px;
    text-align: right;
}

.message-bubble.sent {
    margin-left: auto;
    color: #245384;
    background: #edf5ff;
    border: 1px solid #d8eaff;
}

.message-bubble.sent small b {
    color: var(--blue);
}

.message-bubble.received {
    color: #4b586b;
    background: #f4f6f8;
    border: 1px solid #e9edf2;
}

.promise-card {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 19px 0;
    padding: 12px;
    background: #f3fbf8;
    border: 1px solid #d9f0e8;
    border-radius: 7px;
}

.promise-card > span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: 10px;
}

.promise-card div {
    display: grid;
}

.promise-card small {
    color: #58947f;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: .08em;
}

.promise-card strong {
    font-size: 9px;
}

.promise-card > b {
    margin-left: auto;
    padding: 4px 7px;
    color: #087a56;
    background: #dff5ed;
    border-radius: 20px;
    font-size: 7px;
}

.message-input {
    display: flex;
    height: 42px;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 0 12px;
    color: #a3adba;
    background: #f7f9fb;
    border: 1px solid #e4e9ef;
    border-radius: 6px;
    font-size: 8px;
}

.message-input i {
    padding: 6px 10px;
    color: #fff;
    background: var(--blue);
    border-radius: 4px;
    font-style: normal;
}

.feature-checks {
    display: grid;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    gap: 20px;
}

.feature-checks li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.feature-checks > li > span {
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    place-items: center;
    color: var(--blue);
    background: #e7f2ff;
    border-radius: 50%;
    font-size: 10px;
}

.feature-checks div {
    display: grid;
}

.feature-checks b {
    font-size: 13px;
}

.feature-checks small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.performance-section {
    padding: 145px 0;
    color: #fff;
    background: #0d1524;
}

.performance-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.section-index-light,
.performance-head .section-index {
    color: #78869a;
}

.performance-head h2 {
    margin-bottom: 0;
}

.performance-head h2 em {
    color: #57a7ff;
}

.performance-head > p {
    max-width: 410px;
    margin: 0 0 6px;
    color: #99a5b6;
    font-size: 15px;
    line-height: 1.7;
}

.kpi-grid {
    display: grid;
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, .11);
    border-left: 1px solid rgba(255, 255, 255, .11);
    grid-template-columns: repeat(4, 1fr);
}

.kpi-grid article {
    position: relative;
    min-height: 216px;
    padding: 28px;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, .11);
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.kpi-grid article > span {
    color: #a0acbd;
    font-size: 11px;
}

.kpi-grid article > strong {
    display: block;
    margin: 19px 0 5px;
    font-size: 42px;
    letter-spacing: -.05em;
}

.kpi-grid article > small {
    color: #68768a;
    font-size: 9px;
}

.kpi-grid article > small b {
    color: #5ed4a8;
}

.kpi-bar {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    height: 3px;
    overflow: hidden;
    background: #263044;
    border-radius: 3px;
}

.kpi-bar i {
    display: block;
    width: var(--value);
    height: 100%;
    background: var(--blue);
}

.kpi-sparks {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    display: flex;
    height: 32px;
    align-items: end;
    gap: 5px;
}

.kpi-sparks i {
    height: 50%;
    background: #263a56;
    flex: 1;
}

.kpi-sparks i:nth-child(2) { height: 66%; }
.kpi-sparks i:nth-child(3) { height: 82%; }
.kpi-sparks i:nth-child(4) { height: 74%; }
.kpi-sparks i:nth-child(5) { height: 55%; }
.kpi-sparks i:nth-child(6) { height: 39%; }
.kpi-sparks i:nth-child(7) { height: 28%; background: var(--blue); }

.kpi-donut {
    position: absolute;
    right: 25px;
    bottom: 24px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--blue) 0 61%, #263044 61%);
}

.kpi-donut::after {
    position: absolute;
    inset: 5px;
    content: "";
    background: #0d1524;
    border-radius: 50%;
}

.kpi-donut span {
    position: relative;
    z-index: 2;
    font-size: 7px;
}

.team-board {
    margin-top: 36px;
    background: #121c2d;
    border: 1px solid rgba(255, 255, 255, .11);
}

.team-board-head {
    display: flex;
    min-height: 87px;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.team-board-head small,
.team-board-head strong {
    display: block;
}

.team-board-head small {
    margin-bottom: 4px;
    color: #6f7c90;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .09em;
}

.team-board-head strong {
    font-size: 16px;
}

.team-board-head > div:last-child {
    display: flex;
    align-items: center;
    gap: 11px;
}

.team-board-head span,
.team-board-head a {
    padding: 7px 10px;
    color: #93a0b2;
    background: #182437;
    border: 1px solid #263247;
    font-size: 8px;
}

.team-board-head a {
    color: #83baff;
}

.team-row {
    display: grid;
    min-height: 70px;
    align-items: center;
    padding: 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .065);
    color: #cad2dd;
    font-size: 10px;
    grid-template-columns: 60px 1.4fr 1fr .8fr 1.2fr 50px;
    gap: 15px;
}

.team-row:last-child {
    border-bottom: 0;
}

.team-labels {
    min-height: 38px;
    color: #68768a;
    background: #101a2a;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.rank {
    color: #68768a;
    font-size: 9px;
}

.member {
    display: grid;
    align-items: center;
    grid-template-columns: 32px 1fr;
    column-gap: 10px;
}

.member > i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: #96c5ff;
    background: #203553;
    border-radius: 50%;
    font-size: 7px;
    font-style: normal;
    grid-row: 1 / 3;
}

.member b { color: #fff; }
.member small,
.team-row > span small { color: #68768a; font-size: 8px; }

.mini-bar {
    display: inline-block;
    width: 54px;
    height: 3px;
    margin-right: 9px;
    overflow: hidden;
    vertical-align: middle;
    background: #283246;
    border-radius: 3px;
}

.mini-bar b {
    display: block;
    width: var(--w);
    height: 100%;
    background: var(--blue);
}

.score {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    color: #7fbaff;
    background: #1d3350;
    border-radius: 50%;
    font-weight: 750;
}

.modules-section {
    background: #fff;
}

.modules-grid {
    display: grid;
    align-items: start;
    grid-template-columns: .72fr 1.28fr;
    gap: 100px;
}

.modules-intro {
    position: sticky;
    top: 120px;
}

.module-accordion {
    border-top: 1px solid #dfe4ea;
}

.module-item {
    border-bottom: 1px solid #dfe4ea;
}

.module-item button {
    display: grid;
    width: 100%;
    min-height: 84px;
    align-items: center;
    padding: 0;
    text-align: left;
    background: none;
    border: 0;
    grid-template-columns: 48px 1fr 25px;
}

.module-item button span {
    color: #9ba5b3;
    font-size: 10px;
    font-weight: 650;
}

.module-item button strong {
    font-size: 17px;
    font-weight: 630;
    letter-spacing: -.02em;
}

.module-item button i {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: #8691a1;
    border: 1px solid #dbe1e8;
    border-radius: 50%;
    font-size: 12px;
    font-style: normal;
}

.module-item.open button strong {
    color: var(--blue);
}

.module-content {
    max-height: 0;
    padding: 0 0 0 48px;
    overflow: hidden;
    opacity: 0;
    transition: max-height .45s var(--ease), opacity .35s, padding .45s var(--ease);
}

.module-item.open .module-content {
    max-height: 360px;
    padding-bottom: 31px;
    opacity: 1;
}

.module-content p {
    max-width: 550px;
    color: var(--muted);
    font-size: 13px;
}

.module-content ul {
    display: grid;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 25px;
}

.module-content li {
    position: relative;
    padding-left: 14px;
    color: #485568;
    font-size: 11px;
}

.module-content li::before {
    position: absolute;
    top: 7px;
    left: 0;
    width: 4px;
    height: 4px;
    content: "";
    background: var(--blue);
    border-radius: 50%;
}

.integration-section {
    overflow: hidden;
    background: #f5f7fa;
}

.integration-map {
    position: relative;
    height: 580px;
    max-width: 1100px;
    margin: 55px auto 0;
}

.integration-core {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: grid;
    width: 194px;
    height: 194px;
    place-content: center;
    text-align: center;
    background: #fff;
    border: 1px solid #dfe5ec;
    border-radius: 50%;
    box-shadow: 0 25px 65px rgba(30, 52, 80, .13);
    transform: translate(-50%, -50%);
}

.integration-core img {
    width: 45px;
    height: 40px;
    margin: 0 auto 10px;
}

.integration-core strong {
    font-size: 13px;
}

.integration-core > span {
    color: #98a2b3;
    font-size: 8px;
}

.core-rings i {
    position: absolute;
    inset: -28px;
    opacity: .9;
    border: 1px solid rgba(6, 121, 253, .13);
    border-radius: 50%;
}

.core-rings i:nth-child(2) { inset: -58px; opacity: .5; }
.core-rings i:nth-child(3) { inset: -90px; opacity: .25; }

.integration-node {
    position: absolute;
    z-index: 3;
    display: flex;
    width: 195px;
    min-height: 72px;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.integration-node > i {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 7px;
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
}

.integration-node div {
    display: grid;
}

.integration-node strong { font-size: 11px; }
.integration-node span { color: #98a2b3; font-size: 8px; }

.node-1 { top: 72px; left: 55px; }
.node-2 { top: 254px; left: -22px; }
.node-3 { bottom: 34px; left: 55px; }
.node-4 { top: 72px; right: 55px; }
.node-5 { top: 254px; right: -22px; }
.node-6 { right: 55px; bottom: 34px; }

.integration-lines {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #cad4e0;
    stroke-dasharray: 4 5;
    stroke-width: 1;
}

.security-teaser {
    padding: 135px 0;
    color: #fff;
    background: var(--blue);
}

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

.security-copy .section-index,
.security-copy > p {
    color: rgba(255, 255, 255, .7);
}

.security-copy .section-index span {
    color: #fff;
}

.security-cards {
    display: grid;
}

.security-cards article {
    display: grid;
    min-height: 112px;
    align-items: center;
    padding: 0 12px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    grid-template-columns: 54px 1fr 30px;
    gap: 17px;
}

.security-cards article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.security-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
}

.security-icon svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

.security-cards article > div:nth-child(2) {
    display: grid;
}

.security-cards strong {
    margin-bottom: 4px;
    font-size: 14px;
}

.security-cards span {
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
}

.security-cards article > i {
    color: rgba(255, 255, 255, .38);
    font-size: 9px;
    font-style: normal;
}

.insights-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 58px;
}

.insights-head h2 {
    margin-bottom: 0;
}

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

.article-card {
    min-width: 0;
}

.article-visual {
    position: relative;
    display: block;
    height: 260px;
    margin-bottom: 23px;
    overflow: hidden;
    background: #eaf2fd;
    border: 1px solid #dce5f0;
}

.article-visual::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .45;
    background-image: linear-gradient(rgba(6, 121, 253, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 121, 253, .1) 1px, transparent 1px);
    background-size: 28px 28px;
}

.article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 8px;
    color: #30557f;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 4px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.visual-calendar {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    width: 94px;
    height: 96px;
    place-content: center;
    color: #fff;
    background: var(--blue);
    border-radius: 9px;
    box-shadow: 0 20px 35px rgba(6, 121, 253, .26);
    text-align: center;
    transform: translate(-72%, -45%) rotate(-4deg);
}

.visual-calendar::before {
    position: absolute;
    top: 18px;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, .3);
}

.visual-calendar span { font-size: 34px; font-weight: 700; line-height: 1; }
.visual-calendar i { font-size: 8px; font-style: normal; text-transform: uppercase; }

.visual-flow {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 43px;
    display: grid;
    transform: translateY(-50%);
    gap: 10px;
}

.visual-flow i {
    width: 66px;
    height: 14px;
    background: rgba(6, 121, 253, .14);
    border-radius: 10px;
}

.visual-flow i:nth-child(2) { width: 91px; background: rgba(6, 121, 253, .24); }

.visual-2 {
    background: #f5f1ff;
}

.visual-bars {
    position: absolute;
    right: 45px;
    bottom: 45px;
    left: 45px;
    display: flex;
    height: 130px;
    align-items: end;
    gap: 13px;
}

.visual-bars i {
    height: 23%;
    background: #a88ee2;
    flex: 1;
}

.visual-bars i:nth-child(2) { height: 38%; }
.visual-bars i:nth-child(3) { height: 55%; }
.visual-bars i:nth-child(4) { height: 74%; }
.visual-bars i:nth-child(5) { height: 100%; background: var(--purple); }

.visual-label {
    position: absolute;
    right: 37px;
    bottom: 22px;
    color: var(--purple);
    font-size: 9px;
    font-weight: 700;
}

.visual-3 {
    background: #e8f7f2;
}

.visual-score {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    place-content: center;
    color: #087a56;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transform: translate(-50%, -50%);
}

.visual-score small {
    margin-top: 4px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

.visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: conic-gradient(#12a36d 0 82%, rgba(18, 163, 109, .12) 82%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.visual-ring::after {
    position: absolute;
    inset: 14px;
    content: "";
    background: #e8f7f2;
    border-radius: 50%;
}

.article-meta {
    margin-bottom: 13px;
    color: #98a2b3;
    font-size: 9px;
    font-weight: 650;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.article-meta span {
    margin: 0 6px;
}

.article-card h3 {
    margin: 0 0 13px;
    font-size: 21px;
    line-height: 1.22;
}

.article-card h3 a:hover {
    color: var(--blue);
}

.article-card > p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 6px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
}

.article-link span {
    transition: transform .25s;
}

.article-link:hover span {
    transform: translateX(4px);
}

.faq-section {
    background: #f5f7fa;
}

.faq-grid {
    display: grid;
    align-items: start;
    grid-template-columns: .75fr 1.25fr;
    gap: 110px;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro > p {
    max-width: 430px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-list {
    border-top: 1px solid #dce2e9;
}

.faq-item {
    border-bottom: 1px solid #dce2e9;
}

.faq-item button {
    display: flex;
    width: 100%;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    text-align: left;
    background: none;
    border: 0;
}

.faq-item button strong {
    padding-right: 30px;
    font-size: 15px;
    font-weight: 630;
    letter-spacing: -.015em;
}

.faq-item button i {
    color: var(--blue);
    font-size: 17px;
    font-style: normal;
}

.faq-item > div {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .4s var(--ease), opacity .3s, padding .4s var(--ease);
}

.faq-item.open > div {
    max-height: 240px;
    padding-bottom: 28px;
    opacity: 1;
}

.faq-item p {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.final-cta {
    position: relative;
    padding: 145px 0;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
    text-align: center;
}

.final-cta::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
}

.final-cta-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 640px;
    height: 640px;
    border: 1px solid rgba(83, 160, 255, .14);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.final-cta-orbit::before {
    position: absolute;
    top: 78px;
    left: 47px;
    width: 6px;
    height: 6px;
    content: "";
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 18px var(--blue);
}

.orbit-two {
    width: 900px;
    height: 900px;
    opacity: .55;
}

.orbit-two::before {
    top: auto;
    right: 105px;
    bottom: 125px;
    left: auto;
}

.final-cta-inner {
    position: relative;
    z-index: 2;
}

.eyebrow-light {
    justify-content: center;
    color: #7ab8ff;
}

.final-cta h2 {
    margin: 25px 0 24px;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 620;
    letter-spacing: -.06em;
}

.final-cta h2 em {
    color: #5eabff;
}

.final-cta p {
    max-width: 590px;
    margin: 0 auto 35px;
    color: #9ca8ba;
    font-size: 16px;
}

.site-footer {
    padding: 80px 0 25px;
    background: #fff;
}

.footer-top {
    display: grid;
    padding-bottom: 65px;
    grid-template-columns: 1fr 1.45fr;
    gap: 80px;
}

.footer-brand img {
    width: 205px;
    height: auto;
}

.footer-brand > p {
    max-width: 320px;
    margin: 25px 0 28px;
    color: var(--muted);
    font-size: 13px;
}

.footer-parent {
    color: #98a2b3;
    font-size: 10px;
}

.footer-parent strong {
    color: var(--ink);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-nav > div {
    display: flex;
    flex-direction: column;
}

.footer-nav strong {
    margin-bottom: 21px;
    color: #98a2b3;
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-nav a,
.footer-nav span {
    margin-bottom: 11px;
    color: #4a5668;
    font-size: 11px;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    color: #98a2b3;
    border-top: 1px solid var(--line);
    font-size: 9px;
}

.footer-bottom > div {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-bottom a:hover {
    color: var(--ink);
}

.footer-bottom button {
    padding: 0;
    color: #6d7888;
    background: none;
    border: 0;
    font-size: 9px;
}

.mobile-sticky-cta {
    display: none;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* Inner pages */
.inner-hero {
    position: relative;
    padding: 176px 0 110px;
    overflow: hidden;
    background: #f7f9fc;
    border-bottom: 1px solid var(--line);
}

.inner-hero::after {
    position: absolute;
    top: -320px;
    right: -200px;
    width: 720px;
    height: 720px;
    content: "";
    opacity: .7;
    border: 1px solid rgba(6, 121, 253, .09);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(6, 121, 253, .018), 0 0 0 190px rgba(6, 121, 253, .012);
}

.inner-hero .shell {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    max-width: 930px;
}

.inner-hero .inner-lead {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.inner-hero.centered {
    text-align: center;
}

.inner-hero.centered .eyebrow {
    justify-content: center;
}

.inner-hero.centered h1,
.inner-hero.centered .inner-lead {
    margin-right: auto;
    margin-left: auto;
}

.inner-section {
    padding: 120px 0;
}

.inner-section.alt {
    background: #f5f7fa;
}

.inner-heading {
    max-width: 780px;
    margin-bottom: 58px;
}

.inner-heading.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.inner-heading h2 {
    margin: 19px 0 20px;
    font-size: clamp(36px, 4vw, 55px);
    font-weight: 620;
}

.inner-heading p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.feature-detail-grid,
.solution-grid,
.value-grid,
.security-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-detail-card,
.solution-card,
.value-card,
.security-detail-card {
    min-height: 270px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.feature-detail-card:hover,
.solution-card:hover,
.value-card:hover,
.security-detail-card:hover {
    border-color: #bdd9fb;
    box-shadow: 0 18px 45px rgba(25, 53, 86, .08);
    transform: translateY(-4px);
}

.detail-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    color: #98a2b3;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
}

.detail-number i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 50%;
    font-style: normal;
}

.feature-detail-card h3,
.solution-card h3,
.value-card h3,
.security-detail-card h3 {
    margin-bottom: 13px;
    font-size: 20px;
}

.feature-detail-card p,
.solution-card p,
.value-card p,
.security-detail-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

.page-band {
    padding: 100px 0;
    color: #fff;
    background: var(--ink);
}

.page-band-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.page-band h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 620;
}

.page-band p {
    color: #9aa6b7;
    font-size: 16px;
    line-height: 1.7;
}

.page-band .button {
    margin-top: 13px;
}

.feature-list-large {
    display: grid;
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(2, 1fr);
}

.feature-list-large article {
    min-height: 230px;
    padding: 35px 38px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-list-large article:nth-child(2n) {
    border-right: 0;
}

.feature-list-large span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
}

.feature-list-large h3 {
    margin: 27px 0 12px;
    font-size: 21px;
}

.feature-list-large p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.about-manifesto {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 40px;
}

.about-manifesto blockquote {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 570;
    letter-spacing: -.045em;
    line-height: 1.18;
}

.about-manifesto blockquote em {
    color: var(--blue);
    font-style: normal;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.about-story-grid h2 {
    font-size: 43px;
}

.about-story-grid p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.principle-list {
    counter-reset: principles;
    border-top: 1px solid var(--line);
}

.principle-list article {
    display: grid;
    min-height: 112px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 54px 1fr;
    gap: 20px;
}

.principle-list article::before {
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    content: "0" counter(principles);
    counter-increment: principles;
}

.principle-list h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.principle-list p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

/* Resources and article */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px 26px;
}

.resources-grid .article-card:first-child {
    display: grid;
    align-items: center;
    grid-column: 1 / -1;
    grid-template-columns: 1.2fr .8fr;
    gap: 55px;
}

.resources-grid .article-card:first-child .article-visual {
    height: 390px;
    margin: 0;
    grid-row: 1 / 6;
}

.resources-grid .article-card:first-child h3 {
    font-size: 34px;
}

.article-hero {
    padding-bottom: 80px;
}

.article-hero .article-kicker {
    color: var(--blue);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.article-hero .article-info {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    color: #8a96a7;
    font-size: 10px;
}

.article-shell {
    display: grid;
    width: min(1000px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 80px 0 120px;
    grid-template-columns: 190px 1fr;
    gap: 70px;
}

.article-aside {
    position: sticky;
    top: 120px;
    align-self: start;
}

.article-aside strong {
    display: block;
    margin-bottom: 14px;
    color: #98a2b3;
    font-size: 8px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-aside a {
    display: block;
    margin-bottom: 9px;
    color: #647184;
    font-size: 10px;
}

.article-aside a:hover {
    color: var(--blue);
}

.article-content {
    color: #39465a;
    font-size: 17px;
    line-height: 1.85;
}

.article-content > p:first-child {
    color: var(--ink);
    font-size: 21px;
    line-height: 1.6;
}

.article-content h2 {
    margin: 55px 0 20px;
    color: var(--ink);
    font-size: 31px;
}

.article-content h3 {
    margin: 37px 0 14px;
    color: var(--ink);
    font-size: 23px;
}

.article-content ul,
.article-content ol {
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content blockquote {
    margin: 45px 0;
    padding: 32px 35px;
    color: var(--ink);
    background: #f1f6fc;
    border-left: 3px solid var(--blue);
    font-size: 22px;
    font-weight: 550;
    line-height: 1.55;
}

.article-back {
    display: inline-flex;
    gap: 8px;
    margin-top: 45px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 650;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 90px;
}

.contact-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.contact-intro h2 {
    margin: 20px 0;
    font-size: 42px;
}

.contact-intro > p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.contact-points {
    display: grid;
    margin-top: 37px;
    gap: 20px;
}

.contact-points div {
    display: grid;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.contact-points span {
    margin-bottom: 4px;
    color: #98a2b3;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-points strong,
.contact-points a {
    font-size: 13px;
}

.contact-form {
    padding: 45px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 25px 65px rgba(30, 52, 80, .08);
}

.form-head {
    margin-bottom: 34px;
}

.form-head h2 {
    margin-bottom: 9px;
    font-size: 28px;
}

.form-head p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px 18px;
}

.field {
    display: grid;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 10px;
    font-weight: 650;
}

.field label span {
    color: var(--red);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    background: #f9fafb;
    border: 1px solid #dfe4ea;
    border-radius: 5px;
    outline: none;
    font-size: 12px;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.field textarea {
    min-height: 110px;
    padding-top: 13px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(6, 121, 253, .1);
}

.field.has-error input {
    border-color: var(--red);
}

.field-error {
    color: var(--red);
    font-size: 9px;
}

.form-error-banner {
    margin-bottom: 24px;
    padding: 12px 14px;
    color: #a52328;
    background: #fff0f0;
    border: 1px solid #ffd5d6;
    font-size: 11px;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.form-consent {
    margin: 22px 0;
    color: #7d8898;
    font-size: 9px;
    line-height: 1.6;
}

.form-consent a {
    color: var(--blue);
    text-decoration: underline;
}

.contact-form .button {
    width: 100%;
}

.thanks-card {
    max-width: 720px;
    margin: 170px auto 100px;
    padding: 70px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 25px;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: 22px;
}

.thanks-card h1 {
    font-size: 42px;
}

.thanks-card p {
    color: var(--muted);
}

.thanks-card .button {
    margin-top: 20px;
}

/* Legal and 404 */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 90px 0 130px;
    color: #485568;
    font-size: 14px;
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 44px;
    color: var(--ink);
    font-size: 26px;
}

.not-found {
    display: grid;
    min-height: 75vh;
    place-content: center;
    padding: 130px 24px 80px;
    text-align: center;
}

.not-found span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .1em;
}

.not-found h1 {
    margin: 15px 0;
    font-size: clamp(52px, 8vw, 98px);
}

.not-found p {
    color: var(--muted);
}

.not-found .button {
    margin: 20px auto 0;
}

@media (max-width: 1180px) {
    :root { --shell: min(1120px, calc(100vw - 40px)); }
    .desktop-nav { gap: 22px; margin-right: 25px; }
    .product-stage { width: 720px; max-width: 62vw; }
    .hero-shell { grid-template-columns: .78fr 1.22fr; gap: 25px; }
    .hero h1 { font-size: 58px; }
    .floating-card { transform: scale(.9); }
    .float-alert { right: -20px; }
    .trust-items { gap: 22px; }
    .two-column { gap: 55px; }
}

@media (max-width: 1024px) {
    .desktop-nav,
    .header-login { display: none; }
    .menu-toggle {
        display: flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: transparent;
        border: 1px solid #dce2ea;
        border-radius: 6px;
        flex-direction: column;
        gap: 5px;
    }
    .menu-toggle span {
        width: 15px;
        height: 1px;
        background: var(--ink);
        transition: transform .25s, opacity .25s;
    }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
    .mobile-menu {
        position: fixed;
        z-index: 99;
        top: 75px;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        padding: 35px 24px;
        visibility: hidden;
        opacity: 0;
        background: #fff;
        flex-direction: column;
        transform: translateY(-15px);
        transition: visibility .3s, opacity .3s, transform .3s;
    }
    .mobile-menu.open { visibility: visible; opacity: 1; transform: none; }
    .mobile-menu nav { display: grid; }
    .mobile-menu nav a {
        display: flex;
        min-height: 57px;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--line);
        font-size: 17px;
        font-weight: 600;
    }
    .mobile-menu nav a span { color: #a4adba; font-size: 9px; }
    .mobile-menu .button { margin-top: auto; }
    .hero { padding-top: 130px; }
    .hero-shell { display: block; }
    .hero-copy { max-width: 720px; margin: 0 auto 70px; text-align: center; }
    .hero-copy .eyebrow,
    .hero-actions,
    .hero-proof { justify-content: center; }
    .hero h1,
    .hero-lead { margin-right: auto; margin-left: auto; }
    .hero h1 { font-size: clamp(55px, 8vw, 76px); }
    .product-stage { width: 820px; max-width: 90vw; margin: 0 auto; transform: none; }
    .trust-strip .shell { display: block; }
    .trust-strip p { margin-bottom: 20px; text-align: center; }
    .trust-items { justify-content: center; flex-wrap: wrap; }
    .statement-grid { grid-template-columns: 110px 1fr; }
    .two-column,
    .communication-section .two-column { gap: 45px; }
    .workflow { grid-template-columns: repeat(3, 1fr); gap: 50px 30px; }
    .workflow-line { display: none; }
    .performance-head { display: block; }
    .performance-head > p { margin-top: 25px; }
    .kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .modules-grid,
    .faq-grid { gap: 55px; }
    .security-grid { gap: 60px; }
    .integration-map { transform: scale(.86); margin-top: 20px; }
    .footer-top { grid-template-columns: .75fr 1.25fr; gap: 45px; }
    .feature-detail-grid,
    .solution-grid,
    .value-grid,
    .security-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
    :root { --shell: calc(100vw - 32px); }
    .site-header { height: 68px; }
    .header-actions .button-small { display: none; }
    .brand img { width: 165px; }
    .mobile-menu { top: 67px; }
    .hero { min-height: 0; padding: 120px 0 74px; }
    .hero h1 { font-size: clamp(44px, 13vw, 64px); }
    .hero-lead { font-size: 16px; }
    .product-stage { max-width: 105vw; margin-left: -2.5vw; }
    .window-body { min-height: 390px; }
    .dashboard { padding: 17px 15px; }
    .metric-card { min-height: 92px; }
    .metric-card > strong { font-size: 17px; }
    .dashboard-lower { grid-template-columns: 1fr .68fr; }
    .collection-chart,
    .risk-panel { height: 205px; }
    .chart-wrap { height: 130px; }
    .chart-wrap > svg { height: 110px; }
    .risk-ring { width: 85px; height: 85px; }
    .float-alert { top: 90px; right: -10px; }
    .float-task { right: 20px; bottom: -25px; }
    .floating-card { min-width: 200px; transform: scale(.82); transform-origin: right; }
    .statement-section,
    .feature-story,
    .communication-section,
    .modules-section,
    .integration-section,
    .insights-section,
    .faq-section { padding: 90px 0; }
    .statement-grid { display: block; }
    .statement-copy { margin-top: 25px; }
    .statement-copy h2,
    .section-heading h2,
    .performance-head h2,
    .insights-head h2,
    .faq-intro h2 { font-size: 42px; }
    .before-after { grid-template-columns: 1fr; gap: 0; }
    .compare-divider { height: 55px; }
    .compare-divider::before { top: 0; bottom: 0; left: 50%; width: 1px; height: auto; }
    .compare-card { min-height: 0; }
    .two-column,
    .communication-section .two-column,
    .security-grid { grid-template-columns: 1fr; }
    .story-copy { order: 1; }
    .priority-card,
    .message-stage { order: 2; }
    .reverse-mobile .story-copy { order: 1; }
    .reverse-mobile .message-stage { order: 2; }
    .risk-scale { grid-template-columns: repeat(4, 1fr); }
    .workflow { grid-template-columns: repeat(2, 1fr); }
    .performance-section { padding: 90px 0; }
    .team-row { grid-template-columns: 45px 1.4fr .8fr 50px; }
    .team-row > span:nth-child(3),
    .team-row > span:nth-child(5) { display: none; }
    .modules-grid,
    .faq-grid,
    .footer-top { grid-template-columns: 1fr; }
    .modules-intro,
    .faq-intro,
    .contact-intro { position: static; }
    .integration-map { height: auto; transform: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .integration-core { position: relative; top: auto; left: auto; width: 100%; height: 170px; grid-column: 1 / -1; border-radius: 10px; transform: none; }
    .core-rings,
    .integration-lines { display: none; }
    .integration-node { position: relative; inset: auto; width: auto; }
    .article-grid,
    .resources-grid { grid-template-columns: 1fr 1fr; }
    .article-grid article:last-child { grid-column: 1 / -1; }
    .resources-grid .article-card:first-child { display: block; grid-column: 1 / -1; }
    .resources-grid .article-card:first-child .article-visual { height: 320px; margin-bottom: 23px; }
    .faq-grid { gap: 55px; }
    .footer-top { gap: 45px; }
    .inner-hero { padding: 140px 0 85px; }
    .inner-hero h1 { font-size: 48px; }
    .inner-section { padding: 85px 0; }
    .page-band-grid,
    .about-story-grid,
    .contact-layout { grid-template-columns: 1fr; gap: 45px; }
    .about-manifesto { grid-template-columns: 1fr; gap: 25px; }
    .article-shell { grid-template-columns: 1fr; gap: 25px; }
    .article-aside { position: static; }
}

@media (max-width: 560px) {
    :root { --shell: calc(100vw - 28px); }
    body { padding-bottom: 58px; }
    .hero { padding-top: 108px; }
    .hero-copy { margin-bottom: 55px; text-align: left; }
    .hero-copy .eyebrow,
    .hero-actions,
    .hero-proof { justify-content: flex-start; }
    .hero h1 { font-size: 45px; letter-spacing: -.055em; }
    .hero-lead { font-size: 15px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
    .hero-proof { margin-top: 35px; }
    .product-stage { width: 700px; max-width: none; margin-left: -5px; transform: scale(.6); transform-origin: left top; }
    .product-stage-wrap { height: 350px; }
    .hero-shell { min-height: 800px; }
    .product-window { width: 700px; }
    .float-alert { right: -10px; }
    .trust-strip { margin-top: -245px; }
    .trust-items span { width: calc(50% - 12px); }
    .trust-items { gap: 14px 12px; }
    .statement-section,
    .feature-story,
    .communication-section,
    .modules-section,
    .integration-section,
    .insights-section,
    .faq-section { padding: 75px 0; }
    .statement-copy h2,
    .section-heading h2,
    .performance-head h2,
    .insights-head h2,
    .faq-intro h2,
    .story-copy h2,
    .modules-intro h2,
    .security-copy h2 { font-size: 36px; }
    .statement-copy > p,
    .story-copy > p,
    .section-heading > p { font-size: 14px; }
    .before-after { margin-top: 45px; }
    .compare-card { padding: 26px 23px; }
    .risk-scale { grid-template-columns: repeat(2, 1fr); }
    .priority-card { padding: 12px; overflow: hidden; }
    .account-row { padding: 0 4px; grid-template-columns: 34px 1fr 52px 13px; gap: 8px; }
    .account-row .status { display: none; }
    .account-name strong { font-size: 10px; }
    .workflow { grid-template-columns: 1fr 1fr; gap: 42px 18px; }
    .workflow-step p { font-size: 10px; }
    .message-stage { padding: 9px; }
    .channel-tabs { grid-template-columns: repeat(4, 1fr); gap: 3px; }
    .channel-tabs button { gap: 3px; font-size: 7px; }
    .message-window { min-height: 475px; padding: 16px; }
    .message-bubble { width: 91%; }
    .kpi-grid { grid-template-columns: 1fr; }
    .kpi-grid article { min-height: 180px; }
    .team-board { overflow: hidden; }
    .team-row { min-width: 500px; }
    .modules-grid { gap: 45px; }
    .module-item button { grid-template-columns: 35px 1fr 25px; }
    .module-content { padding-left: 35px; }
    .module-content ul { grid-template-columns: 1fr; }
    .security-teaser { padding: 80px 0; }
    .security-grid { gap: 45px; }
    .security-cards article { padding: 0; }
    .integration-map { grid-template-columns: 1fr; }
    .integration-core { grid-column: 1; }
    .insights-head { display: block; }
    .insights-head .inline-link { margin-top: 20px; }
    .article-grid,
    .resources-grid { grid-template-columns: 1fr; gap: 44px; }
    .article-grid article:last-child { grid-column: auto; }
    .article-visual { height: 235px; }
    .final-cta { padding: 100px 0; }
    .final-cta h2 { font-size: 48px; }
    .footer-nav { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
    .footer-nav > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 18px; }
    .mobile-sticky-cta {
        position: fixed;
        z-index: 95;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        padding: 8px 10px;
        background: rgba(255, 255, 255, .92);
        border-top: 1px solid var(--line);
        backdrop-filter: blur(12px);
    }
    .mobile-sticky-cta a {
        display: flex;
        height: 42px;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        color: #fff;
        background: var(--blue);
        border-radius: 5px;
        font-size: 12px;
        font-weight: 700;
    }
    .feature-detail-grid,
    .solution-grid,
    .value-grid,
    .security-detail-grid { grid-template-columns: 1fr; }
    .feature-list-large { grid-template-columns: 1fr; }
    .feature-list-large article,
    .feature-list-large article:nth-child(2n) { border-right: 0; }
    .inner-hero { padding: 120px 0 70px; }
    .inner-hero h1 { font-size: 39px; }
    .inner-hero .inner-lead { font-size: 15px; }
    .inner-section { padding: 70px 0; }
    .contact-form { padding: 27px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .field.full { grid-column: auto; }
    .article-shell { width: calc(100vw - 32px); padding: 60px 0 80px; }
    .article-content { font-size: 15px; }
    .article-content > p:first-child { font-size: 18px; }
    .article-content h2 { font-size: 27px; }
    .thanks-card { margin-top: 120px; padding: 45px 24px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
