/*
 * Copyright (c) 2026 ADT Studios LLC. All Rights Reserved.
 */

:root {
    color-scheme: dark;
    --azure: #015798;
    --azure-bright: #0878c8;
    --teal: #006064;
    --charcoal: #1a1a1c;
    --charcoal-deep: #101012;
    --surface: #222328;
    --surface-raised: #292b31;
    --slate: #6a6f7a;
    --fog: #b0b0bd;
    --white: #f5f7fb;
    --danger: #ff6f78;
    --danger-wash: rgba(255, 111, 120, 0.1);
    --line: rgba(176, 176, 189, 0.17);
    --line-strong: rgba(176, 176, 189, 0.3);
    --azure-glow: rgba(1, 87, 152, 0.35);
    --teal-glow: rgba(0, 96, 100, 0.3);
    --max-width: 1240px;
    font-family: "Afacad", ui-sans-serif, system-ui, sans-serif;
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 87% 9%, rgba(1, 87, 152, 0.2), transparent 27rem),
        radial-gradient(circle at 12% 42%, rgba(0, 96, 100, 0.12), transparent 30rem),
        var(--charcoal);
    font-size: 17px;
    line-height: 1.55;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: 0.18;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

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

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

button {
    color: inherit;
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--azure-bright);
    outline-offset: 4px;
}

h1,
h2,
h3,
p {
    text-wrap: pretty;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 17px;
    color: var(--white);
    background: var(--azure);
    border-radius: 4px;
    transform: translateY(-160%);
}

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

.section-shell {
    width: min(calc(100% - 48px), var(--max-width));
    margin-inline: auto;
}

.wordmark {
    display: block;
    aspect-ratio: 3762.7131 / 602.82495;
    background: linear-gradient(90deg, var(--fog), var(--white) 52%, #98c9eb);
    -webkit-mask: url("/images/chromalith-wordmark.svg") center / contain no-repeat;
    mask: url("/images/chromalith-wordmark.svg") center / contain no-repeat;
}

.wordmark-header {
    width: 190px;
}

.wordmark-hero {
    width: min(520px, 88vw);
    margin: 2px 0 26px;
}

.wordmark-footer {
    width: 160px;
}

.wordmark-cta {
    width: min(560px, 78vw);
    background: linear-gradient(90deg, rgba(176, 176, 189, 0.11), rgba(176, 176, 189, 0.24));
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    display: flex;
    width: min(calc(100% - 48px), var(--max-width));
    min-height: 78px;
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: rgba(26, 26, 28, 0.82);
    backdrop-filter: blur(20px) saturate(150%);
}

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

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    color: var(--fog);
    font-size: 15px;
    font-weight: 600;
}

.site-nav a {
    transition: color 160ms ease;
}

.site-nav a:hover {
    color: var(--white);
}

.site-nav .nav-cta {
    padding: 9px 17px;
    color: var(--white);
    background: var(--azure);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(1, 87, 152, 0.24);
}

.site-nav .nav-cta:hover {
    background: var(--azure-bright);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
}

.nav-toggle span[aria-hidden] {
    display: block;
    width: 22px;
    height: 1px;
    margin: 7px auto;
    background: currentColor;
}

.hero {
    display: grid;
    min-height: 800px;
    padding-block: 108px 132px;
    grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
    align-items: center;
    gap: 72px;
}

.eyebrow {
    display: flex;
    margin: 0 0 18px;
    align-items: center;
    gap: 11px;
    color: #62b5ee;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 27px;
    height: 2px;
    background: linear-gradient(90deg, var(--azure-bright), var(--teal));
}

h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(55px, 6.4vw, 92px);
    font-weight: 650;
    line-height: 0.88;
    letter-spacing: -0.055em;
}

h1 em,
.manifesto h2 em {
    color: transparent;
    font-style: normal;
    background: linear-gradient(95deg, #2d9ce7, #4cb9bc);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-lede {
    max-width: 660px;
    margin: 31px 0 0;
    color: var(--fog);
    font-size: 19px;
    line-height: 1.68;
}

.hero-actions {
    display: flex;
    margin-top: 37px;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 23px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--azure), #0874b2);
    box-shadow: 0 14px 34px rgba(1, 87, 152, 0.25);
}

.button-primary:hover {
    background: linear-gradient(135deg, #076bb4, #0a86c5);
}

.button-secondary {
    color: var(--fog);
    border-color: var(--line-strong);
    background: rgba(176, 176, 189, 0.025);
}

.button-secondary:hover {
    color: var(--white);
    border-color: rgba(45, 156, 231, 0.6);
}

.hero-proof {
    display: flex;
    padding: 0;
    margin: 32px 0 0;
    gap: 20px;
    color: var(--fog);
    font-size: 13px;
    list-style: none;
    flex-wrap: wrap;
}

.hero-proof li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-proof li::before {
    width: 5px;
    height: 5px;
    margin-right: 4px;
    content: "";
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(76, 185, 188, 0.7);
}

.hero-proof strong {
    color: var(--white);
}

.hero-visual {
    position: relative;
    min-height: 610px;
}

.hero-halo {
    position: absolute;
    inset: 5% -12% -8% 0;
    background:
        radial-gradient(circle at 55% 45%, rgba(1, 87, 152, 0.29), transparent 46%),
        radial-gradient(circle at 40% 68%, rgba(0, 96, 100, 0.19), transparent 37%);
    filter: blur(12px);
}

.signal-strip {
    display: grid;
    min-height: 122px;
    border-block: 1px solid var(--line);
    background: rgba(16, 16, 18, 0.55);
    grid-template-columns: repeat(4, 1fr);
}

.signal-strip div {
    display: flex;
    padding: 26px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
    border-right: 0;
}

.signal-strip strong {
    color: #61b4e9;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.signal-strip span {
    color: var(--fog);
    font-size: 13px;
}

.manifesto {
    padding-block: 158px;
    text-align: center;
}

.manifesto-kicker {
    margin: 0 0 5px;
    color: var(--slate);
    font-size: clamp(22px, 3vw, 38px);
}

.manifesto h2 {
    margin: 0;
    font-size: clamp(48px, 7vw, 94px);
    font-weight: 620;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.manifesto > p:last-child {
    max-width: 780px;
    margin: 35px auto 0;
    color: var(--fog);
    font-size: 19px;
}

.content-section {
    padding-block: 138px;
}

.engine-section {
    position: relative;
    border-block: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(1, 87, 152, 0.11), transparent 38%),
        var(--charcoal-deep);
}

.engine-section::before {
    position: absolute;
    top: 0;
    right: 4%;
    color: rgba(176, 176, 189, 0.025);
    content: "ENGINE";
    font-size: clamp(100px, 19vw, 280px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.08em;
    pointer-events: none;
}

.section-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.split-heading {
    display: grid;
    max-width: none;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: 90px;
}

.section-heading h2,
.control-copy h2,
.catalog-copy h2,
.beta-copy h2 {
    margin: 0;
    font-size: clamp(44px, 5.4vw, 72px);
    font-weight: 620;
    line-height: 0.98;
    letter-spacing: -0.052em;
}

.section-heading > p,
.split-heading > p,
.control-copy > p,
.catalog-copy > p,
.beta-copy > p {
    margin: 24px 0 0;
    color: var(--fog);
    font-size: 18px;
}

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

.capability-grid {
    position: relative;
    z-index: 2;
    display: grid;
    margin-top: 72px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.capability-card {
    position: relative;
    min-height: 330px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(34, 35, 40, 0.76);
    border-radius: 8px;
    transition: border-color 180ms ease, transform 180ms ease;
}

.capability-card:hover {
    border-color: rgba(45, 156, 231, 0.48);
    transform: translateY(-3px);
}

.capability-primary {
    background:
        linear-gradient(145deg, rgba(1, 87, 152, 0.25), transparent 62%),
        rgba(34, 35, 40, 0.84);
}

.capability-wide {
    display: grid;
    min-height: 265px;
    grid-column: span 3;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
    gap: 42px;
}

.capability-index {
    color: #59ade4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.capability-card h3 {
    margin: 24px 0 9px;
    font-size: 23px;
    font-weight: 650;
    line-height: 1.1;
}

.capability-card p {
    margin: 0;
    color: var(--fog);
    font-size: 15px;
}

.capability-graphic {
    position: relative;
    height: 105px;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(176, 176, 189, 0.12);
    background: #17181c;
    border-radius: 5px;
}

.cleanup-graphic i {
    position: absolute;
    display: block;
    background: #48a8de;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(72, 168, 222, 0.35);
}

.cleanup-graphic i:nth-child(1) { top: 29px; left: 18%; width: 37px; height: 37px; }
.cleanup-graphic i:nth-child(2) { top: 18px; left: 42%; width: 57px; height: 57px; }
.cleanup-graphic i:nth-child(3) { right: 15%; bottom: 18px; width: 27px; height: 27px; }
.cleanup-graphic i:nth-child(4) { right: 8%; top: 13px; width: 6px; height: 6px; opacity: 0.25; }
.cleanup-graphic i:nth-child(5) { left: 9%; bottom: 9px; width: 4px; height: 4px; opacity: 0.25; }

.ruler-graphic {
    background:
        linear-gradient(90deg, transparent 49.5%, rgba(72, 168, 222, 0.72) 50%, transparent 50.5%),
        repeating-linear-gradient(90deg, transparent 0 11px, rgba(176, 176, 189, 0.23) 11px 12px),
        #17181c;
}

.ruler-graphic i {
    position: absolute;
    top: 36px;
    left: 19%;
    width: 62%;
    height: 33px;
    border: 8px solid #48a8de;
    border-inline-width: 18px;
}

.edge-graphic i {
    position: absolute;
    top: 17px;
    bottom: 17px;
    width: 45%;
    border-radius: 50%;
}

.edge-graphic i:first-child {
    left: 18%;
    border: 2px solid var(--slate);
}

.edge-graphic i:last-child {
    right: 18%;
    border: 5px solid #3f9ed5;
}

.opacity-graphic {
    background:
        linear-gradient(90deg, transparent 0 50%, rgba(72, 168, 222, 0.9) 50%),
        linear-gradient(90deg, rgba(72, 168, 222, 0.08), rgba(72, 168, 222, 0.55)),
        #17181c;
}

.opacity-graphic i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 100%;
    background: var(--white);
    transform: translateY(-50%);
}

.screen-demo {
    position: relative;
    display: grid;
    height: 185px;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.screen-demo > span {
    display: block;
    background-color: #131419;
}

.screen-am {
    background-image: radial-gradient(circle, #5ab1e8 0 2px, transparent 2.5px);
    background-size: 11px 11px;
}

.screen-fm {
    background-image:
        radial-gradient(circle at 10% 20%, #60c2bf 0 1px, transparent 1.6px),
        radial-gradient(circle at 70% 60%, #60c2bf 0 1.4px, transparent 1.9px),
        radial-gradient(circle at 40% 82%, #60c2bf 0 0.8px, transparent 1.4px);
    background-size: 19px 21px, 23px 17px, 13px 27px;
}

.screen-demo b {
    position: absolute;
    bottom: 10px;
    color: var(--white);
    font-size: 10px;
    letter-spacing: 0.15em;
}

.screen-demo b:nth-of-type(1) { left: 18%; }
.screen-demo b:nth-of-type(2) { right: 18%; }

.coverage-card {
    background:
        linear-gradient(130deg, rgba(0, 96, 100, 0.17), transparent 55%),
        rgba(34, 35, 40, 0.76);
}

.coverage-gauge {
    position: relative;
    display: flex;
    width: 190px;
    height: 190px;
    margin-inline: auto;
    align-items: center;
    justify-content: center;
    background: conic-gradient(#4bb5b2 0 38.4%, rgba(176, 176, 189, 0.1) 38.4%);
    border-radius: 50%;
}

.coverage-gauge::before {
    position: absolute;
    inset: 13px;
    content: "";
    background: #1e2025;
    border-radius: 50%;
}

.coverage-gauge span,
.coverage-gauge small {
    position: relative;
    z-index: 2;
}

.coverage-gauge span {
    font-size: 49px;
    font-weight: 650;
}

.coverage-gauge small {
    margin: 17px 0 0 3px;
    color: var(--fog);
}

.workflow-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
}

.workflow-list {
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.workflow-list li {
    display: grid;
    min-height: 140px;
    padding: 24px 18px;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    transition: background 160ms ease;
}

.workflow-list li.active {
    background: linear-gradient(90deg, rgba(1, 87, 152, 0.21), transparent 78%);
}

.workflow-list > li > span {
    color: #58abe1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.workflow-list h3 {
    margin: 0 0 4px;
    font-size: 21px;
}

.workflow-list p {
    margin: 0;
    color: var(--fog);
    font-size: 14px;
}

.workflow-list b {
    color: var(--slate);
    font-size: 9px;
    letter-spacing: 0.12em;
}

.control-section {
    border-block: 1px solid var(--line);
    background:
        radial-gradient(circle at 85% 58%, rgba(0, 96, 100, 0.15), transparent 26rem),
        var(--charcoal-deep);
}

.control-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 105px;
}

.check-list {
    display: grid;
    padding: 0;
    margin: 35px 0 0;
    gap: 13px;
    color: var(--fog);
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 11px;
}

.check-list li::before {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    color: #68c3c0;
    content: "✓";
    border: 1px solid rgba(104, 195, 192, 0.42);
    border-radius: 50%;
    font-size: 10px;
}

.control-panel {
    width: min(540px, 100%);
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    background: #393b40;
    border-radius: 8px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
}

.panel-top,
.panel-tabs,
.panel-actions {
    display: flex;
    min-height: 52px;
    padding-inline: 19px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.34);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.panel-live {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #82ceca;
}

.panel-live i {
    width: 7px;
    height: 7px;
    background: #50bdb4;
    border-radius: 50%;
    box-shadow: 0 0 13px #50bdb4;
}

.panel-tabs {
    min-height: 43px;
    padding: 0;
    justify-content: flex-start;
    background: #33353a;
}

.panel-tabs span {
    align-self: stretch;
    display: grid;
    min-width: 112px;
    place-items: center;
    color: var(--fog);
}

.panel-tabs .selected {
    color: var(--white);
    border-bottom: 2px solid #4da6dd;
    background: #42444a;
}

.control-group {
    padding: 24px 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.28);
}

.control-group > small {
    color: #7bbce6;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.control-group label {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
    color: var(--fog);
    font-size: 13px;
}

.control-group label b {
    color: var(--white);
}

.slider {
    position: relative;
    height: 4px;
    margin: 14px 0 22px;
    background: #232429;
    border-radius: 3px;
}

.slider::before {
    display: block;
    width: 54%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, var(--azure), #4aa9df);
}

.slider i {
    position: absolute;
    top: 50%;
    left: 54%;
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 4px solid var(--azure);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.field-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.field-row span {
    display: grid;
    min-height: 52px;
    padding: 7px 10px;
    background: #25262b;
    border: 1px solid #555860;
    border-radius: 3px;
}

.field-row small {
    color: var(--slate);
    font-size: 8px;
    letter-spacing: 0.12em;
}

.field-row b {
    align-self: end;
    font-size: 15px;
}

.histogram {
    position: relative;
    height: 65px;
    margin: 17px 0 12px;
    overflow: hidden;
    background: #232429;
}

.histogram::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(165deg, transparent 0 36%, rgba(89, 174, 226, 0.55) 37% 54%, transparent 55%);
    clip-path: polygon(0 100%, 0 88%, 8% 80%, 14% 91%, 22% 66%, 29% 72%, 38% 28%, 47% 41%, 54% 10%, 63% 42%, 70% 31%, 77% 68%, 86% 53%, 94% 81%, 100% 70%, 100% 100%);
}

.panel-actions {
    padding-block: 16px;
    gap: 10px;
    border: 0;
}

.panel-actions span {
    flex: 1;
    padding: 10px;
    text-align: center;
    border: 1px solid #d6d9df;
    border-radius: 20px;
    font-size: 9px;
}

.panel-actions span:first-child {
    color: var(--white);
    border-color: #5bc0bc;
    background: var(--teal);
}

.catalog-section {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 105px;
}

.catalog-lockup {
    display: flex;
    margin-top: 37px;
    align-items: center;
    gap: 13px;
    color: var(--fog);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    flex-wrap: wrap;
}

.catalog-lockup i {
    color: var(--slate);
    font-style: normal;
}

.catalog-lockup strong {
    color: #66b9ea;
}

.catalog-footnote {
    padding-left: 13px;
    border-left: 2px solid var(--teal);
    font-size: 12px !important;
}

.catalog-browser {
    width: min(500px, 100%);
    padding: 23px;
    margin-inline: auto;
    border: 1px solid var(--line-strong);
    background:
        linear-gradient(140deg, rgba(1, 87, 152, 0.12), transparent 47%),
        var(--surface-raised);
    border-radius: 10px;
    box-shadow: 0 38px 80px rgba(0, 0, 0, 0.36);
}

.browser-head {
    display: flex;
    padding-bottom: 19px;
    align-items: center;
    justify-content: space-between;
    color: var(--fog);
    border-bottom: 1px solid var(--line);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.browser-head b {
    color: #6cc4c0;
    font-size: 9px;
}

.browser-field {
    display: grid;
    min-height: 66px;
    padding: 11px 14px;
    margin-top: 13px;
    grid-template-columns: 1fr auto;
    align-items: center;
    background: #1c1d21;
    border: 1px solid var(--line);
    border-radius: 4px;
}

.browser-field small {
    grid-column: 1 / -1;
    color: var(--slate);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.browser-field strong {
    font-size: 16px;
}

.browser-field > span {
    color: var(--fog);
}

.color-field {
    grid-template-columns: auto 1fr auto;
    column-gap: 11px;
}

.color-field small {
    grid-column: 1 / -1;
}

.color-field i {
    width: 20px;
    height: 20px;
    background: #090909;
    border: 1px solid var(--fog);
    border-radius: 3px;
}

.browser-meta {
    display: flex;
    margin-top: 18px;
    justify-content: space-between;
    color: var(--slate);
    font-size: 10px;
}

.browser-swatches {
    display: flex;
    margin-top: 13px;
    gap: 8px;
}

.browser-swatches span {
    width: 27px;
    height: 27px;
    background: var(--swatch);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
}

.trust-section {
    border-block: 1px solid var(--line);
    background: var(--charcoal-deep);
}

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

.trust-grid article {
    min-height: 280px;
    padding: 48px 38px;
    border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
    border-right: 0;
}

.trust-grid strong {
    color: #58afe4;
    font-size: 11px;
    letter-spacing: 0.13em;
}

.trust-grid h3 {
    margin: 70px 0 8px;
    font-size: 23px;
}

.trust-grid p {
    margin: 0;
    color: var(--fog);
    font-size: 14px;
}

.beta-section {
    position: relative;
    display: grid;
    min-height: 540px;
    padding-block: 110px;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;
}

.beta-wordmark {
    display: grid;
    min-height: 300px;
    place-items: center;
    overflow: hidden;
}

.beta-wordmark .wordmark {
    width: 820px;
    transform: rotate(-90deg);
}

.beta-copy {
    position: relative;
    z-index: 2;
}

.beta-copy .button {
    margin-top: 31px;
}

.site-footer {
    display: grid;
    min-height: 175px;
    padding-block: 45px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 9px 28px;
    border-top: 1px solid var(--line);
}

.site-footer > p {
    margin: 0;
    color: var(--slate);
    font-size: 13px;
}

.footer-links {
    display: flex;
    grid-row: 1 / span 2;
    grid-column: 2;
    gap: 23px;
    color: var(--fog);
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--white);
}

@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 820px;
    }

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

    .split-heading,
    .workflow-section,
    .control-grid,
    .catalog-section {
        grid-template-columns: 1fr;
    }

    .split-heading,
    .workflow-section,
    .control-grid,
    .catalog-section {
        gap: 64px;
    }

    .split-heading > p {
        max-width: 700px;
    }

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

    .capability-wide {
        grid-column: span 2;
    }

    .control-panel,
    .catalog-browser {
        margin-inline: 0;
    }
}

@media (max-width: 780px) {
    .section-shell,
    .site-header {
        width: min(calc(100% - 30px), var(--max-width));
    }

    .site-header {
        min-height: 68px;
    }

    .wordmark-header {
        width: 160px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 68px;
        right: 0;
        left: 0;
        display: none;
        padding: 13px;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        border: 1px solid var(--line-strong);
        background: #202126;
        border-radius: 6px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 11px 12px;
    }

    .site-nav .nav-cta {
        margin-top: 5px;
        text-align: center;
    }

    .hero {
        min-height: 0;
        padding-block: 76px 98px;
        gap: 62px;
    }

    h1 {
        font-size: clamp(52px, 14.5vw, 80px);
    }

    .hero-lede {
        font-size: 17px;
    }

    .hero-visual {
        min-height: 520px;
    }

    .signal-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .signal-strip div:nth-child(2) {
        border-right: 0;
    }

    .signal-strip div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .signal-strip div {
        padding: 21px 12px;
        flex-direction: column;
        gap: 2px;
    }

    .manifesto {
        padding-block: 112px;
    }

    .content-section {
        padding-block: 100px;
    }

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

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

    .workflow-list li {
        grid-template-columns: 35px 1fr;
    }

    .workflow-list b {
        display: none;
    }

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

    .trust-grid article {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-grid article:last-child {
        border-bottom: 0;
    }

    .trust-grid h3 {
        margin-top: 42px;
    }

    .beta-section {
        grid-template-columns: 1fr;
    }

    .beta-wordmark {
        display: none;
    }

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

    .footer-links {
        margin-top: 20px;
        grid-row: auto;
        grid-column: auto;
        flex-wrap: wrap;
    }
}

@media (max-width: 520px) {
    .wordmark-hero {
        width: 100%;
    }

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

    .hero-proof {
        flex-direction: column;
        gap: 7px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .capability-card {
        padding: 22px;
    }

    .coverage-gauge {
        width: 150px;
        height: 150px;
    }

    .field-row {
        gap: 6px;
    }

    .panel-actions {
        flex-direction: column;
    }

    .browser-swatches span {
        width: 23px;
        height: 23px;
    }
}

/* Print Limit Test */

.print-limit-page {
    min-height: 100vh;
}

.print-limit-shell {
    width: min(calc(100% - 48px), 960px);
    padding: 80px 0 120px;
    margin-inline: auto;
}

.print-limit-heading h1 {
    max-width: 900px;
    font-size: clamp(46px, 7vw, 76px);
}

.print-limit-heading > p:last-child {
    max-width: 720px;
    color: var(--fog);
    font-size: 20px;
}

.print-limit-progress {
    display: grid;
    padding: 0;
    margin: 52px 0 24px;
    color: var(--fog);
    border: 1px solid var(--line);
    background: var(--surface);
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
}

.print-limit-progress li {
    padding: 13px 16px;
    border-right: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.print-limit-progress li:last-child {
    border-right: 0;
}

.print-limit-progress li.active {
    color: var(--white);
    background: var(--azure);
}

.print-limit-step,
.print-limit-privacy {
    padding: clamp(24px, 5vw, 48px);
    border: 1px solid var(--line);
    background: var(--surface-raised);
}

.print-limit-step[hidden] {
    display: none;
}

.print-limit-step h2,
.print-limit-privacy h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 40px);
}

.print-limit-step > p,
.print-limit-privacy p {
    max-width: 760px;
    color: var(--fog);
}

.print-limit-step > .button + .button {
    margin-left: 10px;
}

.print-limit-form {
    display: grid;
    margin: 28px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.print-limit-form label {
    display: flex;
    color: var(--fog);
    font-size: 14px;
    font-weight: 700;
    flex-direction: column;
    gap: 7px;
}

.print-limit-form label.wide {
    grid-column: 1 / -1;
}

.print-limit-form label[hidden] {
    display: none;
}

.print-limit-form input,
.print-limit-form select {
    min-height: 48px;
    padding: 0 13px;
    color: var(--white);
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    background: var(--charcoal);
    font: inherit;
}

.print-limit-target-id {
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.print-limit-confirmation-id {
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace !important;
}

.print-limit-first-actions {
    margin-top: 24px;
}

.recall-panel {
    padding: 22px;
    margin: 24px 0;
    border: 1px solid var(--line);
    background: var(--charcoal-deep);
}

.recall-panel[hidden] {
    display: none;
}

.recall-panel h3,
.recall-panel p,
.recall-panel .print-limit-form,
.recall-panel .print-limit-actions {
    margin-top: 0;
}

.detail-form {
    grid-template-columns: 1fr;
}

.blind-check {
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--charcoal-deep);
}

.blind-check h3,
.blind-check p {
    margin-top: 0;
}

.blind-check .print-limit-form {
    margin-bottom: 0;
}

.screening-guidance {
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--charcoal-deep);
    column-gap: 30px;
    row-gap: 18px;
}

.screening-guidance h3,
.screening-guidance p {
    margin: 0;
}

.screening-guidance .wide {
    grid-column: 1 / -1;
}

.screening-guidance .print-limit-status {
    min-height: 0;
}

.print-limit-actions {
    display: flex;
    margin-top: 28px;
    gap: 12px;
    flex-wrap: wrap;
}

.print-limit-actions [hidden] {
    display: none;
}

.print-limit-status {
    min-height: 26px;
    color: #7bd0ca;
}

.print-limit-error:not(:empty) {
    padding: 12px 14px;
    color: var(--danger);
    border-left: 4px solid var(--danger);
    background: var(--danger-wash);
    font-weight: 700;
}

.print-limit-report {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 4px;
    grid-template-columns: 1fr auto;
}

.print-limit-report dt,
.print-limit-report dd {
    padding: 12px 16px;
    margin: 0;
    border-bottom: 1px solid var(--line);
}

.print-limit-report dd {
    font-weight: 700;
    text-align: right;
}

.print-limit-warning {
    padding: 18px;
    margin-top: 24px;
    border: 1px solid rgba(235, 184, 69, 0.55);
    background: rgba(235, 184, 69, 0.08);
}

.entry-identity-card {
    display: grid;
    padding: 18px;
    margin-top: 24px;
    border: 1px solid var(--line-strong);
    background: var(--charcoal);
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 16px;
}

.entry-identity-card > div {
    min-width: 0;
}

.entry-identity-card span,
.entry-identity-card code {
    display: block;
}

.entry-identity-card span {
    margin-bottom: 7px;
    color: var(--fog);
    font-size: 14px;
    font-weight: 700;
}

.entry-identity-card code {
    padding: 12px;
    overflow-wrap: anywhere;
    color: #7bd0ca;
    background: var(--charcoal-deep);
}

.print-limit-privacy {
    margin-top: 24px;
}

@media (max-width: 640px) {
    .print-limit-shell {
        width: min(calc(100% - 28px), 960px);
        padding-top: 48px;
    }

    .print-limit-progress {
        grid-template-columns: repeat(2, 1fr);
    }

    .print-limit-form {
        grid-template-columns: 1fr;
    }

    .entry-identity-card {
        grid-template-columns: 1fr;
    }

    .print-limit-form label.wide {
        grid-column: auto;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Chromalith running inside Photoshop. */
.photoshop-stage {
    position: absolute;
    top: 18px;
    right: 0;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: #18191d;
    box-shadow: 0 42px 100px rgba(0, 0, 0, 0.5);
}

.photoshop-bar,
.photoshop-caption {
    display: flex;
    min-height: 42px;
    padding-inline: 16px;
    align-items: center;
    justify-content: space-between;
    color: var(--fog);
    border-bottom: 1px solid var(--line);
    background: #25262b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.photoshop-app {
    display: flex;
    align-items: center;
    gap: 8px;
}

.photoshop-app b {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    color: #5ebcf4;
    border: 1px solid #156ba0;
    background: #071e2d;
    font-size: 11px;
    letter-spacing: 0;
    text-transform: none;
}

.photoshop-workspace {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    background: #202125;
}

.photoshop-document {
    position: absolute;
    top: 20px;
    right: -8%;
    bottom: 20px;
    width: 70%;
    overflow: hidden;
    border: 1px solid var(--surface-raised);
    background:
        linear-gradient(45deg, #2f3034 25%, transparent 25%),
        linear-gradient(-45deg, #2f3034 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #2f3034 75%),
        linear-gradient(-45deg, transparent 75%, #2f3034 75%),
        #3a3b40;
    background-position: 0 0, 0 7px, 7px -7px, -7px 0;
    background-size: 14px 14px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

.document-tab {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    left: 0;
    height: 28px;
    padding: 7px 11px;
    color: #c8c9ce;
    background: #34353a;
    font-size: 9px;
}

.document-art {
    position: absolute;
    top: 17%;
    right: 14%;
    bottom: 9%;
    left: 15%;
    background:
        radial-gradient(circle at 50% 25%, #9c4236 0 13%, transparent 13.5%),
        radial-gradient(ellipse at 50% 61%, #6c2b28 0 26%, transparent 26.5%),
        linear-gradient(64deg, transparent 0 35%, #8d443a 36% 43%, transparent 44%),
        linear-gradient(-64deg, transparent 0 35%, #8d443a 36% 43%, transparent 44%);
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.7));
}

.document-mask-pattern {
    position: absolute;
    inset: 28px 0 0;
    opacity: 0.24;
    background-image: radial-gradient(circle, #6bb5e4 0 1px, transparent 1.4px);
    background-size: 7px 7px;
    mask-image: radial-gradient(ellipse at 55% 51%, #000 0 35%, transparent 70%);
}

.product-panel {
    position: relative;
    z-index: 4;
    width: 72%;
    min-width: 345px;
    margin: 22px 0 22px 5%;
    overflow: hidden;
    border: 1px solid #555860;
    border-radius: 8px;
    background: #393b40;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.product-panel-brand,
.product-panel-tabs,
.product-panel-actions {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.product-panel-brand {
    min-height: 46px;
    padding: 0 16px;
    justify-content: space-between;
}

.product-panel-brand strong {
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.product-panel-brand > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #7fd0ca;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-panel-brand i,
.photoshop-caption i {
    display: block;
    width: 7px;
    height: 7px;
    background: #64c2bb;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(100, 194, 187, 0.8);
}

.product-panel-tabs {
    min-height: 40px;
    padding-left: 15px;
    background: #33353a;
}

.product-panel-tabs span {
    display: grid;
    width: 95px;
    align-self: stretch;
    place-items: center;
    color: #a8a9b0;
    border-bottom: 2px solid transparent;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.product-panel-tabs .selected {
    color: var(--white);
    border-bottom-color: #67afe0;
    background: #414349;
}

.product-panel-section {
    padding: 17px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.product-panel-section > small {
    color: #78bce8;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.product-panel-section > label {
    display: flex;
    margin-top: 13px;
    justify-content: space-between;
    color: #b8bac1;
    font-size: 10px;
}

.product-panel-section > label b {
    color: var(--white);
}

.product-slider {
    position: relative;
    height: 4px;
    margin: 10px 0 15px;
    background: #232429;
}

.product-slider::before {
    display: block;
    width: 58%;
    height: 100%;
    content: "";
    background: #347eb8;
}

.product-slider i {
    position: absolute;
    top: 50%;
    left: 58%;
    width: 13px;
    height: 13px;
    background: #f4f6f8;
    border: 3px solid #347eb8;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.product-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.product-value-grid > span {
    display: flex;
    min-height: 49px;
    padding: 8px 9px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #555860;
    border-radius: 3px;
    background: #292a2f;
}

.product-value-grid small {
    color: #7f828c;
    font-size: 7px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-value-grid b {
    font-size: 12px;
    text-transform: uppercase;
}

.product-level-range {
    position: relative;
    height: 38px;
    margin: 13px 0 9px;
    overflow: hidden;
    border: 1px solid #41434a;
    background: linear-gradient(90deg, #17181c, #30445a 46%, #6b94b2 72%, #b4c4cf);
}

.product-level-range i,
.product-level-range b,
.product-level-range em {
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    width: 1px;
}

.product-level-range i {
    left: 9%;
    background: var(--white);
}

.product-level-range b {
    left: 52%;
    width: 2px;
    background: #65c0b8;
}

.product-level-range em {
    left: 87%;
    background: var(--white);
}

.product-panel-actions {
    min-height: 56px;
    padding: 10px 16px;
    justify-content: space-between;
    gap: 9px;
}

.product-panel-actions span {
    display: grid;
    min-height: 30px;
    flex: 1 1 0;
    place-items: center;
    border: 1px solid #d5d7dc;
    border-radius: 18px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-panel-actions span:first-child {
    color: #ffffff;
    border-color: #60c6bf;
    background: #2d7575;
}

.photoshop-caption {
    min-height: 46px;
    border-top: 1px solid var(--line);
    border-bottom: 0;
}

.photoshop-caption span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.photoshop-caption strong {
    color: #77c8c3;
    font-size: 9px;
}

@media (max-width: 780px) {
    .photoshop-workspace {
        min-height: 480px;
    }

    .product-panel {
        width: 76%;
    }
}

@media (max-width: 520px) {
    h1 {
        font-size: clamp(40px, 11.5vw, 52px);
    }

    .wordmark-hero {
        display: none;
    }

    .hero-visual {
        min-height: 525px;
    }

    .photoshop-stage {
        top: 0;
    }

    .photoshop-bar > span:last-child,
    .photoshop-caption strong {
        display: none;
    }

    .photoshop-workspace {
        min-height: 430px;
    }

    .photoshop-document {
        right: -20%;
        width: 90%;
    }

    .product-panel {
        width: calc(100% - 28px);
        min-width: 0;
        margin: 14px;
    }

    .product-panel-section {
        padding: 13px;
    }

    .product-level-range {
        height: 30px;
    }

    .photoshop-caption {
        padding-inline: 12px;
    }
}
