@font-face {
    font-family: "Vazirmatn";
    src: url("assets/fonts/Vazirmatn-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("assets/fonts/Vazirmatn-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("assets/fonts/Vazirmatn-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Pinar Kayno";
    src: url("PINAR-DS3-MEDIUM.TTF") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

:root {
    color-scheme: dark;
    --background: #0b292b;
    --background-deep: #082225;
    --surface: #123437;
    --surface-raised: #173e41;
    --surface-soft: #0e2c2f;
    --primary: #1cbec0;
    --primary-strong: #50d5d6;
    --primary-dark: #176d70;
    --primary-ink: #041719;
    --secondary: #82dfe0;
    --text: #edf4f7;
    --text-muted: #b5c5cc;
    --text-dim: #83979f;
    --line: #31575a;
    --line-soft: #214447;
    --success: #63c49a;
    --warning: #d7aa62;
    --error: #e07e89;
    --container: 1180px;
    --header-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    direction: ltr;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    direction: rtl;
    margin: 0;
    max-width: 100%;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--background);
    color: var(--text);
    font-family: "Vazirmatn", Tahoma, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    text-align: right;
}

.kayno-word {
    font-family: "Pinar Kayno", "Vazirmatn", Tahoma, sans-serif;
    font-synthesis: none;
    font-weight: 500;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    display: block;
    width: 1.2em;
    height: 1.2em;
    stroke-width: 1.8;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
.brand-name,
.button,
.kicker {
    letter-spacing: 0;
}

h1,
h2,
h3 {
    font-weight: 700;
}

h2 {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.35;
}

h3 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.5;
}

p {
    color: var(--text-muted);
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: 112px;
}

.section-heading {
    max-width: 730px;
    margin-bottom: 50px;
}

.section-heading p,
.capability-intro p,
.policies-copy > p,
.faq-heading p {
    max-width: 660px;
    margin-bottom: 0;
    font-size: 18px;
}

.kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.kicker::before {
    width: 28px;
    height: 2px;
    background: currentColor;
    content: "";
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 10px;
    right: 10px;
    padding: 10px 14px;
    transform: translateY(-150%);
    border-radius: 6px;
    background: var(--primary);
    color: var(--primary-ink);
    font-weight: 700;
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 2px solid var(--primary-strong);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(7, 37, 39, .54);
    transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled,
.site-header.is-scrolled,
.site-header.menu-active {
    border-color: var(--line-soft);
    background: rgba(7, 37, 39, .96);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    flex: 0 0 auto;
}

.brand-mark img {
    width: 27px;
    height: auto;
    filter: drop-shadow(0 5px 12px rgba(28, 190, 192, .18));
}

.brand-name {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
}

.brand-name small {
    color: var(--text-dim);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    direction: ltr;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    position: relative;
    padding: 9px 13px;
    color: var(--text-muted);
    font-size: 14px;
    transition: color 150ms ease;
}

.main-nav a::after {
    position: absolute;
    right: 13px;
    bottom: 3px;
    left: 13px;
    height: 1px;
    transform: scaleX(0);
    background: var(--primary);
    content: "";
    transition: transform 150ms ease;
}

.main-nav a:hover,
.main-nav a.active,
.main-nav a.is-active {
    color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.header-actions,
.hero-actions,
.cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button svg {
    width: 18px;
    height: 18px;
}

.button-small {
    min-height: 40px;
    padding-inline: 15px;
    font-size: 13px;
}

.button-primary {
    background: var(--primary);
    color: var(--primary-ink);
}

.button-primary:hover {
    background: var(--primary-strong);
}

.button-secondary {
    border-color: rgba(28, 190, 192, .58);
    background: rgba(23, 109, 112, .2);
    color: var(--text);
}

.button-secondary:hover,
.button-ghost:hover {
    border-color: var(--primary);
    background: rgba(23, 109, 112, .3);
}

.button-ghost {
    border-color: rgba(237, 244, 247, .24);
    background: rgba(8, 42, 44, .46);
    color: var(--text);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface-soft);
    color: var(--text);
    cursor: pointer;
}

.hero {
    position: relative;
    display: flex;
    min-height: calc(100svh - 48px);
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
    background: var(--background-deep);
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    object-position: center;
}

.hero-shade {
    background: rgba(6, 36, 38, .56);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 84px;
}

.hero-copy {
    width: min(100%, 700px);
    margin-right: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 6px 11px;
    border: 1px solid rgba(28, 190, 192, .38);
    border-radius: 999px;
    background: rgba(7, 39, 41, .74);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 500;
}

.status-dot,
.online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(99, 196, 154, .12);
}

.hero h1 {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 2px;
    color: #fff;
    font-size: 78px;
    line-height: 1.2;
}

.hero-logo {
    width: auto;
    height: 72px;
    flex: 0 0 auto;
    filter: drop-shadow(0 12px 25px rgba(28, 190, 192, .2));
}

.hero-tagline {
    margin-bottom: 16px;
    color: var(--text);
    font-size: 29px;
    font-weight: 500;
}

.hero-description {
    max-width: 670px;
    margin-bottom: 30px;
    color: #d2dfe4;
    font-size: 18px;
    line-height: 2;
}

.hero-actions {
    margin-bottom: 34px;
}

.hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin: 0;
    padding: 0;
    color: #cfdae0;
    list-style: none;
}

.hero-signals li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.hero-signals svg {
    color: var(--primary);
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 18px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 7px;
    transform: translateX(-50%);
    color: #b8c8ce;
    font-size: 12px;
}

.platform-section {
    background: var(--background);
}

.product-window {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
    box-shadow: 0 26px 64px rgba(0, 0, 0, .28);
    direction: rtl;
}

.product-topbar {
    display: grid;
    min-height: 58px;
    grid-template-columns: 210px minmax(240px, 1fr) 180px;
    align-items: center;
    gap: 20px;
    padding: 9px 16px;
    border-bottom: 1px solid var(--line-soft);
    background: var(--background-deep);
}

.product-brand,
.product-user,
.product-search {
    display: flex;
    align-items: center;
    gap: 9px;
}

.product-brand {
    color: var(--text);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    direction: ltr;
}

.product-brand svg {
    color: var(--primary);
}

.product-search {
    min-height: 36px;
    padding: 5px 12px;
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    background: #111e24;
    color: var(--text-dim);
    font-size: 12px;
}

.product-user {
    justify-content: flex-end;
    color: var(--text-muted);
    font-size: 12px;
}

.product-body {
    display: grid;
    min-height: 520px;
    grid-template-columns: 190px minmax(0, 1fr);
}

.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 12px;
    border-left: 1px solid var(--line-soft);
    background: #0a171d;
}

.preview-nav {
    display: flex;
    min-height: 40px;
    align-items: center;
    gap: 10px;
    padding: 8px 11px;
    border-radius: 5px;
    color: #93a7af;
    font-size: 12px;
}

.preview-nav svg {
    width: 17px;
    height: 17px;
}

.preview-nav.active {
    background: rgba(23, 109, 112, .3);
    color: var(--text);
}

.product-main {
    padding: 24px;
}

.preview-heading,
.preview-block-title,
.console-header,
.console-summary,
.footer-main,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preview-heading {
    margin-bottom: 20px;
}

.preview-heading > div,
.preview-block-title span,
.preview-block-title small {
    display: block;
}

.preview-heading strong {
    display: block;
    margin-bottom: 2px;
    font-size: 17px;
}

.preview-heading span,
.preview-block-title small {
    color: var(--text-dim);
    font-size: 11px;
}

.preview-chip,
.row-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.preview-chip {
    min-height: 26px;
    padding: 5px 10px;
}

.success {
    color: var(--success);
}

.warning {
    color: var(--warning);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.metric,
.health-chart,
.system-list {
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    background: var(--surface);
}

.metric {
    min-height: 108px;
    padding: 16px;
}

.metric > span {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dim);
    font-size: 11px;
}

.metric strong {
    display: block;
    margin-bottom: 13px;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 24px;
    direction: ltr;
}

.meter {
    height: 4px;
    overflow: hidden;
    background: #26363e;
}

.meter i {
    display: block;
    width: var(--value);
    height: 100%;
    background: var(--primary);
}

.preview-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 12px;
}

.health-chart,
.system-list {
    min-height: 248px;
    padding: 16px;
}

.bars {
    display: flex;
    height: 140px;
    align-items: flex-end;
    gap: 9px;
    padding: 18px 4px 8px;
    border-bottom: 1px solid var(--line-soft);
}

.bars i {
    width: 100%;
    height: var(--height);
    background: var(--primary);
    opacity: .75;
}

.bars i:nth-child(3n) {
    background: var(--success);
}

.chart-legend {
    display: flex;
    gap: 18px;
    padding-top: 12px;
    color: var(--text-dim);
    font-size: 10px;
}

.chart-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.chart-legend i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.legend-online {
    background: var(--primary);
}

.legend-offline {
    background: var(--success);
}

.system-list {
    padding-bottom: 8px;
}

.system-row,
.policy-row {
    display: grid;
    align-items: center;
    border-bottom: 1px solid var(--line-soft);
}

.system-row {
    min-height: 58px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 10px;
}

.system-row:last-child,
.policy-row:last-of-type {
    border-bottom: 0;
}

.os-mark {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid #3a6f86;
    border-radius: 4px;
    background: #123142;
    color: #79c6ee;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.os-mark.linux {
    border-color: #6c6952;
    background: #29291e;
    color: var(--warning);
}

.system-row strong,
.system-row small,
.policy-row strong,
.policy-row small {
    display: block;
}

.system-row strong,
.policy-row strong {
    font-family: "Segoe UI", "Vazirmatn", sans-serif;
    font-size: 11px;
}

.system-row small,
.policy-row small {
    color: var(--text-dim);
    font-size: 9px;
}

.row-status {
    min-height: 21px;
    padding: 4px 7px;
}

.capability-section {
    border-block: 1px solid var(--line-soft);
    background: var(--surface-soft);
}

.capability-layout {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: 76px;
    align-items: start;
}

.capability-intro {
    position: sticky;
    top: calc(var(--header-height) + 32px);
}

.capability-intro h2 {
    font-size: 38px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.text-link svg {
    transition: transform 150ms ease;
}

.text-link:hover svg {
    transform: translateX(-4px);
}

.capability-list {
    border-top: 1px solid var(--line);
}

.capability-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
    padding-block: 30px;
    border-bottom: 1px solid var(--line);
}

.capability-item p {
    margin-bottom: 0;
}

.feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(28, 190, 192, .45);
    border-radius: 6px;
    background: rgba(23, 109, 112, .22);
    color: var(--primary);
}

.feature-icon.green {
    border-color: rgba(99, 196, 154, .4);
    background: rgba(99, 196, 154, .08);
    color: var(--success);
}

.feature-icon.gold {
    border-color: rgba(215, 170, 98, .42);
    background: rgba(215, 170, 98, .08);
    color: var(--warning);
}

.feature-icon.coral {
    border-color: rgba(224, 126, 137, .42);
    background: rgba(224, 126, 137, .08);
    color: var(--error);
}

.architecture-section {
    border-block: 1px solid var(--line-soft);
    background: var(--background-deep);
}

.architecture-heading {
    margin-inline: auto;
    text-align: center;
}

.architecture-heading .kicker {
    justify-content: center;
}

.architecture-flow {
    display: grid;
    grid-template-columns: 1fr 150px 1fr 150px 1fr;
    align-items: stretch;
    margin-top: 58px;
}

.architecture-node {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    text-align: center;
}

.architecture-node.emphasized {
    border-color: rgba(28, 190, 192, .72);
    background: #172a33;
}

.architecture-node > span {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    place-items: center;
    border: 1px solid rgba(28, 190, 192, .42);
    border-radius: 6px;
    color: var(--primary);
}

.architecture-node > span svg {
    width: 28px;
    height: 28px;
}

.architecture-node strong,
.architecture-node small {
    display: block;
}

.architecture-node strong {
    margin-bottom: 5px;
    font-family: "Segoe UI", "Vazirmatn", sans-serif;
    font-size: 17px;
}

.architecture-node small {
    color: var(--text-dim);
}

.architecture-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-dim);
    text-align: center;
}

.architecture-link::before,
.architecture-link::after {
    position: absolute;
    top: 50%;
    width: 32px;
    height: 1px;
    background: var(--line);
    content: "";
}

.architecture-link::before {
    right: 0;
}

.architecture-link::after {
    left: 0;
}

.architecture-link svg {
    color: var(--primary);
}

.architecture-link span {
    max-width: 100px;
    font-size: 11px;
}

.architecture-integration-plane {
    position: relative;
    margin-top: 58px;
    padding-top: 45px;
}

.architecture-integration-plane::before {
    position: absolute;
    top: 0;
    right: 50%;
    width: 1px;
    height: 24px;
    background: var(--line);
    content: "";
}

.integration-plane-label {
    position: absolute;
    top: 24px;
    right: 50%;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--background-deep);
    color: var(--primary);
    font-size: 11px;
    transform: translateX(50%);
    white-space: nowrap;
}

.integration-plane-label svg {
    width: 15px;
    height: 15px;
}

.architecture-integration-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding-top: 28px;
}

.architecture-integration-grid::before {
    position: absolute;
    top: 15px;
    right: 25%;
    left: 25%;
    height: 1px;
    background: var(--line);
    content: "";
}

.architecture-integration-card {
    position: relative;
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.architecture-integration-card::before {
    position: absolute;
    top: -13px;
    right: 50%;
    width: 1px;
    height: 13px;
    background: var(--line);
    content: "";
}

.integration-card-heading {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.integration-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(28, 190, 192, .42);
    border-radius: 5px;
    color: var(--primary);
}

.integration-icon svg {
    width: 21px;
    height: 21px;
}

.integration-card-heading strong,
.integration-card-heading small {
    display: block;
}

.integration-card-heading strong {
    font-family: "Segoe UI", "Vazirmatn", sans-serif;
    font-size: 15px;
    direction: ltr;
    text-align: right;
}

.integration-card-heading small {
    margin-top: 3px;
    color: var(--text-dim);
    font-size: 11px;
}

.integration-protocol {
    padding: 4px 7px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--primary);
    direction: ltr;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 9px;
    white-space: nowrap;
}

.integration-route {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
    gap: 7px;
    align-items: center;
    margin-top: 20px;
    padding: 11px;
    border-block: 1px solid var(--line-soft);
    color: var(--text-muted);
    direction: ltr;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 10px;
    text-align: center;
}

.integration-route span {
    overflow-wrap: anywhere;
}

.integration-route svg {
    width: 15px;
    height: 15px;
    color: var(--primary);
}

.architecture-integration-card p {
    margin: 15px 0 0;
    color: var(--text-muted);
    font-size: 13px;
}

.architecture-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
    border-block: 1px solid var(--line-soft);
}

.architecture-note {
    padding: 24px;
    border-left: 1px solid var(--line-soft);
}

.architecture-note:last-child {
    border-left: 0;
}

.architecture-note strong,
.architecture-note span {
    display: block;
}

.architecture-note strong {
    margin-bottom: 7px;
    color: var(--primary);
}

.architecture-note span {
    color: var(--text-muted);
    font-size: 14px;
}

.policies-section {
    background: var(--surface-soft);
}

.policies-layout {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
    gap: 86px;
    align-items: center;
}

.policies-copy h2 {
    font-size: 38px;
}

.policies-copy {
    text-align: right;
}

.policies-copy .kicker {
    justify-content: flex-start;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.check-list svg {
    width: 18px;
    height: 18px;
    color: var(--success);
}

.policy-console {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0d181e;
    box-shadow: 0 22px 54px rgba(0, 0, 0, .25);
    direction: ltr;
    font-family: "Segoe UI", Arial, sans-serif;
    text-align: left;
}

.console-header {
    min-height: 46px;
    padding-inline: 16px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--text-dim);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    direction: ltr;
}

.console-header > div {
    display: flex;
    gap: 6px;
}

.console-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.console-light.red {
    background: var(--error);
}

.console-light.gold {
    background: var(--warning);
}

.console-light.green {
    background: var(--success);
}

.console-summary {
    padding: 20px;
    border-bottom: 1px solid var(--line-soft);
    background: #111f26;
}

.console-summary small,
.console-summary strong {
    display: block;
}

.console-summary small {
    color: var(--text-dim);
    font-size: 11px;
}

.console-summary strong {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 4px;
}

.policy-row {
    min-height: 72px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    margin-inline: 20px;
}

.policy-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 5px;
    color: var(--primary);
}

.policy-icon svg {
    width: 17px;
    height: 17px;
}

.policy-timeline {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    margin: 18px 20px 20px;
    padding: 14px;
    border: 1px solid rgba(215, 170, 98, .28);
    border-radius: 6px;
    background: rgba(215, 170, 98, .06);
}

.policy-timeline > span {
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--warning);
}

.policy-timeline strong,
.policy-timeline small {
    display: block;
}

.policy-timeline strong {
    font-size: 12px;
}

.policy-timeline small,
.policy-timeline time {
    color: var(--text-dim);
    font-size: 10px;
}

.operations-section {
    border-top: 1px solid var(--line-soft);
    background: var(--background);
}

.operation-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.operation-steps li {
    position: relative;
    min-height: 270px;
    padding: 34px 28px;
    border-left: 1px solid var(--line);
}

.operation-steps li:last-child {
    border-left: 0;
}

.operation-steps li > span {
    position: absolute;
    top: 24px;
    left: 24px;
    color: #536a74;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    direction: ltr;
}

.operation-steps li > svg {
    width: 30px;
    height: 30px;
    margin-bottom: 40px;
    color: var(--primary);
}

.operation-steps p {
    margin-bottom: 0;
    font-size: 14px;
}

.faq-section {
    border-top: 1px solid var(--line-soft);
    background: #092b2d;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    gap: 80px;
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 32px);
}

.faq-heading h2 {
    font-size: 38px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 18px;
    color: var(--text);
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    min-width: 0;
    flex: 1 1 auto;
}

.faq-list summary svg {
    flex: 0 0 auto;
    color: var(--primary);
    transition: transform 160ms ease;
}

.faq-list details[open] summary svg {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 690px;
    margin-bottom: 24px;
    padding-left: 40px;
}

.final-cta {
    padding-block: 72px;
    border-block: 1px solid var(--line);
    background: #153a3c;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-inner h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 34px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding-top: 76px;
    border-top: 1px solid rgba(28, 190, 192, .22);
    background:
        radial-gradient(circle at 10% 15%, rgba(28, 190, 192, .12), transparent 31%),
        linear-gradient(145deg, #0b3033, #061f21 72%);
}

.site-footer::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 8%, var(--primary), transparent 92%);
    content: "";
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(300px, 1.3fr) minmax(150px, .55fr) minmax(280px, 1fr);
    min-height: 0;
    gap: clamp(34px, 4vw, 62px);
    align-items: start;
    padding-bottom: 64px;
}

.footer-main > * {
    min-width: 0;
}

.footer-about {
    min-width: 0;
}

.footer-brand {
    display: flex;
    width: fit-content;
    margin-bottom: 14px;
}

.footer-brand .brand-mark {
    width: 46px;
    height: 46px;
}

.footer-brand .brand-mark img {
    width: 34px;
}

.footer-brand .brand-name {
    font-size: 23px;
}

.footer-parent-label {
    display: flex;
    width: fit-content;
    max-width: 100%;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding: 7px 10px;
    border: 1px solid rgba(28, 190, 192, .3);
    border-radius: 10px;
    background: rgba(23, 109, 112, .16);
    color: #a6cfd1;
    font-size: 12px;
    font-weight: 700;
    box-shadow: inset 0 0 22px rgba(28, 190, 192, .035);
    transition: color 150ms ease, border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.footer-parent-label img {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    object-fit: contain;
}

.footer-parent-label span {
    min-width: 0;
    line-height: 1.6;
}

.footer-parent-label strong {
    color: #e8ffff;
    font-size: 14px;
    font-weight: 800;
}

.footer-parent-label svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    transition: transform 150ms ease;
}

.footer-parent-label:hover {
    color: var(--primary);
    border-color: rgba(28, 190, 192, .58);
    background: rgba(23, 109, 112, .26);
    transform: translateY(-2px);
}

.footer-parent-label:hover svg {
    transform: translate(-2px, -2px);
}

.footer-about h2 {
    max-width: 360px;
    margin-bottom: 12px;
    color: #edf7f7;
    font-size: clamp(17px, 1.5vw, 19px);
    line-height: 1.7;
}

.footer-about h2 small {
    display: inline-flex;
    margin-right: 4px;
    padding: 2px 8px;
    border: 1px solid rgba(28, 190, 192, .28);
    border-radius: 999px;
    background: rgba(23, 109, 112, .2);
    color: #b7e6e7;
    font-size: 10px;
    font-weight: 800;
    vertical-align: middle;
}

.footer-about > p {
    max-width: 360px;
    margin: 0 0 18px;
    color: var(--text-dim);
    font-size: 12px;
    line-height: 1.9;
}

.footer-company-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}

.footer-company-link svg {
    width: 14px;
    height: 14px;
    transition: transform 150ms ease;
}

.footer-company-link:hover svg {
    transform: translate(-2px, -2px);
}

.footer-column h3 {
    margin: 6px 0 22px;
    color: #e8f3f3;
    font-size: 14px;
}

.footer-column h3::after {
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 9px;
    background: var(--primary);
    content: "";
}

.footer-nav {
    display: grid;
    gap: 12px;
}

.footer-nav a {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 7px;
    color: #899da1;
    font-size: 11px;
    transition: color 150ms ease, transform 150ms ease;
}

.footer-nav a::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #315c5f;
    content: "";
    transition: background 150ms ease;
}

.footer-nav a:hover {
    color: #d9e9ea;
    transform: translateX(-3px);
}

.footer-nav a:hover::before {
    background: var(--primary);
}

.footer-contact ul {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact li {
    display: grid;
    min-width: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.footer-contact li > span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(28, 190, 192, .22);
    border-radius: 8px;
    background: rgba(23, 109, 112, .18);
    color: #60bdc0;
}

.footer-contact li > span svg {
    width: 15px;
    height: 15px;
}

.footer-contact a,
.footer-contact small,
.footer-contact strong,
.footer-contact address {
    display: block;
}

.footer-contact a {
    min-width: 0;
    color: #a9babc;
    transition: color 150ms ease;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-contact small {
    margin-bottom: 3px;
    color: #668084;
    font-size: 8px;
}

.footer-contact strong,
.footer-contact address {
    color: inherit;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.footer-contact-entry {
    min-width: 0;
}

.footer-phone-links {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 8px;
}

.footer-phone-links a {
    color: #c4d9da;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.footer-phone-links i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #47777a;
}

.footer-messengers {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(79, 143, 146, .25);
}

.footer-messengers-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-messengers-heading > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(28, 190, 192, .26);
    border-radius: 9px;
    background: rgba(23, 109, 112, .24);
    color: var(--primary);
}

.footer-messengers-heading > span svg {
    width: 16px;
    height: 16px;
}

.footer-messengers-heading small,
.footer-messengers-heading strong {
    display: block;
}

.footer-messengers-heading small {
    margin-bottom: 1px;
    color: #72989a;
    font-size: 8px;
}

.footer-messengers-heading strong {
    color: #d8e8e9;
    font-size: 11px;
    line-height: 1.6;
}

.footer-messenger-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
}

.footer-messenger-card {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 11px;
    border: 1px solid rgba(67, 124, 127, .28);
    border-radius: 10px;
    background: rgba(8, 41, 43, .58);
    transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.footer-messenger-card:hover {
    border-color: rgba(28, 190, 192, .42);
    background: rgba(12, 53, 55, .76);
    transform: translateY(-1px);
}

.footer-contact .footer-messenger-number {
    display: block;
    min-width: 0;
    flex: 1 1 auto;
}

.footer-messenger-number small,
.footer-messenger-number strong {
    display: block;
}

.footer-messenger-number small {
    color: #719395;
    font-size: 8px;
}

.footer-messenger-number strong {
    color: #d5e5e6;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.footer-channel-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-contact .footer-channel {
    display: inline-flex;
    min-height: 27px;
    align-items: center;
    gap: 4px;
    padding: 4px 7px;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: rgba(255, 255, 255, .025);
    font-size: 8px;
    line-height: 1;
    opacity: .88;
    transition: opacity 150ms ease, transform 150ms ease, background 150ms ease;
}

.footer-contact a.footer-channel:hover {
    color: inherit;
    opacity: 1;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .06);
}

.footer-channel svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.footer-channel b {
    color: currentColor;
    font-size: 8px;
    font-weight: 800;
}

.footer-channel.is-eitaa {
    color: #f39a4b;
}

.footer-channel.is-eitaa svg,
.footer-channel.is-telegram svg {
    fill: currentColor;
}

.footer-channel.is-bale {
    color: #54c6a6;
}

.footer-channel.is-bale svg,
.footer-channel.is-whatsapp svg {
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.footer-channel.is-whatsapp {
    color: #4fd17a;
}

.footer-channel.is-telegram {
    color: #55b9ef;
}

.footer-bottom {
    min-height: 70px;
    gap: 8px 24px;
    flex-wrap: wrap;
    border-top: 1px solid #182b30;
    color: #71858d;
    font-size: 11px;
    line-height: 1.8;
}

.footer-bottom a {
    color: #8ab9bb;
    transition: color 150ms ease;
}

.footer-bottom a:hover {
    color: var(--primary);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .desktop-action {
        display: none;
    }

    .product-topbar {
        grid-template-columns: 180px minmax(200px, 1fr) 140px;
    }

    .product-body {
        grid-template-columns: 160px minmax(0, 1fr);
    }

    .preview-content-grid {
        grid-template-columns: 1fr;
    }

    .system-list {
        min-height: auto;
    }

    .capability-layout,
    .policies-layout {
        gap: 52px;
    }

    .architecture-flow {
        grid-template-columns: 1fr 90px 1fr 90px 1fr;
    }

    .architecture-link::before,
    .architecture-link::after {
        width: 18px;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px clamp(36px, 6vw, 64px);
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-contact ul {
        grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, .7fr));
        gap: 20px clamp(24px, 5vw, 54px);
    }

    .footer-messenger-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 64px;
    }

    h2 {
        font-size: 34px;
    }

    .section {
        padding-block: 84px;
    }

    .menu-button {
        display: flex;
    }

    .main-nav {
        position: fixed;
        z-index: 999;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: flex;
        max-height: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        border-bottom: 1px solid transparent;
        background: rgba(7, 37, 39, .98);
        opacity: 0;
        pointer-events: none;
        transition: max-height 220ms ease, opacity 180ms ease, border-color 180ms ease;
    }

    .main-nav.is-open,
    body.menu-open .main-nav {
        max-height: calc(100svh - var(--header-height));
        padding: 12px 24px 24px;
        border-color: var(--line-soft);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        padding: 14px 8px;
        border-bottom: 1px solid var(--line-soft);
        font-size: 16px;
    }

    .main-nav a::after {
        display: none;
    }

    .hero {
        min-height: calc(100svh - 34px);
    }

    .hero h1 {
        font-size: 60px;
    }

    .hero-logo {
        height: 56px;
    }

    .hero-tagline {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }

    .product-topbar {
        grid-template-columns: 170px minmax(0, 1fr);
    }

    .product-user {
        display: none;
    }

    .product-body {
        grid-template-columns: 1fr;
    }

    .product-sidebar {
        display: none;
    }

    .capability-layout,
    .policies-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .capability-intro,
    .faq-heading {
        position: static;
    }

    .architecture-flow {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .architecture-integration-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .architecture-integration-grid::before {
        top: 15px;
        right: 50%;
        bottom: 15px;
        left: auto;
        width: 1px;
        height: auto;
    }

    .architecture-node {
        min-height: 170px;
    }

    .architecture-link {
        min-height: 94px;
    }

    .architecture-link::before,
    .architecture-link::after {
        top: auto;
        right: 50%;
        left: auto;
        width: 1px;
        height: 22px;
    }

    .architecture-link::before {
        top: 0;
    }

    .architecture-link::after {
        bottom: 0;
    }

    .architecture-notes {
        grid-template-columns: 1fr;
    }

    .architecture-note {
        border-bottom: 1px solid var(--line-soft);
        border-left: 0;
    }

    .architecture-note:last-child {
        border-bottom: 0;
    }

    .operation-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .operation-steps li:nth-child(2) {
        border-left: 0;
    }

    .operation-steps li:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main {
        gap: 44px 48px;
        padding: 0 0 52px;
    }

    .footer-main p {
        width: auto;
        order: initial;
    }
}

@media (max-width: 720px) {
    .site-footer {
        padding-top: 56px;
    }

    .footer-main {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
        padding-bottom: 48px;
    }

    .footer-about h2,
    .footer-about > p {
        max-width: 580px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 24px;
    }

    .footer-nav a {
        width: 100%;
    }

    .footer-contact ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 24px;
    }

    .footer-contact li:first-child {
        grid-column: 1 / -1;
    }

    .footer-messenger-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    h2,
    .capability-intro h2,
    .policies-copy h2,
    .faq-heading h2 {
        font-size: 29px;
    }

    .section {
        padding-block: 68px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading p,
    .capability-intro p,
    .policies-copy > p,
    .faq-heading p {
        font-size: 16px;
    }

    .architecture-integration-card {
        overflow: hidden;
        padding: 17px;
    }

    .integration-card-heading {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .integration-icon {
        width: 38px;
        height: 38px;
    }

    .integration-card-heading strong {
        overflow-wrap: anywhere;
        font-size: 13px;
    }

    .integration-protocol {
        grid-column: 2;
        justify-self: start;
    }

    .integration-route {
        gap: 4px;
        padding-inline: 4px;
        font-size: 8px;
    }

    .policies-copy h2 {
        overflow-wrap: anywhere;
        font-size: 27px;
    }

    .brand-name small {
        display: none;
    }

    .hero {
        min-height: calc(100svh - 24px);
    }

    .hero-image {
        object-position: 40% center;
    }

    .hero-shade {
        background: rgba(6, 36, 38, .62);
    }

    .hero-content {
        padding-top: calc(var(--header-height) + 34px);
        padding-bottom: 74px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-logo {
        height: 45px;
    }

    .hero-tagline {
        max-width: 360px;
        font-size: 21px;
    }

    .hero-description {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.9;
    }

    .hero-actions,
    .cta-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button,
    .cta-actions .button {
        width: 100%;
    }

    .hero-signals {
        gap: 10px 16px;
    }

    .hero-signals li {
        font-size: 12px;
    }

    .scroll-cue {
        bottom: 10px;
    }

    .product-topbar {
        grid-template-columns: 1fr;
        min-height: 54px;
    }

    .product-search {
        display: none;
    }

    .product-main {
        padding: 14px;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .metric {
        min-height: 86px;
    }

    .health-chart {
        min-height: 220px;
    }

    .bars {
        gap: 5px;
    }

    .capability-item {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 14px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
    }

    .architecture-heading {
        text-align: right;
    }

    .architecture-heading .kicker {
        justify-content: flex-start;
    }

    .architecture-notes {
        margin-top: 34px;
    }

    .policy-row {
        grid-template-columns: 36px minmax(0, 1fr);
        margin-inline: 14px;
    }

    .policy-row .row-status {
        display: none;
    }

    .policy-timeline {
        grid-template-columns: 9px minmax(0, 1fr);
        margin-inline: 14px;
    }

    .policy-timeline time {
        display: none;
    }

    .operation-steps {
        grid-template-columns: 1fr;
    }

    .operation-steps li,
    .operation-steps li:nth-child(2) {
        min-height: 230px;
        border-bottom: 1px solid var(--line);
        border-left: 0;
    }

    .operation-steps li:last-child {
        border-bottom: 0;
    }

    .faq-list summary {
        min-height: 68px;
        font-size: 15px;
    }

    .faq-list details p {
        padding-left: 0;
        font-size: 14px;
    }

    .final-cta {
        padding-block: 56px;
    }

    .cta-inner h2 {
        font-size: 27px;
    }

    .site-footer {
        padding-top: 48px;
    }

    .footer-main {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-items: flex-start;
        gap: 36px;
        padding-bottom: 40px;
    }

    .footer-main nav {
        width: 100%;
    }

    .footer-bottom {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        justify-content: center;
        padding-block: 14px;
    }
}

@media (max-width: 480px) {
    .footer-brand {
        margin-bottom: 18px;
    }

    .footer-column h3 {
        margin-bottom: 17px;
    }

    .footer-contact ul {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .footer-contact li:first-child {
        grid-column: auto;
    }

    .footer-messenger-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-messenger-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-channel-list {
        justify-content: flex-start;
    }

    .footer-bottom span {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}

/* Product-led hero and dashboard preview */
.hero {
    min-height: min(780px, calc(100svh - 104px));
    background: #08282b;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr);
    gap: clamp(44px, 7vw, 112px);
    align-items: center;
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 86px;
}

.hero-copy {
    width: auto;
}

.hero h1 {
    color: var(--text);
}

.hero-emblem {
    display: grid;
    gap: 14px;
    justify-items: center;
    min-width: 0;
}

.emblem-panel {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 1.08;
    overflow: hidden;
    border: 1px solid #38515d;
    border-radius: 8px;
    background: #103337;
    box-shadow: 16px 16px 0 #061f21;
}

.emblem-topline {
    display: flex;
    justify-content: space-between;
    padding: 15px 17px;
    border-bottom: 1px solid #29414b;
    color: #b8d2da;
    direction: ltr;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: .06em;
}

.emblem-topline span:last-child {
    color: #78929b;
    font-size: 9px;
}

.emblem-core {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    border: 1px solid #6698a8;
    border-radius: 8px;
    background: #102a34;
    color: #9ecedb;
    transform: translate(-50%, -41%);
}

.emblem-core::before,
.emblem-core::after {
    position: absolute;
    inset: 10px;
    border: 1px solid #315767;
    border-radius: 4px;
    content: "";
}

.emblem-core::after {
    inset: 21px;
    border-color: #477d8e;
}

.emblem-core svg {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
}

.emblem-node {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    border: 1px solid #3a5661;
    border-radius: 5px;
    background: #13242b;
    color: #bbccd1;
    direction: ltr;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 10px;
}

.emblem-node svg {
    width: 15px;
    height: 15px;
    color: #81bac8;
}

.emblem-node-server { top: 82px; left: 28px; }
.emblem-node-policy { right: 28px; bottom: 70px; }
.emblem-node-module { bottom: 24px; left: 50%; transform: translateX(-50%); }

.emblem-connection {
    position: absolute;
    z-index: 1;
    height: 1px;
    background: #426d7a;
    transform-origin: right center;
}

.connection-one { top: 133px; left: 103px; width: 115px; transform: rotate(30deg); }
.connection-two { right: 99px; bottom: 121px; width: 130px; transform: rotate(137deg); }
.connection-three { bottom: 85px; left: 50%; width: 78px; transform: rotate(90deg); }

.emblem-caption {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #92aab3;
    font-size: 12px;
}

.emblem-caption svg {
    color: var(--primary);
}

/* Compact control-plane topology used in the hero. */
.emblem-panel {
    position: static;
    width: min(100%, 460px);
    aspect-ratio: auto;
    box-shadow: 14px 14px 0 #0a151a;
    direction: ltr;
    font-family: "Segoe UI", Arial, sans-serif;
}

.emblem-topline {
    min-height: 48px;
    align-items: center;
    padding: 10px 15px;
    letter-spacing: 0;
}

.emblem-topline span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.emblem-topline .online-dot {
    width: 6px;
    height: 6px;
}

.emblem-map {
    padding: 22px 20px 18px;
}

.emblem-server {
    display: flex;
    width: min(100%, 228px);
    min-height: 68px;
    align-items: center;
    gap: 12px;
    margin-inline: auto;
    padding: 11px 14px;
    border: 1px solid #517684;
    border-radius: 6px;
    background: #132832;
}

.emblem-server > span {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid #426b79;
    border-radius: 5px;
    color: #a1d0dc;
}

.emblem-server > span svg {
    width: 21px;
    height: 21px;
}

.emblem-server strong,
.emblem-server small,
.emblem-node strong,
.emblem-node small,
.emblem-status-grid small,
.emblem-status-grid strong {
    display: block;
}

.emblem-server strong {
    color: #f0f7f8;
    font-size: 13px;
}

.emblem-server small {
    margin-top: 2px;
    color: #77939d;
    font-size: 9px;
}

.emblem-bus {
    position: relative;
    display: flex;
    height: 65px;
    align-items: center;
    justify-content: center;
}

.emblem-bus::before,
.emblem-bus::after {
    position: absolute;
    background: #395c68;
    content: "";
}

.emblem-bus::before {
    top: 0;
    bottom: 13px;
    left: 50%;
    width: 1px;
}

.emblem-bus::after {
    right: calc(16.667% - 5px);
    bottom: 13px;
    left: calc(16.667% - 5px);
    height: 1px;
}

.emblem-bus span {
    position: relative;
    z-index: 1;
    padding: 3px 8px;
    border: 1px solid #34535e;
    border-radius: 4px;
    background: #0d1b21;
    color: #7ca9b7;
    font-size: 8px;
}

.emblem-node-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.emblem-node {
    position: relative;
    z-index: auto;
    display: flex;
    min-width: 0;
    min-height: 108px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 12px 7px;
    border-color: #314b56;
    background: #112129;
    text-align: center;
}

.emblem-node::before {
    position: absolute;
    top: -14px;
    left: 50%;
    width: 1px;
    height: 14px;
    background: #395c68;
    content: "";
}

.emblem-node > svg {
    width: 20px;
    height: 20px;
    margin-bottom: 8px;
}

.emblem-node strong {
    font-size: 10px;
}

.emblem-node small {
    margin-top: 3px;
    color: #718891;
    font-size: 8px;
}

.emblem-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #29414b;
    background: #0a171d;
}

.emblem-status-grid > div {
    min-width: 0;
    padding: 12px 10px;
    border-right: 1px solid #29414b;
}

.emblem-status-grid > div:last-child {
    border-right: 0;
}

.emblem-status-grid small {
    color: #718891;
    font-size: 8px;
}

.emblem-status-grid strong {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    color: #d5e4e8;
    font-size: 10px;
}

.product-window {
    direction: ltr;
    border-color: #36505b;
    background: #0a292c;
    box-shadow: 0 24px 54px rgba(0, 0, 0, .26);
    color: #e8f0f2;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.35;
}

.product-topbar {
    min-height: 52px;
    grid-template-columns: 116px minmax(280px, 560px) minmax(190px, 1fr);
    gap: 14px;
    padding: 7px 18px;
    border-bottom-color: #1c3038;
    background: #082326;
}

.product-topbar-start,
.product-user {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #eef7f8;
    font-size: 13px;
}

.product-topbar-start svg,
.product-user svg {
    width: 19px;
    height: 19px;
    color: #c1d6dc;
}

.product-user {
    justify-content: flex-end;
    color: #d9eaee;
    font-size: 12px;
    font-weight: 600;
}

.product-search {
    justify-self: stretch;
    min-height: 34px;
    border-color: #495e67;
    border-radius: 5px;
    background: #172229;
    color: #71828a;
    font-size: 12px;
}

.product-body {
    min-height: 704px;
    grid-template-columns: 208px minmax(0, 1fr);
}

.product-sidebar {
    gap: 1px;
    padding: 13px 8px;
    border-right: 1px solid #20343c;
    border-left: 0;
    background: #0a2c2f;
}

.preview-server {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 4px 9px 14px;
    color: #f1f7f8;
    font-size: 12px;
    font-weight: 600;
}

.preview-server svg {
    width: 26px;
    height: 26px;
    color: #d3e5e8;
}

.preview-server span,
.preview-server small {
    display: block;
}

.preview-server small {
    margin-top: 3px;
    color: #9fb8c0;
    font-size: 9px;
    font-weight: 400;
}

.preview-nav {
    min-height: 32px;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 0;
    color: #c0d1d5;
    font-size: 12px;
}

.preview-nav svg {
    width: 16px;
    height: 16px;
}

.preview-nav.active {
    background: #34454c;
    color: #ffffff;
}

.product-main {
    padding: 22px 18px 20px;
    background: #0d3033;
}

.dashboard-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
    padding: 16px;
    border: 1px solid #39525d;
    border-radius: 7px;
    background: #123639;
}

.dashboard-titlebar h3,
.panel-heading h4 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
}

.dashboard-titlebar p,
.panel-heading p {
    margin: 4px 0 0;
    color: #86c5de;
    font-size: 11px;
}

.dashboard-actions {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #8dc3d9;
    font-size: 10px;
    white-space: nowrap;
}

.dashboard-actions button {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    border: 0;
    border-radius: 5px;
    background: #8dc4d5;
    color: #071116;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
}

.dashboard-actions button svg { width: 16px; height: 16px; }

.preview-chip.neutral,
.amber-outline {
    min-height: 24px;
    border-color: #75c3dd;
    color: #75c3dd;
}

.amber-outline { border-color: #d9a94f; color: #e2b35a; }

.dashboard-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.dashboard-metric {
    position: relative;
    min-height: 130px;
    padding: 18px 15px 14px;
    border: 1px solid #38515b;
    border-radius: 7px;
    background: #122027;
}

.dashboard-metric-head {
    display: flex;
    min-height: 58px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-metric-head > div > span {
    display: block;
    color: #8ec7df;
    font-size: 11px;
}

.dashboard-metric-head > div > strong {
    display: block;
    margin-top: 7px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
}

.metric-icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
}

.metric-icon svg {
    width: 19px;
    height: 19px;
}

.metric-icon.cyan { background: #4d93a8; }
.metric-icon.blue { background: #5f87b6; }
.metric-icon.violet { background: #7e6aac; }
.metric-icon.amber { background: #ad823b; }

.dashboard-metric p {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 12px 0 8px;
    color: #9ccbdd;
    font-size: 10px;
}

.dashboard-metric p b { color: #e4eff2; }

.dashboard-meter,
.status-progress > span {
    display: block;
    height: 5px;
    overflow: hidden;
    background: #566a72;
}

.dashboard-meter i,
.status-progress > span i {
    display: block;
    width: var(--value);
    height: 100%;
    background: #7ec1d4;
}

.dashboard-meter.blue i { background: #6a9ad1; }
.dashboard-meter.amber i { background: #d7aa59; }
.dashboard-meter.muted i,
.status-progress > span.muted i { background: #50626b; }

.dashboard-middle-grid,
.dashboard-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.82fr) minmax(300px, .92fr);
    gap: 12px;
}

.dashboard-bottom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
}

.dashboard-panel {
    min-width: 0;
    border: 1px solid #38515b;
    border-radius: 7px;
    background: #122027;
}

.trend-panel,
.status-panel { min-height: 320px; padding: 18px; }

.compact-panel { min-height: 166px; padding: 16px; }

.panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.panel-heading h4 { font-size: 16px; font-weight: 600; }
.panel-heading p { font-size: 10px; }

.time-segment {
    display: flex;
    overflow: hidden;
    border: 1px solid #38515b;
    border-radius: 5px;
    color: #7ec6dc;
    font-size: 10px;
}

.time-segment span,
.time-segment b { padding: 8px 11px; font-weight: 600; }
.time-segment b { background: #80bdd0; color: #071217; }

.line-chart {
    position: relative;
    height: 210px;
    margin-top: 12px;
    overflow: hidden;
}

.line-grid {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: #40555e;
}

.grid-one { top: 25%; }
.grid-two { top: 53%; }
.grid-three { top: 81%; }

.line-chart svg {
    position: absolute;
    inset: 0 0 22px;
    width: 100%;
    height: calc(100% - 22px);
    overflow: visible;
}

.line-chart path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
}

.line-reporting { stroke: #86c9d7; }
.line-successful { stroke: #72a7e1; }
.line-attention { stroke: #d9a54c; }

.chart-dates {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    color: #bed3d9;
    font-size: 9px;
}

.dashboard-legend,
.status-key {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 5px;
    color: #c8d9de;
    font-size: 10px;
}

.dashboard-legend span,
.status-key span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dashboard-legend i,
.status-key i { width: 8px; height: 8px; border-radius: 50%; }
.legend-cyan { background: #86c9d7; }
.legend-blue { background: #72a7e1; }
.legend-amber { background: #d9a54c; }

.status-progress {
    padding: 19px 0 16px;
    border-bottom: 1px solid #39515a;
}

.status-progress:last-of-type { border-bottom: 0; }

.status-progress > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #ffffff;
    font-size: 11px;
}

.status-progress b { font-size: 16px; }

.status-progress p {
    margin: 3px 0 9px;
    color: #8ec6dd;
    font-size: 10px;
}

.status-progress > span.violet i { background: #9497d0; }

.status-key { margin-top: 18px; font-size: 9px; }

.module-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #7fc4df;
    font-size: 10px;
    font-weight: 600;
}

.module-link svg { width: 14px; height: 14px; }

.stack-bars,
.module-bars {
    display: flex;
    height: 72px;
    align-items: end;
    gap: 16px;
    padding: 13px 12px 0;
    border-bottom: 1px solid #40555e;
}

.stack-bars i,
.module-bars i {
    position: relative;
    display: block;
    width: 22px;
    height: calc(var(--healthy) + var(--attention));
    background: #86c2d1;
}

.stack-bars i::after,
.module-bars i::after {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: var(--attention);
    background: #d8a857;
    content: "";
}

.module-bars { justify-content: center; gap: 32px; }

.module-bars i {
    width: 76px;
    height: var(--success);
    background: #86c2d1;
}

.module-bars i::after { height: var(--attention); }

@media (max-width: 960px) {
    .hero { min-height: auto; }
    .hero-content { grid-template-columns: 1fr; padding-bottom: 92px; }
    .hero-emblem { width: min(100%, 460px); justify-self: center; }
    .dashboard-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dashboard-middle-grid { grid-template-columns: 1fr; }
    .status-panel { min-height: 0; }
    .product-body { min-height: 0; }
}

@media (max-width: 860px) {
    .product-topbar { grid-template-columns: 110px minmax(0, 1fr); }
    .product-user { display: none; }
    .product-body { grid-template-columns: 1fr; }
    .product-sidebar { display: none; }
}

@media (max-width: 600px) {
    .hero-content { gap: 34px; padding-top: calc(var(--header-height) + 34px); }
    .hero-copy,
    .hero-copy h1,
    .hero-tagline,
    .hero-description,
    .hero-signals { min-width: 0; max-width: 100%; }
    .hero-tagline,
    .hero-description { overflow-wrap: anywhere; white-space: normal; }
    .hero-emblem { width: min(100%, 350px); }
    .emblem-panel { box-shadow: 9px 9px 0 #0a151a; }
    .emblem-node-server { top: 74px; left: 14px; }
    .emblem-node-policy { right: 14px; bottom: 67px; }
    .product-main { padding: 10px; }
    .dashboard-titlebar { align-items: flex-start; flex-direction: column; padding: 13px; }
    .dashboard-actions { width: 100%; justify-content: space-between; }
    .dashboard-metric-grid,
    .dashboard-bottom-grid { grid-template-columns: 1fr; }
    .trend-panel,
    .status-panel { padding: 13px; }
    .dashboard-titlebar h3 { font-size: 18px; }
    .dashboard-actions small { display: none; }
    .line-chart { height: 178px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Brand-led feature rail in the first viewport. */
.hero-shade {
    background:
        linear-gradient(to left, rgba(6, 40, 42, .95) 0%, rgba(6, 40, 42, .84) 48%, rgba(6, 40, 42, .67) 100%),
        rgba(6, 38, 40, .34);
}

.hero-feature-panel {
    position: relative;
    width: min(100%, 460px);
    min-width: 0;
    justify-self: end;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(28, 190, 192, .52);
    border-radius: 14px;
    background: rgba(10, 45, 47, .92);
    box-shadow: 14px 14px 0 rgba(4, 25, 27, .78), 0 26px 70px rgba(0, 0, 0, .2);
    backdrop-filter: blur(12px);
}

.hero-feature-panel::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    content: "";
}

.feature-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.feature-panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 6px;
    color: #86bec1;
    font-size: 11px;
    font-weight: 700;
}

.feature-panel-kicker svg {
    width: 14px;
    height: 14px;
}

.feature-panel-heading h2 {
    max-width: 300px;
    margin: 0;
    color: #f1f8f8;
    font-size: 19px;
    line-height: 1.55;
}

.feature-panel-control {
    display: inline-flex;
    min-width: 70px;
    min-height: 34px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 2px;
    padding: 6px 10px;
    border: 1px solid rgba(130, 185, 187, .3);
    border-radius: 999px;
    background: rgba(23, 109, 112, .2);
    color: #b9d4d5;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.feature-panel-control:hover,
.feature-panel-control[aria-pressed="true"] {
    border-color: rgba(80, 213, 214, .68);
    background: rgba(23, 109, 112, .38);
    color: #ffffff;
}

.feature-panel-control svg {
    width: 13px;
    height: 13px;
}

.feature-rail {
    position: relative;
    height: 304px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-block: 1px solid rgba(28, 190, 192, .16);
    outline-offset: -2px;
    scrollbar-color: rgba(80, 213, 214, .68) transparent;
    scrollbar-width: thin;
    scroll-behavior: auto;
    touch-action: pan-y;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.feature-rail::-webkit-scrollbar {
    width: 5px;
}

.feature-rail::-webkit-scrollbar-track {
    background: transparent;
}

.feature-rail::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(80, 213, 214, .62);
}

.feature-rail-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-rail-group {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-rail-group li {
    display: grid;
    min-height: 78px;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 11px 12px;
    border: 1px solid rgba(28, 190, 192, .24);
    border-radius: 9px;
    background: linear-gradient(120deg, rgba(23, 109, 112, .28), rgba(12, 31, 34, .82) 58%);
}

.rail-feature-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(80, 213, 214, .48);
    border-radius: 8px;
    background: rgba(23, 109, 112, .3);
    color: #79b7ba;
}

.rail-feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-rail-group strong,
.feature-rail-group small {
    display: block;
}

.feature-rail-group strong {
    margin-bottom: 2px;
    color: #eff7f7;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
}

.feature-rail-group small {
    color: #9db6b8;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.65;
}

.feature-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #88bec1;
    font-size: 12px;
    font-weight: 700;
}

.feature-panel-link svg {
    width: 15px;
    height: 15px;
    transition: transform 160ms ease;
}

.feature-panel-link:hover {
    color: #ffffff;
}

.feature-panel-link:hover svg {
    transform: translateX(-4px);
}

@media (max-width: 960px) {
    .hero-feature-panel {
        width: min(100%, 540px);
        justify-self: center;
    }
}

@media (max-width: 600px) {
    .hero-feature-panel {
        width: 100%;
        padding: 16px;
        border-radius: 12px;
        box-shadow: 8px 8px 0 rgba(4, 15, 17, .7);
    }

    .feature-panel-heading {
        gap: 10px;
    }

    .feature-panel-heading h2 {
        font-size: 17px;
    }

    .feature-panel-control {
        min-width: 34px;
        width: 34px;
        padding: 0;
    }

    .feature-panel-control span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .feature-rail {
        height: 288px;
    }

    .feature-rail-group li {
        min-height: 76px;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .rail-feature-icon {
        width: 38px;
        height: 38px;
    }

    .feature-rail-group strong {
        font-size: 13px;
    }

    .feature-rail-group small {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-panel-control {
        display: none;
    }

    .feature-rail {
        overflow-y: auto;
        -webkit-mask-image: none;
        mask-image: none;
        scrollbar-color: var(--primary) transparent;
        scrollbar-width: thin;
    }

    .feature-rail-group[aria-hidden="true"] {
        display: none;
    }
}

/* Interactive application-control demo. */
.policy-demo {
    --demo-bleed: clamp(0px, calc((100vw - var(--container)) / 2 - 24px), 80px);
    position: relative;
    width: calc(100% + var(--demo-bleed) + var(--demo-bleed));
    margin-inline: calc(0px - var(--demo-bleed));
    margin-bottom: clamp(92px, 10vw, 132px);
    padding: clamp(26px, 4vw, 44px);
    overflow: hidden;
    border: 1px solid rgba(28, 190, 192, .34);
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 48%, rgba(28, 190, 192, .13), transparent 34%),
        linear-gradient(145deg, #12383b, #082426 72%);
    box-shadow: 0 28px 78px rgba(0, 0, 0, .22);
}

.policy-demo::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(28, 190, 192, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 190, 192, .04) 1px, transparent 1px);
    background-size: 32px 32px;
    content: "";
    pointer-events: none;
}

.policy-demo > * {
    position: relative;
    z-index: 1;
}

.policy-demo-heading {
    display: grid;
    grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
    gap: clamp(34px, 5vw, 68px);
    align-items: stretch;
    margin-bottom: 48px;
    direction: rtl;
}

.policy-demo-intro {
    align-self: center;
}

.policy-demo-heading h2 {
    max-width: 720px;
    margin-bottom: 12px;
    font-size: clamp(30px, 3.2vw, 44px);
}

.policy-demo-heading p {
    max-width: 680px;
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
}

.policy-demo-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 7px 11px;
    border: 1px solid rgba(28, 190, 192, .36);
    border-radius: 999px;
    background: rgba(23, 109, 112, .26);
    color: #91c1c4;
    font-size: 11px;
    font-weight: 700;
}

.policy-demo-live svg {
    width: 15px;
    height: 15px;
}

.policy-demo-guide {
    position: relative;
    align-self: stretch;
    padding: 20px;
    border: 1px solid rgba(80, 163, 168, .52);
    border-right: 3px solid var(--primary);
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(23, 109, 112, .52), rgba(9, 42, 44, .94) 70%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .03);
}

.policy-demo-guide::after {
    position: absolute;
    right: 31px;
    bottom: -49px;
    width: 1px;
    height: 48px;
    background: linear-gradient(var(--primary), transparent);
    content: "";
}

.policy-demo-guide-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(105, 179, 183, .2);
}

.policy-demo-guide-heading > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(108, 183, 187, .48);
    border-radius: 11px;
    background: rgba(23, 109, 112, .42);
    color: #9bd0d3;
}

.policy-demo-guide-heading > span svg {
    width: 21px;
    height: 21px;
}

.policy-demo-guide-heading small,
.policy-demo-guide-heading strong {
    display: block;
}

.policy-demo-guide-heading small {
    margin-bottom: 2px;
    color: #78aeb1;
    font-size: 10px;
    font-weight: 700;
}

.policy-demo-guide-heading strong {
    color: #f0f8f8;
    font-size: 15px;
}

.policy-demo-steps {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.policy-demo-steps li {
    display: grid;
    min-height: 58px;
    grid-template-columns: 32px minmax(0, 1fr) 22px;
    gap: 10px;
    align-items: center;
    padding: 9px 10px;
    border: 1px solid rgba(76, 143, 148, .2);
    border-radius: 9px;
    background: rgba(7, 39, 41, .62);
}

.policy-demo-guide.is-step-ready .policy-demo-steps li {
    opacity: 0;
    transform: translateX(42px);
}

.policy-demo-guide.is-step-ready.is-step-visible .policy-demo-steps li {
    animation: policy-guide-step-in 820ms cubic-bezier(.18, .72, .2, 1) forwards;
}

.policy-demo-guide.is-step-ready.is-step-visible .policy-demo-steps li:nth-child(1) {
    animation-delay: 180ms;
}

.policy-demo-guide.is-step-ready.is-step-visible .policy-demo-steps li:nth-child(2) {
    animation-delay: 500ms;
}

.policy-demo-guide.is-step-ready.is-step-visible .policy-demo-steps li:nth-child(3) {
    animation-delay: 820ms;
}

@keyframes policy-guide-step-in {
    0% {
        opacity: 0;
        transform: translateX(42px);
    }

    68% {
        opacity: 1;
        transform: translateX(-3px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.policy-demo-steps b {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #061517;
    font-size: 11px;
    font-weight: 800;
}

.policy-demo-steps span,
.policy-demo-steps strong,
.policy-demo-steps small {
    display: block;
}

.policy-demo-steps strong {
    color: #e6f1f1;
    font-size: 11px;
}

.policy-demo-steps small {
    margin-top: 2px;
    color: #78999c;
    font-size: 8px;
    line-height: 1.6;
}

.policy-demo-steps li > svg {
    width: 18px;
    height: 18px;
    color: #72aeb2;
}

.policy-demo-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    direction: rtl;
}

.policy-monitor {
    position: relative;
    min-width: 0;
    padding-top: 38px;
}

.monitor-action-badge {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 12px;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    gap: 7px;
    padding: 5px 10px 5px 7px;
    border: 1px solid rgba(79, 159, 164, .5);
    border-radius: 999px;
    background: #123034;
    color: #b9d8da;
    font-size: 9px;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
}

.monitor-action-badge b {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: #5fa6aa;
    color: #061416;
    font-size: 9px;
}

.monitor-action-badge svg {
    width: 13px;
    height: 13px;
    color: #83bec1;
}

.employee-badge {
    border-color: rgba(99, 196, 154, .42);
    background: #123028;
    color: #bee0d0;
}

.employee-badge b {
    background: #69bc96;
}

.employee-badge svg {
    color: #83cba9;
}

.monitor-shell {
    position: relative;
    overflow: hidden;
    border: 10px solid #26393d;
    border-bottom-width: 14px;
    border-radius: 18px 18px 11px 11px;
    background: #08272a;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .34), inset 0 0 0 1px #344b50;
}

.monitor-shell::after {
    position: absolute;
    right: 50%;
    bottom: -9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #5d7c80;
    content: "";
}

.monitor-topbar {
    display: grid;
    min-height: 50px;
    grid-template-columns: 78px minmax(0, 1fr) 100px;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-bottom: 1px solid #203439;
    background: #0b2d30;
    color: #dce9ea;
    direction: ltr;
    font-size: 11px;
}

.monitor-topbar strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    direction: rtl;
    font-size: 13px;
}

.monitor-topbar strong svg {
    width: 16px;
    height: 16px;
    color: #75b1b4;
}

.monitor-topbar > span {
    overflow: hidden;
    color: #759195;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 9px;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.monitor-window-dots {
    display: flex;
    gap: 5px;
}

.monitor-window-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3c555a;
}

.monitor-window-dots i:first-child {
    background: #1cbec0;
}

.monitor-screen {
    min-height: 456px;
    padding: 20px;
    background: linear-gradient(150deg, #0e2024, #0a171a);
    direction: rtl;
}

.monitor-screen-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.monitor-screen-heading small,
.monitor-screen-heading h3 {
    display: block;
}

.monitor-screen-heading small {
    margin-bottom: 2px;
    color: #6e9fa2;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 9px;
    letter-spacing: .04em;
}

.monitor-screen-heading h3 {
    margin: 0;
    color: #f0f7f7;
    font-size: 16px;
}

.screen-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 9px;
    border: 1px solid rgba(28, 190, 192, .3);
    border-radius: 999px;
    color: #8bb6b9;
    font-size: 9px;
    white-space: nowrap;
}

.screen-status i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #67c69d;
    box-shadow: 0 0 0 3px rgba(103, 198, 157, .1);
}

.policy-zones {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.app-dropzone {
    min-width: 0;
    min-height: 334px;
    padding: 12px;
    border: 1px solid #294247;
    border-radius: 9px;
    background: rgba(8, 45, 47, .72);
    transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.blocked-zone {
    border-style: dashed;
    border-color: rgba(210, 106, 116, .38);
    background: rgba(67, 27, 31, .14);
}

.app-dropzone.is-dragover {
    border-color: #69adb1;
    background: rgba(23, 109, 112, .34);
    box-shadow: inset 0 0 0 2px rgba(28, 190, 192, .12);
}

.blocked-zone.is-dragover {
    border-color: #d7757f;
    background: rgba(152, 56, 66, .16);
    box-shadow: inset 0 0 0 2px rgba(210, 106, 116, .1);
}

.dropzone-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 11px;
    color: #c9d9da;
    font-size: 10px;
}

.dropzone-heading span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
}

.dropzone-heading svg {
    width: 14px;
    height: 14px;
    color: #6fb1b5;
}

.blocked-zone .dropzone-heading svg {
    color: #d7757f;
}

.dropzone-heading small {
    overflow: hidden;
    color: #668286;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.policy-app-list {
    display: grid;
    gap: 8px;
}

.policy-app-tooltip {
    position: fixed;
    z-index: 1400;
    top: 0;
    left: 0;
    padding: 5px 9px;
    border: 1px solid rgba(80, 213, 214, .48);
    border-radius: 6px;
    background: rgba(6, 37, 39, .96);
    color: #eaffff;
    font-family: "Vazirmatn", Tahoma, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(var(--tooltip-x, -100px), var(--tooltip-y, -100px), 0) translateY(3px) scale(.96);
    transform-origin: top right;
    box-shadow: 0 8px 24px rgba(3, 25, 27, .28);
    transition: opacity 100ms ease, transform 100ms ease;
}

.policy-app-tooltip.is-visible {
    opacity: 1;
    transform: translate3d(var(--tooltip-x, -100px), var(--tooltip-y, -100px), 0) translateY(0) scale(1);
}

.policy-app {
    display: grid;
    width: 100%;
    min-width: 0;
    min-height: 64px;
    grid-template-columns: 40px minmax(0, 1fr) 16px;
    gap: 10px;
    align-items: center;
    padding: 9px;
    border: 1px solid #2c464b;
    border-radius: 7px;
    background: #10272b;
    color: #dce9ea;
    cursor: grab;
    font-family: inherit;
    text-align: right;
    transition: border-color 140ms ease, background 140ms ease, opacity 140ms ease, transform 140ms ease;
}

.policy-app:hover {
    border-color: rgba(80, 213, 214, .7);
    background: #143035;
    transform: translateY(-1px);
}

.policy-app:active {
    cursor: grabbing;
}

.policy-app.is-dragging {
    opacity: .38;
    transform: scale(.97);
}

.blocked-zone .policy-app {
    border-color: rgba(210, 106, 116, .42);
    background: rgba(91, 31, 38, .4);
}

.blocked-zone .policy-app:hover {
    border-color: #d7757f;
    background: rgba(110, 36, 44, .5);
}

.policy-app > span:nth-child(2),
.policy-app strong,
.policy-app small {
    display: block;
    min-width: 0;
}

.policy-app strong {
    overflow: hidden;
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.policy-app small {
    margin-top: 1px;
    overflow: hidden;
    color: #779397;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.drag-handle {
    width: 15px;
    height: 15px;
    color: #567478;
}

.blocked-zone .drag-handle {
    color: #b96770;
}

.demo-app-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(28, 190, 192, .38);
    border-radius: 7px;
    background: rgba(23, 109, 112, .3);
    color: #7eb7ba;
}

.demo-app-icon svg {
    width: 18px;
    height: 18px;
}

.demo-app-icon.remote {
    border-color: rgba(108, 145, 202, .38);
    background: rgba(83, 118, 174, .12);
    color: #87a9dd;
}

.demo-app-icon.messenger {
    border-color: rgba(161, 126, 198, .38);
    background: rgba(133, 93, 173, .12);
    color: #b39bd0;
}

.demo-app-icon.storage {
    border-color: rgba(206, 166, 94, .38);
    background: rgba(171, 130, 56, .12);
    color: #d4b272;
}

.blocked-zone .demo-app-icon {
    border-color: rgba(210, 106, 116, .38);
    background: rgba(152, 56, 66, .15);
    color: #dc8991;
}

.blocked-empty {
    display: flex;
    min-height: 270px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 18px 10px;
    color: #8e666a;
    text-align: center;
}

.blocked-empty[hidden] {
    display: none;
}

.blocked-empty > svg {
    width: 30px;
    height: 30px;
    margin-bottom: 4px;
}

.blocked-empty strong {
    color: #b9878c;
    font-size: 11px;
}

.blocked-empty small {
    max-width: 120px;
    color: #795c5f;
    font-size: 9px;
    line-height: 1.7;
}

.monitor-helper {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 12px 2px 0;
    color: #648084;
    font-size: 8px;
    line-height: 1.6;
}

.monitor-helper svg {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
}

.monitor-stand {
    position: relative;
    width: 96px;
    height: 38px;
    margin-inline: auto;
}

.monitor-stand::before {
    position: absolute;
    top: 0;
    right: 39px;
    width: 18px;
    height: 26px;
    background: linear-gradient(90deg, #1b2b2f, #31464a, #1b2b2f);
    content: "";
}

.monitor-stand::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 96px;
    height: 10px;
    border-radius: 50% 50% 3px 3px;
    background: #26393d;
    box-shadow: 0 5px 14px rgba(0, 0, 0, .26);
    content: "";
}

.policy-sync {
    position: relative;
    display: grid;
    min-width: 0;
    place-items: center;
    padding-inline: 3px;
}

.policy-sync-pipe {
    position: relative;
    display: grid;
    width: 100%;
    height: 42px;
    place-items: center;
    isolation: isolate;
}

.policy-sync-pipe::before {
    position: absolute;
    top: 50%;
    right: 2px;
    left: 2px;
    height: 10px;
    border: 1px solid rgba(82, 139, 143, .38);
    border-radius: 999px;
    background: linear-gradient(180deg, #0b171a, #10262a 48%, #091518);
    box-shadow: inset 0 1px rgba(255, 255, 255, .04), 0 0 0 3px rgba(28, 190, 192, .025);
    content: "";
    transform: translateY(-50%);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.policy-sync-pipe::after {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 16px;
    background:
        radial-gradient(circle at 5px 50%, #31595c 0 3px, #0d1d20 3.5px 6px, transparent 6.5px),
        radial-gradient(circle at calc(100% - 5px) 50%, #31595c 0 3px, #0d1d20 3.5px 6px, transparent 6.5px);
    content: "";
    transform: translateY(-50%);
    transition: filter 180ms ease;
}

.policy-sync-flow {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 5px;
    left: 5px;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    transform: translateY(-50%);
}

.policy-sync-flow::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 58%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(28, 190, 192, .42) 18%, #78eeef 52%, rgba(28, 190, 192, .7) 76%, transparent);
    box-shadow: 0 0 8px rgba(28, 190, 192, .8), 0 0 16px rgba(28, 190, 192, .36);
    content: "";
    opacity: 0;
    transform: translateX(150%) scaleY(.55);
}

.policy-sync-flow::after {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(205, 255, 255, .9) 0 1px, transparent 1.8px) 0 50% / 15px 8px repeat-x;
    content: "";
    opacity: 0;
}

.policy-sync-arrow {
    z-index: 2;
    width: 24px;
    height: 24px;
    color: #5e8588;
    filter: drop-shadow(0 0 5px rgba(28, 190, 192, .18));
    transition: color 180ms ease, filter 180ms ease;
}

.policy-demo.is-syncing .policy-sync-pipe::before {
    animation: policy-pipe-pressure 1100ms ease-out;
}

.policy-demo.is-syncing .policy-sync-pipe::after {
    animation: policy-pipe-connectors 1100ms ease-out;
}

.policy-demo.is-syncing .policy-sync-flow::before {
    animation: policy-liquid-flow 1100ms cubic-bezier(.2, .7, .25, 1);
}

.policy-demo.is-syncing .policy-sync-flow::after {
    animation: policy-liquid-bubbles 1100ms linear;
}

.policy-demo.is-syncing .policy-sync-arrow {
    animation: policy-arrow-surge 1100ms ease-out;
}

.employee-policy-status {
    display: grid;
    min-height: 72px;
    grid-template-columns: 44px minmax(0, 1fr) 8px;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(99, 196, 154, .28);
    border-radius: 9px;
    background: rgba(32, 93, 68, .13);
}

.employee-policy-status > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    background: rgba(99, 196, 154, .13);
    color: #72c9a3;
}

.employee-policy-status > span svg {
    width: 20px;
    height: 20px;
}

.employee-policy-status small,
.employee-policy-status strong {
    display: block;
}

.employee-policy-status small {
    color: #76a08e;
    font-size: 9px;
}

.employee-policy-status strong {
    margin-top: 2px;
    color: #d9e9e2;
    font-size: 12px;
}

.status-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #63c49a;
    box-shadow: 0 0 0 4px rgba(99, 196, 154, .1);
}

.employee-policy-status.has-blocks {
    border-color: rgba(210, 106, 116, .3);
    background: rgba(100, 35, 42, .15);
}

.employee-policy-status.has-blocks > span {
    background: rgba(210, 106, 116, .13);
    color: #dc7f88;
}

.employee-policy-status.has-blocks small {
    color: #a77277;
}

.employee-policy-status.has-blocks .status-pulse {
    background: #d26a74;
    box-shadow: 0 0 0 4px rgba(210, 106, 116, .1);
}

.employee-app-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-bottom: 14px;
}

.employee-app {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 108px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-content: start;
    align-items: center;
    padding: 12px;
    overflow: hidden;
    border: 1px solid #2c474c;
    border-radius: 9px;
    background: #10262a;
    color: #dce9ea;
    cursor: pointer;
    font-family: inherit;
    text-align: right;
    transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.employee-app:hover,
.employee-app.is-selected {
    border-color: #5da2a6;
    background: #153035;
    transform: translateY(-1px);
}

.employee-app > span:nth-child(2),
.employee-app strong,
.employee-app small {
    display: block;
    min-width: 0;
}

.employee-app strong {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.employee-app small {
    margin-top: 2px;
    color: #6fb69b;
    font-size: 9px;
}

.employee-app b {
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid #294247;
    color: #7eb7ba;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
}

.employee-app.is-blocked {
    border-color: rgba(210, 106, 116, .42);
    background: rgba(83, 29, 35, .4);
}

.employee-app.is-blocked:hover,
.employee-app.is-blocked.is-selected {
    border-color: #d16a74;
    background: rgba(103, 34, 42, .5);
}

.employee-app.is-blocked .demo-app-icon {
    border-color: rgba(210, 106, 116, .36);
    background: rgba(210, 106, 116, .12);
    color: #d9818a;
}

.employee-app.is-blocked small,
.employee-app.is-blocked b {
    color: #d17a83;
}

.employee-app.is-blocked b {
    border-top-color: rgba(210, 106, 116, .24);
}

.employee-result {
    display: grid;
    min-height: 86px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 13px 14px;
    border: 1px solid #2b4449;
    border-radius: 9px;
    background: rgba(8, 43, 45, .74);
}

.employee-result > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: rgba(23, 109, 112, .3);
    color: #77adb0;
}

.employee-result > span svg {
    width: 20px;
    height: 20px;
}

.employee-result strong {
    display: block;
    color: #dbe8e9;
    font-size: 12px;
}

.employee-result p {
    margin: 2px 0 0;
    color: #728e92;
    font-size: 9px;
    line-height: 1.7;
}

.employee-result.is-success {
    border-color: rgba(99, 196, 154, .36);
    background: rgba(32, 93, 68, .15);
}

.employee-result.is-success > span {
    background: rgba(99, 196, 154, .14);
    color: #72c9a3;
}

.employee-result.is-denied {
    border-color: rgba(210, 106, 116, .42);
    background: rgba(100, 35, 42, .18);
}

.employee-result.is-denied > span {
    background: rgba(210, 106, 116, .14);
    color: #dc7f88;
}

.employee-result.is-denied strong {
    color: #f0c9cd;
}

.policy-demo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid rgba(28, 190, 192, .14);
}

.policy-demo-footer p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #7e9c9f;
    font-size: 10px;
}

.policy-demo-footer p svg {
    width: 15px;
    height: 15px;
    color: #5f9ea2;
}

.policy-demo-footer button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border: 1px solid #36565b;
    border-radius: 7px;
    background: rgba(23, 109, 112, .22);
    color: #a9c2c4;
    cursor: pointer;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
}

.policy-demo-footer button:hover {
    border-color: #579da1;
    background: rgba(23, 109, 112, .38);
    color: #ffffff;
}

.policy-demo-footer button svg {
    width: 14px;
    height: 14px;
}

@keyframes policy-liquid-flow {
    0% { opacity: 0; transform: translateX(150%) scaleY(.5); }
    10% { opacity: .95; }
    27% { transform: translateX(82%) scaleY(1.2); }
    48% { transform: translateX(18%) scaleY(.68); }
    68% { transform: translateX(-44%) scaleY(1.16); }
    88% { opacity: .95; transform: translateX(-112%) scaleY(.72); }
    100% { opacity: 0; transform: translateX(-165%) scaleY(.5); }
}

@keyframes policy-liquid-flow-vertical {
    0% { opacity: 0; transform: translateY(-145%) scaleX(.5); }
    10% { opacity: .95; }
    27% { transform: translateY(-72%) scaleX(1.2); }
    48% { transform: translateY(-8%) scaleX(.68); }
    68% { transform: translateY(52%) scaleX(1.16); }
    88% { opacity: .95; transform: translateY(118%) scaleX(.72); }
    100% { opacity: 0; transform: translateY(165%) scaleX(.5); }
}

@keyframes policy-liquid-bubbles {
    0%, 100% { opacity: 0; background-position-x: 34px; }
    18%, 82% { opacity: .72; }
    100% { background-position-x: -34px; }
}

@keyframes policy-liquid-bubbles-vertical {
    0%, 100% { opacity: 0; background-position-y: -34px; }
    18%, 82% { opacity: .72; }
    100% { background-position-y: 34px; }
}

@keyframes policy-pipe-pressure {
    0%, 100% { border-color: rgba(82, 139, 143, .38); box-shadow: inset 0 1px rgba(255, 255, 255, .04), 0 0 0 3px rgba(28, 190, 192, .025); }
    32%, 72% { border-color: rgba(28, 190, 192, .85); box-shadow: inset 0 0 6px rgba(28, 190, 192, .32), 0 0 12px rgba(28, 190, 192, .26); }
}

@keyframes policy-pipe-connectors {
    0%, 100% { filter: none; }
    30%, 78% { filter: brightness(1.7) drop-shadow(0 0 5px rgba(28, 190, 192, .65)); }
}

@keyframes policy-arrow-surge {
    0%, 100% { color: #5e8588; filter: drop-shadow(0 0 5px rgba(28, 190, 192, .18)); transform: translateX(0) scale(1); }
    35% { color: #d3ffff; filter: drop-shadow(0 0 8px rgba(28, 190, 192, .9)); transform: translateX(-3px) scale(1.12); }
    62% { color: var(--primary); transform: translateX(2px) scale(.94); }
}

@keyframes policy-arrow-surge-vertical {
    0%, 100% { color: #5e8588; filter: drop-shadow(0 0 5px rgba(28, 190, 192, .18)); transform: rotate(-90deg) translateX(0) scale(1); }
    35% { color: #d3ffff; filter: drop-shadow(0 0 8px rgba(28, 190, 192, .9)); transform: rotate(-90deg) translateX(-3px) scale(1.12); }
    62% { color: var(--primary); transform: rotate(-90deg) translateX(2px) scale(.94); }
}

@media (max-width: 1080px) {
    .policy-demo-heading {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }

    .policy-demo-intro {
        grid-row: 1;
    }

    .policy-demo-guide {
        width: min(100%, 720px);
        grid-row: 2;
        justify-self: start;
    }

    .policy-demo-stage {
        grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
        gap: 10px;
    }
}

@media (max-width: 860px) {
    .policy-demo-stage {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .policy-monitor {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .policy-sync {
        min-height: 82px;
        padding-block: 4px;
    }

    .policy-sync-pipe {
        width: 42px;
        height: 74px;
    }

    .policy-sync-pipe::before {
        top: 3px;
        right: auto;
        bottom: 3px;
        left: 50%;
        width: 10px;
        height: auto;
        transform: translateX(-50%);
    }

    .policy-sync-pipe::after {
        top: 0;
        right: auto;
        bottom: 0;
        left: 50%;
        width: 16px;
        height: auto;
        background:
            radial-gradient(circle at 50% 5px, #31595c 0 3px, #0d1d20 3.5px 6px, transparent 6.5px),
            radial-gradient(circle at 50% calc(100% - 5px), #31595c 0 3px, #0d1d20 3.5px 6px, transparent 6.5px);
        transform: translateX(-50%);
    }

    .policy-sync-flow {
        top: 5px;
        right: auto;
        bottom: 5px;
        left: 50%;
        width: 8px;
        height: auto;
        transform: translateX(-50%);
    }

    .policy-sync-flow::before {
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: 58%;
        background: linear-gradient(180deg, transparent, rgba(28, 190, 192, .42) 18%, #78eeef 52%, rgba(28, 190, 192, .7) 76%, transparent);
        transform: translateY(-145%) scaleX(.5);
    }

    .policy-sync-flow::after {
        background: radial-gradient(circle, rgba(205, 255, 255, .9) 0 1px, transparent 1.8px) 50% 0 / 8px 15px repeat-y;
    }

    .policy-sync-arrow {
        transform: rotate(-90deg);
    }

    .policy-demo.is-syncing .policy-sync-flow::before {
        animation-name: policy-liquid-flow-vertical;
    }

    .policy-demo.is-syncing .policy-sync-flow::after {
        animation-name: policy-liquid-bubbles-vertical;
    }

    .policy-demo.is-syncing .policy-sync-arrow {
        animation-name: policy-arrow-surge-vertical;
    }
}

@media (max-width: 600px) {
    .policy-demo {
        --demo-bleed: 0px;
        width: auto;
        margin-inline: -4px;
        margin-bottom: 78px;
        padding: 22px 12px;
        border-radius: 14px;
    }

    .policy-demo-heading {
        margin-bottom: 28px;
    }

    .policy-demo-heading h2 {
        font-size: 25px;
    }

    .policy-demo-heading p {
        font-size: 13px;
    }

    .policy-demo-live {
        font-size: 10px;
    }

    .policy-demo-guide {
        width: 100%;
        padding: 14px;
    }

    .policy-demo-guide::after {
        display: none;
    }

    .policy-demo-guide-heading > span {
        width: 38px;
        height: 38px;
    }

    .policy-demo-steps {
        width: 100%;
        gap: 6px;
    }

    .policy-demo-steps span {
        max-width: none;
        line-height: 1.5;
    }

    .policy-demo-steps li {
        min-height: 54px;
        padding: 8px;
    }

    .policy-demo-steps small {
        font-size: 8px;
    }

    .monitor-shell {
        border-width: 6px;
        border-bottom-width: 10px;
        border-radius: 13px 13px 8px 8px;
    }

    .monitor-screen {
        min-height: 400px;
        padding: 11px;
    }

    .monitor-topbar {
        grid-template-columns: 48px minmax(0, 1fr) 66px;
        padding-inline: 8px;
    }

    .app-dropzone {
        min-height: 283px;
        padding: 7px;
    }

    .dropzone-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .dropzone-heading small {
        display: none;
    }

    .policy-app {
        min-height: 49px;
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 6px;
        padding: 6px;
    }

    .policy-app .demo-app-icon {
        width: 29px;
        height: 29px;
    }

    .policy-app .drag-handle,
    .policy-app small {
        display: none;
    }

    .employee-app-grid {
        gap: 7px;
    }

    .employee-app {
        min-height: 89px;
        padding: 8px;
    }

    .policy-demo-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .policy-demo-guide.is-step-ready .policy-demo-steps li,
    .policy-demo-guide.is-step-ready.is-step-visible .policy-demo-steps li {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .policy-demo.is-syncing .policy-sync-pipe::before,
    .policy-demo.is-syncing .policy-sync-pipe::after,
    .policy-demo.is-syncing .policy-sync-flow::before,
    .policy-demo.is-syncing .policy-sync-flow::after,
    .policy-demo.is-syncing .policy-sync-arrow {
        animation: none;
    }
}
