@font-face {
    font-family: 'DrukCyr';
    src: url('./fonts/drukwidecyr-medium.otf') format('truetype');
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: 'Trispace';
    src: url('./fonts/Trispace-Light.ttf') format('truetype');
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: 'Trispace';
    src: url('./fonts/Trispace-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
}

:root {
    --bg: #f6f4ee;
    --surface: rgba(255, 255, 255, 0.76);
    --surface-strong: #ffffff;
    --surface-soft: #f0efe8;
    --ink: #101010;
    --muted: #65685f;
    --line: rgba(16, 16, 16, 0.1);
    --accent: #a7e12c;
    --accent-ink: #173100;
    --accent-soft: rgba(167, 225, 44, 0.18);
    --warning: #d4a32d;
    --danger: #d85c49;
    --success: #4f8f36;
    --shadow-lg: 0 40px 80px rgba(24, 26, 18, 0.12);
    --shadow-md: 0 24px 50px rgba(24, 26, 18, 0.08);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1320px;
}

html {
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(167, 225, 44, 0.14), transparent 26%),
        radial-gradient(circle at right 8% top 18%, rgba(16, 16, 16, 0.05), transparent 22%),
        linear-gradient(180deg, #fbfaf6 0%, var(--bg) 42%, #f2f1eb 100%);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(167, 225, 44, 0.14), transparent 26%),
        radial-gradient(circle at right 8% top 18%, rgba(16, 16, 16, 0.05), transparent 22%),
        linear-gradient(180deg, #fbfaf6 0%, var(--bg) 42%, #f2f1eb 100%);
    font-family: 'Trispace', sans-serif;
    line-height: 1.45;
}

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

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

pre {
    margin: 0;
    font-family: ui-monospace, SFMono-Regular, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.page-shell {
    position: relative;
    overflow: clip;
}

.bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.bg-orb--one {
    top: 120px;
    left: -120px;
    width: 340px;
    height: 340px;
    background: rgba(167, 225, 44, 0.1);
}

.bg-orb--two {
    right: -60px;
    top: 420px;
    width: 240px;
    height: 240px;
    background: rgba(16, 16, 16, 0.05);
}

.container {
    position: relative;
    z-index: 1;
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding-top: 18px;
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 86px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(16, 16, 16, 0.06);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(24, 26, 18, 0.06);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: fit-content;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(167, 225, 44, 0.22), rgba(167, 225, 44, 0.08));
    border: 1px solid rgba(16, 16, 16, 0.08);
}

.brand__text {
    font-family: 'DrukCyr', sans-serif;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.04em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: 8px;
}

.site-nav a,
.site-header__actions a {
    font-size: 14px;
    color: var(--muted);
    transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-header__actions a:hover {
    color: var(--ink);
    transform: translateY(-1px);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    background: rgba(16, 16, 16, 0.04);
    border: 1px solid rgba(16, 16, 16, 0.08);
    border-radius: 14px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: var(--accent-ink);
    background: linear-gradient(135deg, #c7f36d 0%, var(--accent) 100%);
    box-shadow: 0 18px 38px rgba(167, 225, 44, 0.25);
}

.button--secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(16, 16, 16, 0.1);
}

.button--ghost {
    min-height: 44px;
    padding: 0 18px;
    color: var(--ink);
    background: rgba(16, 16, 16, 0.04);
    border-color: rgba(16, 16, 16, 0.08);
}

.hero {
    padding: 36px 0 0;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1fr);
    align-items: start;
    gap: 40px;
}

.hero__copy,
.action {
    min-width: 0;
}

.hero__copy {
    padding: 40px 0 24px 4px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #5f7c18;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.display {
    margin: 0;
    font-family: 'DrukCyr', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.display--xl {
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.92;
}

.display--lg {
    font-size: clamp(42px, 5.2vw, 74px);
    line-height: 0.97;
}

.display--md {
    font-size: clamp(32px, 3.4vw, 46px);
    line-height: 0.96;
}

.display--sm {
    font-size: clamp(30px, 3.1vw, 40px);
    line-height: 1;
}

.hero__lead,
.section-heading p,
.story-card__copy p,
.cta-panel p,
.site-footer p,
.faq-item p,
.session-copy {
    max-width: 62ch;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.hero__copy .display--xl {
    max-width: 6ch;
}

.hero__lead {
    max-width: 26ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.chip-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 220px));
    gap: 12px;
    max-width: 460px;
    margin-top: 28px;
}

.chip {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(16, 16, 16, 0.08);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(16, 16, 16, 0.04);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.hero-stat {
    padding: 18px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(16, 16, 16, 0.06);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.hero-stat strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.action {
    position: relative;
    margin-top: 46px;
}

.action-card,
.session-card {
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74)),
        linear-gradient(135deg, rgba(167, 225, 44, 0.22), rgba(255, 255, 255, 0));
    border: 1px solid rgba(16, 16, 16, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
}

.action-card {
    display: grid;
    gap: 18px;
}

.workspace-preview {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.05), rgba(16, 16, 16, 0.02));
    border: 1px solid rgba(16, 16, 16, 0.06);
    border-radius: 26px;
}

.workspace-preview__sidebar {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(16, 16, 16, 0.06);
}

.workspace-preview__logo {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 700;
}

.workspace-preview__link {
    padding: 11px 12px;
    border-radius: 14px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.workspace-preview__link--active {
    background: rgba(16, 16, 16, 0.06);
    color: var(--ink);
}

.workspace-preview__main {
    display: grid;
    gap: 14px;
}

.workspace-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.workspace-topline strong {
    display: block;
    margin-top: 4px;
    font-size: 20px;
}

.workspace-label {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.risk-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.risk-badge--critical {
    color: #6a180a;
    background: rgba(216, 92, 73, 0.18);
}

.risk-badge--warning {
    color: #78551b;
    background: rgba(212, 163, 45, 0.18);
}

.workspace-panels {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr);
    gap: 14px;
}

.workspace-panel {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 16, 16, 0.06);
    min-width: 0;
}

.workspace-panel--api {
    grid-column: 1 / -1;
}

.bar-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.bar-row {
    display: grid;
    grid-template-columns: minmax(112px, 1.3fr) minmax(0, 1.8fr) auto;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
}

.bar-row strong {
    color: var(--ink);
    font-size: 12px;
}

.bar-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(16, 16, 16, 0.08);
}

.bar-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(216, 92, 73, 0.8), rgba(167, 225, 44, 0.95));
}

.decision-card {
    margin-top: 14px;
}

.decision-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
}

.decision-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.decision-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
}

.decision-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.decision-pill--allow {
    color: #194d0d;
    background: rgba(79, 143, 54, 0.18);
}

.decision-pill--review {
    color: #755018;
    background: rgba(212, 163, 45, 0.18);
}

.decision-pill--block {
    color: #6a180a;
    background: rgba(216, 92, 73, 0.2);
}

.workspace-panel pre,
.code-card {
    padding: 16px;
    overflow: auto;
    border-radius: 18px;
    background: rgba(16, 16, 16, 0.92);
    color: #d9f0c2;
    font-size: 12px;
    line-height: 1.6;
}

.action_form {
    display: grid;
    gap: 14px;
}

.action_form_label {
    font-size: 18px;
    font-weight: 700;
}

.action_description {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.action_form_content,
.action_form_email_content {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 180px 164px;
    gap: 12px;
    align-items: start;
}

.action_form_email_content {
    grid-template-columns: minmax(0, 1fr) 164px;
}

.action_input,
.action_selected,
.action_btn,
.loading input,
.verify-code {
    min-height: 60px;
    border-radius: 18px;
}

.action_input,
.loading input {
    width: 100%;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 16, 16, 0.08);
    color: var(--ink);
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.action_input:focus,
.loading input:focus {
    border-color: rgba(167, 225, 44, 0.9);
    box-shadow: 0 0 0 4px rgba(167, 225, 44, 0.16);
}

.action_input::placeholder,
.loading input::placeholder {
    color: #8b8e85;
}

.custom-select {
    position: relative;
}

.action_selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 16, 16, 0.08);
    color: var(--ink);
}

.selected_value {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.selected_value span:last-child {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.selected_arrow {
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 180ms ease;
}

.custom-select.is-open .selected_arrow {
    transform: rotate(180deg);
}

.network-dot {
    display: inline-flex;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #d0d5cc;
}

.network-dot--eth {
    background: linear-gradient(135deg, #7084ff, #b8c4ff);
}

.network-dot--btc {
    background: linear-gradient(135deg, #ffba53, #e88900);
}

.network-dot--trx {
    background: linear-gradient(135deg, #ff6b6b, #d21919);
}

.network-dot--bsc {
    background: linear-gradient(135deg, #f4d24d, #c68e00);
}

.network-dot--ltc {
    background: linear-gradient(135deg, #c2ccd9, #6e7787);
}

.options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 12;
    display: none;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 16, 16, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(24, 26, 18, 0.14);
}

.custom-select.is-open .options {
    display: grid;
    gap: 6px;
}

.option {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 14px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    transition: background 160ms ease, transform 160ms ease;
}

.option:hover {
    background: rgba(16, 16, 16, 0.06);
    transform: translateX(2px);
}

.action_btn,
.loading .payment-btn,
.loading .verify-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 18px;
    border: 0;
    background: linear-gradient(135deg, #171717, #303028);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 20px 42px rgba(16, 16, 16, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.action_btn:hover,
.loading .payment-btn:hover,
.loading .verify-code:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(16, 16, 16, 0.26);
}

.action_card_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-size: 13px;
}

.action_card_footer a {
    color: var(--ink);
    font-weight: 700;
}

.action_input_error {
    display: none;
    margin-top: 2px;
    color: var(--danger);
    font-size: 12px;
}

.action_form_content .action_input_error,
.action_form_email_content .action_input_error {
    grid-column: 1 / -1;
    margin-top: -4px;
}

.session-card {
    display: grid;
    align-content: start;
    gap: 18px;
    min-height: 320px;
    margin-top: 4px;
}

.action_form_email_button {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(16, 16, 16, 0.05);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}

.main_info .report {
    min-height: 320px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 16, 16, 0.08);
    border-radius: 20px;
    overflow: auto;
}

.loading {
    text-align: center;
}

.main_block[style*="display: block"],
.action_form_email[style*="display: block"],
.main_info[style*="display: block"],
.loading[style*="display: block"] {
    display: grid !important;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    margin: 6px auto 0;
    border-radius: 999px;
    border: 4px solid rgba(16, 16, 16, 0.1);
    border-top-color: var(--accent);
    animation: spin 900ms linear infinite;
}

.loading .text,
.loading h1,
.loading p {
    margin: 0;
}

.loading .text,
.loading p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.loading h1 {
    font-family: 'DrukCyr', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    text-transform: uppercase;
}

.loading .payment-buttons-container {
    margin-top: 18px !important;
}

.network-strip {
    padding: 28px 0 0;
}

.network-strip__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(16, 16, 16, 0.06);
    border-radius: 24px;
}

.network-strip__label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.network-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.network-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(16, 16, 16, 0.05);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}

.section {
    padding: 96px 0 0;
}

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

.metric-grid,
.product-grid,
.integration-grid,
.site-footer__grid {
    display: grid;
    gap: 18px;
}

.metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 36px;
}

.metric-card,
.product-card,
.integration-card,
.faq-item,
.cta-panel,
.site-footer__grid > div {
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(16, 16, 16, 0.06);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.metric-card {
    padding: 24px;
}

.metric-card:hover,
.product-card:hover,
.integration-card:hover,
.faq-item:hover,
.cta-panel:hover,
.site-footer__grid > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(16, 16, 16, 0.08);
    border-color: rgba(16, 16, 16, 0.08);
}

.metric-card strong {
    display: block;
    margin-bottom: 10px;
    font-family: 'DrukCyr', sans-serif;
    font-size: 44px;
    line-height: 0.95;
}

.metric-card span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 36px;
}

.product-card {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 24px;
}

.product-card__eyebrow,
.integration-card__label {
    color: #5f7c18;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0;
    max-width: 13ch;
    font-size: 27px;
    line-height: 1.05;
}

.product-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.product-card__visual {
    min-height: 264px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.05), rgba(16, 16, 16, 0.02));
    border: 1px solid rgba(16, 16, 16, 0.05);
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.product-card:hover .product-card__visual,
.integration-card:hover .code-card,
.integration-card:hover .api-preview-response,
.story-card:hover .screen-card {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(16, 16, 16, 0.08);
    border-color: rgba(16, 16, 16, 0.08);
}

.product-card__visual--risk,
.product-card__visual--deposits,
.product-card__visual--api {
    display: grid;
    align-content: start;
    gap: 16px;
}

.risk-gauge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 132px;
    height: 132px;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0 54%, transparent 55%),
        conic-gradient(from 180deg, rgba(216, 92, 73, 0.95), rgba(212, 163, 45, 0.75), rgba(167, 225, 44, 0.95));
    box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.06);
    flex-shrink: 0;
    transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.risk-overview {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
}

.risk-summary {
    min-width: 0;
}

.risk-summary strong {
    display: block;
    margin-top: 4px;
    font-size: 26px;
    line-height: 1;
}

.risk-summary p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.risk-summary__meta,
.api-preview__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.risk-summary__meta span,
.api-preview__meta span,
.graph-preview__pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 16, 16, 0.06);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.risk-gauge span {
    font-family: 'DrukCyr', sans-serif;
    font-size: 30px;
    line-height: 1;
}

.risk-gauge small {
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
}

.mini-table,
.workspace-list {
    display: grid;
    gap: 10px;
}

.mini-table div,
.workspace-list div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 16, 16, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.mini-table span,
.workspace-list span {
    color: var(--muted);
    font-size: 13px;
}

.mini-table strong,
.workspace-list strong {
    font-size: 14px;
}

.mini-table__value {
    display: grid;
    justify-items: end;
    gap: 2px;
}

.mini-table__value small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.queue-head,
.graph-preview__head,
.api-preview__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.queue-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 68px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 16, 16, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.queue-row__copy,
.queue-row__meta {
    min-width: 0;
}

.queue-row__copy strong {
    display: block;
    font-size: 16px;
    line-height: 1.1;
}

.queue-row__copy span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.queue-row__meta {
    display: grid;
    justify-items: end;
    gap: 8px;
    flex-shrink: 0;
}

.queue-row__amount {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.queue-note,
.graph-preview__legend {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px dashed rgba(16, 16, 16, 0.08);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.product-card__visual--graph {
    display: grid;
    align-content: start;
    gap: 14px;
}

.mini-graph-card {
    display: grid;
    gap: 12px;
}

.mini-graph-card__surface {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(16, 16, 16, 0.05);
    background: rgba(248, 249, 245, 0.84);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.mini-graph-card__meta {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(16, 16, 16, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.mini-graph-card__meta span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mini-graph-card__meta strong {
    font-size: 13px;
    line-height: 1.45;
}

.mini-graph {
    width: 100%;
    height: auto;
    display: block;
}

.mini-graph__surface {
    fill: rgba(248, 249, 245, 0.92);
}

.mini-graph__grid {
    opacity: 0.56;
}

.mini-graph__heat {
    pointer-events: none;
}

.mini-graph__edge {
    fill: none;
    stroke: rgba(16, 16, 16, 0.22);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 220ms ease, stroke-width 220ms ease, opacity 220ms ease;
}

.mini-graph__edge--active {
    stroke: rgba(167, 225, 44, 0.92);
}

.mini-graph__edge--muted {
    opacity: 0.7;
}

.mini-graph__node-card {
    fill: #ffffff;
    stroke: rgba(16, 16, 16, 0.08);
    stroke-width: 1.5;
    transition: fill 220ms ease, stroke 220ms ease, filter 220ms ease;
}

.mini-graph__node--target .mini-graph__node-card {
    fill: #b8ee37;
    stroke: rgba(108, 141, 25, 0.42);
}

.mini-graph__node--mixer .mini-graph__node-card {
    fill: #fff4f0;
    stroke: rgba(216, 92, 73, 0.2);
}

.mini-graph__node-meta {
    fill: rgba(107, 111, 100, 0.92);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mini-graph__node-label {
    fill: rgba(16, 16, 16, 0.92);
    font-size: 12px;
    font-weight: 800;
}

.mini-graph__node {
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 220ms ease;
}

.api-preview__code {
    margin: 0;
    padding: 18px;
    overflow: auto;
    border-radius: 18px;
    background: rgba(16, 16, 16, 0.92);
    color: #d9f0c2;
    font-size: 12px;
    line-height: 1.65;
    white-space: pre-wrap;
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.product-card__visual--api {
    gap: 14px;
}

.story-card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    padding: 10px 0;
}

.story-card__copy,
.story-card__visual {
    min-width: 0;
}

.story-card__copy .display--md {
    max-width: 11ch;
}

.story-card--reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.story-card--graph-feature {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 28px;
}

.story-card--reverse .story-card__copy {
    order: 2;
}

.story-card--reverse .story-card__visual {
    order: 1;
}

.story-card--graph-feature .story-card__copy .display--md {
    max-width: 8.5ch;
}

.story-card--graph-feature .story-card__copy {
    max-width: 560px;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
}

.feature-list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: radial-gradient(circle at center, var(--accent) 0 38%, rgba(16, 16, 16, 0.12) 39% 100%);
    box-shadow: 0 0 0 6px rgba(167, 225, 44, 0.12);
}

.story-card__visual,
.integration-card,
.cta-panel {
    padding: 24px;
}

.screen-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 16, 16, 0.06);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.screen-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 18px 20px 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.screen-card__body {
    padding: 18px 20px 20px;
}

.screen-card__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    color: var(--muted);
    font-size: 14px;
}

.screen-card__row strong {
    color: var(--ink);
}

.bar-stack {
    display: grid;
    gap: 10px;
    margin: 14px 0 18px;
}

.bar-stack span {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(16, 16, 16, 0.12), rgba(167, 225, 44, 0.95));
    transform-origin: left center;
    transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
}

.screen-table {
    display: grid;
    gap: 10px;
}

.screen-table div,
.ops-table__row,
.ops-table__head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 112px 120px;
    gap: 12px;
    align-items: center;
}

.screen-table div {
    min-height: 54px;
    padding: 0 14px;
    background: rgba(16, 16, 16, 0.04);
    border-radius: 16px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.screen-table span {
    color: var(--muted);
    font-size: 13px;
}

.screen-table strong {
    justify-self: end;
}

.screen-card--ops {
    overflow: hidden;
}

.ops-table {
    display: grid;
    gap: 10px;
    padding: 18px 20px 20px;
}

.ops-table__head {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ops-table__row {
    min-height: 58px;
    padding: 0 14px;
    background: rgba(16, 16, 16, 0.04);
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.ops-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 20px;
}

.ops-footer span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(16, 16, 16, 0.05);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.screen-card--graph {
    overflow: hidden;
}

.graph-shell {
    display: grid;
    gap: 18px;
    padding: 20px;
}

.graph-shell__toolbar,
.integration-card__topline,
.api-preview-response__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.graph-shell__case strong {
    display: block;
    font-size: 15px;
    line-height: 1.1;
}

.graph-shell__case span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.graph-shell__meta,
.graph-inspector__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.graph-shell__meta span,
.graph-inspector__tags span,
.integration-card__badge,
.api-preview-response__head span:last-child {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(16, 16, 16, 0.05);
    border: 1px solid rgba(16, 16, 16, 0.05);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.graph-shell__body {
    display: grid;
    grid-template-columns: minmax(0, 1.36fr) minmax(340px, 0.88fr);
    gap: 24px;
    align-items: start;
}

.graph-stage {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.graph-board {
    position: relative;
    aspect-ratio: 920 / 620;
    border-radius: 24px;
    border: 1px solid rgba(16, 16, 16, 0.05);
    overflow: hidden;
    min-width: 0;
}

.graph-board__hud {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    pointer-events: none;
}

.graph-board__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.graph-board__chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 16, 16, 0.05);
    box-shadow: 0 10px 24px rgba(16, 16, 16, 0.05);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.graph-board__chip--risk {
    background: rgba(243, 138, 121, 0.14);
    border-color: rgba(216, 92, 73, 0.14);
}

.graph-board__footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.graph-board__metric {
    display: grid;
    gap: 3px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(16, 16, 16, 0.05);
    box-shadow: 0 10px 24px rgba(16, 16, 16, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.graph-board__metric span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.graph-board__metric strong {
    font-size: 13px;
    line-height: 1.35;
}

.graph-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.graph-scene__surface {
    fill: rgba(248, 249, 245, 0.88);
}

.graph-scene__grid {
    opacity: 0.56;
}

.graph-scene__heat {
    pointer-events: none;
}

.graph-route {
    fill: none;
    stroke: rgba(16, 16, 16, 0.14);
    stroke-width: 9;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.95;
    transition: stroke 220ms ease, opacity 220ms ease, filter 220ms ease, stroke-width 220ms ease;
}

.graph-route.is-active {
    stroke: #a9e332;
    opacity: 1;
    stroke-width: 10;
    filter: url(#graphRouteGlow);
}

.graph-node {
    cursor: pointer;
    outline: none;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 220ms ease;
}

.graph-node__card {
    fill: #ffffff;
    stroke: rgba(16, 16, 16, 0.08);
    stroke-width: 1.5;
    filter: url(#graphCardShadow);
    transition: fill 220ms ease, stroke 220ms ease, filter 220ms ease;
}

.graph-node:hover .graph-node__card,
.graph-node:focus-visible .graph-node__card {
    stroke: rgba(167, 225, 44, 0.5);
}

.graph-node.is-active .graph-node__card {
    stroke: rgba(167, 225, 44, 0.76);
}

.graph-node--target .graph-node__card {
    fill: #dff7a2;
    stroke: rgba(129, 167, 28, 0.34);
}

.graph-node--target.is-active .graph-node__card {
    fill: #b7ed37;
    stroke: rgba(104, 134, 23, 0.48);
}

.graph-node--risk .graph-node__card {
    fill: #fff3ef;
    stroke: rgba(216, 92, 73, 0.24);
}

.graph-node--risk.is-active .graph-node__card {
    stroke: rgba(216, 92, 73, 0.46);
}

.graph-node__eyebrow {
    fill: rgba(107, 111, 100, 0.92);
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.graph-node__title {
    fill: var(--ink);
    font-family: inherit;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.graph-node__meta {
    fill: var(--muted);
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0.01em;
}

.graph-node--target .graph-node__title {
    font-size: 28px;
}

.graph-node--target .graph-node__meta {
    font-size: 13px;
}

.graph-node--desk .graph-node__title,
.graph-node--target .graph-node__title {
    text-anchor: middle;
}

.graph-inspector {
    display: grid;
    align-content: start;
    align-self: start;
    gap: 14px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 16, 16, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.graph-inspector__title {
    display: block;
    margin: 0;
    max-width: 9ch;
    font-size: clamp(26px, 2.3vw, 36px);
    line-height: 0.96;
}

.graph-inspector__description {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.52;
}

.graph-inspector__stats {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.graph-inspector__stats div {
    display: grid;
    align-content: space-between;
    gap: 8px;
    min-height: 88px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(16, 16, 16, 0.04);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.graph-inspector__stats span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.graph-inspector__stats strong {
    justify-self: start;
    font-size: clamp(24px, 1.9vw, 30px);
    line-height: 1;
    white-space: nowrap;
}

.graph-inspector__note {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(167, 225, 44, 0.12);
    color: var(--ink);
    font-size: 14px;
    line-height: 1.6;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.graph-timeline {
    display: grid;
    gap: 14px;
}

.graph-timeline__items {
    display: grid;
    gap: 12px;
}

.graph-timeline__item {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.graph-timeline__item span {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding-left: 18px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.graph-timeline__item span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    transform: translateY(-50%);
    box-shadow: 0 0 0 6px rgba(167, 225, 44, 0.12);
}

.graph-timeline__item strong {
    font-size: 13px;
    line-height: 1.4;
}

.risk-summary__meta span:hover,
.api-preview__meta span:hover,
.graph-preview__pill:hover,
.mini-table div:hover,
.workspace-list div:hover,
.queue-row:hover,
.queue-note:hover,
.screen-table div:hover,
.ops-table__row:hover,
.ops-footer span:hover,
.graph-board__chip:hover,
.graph-board__metric:hover,
.graph-inspector__stats div:hover,
.graph-inspector__note:hover,
.mini-graph-card__meta:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.92);
    border-color: rgba(167, 225, 44, 0.34);
    box-shadow: 0 14px 28px rgba(16, 16, 16, 0.06);
}

.product-card__visual--risk:hover .risk-gauge {
    transform: rotate(-7deg) scale(1.04);
    filter: saturate(1.06);
    box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.06), 0 18px 36px rgba(16, 16, 16, 0.12);
}

.screen-card--report:hover .bar-stack span {
    transform: scaleX(1.02);
    filter: saturate(1.08);
}

.product-card__visual--graph:hover .mini-graph-card__surface {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(16, 16, 16, 0.08);
    border-color: rgba(16, 16, 16, 0.08);
}

.product-card__visual--graph:hover .mini-graph__edge--active {
    stroke-width: 6;
}

.product-card__visual--graph:hover .mini-graph__node--target .mini-graph__node-card,
.product-card__visual--graph:hover .mini-graph__node--mixer .mini-graph__node-card {
    stroke-width: 2;
    filter: saturate(1.04);
}

.graph-board:hover .graph-route.is-active {
    stroke-width: 11;
}

.graph-board:hover .graph-node.is-active .graph-node__card,
.graph-board:hover .graph-node--risk .graph-node__card {
    stroke-width: 2;
}

.product-card__visual--api:hover .api-preview__code,
.integration-card:hover .api-preview-response__body {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(16, 16, 16, 0.12);
}

.queue-row:hover .decision-pill,
.ops-table__row:hover .decision-pill {
    transform: translateY(-1px) scale(1.03);
}

@keyframes graphGlow {
    0%,
    100% {
        opacity: 0.44;
    }

    50% {
        opacity: 0.82;
    }
}

.integration-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    margin-top: 34px;
}

.integration-card {
    display: grid;
    align-content: start;
    gap: 18px;
}

.integration-card--playground .code-card {
    margin: 0;
    white-space: pre-wrap;
}

.api-preview-response {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(16, 16, 16, 0.04);
    border: 1px solid rgba(16, 16, 16, 0.05);
}

.api-preview-response__head span:first-child {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.api-preview-response__body {
    margin: 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 16, 16, 0.05);
    color: var(--ink);
    font-size: 12px;
    line-height: 1.7;
    white-space: pre-wrap;
}

.api-feature-list {
    display: grid;
    gap: 12px;
}

.api-feature {
    display: grid;
    gap: 6px;
    width: 100%;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(16, 16, 16, 0.06);
    text-align: left;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.api-feature strong {
    font-size: 17px;
    line-height: 1.15;
}

.api-feature span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.api-feature:hover,
.api-feature:focus-visible {
    border-color: rgba(167, 225, 44, 0.55);
    box-shadow: 0 14px 28px rgba(16, 16, 16, 0.06);
    transform: translateY(-1px);
}

.api-feature.is-active {
    background: rgba(167, 225, 44, 0.12);
    border-color: rgba(167, 225, 44, 0.7);
    box-shadow: 0 14px 28px rgba(16, 16, 16, 0.08);
}

.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 36px;
}

.faq-item {
    padding: 0 24px;
}

.faq-item summary {
    display: flex;
    align-items: center;
    min-height: 88px;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 700;
}

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

.faq-item p {
    margin: 0 0 24px;
    padding-top: 0;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-panel__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

.site-footer {
    padding: 96px 0 42px;
}

.site-footer__grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
}

.site-footer__grid > div {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 24px;
}

.footer-title {
    display: inline-block;
    margin-bottom: 8px;
    color: #5f7c18;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer__grid a {
    color: var(--muted);
    font-size: 14px;
}

.site-footer__grid a:hover {
    color: var(--ink);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 4px 0;
    color: var(--muted);
    font-size: 13px;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body.is-check-session .marketing-only {
    display: none !important;
}

body.is-check-session {
    position: relative;
    min-height: 100vh;
}

body.is-check-session::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(167, 225, 44, 0.14), transparent 26%),
        radial-gradient(circle at right 8% top 18%, rgba(16, 16, 16, 0.05), transparent 22%),
        linear-gradient(180deg, #fbfaf6 0%, var(--bg) 42%, #f2f1eb 100%);
}

body.is-check-session .page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: inherit;
}

body.is-check-session main {
    flex: 1;
    display: flex;
}

body.is-check-session .hero {
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 0 40px;
}

body.is-check-session .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-height: 0;
    align-content: stretch;
    gap: 0;
}

body.is-check-session .action {
    width: min(100%, 760px);
    max-width: 980px;
    margin: 0 auto;
    margin-top: 0;
}

body.is-check-session .action-card,
body.is-check-session .session-card {
    margin-left: auto;
    margin-right: auto;
}

body.is-check-session .loading,
body.is-check-session .main_info,
body.is-check-session .action_form_email {
    width: 100%;
}

body.is-check-session .loading,
body.is-check-session .main_info {
    min-height: clamp(440px, 62vh, 640px);
}

body.is-check-session .loading {
    justify-items: center;
}

body.is-check-session .loading h1,
body.is-check-session .loading p,
body.is-check-session .loading .text {
    max-width: 36ch;
}

body.is-check-session .main_info .report {
    min-height: clamp(320px, 44vh, 520px);
}

body.is-check-session .site-header__actions .button--primary {
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1180px) {
    .hero__grid,
    .story-card,
    .story-card--reverse,
    .integration-grid,
    .site-footer__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .story-card--reverse .story-card__copy,
    .story-card--reverse .story-card__visual {
        order: initial;
    }

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

    .hero__copy {
        padding-right: 0;
    }

    .action {
        margin-top: 0;
    }

    .chip-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }

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

    .graph-inspector__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .site-nav,
    .site-header__actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    body.nav-open .site-header__inner {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    body.nav-open .site-nav,
    body.nav-open .site-header__actions {
        display: grid;
        width: 100%;
    }

    body.nav-open .site-nav {
        gap: 14px;
        padding-top: 8px;
        margin: 0;
    }

    body.nav-open .site-header__actions {
        gap: 10px;
        padding-top: 8px;
    }

    body.nav-open .menu-toggle span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    body.nav-open .menu-toggle span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }

    body.nav-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

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

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

    .workspace-preview__sidebar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
    }

    .workspace-preview__logo {
        grid-column: span 3;
    }

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

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

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-panel__actions {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 720px) {
    body,
    .page-shell {
        overflow-x: hidden;
    }

    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    body.is-check-session .hero {
        align-items: flex-start;
        padding: 10px 0 24px;
    }

    body.is-check-session .hero__grid {
        min-height: 0;
    }

    .site-header {
        padding-top: 12px;
    }

    .site-header__inner {
        min-height: 74px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .brand__mark {
        width: 42px;
        height: 42px;
    }

    .brand__text {
        font-size: 22px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .site-header__inner,
    .action-card,
    .session-card,
    .story-card__visual,
    .integration-card,
    .cta-panel,
    .metric-card,
    .product-card,
    .faq-item,
    .site-footer__grid > div {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero {
        padding-top: 22px;
    }

    .hero__copy {
        padding-top: 28px;
        padding-bottom: 8px;
    }

    .display--xl {
        font-size: 36px;
        line-height: 0.94;
    }

    .hero__copy .display--xl {
        max-width: 7ch;
    }

    .hero__lead,
    .section-heading p,
    .story-card__copy p,
    .cta-panel p,
    .site-footer p,
    .faq-item p,
    .session-copy {
        font-size: 16px;
    }

    .hero-stats,
    .metric-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .chip-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .chip {
        min-height: 46px;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 13px;
    }

    .network-strip__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .graph-shell {
        padding: 16px;
    }

    .graph-board {
        aspect-ratio: 1 / 1.16;
    }

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

    .graph-inspector {
        padding: 18px;
    }

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

    .screen-table div,
    .ops-table__row,
    .ops-table__head {
        grid-template-columns: minmax(0, 1fr);
    }

    .ops-table__head {
        display: none;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}
