:root {
    --ink: #0b1526;
    --ink-soft: #26354b;
    --muted: #66758a;
    --muted-light: #8b98aa;
    --line: #dfe6ef;
    --line-soft: #edf1f6;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --blue: #1677ff;
    --blue-deep: #075bd8;
    --violet: #7357ff;
    --purple: #8b5cf6;
    --green: #0f9f6e;
    --orange: #e48720;
    --shadow-sm: 0 8px 24px rgba(15, 35, 66, .08);
    --shadow-md: 0 22px 64px rgba(15, 35, 66, .13);
    --shadow-lg: 0 32px 96px rgba(11, 21, 38, .2);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --header-height: 74px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

svg {
    display: block;
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 1000;
    padding: 9px 14px;
    border-radius: 8px;
    color: #fff;
    background: var(--ink);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

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

.container {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 112px 0;
}

.section-soft {
    border-block: 1px solid var(--line-soft);
    background: var(--surface-soft);
}

.section-kicker,
.eyebrow {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-kicker-light {
    color: #8ebdff;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 54px;
}

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

.capabilities-section .section-heading.centered {
    max-width: 1080px;
}

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .6fr);
    align-items: end;
    gap: 60px;
    max-width: none;
}

.section-heading h2,
.proof-copy h2,
.reliability-copy h2,
.faq-heading h2,
.cta-inner h2 {
    margin: 14px 0 0;
    font-size: clamp(38px, 4.2vw, 60px);
    font-weight: 790;
    letter-spacing: -.055em;
    line-height: 1.08;
}

.section-heading p,
.proof-copy > p,
.reliability-copy > p,
.faq-heading p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.section-heading-split > p {
    margin: 0 0 3px;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 760;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

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

.button:active {
    transform: translateY(0);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, #1a7cff, #1267ed);
    box-shadow: 0 10px 26px rgba(22, 119, 255, .25);
}

.button-primary:hover {
    background: linear-gradient(135deg, #348bff, #075bd8);
    box-shadow: 0 14px 34px rgba(22, 119, 255, .32);
}

.button-secondary {
    border-color: #d9e1ec;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 6px 18px rgba(15, 35, 66, .05);
}

.button-secondary:hover,
.button-quiet:hover {
    border-color: #bfcbd9;
    background: #fff;
}

.button-quiet {
    border-color: transparent;
    color: var(--ink-soft);
    background: transparent;
}

.button-light {
    color: var(--ink);
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
}

.button-light:hover {
    background: #f3f7ff;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .26);
}

.button-large {
    min-height: 52px;
    padding-inline: 22px;
    border-radius: 12px;
    font-size: 15px;
}

.button-compact {
    min-height: 42px;
}

:focus-visible {
    outline: 3px solid rgba(22, 119, 255, .32);
    outline-offset: 3px;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(249, 251, 255, .74);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
    border-bottom-color: rgba(218, 226, 238, .86);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 9px 30px rgba(15, 35, 66, .06);
}

.nav-shell {
    width: min(1320px, calc(100% - 48px));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-inline: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: none;
}

.brand-symbol {
    min-width: 58px;
    display: inline-flex;
    align-items: baseline;
    letter-spacing: -.06em;
    line-height: 1;
}

.brand-symbol i {
    color: var(--blue);
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
}

.brand-symbol b {
    color: var(--ink);
    font-size: 23px;
    font-weight: 900;
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-copy strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 820;
    line-height: 1.2;
}

.brand-copy small {
    color: var(--muted-light);
    font-size: 10px;
    letter-spacing: .04em;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(24px, 3vw, 46px);
    flex: 1;
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
}

.nav-links {
    gap: clamp(18px, 2vw, 30px);
}

.nav-links a {
    position: relative;
    color: #536277;
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: -9px;
    left: 50%;
    height: 2px;
    border-radius: 3px;
    background: var(--blue);
    transition: right .18s ease, left .18s ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links a[aria-current="location"] {
    color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.is-active::after,
.nav-links a[aria-current="location"]::after {
    right: 0;
    left: 0;
}

.nav-actions {
    gap: 8px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    padding: 150px 0 42px;
    background:
        linear-gradient(180deg, rgba(246, 249, 255, .8) 0%, #fff 78%),
        linear-gradient(135deg, #f4f8ff, #fbf9ff);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image: linear-gradient(rgba(66, 102, 153, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(66, 102, 153, .08) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
    pointer-events: none;
}

.hero-orb,
.proof-orb,
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-orb-one {
    top: 40px;
    left: -160px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(22, 119, 255, .14), rgba(22, 119, 255, 0) 70%);
}

.hero-orb-two {
    top: 20px;
    right: -130px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(115, 87, 255, .16), rgba(115, 87, 255, 0) 69%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(520px, 1fr) minmax(560px, 1.12fr);
    align-items: start;
    gap: clamp(48px, 4.5vw, 68px);
}

.hero-copy {
    padding-top: 80px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 6px rgba(22, 119, 255, .1);
}

.hero-copy h1 {
    max-width: 680px;
    margin: 24px 0 24px;
    color: var(--ink);
    font-size: clamp(52px, 4.2vw, 60px);
    font-weight: 820;
    letter-spacing: -.067em;
    line-height: 1.02;
}

.hero-copy h1 > span,
.hero-copy h1 > em {
    display: block;
    white-space: nowrap;
}

.hero-copy h1 em {
    color: transparent;
    background: linear-gradient(110deg, #1677ff 0%, #5d65fa 54%, #8157f4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    font-style: normal;
}

.hero-lede {
    max-width: 650px;
    margin: 0;
    color: #5f6f84;
    font-size: 18px;
    line-height: 1.86;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 28px 0 0;
    padding: 0;
    color: #526277;
    font-size: 13px;
    font-weight: 620;
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-list span {
    color: var(--green);
    font-weight: 900;
}

.workspace-showcase {
    min-width: 0;
    position: relative;
    margin: 0;
    padding: 28px 0 44px;
}

.workspace-glow {
    position: absolute;
    inset: 0 -8% -7%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(66, 78, 255, .22), rgba(22, 119, 255, .07) 42%, transparent 72%);
    filter: blur(24px);
}

.workspace-frame {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(193, 206, 225, .9);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 32px 78px rgba(15, 35, 66, .22), 0 5px 18px rgba(15, 35, 66, .08);
    transform: perspective(1400px) rotateY(-2.5deg) rotateX(1deg);
    transform-origin: center center;
}

.workspace-bar {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border-bottom: 1px solid #e5ebf3;
    color: #627086;
    background: #fbfcfe;
    font-size: 11px;
    font-weight: 700;
}

.workspace-bar > span:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.workspace-bar > strong {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    color: #17875f;
    font-size: 10px;
    white-space: nowrap;
}

.workspace-bar > strong i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #19a974;
}

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

.window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d8e0ea;
}

.workspace-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 1424 / 725;
    object-fit: cover;
    object-position: left top;
}

.workspace-showcase figcaption {
    position: absolute;
    left: 50%;
    bottom: 1px;
    z-index: 3;
    width: max-content;
    max-width: 85%;
    padding: 7px 12px;
    border: 1px solid rgba(216, 225, 237, .88);
    border-radius: 999px;
    color: #78869a;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow-sm);
    font-size: 10px;
    transform: translateX(-50%);
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid rgba(205, 215, 230, .92);
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 16px 36px rgba(18, 38, 70, .14);
    backdrop-filter: blur(12px);
}

.floating-card strong,
.floating-card small {
    display: block;
    white-space: nowrap;
}

.floating-card strong {
    font-size: 11px;
}

.floating-card small {
    margin-top: 1px;
    color: var(--muted-light);
    font-size: 9px;
}

.floating-card-ai {
    top: 4px;
    right: -20px;
}

.floating-card-task {
    right: 8%;
    bottom: 22px;
}

.floating-icon,
.task-check {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 8px;
}

.floating-icon {
    color: #7047e9;
    background: #f1ebff;
    font-size: 17px;
}

.task-check {
    color: #fff;
    background: #16a575;
    font-size: 13px;
    font-weight: 900;
}

.hero-metrics {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 54px;
    overflow: hidden;
    border: 1px solid rgba(218, 226, 238, .88);
    border-radius: 16px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 14px 44px rgba(15, 35, 66, .07);
    backdrop-filter: blur(14px);
}

.hero-metrics div {
    min-width: 0;
    position: relative;
    padding: 20px 22px;
}

.hero-metrics div + div::before {
    content: "";
    position: absolute;
    top: 17px;
    bottom: 17px;
    left: 0;
    width: 1px;
    background: var(--line);
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    font-size: 16px;
    font-weight: 800;
}

.hero-metrics span {
    margin-top: 3px;
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Flow */
.flow-section {
    background: #fff;
}

.flow-rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.flow-rail::before {
    content: "";
    position: absolute;
    top: 60px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: linear-gradient(90deg, #bcd8ff, #d4c8ff, #c2ecd9, #f4d5b0);
}

.flow-card {
    min-width: 0;
    min-height: 276px;
    position: relative;
    z-index: 1;
    padding: 26px 22px 24px;
    border: 1px solid var(--line-soft);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 35, 66, .055);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.flow-card:hover {
    border-color: #cbd8e8;
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.flow-number {
    display: block;
    margin-bottom: 18px;
    color: #a2adba;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.flow-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    position: relative;
    margin-bottom: 21px;
    border: 6px solid #fff;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 0 0 1px rgba(213, 222, 235, .9), 0 10px 24px rgba(22, 119, 255, .15);
    font-size: 18px;
    font-weight: 800;
}

.flow-icon-blue { background: var(--blue); }
.flow-icon-violet { background: var(--violet); }
.flow-icon-purple { background: var(--purple); }
.flow-icon-green { background: var(--green); }
.flow-icon-orange { background: var(--orange); }

.flow-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.flow-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

/* Capabilities */
.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.capability-card {
    min-width: 0;
    overflow: hidden;
    padding: 22px;
    border: 1px solid #e0e7f0;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 35, 66, .055);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.capability-card:hover {
    border-color: #c7d5e7;
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.capability-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.capability-index {
    color: #a6b1be;
    font-size: 12px;
    font-weight: 800;
}

.capability-badge {
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--blue);
    background: #edf5ff;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .12em;
}

.ai-capability .capability-badge {
    color: #7047e9;
    background: #f2edff;
}

.publish-capability .capability-badge {
    color: #168460;
    background: #eaf9f3;
}

.capability-visual {
    height: 212px;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid #e5ebf3;
    border-radius: 14px;
    background: #f7f9fc;
}

.product-visual {
    padding: 15px;
    background: linear-gradient(145deg, #f7faff, #eef4fc);
}

.mini-toolbar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 9px;
    border: 1px solid #e2e8f1;
    border-radius: 8px;
    background: #fff;
}

.mini-toolbar > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d4dce8;
}

.mini-toolbar b {
    margin-left: auto;
    padding: 4px 7px;
    border-radius: 5px;
    color: #fff;
    background: var(--blue);
    font-size: 7px;
}

.mini-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin: 9px 0;
}

.mini-kpis i {
    height: 37px;
    border: 1px solid #e3e9f1;
    border-radius: 6px;
    background: #fff;
}

.mini-kpis i::before,
.mini-kpis i::after {
    content: "";
    display: block;
    height: 3px;
    margin: 9px 7px 0;
    border-radius: 3px;
    background: #cbd6e4;
}

.mini-kpis i::after {
    width: 44%;
    margin-top: 5px;
    background: #e3e9f1;
}

.mini-table {
    overflow: hidden;
    border: 1px solid #e2e8f1;
    border-radius: 8px;
    background: #fff;
}

.mini-table > span {
    height: 37px;
    display: grid;
    grid-template-columns: 25px 1fr 42px;
    align-items: center;
    gap: 7px;
    padding: 0 9px;
}

.mini-table > span + span {
    border-top: 1px solid #edf1f5;
}

.mini-table i {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background: #e9eff7;
}

.mini-table b,
.mini-table em {
    height: 4px;
    border-radius: 4px;
    background: #ccd6e3;
}

.mini-table em {
    background: #c9eedf;
}

.ai-visual {
    display: grid;
    grid-template-columns: .8fr 42px 1.2fr;
    align-items: center;
    gap: 9px;
    padding: 18px;
    background: radial-gradient(circle at 50% 50%, rgba(123, 83, 255, .14), transparent 55%), linear-gradient(145deg, #faf8ff, #f1edff);
}

.ai-source {
    height: 142px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 9px;
    border: 1px solid #ddd4f5;
    border-radius: 10px;
    background: rgba(255, 255, 255, .82);
}

.ai-source span {
    grid-column: 1 / -1;
    color: #6d5d8d;
    font-size: 8px;
    font-weight: 750;
}

.ai-source i {
    height: 58px;
    border-radius: 5px;
    background: linear-gradient(155deg, #eef1f6, #c8cfda);
}

.ai-source i:nth-of-type(2) {
    background: linear-gradient(155deg, #e9e1da, #c6a98e);
}

.ai-source i:nth-of-type(3) {
    background: linear-gradient(155deg, #e4ebef, #9fb5c3);
}

.ai-spark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #8465ff, #6a46df);
    box-shadow: 0 8px 24px rgba(112, 71, 233, .32);
}

.ai-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.ai-results i {
    height: 66px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 7px;
    background: linear-gradient(145deg, #dae2ea, #7f91a8);
    box-shadow: 0 7px 14px rgba(55, 52, 89, .1);
}

.ai-results i:nth-child(2) { background: linear-gradient(145deg, #eadbc9, #b99365); }
.ai-results i:nth-child(3) { background: linear-gradient(145deg, #c9dae9, #6085a8); }
.ai-results i:nth-child(4) { background: linear-gradient(145deg, #ddd9ea, #8878a8); }

.publish-visual {
    padding: 20px;
    background: linear-gradient(145deg, #f7fcfa, #edf8f4);
}

.store-row {
    display: grid;
    grid-template-columns: 38px 1fr 24px;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #dfe9e5;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(20, 83, 61, .07);
}

.store-row > i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: #1267ed;
    font-style: normal;
    font-weight: 850;
}

.store-row b,
.store-row small {
    display: block;
}

.store-row b { font-size: 10px; }
.store-row small { margin-top: 2px; color: var(--muted-light); font-size: 8px; }
.store-row em { color: var(--green); font-style: normal; font-weight: 900; }

.publish-progress {
    height: 7px;
    margin: 28px 5px 14px;
    overflow: hidden;
    border-radius: 5px;
    background: #dce8e3;
}

.publish-progress span {
    width: 74%;
    height: 100%;
    display: block;
    border-radius: 5px;
    background: linear-gradient(90deg, #18a978, #1677ff);
}

.publish-states {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.publish-states i {
    padding: 7px 4px;
    border: 1px solid #e0e8e5;
    border-radius: 6px;
    color: #61736c;
    background: rgba(255, 255, 255, .8);
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
}

.capability-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    letter-spacing: -.03em;
}

.capability-card > p {
    min-height: 83px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.capability-card ul {
    display: grid;
    gap: 8px;
    margin: 22px 0;
    padding: 18px 0;
    border-block: 1px solid var(--line-soft);
    list-style: none;
}

.capability-card li {
    position: relative;
    padding-left: 17px;
    color: #4e5d71;
    font-size: 13px;
}

.capability-card li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
}

.ai-capability li::before { background: var(--violet); }
.publish-capability li::before { background: var(--green); }

.capability-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 780;
}

.capability-card > a span {
    transition: transform .18s ease;
}

.capability-card > a:hover span {
    transform: translateX(4px);
}

/* Proof */
.proof-section {
    overflow: hidden;
    color: #fff;
    background: #08111f;
}

.proof-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: linear-gradient(rgba(138, 176, 224, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(138, 176, 224, .12) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 70% 50%, #000, transparent 76%);
}

.proof-orb {
    top: -180px;
    right: -100px;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(84, 72, 255, .33), rgba(22, 119, 255, .1) 42%, transparent 70%);
}

.proof-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(350px, .74fr) minmax(570px, 1.26fr);
    align-items: center;
    gap: clamp(60px, 8vw, 112px);
}

.proof-copy h2 {
    margin-top: 18px;
}

.proof-copy > p {
    color: #aebbd0;
}

.proof-points {
    display: grid;
    gap: 0;
    margin: 32px 0;
    border-block: 1px solid rgba(164, 186, 216, .18);
}

.proof-points > div {
    display: grid;
    grid-template-columns: 34px 105px 1fr;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
}

.proof-points > div + div {
    border-top: 1px solid rgba(164, 186, 216, .13);
}

.proof-points span {
    color: #6faaff;
    font-size: 11px;
    font-weight: 800;
}

.proof-points strong {
    font-size: 13px;
}

.proof-points small {
    color: #91a0b6;
    font-size: 12px;
}

.result-mosaic {
    min-height: 630px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 12px;
}

.result-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(202, 216, 235, .2);
    border-radius: 16px;
    background: #132033;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

.result-preview {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    padding: 0;
    overflow: hidden;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: zoom-in;
}

.result-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.result-card:hover .result-preview img,
.result-preview:focus-visible img {
    transform: scale(1.025);
}

.result-preview-hint {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: #fff;
    background: rgba(6, 13, 23, .7);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
    font-size: 9px;
    font-weight: 720;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease;
    backdrop-filter: blur(10px);
}

.result-card:hover .result-preview-hint,
.result-preview:focus-visible .result-preview-hint {
    opacity: 1;
    transform: translateY(0);
}

.result-card figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 11px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    background: rgba(6, 13, 23, .7);
    backdrop-filter: blur(12px);
    pointer-events: none;
}

.result-card figcaption strong {
    font-size: 11px;
}

.result-card figcaption span {
    overflow: hidden;
    color: #aebbd0;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.result-card-main {
    grid-area: 1 / 1 / 8 / 8;
}

.result-card-sheet {
    grid-area: 7 / 4 / 13 / 13;
    z-index: 2;
}

.result-card-detail {
    grid-area: 1 / 8 / 7 / 13;
}

.result-status {
    position: absolute;
    top: 48%;
    right: -14px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(173, 202, 241, .2);
    border-radius: 12px;
    background: rgba(17, 31, 49, .92);
    box-shadow: 0 17px 38px rgba(0, 0, 0, .32);
    backdrop-filter: blur(14px);
}

.result-status > i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--green);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.result-status strong,
.result-status small {
    display: block;
    white-space: nowrap;
}

.result-status strong { font-size: 10px; }
.result-status small { color: #93a4bb; font-size: 8px; }

.case-dialog {
    width: min(1120px, calc(100vw - 48px));
    max-width: none;
    max-height: calc(100dvh - 48px);
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: 22px;
    color: #fff;
    background: transparent;
}

.case-dialog::backdrop {
    background: rgba(3, 8, 15, .78);
    backdrop-filter: blur(12px);
}

.case-dialog-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(180, 201, 230, .22);
    border-radius: 22px;
    background: #08111f;
    box-shadow: 0 36px 110px rgba(0, 0, 0, .52);
}

.case-dialog figure {
    min-height: min(680px, calc(100dvh - 48px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    margin: 0;
}

.case-dialog-media {
    min-width: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #050b14;
}

.case-dialog-media img {
    width: 100%;
    height: 100%;
    max-height: calc(100dvh - 48px);
    object-fit: contain;
}

.case-dialog figcaption {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    min-width: 0;
    overflow-y: auto;
    padding: 44px 30px 36px;
    border-left: 1px solid rgba(180, 201, 230, .14);
    background: linear-gradient(180deg, #101c2d, #0a1422);
}

.case-dialog figcaption > span {
    color: #78adff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
}

.case-dialog figcaption strong {
    margin-top: 12px;
    font-size: 26px;
    line-height: 1.2;
}

.case-dialog figcaption p {
    margin: 14px 0 0;
    color: #9dacbf;
    font-size: 13px;
    line-height: 1.75;
}

.case-dialog-trace {
    display: grid;
    gap: 0;
    margin: 24px 0 0;
    border-block: 1px solid rgba(180, 201, 230, .14);
}

.case-dialog-trace > div {
    min-width: 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
}

.case-dialog-trace > div + div {
    border-top: 1px solid rgba(180, 201, 230, .1);
}

.case-dialog-trace dt,
.case-dialog-trace dd {
    min-width: 0;
    margin: 0;
    font-size: 10px;
    line-height: 1.55;
}

.case-dialog-trace dt {
    color: #7789a2;
    font-weight: 700;
}

.case-dialog-trace dd {
    overflow-wrap: anywhere;
    color: #c2cede;
}

.case-dialog figcaption .case-dialog-privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 11px;
    border: 1px solid rgba(40, 190, 135, .18);
    border-radius: 9px;
    color: #8fcdb7;
    background: rgba(20, 145, 103, .09);
    font-size: 9px;
    line-height: 1.55;
}

.case-dialog-privacy i {
    flex: none;
    color: #47c594;
    font-style: normal;
    font-weight: 900;
}

.case-dialog-close {
    width: 38px;
    height: 38px;
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: #fff;
    background: rgba(5, 11, 20, .68);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.case-dialog-close:hover {
    background: rgba(24, 43, 68, .94);
}

/* Reliability */
.reliability-section {
    background: #fff;
}

.reliability-layout {
    display: grid;
    grid-template-columns: minmax(520px, 1fr) minmax(380px, .82fr);
    align-items: center;
    gap: clamp(60px, 7vw, 104px);
}

.task-window {
    overflow: hidden;
    border: 1px solid #dfe6ef;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.task-window-head {
    height: 54px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-bottom: 1px solid #e5ebf3;
    background: #fbfcfe;
}

.task-window-head > div {
    display: flex;
    gap: 5px;
}

.task-window-head > div span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d5deea;
}

.task-window-head strong {
    overflow: hidden;
    color: #55647a;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.task-window-head em {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    color: #17875f;
    font-size: 9px;
    font-style: normal;
    font-weight: 750;
    white-space: nowrap;
}

.task-window-head em::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #18a978;
}

.task-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
    padding: 18px;
    background: #f6f9fd;
}

.task-summary > div {
    min-width: 0;
    padding: 13px;
    border: 1px solid #e4eaf2;
    border-radius: 10px;
    background: #fff;
}

.task-summary small,
.task-summary strong {
    display: block;
}

.task-summary small {
    color: var(--muted-light);
    font-size: 9px;
}

.task-summary strong {
    margin-top: 5px;
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.task-summary div:first-child strong {
    color: var(--green);
}

.task-timeline {
    margin: 0;
    padding: 8px 22px 20px;
    list-style: none;
}

.task-timeline li {
    min-height: 76px;
    position: relative;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.task-timeline li + li {
    border-top: 1px solid var(--line-soft);
}

.task-timeline li > span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
    font-size: 10px;
    font-weight: 850;
}

.task-timeline li.current > span {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 0 0 5px rgba(22, 119, 255, .1);
}

.task-timeline strong,
.task-timeline small {
    display: block;
}

.task-timeline strong {
    color: var(--ink-soft);
    font-size: 12px;
}

.task-timeline small {
    margin-top: 2px;
    color: var(--muted-light);
    font-size: 10px;
}

.task-timeline time {
    color: #9aa5b4;
    font-size: 9px;
}

.reliability-copy h2 {
    margin-top: 16px;
}

.reliability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
}

.reliability-grid article {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 15px;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: #fbfcfe;
}

.reliability-grid article > i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: none;
    border-radius: 8px;
    color: var(--blue);
    background: #edf5ff;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
}

.reliability-grid article:nth-child(2) > i { color: var(--violet); background: #f1edff; }
.reliability-grid article:nth-child(3) > i { color: #db7914; background: #fff4e8; }
.reliability-grid article:nth-child(4) > i { color: var(--green); background: #eaf8f3; }

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

.reliability-grid strong {
    font-size: 12px;
}

.reliability-grid span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

/* Scenarios */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.scenario-grid article {
    min-width: 0;
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid #e0e7f0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 35, 66, .045);
}

.scenario-grid article::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 119, 255, .12), transparent 70%);
}

.scenario-grid article:nth-child(2)::after {
    background: radial-gradient(circle, rgba(115, 87, 255, .14), transparent 70%);
}

.scenario-grid article:nth-child(3)::after {
    background: radial-gradient(circle, rgba(15, 159, 110, .13), transparent 70%);
}

.scenario-tag {
    color: #8b97a8;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}

.scenario-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin: 22px 0;
    border-radius: 13px;
    color: var(--blue);
    background: #edf5ff;
    font-size: 17px;
    font-weight: 850;
}

.scenario-grid article:nth-child(2) .scenario-icon { color: var(--violet); background: #f1edff; }
.scenario-grid article:nth-child(3) .scenario-icon { color: var(--green); background: #eaf8f3; }

.scenario-grid h3 {
    margin: 0 0 10px;
    font-size: 22px;
    letter-spacing: -.03em;
}

.scenario-grid p {
    min-height: 76px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.scenario-grid ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.scenario-grid li {
    padding: 5px 8px;
    border-radius: 6px;
    color: #59687b;
    background: #f2f5f9;
    font-size: 10px;
}

/* FAQ */
.faq-section {
    background: #fff;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(310px, .58fr) minmax(480px, 1fr);
    align-items: start;
    gap: clamp(60px, 9vw, 130px);
}

.faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 44px);
}

.faq-heading h2 {
    font-size: clamp(36px, 4vw, 52px);
}

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

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

.faq-list summary {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--ink-soft);
    font-size: 16px;
    font-weight: 720;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: none;
    border-radius: 50%;
    color: var(--blue);
    background: #edf5ff;
    font-size: 16px;
    font-weight: 500;
    transition: transform .2s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 760px;
    margin: -2px 0 26px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

/* CTA and footer */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    color: #fff;
    background: linear-gradient(120deg, #075bd8 0%, #176fef 46%, #624fe6 100%);
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image: linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
}

.cta-orb {
    right: -140px;
    bottom: -280px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 67%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 64px;
}

.cta-inner h2 {
    max-width: 720px;
    margin-top: 16px;
}

.cta-inner p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
}

.cta-actions {
    display: grid;
    justify-items: center;
    gap: 14px;
    flex: none;
}

.cta-text-link {
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 650;
}

.cta-text-link:hover {
    color: #fff;
}

.site-footer {
    color: #b7c1cf;
    background: #09111d;
}

.footer-main {
    min-height: 130px;
    display: grid;
    grid-template-columns: minmax(220px, .8fr) 1fr auto;
    align-items: center;
    gap: 36px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .brand-symbol i { color: #4594ff; }
.footer-brand .brand-symbol b { color: #fff; }

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: #fff;
    font-size: 14px;
}

.footer-brand span {
    margin-top: 2px;
    color: #78869a;
    font-size: 10px;
}

.footer-main nav {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 2.5vw, 30px);
}

.footer-main nav a {
    font-size: 12px;
    white-space: nowrap;
}

.footer-main nav a:hover,
.filing-links a:hover {
    color: #fff;
}

.footer-workbench {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 12px;
    font-weight: 720;
}

.footer-workbench span {
    color: #5aa0ff;
}

.footer-bottom {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(170, 188, 213, .12);
    color: #69788d;
    font-size: 10px;
}

.filing-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.filing-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.filing-links img {
    width: 13px;
    height: 13px;
    object-fit: contain;
}

.back-to-top {
    width: 46px;
    height: 46px;
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(192, 205, 223, .88);
    border-radius: 13px;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 36px rgba(15, 35, 66, .14);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transform: translateY(10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background-color .2s ease;
    backdrop-filter: blur(12px);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: #fff;
    border-color: var(--blue);
    background: var(--blue);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

/* Motion */
.js-ready [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .62s ease, transform .62s cubic-bezier(.2, .65, .25, 1);
}

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

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

.js-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1120px) {
    .brand-copy {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(400px, .95fr) minmax(470px, 1.05fr);
        gap: 40px;
    }

    .hero-copy h1 {
        font-size: clamp(46px, 4.5vw, 52px);
    }

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

    .flow-rail::before {
        display: none;
    }

    .flow-card:nth-child(4),
    .flow-card:nth-child(5) {
        grid-column: span 1;
    }

    .proof-layout {
        gap: 56px;
    }

    .result-mosaic {
        min-height: 560px;
    }

    .reliability-layout {
        grid-template-columns: minmax(470px, 1fr) minmax(340px, .85fr);
        gap: 52px;
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 68px;
    }

    .container,
    .nav-shell {
        width: min(100% - 36px, 1240px);
    }

    .section {
        padding: 90px 0;
    }

    .menu-toggle {
        display: grid;
        margin-left: auto;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        width: 100%;
        height: calc(100svh - var(--header-height));
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-content: start;
        align-items: stretch;
        justify-content: stretch;
        justify-items: stretch;
        gap: 20px;
        max-height: calc(100svh - var(--header-height));
        padding: 20px 18px 28px;
        overflow: auto;
        border-top: 1px solid var(--line-soft);
        border-bottom: 1px solid var(--line);
        background: #fff;
        box-shadow: 0 20px 42px rgba(15, 35, 66, .12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links,
    .nav-actions {
        display: grid;
        width: 100%;
        align-items: stretch;
    }

    .nav-links {
        gap: 2px;
    }

    .nav-links a {
        padding: 13px 10px;
        border-bottom: 1px solid var(--line-soft);
        border-radius: 8px;
        font-size: 15px;
        text-align: left;
    }

    .nav-links a:hover {
        background: var(--surface-soft);
    }

    .nav-links a.is-active,
    .nav-links a[aria-current="location"] {
        color: var(--blue-deep);
        background: #edf5ff;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-actions {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding-top: 16px;
        border-top: 1px solid var(--line-soft);
    }

    .hero {
        min-height: auto;
        padding-top: 126px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .hero-copy {
        max-width: 760px;
        padding-top: 0;
    }

    .hero-copy h1 {
        font-size: clamp(52px, 8.2vw, 76px);
    }

    .hero-copy h1 > span,
    .hero-copy h1 > em {
        white-space: normal;
    }

    .workspace-showcase {
        width: min(100%, 790px);
        margin-inline: auto;
    }

    .hero-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .hero-metrics div:nth-child(3)::before {
        display: none;
    }

    .hero-metrics div:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .capability-grid {
        grid-template-columns: 1fr;
    }

    .capability-card {
        display: grid;
        grid-template-columns: minmax(260px, .8fr) minmax(320px, 1fr);
        grid-template-rows: auto auto auto auto;
        gap: 0 28px;
    }

    .capability-top {
        grid-column: 1 / -1;
    }

    .capability-visual {
        grid-row: 2 / 6;
        height: 100%;
        min-height: 260px;
        margin: 0;
    }

    .capability-card h3 {
        align-self: end;
    }

    .capability-card > p {
        min-height: 0;
    }

    .capability-card ul {
        margin: 18px 0;
        padding: 14px 0;
    }

    .proof-layout,
    .reliability-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .proof-copy {
        max-width: 680px;
    }

    .result-mosaic {
        width: min(100%, 760px);
        min-height: 650px;
        margin-inline: auto;
    }

    .reliability-copy {
        grid-row: 1;
    }

    .task-window {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .scenario-grid {
        grid-template-columns: 1fr 1fr;
    }

    .scenario-grid article:last-child {
        grid-column: 1 / -1;
    }

    .scenario-grid p {
        min-height: 0;
    }

    .faq-heading {
        position: static;
        max-width: 680px;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 36px;
    }

    .cta-actions {
        justify-items: start;
    }

    .footer-main {
        grid-template-columns: 1fr auto;
    }

    .footer-main nav {
        display: none;
    }
}

@media (max-width: 680px) {
    .container,
    .nav-shell {
        width: min(100% - 28px, 1240px);
    }

    .section {
        padding: 74px 0;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .section-heading h2,
    .proof-copy h2,
    .reliability-copy h2,
    .faq-heading h2,
    .cta-inner h2 {
        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: -.05em;
    }

    .section-heading p,
    .proof-copy > p,
    .reliability-copy > p,
    .faq-heading p {
        font-size: 15px;
    }

    .brand-copy {
        display: none;
    }

    .hero {
        padding: 110px 0 30px;
    }

    .hero-copy h1 {
        margin-block: 20px;
        font-size: clamp(44px, 12.7vw, 60px);
    }

    .hero-lede {
        font-size: 16px;
        line-height: 1.78;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .trust-list {
        display: grid;
        gap: 8px;
    }

    .workspace-showcase {
        width: calc(100% + 12px);
        margin-left: -6px;
        padding: 18px 0 38px;
    }

    .workspace-frame {
        border-radius: 13px;
        transform: none;
    }

    .workspace-bar {
        height: 36px;
    }

    .floating-card-ai {
        top: -5px;
        right: 8px;
    }

    .floating-card-task {
        right: 12px;
        bottom: 17px;
    }

    .floating-card {
        padding: 8px 9px;
    }

    .floating-card strong { font-size: 9px; }
    .floating-card small { font-size: 7px; }
    .floating-icon, .task-check { width: 25px; height: 25px; }

    .workspace-showcase figcaption {
        display: none;
    }

    .hero-metrics {
        margin-top: 38px;
        border-radius: 13px;
    }

    .hero-metrics div {
        padding: 15px;
    }

    .hero-metrics strong {
        font-size: 13px;
    }

    .hero-metrics span {
        white-space: normal;
        line-height: 1.45;
    }

    .flow-rail {
        grid-template-columns: 1fr;
    }

    .flow-card {
        min-height: 0;
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 2px 14px;
        padding: 20px;
    }

    .flow-number {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }

    .flow-icon {
        width: 40px;
        height: 40px;
        grid-row: 2 / 4;
        margin: 0;
        border-width: 4px;
        font-size: 15px;
    }

    .flow-card h3 {
        margin: 0 0 4px;
        font-size: 17px;
    }

    .capability-card {
        display: block;
        padding: 18px;
    }

    .capability-visual {
        height: 210px;
        min-height: 0;
        margin-bottom: 22px;
    }

    .capability-card h3 {
        font-size: 22px;
    }

    .ai-visual {
        grid-template-columns: .82fr 34px 1.18fr;
        gap: 6px;
        padding: 12px;
    }

    .result-mosaic {
        min-height: 520px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 230px;
        gap: 10px;
    }

    .result-card-main,
    .result-card-sheet,
    .result-card-detail {
        grid-area: auto;
    }

    .result-card-main {
        grid-column: 1 / -1;
    }

    .result-card-sheet,
    .result-card-detail {
        grid-column: span 1;
    }

    .result-status {
        top: auto;
        right: 12px;
        bottom: -16px;
    }

    .result-card figcaption {
        right: 7px;
        bottom: 7px;
        left: 7px;
        display: grid;
        gap: 0;
        padding: 7px 8px;
    }

    .result-card figcaption span {
        margin-top: 1px;
        font-size: 7px;
    }

    .result-preview-hint {
        top: 7px;
        right: 7px;
        padding: 5px 7px;
        font-size: 8px;
        opacity: 1;
        transform: none;
    }

    .case-dialog {
        width: calc(100vw - 24px);
        max-height: calc(100dvh - 24px);
    }

    .case-dialog figure {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: minmax(240px, 52dvh) auto;
    }

    .case-dialog-media img {
        max-height: 52dvh;
    }

    .case-dialog figcaption {
        padding: 22px 22px 24px;
        border-top: 1px solid rgba(180, 201, 230, .14);
        border-left: 0;
    }

    .case-dialog figcaption strong {
        font-size: 21px;
    }

    .case-dialog-trace {
        margin-top: 18px;
    }

    .case-dialog-close {
        top: 10px;
        right: 10px;
    }

    .proof-points > div {
        grid-template-columns: 30px 90px 1fr;
    }

    .task-summary {
        grid-template-columns: 1fr 1fr;
    }

    .task-timeline li {
        grid-template-columns: 28px 1fr;
    }

    .task-timeline time {
        display: none;
    }

    .reliability-grid {
        grid-template-columns: 1fr;
    }

    .scenario-grid {
        grid-template-columns: 1fr;
    }

    .scenario-grid article:last-child {
        grid-column: auto;
    }

    .faq-list summary {
        min-height: 70px;
        font-size: 14px;
    }

    .cta-section {
        padding: 74px 0;
    }

    .cta-actions,
    .cta-actions .button {
        width: 100%;
    }

    .cta-actions {
        justify-items: center;
    }

    .footer-main {
        min-height: 148px;
        grid-template-columns: 1fr;
        gap: 20px;
        padding-block: 28px;
    }

    .footer-workbench {
        justify-self: start;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding-block: 18px;
    }

    .filing-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .back-to-top {
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 400px) {
    .brand-symbol {
        min-width: 52px;
    }

    .brand-symbol i {
        font-size: 25px;
    }

    .brand-symbol b {
        font-size: 20px;
    }

    .nav-actions {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .workspace-bar > strong {
        display: none;
    }

    .proof-points > div {
        grid-template-columns: 28px 1fr;
    }

    .proof-points small {
        grid-column: 2;
    }

    .result-mosaic {
        min-height: 730px;
        grid-template-columns: 1fr;
        grid-template-rows: 250px 220px 220px;
    }

    .result-card-main,
    .result-card-sheet,
    .result-card-detail {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

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