/* ==========================================================================
   Tahsilat Radar — site stylesheet
   ========================================================================== */

:root {
    /* Brand palette from Tahsilat Radar logo:
       blue #2F6FED · navy #0D1B33 · slate #3D4A5D · gray #6D7684 · accent #E5484D */
    --blue: #2f6fed;
    --blue-press: #2353b1;
    --blue-ink: #275ec9;
    --blue-soft: #eef3fd;
    --ink: #0d1b33;
    --ink-2: #3d4a5d;
    --muted: #6d7684;
    --muted-2: #9da4ae;
    --line: #d0d1d6;
    --line-soft: #e6e8ed;
    --white: #fff;
    --surface: #f2f4f7;
    --surface-2: #f7f8fa;
    --dark: #0d1b33;
    --dark-2: #152238;
    --green: #0b7d4f;
    --amber: #a05f00;
    --red: #e5484d;

    /* Channel triplets so translucent variants derive from the same source as the
       solid token. Previously every glow and tint hardcoded the old hex as rgba(),
       so retuning a brand colour left dozens of them behind -- one conic-gradient
       was even mixing the new green with the old one. */
    --blue-rgb: 47 111 237;
    --green-rgb: 11 125 79;
    --amber-rgb: 160 95 0;
    --red-rgb: 229 72 77;
    --shell: min(1220px, calc(100vw - 64px));
    --sec: clamp(92px, 9.6vw, 156px);
    --r-xs: 6px;
    --r-sm: 8px;
    --r-md: 10px;
    --r-lg: 18px;
    --r-xl: 24px;
    --pill: 8px;
    --btn-radius: 8px;
    --shadow-1: 0 1px 2px rgba(0, 0, 0, .04), 0 4px 14px rgba(0, 0, 0, .04);
    --shadow-2: 0 2px 6px rgba(0, 0, 0, .04), 0 16px 40px rgba(20, 26, 38, .08);
    /* IBM Plex: classic enterprise-tech face — clearer and more durable than
       Inter / Space Grotesk for a B2B product site. */
    --font: "IBM Plex Sans", "Segoe UI", sans-serif;
    --ease: cubic-bezier(.25, .1, .25, 1);

    /* Motion system. There were four easing languages, five durations and three
       travel distances across CSS and JS; these are the single source of truth and
       site.js mirrors the same numbers. Entrances leave fast and settle long, which
       reads as composed rather than bouncy. */
    --ease-entrance: cubic-bezier(.22, 1, .36, 1);
    --motion-fast: .55s;
    --motion-slow: .8s;
    --motion-lift: 16px;
    --motion-lift-lg: 28px;
    --motion-stagger: .06s;
    --font-display: "IBM Plex Sans", "Segoe UI", sans-serif;
    /* Tabular figures for money, counts and percentages in the product surfaces.
       Aligned digits are what actually makes a data product feel engineered. */
    --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
    /* Header height is a token because the full-bleed hero has to pad itself past
       a header that sits inside it, and the value changes at one breakpoint. */
    --header-h: 76px;

    /* Display scale tuned for IBM Plex Sans — slightly narrower than Space Grotesk,
       so size can sit a touch larger without overflowing hero columns. */
    --display-lg: clamp(44px, 5vw, 68px);
    --display-md: clamp(42px, 4.7vw, 64px);
    --display-tracking: -.022em;
    --display-leading: 1.05;
    --display-measure: 16ch;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: -.005em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

body.menu-open .site-header {
    background: var(--dark);
    border-bottom-color: rgba(255, 255, 255, .08);
}

body.menu-open .brand img {
    filter: brightness(0) invert(1);
}

body.menu-open .menu-toggle {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
}

body.menu-open .menu-toggle span {
    background: #fff;
}

body.menu-open .header-actions .button-small {
    opacity: 0;
    pointer-events: none;
}

::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 {
    font-weight: 600;
    letter-spacing: -.018em;
    line-height: 1.15;
}

:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 4px;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--pill);
    font-size: 14px;
    transform: translateY(-180%);
}

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

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: visible;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid transparent;
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    transition: background .25s, border-color .25s;
}

.site-header.is-solid,
body:not(.page-home) .site-header {
    top: 12px;
    left: 50%;
    width: var(--shell);
    overflow: hidden;
    transform: translateX(-50%);
    background: rgb(255 255 255 / .92);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    box-shadow: 0 10px 32px rgb(20 26 38 / .08);
    backdrop-filter: saturate(150%) blur(14px);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
}

.site-header.is-solid .header-shell,
body:not(.page-home) .site-header .header-shell {
    width: 100%;
    padding-inline: 22px;
}

.header-shell {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: var(--shell);
    height: 60px;
    margin-inline: auto;
}

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

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

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

.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink-2);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -.005em;
    opacity: .85;
    transition: opacity .2s, color .2s;
}

.desktop-nav a svg {
    width: 15px;
    height: 15px;
    flex: none;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .72;
    transition: opacity .2s;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .35s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
    opacity: 1;
}

.desktop-nav a:hover svg,
.desktop-nav a[aria-current="page"] svg {
    opacity: 1;
}

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

.desktop-nav a[aria-current="page"] {
    font-weight: 500;
}

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

.header-cta {
    gap: 8px;
}

.header-cta span {
    display: inline-block;
    transition: transform .22s var(--ease);
}

.header-cta:hover span {
    transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Buttons and links
   -------------------------------------------------------------------------- */

.button {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    overflow: hidden;
    color: var(--white);
    background: var(--blue);
    border: 1px solid transparent;
    border-radius: var(--btn-radius);
    font-size: 15px;
    font-weight: 550;
    letter-spacing: -.005em;
    white-space: nowrap;
    transition:
        background .18s var(--ease),
        color .18s,
        border-color .18s,
        opacity .18s,
        transform .22s var(--ease),
        box-shadow .22s var(--ease);
}

.button:hover {
    background: var(--blue-press);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgb(var(--blue-rgb) / .22);
}

.button:active {
    opacity: .9;
    transform: translateY(0);
    box-shadow: none;
}

.button-small {
    min-height: 34px;
    padding: 0 16px;
    font-size: 13px;
}

.button-white {
    color: var(--ink);
    background: var(--white);
}

.button-white:hover {
    background: #ececf1;
}

.button-outline {
    color: var(--ink);
    background: transparent;
    border-color: var(--line);
}

.button-outline:hover {
    background: var(--surface);
    border-color: var(--line);
}

.button-quiet {
    color: var(--ink);
    background: var(--surface);
}

.button-quiet:hover {
    background: #ebebf0;
}
.inline-link {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: var(--blue-ink);
    font-size: 16px;
    font-weight: 400;
    transition: opacity .2s;
}
.inline-link:hover {
    opacity: .7;
}
.inline-link span {
    font-size: .9em;
    transition: transform .25s var(--ease);
}

.inline-link:hover span {
    transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Mobile navigation
   -------------------------------------------------------------------------- */

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

.mobile-menu {
    position: fixed;
    z-index: 190;
    inset: 0;
    pointer-events: none;
}

.mm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 24, .42);
    opacity: 0;
}

.mm-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding:
        calc(76px + env(safe-area-inset-top, 0px))
        22px
        calc(28px + env(safe-area-inset-bottom, 0px));
    overflow: hidden;
    color: #f5f6f8;
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgb(var(--blue-rgb) / .22), transparent 55%),
        linear-gradient(165deg, #152238 0%, #0d1b33 48%, #0a1426 100%);
    clip-path: inset(0 0 100% 0);
}

.mm-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.mm-kicker,
.mm-aside {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mm-kicker { color: rgba(255, 255, 255, .48); }
.mm-aside { color: rgba(255, 255, 255, .72); }

.mm-nav {
    display: grid;
    gap: 0;
    margin: 0;
}

.mm-nav a {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    overflow: hidden;
}

.mm-nav a span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, .55);
}

.mm-nav a span svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mm-nav a em {
    font-style: normal;
    font-size: clamp(32px, 9vw, 44px);
    font-weight: 550;
    letter-spacing: -.035em;
    line-height: 1.05;
    transition: transform .35s var(--ease), color .25s;
}

.mm-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 18px;
    width: 18px;
    height: 18px;
    border-right: 1.5px solid rgba(255, 255, 255, .35);
    border-top: 1.5px solid rgba(255, 255, 255, .35);
    opacity: 0;
    transform: translate(-6px, 6px) rotate(45deg);
    transition: opacity .25s, transform .35s var(--ease);
}

.mm-nav a:hover em,
.mm-nav a:focus-visible em {
    color: #7eb6ff;
    transform: translateX(6px);
}

.mm-nav a:hover::after,
.mm-nav a:focus-visible::after {
    opacity: 1;
    transform: translate(0, 0) rotate(45deg);
}

.mm-foot {
    display: grid;
    gap: 18px;
    margin-top: auto;
    padding-top: 28px;
}

.mm-cta {
    width: 100%;
    min-height: 50px;
    color: var(--dark);
    background: #fff;
}

.mm-cta:hover {
    background: var(--blue-soft);
}

.mm-contact {
    display: grid;
    gap: 6px;
}

.mm-contact a {
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
}

.mm-contact a:hover {
    color: #fff;
}

body.menu-open .mobile-menu {
    pointer-events: auto;
}

/* --------------------------------------------------------------------------
   Section headings
   -------------------------------------------------------------------------- */

.eyebrow {
    display: block;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -.005em;
}

.section-heading {
    max-width: 780px;
}

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

.statement-copy h2,
.section-heading h2,
.performance-head h2,
.insights-head h2,
.faq-intro h2,
.gallery-heading h2{
    margin: 0 0 20px;
    font-size: clamp(34px, 4.1vw, 56px);
    letter-spacing: -.022em;
}

.section-heading > p,
.statement-copy > p {
    max-width: 660px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.5;
}

.section-heading.center > p {
    margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    padding: 132px 0 clamp(64px, 6vw, 100px);
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 50% -10%, rgb(var(--blue-rgb) / .10), transparent 60%),
        linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}

.hero-shell {
    text-align: center;
}

.hero-copy {
    max-width: 880px;
    margin-inline: auto;
}

.js [data-hero-item],
.js [data-hero-visual] {
    opacity: 0;
}

.js.hero-ready [data-hero-item],
.js.hero-ready [data-hero-visual] {
    opacity: 1;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(40px, 5.6vw, 76px);
    font-weight: 600;
    letter-spacing: -.026em;
    line-height: 1.04;
}

.hero-lead {
    max-width: 640px;
    margin: 0 auto 34px;
    color: var(--muted);
    font-size: clamp(18px, 1.5vw, 21px);
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hero-note {
    margin: 30px 0 0;
    color: var(--muted-2);
    font-size: 14px;
}

/* --------------------------------------------------------------------------
   Product window mock — everything inside scales with the root em
   -------------------------------------------------------------------------- */

.product-stage {
    width: min(1120px, 100%);
    margin: clamp(48px, 5vw, 78px) auto 0;
    perspective: 1200px;
}

.product-window {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: var(--r-lg);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, .04),
        0 28px 70px rgba(20, 26, 38, .12);
    font-size: clamp(6px, 1.05vw, 12px);
    line-height: 1.45;
    transform-origin: center top;
}

.window-topbar {
    display: flex;
    height: 6.4em;
    align-items: center;
    gap: 1.5em;
    padding: 0 2em;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid var(--line-soft);
}

.window-brand {
    display: flex;
    align-items: center;
    gap: .9em;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: -.01em;
}

.window-brand img {
    width: 1.9em;
    height: auto;
}

.window-search {
    display: flex;
    width: 26em;
    height: 3.4em;
    align-items: center;
    gap: .9em;
    margin-left: 1.5em;
    padding: 0 1.2em;
    /* --muted-2 only clears 4.24:1 against --surface, so this one steps darker */
    color: #686c74;
    background: var(--surface);
    border-radius: var(--pill);
    font-size: 1em;
}

.window-search svg {
    width: 1.3em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.window-profile {
    display: grid;
    width: 3.2em;
    height: 3.2em;
    margin-left: auto;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    border-radius: 50%;
    font-size: 1em;
    font-weight: 600;
}

.window-body {
    display: flex;
    min-height: 58em;
}

.product-sidebar {
    display: flex;
    width: 5.6em;
    flex: 0 0 5.6em;
    align-items: center;
    padding-top: 2.4em;
    background: var(--surface-2);
    border-right: 1px solid var(--line-soft);
    flex-direction: column;
    gap: .6em;
}

.side-item {
    display: grid;
    width: 3.2em;
    height: 3.2em;
    place-items: center;
    color: #a2a2ab;
    border-radius: .85em;
}

.side-item svg {
    width: 1.65em;
    height: 1.65em;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.side-item.active {
    color: var(--blue);
    background: var(--blue-soft);
}

.dashboard {
    width: calc(100% - 5.6em);
    padding: 2.8em 2.6em 2.6em;
    background: var(--white);
}

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

.dashboard-heading small,
.card-head small {
    display: block;
    margin-bottom: .45em;
    color: var(--muted-2);
    font-size: .95em;
    font-weight: 400;
    letter-spacing: 0;
}

.dashboard-heading strong {
    font-size: 1.9em;
    font-weight: 600;
    letter-spacing: -.02em;
}

.live-pill {
    display: flex;
    align-items: center;
    gap: .55em;
    padding: .4em .75em;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xs);
    font-size: .88em;
    font-weight: 500;
}

.live-pill i {
    width: .45em;
    height: .45em;
    background: var(--muted-2);
    border-radius: 50%;
}

.metric-row {
    display: grid;
    margin-top: 2.1em;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 1.3em;
}

.metric-card {
    position: relative;
    min-height: 13.5em;
    padding: 1.8em;
    overflow: hidden;
    background: var(--surface-2);
    border: 1px solid var(--line-soft);
    border-radius: 1.3em;
}

.metric-card > svg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
    height: 4.4em;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.6;
}

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

.metric-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 1em;
}

.metric-label span {
    display: grid;
    width: 2em;
    height: 2em;
    place-items: center;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: .5em;
    font-size: .9em;
}

.metric-label .risk-dot {
    width: .6em;
    height: .6em;
    background: var(--red);
    border-radius: 50%;
}

.metric-card > strong {
    display: block;
    margin: 1em 0 .4em;
    font-size: 2.7em;
    font-weight: 600;
    letter-spacing: -.028em;
}

.metric-card > small {
    color: var(--muted-2);
    font-size: .9em;
}

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

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

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

.collection-chart,
.risk-panel {
    height: 29em;
    padding: 1.8em;
    background: var(--surface-2);
    border: 1px solid var(--line-soft);
    border-radius: 1.3em;
}

.card-head strong {
    display: block;
    font-size: 1.9em;
    font-weight: 600;
    letter-spacing: -.02em;
}

.card-head > span {
    padding: .5em .9em;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--pill);
    font-size: .9em;
}

.chart-wrap {
    position: relative;
    height: 20em;
    margin-top: 1.4em;
    padding-left: 2.8em;
}

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

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

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

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

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

.chart-y {
    position: absolute;
    top: 0;
    bottom: 2.6em;
    left: 0;
    display: flex;
    justify-content: space-between;
    color: var(--muted-2);
    font-size: .82em;
    flex-direction: column;
}

.chart-months {
    display: flex;
    justify-content: space-between;
    color: var(--muted-2);
    font-size: .82em;
}

.risk-ring {
    position: relative;
    width: 13em;
    height: 13em;
    margin: 1.8em auto 1.2em;
}

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

.ring-base { stroke: #e7e7ec; }
.ring-low { stroke: var(--blue); stroke-dasharray: 183 270; }
.ring-mid { stroke: var(--amber); 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: 2.2em;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1;
}

.risk-ring small {
    color: var(--muted-2);
    font-size: .9em;
}

.risk-legend {
    display: grid;
    gap: .7em;
}

.risk-legend span {
    display: flex;
    align-items: center;
    color: var(--muted);
    font-size: .95em;
}

.risk-legend i {
    width: .55em;
    height: .55em;
    margin-right: .8em;
    background: var(--blue);
    border-radius: 50%;
}

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

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */

.trust-strip {
    padding: 52px 0 56px;
    background: var(--surface);
    text-align: center;
}

.trust-label {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 15px;
}

.trust-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px clamp(34px, 4.5vw, 64px);
    flex-wrap: wrap;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
}

.brand-mark img {
    width: auto;
    height: 26px;
}

/* DİA's mark is a compact square badge, so it needs more height to read as equal weight */
.brand-dia img {
    height: 39px;
}

/* Mikro is a two-line wordmark; slightly taller keeps visual parity with Logo/DİA */
.brand-mikro img {
    height: 34px;
}

.brand-netsis img {
    height: 30px;
}

.trust-brands .brand-mark {
    opacity: .9;
}

.trust-facts {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    gap: 8px 20px;
    flex-wrap: wrap;
}

.trust-facts li {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 14px;
}

.trust-facts li:not(:last-child)::after {
    color: var(--line);
    content: "·";
}

/* --------------------------------------------------------------------------
   Product gallery
   -------------------------------------------------------------------------- */

.product-gallery {
    padding: var(--sec) 0;
    background: var(--white);
}

.gallery-heading {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.gallery-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.5;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(52px, 5.4vw, 78px) clamp(24px, 2.6vw, 36px);
}

.product-shot {
    min-width: 0;
    margin: 0;
}

.shot-media {
    overflow: hidden;
    background: var(--surface);
    border-radius: var(--r-xl);
    aspect-ratio: 16 / 10;
}

.shot-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.product-shot:hover .shot-media img {
    transform: scale(1.02);
}

.product-shot figcaption {
    padding: 24px 6px 0;
}

.product-shot figcaption span,
.product-shot figcaption strong {
    display: block;
}

.product-shot figcaption span {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 15px;
}

.product-shot figcaption strong {
    font-size: clamp(21px, 1.7vw, 26px);
    font-weight: 600;
    letter-spacing: -.021em;
    line-height: 1.18;
}

.product-shot figcaption p {
    max-width: 46ch;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Statement / before after
   -------------------------------------------------------------------------- */

.statement-section,
.feature-story,
.communication-section,
.packages-section,
.integration-section,
.insights-section,
.faq-section,
.workflow-section {
    padding: var(--sec) 0;
}

.statement-section {
    background: var(--surface);
}

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

.before-after {
    display: grid;
    margin-top: 56px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.compare-card {
    padding: 36px 38px;
    background: var(--white);
    border-radius: var(--r-lg);
}

.compare-after {
    color: var(--white);
    background: var(--dark);
}

.compare-head {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line-soft);
}

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

.compare-label {
    display: block;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.018em;
}

.compare-head i {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 15px;
    font-style: normal;
}

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

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

.compare-card li {
    color: var(--muted);
    font-size: 16px;
}

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

/* --------------------------------------------------------------------------
   Feature story / priority card
   -------------------------------------------------------------------------- */

.feature-risk {
    background: var(--white);
}

.two-column {
    display: grid;
    align-items: center;
    grid-template-columns: .88fr 1.12fr;
    gap: 72px;
}

.story-copy h2,
.security-copy h2 {
    margin: 0 0 20px;
    font-size: clamp(32px, 3.7vw, 50px);
    letter-spacing: -.022em;
}

.story-copy > p,
.security-copy > p {
    max-width: 560px;
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.5;
}

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

.risk-scale span {
    display: grid;
    color: var(--muted);
    font-size: 14px;
    grid-template-columns: 9px 1fr;
    gap: 2px 10px;
}

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

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

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

.priority-card {
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-1);
}

.priority-head {
    padding: 18px 18px 20px;
}

.priority-head small {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 13px;
}

.priority-head strong {
    display: block;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -.018em;
}

.priority-head > span {
    padding: 5px 12px;
    color: var(--muted);
    background: var(--surface);
    border-radius: var(--pill);
    font-size: 13px;
}

.account-row {
    display: grid;
    min-height: 68px;
    align-items: center;
    padding: 0 18px;
    border-top: 1px solid var(--line-soft);
    grid-template-columns: 36px minmax(140px, 1fr) 72px 66px 14px;
    gap: 14px;
    transition: background .2s;
}

.account-row:hover {
    background: var(--surface-2);
}

.account-logo {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.account-logo.navy { background: #34405a; }
.account-logo.violet { background: #6b52c9; }
.account-logo.green { background: #0f8f60; }

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

.account-name strong {
    font-size: 14px;
    font-weight: 500;
}

.account-name small {
    color: var(--muted-2);
    font-size: 12px;
}

.account-row > b {
    font-size: 14px;
    font-weight: 500;
}

.status {
    display: inline-flex;
    width: max-content;
    padding: 4px 10px;
    border-radius: var(--pill);
    font-size: 12px;
    font-weight: 500;
}

.status.critical { color: #c23a3f; background: #fdeced; }
.status.high { color: #b45309; background: #fdf1e3; }
.status.mid { color: #8a6100; background: #fbf4dd; }
.status.low { color: #0b7d51; background: #e8f7f0; }
.account-row > i { color: #b8b8c0; font-size: 15px; font-style: normal; }

.priority-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border-top: 1px solid var(--line-soft);
    color: var(--muted-2);
    font-size: 13px;
}

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

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

.priority-foot a {
    color: var(--blue-ink);
}

/* --------------------------------------------------------------------------
   Workflow
   -------------------------------------------------------------------------- */

.workflow-section {
    background: var(--surface);
}

.workflow {
    display: grid;
    margin-top: 64px;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.workflow-step {
    padding: 32px 30px 34px;
    background: var(--white);
    border-radius: var(--r-lg);
    transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}

.workflow-step:hover {
    box-shadow: var(--shadow-1);
    transform: translateY(-2px);
}

.step-icon {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    place-items: center;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 50%;
}

.step-icon.filled {
    color: #fff;
    background: var(--blue);
}

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

.workflow-step h3 {
    margin: 0 0 8px;
    font-size: 19px;
    letter-spacing: -.018em;
}

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

/* --------------------------------------------------------------------------
   Communication
   -------------------------------------------------------------------------- */

.communication-section {
    background: var(--white);
}

.communication-section .two-column {
    grid-template-columns: 1.08fr .92fr;
}

.message-stage {
    padding: 14px;
    background: var(--surface);
    border-radius: var(--r-xl);
}

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

.channel-tabs button {
    display: flex;
    height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: var(--pill);
    font-size: 14px;
    transition: background .2s, color .2s;
}

.channel-tabs button span {
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    color: #9a9aa2;
}

.channel-tabs button span svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.channel-tabs button.active {
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow-1);
}

.channel-tabs button.active span {
    color: var(--blue);
}
.channel-apps.changing {
    opacity: .4;
    transform: translateY(3px);
}

/* —— Channel app mocks (minimal) —— */
.channel-apps {
    overflow: hidden;
    min-height: 420px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-1);
    transition: opacity .18s, transform .18s;
}

.channel-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--line-soft);
}

.channel-context strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.channel-context small {
    color: var(--muted-2);
    font-size: 11px;
}

.channel-context > span {
    color: var(--muted-2);
    font-size: 11px;
    text-align: right;
}

.channel-context > span b {
    display: block;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
}

.channel-app {
    display: none;
}

.channel-app.is-active {
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.channel-promise {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 11px 12px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
}

.channel-promise > span {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    place-items: center;
    color: #fff;
    background: #16a34a;
    border-radius: 50%;
    font-size: 12px;
}

.channel-promise div { display: grid; min-width: 0; }
.channel-promise small { color: #15803d; font-size: 10px; }
.channel-promise strong { font-size: 12px; font-weight: 600; }
.channel-promise > b {
    margin-left: auto;
    color: #15803d;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.ch-head {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line-soft);
}

.ch-head.sms,
.ch-head.wa {
    grid-template-columns: 36px 1fr;
}

.ch-head.wa {
    color: #fff;
    background: #128c7e;
    border-bottom: 0;
}

.ch-head.mail {
    background: #f3f9fd;
}

.ch-head.call {
    background: #f8fafc;
}

.ch-avatar {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #fff;
    background: #0078d4;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

.ch-avatar.soft { background: #8764b8; }
.ch-head.sms .ch-avatar { background: #007aff; }
.ch-head.wa .ch-avatar { color: #075e54; background: #dfe5e3; }
.ch-head.call .ch-avatar { background: #64748b; }

.ch-head strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.ch-head small {
    color: var(--muted-2);
    font-size: 11px;
}

.ch-head.wa small { color: rgba(255,255,255,.78); }

.ch-head time,
.ch-head em {
    color: var(--muted-2);
    font-size: 11px;
    font-style: normal;
    white-space: nowrap;
}

.ch-head.call em {
    padding: 4px 8px;
    color: #15803d;
    background: #ecfdf5;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
}

.ch-body {
    flex: 1;
    padding: 16px;
}

.ch-body.mail p {
    margin: 0 0 10px;
    color: var(--ink-2);
    font-size: 13px;
    line-height: 1.55;
}

.ch-reply {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    margin-top: 14px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
}

.ch-reply strong { font-size: 12px; }
.ch-reply p {
    margin: 4px 0 0;
    color: var(--ink-2);
    font-size: 12px;
    line-height: 1.45;
}

.ch-body.sms,
.ch-body.wa {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ch-body.wa {
    background: #efeae2;
}

.ch-bubble {
    max-width: 88%;
    padding: 10px 12px 6px;
    font-size: 13px;
    line-height: 1.4;
}

.ch-bubble small {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    text-align: right;
}

.ch-bubble.out { margin-left: auto; }
.ch-bubble.in { margin-right: auto; }

.ch-bubble.out.sms {
    color: #fff;
    background: #007aff;
    border-radius: 16px 16px 4px 16px;
}

.ch-bubble.out.sms small { color: rgba(255,255,255,.75); }

.ch-bubble.in.sms {
    color: var(--ink);
    background: #e9e9eb;
    border-radius: 16px 16px 16px 4px;
}

.ch-bubble.in.sms small { color: var(--muted-2); }

.ch-bubble.out.wa {
    color: #111b21;
    background: #d9fdd3;
    border-radius: 8px 0 8px 8px;
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

.ch-bubble.out.wa small { color: #667781; }

.ch-bubble.in.wa {
    color: #111b21;
    background: #fff;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

.ch-bubble.in.wa small { color: #667781; }

.ch-compose {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px 14px;
    border-top: 1px solid var(--line-soft);
}

.ch-compose.wa {
    background: #f0f2f5;
    border-top: 0;
}

.ch-compose span {
    flex: 1;
    height: 36px;
    padding: 0 14px;
    color: var(--muted-2);
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    font-size: 13px;
    line-height: 36px;
}

.ch-compose.wa span { border: 0; }

.ch-compose i {
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
}

.ch-compose.sms i {
    height: 34px;
    padding: 0 12px;
    color: #fff;
    background: #007aff;
    border-radius: 999px;
}

.ch-compose.wa i {
    width: 34px;
    height: 34px;
    background: #128c7e;
    border-radius: 50%;
}

.ch-compose.wa i::before {
    width: 8px;
    height: 12px;
    background: #fff;
    border-radius: 6px;
    content: "";
}

.ch-body.call {
    display: grid;
    gap: 10px;
    align-content: start;
}

.ch-body.call article {
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 10px;
}

.ch-body.call b {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ch-body.call p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
}

.feature-checks {
    display: grid;
    margin: 30px 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: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 2px;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    font-size: 11px;
}

.feature-checks div {
    display: grid;
}

.feature-checks b {
    font-size: 17px;
    font-weight: 500;
}

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

/* --------------------------------------------------------------------------
   Performance (dark)
   -------------------------------------------------------------------------- */

.performance-section {
    padding: var(--sec) 0;
    color: #fff;
    background: var(--dark);
}

.performance-head {
    max-width: 780px;
}

.performance-head h2 {
    margin-bottom: 18px;
}

.performance-head > p {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, .6);
    font-size: 19px;
    line-height: 1.5;
}

.kpi-grid {
    display: grid;
    margin-top: 56px;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.kpi-grid article {
    position: relative;
    min-height: 200px;
    padding: 26px;
    overflow: hidden;
    background: var(--dark-2);
    border-radius: var(--r-lg);
}

.kpi-grid article > span {
    color: rgba(255, 255, 255, .55);
    font-size: 15px;
}

.kpi-grid article > strong {
    display: block;
    margin: 16px 0 6px;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -.026em;
}

.kpi-grid article > small {
    color: rgba(255, 255, 255, .52);
    font-size: 13px;
}

.kpi-grid article > small b {
    color: #4fd39f;
    font-weight: 500;
}

.kpi-bar {
    position: absolute;
    right: 26px;
    bottom: 26px;
    left: 26px;
    height: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, .1);
    border-radius: var(--pill);
}

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

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

.kpi-sparks i {
    height: 50%;
    background: rgba(255, 255, 255, .12);
    border-radius: 2px;
    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: 24px;
    bottom: 22px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--blue) 0 61%, rgba(255, 255, 255, .12) 61%);
}

.kpi-donut::after {
    position: absolute;
    inset: 5px;
    content: "";
    background: var(--dark-2);
    border-radius: 50%;
}

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

.team-board {
    margin-top: 14px;
    overflow: hidden;
    background: var(--dark-2);
    border-radius: var(--r-lg);
}

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

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

.team-board-head small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .45);
    font-size: 13px;
}

.team-board-head strong {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -.018em;
}

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

.team-board-head span,
.team-board-head a {
    padding: 7px 14px;
    color: rgba(255, 255, 255, .6);
    background: rgba(255, 255, 255, .07);
    border-radius: var(--pill);
    font-size: 13px;
}

.team-board-head a {
    color: #7ab6ff;
}

.team-row {
    display: grid;
    min-height: 68px;
    align-items: center;
    padding: 0 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    grid-template-columns: 56px 1.4fr 1fr .8fr 1.2fr 46px;
    gap: 15px;
}

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

.team-labels {
    min-height: 40px;
    color: rgba(255, 255, 255, .52);
    background: rgba(255, 255, 255, .03);
    font-size: 12px;
}

.rank {
    color: rgba(255, 255, 255, .52);
    font-size: 13px;
}

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

.member > i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: #9cc7ff;
    background: rgba(120, 175, 255, .16);
    border-radius: 50%;
    font-size: 11px;
    font-style: normal;
    grid-row: 1 / 3;
}

.member b { color: #fff; font-weight: 500; }
.member small,
.team-row > span small { color: rgba(255, 255, 255, .52); font-size: 12px; }

.mini-bar {
    display: inline-block;
    width: 52px;
    height: 4px;
    margin-right: 9px;
    overflow: hidden;
    vertical-align: middle;
    background: rgba(255, 255, 255, .12);
    border-radius: var(--pill);
}

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

.score {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: #9cc7ff;
    background: rgba(120, 175, 255, .16);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Packages
   -------------------------------------------------------------------------- */

.packages-section {
    background: var(--white);
}

.package-grid {
    display: grid;
    margin-top: 54px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.package-card {
    display: flex;
    padding: 34px 32px;
    background: var(--surface);
    border-radius: var(--r-xl);
    flex-direction: column;
}

.package-card.package-featured {
    color: #fff;
    background: var(--dark);
}

.package-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.package-topline > span {
    color: var(--blue-ink);
    font-size: 14px;
    font-weight: 500;
}

.package-topline > small {
    padding: 4px 11px;
    color: var(--muted);
    background: var(--white);
    border-radius: var(--pill);
    font-size: 12px;
}

.package-featured .package-topline > span {
    color: #7ab6ff;
}

.package-featured .package-topline > small {
    color: #fff;
    background: rgba(255, 255, 255, .13);
}

.package-card h3 {
    margin: 22px 0 12px;
    font-size: 26px;
    letter-spacing: -.02em;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.package-price strong {
    font-size: clamp(30px, 2.8vw, 38px);
    font-weight: 600;
    letter-spacing: -.026em;
    line-height: 1;
}

.package-price span {
    color: var(--muted);
    font-size: 15px;
}

.package-card > p {
    min-height: 66px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.package-featured > p,
.package-featured .package-price span {
    color: rgba(255, 255, 255, .6);
}

.package-capacity {
    display: grid;
    margin-top: 20px;
    padding: 18px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.package-featured .package-capacity {
    border-color: rgba(255, 255, 255, .12);
}

.package-capacity > span {
    display: grid;
    color: var(--muted);
    font-size: 14px;
    grid-template-columns: 1fr auto;
}

.package-capacity strong {
    color: var(--ink);
    font-size: 16px;
    font-weight: 500;
}

.package-capacity small {
    margin-top: 3px;
    color: var(--muted-2);
    font-size: 12px;
    grid-column: 1 / -1;
}

.package-featured .package-capacity strong {
    color: #fff;
}

.package-featured .package-capacity > span,
.package-featured .package-capacity small {
    color: rgba(255, 255, 255, .55);
}

.package-activation {
    margin-top: 16px;
    color: var(--muted);
    font-size: 14px;
}

.package-activation strong {
    color: var(--ink);
    font-weight: 500;
}

.package-activation span {
    color: var(--muted-2);
    font-size: 13px;
}

.package-featured .package-activation,
.package-featured .package-activation span {
    color: rgba(255, 255, 255, .55);
}

.package-featured .package-activation strong {
    color: #fff;
}

.package-card ul {
    display: grid;
    margin: 22px 0 30px;
    padding: 0;
    list-style: none;
    gap: 11px;
}

.package-card li {
    position: relative;
    padding-left: 20px;
    color: var(--ink-2);
    font-size: 15px;
}

.package-card li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--blue);
    content: "✓";
    font-size: 13px;
}

.package-featured li {
    color: rgba(255, 255, 255, .8);
}

.package-featured li::before {
    color: #7ab6ff;
}

.package-button {
    width: 100%;
    margin-top: auto;
}

.package-card .button-outline {
    background: var(--white);
    border-color: transparent;
}

.package-card .button-outline:hover {
    background: #ebebf0;
}

.addon-grid {
    display: grid;
    margin-top: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.addon-grid article {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    background: var(--surface);
    border-radius: var(--r-lg);
}

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

.addon-grid strong {
    font-size: 16px;
    font-weight: 500;
}

.addon-grid span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
}

.addon-grid b {
    flex: 0 0 auto;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.022em;
}

.addon-grid b small {
    margin-left: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
}

.package-note {
    margin: 30px 0 0;
    color: var(--muted-2);
    font-size: 14px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   Integration — Framer-style node map
   -------------------------------------------------------------------------- */

.integration-section {
    position: relative;
    overflow: hidden;
    color: var(--ink);
    background: var(--surface-2);
}

.ig-shell {
    position: relative;
}

.ig-head {
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
}

.ig-head h2 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: clamp(30px, 3.6vw, 42px);
    font-weight: 500;
    letter-spacing: var(--display-tracking);
    line-height: 1.1;
    text-wrap: balance;
}

.ig-head > p {
    max-width: 46ch;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.ig-map {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 320px;
    padding: 28px 12px;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(12px, 3vw, 36px);
}

.ig-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .9;
}

.ig-line {
    fill: none;
    stroke: rgb(var(--blue-rgb) / .28);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-dasharray: 3 7;
    animation: ig-dash 2.4s linear infinite;
}

.ig-line:nth-child(odd) { animation-delay: .4s; }
.ig-line:nth-child(3n) { animation-delay: .8s; stroke: rgb(var(--blue-rgb) / .18); }

@keyframes ig-dash {
    to { stroke-dashoffset: -40; }
}

.ig-nodes {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ig-nodes-left { justify-items: start; }
.ig-nodes-right { justify-items: end; }

.ig-node {
    position: relative;
}

.ig-node-brand {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 6px 2px;
    filter: grayscale(.15);
    transition: transform .35s var(--ease-entrance), filter .35s var(--ease-entrance);
}

.ig-node-brand:hover {
    filter: none;
    transform: translateX(4px);
}

.ig-nodes-left .ig-node-brand:hover {
    transform: translateX(6px);
}

.ig-node-brand img {
    display: block;
    width: auto;
    height: 22px;
}

.ig-node-brand.brand-dia img { height: 30px; }
.ig-node-brand.brand-mikro img { height: 24px; }
.ig-node-brand.brand-netsis img { height: 22px; }

.ig-node-brand::after,
.ig-node-out::before {
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    content: "";
    background: #fff;
    border: 1.5px solid rgb(var(--blue-rgb) / .55);
    border-radius: 50%;
    transform: translateY(-50%);
}

.ig-node-brand::after {
    right: -18px;
}

.ig-node-out::before {
    left: -18px;
}

.ig-node-core {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 6px;
    width: min(200px, 42vw);
    padding: 28px 22px 24px;
    text-align: center;
    color: var(--ink);
    background: rgb(255 255 255 / .72);
    border: 1px solid rgb(255 255 255 / .85);
    border-radius: 28px;
    box-shadow:
        0 1px 0 rgb(255 255 255 / .9) inset,
        0 18px 40px rgb(20 30 50 / .08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.ig-node-core img {
    width: 30px;
    height: auto;
    margin-bottom: 2px;
}

.ig-node-core strong {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.02em;
}

.ig-node-out {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: var(--ink-2);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -.015em;
    transition: transform .35s var(--ease-entrance), color .35s var(--ease-entrance);
}

.ig-node-out:hover {
    color: var(--ink);
    transform: translateX(-4px);
}

@media (prefers-reduced-motion: reduce) {
    .ig-line {
        animation: none;
    }
}

@media (max-width: 860px) {
    .ig-map {
        min-height: 0;
        padding: 8px 0 4px;
        gap: 28px;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .ig-lines { display: none; }

    .ig-nodes {
        width: 100%;
        max-width: 420px;
        gap: 14px;
    }

    .ig-nodes-left,
    .ig-nodes-right {
        justify-items: center;
    }

    .ig-nodes-left {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 28px;
    }

    .ig-nodes-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }

    .ig-node-brand::after,
    .ig-node-out::before {
        display: none;
    }

    .ig-node-brand:hover,
    .ig-nodes-left .ig-node-brand:hover,
    .ig-node-out:hover {
        transform: none;
    }

    .ig-node-core {
        order: -1;
        width: min(220px, 70vw);
    }

    .ig-node-out {
        padding: 8px 12px;
        color: var(--ink);
        background: rgb(255 255 255 / .65);
        border-radius: 999px;
    }
}

@media (max-width: 560px) {
    .ig-head { margin-bottom: 28px; }
}

/* --------------------------------------------------------------------------
   Security teaser
   -------------------------------------------------------------------------- */

.security-teaser {
    padding: var(--sec) 0;
    color: #fff;
    background: var(--dark);
}

.security-grid {
    display: grid;
    align-items: center;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
}

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

.security-cards {
    display: grid;
    gap: 12px;
}

.security-cards article {
    display: grid;
    min-height: 104px;
    align-items: center;
    padding: 0 28px;
    background: var(--dark-2);
    border-radius: var(--r-lg);
    grid-template-columns: 46px 1fr;
    gap: 20px;
}

.security-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: #9cc7ff;
    background: rgba(120, 175, 255, .14);
    border-radius: 50%;
}

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

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

.security-cards strong {
    margin-bottom: 4px;
    font-size: 17px;
    font-weight: 500;
}

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

/* --------------------------------------------------------------------------
   Insights / article cards
   -------------------------------------------------------------------------- */

.insights-section {
    background: var(--white);
}

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

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

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

.article-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.article-visual {
    position: relative;
    display: block;
    height: 230px;
    margin-bottom: 20px;
    overflow: hidden;
    background: var(--surface);
    border-radius: var(--r-lg);
}

.article-visual {
    transition: transform .5s var(--ease);
}

.article-card:hover .article-visual {
    transform: scale(1.014);
}

.article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 12px;
    color: var(--ink-2);
    background: rgba(255, 255, 255, .85);
    border-radius: var(--pill);
    font-size: 12px;
    backdrop-filter: blur(8px);
}

.visual-tile,
.visual-bars,
.visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.visual-tile {
    display: flex;
    width: 116px;
    height: 116px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--blue);
    border-radius: 26px;
    flex-direction: column;
}

.visual-tile span {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
}

.visual-tile i {
    margin-top: 5px;
    font-size: 13px;
    font-style: normal;
    opacity: .75;
}

.visual-2 {
    background: #f2effc;
}

.visual-bars {
    display: flex;
    width: 156px;
    height: 112px;
    align-items: end;
    gap: 11px;
}

.visual-bars i {
    height: 26%;
    background: #c3b2ea;
    border-radius: 5px;
    flex: 1;
}

.visual-bars i:nth-child(2) { height: 42%; }
.visual-bars i:nth-child(3) { height: 60%; }
.visual-bars i:nth-child(4) { height: 78%; }
.visual-bars i:nth-child(5) { height: 100%; background: #6b52c9; }

.visual-3 {
    background: #e9f7f1;
}

.visual-ring {
    display: flex;
    width: 136px;
    height: 136px;
    align-items: center;
    justify-content: center;
    background: conic-gradient(var(--green) 0 82%, rgb(var(--green-rgb) / .16) 82%);
    border-radius: 50%;
    flex-direction: column;
}

.visual-ring::before {
    position: absolute;
    inset: 13px;
    content: "";
    background: #e9f7f1;
    border-radius: 50%;
}

.visual-ring strong,
.visual-ring small {
    position: relative;
    z-index: 1;
    color: #0b7d51;
}

.visual-ring strong {
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
}

.visual-ring small {
    margin-top: 4px;
    font-size: 12px;
}

.article-meta {
    margin-bottom: 10px;
    color: var(--muted-2);
    font-size: 13px;
}

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

.article-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    letter-spacing: -.019em;
    line-height: 1.24;
}

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

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

.article-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 7px;
    margin-top: auto;
    padding-top: 4px;
    color: var(--blue-ink);
    font-size: 16px;
}

.article-link span {
    transition: transform .25s var(--ease);
}

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

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-section {
    background: var(--surface);
}

.faq-grid {
    display: grid;
    align-items: start;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
}

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

.faq-intro > p {
    max-width: 420px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item button {
    display: flex;
    width: 100%;
    min-height: 78px;
    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: 18px;
    font-weight: 500;
    letter-spacing: -.015em;
}

.faq-item button i {
    color: var(--blue);
    font-size: 20px;
    font-style: normal;
    transition: transform .3s var(--ease);
}

.faq-item button:hover strong {
    color: var(--blue-ink);
}

.faq-item button:hover i {
    transform: scale(1.15);
}

.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: 280px;
    padding-bottom: 26px;
    opacity: 1;
}

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

/* --------------------------------------------------------------------------
   Final CTA + footer
   -------------------------------------------------------------------------- */

.final-cta {
    position: relative;
    padding: var(--sec) 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 80% at 50% 120%, rgb(var(--blue-rgb) / .08), transparent 55%),
        var(--surface);
    text-align: center;
}

.final-cta-inner {
    position: relative;
}

.final-cta h2 {
    margin: 0 0 18px;
    font-size: clamp(36px, 4.6vw, 62px);
    letter-spacing: -.024em;
}

.final-cta p {
    max-width: 560px;
    margin: 0 auto 32px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.5;
}

.site-footer {
    padding: 64px 0 28px;
    background: var(--white);
    border-top: 1px solid var(--line-soft);
}

.footer-top {
    display: grid;
    padding-bottom: 52px;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

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

.footer-brand > p {
    max-width: 300px;
    margin: 22px 0 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

.footer-parent {
    color: var(--muted-2);
    font-size: 13px;
}

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

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

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

.footer-nav strong {
    margin-bottom: 16px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
}

.footer-nav a,
.footer-nav span {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 14px;
}

.footer-nav a:hover {
    color: var(--ink);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    color: var(--muted-2);
    border-top: 1px solid var(--line-soft);
    font-size: 13px;
}

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

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

.footer-bottom button {
    padding: 0;
    color: var(--muted-2);
    background: none;
    border: 0;
    font-size: 13px;
}

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

/* --------------------------------------------------------------------------
   Reveal
   -------------------------------------------------------------------------- */

/* Hide only below-fold items marked by JS — above-the-fold never flashes blank. */
.js [data-reveal].reveal-pending {
    opacity: 0;
    transform: translateY(var(--motion-lift));
    transition:
        opacity var(--motion-slow) var(--ease-entrance),
        transform var(--motion-slow) var(--ease-entrance);
}

.js [data-reveal].reveal-pending[data-delay="1"] { transition-delay: var(--motion-stagger); }
.js [data-reveal].reveal-pending[data-delay="2"] { transition-delay: calc(var(--motion-stagger) * 2); }

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

/* --------------------------------------------------------------------------
   Inner pages
   -------------------------------------------------------------------------- */

.page-banner {
    padding: 132px 0 64px;
    background:
        radial-gradient(ellipse 70% 60% at 100% 0%, rgb(var(--blue-rgb) / .08), transparent 55%),
        linear-gradient(180deg, #fbfbfd 0%, var(--surface) 100%);
    border-bottom: 1px solid var(--line-soft);
}

.page-banner-inner {
    max-width: 820px;
}

.page-banner.is-centered {
    text-align: center;
}

.page-banner.is-centered .page-banner-inner {
    margin-inline: auto;
}

.page-banner-label {
    margin: 0 0 14px;
    color: var(--blue-ink);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -.01em;
}

.page-banner h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 4.2vw, 52px);
    letter-spacing: -.024em;
    line-height: 1.05;
}

.page-banner-lead {
    margin: 0;
    max-width: 42ch;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.5;
}

.page-banner.is-centered .page-banner-lead {
    margin-inline: auto;
}

.page-banner-meta {
    margin: 18px 0 0;
    color: var(--muted-2);
    font-size: 14px;
}
.addon-grid article{
    transition: background .25s var(--ease);
}
.addon-grid article:hover{
    background: #eeeef2;
}

@keyframes fx-bar-rise {
    from { transform: scaleY(.35); opacity: .5; }
    to { transform: scaleY(1); opacity: 1; }
}

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

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

.article-aside strong {
    display: block;
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
}

.article-aside a {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 14px;
}

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

.article-content {
    color: var(--ink-2);
    font-size: 18px;
    line-height: 1.72;
}

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

.article-content h2 {
    margin: 48px 0 16px;
    color: var(--ink);
    font-size: 29px;
}

.article-content h3 {
    margin: 34px 0 12px;
    color: var(--ink);
    font-size: 22px;
}

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

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

.article-content blockquote {
    margin: 40px 0;
    padding: 28px 32px;
    color: var(--ink);
    background: var(--surface);
    border-radius: var(--r-md);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.5;
}

.article-back {
    display: inline-flex;
    gap: 8px;
    margin-top: 40px;
    color: var(--blue-ink);
    font-size: 16px;
}

.contact-form {
    padding: 40px;
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-1);
}

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

.form-head h2 {
    margin: 0 0 6px;
    font-size: 26px;
    letter-spacing: -.02em;
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
}

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

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

.field label {
    color: var(--ink-2);
    font-size: 14px;
}

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

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    background: var(--surface);
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    outline: none;
    font-size: 16px;
    transition: border-color .2s, background .2s;
}

.field textarea {
    min-height: 120px;
    padding-top: 14px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: var(--white);
    border-color: var(--blue);
}

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

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

.form-error-banner {
    margin-bottom: 22px;
    padding: 14px 16px;
    color: #a52328;
    background: #fdeced;
    border-radius: var(--r-sm);
    font-size: 15px;
}

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

.form-consent {
    margin: 20px 0;
    color: var(--muted-2);
    font-size: 13px;
    line-height: 1.55;
}

.form-consent a {
    color: var(--blue-ink);
}

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

/* --------------------------------------------------------------------------
   Legal and 404
   -------------------------------------------------------------------------- */

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 0 120px;
    color: var(--ink-2);
    font-size: 17px;
    line-height: 1.72;
}

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

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
    :root { --shell: min(1080px, calc(100vw - 40px)); }
    .desktop-nav { gap: 22px; }
    .two-column { gap: 52px; }
    .security-grid { gap: 56px; }
    .package-card { padding: 28px 24px; }
}

@media (max-width: 1024px) {
    .desktop-nav{ display: none; }
    .header-actions { margin-left: auto; gap: 10px; }
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    body.page-home:not(.menu-open) .site-header:not(.is-solid) {
        /* No backdrop-filter here — keep a readable full-hero bar. */
        background: rgb(255 255 255 / .92);
        border-bottom-color: rgb(23 26 31 / .06);
    }
    /* No backdrop-filter at this width, so the solid state needs full opacity. */
    .site-header.is-solid,
    body:not(.page-home) .site-header {
        background: #fff;
        border-color: var(--line-soft);
    }
    body.menu-open .site-header {
        background: var(--dark);
        border-bottom-color: rgb(255 255 255 / .08);
    }
    .menu-toggle {
        display: inline-flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: var(--surface);
        border: 1px solid var(--line-soft);
        border-radius: 10px;
        flex-direction: column;
        gap: 5px;
        transition: background .25s, border-color .25s;
    }
    .menu-toggle span {
        width: 16px;
        height: 1.5px;
        background: var(--ink);
        border-radius: 2px;
        transition: transform .28s var(--ease), opacity .22s, background .25s;
    }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
    .mobile-menu {
        display: block;
    }
    .hero { padding-top: 116px; }
    .workflow { grid-template-columns: repeat(2, 1fr); }
    .kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { gap: 48px; }
    .footer-top { grid-template-columns: .8fr 1.2fr; gap: 42px; }}

@media (max-width: 860px) {
    :root { --shell: calc(100vw - 32px); --sec: clamp(56px, 10vw, 88px); }
    html { overflow-x: clip; }
    body { overflow-x: clip; }
    .hero { padding-top: 104px; }
    .hero-copy h1,
    .gallery-heading h2,
    .section-heading h2,
    .statement-copy h2,
    .performance-head h2,
    .final-cta h2 {
        font-size: clamp(28px, 7.2vw, 40px);
        line-height: 1.18;
    }
    .hero-lead,
    .gallery-heading > p,
    .section-heading > p {
        font-size: 16px;
    }
    .hero-actions { flex-wrap: wrap; }
    .product-stage { width: 100%; max-width: 100%; }
    .window-search { display: none; }
    .before-after { grid-template-columns: 1fr; }
    .two-column,
    .communication-section .two-column,
    .security-grid,
    .faq-grid,
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .story-copy { order: 1; }
    .priority-card,
    .message-stage { order: 2; }
    .reverse-mobile .story-copy { order: 1; }
    .reverse-mobile .message-stage { order: 2; }
    .faq-intro,
    .article-aside { position: static; }
    .team-row { grid-template-columns: 44px 1.4fr .9fr 46px; }
    .team-row > span:nth-child(3),
    .team-row > span:nth-child(5) { display: none; }
    .package-grid,
    .addon-grid { grid-template-columns: 1fr; }
    .package-card > p { min-height: 0; }
    .product-gallery-grid { grid-template-columns: 1fr; gap: 40px; }
    .article-grid{ grid-template-columns: 1fr 1fr; }
    .article-shell { grid-template-columns: 1fr; gap: 24px; }
    .page-banner { padding: 104px 0 40px; }
    .fp-hero,
    .ab-hero,
    .sp-hero,
    .cp-hero { padding-top: 108px; }
    .trust-brands { gap: 18px 28px; justify-content: center; }
    .trust-facts { gap: 8px 14px; justify-content: center; }
    .final-cta { padding: 56px 0; }
    .final-cta-inner { text-align: center; }
    .final-cta .button { width: min(100%, 320px); }
    .site-footer { padding-bottom: 28px; }
    .footer-brand p { max-width: 42ch; }}

@media (max-width: 560px) {
    :root { --shell: calc(100vw - 24px); --sec: 56px; }
    body {
        font-size: 15px;
    }
    .brand img { width: 128px; }
    .header-actions .button-small { display: none; }
    .header-shell { height: 56px; }
    .site-header { height: 56px; }
    .mm-panel {
        padding-top: calc(72px + env(safe-area-inset-top, 0px));
        padding-inline: 18px;
    }
    .mm-nav a em { font-size: clamp(30px, 9.5vw, 40px); }
    .mm-nav a { padding: 12px 0; }
    .hero { padding-top: 88px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-actions .button { width: 100%; }
    .hero-note { font-size: 13px; }
    .product-window { border-radius: var(--r-md); font-size: 8px; }
    .window-topbar { padding: 0 1.4em; }
    .product-sidebar { display: none; }
    .dashboard { width: 100%; padding: 2em 1.6em; }
    .metric-row { grid-template-columns: 1fr; }
    .metric-card { min-height: 0; }
    .dashboard-lower { grid-template-columns: 1fr; }
    .collection-chart, .risk-panel { height: auto; padding-bottom: 2.4em; }
    .chart-wrap { height: 18em; }
    .window-body { min-height: 0; }
    .trust-strip { padding: 28px 0; }
    .trust-strip .shell { flex-direction: column; text-align: center; gap: 18px; }
    .trust-brands { gap: 16px 22px; }
    .trust-brands .brand-mark img { max-height: 22px; }
    .workflow { grid-template-columns: 1fr; }
    .workflow-step { padding: 22px 20px 24px; }
    .kpi-grid { grid-template-columns: 1fr; }
    .kpi-grid article { min-height: 148px; }
    .team-board { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .team-row { min-width: 460px; }
    .risk-scale { grid-template-columns: 1fr 1fr; gap: 10px; }
    .account-row { padding: 0 12px; grid-template-columns: 32px 1fr 60px 12px; gap: 10px; }
    .account-row .status { display: none; }
    .channel-tabs { gap: 4px; }
    .channel-tabs button { gap: 4px; padding-inline: 10px; font-size: 12px; }
    .channel-tabs button span { display: none; }
    .channel-apps { min-height: 0; }
    .channel-app.is-active { min-height: 0; }
    .channel-context { padding: 10px 12px; }
    .ch-head { padding: 10px 12px; }
    .ch-body { padding: 12px; }
    .ch-head strong { font-size: 12px; }
    .compare-card { padding: 24px 20px; }
    .product-shot figcaption { padding: 16px 2px 0; }
    .product-shot figcaption strong { font-size: 20px; }
    .product-shot figcaption p { font-size: 15px; }
    .shot-media { padding: 10px; }
    .contact-form { padding: 22px 16px; }
    .form-grid { grid-template-columns: 1fr; }
    .field.full { grid-column: auto; }
    .article-grid{ grid-template-columns: 1fr; gap: 32px; }
    .footer-top { gap: 32px; }
    .footer-nav { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
    .footer-nav > div:last-child { grid-column: 1 / -1; }
    .footer-nav a,
    .footer-nav span { font-size: 14px; }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding-top: 22px;
    }
    .footer-bottom span,
    .footer-bottom a,
    .footer-bottom button { font-size: 12px; }
    .article-shell { width: calc(100vw - 24px); padding: 48px 0 80px; }
    .final-cta { padding: 48px 0 56px; }
    .final-cta p { font-size: 15px; }
    .package-card { padding: 24px 20px; }
    .ui-cols { grid-template-columns: 1fr; }
    .ui-metrics { grid-template-columns: 1fr; }}

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

    .js [data-hero-item],
    .js [data-hero-visual] {
        opacity: 1;
    }

    .button:hover {
        transform: none;
        box-shadow: none;
    }}

/* ========================================================================== 
   Features page — product-led layout
   ========================================================================== */

.fp-hero {
    position: relative;
    padding: 132px 0 86px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 34%, rgb(var(--blue-rgb) / .10), transparent 34%),
        radial-gradient(circle at 4% 12%, rgba(43, 129, 255, .07), transparent 24%),
        linear-gradient(180deg, #fbfbfd 0%, #f5f7fb 100%);
}

.fp-hero::before {
    position: absolute;
    top: 210px;
    left: 50%;
    width: 720px;
    height: 720px;
    content: "";
    background: rgb(var(--blue-rgb) / .035);
    border: 1px solid rgb(var(--blue-rgb) / .06);
    border-radius: 50%;
    transform: translateX(-50%);
}

.fp-hero-shell {
    position: relative;
    z-index: 1;
}

.fp-hero-copy {
    max-width: 920px;
    margin-inline: auto;
    text-align: center;
}

.fp-brand-pill {
    display: inline-flex;
    height: 38px;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 0 15px 0 11px;
    color: var(--blue-ink);
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgb(var(--blue-rgb) / .14);
    border-radius: var(--pill);
    box-shadow: 0 8px 28px rgba(27, 72, 128, .06);
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(12px);
}

.fp-brand-pill img {
    width: 19px;
    height: auto;
}

.fp-hero h1 {
    max-width: var(--display-measure);
    margin: 0 auto 24px;
    font-size: var(--display-md);
    font-weight: 600;
    letter-spacing: var(--display-tracking);
    line-height: var(--display-leading);
}

.fp-hero-copy > p {
    max-width: 700px;
    margin: 0 auto 34px;
    color: var(--muted);
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.5;
}

.fp-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.fp-hero-facts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.fp-hero-facts li {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.fp-hero-facts li > i {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--blue-soft);
}

.fp-hero-facts span,
.fp-hero-facts b {
    display: block;
}

.fp-hero-facts span {
    color: var(--muted-2);
    font-size: 12px;
    line-height: 1.35;
}

.fp-hero-facts b {
    margin-bottom: 1px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.fp-hero-visual {
    position: relative;
    max-width: 1120px;
    margin: 72px auto 0;
}

.fp-product-frame {
    position: relative;
    padding: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(14, 34, 67, .10);
    border-radius: 30px;
    box-shadow: 0 50px 100px rgba(17, 34, 61, .17), 0 8px 24px rgba(17, 34, 61, .08);
    backdrop-filter: blur(18px);
}

.fp-frame-bar {
    display: grid;
    height: 52px;
    align-items: center;
    padding: 0 18px;
    grid-template-columns: 1fr auto 1fr;
}

.fp-frame-bar > img {
    width: 138px;
    height: auto;
}

.fp-window-dots {
    display: flex;
    gap: 6px;
}

.fp-window-dots i {
    width: 8px;
    height: 8px;
    background: #dedee4;
    border-radius: 50%;
}

.fp-window-dots i:first-child { background: #ff5f57; }
.fp-window-dots i:nth-child(2) { background: #febc2e; }
.fp-window-dots i:nth-child(3) { background: #28c840; }

.fp-frame-live {
    display: flex;
    align-items: center;
    justify-self: end;
    padding: 4px 9px;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.fp-product-frame picture,
.fp-product-frame picture img,
.fp-product-frame .fp-frame-mock {
    display: block;
    width: 100%;
}

.fp-product-frame picture,
.fp-product-frame .fp-frame-mock {
    aspect-ratio: 1672 / 941;
    overflow: hidden;
    border: 1px solid rgba(8, 24, 49, .08);
    border-radius: 20px;
}

.fp-product-frame picture img {
    height: auto;
    aspect-ratio: 1672 / 941;
    object-fit: contain;
}

.fp-product-frame .fp-frame-mock {
    height: 100%;
}

.fp-product-frame .ui-mock {
    height: 100%;
    min-height: 100%;
    border-radius: 0;
}

.fp-section-nav {
    position: sticky;
    z-index: 80;
    top: 60px;
    height: 56px;
    background: rgba(255, 255, 255, .87);
    border-top: 1px solid rgba(0, 0, 0, .04);
    border-bottom: 1px solid var(--line-soft);
    backdrop-filter: saturate(180%) blur(18px);
}

.fp-section-nav .shell {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fp-section-nav a {
    padding: 7px 14px;
    color: var(--muted);
    border-radius: var(--pill);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: color .2s var(--ease), background .2s var(--ease);
}

.fp-section-nav a:hover,
.fp-section-nav a.active {
    color: var(--blue-ink);
    background: var(--blue-soft);
}

.fp-platform {
    padding: var(--sec) 0;
    background: var(--white);
}

.fp-platform .section-heading {
    max-width: 900px;
}

.fp-bento {
    display: grid;
    margin-top: 58px;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.fp-bento-card {
    position: relative;
    min-width: 0;
    padding: 34px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, .035);
    border-radius: var(--r-xl);
}

.fp-bento-card h3 {
    margin: 0 0 10px;
    font-size: clamp(24px, 2.4vw, 34px);
    letter-spacing: -.028em;
}

.fp-bento-card p {
    max-width: 47ch;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.52;
}

.fp-card-kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--blue-ink);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
}

.fp-bento-priority {
    display: grid;
    min-height: 470px;
    align-content: space-between;
    grid-column: span 7;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0%, rgba(50, 144, 255, .28), transparent 34%),
        #121722;
}

.fp-bento-priority .fp-card-kicker { color: #76baff; }
.fp-bento-priority p { color: rgba(255, 255, 255, .6); }

.fp-bento-flow,
.fp-bento-channels {
    grid-column: span 5;
}

.fp-bento-flow {
    min-height: 227px;
    background: linear-gradient(145deg, #eef5ff, #f7f9fd);
}

.fp-bento-channels {
    min-height: 227px;
}

.fp-bento-control {
    display: grid;
    min-height: 280px;
    align-items: center;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    background: #f8f8fa;
}

.fp-mini-list {
    padding: 9px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
}

.fp-mini-list > div {
    display: grid;
    min-height: 65px;
    align-items: center;
    padding: 0 13px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    grid-template-columns: 9px 1fr auto auto;
    gap: 13px;
}

.fp-mini-list > div:first-child { border-top: 0; }

.fp-mini-list > div > i {
    width: 7px;
    height: 7px;
    background: var(--amber);
    border-radius: 50%;
}

.fp-mini-list > div > i.critical { background: #ff5a60; }
.fp-mini-list > div > i.high { background: #ff8a3d; }

.fp-mini-list span,
.fp-mini-list b,
.fp-mini-list small {
    display: block;
}

.fp-mini-list b,
.fp-mini-list > div > strong {
    font-size: 14px;
    font-weight: 500;
}

.fp-mini-list small {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
}

.fp-mini-list em {
    min-width: 55px;
    padding: 5px 9px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .09);
    border-radius: var(--pill);
    font-size: 11px;
    font-style: normal;
    text-align: center;
}

.fp-flow-line,
.fp-channel-pills {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 28px;
}

.fp-flow-line span,
.fp-channel-pills span {
    padding: 8px 11px;
    color: var(--blue-ink);
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgb(var(--blue-rgb) / .10);
    border-radius: var(--pill);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.fp-flow-line i {
    color: #9ebde5;
    font-size: 12px;
    font-style: normal;
}

.fp-channel-pills {
    flex-wrap: wrap;
}

.fp-channel-pills span {
    color: var(--muted);
    background: var(--white);
    border-color: var(--line-soft);
}

.fp-channel-pills span:first-child {
    color: var(--blue-ink);
    background: var(--blue-soft);
    border-color: transparent;
}

.fp-mini-chart {
    position: relative;
    display: flex;
    height: 164px;
    align-items: flex-end;
    gap: 14px;
    padding: 18px 22px 0;
    background:
        repeating-linear-gradient(to bottom, var(--line-soft) 0, var(--line-soft) 1px, transparent 1px, transparent 40px);
    border-bottom: 1px solid #d9d9df;
}

.fp-mini-chart span {
    flex: 1;
    height: var(--h);
    min-height: 20px;
    background: linear-gradient(180deg, #59aafd, var(--blue));
    border-radius: 7px 7px 2px 2px;
    box-shadow: 0 8px 18px rgb(var(--blue-rgb) / .18);
}

.fp-feature {
    padding: var(--sec) 0;
}

.fp-feature-risk {
    overflow: hidden;
    background: var(--surface);
}

.fp-feature-grid {
    display: grid;
    align-items: center;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(48px, 6vw, 86px);
}

.fp-feature-copy h2 {
    margin: 0 0 22px;
    font-size: clamp(36px, 4.2vw, 56px);
    letter-spacing: -.03em;
}

.fp-feature-copy > p:not(.eyebrow) {
    max-width: 570px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

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

.fp-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.fp-check-list li > span {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 2px;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    font-size: 11px;
}

.fp-check-list li div {
    display: grid;
}

.fp-check-list b {
    font-size: 16px;
    font-weight: 600;
}

.fp-check-list small {
    max-width: 46ch;
    margin-top: 2px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.fp-shot {
    position: relative;
    min-width: 0;
}

.fp-shot > picture,
.fp-shot > .fp-frame-mock {
    display: block;
    aspect-ratio: 1672 / 941;
    padding: 9px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 32, 58, .08);
    border-radius: 26px;
    box-shadow: 0 32px 64px rgba(21, 38, 65, .12);
}

.fp-shot > picture img,
.fp-shot > .fp-frame-mock .ui-mock {
    width: 100%;
    height: 100%;
    aspect-ratio: 1672 / 941;
    border-radius: 18px;
    object-fit: contain;
}

.fp-shot-label {
    position: absolute;
    right: -20px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 205px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(21, 38, 65, .16);
    backdrop-filter: blur(14px);
}

.fp-shot-label img {
    width: 20px;
    height: auto;
}

.fp-shot-label span,
.fp-shot-label b {
    display: block;
}

.fp-shot-label span {
    color: var(--muted);
    font-size: 11px;
}

.fp-shot-label b {
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
}

.fp-workflow {
    padding: var(--sec) 0;
    color: #fff;
    background:
        radial-gradient(circle at 88% 16%, rgb(var(--blue-rgb) / .26), transparent 30%),
        #12151b;
}

.fp-workflow-head {
    display: grid;
    align-items: end;
    grid-template-columns: 1.1fr .7fr;
    gap: 80px;
}

.fp-workflow .eyebrow {
    color: #76baff;
}

.fp-workflow-head h2 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(38px, 4.8vw, 62px);
    letter-spacing: -.032em;
}

.fp-workflow-head > p {
    margin: 0 0 4px;
    color: rgba(255, 255, 255, .58);
    font-size: 17px;
    line-height: 1.55;
}

.fp-workflow-track {
    position: relative;
    display: grid;
    margin: 72px 0 0;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(6, 1fr);
}

.fp-workflow-track::before {
    position: absolute;
    top: 21px;
    right: 8.33%;
    left: 8.33%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(118, 186, 255, .7), rgba(118, 186, 255, .2));
}

.fp-workflow-track li {
    position: relative;
    padding: 0 13px;
    text-align: center;
}

.fp-workflow-track li > span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 43px;
    height: 43px;
    margin: 0 auto 20px;
    place-items: center;
    color: #9fccff;
    background: #1d2633;
    border: 1px solid rgba(118, 186, 255, .3);
    border-radius: 50%;
    box-shadow: 0 0 0 7px #12151b;
    font-size: 11px;
    font-weight: 600;
}

.fp-workflow-track li:last-child > span {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}

.fp-workflow-track b,
.fp-workflow-track small {
    display: block;
}

.fp-workflow-track b {
    margin-bottom: 7px;
    font-size: 15px;
    font-weight: 600;
}

.fp-workflow-track small {
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    line-height: 1.45;
}

.fp-workflow-note {
    display: grid;
    align-items: center;
    margin-top: 70px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    grid-template-columns: 28px 1fr auto;
    gap: 16px;
}

.fp-workflow-note img {
    width: 24px;
    height: auto;
}

.fp-workflow-note p {
    margin: 0;
    color: rgba(255, 255, 255, .52);
    font-size: 14px;
}

.fp-workflow-note b {
    color: #fff;
    font-weight: 600;
}

.fp-workflow-note a {
    color: #9fccff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.fp-workflow-note a span {
    margin-left: 4px;
}

.fp-communication {
    padding: var(--sec) 0;
}

.fp-communication .two-column {
    gap: clamp(48px, 6vw, 80px);
}

.fp-reporting {
    padding: var(--sec) 0;
    overflow: hidden;
    background: var(--surface);
}

.fp-reporting .section-heading {
    max-width: 860px;
}

.fp-report-stage {
    position: relative;
    min-height: 690px;
    margin-top: 64px;
}

.fp-report-desktop {
    width: 79%;
    padding: 9px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 32, 58, .09);
    border-radius: 26px;
    box-shadow: 0 32px 76px rgba(21, 38, 65, .13);
}

.fp-shot-top {
    display: grid;
    height: 46px;
    align-items: center;
    padding: 0 12px;
    grid-template-columns: 1fr auto 1fr;
}

.fp-shot-top > span {
    display: flex;
    gap: 5px;
}

.fp-shot-top i {
    width: 7px;
    height: 7px;
    background: #dbdbe1;
    border-radius: 50%;
}

.fp-shot-top b {
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
}

.fp-report-desktop picture,
.fp-report-desktop img,
.fp-report-desktop .fp-frame-mock {
    display: block;
    width: 100%;
}

.fp-report-desktop picture,
.fp-report-desktop .fp-frame-mock {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 18px;
}

.fp-report-desktop picture img,
.fp-report-desktop .fp-frame-mock .ui-mock {
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: contain;
}

.fp-report-mobile {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 37%;
    padding: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 32, 58, .09);
    border-radius: 26px;
    box-shadow: 0 32px 76px rgba(21, 38, 65, .18);
}

.fp-report-mobile picture,
.fp-report-mobile picture img,
.fp-report-mobile .fp-frame-mock {
    display: block;
    width: 100%;
}

.fp-report-mobile picture,
.fp-report-mobile .fp-frame-mock {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 18px;
}

.fp-report-mobile picture img,
.fp-report-mobile .fp-frame-mock .ui-mock {
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: contain;
}

.fp-report-mobile > div {
    padding: 22px 20px 20px;
}

.fp-report-mobile h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.fp-report-mobile p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.fp-report-facts {
    display: grid;
    margin-top: 36px;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.fp-report-facts article {
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.fp-report-facts b {
    font-size: 16px;
    font-weight: 600;
}

.fp-report-facts p {
    max-width: 34ch;
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.fp-capabilities {
    padding: var(--sec) 0;
    background: #fff;
}

.fp-capabilities-head {
    display: grid;
    align-items: end;
    grid-template-columns: 1.1fr .65fr;
    gap: 80px;
}

.fp-capabilities-head h2 {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(38px, 4.6vw, 60px);
    letter-spacing: -.032em;
}

.fp-capabilities-head > p {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.fp-capability-grid {
    display: grid;
    margin-top: 62px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.fp-capability-grid article {
    position: relative;
    min-height: 246px;
    padding: 30px;
    background: var(--surface-2);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    transition: background .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}

.fp-capability-grid article:hover {
    background: #fff;
    box-shadow: var(--shadow-1);
    transform: translateY(-2px);
}

.fp-capability-grid span {
    display: grid;
    width: 34px;
    height: 34px;
    margin-bottom: 34px;
    place-items: center;
    color: var(--blue-ink);
    background: var(--blue-soft);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.fp-capability-grid h3 {
    margin: 0 0 10px;
    font-size: 19px;
}

.fp-capability-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.52;
}

.fp-integration {
    padding: var(--sec) 0;
    color: #fff;
    background:
        radial-gradient(circle at 85% 25%, rgb(var(--blue-rgb) / .24), transparent 30%),
        #11151d;
}

.fp-integration-grid {
    display: grid;
    align-items: center;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(56px, 7vw, 100px);
}

.fp-integration .eyebrow {
    color: #76baff;
}

.fp-integration-copy h2 {
    margin: 0 0 22px;
    font-size: clamp(38px, 4.6vw, 60px);
    letter-spacing: -.032em;
}

.fp-integration-copy > p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 17px;
    line-height: 1.55;
}

.fp-integration-copy ul {
    display: grid;
    margin: 30px 0 34px;
    padding: 0;
    list-style: none;
    gap: 12px;
}

.fp-integration-copy li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.fp-integration-copy li span {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    font-size: 9px;
}

.fp-integration-visual {
    padding: 16px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--r-xl);
}

.fp-integration-source,
.fp-integration-target {
    background: #fff;
    border-radius: 20px;
}

.fp-integration-source {
    padding: 20px;
}

.fp-integration-source > small {
    display: block;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
}

.fp-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.fp-brand-grid > span {
    display: flex;
    height: 78px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--surface);
    border-radius: 13px;
}

.fp-brand-grid .brand-mark img { max-height: 23px; }
.fp-brand-grid .brand-dia img { max-height: 38px; }
.fp-brand-grid .brand-mikro img { max-width: 82px; max-height: 30px; }

.fp-brand-grid .brand-netsis img {
    max-height: 24px;
}

.fp-data-flow {
    display: flex;
    height: 54px;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.fp-data-flow i {
    height: 1px;
    background: rgba(118, 186, 255, .28);
    flex: 1;
}

.fp-integration-target {
    display: grid;
    min-height: 96px;
    align-items: center;
    padding: 20px 24px;
    color: var(--ink);
    grid-template-columns: 40px 1fr auto;
    gap: 14px;
}

.fp-integration-target > img {
    width: 37px;
    height: auto;
}

.fp-integration-target div,
.fp-integration-target b,
.fp-integration-target small {
    display: block;
}

.fp-integration-target b {
    font-size: 16px;
    font-weight: 600;
}

.fp-integration-target small {
    color: var(--muted);
    font-size: 12px;
}

.fp-integration-target > span {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    color: #0b7d51;
    background: #e8f7f0;
    border-radius: var(--pill);
    font-size: 11px;
    font-weight: 500;
}

.fp-integration-target > span i {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

@media (max-width: 1180px) {
    .fp-report-stage { min-height: 58vw; }}

@media (max-width: 1024px) {
    .fp-hero { padding-top: 118px; }
    .fp-feature-grid,
    .fp-integration-grid { grid-template-columns: 1fr; }
    .fp-feature-copy { max-width: 700px; }
    .fp-shot { width: 94%; margin-inline: auto; }
    .fp-integration-copy { max-width: 720px; }
    .fp-integration-visual { max-width: 760px; }
    .fp-report-stage { min-height: 60vw; }
    .fp-capabilities-head { grid-template-columns: 1fr .72fr; gap: 46px; }}

@media (max-width: 860px) {
    .fp-hero-facts { gap: 20px; }
    .fp-section-nav { overflow-x: auto; scrollbar-width: none; }
    .fp-section-nav::-webkit-scrollbar { display: none; }
    .fp-section-nav .shell { width: max-content; min-width: 100%; padding: 0 20px; justify-content: flex-start; }
    .fp-bento-priority,
    .fp-bento-flow,
    .fp-bento-channels { grid-column: 1 / -1; }
    .fp-bento-priority { min-height: 440px; }
    .fp-bento-control { grid-template-columns: 1fr; gap: 28px; }
    .fp-workflow-head,
    .fp-capabilities-head { grid-template-columns: 1fr; gap: 24px; }
    .fp-workflow-head > p,
    .fp-capabilities-head > p { max-width: 650px; }
    .fp-workflow-track { grid-template-columns: repeat(3, 1fr); row-gap: 42px; }
    .fp-workflow-track::before { display: none; }
    .fp-workflow-note { grid-template-columns: 28px 1fr; }
    .fp-workflow-note a { grid-column: 2; }
    .fp-report-stage { min-height: 0; }
    .fp-report-desktop { width: 100%; }
    .fp-report-mobile { position: relative; width: 56%; margin: -70px 20px 0 auto; }
    .fp-report-facts { margin-top: 40px; }
    .fp-capability-grid { grid-template-columns: repeat(2, 1fr); }}

@media (max-width: 560px) {
    .fp-hero { padding: 100px 0 58px; }
    .fp-hero::before { top: 300px; width: 520px; height: 520px; }
    .fp-hero h1 { font-size: clamp(43px, 13vw, 58px); }
    .fp-hero-copy > p { font-size: 18px; }
    .fp-hero-actions { align-items: stretch; flex-direction: column; }
    .fp-hero-actions .button { width: 100%; }
    .fp-hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
    .fp-hero-facts li:last-child { grid-column: 1 / -1; }
    .fp-hero-visual { margin-top: 48px; }
    .fp-product-frame { padding: 5px; border-radius: 18px; }
    .fp-frame-bar { height: 40px; padding: 0 10px; }
    .fp-frame-bar > img { width: 105px; }
    .fp-frame-live { font-size: 9px; }
    .fp-product-frame picture { border-radius: 12px; }
    .fp-section-nav { top: 60px; }
    .fp-bento { margin-top: 38px; }
    .fp-bento-card { padding: 26px 22px; border-radius: 22px; }
    .fp-bento-priority { min-height: 430px; }
    .fp-mini-list > div { padding: 0 7px; grid-template-columns: 7px 1fr auto; gap: 9px; }
    .fp-mini-list em { display: none; }
    .fp-mini-list b,
    .fp-mini-list > div > strong { font-size: 12px; }
    .fp-mini-list small { font-size: 10px; }
    .fp-flow-line { overflow-x: auto; padding-bottom: 4px; }
    .fp-mini-chart { height: 130px; gap: 8px; padding-inline: 10px; }
    .fp-feature-grid { gap: 44px; }
    .fp-shot { width: 100%; }
    .fp-shot > picture { padding: 5px; border-radius: 18px; }
    .fp-shot > picture img { border-radius: 12px; }
    .fp-shot-label { right: 8px; bottom: -26px; min-width: 180px; padding: 10px 12px; }
    .fp-workflow-track { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
    .fp-workflow-track li { padding: 0 8px; }
    .fp-workflow-note { padding: 18px; grid-template-columns: 1fr; }
    .fp-workflow-note a { grid-column: auto; }
    .fp-communication .message-stage { padding: 8px; border-radius: 22px; }
    .fp-report-stage { margin-top: 40px; }
    .fp-report-desktop { padding: 5px; border-radius: 18px; }
    .fp-shot-top { height: 36px; }
    .fp-report-desktop picture { border-radius: 12px; }
    .fp-report-mobile { width: 82%; margin: -22px 0 0 auto; padding: 6px; border-radius: 18px; }
    .fp-report-mobile picture { border-radius: 12px; }
    .fp-report-mobile > div { padding: 18px 14px 14px; }
    .fp-report-facts { grid-template-columns: 1fr; gap: 24px; }
    .fp-capability-grid { grid-template-columns: 1fr; margin-top: 42px; }
    .fp-capability-grid article { min-height: 0; }
    .fp-brand-grid { grid-template-columns: 1fr 1fr; }
    .fp-integration-source { padding: 12px; }
    .fp-integration-target { padding: 16px; grid-template-columns: 34px 1fr; }
    .fp-integration-target > span { grid-column: 2; width: max-content; }}

/* ========================================================================== 
   Security page — trust and control system
   ========================================================================== */

.sp-hero {
    position: relative;
    padding: 142px 0 94px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 35%, rgb(var(--blue-rgb) / .11), transparent 30%),
        linear-gradient(180deg, #fbfbfd 0%, #f4f6fa 100%);
}

.sp-hero::before {
    position: absolute;
    top: 80px;
    right: -220px;
    width: 680px;
    height: 680px;
    content: "";
    border: 1px solid rgb(var(--blue-rgb) / .06);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgb(var(--blue-rgb) / .018), 0 0 0 160px rgb(var(--blue-rgb) / .012);
}

.sp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: .88fr 1.12fr;
    gap: clamp(52px, 7vw, 100px);
}

.sp-brand-pill {
    display: inline-flex;
    height: 38px;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 0 15px 0 11px;
    color: var(--blue-ink);
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgb(var(--blue-rgb) / .14);
    border-radius: var(--pill);
    box-shadow: 0 8px 28px rgba(27, 72, 128, .06);
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(12px);
}

.sp-brand-pill img {
    width: 18px;
    height: auto;
}

.sp-hero h1 {
    /* was 10.5ch, which broke this 56-character headline into six lines */
    max-width: var(--display-measure);
    margin: 0 0 24px;
    font-size: var(--display-md);
    font-weight: 600;
    letter-spacing: var(--display-tracking);
    line-height: var(--display-leading);
}

.sp-hero-copy > p {
    max-width: 590px;
    margin: 0 0 32px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
}

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

.sp-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 30px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.sp-hero-facts li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-hero-facts li > i {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--blue-soft);
}

.sp-hero-facts span,
.sp-hero-facts b {
    display: block;
}

.sp-hero-facts span {
    color: var(--muted-2);
    font-size: 12px;
    line-height: 1.35;
}

.sp-hero-facts b {
    margin-bottom: 1px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.sp-hero-visual {
    position: relative;
    min-width: 0;
}

.sp-access-panel {
    position: relative;
    padding: 14px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(17, 34, 61, .09);
    border-radius: var(--r-xl);
    box-shadow: 0 34px 78px rgba(17, 34, 61, .14);
    backdrop-filter: blur(18px);
}

.sp-panel-top {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border-bottom: 1px solid var(--line-soft);
}

.sp-panel-top > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ink-2);
    font-size: 12px;
    font-weight: 600;
}

.sp-panel-top img {
    width: 18px;
    height: auto;
}

.sp-safe-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    color: #0b7d51;
    background: #e8f7f0;
    border-radius: var(--pill);
    font-size: 10px;
    font-weight: 500;
}

.sp-safe-pill i,
.sp-panel-foot i,
.sp-source-note i,
.sp-core-status i,
.sp-audit-top > span i {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.sp-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 26px 18px 20px;
}

.sp-panel-heading div,
.sp-panel-heading small,
.sp-panel-heading strong {
    display: block;
}

.sp-panel-heading small {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 11px;
}

.sp-panel-heading strong {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -.02em;
}

.sp-panel-heading > span {
    padding: 5px 10px;
    color: var(--muted);
    background: var(--surface);
    border-radius: var(--pill);
    font-size: 11px;
}

.sp-access-rows {
    display: grid;
    padding: 0 6px;
    gap: 8px;
}

.sp-access-rows article {
    display: grid;
    min-height: 72px;
    align-items: center;
    padding: 0 13px;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    grid-template-columns: 38px 1fr auto 22px;
    gap: 12px;
    transition: border-color .2s var(--ease), transform .2s var(--ease);
}

.sp-access-rows article:hover {
    border-color: rgb(var(--blue-rgb) / .18);
    transform: translateX(2px);
}

.sp-role-avatar {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
}

.sp-role-avatar.navy { background: #263956; }
.sp-role-avatar.violet { background: #7058c8; }
.sp-role-avatar.green { background: #0f8f60; }

.sp-access-rows article > div,
.sp-access-rows b,
.sp-access-rows small {
    display: block;
}

.sp-access-rows b {
    font-size: 14px;
    font-weight: 600;
}

.sp-access-rows small {
    color: var(--muted);
    font-size: 11px;
}

.sp-scope {
    padding: 5px 9px;
    border-radius: var(--pill);
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
}

.sp-scope.full { color: var(--blue-ink); background: var(--blue-soft); }
.sp-scope.action { color: #0b7d51; background: #e8f7f0; }
.sp-scope.view { color: #6551ac; background: #f0edfb; }

.sp-access-rows article > i {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: 9px;
    font-style: normal;
}

.sp-panel-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 18px 8px;
    color: var(--muted);
    font-size: 10px;
}

.sp-panel-foot > span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-panel-foot b {
    color: var(--ink-2);
    font-weight: 500;
}

.sp-float-lock {
    position: absolute;
    right: -22px;
    bottom: 52px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line-soft);
    border-radius: 15px;
    box-shadow: 0 20px 44px rgba(17, 34, 61, .16);
    backdrop-filter: blur(14px);
}

.sp-float-lock > span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: 11px;
}

.sp-float-lock div,
.sp-float-lock small,
.sp-float-lock b {
    display: block;
}

.sp-float-lock small {
    color: var(--muted);
    font-size: 9px;
}

.sp-float-lock b {
    font-size: 11px;
    font-weight: 600;
}

.sp-section-nav {
    position: sticky;
    z-index: 80;
    top: 60px;
    height: 56px;
    background: rgba(255, 255, 255, .88);
    border-top: 1px solid rgba(0, 0, 0, .04);
    border-bottom: 1px solid var(--line-soft);
    backdrop-filter: saturate(180%) blur(18px);
}

.sp-section-nav .shell {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sp-section-nav a {
    padding: 7px 14px;
    color: var(--muted);
    border-radius: var(--pill);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: color .2s var(--ease), background .2s var(--ease);
}

.sp-section-nav a:hover,
.sp-section-nav a.active {
    color: var(--blue-ink);
    background: var(--blue-soft);
}

.sp-principles {
    padding: var(--sec) 0;
    background: #fff;
}

.sp-principles .section-heading {
    max-width: 840px;
}

.sp-principle-grid {
    display: grid;
    margin-top: 62px;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.sp-principle-grid article {
    display: flex;
    min-height: 292px;
    justify-content: space-between;
    padding: 28px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, .025);
    border-radius: var(--r-lg);
    flex-direction: column;
    transition: transform .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}

.sp-principle-grid article:hover {
    background: #fff;
    box-shadow: var(--shadow-1);
    transform: translateY(-2px);
}

.sp-principle-grid article > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--blue-ink);
    background: var(--blue-soft);
    border-radius: 11px;
    font-size: 11px;
    font-weight: 600;
}

.sp-principle-grid h3 {
    margin: 0 0 10px;
    font-size: 21px;
    letter-spacing: -.022em;
}

.sp-principle-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.52;
}

.sp-access {
    padding: var(--sec) 0;
    color: #fff;
    background:
        radial-gradient(circle at 88% 12%, rgb(var(--blue-rgb) / .25), transparent 30%),
        #12151b;
}

.sp-access-grid,
.sp-audit-grid {
    display: grid;
    align-items: center;
    grid-template-columns: .84fr 1.16fr;
    gap: clamp(56px, 7vw, 96px);
}

/* Grid items default to min-width:auto, so the permission table's 540px
   min-width propagated up and stretched the track past the viewport instead
   of letting .sp-matrix-wrap scroll. */
.sp-access-grid > *,
.sp-audit-grid > * {
    min-width: 0;
}

.sp-section-copy .eyebrow,
.sp-access .eyebrow {
    color: var(--blue-ink);
}

.sp-access .sp-section-copy .eyebrow {
    color: #76baff;
}

.sp-section-copy h2 {
    margin: 0 0 22px;
    font-size: clamp(38px, 4.6vw, 60px);
    letter-spacing: -.032em;
}

.sp-section-copy > p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.58;
}

.sp-access .sp-section-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .58);
}

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

.sp-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.sp-check-list li > span {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 2px;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    font-size: 10px;
}

.sp-check-list li div,
.sp-check-list b,
.sp-check-list small {
    display: block;
}

.sp-check-list b {
    font-size: 16px;
    font-weight: 600;
}

.sp-check-list small {
    max-width: 46ch;
    margin-top: 2px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.sp-access .sp-check-list small {
    color: rgba(255, 255, 255, .46);
}

.sp-matrix-card {
    padding: 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--r-xl);
}

.sp-matrix-card > * {
    background: #fff;
}

.sp-matrix-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 22px 20px;
    border-radius: 20px 20px 0 0;
}

.sp-matrix-head div,
.sp-matrix-head small,
.sp-matrix-head strong {
    display: block;
}

.sp-matrix-head small {
    color: var(--muted);
    font-size: 11px;
}

.sp-matrix-head strong {
    margin-top: 3px;
    font-size: 18px;
    font-weight: 600;
}

.sp-matrix-head > span {
    padding: 6px 10px;
    color: #0b7d51;
    background: #e8f7f0;
    border-radius: var(--pill);
    font-size: 10px;
    font-weight: 500;
}

.sp-matrix-wrap {
    overflow-x: auto;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.sp-matrix-wrap table {
    width: 100%;
    min-width: 540px;
    border-collapse: collapse;
}

.sp-matrix-wrap th,
.sp-matrix-wrap td {
    height: 58px;
    padding: 0 14px;
    border-top: 1px solid var(--line-soft);
    font-size: 12px;
    text-align: center;
}

.sp-matrix-wrap tr:first-child th,
.sp-matrix-wrap tbody tr:first-child th,
.sp-matrix-wrap tbody tr:first-child td {
    border-top: 0;
}

.sp-matrix-wrap thead th {
    height: 42px;
    color: var(--muted);
    background: var(--surface-2);
    font-size: 10px;
    font-weight: 500;
}

.sp-matrix-wrap th:first-child {
    padding-left: 22px;
    text-align: left;
}

.sp-matrix-wrap tbody th {
    font-weight: 500;
}

.sp-matrix-wrap td {
    color: var(--muted);
}

.sp-matrix-wrap i {
    display: inline-grid;
    min-width: 22px;
    min-height: 22px;
    place-items: center;
    border-radius: var(--pill);
    font-size: 10px;
    font-style: normal;
}

.sp-matrix-wrap i.yes {
    width: 22px;
    color: #fff;
    background: var(--green);
}

.sp-matrix-wrap i.no {
    color: #a8a8b0;
}

.sp-matrix-wrap i.limited {
    padding: 0 9px;
    color: #8a6100;
    background: #fbf4dd;
}

.sp-matrix-note {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 17px 20px;
    color: var(--muted);
    border-radius: 0 0 20px 20px;
    font-size: 10px;
}

.sp-matrix-note span {
    display: grid;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    place-items: center;
    color: var(--blue-ink);
    background: var(--blue-soft);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
}

.sp-data {
    padding: var(--sec) 0;
    background: var(--surface);
}

.sp-data-head,
.sp-continuity-head {
    display: grid;
    align-items: end;
    grid-template-columns: 1.1fr .66fr;
    gap: 80px;
}

.sp-data-head h2,
.sp-continuity-head h2 {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(38px, 4.8vw, 62px);
    letter-spacing: -.034em;
}

.sp-data-head > p,
.sp-continuity-head > p {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.56;
}

.sp-data-stage {
    display: grid;
    align-items: center;
    margin-top: 68px;
    grid-template-columns: 1fr 110px 1fr 110px 1fr;
    gap: 14px;
}

.sp-data-source,
.sp-data-center,
.sp-data-output {
    min-width: 0;
    min-height: 292px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xl);
}

.sp-data-source > small,
.sp-data-output > small {
    display: block;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
}

.sp-data-brands {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.sp-data-brands > span {
    display: flex;
    height: 74px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--surface);
    border-radius: 13px;
}

.sp-data-brands .brand-mark img { max-height: 22px; }
.sp-data-brands .brand-dia img { max-height: 38px; }
.sp-data-brands .brand-mikro img { max-width: 82px; max-height: 30px; }

.sp-data-brands .brand-netsis img {
    max-height: 22px;
}

.sp-source-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 10px;
}

.sp-data-bridge {
    display: grid;
    min-width: 0;
    align-items: center;
    grid-template-columns: 1fr auto;
    gap: 7px;
}

.sp-data-bridge span {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 9px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
}

.sp-data-bridge i {
    height: 1px;
    background: linear-gradient(90deg, #b9d5f6, var(--blue));
}

.sp-data-bridge b {
    color: var(--blue);
    font-size: 14px;
    font-weight: 500;
}

.sp-data-center {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background:
        radial-gradient(circle at 50% 18%, rgba(76, 157, 255, .30), transparent 38%),
        #111722;
    border-color: #111722;
    flex-direction: column;
    text-align: center;
}

.sp-radar-core {
    position: relative;
    display: grid;
    width: 94px;
    height: 94px;
    margin-bottom: 17px;
    place-items: center;
    border: 1px solid rgba(117, 185, 255, .25);
    border-radius: 50%;
    box-shadow: 0 0 0 16px rgb(var(--blue-rgb) / .06), 0 0 0 32px rgb(var(--blue-rgb) / .035);
}

.sp-radar-core::before,
.sp-radar-core::after {
    position: absolute;
    content: "";
    background: rgba(117, 185, 255, .2);
}

.sp-radar-core::before { width: 1px; height: 100%; }
.sp-radar-core::after { width: 100%; height: 1px; }

.sp-radar-core > i {
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(117, 185, 255, .18);
    border-radius: 50%;
}

.sp-radar-core > span {
    position: absolute;
    top: 24px;
    right: 25px;
    width: 7px;
    height: 7px;
    background: #66afff;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(102, 175, 255, .14);
}

.sp-radar-core img {
    position: relative;
    z-index: 1;
    width: 39px;
    height: auto;
}

.sp-data-center > strong {
    font-size: 17px;
    font-weight: 600;
}

.sp-data-center > small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
}

.sp-core-status {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    padding: 6px 10px;
    color: #8ee3bd;
    background: rgb(var(--green-rgb) / .14);
    border-radius: var(--pill);
    font-size: 9px;
    font-weight: 500;
}

.sp-data-output {
    display: grid;
    align-content: start;
    gap: 8px;
}

.sp-data-output > div {
    display: grid;
    min-height: 59px;
    align-items: center;
    padding: 0 10px;
    background: var(--surface-2);
    border-radius: 13px;
    grid-template-columns: 34px 1fr;
    gap: 10px;
}

.sp-data-output .sp-role-avatar {
    width: 32px;
    height: 32px;
    font-size: 9px;
    grid-row: 1 / 3;
}

.sp-data-output b {
    align-self: end;
    font-size: 12px;
    font-weight: 600;
}

.sp-data-output em {
    align-self: start;
    color: var(--muted);
    font-size: 9px;
    font-style: normal;
}

.sp-data-facts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.sp-data-facts li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.sp-data-facts span {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    font-size: 9px;
}

.sp-audit {
    padding: var(--sec) 0;
    background: #fff;
}

.sp-audit-grid {
    grid-template-columns: 1.16fr .84fr;
}

.sp-audit-panel {
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-1);
}

.sp-audit-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 19px 18px 17px;
}

.sp-audit-top div,
.sp-audit-top small,
.sp-audit-top strong {
    display: block;
}

.sp-audit-top small {
    color: var(--muted);
    font-size: 10px;
}

.sp-audit-top strong {
    margin-top: 2px;
    font-size: 16px;
    font-weight: 600;
}

.sp-audit-top > span {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    color: #0b7d51;
    background: #e8f7f0;
    border-radius: var(--pill);
    font-size: 9px;
    font-weight: 500;
}

.sp-audit-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 13px 13px 0 0;
}

.sp-audit-filter span,
.sp-audit-filter b {
    padding: 6px 9px;
    background: var(--surface);
    border-radius: var(--pill);
    font-size: 9px;
    font-weight: 500;
}

.sp-audit-filter span { color: var(--muted); }
.sp-audit-filter b { margin-left: auto; color: var(--blue-ink); background: var(--blue-soft); }

.sp-audit-rows {
    background: #fff;
    border-right: 1px solid var(--line-soft);
    border-left: 1px solid var(--line-soft);
}

.sp-audit-rows article {
    display: grid;
    min-height: 66px;
    align-items: center;
    padding: 0 12px;
    border-top: 1px solid var(--line-soft);
    grid-template-columns: 36px 34px 1fr auto;
    gap: 10px;
}

.sp-audit-rows time {
    color: var(--muted);
    font-size: 9px;
}

.sp-audit-rows .sp-role-avatar {
    width: 30px;
    height: 30px;
    font-size: 8px;
}

.sp-audit-rows div,
.sp-audit-rows b,
.sp-audit-rows small {
    display: block;
}

.sp-audit-rows b {
    font-size: 11px;
    font-weight: 600;
}

.sp-audit-rows small {
    color: var(--muted);
    font-size: 9px;
}

.sp-audit-rows em {
    padding: 5px 8px;
    color: var(--muted);
    background: var(--surface);
    border-radius: var(--pill);
    font-size: 8px;
    font-style: normal;
    font-weight: 500;
}

.sp-audit-foot {
    padding: 14px 16px;
    color: var(--muted);
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 0 0 13px 13px;
    font-size: 9px;
}

.sp-continuity {
    padding: var(--sec) 0;
    background: var(--surface);
}

.sp-continuity-grid {
    display: grid;
    margin-top: 64px;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 14px;
}

.sp-continuity-grid article {
    position: relative;
    min-height: 244px;
    padding: 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
}

.sp-continuity-grid article:not(.sp-continuity-primary) {
    display: flex;
    flex-direction: column;
}

.sp-continuity-primary {
    grid-row: span 2;
    color: #fff;
    background:
        radial-gradient(circle at 94% 4%, rgba(49, 142, 255, .31), transparent 34%),
        #121722 !important;
    border-color: #121722 !important;
}

.sp-continuity-grid article:last-child {
    grid-column: 2 / -1;
}

.sp-card-kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--blue-ink);
    font-size: 11px;
    font-weight: 600;
}

.sp-continuity-primary .sp-card-kicker { color: #76baff; }

.sp-continuity-grid h3 {
    margin: 0 0 10px;
    font-size: 21px;
    letter-spacing: -.022em;
}

.sp-continuity-primary h3 {
    max-width: 9ch;
    font-size: clamp(30px, 3vw, 40px);
    letter-spacing: -.03em;
}

.sp-continuity-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.53;
}

.sp-continuity-primary p {
    max-width: 42ch;
    color: rgba(255, 255, 255, .56);
}

.sp-continuity-grid article:not(.sp-continuity-primary) > b {
    margin-top: auto;
    color: #d3d3da;
    font-size: 28px;
    font-weight: 500;
}

.sp-server-stack {
    display: grid;
    max-width: 320px;
    margin-top: 58px;
    padding: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    gap: 7px;
}

.sp-server-stack > div {
    display: grid;
    min-height: 48px;
    align-items: center;
    padding: 0 13px;
    background: rgba(255, 255, 255, .065);
    border-radius: 10px;
    grid-template-columns: 6px 6px 6px 1fr;
    gap: 7px;
}

.sp-server-stack i {
    width: 5px;
    height: 5px;
    background: #70b7ff;
    border-radius: 50%;
}

.sp-server-stack i:nth-child(2) { background: #3fd399; }
.sp-server-stack i:nth-child(3) { background: rgba(255, 255, 255, .3); }

.sp-server-stack span {
    width: 52%;
    height: 5px;
    justify-self: end;
    background: rgba(255, 255, 255, .14);
    border-radius: var(--pill);
}

.sp-faq {
    padding: var(--sec) 0;
    background: #fff;
}

@media (max-width: 1180px) {
    .sp-float-lock { right: 8px; }
    .sp-data-stage { grid-template-columns: 1fr 80px 1fr 80px 1fr; }}

@media (max-width: 1024px) {
    .sp-hero { padding-top: 122px; }
    .sp-hero-grid { grid-template-columns: 1fr; }
    .sp-hero-copy { max-width: 760px; }
    .sp-hero h1 { max-width: 12ch; }
    .sp-hero-visual { width: min(100%, 720px); margin-inline: auto; }
    .sp-principle-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-access-grid,
    .sp-audit-grid { grid-template-columns: 1fr; }
    .sp-section-copy { max-width: 720px; }
    .sp-matrix-card,
    .sp-audit-panel { width: min(100%, 760px); }
    .sp-data-stage { grid-template-columns: 1fr 56px 1fr; }
    .sp-data-bridge-out { display: none; }
    .sp-data-output { grid-column: 1 / -1; width: min(100%, 520px); min-height: 0; margin: 8px auto 0; }
    .sp-continuity-head,
    .sp-data-head { grid-template-columns: 1fr .76fr; gap: 48px; }
    .sp-continuity-grid { grid-template-columns: 1.15fr 1fr; }
    .sp-continuity-grid article:last-child { grid-column: 1 / -1; }}

@media (max-width: 860px) {
    .sp-section-nav { overflow-x: auto; scrollbar-width: none; }
    .sp-section-nav::-webkit-scrollbar { display: none; }
    .sp-section-nav .shell { width: max-content; min-width: 100%; padding: 0 20px; justify-content: flex-start; }
    .sp-data-head,
    .sp-continuity-head { grid-template-columns: 1fr; gap: 24px; }
    .sp-data-head > p,
    .sp-continuity-head > p { max-width: 650px; }
    .sp-data-stage { grid-template-columns: 1fr; gap: 12px; }
    .sp-data-source,
    .sp-data-center,
    .sp-data-output { width: min(100%, 560px); margin-inline: auto; }
    .sp-data-bridge { width: 120px; margin-inline: auto; transform: rotate(90deg); }
    .sp-data-bridge span { transform: rotate(-90deg); }
    .sp-data-output { grid-column: auto; }
    .sp-data-bridge-out { display: grid; }
    .sp-data-facts { flex-wrap: wrap; }
    .sp-continuity-grid { grid-template-columns: 1fr 1fr; }
    .sp-continuity-primary { grid-column: 1 / -1; grid-row: auto; min-height: 520px !important; }}

@media (max-width: 560px) {
    .sp-hero { padding: 104px 0 70px; }
    .sp-hero::before { top: 370px; right: -270px; width: 580px; height: 580px; }
    .sp-hero h1 { font-size: clamp(42px, 12.2vw, 56px); }
    .sp-hero-copy > p { font-size: 17px; }
    .sp-hero-actions { align-items: stretch; flex-direction: column; }
    .sp-hero-actions .button { width: 100%; }
    .sp-hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
    .sp-hero-facts li:last-child { grid-column: 1 / -1; }
    .sp-access-panel { padding: 7px; border-radius: 22px; }
    .sp-panel-top { padding-inline: 9px; }
    .sp-safe-pill { padding-inline: 8px; font-size: 8px; }
    .sp-panel-heading { padding: 20px 12px 16px; }
    .sp-access-rows { padding: 0; }
    .sp-access-rows article { min-height: 68px; padding: 0 9px; grid-template-columns: 34px 1fr auto 18px; gap: 8px; }
    .sp-access-rows .sp-role-avatar { width: 32px; height: 32px; }
    .sp-scope { padding-inline: 7px; font-size: 8px; }
    .sp-access-rows article > i { width: 17px; height: 17px; }
    .sp-panel-foot { padding: 16px 12px 7px; }
    .sp-float-lock { right: 10px; bottom: -30px; padding: 10px 12px; }
    .sp-principle-grid { grid-template-columns: 1fr; margin-top: 40px; }
    .sp-principle-grid article { min-height: 232px; }
    .sp-matrix-card { padding: 7px; border-radius: 22px; }
    .sp-matrix-wrap { scrollbar-width: thin; }
    .sp-matrix-note { padding: 14px 12px; }
    .sp-data-stage { margin-top: 42px; }
    .sp-data-source,
    .sp-data-center,
    .sp-data-output { min-height: 270px; padding: 18px; border-radius: 22px; }
    .sp-data-output { min-height: 0; }
    .sp-data-facts { align-items: flex-start; flex-direction: column; gap: 12px; }
    .sp-audit-panel { padding: 7px; border-radius: 22px; }
    .sp-audit-rows article { min-height: 72px; grid-template-columns: 30px 30px 1fr; gap: 8px; }
    .sp-audit-rows article > em { display: none; }
    .sp-audit-rows .sp-role-avatar { width: 28px; height: 28px; }
    .sp-audit-rows small { max-width: 31ch; line-height: 1.35; }
    .sp-continuity-grid { grid-template-columns: 1fr; margin-top: 42px; }
    .sp-continuity-primary { grid-column: auto; min-height: 500px !important; }
    .sp-continuity-grid article { min-height: 220px; }}

/* ========================================================================== 
   About page — brand story
   ========================================================================== */

.page-about {
    background: var(--white);
}

.ab-hero {
    position: relative;
    padding: clamp(118px, 11vw, 160px) 0 clamp(78px, 8vw, 118px);
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 18%, rgb(var(--blue-rgb) / .13), transparent 26%),
        radial-gradient(circle at 8% 88%, rgb(var(--blue-rgb) / .06), transparent 25%),
        linear-gradient(180deg, #fbfcff 0%, #f4f7fb 100%);
}

.ab-hero::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    content: "";
    opacity: .44;
    background-image:
        linear-gradient(rgba(37, 89, 148, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 89, 148, .055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, transparent, #000 35%);
}

.ab-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.03fr) minmax(440px, .97fr);
    gap: clamp(48px, 6vw, 88px);
}

.ab-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 22px;
    color: var(--blue-ink);
    font-size: 13px;
    font-weight: 600;
}

.ab-kicker span {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border: 3px solid rgb(var(--blue-rgb) / .16);
    border-radius: 50%;
    box-sizing: content-box;
}

.ab-hero-copy h1 {
    max-width: var(--display-measure);
    margin: 0 0 24px;
    font-size: var(--display-md);
    letter-spacing: var(--display-tracking);
    line-height: var(--display-leading);
}

.ab-hero-copy h1 em {
    color: var(--blue);
    font-style: normal;
}

.ab-hero-lead {
    max-width: 54ch;
    margin: 0;
    color: var(--muted);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.55;
}

.ab-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 32px;
}

.ab-hero-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid rgba(29, 29, 31, .1);
}

.ab-hero-signature strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.ab-hero-signature span {
    max-width: 30ch;
    padding-left: 16px;
    color: var(--muted);
    border-left: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.4;
}

.ab-hero-stage {
    position: relative;
    min-width: 0;
    padding: 0 0 34px 30px;
}

.ab-proof {
    background: var(--white);
    border-bottom: 1px solid var(--line-soft);
}

.ab-proof-inner {
    display: grid;
    min-height: 128px;
    align-items: center;
    grid-template-columns: 1fr auto;
    gap: 48px;
}

.ab-proof-inner > p {
    margin: 0;
}

.ab-proof-inner > p strong,
.ab-proof-inner > p span {
    display: block;
}

.ab-proof-inner > p strong {
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 600;
}

.ab-proof-inner > p span {
    max-width: 54ch;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.ab-proof-logos {
    display: flex;
    align-items: center;
    gap: clamp(28px, 4vw, 48px);
}

.ab-proof-logos img {
    width: auto;
    max-width: 112px;
    max-height: 31px;
    object-fit: contain;
}

.ab-proof-logos .is-dia {
    width: 38px;
    max-height: 38px;
}

.ab-manifesto {
    padding: clamp(84px, 9vw, 132px) 0;
    color: #fff;
    background:
        radial-gradient(circle at 92% 4%, rgb(var(--blue-rgb) / .2), transparent 24%),
        var(--dark);
}

.ab-manifesto-grid {
    display: grid;
    grid-template-columns: .32fr 1fr;
    gap: clamp(42px, 6vw, 90px);
}

.ab-section-index {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .44);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.ab-manifesto h2 {
    max-width: 930px;
    margin: 0;
    color: rgba(255, 255, 255, .42);
    font-size: clamp(34px, 4.6vw, 62px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.ab-manifesto h2 em {
    color: #fff;
    font-style: normal;
}

.ab-manifesto h2 + p {
    max-width: 60ch;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .57);
    font-size: 17px;
    line-height: 1.6;
}

.ab-story {
    padding: var(--sec) 0;
    overflow: hidden;
}

.ab-story-head {
    display: grid;
    align-items: end;
    margin-bottom: 70px;
    grid-template-columns: 1.1fr .7fr;
    gap: clamp(42px, 8vw, 116px);
}

.ab-story-head h2,
.ab-model-head h2,
.ab-architecture-copy h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -.033em;
    line-height: 1.05;
}

.ab-story-head > p {
    margin: 0 0 3px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.62;
}

.ab-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ab-timeline::before {
    position: absolute;
    z-index: 0;
    top: 34px;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: var(--line);
}

.ab-timeline article {
    position: relative;
    z-index: 1;
    min-height: 300px;
    padding: 0 28px 30px;
    background: var(--surface-2);
    border: 1px solid var(--line-soft);
    border-radius: 24px;
}

.ab-timeline article.is-current {
    background: #f1f7ff;
    border-color: rgb(var(--blue-rgb) / .16);
}

.ab-timeline-mark {
    display: flex;
    height: 68px;
    align-items: center;
    justify-content: space-between;
}

.ab-timeline-mark span {
    padding: 6px 10px;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--pill);
    font-size: 11px;
    font-weight: 600;
}

.ab-timeline-mark i {
    width: 10px;
    height: 10px;
    background: var(--white);
    border: 3px solid #a9a9b0;
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--surface-2);
}

.ab-timeline .is-current .ab-timeline-mark span {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}

.ab-timeline .is-current .ab-timeline-mark i {
    border-color: var(--blue);
    box-shadow: 0 0 0 5px #f1f7ff;
}

.ab-timeline article > small {
    display: block;
    margin-top: 22px;
    color: var(--blue-ink);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ab-timeline h3 {
    margin: 10px 0 12px;
    font-size: 22px;
}

.ab-timeline p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.58;
}

.ab-model {
    padding: var(--sec) 0;
    background: var(--surface);
}

.ab-model-head {
    max-width: 820px;
    margin-bottom: 54px;
}

.ab-model-head > p:last-child {
    max-width: 62ch;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.58;
}

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

.ab-model-grid article {
    position: relative;
    min-height: 374px;
    padding: 28px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: 25px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.ab-model-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-1);
}

.ab-model-icon {
    position: relative;
    height: 138px;
    margin-bottom: 32px;
    overflow: hidden;
    background: linear-gradient(145deg, #f7faff, #edf4ff);
    border: 1px solid rgb(var(--blue-rgb) / .08);
    border-radius: 18px;
}

.ab-model-grid article > span {
    display: block;
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 600;
}

.ab-model-grid h3 {
    margin: 0 0 11px;
    font-size: 22px;
}

.ab-model-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.56;
}

.ab-model-data {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ab-model-data i {
    position: relative;
    width: 52px;
    height: 62px;
    background: #fff;
    border: 1px solid rgb(var(--blue-rgb) / .14);
    border-radius: 11px;
    box-shadow: 0 8px 18px rgba(6, 75, 150, .06);
}

.ab-model-data i::before,
.ab-model-data i::after {
    position: absolute;
    right: 10px;
    left: 10px;
    height: 3px;
    content: "";
    background: #dce9fa;
    border-radius: 3px;
}

.ab-model-data i::before { top: 20px; }
.ab-model-data i::after { top: 31px; }
.ab-model-data i:nth-child(2) { transform: translateY(-11px); }

.ab-model-focus::before,
.ab-model-focus::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    border: 1px solid rgb(var(--blue-rgb) / .18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ab-model-focus::before { width: 102px; height: 102px; }
.ab-model-focus::after { width: 58px; height: 58px; border-width: 8px; border-color: rgb(var(--blue-rgb) / .1); }

.ab-model-focus i:first-child {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgb(var(--blue-rgb) / .12);
    transform: translate(-50%, -50%);
}

.ab-model-focus i:last-child {
    position: absolute;
    z-index: 3;
    top: 23px;
    right: 48px;
    width: 8px;
    height: 8px;
    background: #e5484d;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 9px rgb(var(--red-rgb) / .25);
}

.ab-model-result {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    padding-bottom: 28px;
}

.ab-model-result i {
    width: 24px;
    background: #cfe1fb;
    border-radius: 6px 6px 3px 3px;
}

.ab-model-result i:nth-child(1) { height: 35px; }
.ab-model-result i:nth-child(2) { height: 52px; }
.ab-model-result i:nth-child(3) { height: 72px; background: #7eb6ff; }
.ab-model-result i:nth-child(4) { height: 91px; background: var(--blue); }

.ab-principles {
    padding: var(--sec) 0;
    color: #fff;
    background:
        radial-gradient(circle at 12% 100%, rgb(var(--blue-rgb) / .22), transparent 23%),
        #111318;
}

.ab-principles-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 52px;
}

.ab-principles-head h2 {
    margin: 0;
    text-align: right;
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -.033em;
    line-height: 1.05;
}

.ab-principles-head h2 span {
    color: rgba(255, 255, 255, .42);
}

.ab-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ab-principles-grid article {
    min-height: 248px;
    padding: 26px 25px 30px;
}

.ab-principles-grid article + article {
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.ab-principles-grid span {
    display: block;
    margin-bottom: 62px;
    color: #72b2ff;
    font-size: 11px;
    font-weight: 600;
}

.ab-principles-grid h3 {
    margin: 0 0 11px;
    font-size: 19px;
}

.ab-principles-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    line-height: 1.55;
}

.ab-architecture {
    padding: var(--sec) 0;
    background: #f7f8fb;
}

.ab-architecture-grid {
    display: grid;
    align-items: center;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(48px, 8vw, 110px);
}

.ab-architecture-copy > p:not(.eyebrow) {
    max-width: 54ch;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.62;
}

.ab-architecture-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 24px;
    margin-top: 30px;
}

.ab-brand-stack {
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 30px;
    box-shadow: var(--shadow-1);
}

.ab-brand-stack article {
    position: relative;
    padding: 28px 30px;
    background: var(--surface);
    border-radius: 20px;
}

.ab-brand-stack article.is-product {
    display: grid;
    align-items: center;
    color: #fff;
    background: linear-gradient(140deg, #117fff, #0064dc);
    grid-template-columns: 36px 1fr;
    gap: 15px;
}

.ab-brand-stack small,
.ab-brand-stack strong,
.ab-brand-stack span {
    display: block;
}

.ab-brand-stack small {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.ab-brand-stack strong {
    font-size: 23px;
    font-weight: 600;
    letter-spacing: -.025em;
}

.ab-brand-stack span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
}

.ab-brand-stack .is-product small,
.ab-brand-stack .is-product span {
    color: rgba(255, 255, 255, .64);
}

.ab-brand-connector {
    position: relative;
    display: block;
    width: 1px;
    height: 38px;
    margin: 0 auto;
    background: var(--line);
}

.ab-brand-connector::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 7px;
    height: 7px;
    content: "";
    border-right: 1px solid var(--muted);
    border-bottom: 1px solid var(--muted);
    transform: translate(-50%, -1px) rotate(45deg);
}

.page-about .final-cta {
    border-top: 1px solid var(--line-soft);
}

@media (max-width: 1024px) {
    .ab-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr); gap: 40px; }
    .ab-hero-copy h1 { font-size: clamp(43px, 5.4vw, 60px); }
    .ab-model-grid article { padding: 23px; }
    .ab-principles-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-principles-grid article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .12); }
    .ab-principles-grid article:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, .12); }}

@media (max-width: 860px) {
    .ab-hero { padding-top: 116px; }
    .ab-hero::before { width: 100%; mask-image: linear-gradient(180deg, transparent, #000 35%); }
    .ab-hero-grid,
    .ab-story-head,
    .ab-architecture-grid { grid-template-columns: 1fr; }
    .ab-hero-grid { gap: 58px; }
    .ab-hero-stage { width: min(100%, 580px); margin-inline: auto; }
    .ab-proof-inner { padding: 28px 0; grid-template-columns: 1fr; gap: 24px; }
    .ab-proof-logos { justify-content: flex-start; }
    .ab-manifesto-grid { grid-template-columns: 1fr; gap: 30px; }
    .ab-story-head { align-items: start; margin-bottom: 48px; gap: 24px; }
    .ab-story-head > p { max-width: 64ch; }
    .ab-timeline { grid-template-columns: 1fr; gap: 14px; }
    .ab-timeline::before { top: 0; bottom: 0; left: 33px; width: 1px; height: auto; }
    .ab-timeline article { min-height: 0; padding: 0 24px 26px 66px; }
    .ab-timeline-mark { height: 62px; }
    .ab-timeline-mark i { position: absolute; left: -39px; }
    .ab-timeline article > small { margin-top: 10px; }
    .ab-model-grid { grid-template-columns: 1fr; }
    .ab-model-grid article { display: grid; min-height: 0; padding: 22px; grid-template-columns: 170px 1fr; grid-template-rows: auto auto 1fr; column-gap: 26px; }
    .ab-model-icon { height: 164px; margin: 0; grid-row: 1 / 4; }
    .ab-model-grid article > span { align-self: end; }
    .ab-principles-head { align-items: flex-start; flex-direction: column; }
    .ab-principles-head h2 { text-align: left; }
    .ab-architecture-grid { gap: 48px; }}

@media (max-width: 560px) {
    .ab-hero { padding: 102px 0 72px; }
    .ab-kicker { margin-bottom: 18px; }
    .ab-hero-copy h1 { font-size: clamp(40px, 12.5vw, 54px); }
    .ab-hero-lead { font-size: 17px; }
    .ab-hero-actions { align-items: stretch; flex-direction: column; }
    .ab-hero-actions .button { width: 100%; }
    .ab-hero-signature { align-items: flex-start; flex-direction: column; gap: 9px; }
    .ab-hero-signature span { padding: 0; border: 0; }
    .ab-hero-stage { padding: 0 0 27px; }
    .ab-proof-logos { gap: 23px; }
    .ab-proof-logos img { max-width: 88px; max-height: 27px; }
    .ab-proof-logos .is-dia { width: 32px; }
    .ab-manifesto { padding: 76px 0; }
    .ab-manifesto h2 { font-size: clamp(32px, 9vw, 42px); }
    .ab-story-head h2,
    .ab-model-head h2,
    .ab-architecture-copy h2,
    .ab-principles-head h2 { font-size: 35px; }
    .ab-timeline article { padding-right: 19px; padding-left: 56px; }
    .ab-timeline-mark i { left: -31px; }
    .ab-model-head { margin-bottom: 38px; }
    .ab-model-head > p:last-child { font-size: 16px; }
    .ab-model-grid article { display: block; padding: 19px; }
    .ab-model-icon { height: 136px; margin-bottom: 24px; }
    .ab-principles-grid { grid-template-columns: 1fr; }
    .ab-principles-grid article { min-height: 0; padding: 24px 4px 28px; }
    .ab-principles-grid article + article { border-top: 1px solid rgba(255, 255, 255, .12); border-left: 0; }
    .ab-principles-grid span { margin-bottom: 34px; }
    .ab-brand-stack { padding: 14px; border-radius: 23px; }
    .ab-brand-stack article { padding: 23px 20px; }
    .ab-brand-stack article.is-product { grid-template-columns: 34px 1fr; gap: 12px; }
    .ab-brand-stack strong { font-size: 20px; }
    .ab-architecture-links { align-items: stretch; flex-direction: column; }
    .ab-architecture-links .button { width: 100%; }}

/* ========================================================================== 
   Resources page — editorial library
   ========================================================================== */

.page-resources {
    background: var(--white);
}

.rp-hero {
    position: relative;
    padding: clamp(124px, 11vw, 164px) 0 clamp(78px, 8vw, 112px);
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 10%, rgb(var(--blue-rgb) / .11), transparent 27%),
        linear-gradient(180deg, #fcfdff 0%, #f4f7fb 100%);
}

.rp-hero::before {
    position: absolute;
    top: 12%;
    right: -180px;
    width: 520px;
    height: 520px;
    content: "";
    opacity: .62;
    border: 1px solid rgb(var(--blue-rgb) / .08);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgb(var(--blue-rgb) / .025),
        0 0 0 160px rgb(var(--blue-rgb) / .018);
}

.rp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(50px, 8vw, 112px);
}

.rp-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: var(--blue-ink);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .01em;
}

.rp-kicker i {
    width: 3px;
    height: 3px;
    background: var(--blue);
    border-radius: 50%;
}

.rp-kicker span:last-child {
    color: var(--muted);
    font-weight: 500;
}

.rp-hero-copy h1 {
    max-width: var(--display-measure);
    margin: 0 0 24px;
    font-size: var(--display-md);
    letter-spacing: var(--display-tracking);
    line-height: var(--display-leading);
}

.rp-hero-copy h1 em {
    color: var(--blue);
    font-style: normal;
}

.rp-hero-copy > p:not(.rp-kicker) {
    max-width: 54ch;
    margin: 0;
    color: var(--muted);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.58;
}

.rp-hero-copy > .button {
    margin-top: 32px;
}

.rp-hero-index {
    padding: 22px 24px 18px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(29, 29, 31, .08);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(29, 53, 85, .1);
    backdrop-filter: blur(18px);
}

.rp-index-head {
    display: flex;
    min-height: 40px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 0 2px 16px;
    border-bottom: 1px solid var(--line-soft);
}

.rp-index-head span {
    font-size: 13px;
    font-weight: 600;
}

.rp-index-head small {
    padding: 5px 9px;
    color: var(--blue-ink);
    background: var(--blue-soft);
    border-radius: var(--pill);
    font-size: 10px;
    font-weight: 600;
}

.rp-hero-index ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rp-hero-index li {
    display: grid;
    min-height: 92px;
    align-items: center;
    padding: 16px 2px;
    border-bottom: 1px solid var(--line-soft);
    grid-template-columns: 34px 1fr 18px;
    gap: 10px;
}

.rp-hero-index li > span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--blue-ink);
    background: var(--blue-soft);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 600;
}

.rp-hero-index li strong,
.rp-hero-index li small {
    display: block;
}

.rp-hero-index li strong {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 600;
}

.rp-hero-index li small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

.rp-hero-index li > i {
    color: #a6a6ad;
    font-size: 12px;
    font-style: normal;
}

.rp-index-foot {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 16px 2px 0;
    color: var(--muted);
    font-size: 10px;
}

.rp-index-foot i {
    width: 7px;
    height: 7px;
    background: #4cc890;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(76, 200, 144, .1);
}

.rp-featured {
    padding: clamp(72px, 7vw, 104px) 0;
    background: var(--white);
}

.rp-featured-card {
    display: grid;
    min-height: 530px;
    overflow: hidden;
    color: #fff;
    background: #12151b;
    border-radius: 32px;
    box-shadow: 0 28px 80px rgba(20, 25, 35, .13);
    grid-template-columns: .94fr 1.06fr;
}

.rp-featured-visual {
    position: relative;
    min-height: 530px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 18%, rgba(126, 187, 255, .42), transparent 29%),
        linear-gradient(145deg, var(--blue) 0%, var(--blue-press) 100%);
}

.rp-cover-grid {
    position: absolute;
    inset: 0;
    opacity: .24;
    background-image:
        linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(135deg, #000, transparent 78%);
}

.rp-cover-label {
    position: absolute;
    top: 28px;
    right: 28px;
    left: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
}

.rp-cover-label small {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    font-size: 10px;
}

.rp-cover-flow {
    position: absolute;
    top: 44%;
    right: 28px;
    left: 28px;
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr auto 1fr auto;
    gap: 8px;
    transform: translateY(-50%);
}

.rp-cover-flow div {
    display: grid;
    width: 68px;
    height: 68px;
    place-content: center;
    text-align: center;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 18px;
    font-size: 10px;
    backdrop-filter: blur(8px);
}

.rp-cover-flow div i {
    width: 8px;
    height: 8px;
    margin: 0 auto 7px;
    background: #8bc5ff;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .08);
}

.rp-cover-flow div.is-active {
    color: var(--blue-ink);
    background: #fff;
    border-color: #fff;
    box-shadow: 0 12px 35px rgba(0, 45, 104, .2);
}

.rp-cover-flow div.is-active i {
    background: var(--blue);
    box-shadow: 0 0 0 5px var(--blue-soft);
}

.rp-cover-flow b {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .7));
}

.rp-featured-visual > strong {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;
    color: rgba(255, 255, 255, .94);
    font-size: clamp(42px, 5.2vw, 68px);
    font-weight: 600;
    letter-spacing: -.05em;
    line-height: .84;
}

.rp-featured-copy {
    display: flex;
    padding: clamp(42px, 5vw, 70px);
    flex-direction: column;
}

.rp-featured-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .52);
    font-size: 11px;
    font-weight: 500;
}

.rp-featured-kicker span:first-child {
    color: #8fc3ff;
}

.rp-featured-kicker i {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, .35);
    border-radius: 50%;
}

.rp-featured-copy h2 {
    max-width: 650px;
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -.037em;
    line-height: 1.04;
}

.rp-featured-copy h2 a {
    transition: color .2s;
}

.rp-featured-copy h2 a:hover {
    color: #9dcbff;
}

.rp-featured-copy > p:not(.rp-featured-kicker) {
    max-width: 54ch;
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 17px;
    line-height: 1.58;
}

.rp-featured-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: auto;
    padding-top: 38px;
}

.rp-featured-meta > span {
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
}

.rp-featured-meta .button {
    min-height: 44px;
    padding-inline: 20px;
    gap: 8px;
    font-size: 13px;
}

.rp-library {
    padding: var(--sec) 0;
    background: var(--surface);
    scroll-margin-top: 60px;
}

.rp-library-head {
    display: grid;
    align-items: end;
    margin-bottom: 48px;
    grid-template-columns: 1fr .72fr;
    gap: clamp(40px, 7vw, 100px);
}

.rp-library-head h2 {
    margin: 0;
    font-size: clamp(36px, 4.2vw, 56px);
    letter-spacing: -.035em;
}

.rp-library-head > p {
    max-width: 50ch;
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.58;
}

.rp-library-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.rp-card {
    display: flex;
    min-width: 0;
    padding: 18px 18px 28px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: 27px;
    flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.rp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-1);
}

.rp-card-visual {
    position: relative;
    display: block;
    height: 286px;
    margin-bottom: 25px;
    overflow: hidden;
    background: #edf4ff;
    border-radius: 20px;
}

.rp-card-visual-2 { background: #f0ecfc; }
.rp-card-visual-3 { background: #e9f7f1; }

.rp-card-code,
.rp-card-topic {
    position: absolute;
    z-index: 2;
    top: 18px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
}

.rp-card-code { left: 18px; }

.rp-card-topic {
    right: 14px;
    padding: 5px 9px;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--pill);
    letter-spacing: 0;
    backdrop-filter: blur(8px);
}

.rp-age-visual {
    position: absolute;
    right: 12%;
    bottom: 15%;
    left: 12%;
    display: flex;
    height: 155px;
    align-items: flex-end;
    gap: 10px;
}

.rp-age-visual i {
    position: relative;
    height: 58%;
    background: #8ebfff;
    border-radius: 10px 10px 6px 6px;
    flex: 1;
}

.rp-age-visual i:nth-child(2) { height: 76%; background: #4e9cff; }
.rp-age-visual i:nth-child(3) { height: 100%; background: var(--blue); }

.rp-age-visual span {
    position: absolute;
    right: 0;
    bottom: 12px;
    left: 0;
    /* The bars ramp light -> dark, so the label flips with its own bar
       instead of staying white and disappearing on the first two. */
    color: var(--ink);
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    text-align: center;
}

.rp-age-visual i:nth-child(3) span {
    color: var(--white);
}

.rp-kpi-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 230px;
    height: 130px;
    align-items: flex-end;
    gap: 12px;
    transform: translate(-50%, -43%);
}

.rp-kpi-visual::before,
.rp-kpi-visual::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: rgba(107, 82, 201, .1);
}

.rp-kpi-visual::before { top: 33%; }
.rp-kpi-visual::after { top: 66%; }

.rp-kpi-visual i {
    z-index: 1;
    height: 34%;
    background: #c6b8ed;
    border-radius: 7px 7px 3px 3px;
    flex: 1;
}

.rp-kpi-visual i:nth-child(2) { height: 49%; }
.rp-kpi-visual i:nth-child(3) { height: 69%; background: #9b86dc; }
.rp-kpi-visual i:nth-child(4) { height: 94%; background: #6b52c9; }

.rp-kpi-visual span {
    position: absolute;
    top: -30px;
    right: 0;
    padding: 5px 9px;
    color: #5d43bc;
    background: rgba(255, 255, 255, .7);
    border-radius: var(--pill);
    font-size: 10px;
    font-weight: 600;
}

.rp-score-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 148px;
    height: 148px;
    place-content: center;
    text-align: center;
    background: conic-gradient(var(--green) 0 86%, rgb(var(--green-rgb) / .13) 86%);
    border-radius: 50%;
    transform: translate(-50%, -45%);
}

.rp-score-visual::before {
    position: absolute;
    inset: 14px;
    content: "";
    background: #e9f7f1;
    border-radius: 50%;
}

.rp-score-visual strong,
.rp-score-visual small {
    position: relative;
    z-index: 1;
    color: #0b7d51;
}

.rp-score-visual strong { font-size: 38px; line-height: 1; }
.rp-score-visual small { margin-top: 4px; font-size: 10px; }

.rp-card-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 6px 11px;
    color: var(--muted-2);
    font-size: 11px;
}

.rp-card-meta i {
    width: 3px;
    height: 3px;
    background: var(--line);
    border-radius: 50%;
}

.rp-card h3 {
    margin: 0 6px 12px;
    font-size: clamp(23px, 2.4vw, 30px);
    letter-spacing: -.027em;
    line-height: 1.16;
}

.rp-card h3 a {
    transition: color .2s;
}

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

.rp-card > p {
    margin: 0 6px 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.58;
}

.rp-card-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 7px;
    margin: auto 6px 0;
    color: var(--blue-ink);
    font-size: 14px;
}

.rp-card-link span {
    transition: transform .25s var(--ease);
}

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

.rp-empty {
    padding: var(--sec) 0;
    text-align: center;
}

.rp-empty h2 {
    margin: 0 0 16px;
    font-size: clamp(36px, 4.2vw, 56px);
}

.rp-empty p:last-child {
    color: var(--muted);
}

.rp-editorial {
    padding: var(--sec) 0;
    color: #fff;
    background:
        radial-gradient(circle at 88% 100%, rgb(var(--blue-rgb) / .19), transparent 25%),
        #121419;
}

.rp-editorial-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
}

.rp-editorial-head > p {
    margin: 0 0 7px;
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.rp-editorial-head h2 {
    margin: 0;
    text-align: right;
    font-size: clamp(35px, 4.2vw, 56px);
    letter-spacing: -.035em;
    line-height: 1.05;
}

.rp-editorial-head h2 span {
    color: rgba(255, 255, 255, .42);
}

.rp-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.rp-editorial-grid article {
    min-height: 236px;
    padding: 25px 28px 30px;
}

.rp-editorial-grid article + article {
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.rp-editorial-grid article > span {
    display: block;
    margin-bottom: 56px;
    color: #7eb9ff;
    font-size: 11px;
    font-weight: 600;
}

.rp-editorial-grid h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.rp-editorial-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    line-height: 1.56;
}

.page-resources .final-cta {
    border-top: 1px solid var(--line-soft);
}

@media (max-width: 1024px) {
    .rp-hero-grid { gap: 48px; }
    .rp-hero-copy h1 { font-size: clamp(44px, 6vw, 62px); }
    .rp-featured-card { grid-template-columns: .88fr 1.12fr; }
    .rp-cover-flow { right: 18px; left: 18px; }
    .rp-cover-flow div { width: 58px; height: 62px; }
    .rp-featured-copy { padding: 42px; }}

@media (max-width: 860px) {
    .rp-hero { padding-top: 116px; }
    .rp-hero-grid,
    .rp-featured-card,
    .rp-library-head { grid-template-columns: 1fr; }
    .rp-hero-grid { gap: 54px; }
    .rp-hero-index { width: min(100%, 620px); }
    .rp-featured-card { min-height: 0; }
    .rp-featured-visual { min-height: 420px; }
    .rp-featured-copy { min-height: 430px; }
    .rp-library-head { align-items: start; gap: 20px; }
    .rp-library-head > p { max-width: 62ch; }
    .rp-library-grid { grid-template-columns: 1fr; }
    .rp-card { display: grid; grid-template-columns: minmax(240px, .82fr) 1fr; grid-template-rows: auto auto auto 1fr; column-gap: 26px; }
    .rp-card-visual { height: 100%; min-height: 320px; margin: 0; grid-row: 1 / 6; }
    .rp-card-meta { align-self: end; margin-top: 15px; }
    .rp-card h3 { font-size: 27px; }
    .rp-card-link { margin-bottom: 6px; }
    .rp-editorial-head { align-items: flex-start; flex-direction: column; }
    .rp-editorial-head h2 { text-align: left; }}

@media (max-width: 680px) {
    .rp-card { display: flex; }
    .rp-card-visual { width: 100%; height: 265px; min-height: 0; margin-bottom: 23px; }
    .rp-card-meta { margin-top: 0; }
    .rp-editorial-grid { grid-template-columns: 1fr; }
    .rp-editorial-grid article { min-height: 0; padding: 24px 4px 28px; }
    .rp-editorial-grid article + article { border-top: 1px solid rgba(255, 255, 255, .12); border-left: 0; }
    .rp-editorial-grid article > span { margin-bottom: 32px; }}

@media (max-width: 560px) {
    .rp-hero { padding: 102px 0 72px; }
    .rp-hero-copy h1 { font-size: clamp(40px, 12.3vw, 54px); }
    .rp-hero-copy > p:not(.rp-kicker) { font-size: 17px; }
    .rp-hero-copy > .button { width: 100%; }
    .rp-hero-index { padding: 16px 16px 14px; border-radius: 22px; }
    .rp-hero-index li { min-height: 88px; grid-template-columns: 32px 1fr; }
    .rp-hero-index li > i { display: none; }
    .rp-featured { padding: 60px 0; }
    .rp-featured-card { border-radius: 24px; }
    .rp-featured-visual { min-height: 360px; }
    .rp-cover-label { top: 20px; right: 20px; left: 20px; }
    .rp-cover-flow { right: 16px; left: 16px; }
    .rp-cover-flow div { width: 55px; height: 58px; }
    .rp-featured-visual > strong { right: 22px; bottom: 21px; left: 22px; font-size: 48px; }
    .rp-featured-copy { min-height: 0; padding: 34px 24px 26px; }
    .rp-featured-kicker { margin-bottom: 24px; }
    .rp-featured-copy h2 { font-size: 34px; }
    .rp-featured-copy > p:not(.rp-featured-kicker) { font-size: 15px; }
    .rp-featured-meta { align-items: stretch; flex-direction: column; margin-top: 30px; padding-top: 0; }
    .rp-featured-meta .button { width: 100%; }
    .rp-library-head h2,
    .rp-editorial-head h2 { font-size: 35px; }
    .rp-card { padding: 13px 13px 23px; border-radius: 22px; }
    .rp-card-visual { height: 236px; border-radius: 16px; }
    .rp-card h3 { font-size: 24px; }
    .rp-kpi-visual { width: 190px; }}

/* ========================================================================== 
   Contact page — guided discovery
   ========================================================================== */

.cp-hero {
    position: relative;
    padding: clamp(124px, 11vw, 158px) 0 clamp(78px, 8vw, 112px);
    overflow: hidden;
    background:
        radial-gradient(circle at 81% 18%, rgb(var(--blue-rgb) / .12), transparent 29%),
        linear-gradient(180deg, #fcfdff 0%, #f3f7fc 100%);
}

.cp-hero::before {
    position: absolute;
    right: -190px;
    bottom: -310px;
    width: 650px;
    height: 650px;
    content: "";
    border: 1px solid rgb(var(--blue-rgb) / .07);
    border-radius: 50%;
    box-shadow: 0 0 0 84px rgb(var(--blue-rgb) / .02), 0 0 0 168px rgb(var(--blue-rgb) / .014);
}

.cp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: 1.03fr .97fr;
    gap: clamp(50px, 7vw, 98px);
}

.cp-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 22px;
    color: var(--blue-ink);
    font-size: 13px;
    font-weight: 600;
}

.cp-kicker span {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border: 3px solid rgb(var(--blue-rgb) / .14);
    border-radius: 50%;
    box-sizing: content-box;
}

.cp-hero-copy h1 {
    max-width: var(--display-measure);
    margin: 0 0 24px;
    font-size: var(--display-md);
    letter-spacing: var(--display-tracking);
    line-height: var(--display-leading);
}

.cp-hero-copy h1 em {
    color: var(--blue);
    font-style: normal;
}

.cp-hero-copy > p:not(.cp-kicker) {
    max-width: 55ch;
    margin: 0;
    color: var(--muted);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.58;
}

.cp-hero-copy > .button { margin-top: 31px; }

.cp-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 25px;
    margin: 38px 0 0;
    padding: 24px 0 0;
    list-style: none;
    border-top: 1px solid rgba(29, 29, 31, .09);
}

.cp-hero-facts li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.cp-hero-facts li > i {
    width: 7px;
    height: 7px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--blue-soft);
}

.cp-hero-facts span,
.cp-hero-facts b { display: block; }

.cp-hero-facts span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
}

.cp-hero-facts b {
    margin-bottom: 2px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
}

.cp-main {
    padding: var(--sec) 0;
    background: var(--surface);
    scroll-margin-top: 60px;
}

.cp-layout {
    display: grid;
    align-items: start;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(50px, 7vw, 94px);
}

.cp-contact-aside {
    position: sticky;
    top: 108px;
}

.cp-contact-aside h2 {
    max-width: 13ch;
    margin: 0 0 17px;
    font-size: clamp(31px, 3.2vw, 43px);
    letter-spacing: -.031em;
}

.cp-contact-aside > p:not(.eyebrow) {
    max-width: 44ch;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.58;
}

.cp-contact-list {
    display: grid;
    margin-top: 33px;
}

.cp-contact-list > div {
    display: grid;
    min-height: 73px;
    align-content: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 1fr auto;
}

.cp-contact-list > div > span {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 11px;
    grid-column: 1 / -1;
}

.cp-contact-list a,
.cp-contact-list strong {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.cp-contact-list a:hover { color: var(--blue-ink); }
.cp-contact-list i { color: var(--blue); font-size: 12px; font-style: normal; }

.cp-assurance {
    display: grid;
    margin-top: 28px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: 17px;
    grid-template-columns: 26px 1fr;
    gap: 12px;
}

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

.cp-assurance p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.cp-assurance strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ink);
}

.cp-form {
    padding: clamp(30px, 4vw, 50px);
    border: 1px solid var(--line-soft);
    box-shadow: 0 22px 65px rgba(24, 38, 58, .08);
}

.cp-form .form-head {
    padding-bottom: 27px;
    border-bottom: 1px solid var(--line-soft);
}

.cp-form .form-head > span {
    display: block;
    margin-bottom: 12px;
    color: var(--blue-ink);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.cp-form .form-head h2 {
    font-size: clamp(28px, 3.1vw, 40px);
    letter-spacing: -.03em;
}

.cp-form .field input,
.cp-form .field select,
.cp-form .field textarea {
    background: #f8f9fb;
    border-color: var(--line-soft);
}

.cp-form .field input:focus,
.cp-form .field select:focus,
.cp-form .field textarea:focus {
    background: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgb(var(--blue-rgb) / .07);
}

.cp-form > .button { gap: 9px; }

/* ========================================================================== 
   Article page — editorial reading experience
   ========================================================================== */

.pa-hero {
    padding: 112px 0 74px;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 14%, rgb(var(--blue-rgb) / .12), transparent 24%),
        linear-gradient(180deg, #fbfcff 0%, #f4f7fb 100%);
}

.pa-hero-shell {
    display: grid;
    align-items: end;
    grid-template-columns: 1.13fr .55fr;
    gap: clamp(50px, 8vw, 116px);
}

.pa-back-link {
    display: inline-flex;
    align-items: center;
    align-self: start;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    grid-column: 1 / -1;
}

.pa-back-link:hover { color: var(--blue-ink); }

.pa-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 20px;
    color: var(--blue-ink);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.pa-kicker i,
.pa-meta i {
    width: 3px;
    height: 3px;
    background: var(--line);
    border-radius: 50%;
}

.pa-kicker span:last-child { color: var(--muted); }

.pa-hero h1 {
    max-width: var(--display-measure);
    margin: 0 0 23px;
    font-size: var(--display-md);
    letter-spacing: var(--display-tracking);
    line-height: var(--display-leading);
}

.pa-hero-copy > p:not(.pa-kicker) {
    max-width: 62ch;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.58;
}

.pa-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
    color: var(--muted-2);
    font-size: 12px;
}

.pa-meta a { color: var(--ink-2); font-weight: 500; }
.pa-meta a:hover { color: var(--blue-ink); }

.pa-cover {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    color: #fff;
    /* Ramp starts at the brand blue rather than the old #0d7ffc: white label text
       only reaches 3.85:1 on that lighter blue, but clears 4.8:1 on this one. */
    background:
        radial-gradient(circle at 70% 25%, rgb(126 187 255 / .38), transparent 25%),
        linear-gradient(145deg, var(--blue), var(--blue-press));
    border-radius: 28px;
    box-shadow: 0 28px 68px rgba(23, 65, 117, .18);
}

.pa-cover-grid {
    position: absolute;
    inset: 0;
    opacity: .23;
    background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
    background-size: 38px 38px;
}

.pa-cover > span {
    position: absolute;
    top: 22px;
    left: 22px;
    /* 9px at 62% opacity was illegible on the gradient; opaque and one step up */
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
}

.pa-cover-radar {
    position: absolute;
    top: 47%;
    left: 50%;
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.pa-cover-radar::before,
.pa-cover-radar::after,
.pa-cover-radar i {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
}

.pa-cover-radar::before { width: 106px; height: 106px; }
.pa-cover-radar::after { width: 62px; height: 62px; }
.pa-cover-radar i:first-child { top: 18px; right: 21px; width: 9px; height: 9px; background: #fff; border: 0; box-shadow: 0 0 0 6px rgba(255,255,255,.12); }
.pa-cover-radar i:nth-child(2) { bottom: 28px; left: 17px; width: 6px; height: 6px; background: #8bd7b6; border: 0; }

.pa-cover-radar strong {
    position: relative;
    z-index: 2;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--blue-ink);
    background: #fff;
    border-radius: 50%;
    font-size: 22px;
}

.pa-cover > small {
    position: absolute;
    right: 22px;
    bottom: 21px;
    left: 22px;
    color: #fff;
    font-size: 11px;
    line-height: 1.4;
}

.pa-article-shell {
    width: min(1080px, calc(100vw - 48px));
    padding-top: 84px;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: clamp(52px, 8vw, 92px);
}

.pa-aside {
    padding-top: 5px;
}

.pa-aside > div {
    padding: 0 0 20px;
    border-bottom: 1px solid var(--line-soft);
}

.pa-aside > div + div { padding-top: 20px; }

.pa-aside span,
.pa-aside strong,
.pa-aside a { display: block; }

.pa-aside span {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
}

.pa-aside strong,
.pa-aside a {
    margin-bottom: 6px;
    color: var(--ink-2);
    font-size: 13px;
    font-weight: 500;
}

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

.pa-content {
    max-width: 740px;
    font-size: 18px;
    line-height: 1.78;
}

.pa-content > p:first-child {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 22px;
}

.pa-content h2 {
    margin-top: 56px;
    font-size: 32px;
    letter-spacing: -.028em;
}

.pa-content blockquote {
    position: relative;
    padding: 30px 32px 30px 38px;
    background: #f2f7ff;
    border: 1px solid rgb(var(--blue-rgb) / .09);
}

.pa-content blockquote::before {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 0;
    width: 3px;
    content: "";
    background: var(--blue);
    border-radius: 3px;
}

.pa-end-note {
    display: grid;
    margin-top: 54px;
    padding: 22px 24px;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    grid-template-columns: 29px 1fr;
    gap: 13px;
}

.pa-end-note > span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: 11px;
}

.pa-end-note p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.pa-end-note strong { display: block; color: var(--ink); }

/* ========================================================================== 
   Legal, thank-you and not-found pages
   ========================================================================== */

.lp-hero {
    padding: 132px 0 72px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 15%, rgb(var(--blue-rgb) / .22), transparent 28%),
        #121419;
}

.lp-hero-grid {
    display: grid;
    align-items: end;
    grid-template-columns: 1fr auto;
    gap: 50px;
}

.lp-kicker {
    margin: 0 0 16px;
    color: #83bcff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.lp-hero h1 {
    max-width: var(--display-measure);
    margin: 0;
    font-size: var(--display-md);
    letter-spacing: var(--display-tracking);
    line-height: var(--display-leading);
}

.lp-hero-meta {
    min-width: 190px;
    padding: 22px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
}

.lp-hero-meta span,
.lp-hero-meta strong,
.lp-hero-meta small { display: block; }

.lp-hero-meta span { color: rgba(255,255,255,.44); font-size: 10px; }
.lp-hero-meta strong { margin: 5px 0 12px; font-size: 22px; font-weight: 600; }
.lp-hero-meta small { padding-top: 12px; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.09); font-size: 10px; }

.lp-layout {
    display: grid;
    padding-top: 82px;
    padding-bottom: 120px;
    grid-template-columns: 220px minmax(0, 760px);
    justify-content: center;
    gap: clamp(54px, 8vw, 104px);
}

.lp-nav {
    position: sticky;
    top: 100px;
    display: grid;
    align-self: start;
}

.lp-nav > span {
    margin-bottom: 14px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
}

.lp-nav a {
    padding: 8px 0;
    color: var(--muted);
    font-size: 12px;
    border-bottom: 1px solid var(--line-soft);
}

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

.lp-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

.lp-note {
    display: grid;
    margin-bottom: 50px;
    padding: 22px 24px;
    color: #765000;
    background: #fff8e8;
    border: 1px solid #f3e4bd;
    border-radius: 18px;
    grid-template-columns: 30px 1fr;
    gap: 13px;
}

.lp-note > span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    color: #fff;
    background: #c98a00;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
}

.lp-note p { margin: 0; font-size: 14px; line-height: 1.55; }
.lp-note strong { display: block; margin-bottom: 4px; color: #6b4800; }

.lp-content section {
    position: relative;
    padding: 37px 0 38px 54px;
    border-top: 1px solid var(--line-soft);
    scroll-margin-top: 90px;
}

.lp-content section > span {
    position: absolute;
    top: 42px;
    left: 0;
    color: var(--blue);
    font-size: 11px;
    font-weight: 600;
}

.lp-content section h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.lp-content section p { margin: 0; }
.lp-content section a { color: var(--blue-ink); text-decoration: underline; text-underline-offset: 3px; }

.ty-page {
    position: relative;
    display: grid;
    min-height: 78vh;
    place-items: center;
    padding: 132px 24px 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgb(var(--blue-rgb) / .1), transparent 27%),
        linear-gradient(180deg, #fbfcff, #f4f7fb);
}

.ty-radar {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 530px;
    height: 530px;
    place-items: center;
    border: 1px solid rgb(var(--blue-rgb) / .07);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ty-radar::before,
.ty-radar::after,
.ty-radar > i {
    position: absolute;
    content: "";
    border: 1px solid rgb(var(--blue-rgb) / .08);
    border-radius: 50%;
}

.ty-radar::before { width: 390px; height: 390px; }
.ty-radar::after { width: 250px; height: 250px; }
.ty-radar > i:first-child { width: 120px; height: 120px; background: rgb(var(--blue-rgb) / .025); }
.ty-radar > i:nth-child(2) { top: 80px; right: 92px; width: 11px; height: 11px; background: var(--blue); border: 0; box-shadow: 0 0 0 7px rgb(var(--blue-rgb) / .09); }

.ty-radar > span {
    position: relative;
    z-index: 2;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgb(var(--green-rgb) / .23);
}

.ty-card {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 50px;
    text-align: center;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(29,29,31,.08);
    border-radius: 30px;
    box-shadow: 0 28px 78px rgba(25,48,79,.1);
    backdrop-filter: blur(18px);
}

.ty-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0 0 18px;
    color: #0b7d51;
    font-size: 12px;
    font-weight: 600;
}

.ty-kicker span { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgb(var(--green-rgb) / .1); }
.ty-card h1 { margin: 0 0 16px; font-size: var(--display-md); letter-spacing: var(--display-tracking); line-height: var(--display-leading); }
.ty-card > p:not(.ty-kicker) { max-width: 48ch; margin: 0 auto; color: var(--muted); font-size: 18px; line-height: 1.58; }

.ty-next {
    margin: 30px 0 0;
    padding: 17px 20px;
    text-align: left;
    background: var(--surface);
    border-radius: 15px;
}

.ty-next span,
.ty-next strong { display: block; }
.ty-next span { margin-bottom: 4px; color: var(--muted); font-size: 10px; }
.ty-next strong { font-size: 13px; font-weight: 600; }

.ty-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 28px;
}

.nf-page {
    display: grid;
    min-height: 75vh;
    align-items: center;
    padding: 125px max(24px, calc((100vw - 1180px) / 2)) 90px;
    background:
        radial-gradient(circle at 15% 50%, rgb(var(--blue-rgb) / .09), transparent 25%),
        #f7f9fc;
    grid-template-columns: .75fr 1.05fr;
    gap: clamp(50px, 9vw, 130px);
}

.nf-visual {
    position: relative;
    display: grid;
    width: min(38vw, 430px);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgb(var(--blue-rgb) / .1);
    border-radius: 50%;
}

.nf-visual::before,
.nf-visual::after,
.nf-visual > i {
    position: absolute;
    content: "";
    border: 1px solid rgb(var(--blue-rgb) / .1);
    border-radius: 50%;
}

.nf-visual::before { width: 74%; height: 74%; }
.nf-visual::after { width: 46%; height: 46%; }
.nf-visual > i:first-child { width: 18%; height: 18%; background: var(--blue); border: 0; box-shadow: 0 18px 40px rgb(var(--blue-rgb) / .24); }
.nf-visual > i:nth-child(2) { top: 19%; right: 17%; width: 12px; height: 12px; background: #ff7378; border: 0; box-shadow: 0 0 0 7px rgba(255,115,120,.1); }
.nf-visual > i:nth-child(3) { bottom: 13%; left: 29%; width: 8px; height: 8px; background: var(--green); border: 0; }

.nf-visual > span {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.nf-visual > b {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34%;
    height: 1px;
    background: linear-gradient(90deg, rgb(var(--blue-rgb) / .7), transparent);
    transform: rotate(-32deg);
    transform-origin: left center;
}

.nf-copy > p {
    margin: 0 0 15px;
    color: var(--blue-ink);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.nf-copy h1 {
    max-width: var(--display-measure);
    margin: 0 0 20px;
    font-size: var(--display-md);
    letter-spacing: var(--display-tracking);
    line-height: var(--display-leading);
}

.nf-copy > span {
    display: block;
    max-width: 51ch;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.56;
}

.nf-copy > div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.page-thanks .final-cta,
.page-not-found .final-cta { display: none; }

@media (max-width: 1024px) {
    .cp-hero-grid { gap: 46px; }
    .cp-hero-copy h1 { font-size: clamp(44px, 5.9vw, 61px); }
    .pa-hero-shell { grid-template-columns: 1fr .48fr; gap: 48px; }
    .lp-layout { grid-template-columns: 190px minmax(0, 730px); gap: 60px; }}

@media (max-width: 860px) {
    .cp-hero { padding-top: 116px; }
    .cp-hero-grid,
    .cp-layout,
    .pa-hero-shell,
    .lp-hero-grid,
    .lp-layout,
    .nf-page { grid-template-columns: 1fr; }
    .cp-hero-grid { gap: 54px; }
    .cp-contact-aside { position: static; }
    .cp-contact-aside h2 { max-width: 18ch; }
    .pa-hero-shell { align-items: start; }
    .pa-cover { min-height: 300px; }
    .pa-article-shell { grid-template-columns: 1fr; gap: 40px; }
    .pa-aside { position: static; display: grid; padding: 18px; background: var(--surface); border-radius: 18px; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .pa-aside > div { padding: 0; border: 0; }
    .pa-aside > div + div { padding: 0; }
    .pa-content { margin-inline: auto; }
    .lp-hero-grid { align-items: start; }
    .lp-hero-meta { width: min(100%, 280px); }
    .lp-layout { justify-content: stretch; gap: 36px; }
    .lp-nav { position: static; display: flex; overflow-x: auto; gap: 8px; padding-bottom: 8px; }
    .lp-nav > span { display: none; }
    .lp-nav a { flex: 0 0 auto; padding: 8px 12px; background: var(--surface); border: 0; border-radius: var(--pill); }
    .nf-page { justify-items: center; text-align: center; }
    .nf-visual { width: min(70vw, 390px); }
    .nf-copy > span { margin-inline: auto; }
    .nf-copy > div { justify-content: center; }}

@media (max-width: 560px) {
    .cp-hero { padding: 102px 0 72px; }
    .cp-hero-copy h1 { font-size: clamp(40px, 12.2vw, 53px); }
    .cp-hero-copy > p:not(.cp-kicker) { font-size: 17px; }
    .cp-hero-copy > .button { width: 100%; }
    .cp-hero-facts { display: grid; grid-template-columns: 1fr 1fr; }
    .cp-hero-facts li:last-child { grid-column: 1 / -1; }
    .cp-form { padding: 27px 18px; border-radius: 22px; }
    .cp-form .form-grid { grid-template-columns: 1fr; }
    .cp-form .field.full { grid-column: auto; }
    .pa-hero { padding: 102px 0 60px; }
    .pa-hero h1 { font-size: clamp(38px, 11.6vw, 52px); }
    .pa-hero-copy > p:not(.pa-kicker) { font-size: 17px; }
    .pa-cover { min-height: 250px; border-radius: 22px; }
    .pa-cover-radar { width: 120px; height: 120px; }
    .pa-article-shell { width: calc(100vw - 28px); padding-top: 55px; }
    .pa-aside { grid-template-columns: 1fr 1fr; }
    .pa-aside > div:last-child { grid-column: 1 / -1; }
    .pa-content { font-size: 17px; }
    .pa-content > p:first-child { font-size: 20px; }
    .pa-content h2 { font-size: 28px; }
    .lp-hero { padding: 108px 0 60px; }
    .lp-hero h1 { font-size: 42px; }
    .lp-layout { padding-top: 52px; padding-bottom: 80px; }
    .lp-note { padding: 18px; grid-template-columns: 27px 1fr; }
    .lp-content section { padding-left: 40px; }
    .ty-page { padding: 108px 14px 72px; }
    .ty-radar { width: 400px; height: 400px; }
    .ty-card { padding: 36px 21px; border-radius: 24px; }
    .ty-card h1 { font-size: 40px; }
    .ty-card > p:not(.ty-kicker) { font-size: 16px; }
    .ty-actions { align-items: stretch; flex-direction: column; }
    .ty-actions .button { width: 100%; }
    .nf-page { padding: 104px 14px 70px; gap: 42px; }
    .nf-visual { width: min(76vw, 320px); }
    .nf-copy h1 { font-size: 42px; }
    .nf-copy > span { font-size: 16px; }
    .nf-copy > div { align-items: stretch; flex-direction: column; }
    .nf-copy .button { width: 100%; }}

/* ========================================================================== 
   Home page — mobile responsive pass
   ========================================================================== */

.page-home main {
    overflow-x: clip;
}

@media (max-width: 860px) {
    .page-home .hero-copy {
        max-width: 680px;
    }

    .page-home .hero-stage {
        width: 100%;
        border-radius: 18px 18px 0 0;
        transform: perspective(1400px) rotateX(5deg);
    }

    .page-home .trust-strip {
        padding: 44px 0 48px;
    }

    .page-home .product-gallery-grid {
        gap: 42px;
    }

    .page-home .priority-card,
    .page-home .message-stage {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .page-home .performance-head {
        max-width: 680px;
    }

    .page-home .team-row {
        padding-inline: 18px;
        grid-template-columns: 38px minmax(150px, 1.4fr) minmax(88px, .9fr) 38px;
        gap: 11px;
    }

    .page-home .team-board-head {
        padding-inline: 20px;
    }

    .page-home .package-card {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .page-home .addon-grid {
        width: min(100%, 680px);
        margin-right: auto;
        margin-left: auto;
    }

    .page-home .security-copy .button {
        align-self: flex-start;
    }}

@media (max-width: 560px) {
    .page-home .hero-eyebrow {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .page-home .hero h1 {
        margin-bottom: 18px;
        font-size: clamp(38px, 11.5vw, 48px);
        letter-spacing: -.038em;
        line-height: 1.01;
    }

    .page-home .hero-lead {
        margin-bottom: 27px;
        font-size: 17px;
        line-height: 1.52;
    }

    .page-home .hero-actions {
        gap: 10px;
    }

    .page-home .hero-actions .button {
        min-height: 50px;
    }

    .page-home .hero-stage {
        width: 100%;
        border-radius: 16px 16px 0 0;
        transform: none;
    }

    .page-home .hero-stage-screen,
    .page-home .hero-stage-screen .ui-mock {
        min-height: 240px;
    }

    .page-home .dashboard {
        width: 100%;
        padding: 2em 1.5em 1.6em;
    }

    .page-home .dashboard-heading strong {
        font-size: 1.72em;
    }

    .page-home .live-pill {
        padding: .5em .8em;
        font-size: .82em;
    }

    .page-home .metric-row {
        grid-template-columns: 1fr 1fr;
        gap: 1em;
    }

    .page-home .metric-card {
        min-height: 11.5em;
        padding: 1.45em;
    }

    .page-home .metric-card:first-child {
        min-height: 12.5em;
        grid-column: 1 / -1;
    }

    .page-home .metric-card > strong {
        margin-top: .75em;
        font-size: 2.35em;
    }

    .page-home .dashboard-lower {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 1em;
    }

    .page-home .collection-chart {
        height: 25em;
        padding: 1.5em;
    }

    .page-home .collection-chart .card-head > span,
    .page-home .risk-panel {
        display: none;
    }

    .page-home .chart-wrap {
        height: 17.5em;
        margin-top: 1em;
    }

    .page-home .chart-wrap > svg {
        height: 15em;
    }

    .page-home .trust-strip {
        padding: 38px 0 42px;
    }

    .page-home .trust-label {
        margin-bottom: 21px;
        font-size: 13px;
    }

    .page-home .trust-brands {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 18px;
    }

    .page-home .trust-brands .brand-mark {
        min-height: 38px;
        justify-content: center;
    }

    .page-home .trust-facts {
        display: grid;
        margin-top: 27px;
        gap: 8px;
    }

    .page-home .trust-facts li {
        min-height: 34px;
        justify-content: center;
        padding: 0 12px;
        background: rgba(255, 255, 255, .62);
        border-radius: var(--pill);
        font-size: 12px;
    }

    .page-home .trust-facts li:not(:last-child)::after {
        display: none;
    }

    .page-home .product-gallery .shell {
        width: 100%;
    }

    .page-home .gallery-heading {
        width: var(--shell);
        margin: 0 auto 36px;
        text-align: left;
    }

    .page-home .gallery-heading > p,
    .page-home .section-heading > p,
    .page-home .statement-copy > p,
    .page-home .performance-head > p {
        font-size: 17px;
    }

    .page-home .product-gallery-grid {
        display: flex;
        gap: 14px;
        padding: 0 14px 10px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-padding-left: 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .page-home .product-gallery-grid::-webkit-scrollbar,
    .page-home .workflow::-webkit-scrollbar {
        display: none;
    }

    .page-home .product-shot {
        flex: 0 0 min(86vw, 340px);
        scroll-snap-align: start;
    }

    .page-home .shot-media {
        border-radius: 20px;
    }

    .page-home .product-shot figcaption {
        padding: 19px 3px 0;
    }

    .page-home .product-shot figcaption strong {
        font-size: 21px;
    }

    .page-home .product-shot figcaption p {
        margin-top: 9px;
        font-size: 15px;
    }

    .page-home .before-after {
        margin-top: 38px;
        gap: 12px;
    }

    .page-home .compare-card {
        padding: 25px 21px;
        border-radius: 18px;
    }

    .page-home .compare-label {
        font-size: 18px;
    }

    .page-home .compare-card li {
        font-size: 14px;
        line-height: 1.45;
    }

    .page-home .risk-scale {
        margin-top: 28px;
        gap: 15px 10px;
    }

    .page-home .risk-scale span {
        font-size: 12px;
    }

    .page-home .priority-card {
        padding: 8px;
        border-radius: 18px;
    }

    .page-home .priority-head {
        padding: 14px 10px 16px;
    }

    .page-home .priority-head > span {
        padding: 4px 8px;
        font-size: 10px;
    }

    .page-home .account-row {
        min-height: 64px;
        padding: 0 9px;
        grid-template-columns: 32px minmax(0, 1fr) auto 12px;
        gap: 9px;
    }

    .page-home .account-logo {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }

    .page-home .account-name strong {
        overflow: hidden;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .page-home .account-name small,
    .page-home .account-row > b {
        font-size: 10px;
    }

    .page-home .priority-foot {
        align-items: flex-start;
        padding: 14px 10px;
        flex-direction: column;
        gap: 8px;
        font-size: 11px;
    }

    .page-home .workflow {
        display: flex;
        gap: 12px;
        margin: 42px -14px 0;
        padding: 0 14px 10px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-padding-left: 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .page-home .workflow-step {
        min-height: 235px;
        padding: 25px 22px;
        flex: 0 0 min(82vw, 310px);
        scroll-snap-align: start;
    }

    .page-home .message-stage {
        padding: 8px;
        border-radius: 20px;
    }

    .page-home .channel-tabs {
        gap: 3px;
        margin-bottom: 8px;
    }

    .page-home .channel-tabs button {
        min-width: 0;
        height: 43px;
        padding: 0 3px;
        font-size: 10px;
    }
    .page-home .channel-apps {
        min-height: 0;
        padding: 0;
        border-radius: 16px;
    }

    .page-home .feature-checks {
        gap: 16px;
    }

    .page-home .feature-checks b {
        font-size: 15px;
    }

    .page-home .feature-checks small {
        font-size: 13px;
    }

    .page-home .kpi-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 38px;
    }

    .page-home .kpi-grid article {
        min-height: 164px;
        padding: 18px;
        border-radius: 18px;
    }

    .page-home .kpi-grid article > span {
        font-size: 12px;
    }

    .page-home .kpi-grid article > strong {
        margin-top: 12px;
        font-size: 30px;
    }

    .page-home .kpi-grid article > small {
        font-size: 10px;
    }

    .page-home .kpi-bar,
    .page-home .kpi-sparks {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .page-home .kpi-donut {
        right: 18px;
        bottom: 16px;
    }

    .page-home .team-board {
        overflow: hidden;
        border-radius: 18px;
    }

    .page-home .team-board-head {
        min-height: 74px;
        padding: 13px 14px;
    }

    .page-home .team-board-head small {
        font-size: 10px;
    }

    .page-home .team-board-head strong {
        font-size: 15px;
    }

    .page-home .team-board-head > div:last-child > span {
        display: none;
    }

    .page-home .team-board-head a {
        padding: 6px 9px;
        font-size: 10px;
    }

    .page-home .team-table {
        display: grid;
        padding: 0 8px 8px;
        gap: 6px;
    }

    .page-home .team-row {
        min-width: 0;
        min-height: 62px;
        padding: 0 8px;
        background: rgba(255, 255, 255, .025);
        border: 0;
        border-radius: 12px;
        grid-template-columns: 26px minmax(0, 1fr) auto 31px;
        gap: 8px;
        font-size: 11px;
    }

    .page-home .team-labels {
        display: none;
    }

    .page-home .member {
        grid-template-columns: 28px minmax(0, 1fr);
        column-gap: 8px;
    }

    .page-home .member > i {
        width: 28px;
        height: 28px;
        font-size: 9px;
    }

    .page-home .member b {
        overflow: hidden;
        font-size: 11px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .page-home .member small {
        display: none;
    }

    .page-home .team-row > span:nth-child(4) b {
        font-size: 11px;
    }

    .page-home .score {
        width: 29px;
        height: 29px;
        font-size: 10px;
    }

    .page-home .package-grid {
        gap: 12px;
        margin-top: 40px;
    }

    .page-home .package-card {
        padding: 27px 21px;
        border-radius: 22px;
    }

    .page-home .package-card h3 {
        margin-top: 19px;
    }

    .page-home .package-price strong {
        font-size: 31px;
    }

    .page-home .package-capacity {
        gap: 10px;
    }

    .page-home .package-capacity > span {
        font-size: 12px;
    }

    .page-home .package-capacity strong {
        font-size: 14px;
    }

    .page-home .addon-grid article {
        min-height: 86px;
        align-items: flex-start;
        padding: 19px 18px;
        border-radius: 17px;
    }

    .page-home .addon-grid strong {
        font-size: 14px;
    }

    .page-home .addon-grid span {
        font-size: 11px;
    }

    .page-home .addon-grid b {
        font-size: 17px;
        text-align: right;
    }

    .page-home .security-copy .button {
        width: 100%;
    }

    .page-home .security-cards article {
        min-height: 92px;
        padding: 0 17px;
        border-radius: 17px;
        grid-template-columns: 40px 1fr;
        gap: 14px;
    }

    .page-home .security-icon {
        width: 40px;
        height: 40px;
    }

    .page-home .security-cards strong {
        font-size: 15px;
    }

    .page-home .security-cards span {
        font-size: 12px;
    }

    .page-home .insights-head {
        align-items: flex-start;
        margin-bottom: 34px;
        flex-direction: column;
        gap: 13px;
    }

    .page-home .article-grid {
        gap: 34px;
    }

    .page-home .article-visual {
        height: 220px;
        border-radius: 19px;
    }

    .page-home .faq-intro {
        padding-bottom: 9px;
    }

    .page-home .faq-item button {
        min-height: 72px;
        padding: 18px 2px;
        gap: 16px;
    }

    .page-home .faq-item button strong {
        font-size: 16px;
        line-height: 1.35;
    }

    .page-home .faq-item p {
        font-size: 15px;
        line-height: 1.55;
    }

    .page-home .final-cta {
        padding: 76px 0;
    }

    .page-home .final-cta h2 {
        font-size: 38px;
        line-height: 1.04;
    }

    .page-home .final-cta p {
        font-size: 17px;
    }}

@media (max-width: 380px) {
    .page-home .hero h1 {
        font-size: 37px;
    }

    .page-home .dashboard-heading small,
    .page-home .live-pill {
        display: none;
    }

    .page-home .metric-card {
        padding: 1.25em;
    }

    .page-home .trust-brands {
        gap: 19px 12px;
    }

    .page-home .risk-scale {
        grid-template-columns: 1fr;
    }

    .page-home .kpi-grid article {
        min-height: 154px;
        padding: 15px;
    }

    .page-home .kpi-grid article > strong {
        font-size: 27px;
    }

    .page-home .kpi-bar,
    .page-home .kpi-sparks {
        right: 15px;
        bottom: 15px;
        left: 15px;
    }

    .page-home .team-row {
        grid-template-columns: 24px minmax(0, 1fr) auto 29px;
        gap: 6px;
    }

    .page-home .package-price strong {
        font-size: 28px;
    }

    .page-home .addon-grid article {
        gap: 12px;
        padding-inline: 15px;
    }

    .page-home .footer-nav {
        grid-template-columns: 1fr;
    }

    .page-home .footer-nav > div:last-child {
        grid-column: auto;
    }

    .page-home .footer-nav a,
    .page-home .footer-nav span {
        overflow-wrap: anywhere;
    }}

/* --------------------------------------------------------------------------
   Readable HTML product mocks (replaces placeholder-bar screenshots)
   -------------------------------------------------------------------------- */

.shot-media {
    display: grid;
    place-items: center;
    padding: clamp(14px, 2vw, 22px);
}

.shot-media-mobile {
    background:
        radial-gradient(circle at 50% 20%, rgb(var(--blue-rgb) / .08), transparent 50%),
        var(--surface);
}

.fp-frame-mock {
    overflow: hidden;
    background: #f3f4f7;
}

.fp-frame-mock .ui-mock {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.fp-frame-mock-mobile {
    display: grid;
    place-items: center;
    min-height: 320px;
    padding: 20px 12px;
    background:
        radial-gradient(circle at 50% 10%, rgb(var(--blue-rgb) / .1), transparent 45%),
        #eef1f6;
}

.fp-product-frame .fp-frame-mock {
    border-top: 1px solid rgba(15, 23, 42, .06);
}

.ui-mock {
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
    color: #1d1d1f;
    font-size: 11px;
    line-height: 1.25;
}

.ui-mock-dashboard {
    display: grid;
    grid-template-columns: 42px 1fr;
    min-height: 260px;
}

.ui-side {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
    align-items: center;
    background: #151922;
}

.ui-side i {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .18);
}

.ui-side i.on {
    background: var(--blue);
}

.ui-main {
    display: grid;
    gap: 10px;
    padding: 12px 12px 14px;
    background: #f7f8fb;
}

.ui-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ui-top strong {
    font-size: 13px;
    font-weight: 650;
    letter-spacing: -.02em;
}

.ui-top > span {
    color: #686c74;
    font-size: 10px;
}

.ui-live {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 6px;
    background: #f0f1f4;
    color: #5c5c63;
    border: 1px solid rgba(15, 23, 42, .06);
    font-size: 10px;
    font-weight: 600;
}

.ui-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.ui-metrics.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ui-metrics article {
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 10px;
}

.ui-metrics small,
.ui-card-head small,
.ui-risk li,
.ui-col header,
.ui-col small,
.ui-phone-head small,
.ui-phone-list small {
    display: block;
    color: #686c74;
    font-size: 10px;
}

.ui-metrics b,
.ui-card-head strong,
.ui-col strong,
.ui-phone-head strong,
.ui-phone-list b {
    display: block;
    margin-top: 3px;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -.02em;
}

.ui-metrics em {
    display: block;
    margin-top: 4px;
    color: var(--green);
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
}

.ui-metrics article.warn em {
    color: var(--amber);
}

.ui-split {
    display: grid;
    grid-template-columns: 1.45fr .9fr;
    gap: 8px;
    min-height: 0;
}

.ui-chart,
.ui-risk {
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 10px;
}

.ui-card-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.ui-card-head strong {
    margin: 0;
    font-size: 11px;
}

.ui-chart svg {
    display: block;
    width: 100%;
    height: 72px;
}

.ui-chart .area {
    fill: rgb(var(--blue-rgb) / .14);
}

.ui-chart .line {
    fill: none;
    stroke: var(--blue);
    stroke-width: 2.2;
}

.ui-months {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    color: #70747c;
    font-size: 9px;
}

.ui-risk ul {
    display: grid;
    gap: 8px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.ui-risk li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ui-risk li b {
    margin-left: auto;
    color: #1d1d1f;
    font-size: 11px;
}

.ui-risk i,
.ui-col header i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.ui-risk i.mid,
.ui-col header i.mid { background: var(--amber); }
.ui-risk i.high,
.ui-col header i.high,
.ui-col header i.critical { background: #d8383d; }

.ui-mock-board {
    display: grid;
    gap: 10px;
    padding: 12px;
    min-height: 260px;
    background: #f7f8fb;
}

.ui-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    min-height: 0;
}

.ui-col {
    display: grid;
    gap: 7px;
    align-content: start;
    padding: 8px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 23, 42, .05);
    border-radius: 10px;
}

.ui-col header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #35353a;
}

.ui-col header b {
    margin-left: auto;
    color: #70747c;
    font-weight: 600;
}

.ui-col article {
    padding: 9px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 9px;
}

.ui-col article strong {
    font-size: 11px;
}

.ui-col article small {
    margin-top: 3px;
}

.ui-col article div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-top: 8px;
}

.ui-col article b {
    font-size: 12px;
}

.ui-col article em {
    padding: 2px 6px;
    border-radius: 999px;
    background: #eef5ff;
    color: #0060d4;
    font-size: 9px;
    font-style: normal;
    font-weight: 650;
}

.ui-mock-reports {
    display: grid;
    gap: 10px;
    padding: 12px;
    min-height: 260px;
    background: #f7f8fb;
}

.ui-table {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 10px;
}

.ui-tr {
    display: grid;
    grid-template-columns: 1.3fr .7fr .9fr .7fr;
    gap: 8px;
    padding: 9px 11px;
    border-top: 1px solid rgba(15, 23, 42, .05);
    color: #35353a;
    font-size: 11px;
}

.ui-tr.head {
    border-top: 0;
    background: #fafafc;
    color: #686c74;
    font-size: 10px;
    font-weight: 600;
}

.ui-mock-mobile {
    display: grid;
    place-items: center;
    min-height: 260px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.ui-phone {
    width: min(100%, 210px);
    padding: 12px 12px 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 26px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .12);
}

.ui-phone-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #70747c;
    font-size: 10px;
    font-weight: 600;
}

.ui-phone-head strong {
    font-size: 15px;
}

.ui-phone-list {
    display: grid;
    gap: 7px;
    margin-top: 12px;
}

.ui-phone-list article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 10px;
    background: var(--surface);
    border-radius: 12px;
}

.ui-phone-list b {
    font-size: 12px;
}

.ui-phone-list em {
    /* --blue is only 4.42:1 on this row's tint at 10px; the pressed tone clears AA */
    color: var(--blue-press);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.ui-phone-cta {
    margin-top: 12px;
    padding: 10px;
    border-radius: 12px;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 650;
    text-align: center;
}

@media (max-width: 720px) {
    .ui-split,
    .ui-cols,
    .ui-metrics {
        grid-template-columns: 1fr;
    }

    .ui-mock-dashboard {
        grid-template-columns: 1fr;
    }

    .ui-side {
        flex-direction: row;
        justify-content: center;
        padding: 10px;
    }

    .ui-tr {
        grid-template-columns: 1.2fr .8fr;
    }

    .ui-tr span:nth-child(2),
    .ui-tr span:nth-child(3) {
        display: none;
    }}

body {
    background: var(--surface-2);
    font-family: var(--font);
    letter-spacing: -.01em;
}

h1,
main h2,
.final-cta h2 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: var(--display-tracking);
}

.site-header {
    height: var(--header-h);
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition:
        background .4s var(--ease-entrance),
        border-color .4s var(--ease-entrance),
        box-shadow .4s var(--ease-entrance);
}

.header-shell {
    height: var(--header-h);
}

.header-pill {
    display: none;
}

/* --------------------------------------------------------------------------
   Header states

   Homepage at top  -> hero-sized bar (same inset box as `.hero`)
   Homepage sticky  -> shell-width pill (GSAP morphs geometry)
   Inner pages      -> always the pill
   -------------------------------------------------------------------------- */

.site-header.is-solid,
body:not(.page-home) .site-header {
    top: 12px;
    left: 50%;
    width: var(--shell);
    overflow: hidden;
    transform: translateX(-50%);
    background: rgb(255 255 255 / .92);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    box-shadow: 0 10px 32px rgb(20 26 38 / .08);
    backdrop-filter: saturate(150%) blur(14px);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
}

.site-header.is-solid .header-shell,
body:not(.page-home) .site-header .header-shell {
    width: 100%;
    padding-inline: 22px;
}

.site-header.is-solid .brand img,
body:not(.page-home) .site-header .brand img {
    filter: none;
}

.site-header.is-solid .desktop-nav a,
body:not(.page-home) .site-header .desktop-nav a {
    color: var(--ink-2);
}

.site-header.is-solid .desktop-nav a:hover,
.site-header.is-solid .desktop-nav a[aria-current="page"],
body:not(.page-home) .site-header .desktop-nav a:hover,
body:not(.page-home) .site-header .desktop-nav a[aria-current="page"] {
    color: var(--ink);
}

.site-header.is-solid .menu-toggle,
body:not(.page-home) .site-header .menu-toggle {
    background: rgb(23 26 31 / .04);
    border-color: rgb(23 26 31 / .09);
}

.site-header.is-solid .menu-toggle span,
body:not(.page-home) .site-header .menu-toggle span {
    background: var(--ink);
}

/* Homepage at top: same inset frame as the hero. */
body.page-home:not(.menu-open) .site-header:not(.is-solid) {
    top: var(--hero-inset, 16px);
    left: var(--hero-inset, 16px);
    right: var(--hero-inset, 16px);
    width: auto;
    max-width: none;
    transform: none;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid rgb(23 26 31 / .08);
    border-radius: 28px 28px 0 0;
    box-shadow: none;
    background: rgb(255 255 255 / .55);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
}

/* Homepage sticky: header element itself becomes the shell pill. */
body.page-home:not(.menu-open) .site-header.is-solid {
    top: 12px;
    left: 50%;
    right: auto;
    width: var(--shell);
    max-width: none;
    transform: translateX(-50%);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    box-shadow: 0 10px 32px rgb(20 26 38 / .08);
    background: rgb(255 255 255 / .92);
    backdrop-filter: saturate(150%) blur(14px);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
}

/* Content always fills the bar — morphs with the outer width. */
body.page-home:not(.menu-open) .site-header .header-shell {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 22px;
}

/* Pill layer unused on homepage; the header morphs instead. */
body.page-home .header-pill {
    display: none;
}

body.page-home:not(.menu-open) .site-header .brand img {
    filter: none;
}

body.page-home:not(.menu-open) .site-header .desktop-nav a {
    color: var(--ink-2);
}

body.page-home:not(.menu-open) .site-header .desktop-nav a:hover,
body.page-home:not(.menu-open) .site-header .desktop-nav a[aria-current="page"] {
    color: var(--ink);
}

body.page-home:not(.menu-open) .site-header .menu-toggle {
    background: rgb(23 26 31 / .04);
    border-color: rgb(23 26 31 / .09);
}

body.page-home:not(.menu-open) .site-header .menu-toggle span {
    background: var(--ink);
}

/* Menu open wins over everything: the panel is dark, so the bar has to be too. */
body.menu-open .site-header {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    transform: none;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / .08);
    box-shadow: none;
    background: var(--dark);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.menu-open .header-pill {
    display: none;
}

body.menu-open .site-header .header-shell {
    width: var(--shell);
    padding-inline: 0;
    margin-inline: auto;
}

body.menu-open .site-header .brand img {
    filter: brightness(0) invert(1);
}

body.menu-open .site-header .menu-toggle {
    background: rgb(255 255 255 / .08);
    border-color: rgb(255 255 255 / .16);
}

body.menu-open .site-header .menu-toggle span {
    background: #fff;
}

.scroll-progress {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--blue);
    /* Only reads as a progress rule once the bar has a surface to sit on. While the
       header is transparent inside the hero there is nothing to measure against, so
       it stays hidden rather than floating a blue line over the artwork. */
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: opacity .2s var(--ease);
}

.site-header.is-solid .scroll-progress,
body:not(.page-home) .site-header .scroll-progress {
    opacity: 1;
}

/* Needs the .site-header step to outweigh the two rules above, which are both
   (0,3,1); a bare body.menu-open .scroll-progress lost to them on inner pages. */
body.menu-open .site-header .scroll-progress {
    opacity: 0;
}

.desktop-nav a {
    font-size: 13px;
    font-weight: 500;
}

.button {
    min-height: 48px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.button-small {
    min-height: 38px;
}

[data-photo-reveal] {
    overflow: hidden;
}

[data-photo-reveal] > img {
    will-change: transform;
}

/* --------------------------------------------------------------------------
   Homepage hero

   Inset from the viewport with a soft frame — margin shows the page ground,
   28px radius softens the composition without reading as a floating card stack.
   -------------------------------------------------------------------------- */

.page-home {
    --hero-inset: 16px;
    background: #e7ebf1;
}

.page-home .hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
    width: auto;
    min-height: min(calc(100svh - (var(--hero-inset) * 2)), 960px);
    margin: var(--hero-inset);
    padding: calc(var(--header-h) + clamp(32px, 5vh, 60px)) 0 0;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(180deg, #f3f6fa 0%, var(--surface-2) 42%, #fff 100%);
}

.page-home .hero-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 1;
    transition: opacity 1.1s var(--ease-entrance);
}

.js:not(.hero-ready) .page-home .hero-atmosphere {
    opacity: 0;
}

.page-home .hero-mesh {
    position: absolute;
    inset: -20% -10% auto;
    height: 70%;
    background:
        radial-gradient(ellipse 55% 70% at 18% 30%, rgb(var(--blue-rgb) / .16), transparent 68%),
        radial-gradient(ellipse 45% 55% at 82% 18%, rgb(var(--blue-rgb) / .1), transparent 70%),
        radial-gradient(ellipse 40% 40% at 50% 80%, rgb(23 26 32 / .04), transparent 70%);
    filter: saturate(1.05);
    animation: hero-mesh-drift 18s var(--ease-entrance) infinite alternate;
}

.page-home .hero-gridlines {
    position: absolute;
    inset: 0;
    opacity: .45;
    background-image:
        linear-gradient(rgb(23 26 32 / .045) 1px, transparent 1px),
        linear-gradient(90deg, rgb(23 26 32 / .045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 20%, transparent 78%);
}

.page-home .hero-beam {
    position: absolute;
    top: 12%;
    left: 50%;
    width: min(920px, 90vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(var(--blue-rgb) / .35), transparent);
    transform: translateX(-50%);
    animation: hero-beam-breathe 4.8s ease-in-out infinite;
}

@keyframes hero-mesh-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(0, 2.5%, 0) scale(1.04); }
}

@keyframes hero-beam-breathe {
    0%, 100% { opacity: .35; transform: translateX(-50%) scaleX(.92); }
    50% { opacity: .85; transform: translateX(-50%) scaleX(1); }
}

.page-home .hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    width: var(--shell);
    max-width: none;
    margin-inline: auto;
    gap: clamp(48px, 7vh, 80px);
    text-align: center;
    justify-items: center;
    grid-template-columns: 1fr;
}

.page-home .hero-copy {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    padding-top: clamp(8px, 2vh, 24px);
}

.page-home .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--blue-ink);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.page-home .hero-eyebrow::before,
.page-home .hero-eyebrow::after {
    width: 22px;
    height: 1px;
    content: "";
    background: currentColor;
    opacity: .55;
}

.page-home .hero h1 {
    max-width: 15ch;
    margin: 0 auto 24px;
    font-size: clamp(46px, 6.4vw, 84px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: .98;
    text-wrap: balance;
}

.page-home .hero-lead {
    max-width: 44ch;
    margin: 0 auto 34px;
    color: #50555e;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.55;
}

.page-home .hero-actions {
    justify-content: center;
    gap: 12px;
}

.page-home .hero-actions .button-quiet span {
    margin-left: 4px;
    opacity: .7;
}

/* Product plane — the visual anchor of the composition, not a floating card. */
.page-home .hero-stage {
    position: relative;
    width: min(1120px, 100%);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgb(23 26 32 / .08);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    background: #fff;
    transform-origin: center top;
    transform: perspective(1800px) rotateX(8deg) translateY(0);
    box-shadow: 0 -1px 0 rgb(255 255 255 / .7) inset;
}

.page-home .hero-stage-chrome {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 44px;
    padding: 0 16px;
    background: linear-gradient(180deg, #fbfcfe, #f3f5f8);
    border-bottom: 1px solid rgb(23 26 32 / .06);
}

.page-home .hero-stage-dots {
    display: inline-flex;
    gap: 6px;
}

.page-home .hero-stage-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d5d9e0;
}

.page-home .hero-stage-dots i:first-child { background: #ff5f57; }
.page-home .hero-stage-dots i:nth-child(2) { background: #febc2e; }
.page-home .hero-stage-dots i:nth-child(3) { background: #28c840; }

.page-home .hero-stage-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-2);
    font-size: 12px;
    font-weight: 600;
}

.page-home .hero-stage-live {
    margin-left: auto;
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.page-home .hero-stage-screen {
    min-height: clamp(280px, 38vh, 420px);
    background: #f6f7fa;
}

.page-home .hero-stage-screen .ui-mock {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: clamp(280px, 38vh, 420px);
    font-size: clamp(10px, 1.05vw, 13px);
}

.page-home .hero-stage-screen .ui-mock-dashboard {
    min-height: inherit;
}

.page-home .hero-stage-screen .ui-top {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .page-home .hero-mesh,
    .page-home .hero-beam {
        animation: none;
    }

    .page-home .hero-stage {
        transform: none;
    }
}

.hero-photo-status i,
.cp-human-photo figcaption > span i {
    width: 7px;
    height: 7px;
    background: #55d6a1;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(85, 214, 161, .13);
}

/* Continues the hero's ground so there is no seam directly under the fold. */
.page-home .trust-strip {
    padding: 40px 0 clamp(56px, 6vw, 76px);
    background: var(--surface);
    border-bottom: 0;
}

/* One treatment for every partner mark. They arrive as a red wordmark, a blue
   badge, a two-colour PNG and a Logo Netsis lockup, and side by side that can
   read as four pasted images. Desaturating and matching optical heights lets
   the row settle; hover returns the brand colour. */
.page-home .trust-brands .brand-mark {
    opacity: 1;
    /* grayscale + opacity only. brightness(0) flattened DİA's filled badge into a
       solid black square, because silhouetting destroys any mark that carries its
       contrast internally. Desaturating keeps each logo's own shape readable. */
    filter: grayscale(1) opacity(.6);
    transition: filter .3s var(--ease-entrance);
}

.page-home .trust-brands .brand-mark:hover {
    filter: none;
}

.page-home .trust-label {
    font-family: var(--font-display);
    color: var(--ink);
    font-size: 17px;
}

/* --------------------------------------------------------------------------
   Homepage surface rhythm

   Cool light grounds and dark punctuation, grouped by section role:

     cool    hero + trust           entry
     clean   product / data blocks  the long working stretch
     cool    workflow + comms       break
     dark    performance            punctuation
     clean   packages + integration
     dark    security               punctuation
     clean   insights + faq         quiet close
   -------------------------------------------------------------------------- */

.page-home .product-gallery,
.page-home .statement-section,
.page-home .feature-risk,
.page-home .packages-section,
.page-home .insights-section,
.page-home .faq-section {
    background: var(--surface-2);
}

.page-home .integration-section {
    padding: clamp(64px, 7vw, 96px) 0;
    background: var(--surface-2);
}

.page-home .workflow-section,
.page-home .communication-section {
    background: var(--surface);
}

.page-home .product-shot,
.page-home .workflow-step,
.page-home .package-card,
.page-home .kpi-grid article,
.ab-timeline article,
.ab-model-grid article,
.ab-principles-grid article {
    border-radius: 16px;
}

.page-home .product-shot {
    overflow: visible;
}

.page-home .shot-media {
    border-radius: 16px;
}

.page-home .security-teaser,
.final-cta {
    background:
        radial-gradient(circle at 90% 15%, rgba(38, 116, 225, .2), transparent 30%),
        #141922;
}

.final-cta-inner {
    max-width: 780px;
    margin-inline: auto;
}

.final-cta h2 {
    font-size: clamp(43px, 5vw, 68px);
    line-height: 1;
    color: var(--white);
}

/* The refresh flipped this section to a dark ground, so the copy has to invert too. */
.final-cta p {
    color: #c9cdd6;
}

/* About: replace abstract dashboard with a real team moment */
.ab-hero {
    background: var(--surface);
}

.ab-hero::before {
    display: none;
}

.ab-hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
}

.ab-human-photo {
    min-height: 590px;
    padding: 0;
    overflow: hidden;
    background: #d5d9e0;
    border-radius: 22px 22px 4px 22px;
    box-shadow: 0 32px 76px rgba(25, 31, 41, .16);
}

.ab-human-photo::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, transparent 48%, rgba(15, 19, 24, .7) 100%);
}

.ab-human-photo > img {
    width: 100%;
    height: 590px;
    object-fit: cover;
    object-position: 46% center;
}

.ab-human-photo figcaption {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 27px;
    left: 28px;
    color: #fff;
}

.ab-human-photo figcaption span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .65);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.ab-human-photo figcaption strong {
    display: block;
    max-width: 25ch;
    font-family: var(--font-display);
    font-size: clamp(23px, 2.2vw, 31px);
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.14;
}

/* Contact: a real person before the form */
.cp-hero {
    background: var(--surface);
}

.cp-hero::before {
    display: none;
}

.cp-human-photo {
    position: relative;
    min-height: 610px;
    margin: 0;
    overflow: hidden;
    background: #d8dce3;
    border-radius: 22px 22px 4px 22px;
    box-shadow: 0 32px 76px rgba(25, 31, 41, .16);
}

.cp-human-photo::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, transparent 44%, rgba(12, 16, 22, .72) 100%);
}

.cp-human-photo > img {
    width: 100%;
    height: 610px;
    object-fit: cover;
    object-position: center 42%;
}

.cp-human-photo figcaption {
    position: absolute;
    z-index: 2;
    right: 27px;
    bottom: 26px;
    left: 27px;
    color: #fff;
}

.cp-human-photo figcaption > span {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cp-human-photo figcaption strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(25px, 2.4vw, 34px);
    font-weight: 500;
    letter-spacing: -.025em;
    line-height: 1.08;
}

.cp-human-photo figcaption small {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, .65);
    font-size: 11px;
}

.cp-main {
    background: var(--surface-2);
}

.cp-form {
    border-radius: 18px;
    box-shadow: 0 20px 56px rgba(24, 38, 58, .07);
}

@media (max-width: 1024px) {
    :root {
        --shell: min(100% - 40px, 900px);
    }

    .page-home {
        --hero-inset: 14px;
    }

    .page-home .hero {
        min-height: auto;
        padding: calc(var(--header-h) + 40px) 0 0;
        border-radius: 28px;
    }

    .page-home .hero-shell {
        gap: 52px;
    }

    .ab-hero-grid,
    .cp-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .page-home .hero h1 {
        font-size: clamp(48px, 6vw, 68px);
    }

    .ab-human-photo,
    .ab-human-photo > img,
    .cp-human-photo,
    .cp-human-photo > img {
        min-height: 530px;
        height: 530px;
    }}

@media (max-width: 860px) {
    :root {
        --shell: min(100% - 32px, 680px);
        --sec: 82px;
    }

    :root {
        --header-h: 64px;
    }

    .page-home {
        --hero-inset: 12px;
    }

    .page-home .hero {
        min-height: auto;
        padding: calc(var(--header-h) + 32px) 0 0;
        border-radius: 28px;
    }

    .page-home .hero-shell {
        gap: 40px;
    }

    .ab-hero-grid,
    .cp-hero-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .page-home .hero-copy,
    .ab-hero-copy,
    .cp-hero-copy {
        max-width: 650px;
    }

    .page-home .hero h1 {
        max-width: none;
    }

    .ab-human-photo,
    .ab-human-photo > img,
    .cp-human-photo,
    .cp-human-photo > img {
        min-height: 620px;
        height: 620px;
    }

    .ab-hero-stage {
        width: 100%;
    }

    .ab-hero,
    .cp-hero {
        padding-top: 110px;
    }}

@media (max-width: 560px) {
    :root {
        --shell: calc(100vw - 28px);
        --sec: 72px;
    }

    .brand img {
        width: 132px;
    }

    .page-home {
        --hero-inset: 10px;
    }

    .page-home .hero {
        min-height: auto;
        padding: calc(var(--header-h) + 24px) 0 0;
        border-radius: 28px;
    }

    .page-home .hero h1,
    .ab-hero-copy h1,
    .cp-hero-copy h1,
    .fp-hero h1,
    .sp-hero h1,
    .rp-hero h1 {
        font-size: clamp(41px, 12.4vw, 53px);
        letter-spacing: -.045em;
        line-height: .98;
    }

    .page-home .hero h1 {
        max-width: none;
        font-size: clamp(36px, 9.8vw, 44px);
        line-height: 1.02;
    }

    .page-home .hero-lead {
        font-size: 16px;
    }

    .page-home .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .ab-human-photo,
    .cp-human-photo {
        border-radius: 16px 16px 3px 16px;
    }

    .page-home .trust-strip {
        padding-block: 38px;
    }

    .ab-hero,
    .cp-hero {
        padding: 102px 0 66px;
    }

    .ab-human-photo,
    .ab-human-photo > img {
        min-height: 440px;
        height: 440px;
    }

    .ab-human-photo > img {
        object-position: 43% center;
    }

    .cp-human-photo,
    .cp-human-photo > img {
        min-height: 500px;
        height: 500px;
    }

    .ab-human-photo figcaption,
    .cp-human-photo figcaption {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .cp-hero-facts {
        display: none;
    }

    .final-cta h2 {
        font-size: 43px;
    }}

/* ==========================================================================
   Touch targets — WCAG 2.5.8 applies regardless of pointer type, so this is
   keyed to width rather than (pointer: coarse)
   ========================================================================== */

@media (max-width: 860px) {
    /* These all measured 18–34px tall on a phone; 44px is the minimum
       comfortable tap area, added as padding so the visual rhythm holds. */
    .footer-nav a,
    .footer-bottom a,
    .footer-bottom button,
    .inline-link,
    .article-link,
    .rp-card-link,
    .cp-contact-list a,
    .pa-back-link,
    .pa-meta a,
    .priority-foot a,
    .article-aside a,
    .article-back,
    .mm-contact a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }

    /* Sticky section jump navs and the legal table of contents */
    .lp-nav a {
        display: flex;
        align-items: center;
        min-height: 44px;
    }

    .footer-nav a {
        margin-bottom: 0;
    }

    .brand,
    .footer-brand > a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    /* Segmented channel switcher (home) and section jump navs */
    .channel-tabs button,
    .fp-section-nav a,
    .sp-section-nav a {
        min-height: 44px;
    }
}
/* ==========================================================================
   Display typography finishing
   ========================================================================== */

/* Even out ragged line breaks in display type. Both properties are progressive:
   browsers without support keep the normal greedy wrap, nothing shifts. */
h1,
main h2,
.final-cta h2 {
    text-wrap: balance;
}

/* Body copy wants the looser rule -- balance is capped at a few lines and is the
   wrong goal for paragraphs; pretty only avoids orphans. */
.hero-lead,
.sp-hero-copy > p,
.fp-hero > .shell > p,
.ab-hero-copy > p,
.cp-hero-copy > p,
.rp-hero-copy > p,
.pa-hero > .shell > p {
    text-wrap: pretty;
}

/* ==========================================================================
   Tabular figures

   Money, counts, percentages, times, scores and record IDs across the product
   surfaces. Two reasons this is mono rather than just tabular Inter: the digits
   align into columns in the tables and KPI rows, and the mono texture is what
   actually signals "engineered" in a data product. Labels and prose stay in Inter
   — mono on running text would read as a terminal, not a product.
   ========================================================================== */

.metric-card strong,
.metric-card small b,
.card-head > div > strong,
.chart-y span,
.risk-ring strong,
.risk-legend b,
.ui-metrics b,
.ui-metrics em,
.ui-risk .ui-card-head strong,
.ui-risk ul li b,
.ui-col article div b,
.ui-phone-list article div b,
.ch-reply div strong,
.ui-col header b,
.ui-table .ui-tr:not(.head) span:not(:first-child),
.ui-phone-bar span,
.ui-col article strong,
.account-logo,
.account-name strong,
.account-row > b,
.channel-context strong,
.channel-context span b,
.ch-head time,
.ch-avatar,
.ch-head > div > strong,
.ch-body p b,
.ch-bubble small,
.channel-promise strong,
.kpi-grid article > strong,
.kpi-donut span,
.team-row .rank,
.team-row .member i,
.team-row span:not(.member) small,
.team-row span:not(.member) > b,
.team-row .score,
.package-price strong,
.package-activation strong,
.package-capacity strong,
.visual-tile span,
.visual-ring strong {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    /* JetBrains Mono sets wide by default; this keeps it inside the same boxes the
       proportional type occupied. */
    letter-spacing: -.03em;
}
