:root {
    color-scheme: dark;
    --brand: #3d5a80;
    --bg: #293f5b;
    --surface: #2c4563;
    --raised: #365374;
    --text: #f5f8fc;
    --muted: #c0cede;
    --blue: #c1ddff;
    --line: #d5e5f51c;
    --border: #d5e5f530;
    --radius: 14px;
    --accent-soft: #c1ddff;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body {
    margin: 0;
    background: radial-gradient(ellipse 850px 650px at 50% 160px, #789cc52b, transparent 75%),
        linear-gradient(180deg, var(--brand) 0, var(--brand) 480px, var(--bg) 1200px);
    color: var(--text);
    font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure {
    margin: 0;
}
h1,
h2,
h3 {
    line-height: 1.14;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    cursor: pointer;
}
a,
button,
summary {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}
a:focus,
button:focus,
summary:focus,
[tabindex]:focus {
    outline: 2px solid var(--blue);
    outline-offset: 5px;
}
[hidden] {
    display: none !important;
}
p {
    color: var(--muted);
}
h2 {
    font-size: 49px;
    font-weight: 550;
    letter-spacing: -2px;
}
h2 > span {
    color: #b4cae3;
}
h3 {
    font-size: 20px;
    font-weight: 550;
    letter-spacing: -0.45px;
}
.container {
    width: calc(100% - 80px);
    max-width: 1120px;
    margin: 0 auto;
}
.icon-library {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}
.icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    vertical-align: middle;
}
.skip-link {
    position: fixed;
    left: 20px;
    top: -100px;
    z-index: 100;
    background: #fff;
    color: #111;
    padding: 12px 20px;
}
.skip-link:focus {
    top: 12px;
}
.header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid var(--line);
    background: #354f71ed;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}
.header-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.brand img {
    margin-right: 10px;
    border-radius: 7px;
}
.navigation {
    display: flex;
    align-items: center;
}
.navigation > a {
    margin-left: 24px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: #d0deed;
    font-size: 12px;
}
.navigation a:hover {
    color: #fff;
}
.navigation > a > span {
    margin-left: 7px;
}
.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 550;
}
.button .icon,
.button > span {
    margin-left: 14px;
    width: 17px;
}
.button-primary {
    color: #304e73;
    background: #f0f6ff;
    border-color: #fff;
    box-shadow: 0 4px 14px #182f4b33, inset 0 1px #fff;
}
.button-primary:hover {
    background: #fff;
    box-shadow: 0 6px 22px #182f4b55, inset 0 1px #fff;
}
.button:active {
    transform: translateY(1px);
}
.button-secondary {
    color: #e1ebf7;
    background: #ffffff06;
    border-color: #d8e7f540;
}
.button-secondary:hover {
    color: #fff;
    background: #ffffff0c;
    border-color: #ffffff35;
}
.navigation .nav-cta {
    background: #f0f6ff;
    color: #304e73;
    min-height: 44px;
    border: 0;
    font-size: 12px;
    padding: 7px 13px;
}
.navigation .nav-cta:hover {
    color: #304e73;
    background: #fff;
}
.menu-toggle {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 5px;
    min-height: 44px;
    padding: 8px 12px;
}
.menu-toggle .icon {
    margin-left: 7px;
    width: 17px;
}
.hero {
    text-align: center;
    padding: 62px 0 42px;
    position: relative;
}
.release-link {
    min-height: 44px;
    color: #d9e5f3;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #ffffff18;
    border-radius: 20px;
    padding: 5px 12px;
    background: #ffffff03;
}
.release-link > span:last-child {
    margin-left: 13px;
    color: #bfd1e7;
}
.blue-dot {
    width: 5px;
    height: 5px;
    display: inline-block;
    background: #8bb5fc;
    border-radius: 50%;
    margin-right: 9px;
    vertical-align: middle;
    box-shadow: 0 0 8px #6d9bea25;
}
h1 {
    font-size: 80px;
    letter-spacing: -3.8px;
    font-weight: 550;
    line-height: 1.06;
    margin-top: 27px;
}
h1 > span {
    color: #d3e4f5;
    background: linear-gradient(105deg, #f5f9ff 10%, #d1e5ff 60%, #afcdec);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-description {
    font-size: 17px;
    line-height: 1.85;
    margin-top: 25px;
    color: #e1eaf5;
}
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 27px;
}
.hero-actions > * + * {
    margin-left: 12px;
}
.compatibility {
    font-size: 12px;
    margin-top: 18px;
    color: #b9cee4;
}
.compatibility span {
    margin: 0 9px;
    color: #91accb;
}
.showcase {
    border: 1px solid #ffffff25;
    border-radius: 14px;
    background: #233b56;
    box-shadow: 0 24px 70px -20px #13263f66, 0 1px 0 #ffffff15 inset;
    overflow: hidden;
    position: relative;
}
.showcase:before {
    content: "";
    position: absolute;
    height: 1px;
    left: 15%;
    right: 15%;
    top: 0;
    background: linear-gradient(90deg, transparent, #a7c4ef88, transparent);
}
.showcase-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    border-bottom: 1px solid var(--border);
    padding: 0 21px;
    color: #c6d7ea;
    font-size: 12px;
    background: #ffffff02;
}
.showcase-top > span:first-child {
    display: inline-flex;
    align-items: center;
}
.showcase-top img {
    border-radius: 4px;
    margin-right: 9px;
}
.divider {
    color: #91a9c5;
    margin: 0 12px;
}
.preview-label {
    font-size: 10px;
    letter-spacing: 1.2px;
    color: #b8cbe1;
}
.showcase-body {
    display: grid;
    grid-template-columns: 215px minmax(0, 1fr) 285px;
}
.workflow-sidebar {
    padding: 24px 10px 16px;
    border-right: 1px solid var(--line);
    position: relative;
    background: #ffffff01;
}
.sidebar-label {
    font-size: 11px;
    letter-spacing: 1px;
    color: #b4cbe3;
    display: block;
    padding: 0 13px;
    margin-bottom: 22px;
}
.workflow-step {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid transparent;
    background: transparent;
    text-align: left;
    color: #b8cce2;
    padding: 12px 11px;
    margin-bottom: 9px;
    border-radius: 6px;
}
.workflow-step > .icon {
    width: 17px;
    margin-right: 10px;
}
.workflow-step strong {
    font-size: 12px;
    font-weight: 500;
    display: block;
}
.workflow-step small {
    display: block;
    font-size: 11px;
    margin-top: 3px;
    color: #bfcee0;
}
.workflow-step[aria-selected="true"] {
    background: #476a91;
    color: #fff;
    border-color: transparent;
}
.workflow-step:focus {
    outline-width: 1px;
    outline-offset: 2px;
}
.workflow-step:not([aria-selected="true"]):hover {
    background: #ffffff0b;
}
.sidebar-bottom {
    position: absolute;
    bottom: 21px;
    left: 23px;
    font-size: 11px;
    color: #b6cbe1;
}
.workflow-panel {
    min-width: 0;
}
.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 25px 10px;
    color: #d3e2f4;
    font: 12px/1.5 "SFMono-Regular", Consolas, monospace;
}
.code-header > span:last-child {
    color: #b9cee5;
    font-size: 10px;
}
pre {
    margin: 0;
    font: 12px/1.95 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    overflow-x: auto;
    tab-size: 4;
}
pre code {
    font-family: inherit;
}
.workflow-panel pre {
    height: 266px;
    min-height: 266px;
    padding: 15px 25px;
    color: #d0dcec;
}
.comment {
    color: #afc5dc;
}
.function {
    color: #b1cdf9;
}
.number {
    color: #d6b58c;
}
.keyword {
    color: #c8dffc;
}
.string {
    color: #a5ccbf;
}
.workflow-explanation {
    padding: 22px 25px 18px;
    border-top: 1px solid var(--line);
    background: #ffffff02;
    min-height: 228px;
}
.example-label {
    color: #c4ddfa;
    font-size: 10px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.workflow-explanation h3 {
    font-size: 16px;
    letter-spacing: -0.2px;
    margin-bottom: 9px;
}
.workflow-explanation p {
    font-size: 12px;
    line-height: 1.8;
    min-height: 88px;
}
.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 13px;
    color: #e0eeff;
}
.text-link > span {
    margin-left: 10px;
    color: #bfd2e8;
}
.text-link:hover {
    color: #fff;
}
.workflow-explanation .text-link {
    font-size: 12px;
    min-height: 44px;
}
.touch-preview {
    border-left: 1px solid var(--line);
    background: radial-gradient(ellipse at center, #527ca329, transparent 75%), #29435f;
    display: flex;
    flex-direction: column;
}
.touch-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #bdd0e6;
    font-size: 10px;
    letter-spacing: 1px;
}
.preview-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #7a8a9f;
}
.touch-canvas {
    height: 302px;
    flex: 1;
    min-height: 260px;
    position: relative;
    background-image: radial-gradient(#5b72902b 0.7px, transparent 0.7px);
    background-size: 17px 17px;
    overflow: hidden;
}
.touch-ring {
    position: absolute;
    left: 50%;
    top: 47%;
    border: 1px solid #749acc;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.ring-three {
    width: 200px;
    height: 200px;
    border-color: #59799f20;
    box-shadow: 0 0 80px #447ccb0c;
}
.ring-two {
    width: 134px;
    height: 134px;
    border-color: #6992c545;
    background: #385e9520;
}
.ring-one {
    width: 70px;
    height: 70px;
    border-color: #8db4e9;
    background: #3c70bb33;
    box-shadow: 0 0 40px #548cff26, inset 0 0 25px #5591f016;
}
.touch-center {
    position: absolute;
    top: 47%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #b9d7ff;
    box-shadow: 0 0 25px #72a8ff80;
}
.axis {
    position: absolute;
    background: #536b8828;
}
.axis-x {
    left: 0;
    right: 0;
    top: 47%;
    height: 1px;
}
.axis-y {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
}
.coordinate {
    position: absolute;
    font: 10px "SFMono-Regular", Consolas, monospace;
    color: #b9cde3;
}
.coordinate-top {
    top: 12px;
    left: calc(50% + 9px);
}
.coordinate-side {
    top: calc(47% + 10px);
    left: 15px;
}
.touch-label {
    position: absolute;
    top: 85%;
    width: 100%;
    text-align: center;
    color: #c8ddf7;
    font: 11px "SFMono-Regular", Consolas, monospace;
}
.preview-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid var(--line);
}
.preview-footer button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    border: 1px solid #4a648044;
    border-radius: 5px;
    background: #3d5a80;
    color: #c1d4f2;
    font-size: 12px;
}
.preview-footer button .icon {
    margin-right: 8px;
    width: 15px;
    height: 15px;
}
.preview-footer button:hover {
    background: #4c6f97;
}
.preview-footer button:disabled {
    cursor: wait;
    opacity: 0.65;
}
.preview-footer p {
    font-size: 11px;
    line-height: 1.6;
    color: #bfd0e4;
    margin-top: 10px;
    min-height: 53px;
}
.touch-preview[data-running="true"] .ring-one {
    animation: touch-pulse 0.65s ease-in-out 2;
}
.touch-preview[data-running="true"] .preview-dot {
    background: #acd3ff;
}
@keyframes touch-pulse {
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        border-color: #e1eeff;
    }
}
.capability-strip {
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #ccdaeb;
    font-size: 12px;
    letter-spacing: 0;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}
.capability-strip > span {
    display: inline-flex;
    align-items: center;
}
.capability-strip .icon {
    margin-right: 9px;
    width: 17px;
    height: 17px;
    color: #b2cceb;
}
.eyebrow {
    display: flex;
    align-items: center;
    color: #d7e5f5;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.1px;
    margin-bottom: 24px;
}
.product-section {
    padding: 92px 0 0;
}
.section-intro {
    max-width: 670px;
}
.section-intro > p:last-child {
    max-width: 460px;
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.85;
}
.native-product {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    background: linear-gradient(125deg, #395979, #263e5b 75%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.native-product figure {
    padding: 25px 30px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.screenshot-toolbar {
    font-size: 11px;
    color: #c4d6e9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.screenshot-toolbar > span:first-child {
    letter-spacing: 1px;
    font-size: 10px;
}
.native-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ffffff1b;
    border-radius: 8px;
    box-shadow: 0 14px 30px #162b4133;
}
.native-product figcaption {
    color: #b6cade;
    font-size: 11px;
    margin-top: 19px;
}
.native-description {
    padding: 38px;
}
.volume-key {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid #ffffff33;
    border-bottom-width: 3px;
    border-radius: 9px;
    color: #d4dcea;
    font-size: 24px;
    background: #ffffff07;
    margin-bottom: 24px;
}
.native-description h3 {
    font-size: 27px;
    line-height: 1.22;
    letter-spacing: -0.7px;
    margin-bottom: 20px;
}
.native-description p {
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.85;
}
.native-description .text-link {
    font-size: 12px;
}
.intelligence-section {
    padding: 92px 0 0;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 43px;
}
.section-heading > p {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.85;
    margin-left: 30px;
    padding-bottom: 4px;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
.feature {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
}
.feature-art {
    height: 223px;
    position: relative;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-art {
    background: radial-gradient(ellipse at center, #21395640, transparent 75%);
}
.target-window {
    border: 1px solid #ffffff14;
    border-radius: 8px;
    width: 265px;
    height: 150px;
    position: relative;
    background: #ffffff02;
}
.target-top {
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 10px;
    letter-spacing: 1px;
    color: #b8cde4;
}
.detected-target {
    position: absolute;
    left: 58px;
    top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #80a5ce;
    outline: 6px solid #6b9ed010;
    padding: 11px;
    color: #adc5e4;
    font: 11px "SFMono-Regular", Consolas, monospace;
    background: #7396d211;
}
.detected-target .icon {
    margin-right: 8px;
    width: 18px;
}
.match-tag {
    position: absolute;
    bottom: 8px;
    right: 10px;
    font: 10px "SFMono-Regular", Consolas, monospace;
    color: #91b9ad;
}
.ocr-art {
    flex-direction: column;
    background: radial-gradient(ellipse at center, #29324725, transparent 70%);
}
.ocr-source {
    font-size: 26px;
    letter-spacing: -0.8px;
    color: #ccd7e8;
    border: 1px solid #91b4df77;
    background: #5e8ec419;
    padding: 1px 8px;
}
.ocr-line {
    height: 30px;
    border-left: 1px dashed #ffffff28;
    margin: 12px 0;
}
.ocr-result {
    font: 11px "SFMono-Regular", Consolas, monospace;
    color: #bdcfbe;
}
.ocr-result > span {
    color: #acb8ce;
}
.feature {
    transition: border-color 0.18s ease;
}
.feature:focus-within {
    border-color: #d5e5f57f;
}
.feature-copy {
    padding: 28px 30px 23px;
}
.feature-copy p {
    font-size: 15px;
    line-height: 1.85;
    margin-top: 14px;
    min-height: 77px;
}
.feature-copy .text-link {
    font-size: 12px;
    margin-top: 11px;
}
.tool-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    padding: 20px 0 0;
}
.tool-row article {
    display: flex;
    align-items: flex-start;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff03;
}
.tool-row article > .icon {
    color: #c7def6;
    margin-right: 16px;
    width: 21px;
}
.tool-row h3 {
    font-size: 19px;
    letter-spacing: -0.2px;
    margin: 3px 0 10px;
}
.tool-row p {
    font-size: 14px;
    max-width: 335px;
}
.tool-row a {
    color: #d1e6ff;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 12px;
    margin-top: 8px;
}
.install-section {
    padding: 96px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 100px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}
.install-copy > p:not(.eyebrow) {
    font-size: 16px;
    margin-top: 25px;
    max-width: 360px;
}
.install-copy .text-link {
    margin-top: 22px;
}
.install-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    background: linear-gradient(150deg, #3b5a7d, #263e5b 70%);
    box-shadow: 0 15px 60px #162b4120;
}
.install-card-top {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}
.install-card-top img {
    border-radius: 10px;
    margin-right: 13px;
}
.install-card-top strong {
    display: block;
    font-weight: 550;
    font-size: 17px;
}
.install-card-top div > span {
    display: block;
    font-size: 12px;
    color: #bdcfe2;
    margin-top: 2px;
}
.package-label {
    margin-left: auto;
    font-size: 12px;
    color: #cedff3;
    border: 1px solid #ffffff20;
    border-radius: 5px;
    padding: 2px 9px;
}
.install-card > p {
    font-size: 12px;
}
.repo-copy {
    display: flex;
    align-items: center;
    padding: 5px 6px 5px 14px;
    border: 1px solid #5a708d66;
    background: #213954;
    border-radius: 6px;
    margin-top: 14px;
}
.repo-copy a {
    min-height: 44px;
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    color: #c9dbf7;
    font: 12px/1.7 "SFMono-Regular", Consolas, monospace;
    padding: 10px 0;
}
.repo-copy button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #3d5a80;
    color: #afc9ec;
    border: 0;
    border-radius: 4px;
    width: 44px;
    min-height: 44px;
    margin-left: 8px;
    flex-shrink: 0;
}
.repo-copy button:hover {
    background: #4c6f97;
}
.repo-copy .icon {
    width: 17px;
}
.install-card .copy-feedback {
    font-size: 12px;
    margin-top: 10px;
    min-height: 33px;
}
.install-card ol {
    list-style: none;
    margin: 22px 0 24px;
    padding: 0;
}
.install-card li {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #d7e4f4;
    margin-top: 14px;
}
.install-card li > span {
    margin-top: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-right: 12px;
    border: 1px solid #ffffff24;
    border-radius: 50%;
    font-size: 11px;
    color: #c3dcf8;
}
.install-footnote {
    border-top: 1px solid var(--line);
    padding-top: 17px;
    font-size: 12px;
    color: #bbcee4;
    line-height: 1.85;
}
.install-footnote a {
    color: #d3e8ff;
}
.faq-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 100px;
    padding: 82px 0;
}
.faq-section .text-link {
    margin-top: 26px;
}
.faq-section h2 {
    font-size: 40px;
}
.faq-list {
    border-top: 1px solid var(--line);
}
details {
    border-bottom: 1px solid var(--line);
}
summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    cursor: pointer;
    padding: 21px 0;
    font-size: 15px;
    color: #e0eaf6;
}
summary::-webkit-details-marker {
    display: none;
}
summary > span {
    font-size: 19px;
    color: #bcd2ec;
    margin-left: 20px;
}
summary:hover {
    color: #fff;
}
details[open] summary > span {
    transform: rotate(45deg);
}
details p {
    font-size: 14px;
    line-height: 1.9;
    padding: 0 15px 20px 0;
}
details a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.closing {
    position: relative;
    text-align: center;
    background: radial-gradient(ellipse at 50% 70%, #547aa32b, transparent 70%);
    border-top: 1px solid var(--line);
    padding: 76px 0 89px;
}
.closing .eyebrow {
    justify-content: center;
    margin-top: 26px;
    font-size: 11px;
}
.closing-description {
    margin: 22px auto 0;
    max-width: 420px;
    font-size: 16px;
}
.closing h2 {
    font-size: 56px;
    line-height: 1.08;
}
.closing-symbol {
    position: relative;
    width: 58px;
    height: 58px;
    margin: 0 auto;
}
.closing-symbol > span {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid #89aeda;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.closing-symbol > span:nth-child(1) {
    width: 58px;
    height: 58px;
    opacity: 0.22;
}
.closing-symbol > span:nth-child(2) {
    width: 43px;
    height: 43px;
    opacity: 0.5;
}
.closing-symbol > span:nth-child(3) {
    width: 29px;
    height: 29px;
    background: #91b9ff15;
    box-shadow: 0 0 60px #639cfe33;
}
.footer {
    border-top: 1px solid var(--line);
    padding: 28px 0;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-top .brand {
    font-size: 16px;
}
.footer-top > div {
    display: flex;
}
.footer-top > div > a {
    font-size: 12px;
    color: #c3d3e6;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-left: 24px;
}
.footer a:hover {
    color: #fff;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #b7cbe1;
    font-size: 12px;
    margin-top: 25px;
}
/* Each capability has its own illustrative output. */
.recognition-canvas {
    min-height: 260px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.demo-screen {
    width: 100%;
    max-width: 220px;
    height: 235px;
    border: 1px solid #bdd6f23b;
    border-radius: 10px;
    padding: 18px;
    background: #d8e9ff06;
    position: relative;
}
.demo-screen-label {
    font: 10px/1.5 monospace;
    color: #bbcee4;
    letter-spacing: 1px;
}
.demo-lines {
    margin: 28px 0 24px;
}
.demo-lines i {
    height: 5px;
    width: 80%;
    display: block;
    background: #bed7f221;
    border-radius: 4px;
    margin-top: 10px;
}
.demo-lines i:last-child {
    width: 55%;
}
.demo-target {
    display: block;
    position: relative;
    text-align: center;
    padding: 9px;
    background: #42648a;
    color: #eff6ff;
    border-radius: 4px;
    font-size: 13px;
}
.corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: solid #bad9ff;
    opacity: 0;
    transition: opacity 0.2s;
}
.tl {
    top: -7px;
    left: -7px;
    border-width: 2px 0 0 2px;
}
.tr {
    top: -7px;
    right: -7px;
    border-width: 2px 2px 0 0;
}
.bl {
    bottom: -7px;
    left: -7px;
    border-width: 0 0 2px 2px;
}
.br {
    bottom: -7px;
    right: -7px;
    border-width: 0 2px 2px 0;
}
.demo-result {
    display: block;
    margin-top: 22px;
    font: 11px/1.5 monospace;
    color: #d0e6cf;
    opacity: 0;
}
.demo-ocr-source {
    position: relative;
    padding: 10px 15px;
    font-size: 24px;
    letter-spacing: -0.5px;
    border: 1px solid #a7cbed55;
    background: #ffffff04;
    border-radius: 4px;
    overflow: hidden;
}
.demo-connector {
    height: 36px;
    margin: 15px 0;
    border-left: 1px dashed #b4d0ed66;
}
.demo-ocr-output {
    font: 12px/1.6 monospace;
    color: #d0e6cf;
    opacity: 0.45;
}
.scan-line {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #d3e8ff;
    box-shadow: 0 0 12px #b7d8ff;
}
.touch-preview[data-running="true"] .scan-line {
    display: block;
    animation: scan-text 1.3s ease-in-out;
}
.touch-preview[data-running="true"] .corner,
.touch-preview[data-complete="true"] .corner,
.touch-preview[data-complete="true"] .demo-result,
.touch-preview[data-complete="true"] .demo-ocr-output {
    opacity: 1;
}
@keyframes scan-text {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(60px);
    }
}
html[data-input="pointer"] a:focus,
html[data-input="pointer"] button:focus,
html[data-input="pointer"] summary:focus,
html[data-input="pointer"] [tabindex]:focus {
    outline: none;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
summary:focus:not(:focus-visible),
[tabindex]:focus:not(:focus-visible) {
    outline: none;
}

@media (min-width: 1400px) {
    .hero {
        padding-top: 72px;
    }
    h1 {
        font-size: 86px;
    }
}
@media (max-width: 1100px) {
    .container {
        width: calc(100% - 56px);
    }
    .showcase-body {
        grid-template-columns: 185px minmax(0, 1fr) 230px;
    }
    .workflow-step {
        padding: 11px 7px;
    }
    .workflow-step small {
        font-size: 10px;
    }
    .workflow-step > .icon {
        margin-right: 7px;
    }
    .workflow-panel pre {
        font-size: 12px;
        padding: 15px 20px;
    }
    .code-header {
        padding-left: 20px;
        padding-right: 20px;
    }
    .workflow-explanation {
        padding: 18px 20px 14px;
    }
    .workflow-explanation h3 {
        font-size: 15px;
    }
    .touch-canvas {
        height: 285px;
    }
    .sidebar-bottom {
        font-size: 10px;
        left: 18px;
    }
    h2 {
        font-size: 43px;
    }
    .native-description {
        padding: 28px;
    }
    .native-product figure {
        padding: 25px;
    }
    .install-section,
    .faq-section {
        grid-gap: 60px;
    }
    .navigation > a {
        margin-left: 22px;
    }
}
@media (max-width: 820px) {
    .header-inner {
        min-height: 66px;
        flex-wrap: wrap;
    }
    .navigation {
        max-height: 60vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding: 8px 0 18px;
        justify-content: space-between;
    }
    .navigation > a {
        margin: 0 12px 0 0;
    }
    .navigation > a:last-child {
        margin-right: 0;
    }
    .navigation[data-collapsed="true"] {
        display: none;
    }
    .hero {
        padding-top: 57px;
    }
    h1 {
        font-size: 68px;
        letter-spacing: -3.5px;
    }
    .hero-description {
        font-size: 16px;
    }
    .showcase-body {
        grid-template-columns: 170px minmax(0, 1fr);
    }
    .touch-preview {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
        border-left: 0;
        border-top: 1px solid var(--line);
    }
    .touch-header {
        grid-column: 1 / -1;
        padding: 16px 20px 0;
    }
    .touch-canvas,
    .recognition-canvas {
        height: 215px;
        min-height: 215px;
    }
    .recognition-canvas {
        padding: 16px;
    }
    .demo-screen {
        max-width: 200px;
        height: 180px;
        padding: 14px;
    }
    .demo-lines {
        margin: 12px 0 18px;
    }
    .demo-result {
        margin-top: 15px;
    }
    .preview-footer {
        border-top: 0;
        align-self: center;
        margin: 0;
        padding: 22px;
    }
    .preview-footer p {
        min-height: 53px;
    }
    .workflow-panel pre {
        height: 266px;
        min-height: 266px;
        font-size: 12px;
    }
    .workflow-explanation {
        min-height: 228px;
    }
    .workflow-explanation p {
        min-height: 88px;
    }
    .showcase-top {
        font-size: 12px;
    }
    .native-product {
        grid-template-columns: 1.4fr 1fr;
    }
    .native-description h3 {
        font-size: 22px;
    }
    .native-description p {
        font-size: 12px;
    }
    .screenshot-toolbar > span:last-child {
        display: none;
    }
    .native-product figcaption {
        font-size: 10px;
    }
    .product-section,
    .intelligence-section {
        padding-top: 80px;
    }
    .feature-copy {
        padding: 24px;
    }
    .feature-copy h3 {
        font-size: 18px;
    }
    .feature-copy p {
        font-size: 13px;
    }
    .install-section {
        grid-gap: 35px;
        padding: 80px 0;
    }
    .install-card {
        padding: 23px;
    }
    .install-section h2 {
        font-size: 37px;
    }
    .repo-copy a {
        font-size: 12px;
    }
    .faq-section {
        grid-gap: 40px;
    }
    .footer-top > div > a {
        font-size: 12px;
        margin-left: 16px;
    }
}
@media (max-width: 600px) {
    .container {
        width: calc(100% - 40px);
    }
    .header-inner {
        min-height: 65px;
    }
    .brand {
        font-size: 18px;
    }
    .navigation {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0 20px;
    }
    .navigation > a {
        margin: 0;
        padding: 12px 4px;
        font-size: 14px;
    }
    .navigation .nav-cta {
        margin-top: 10px;
        min-height: 44px;
        font-size: 13px;
    }
    .hero {
        padding: 40px 0 32px;
    }
    .release-link {
        font-size: 11px;
        min-height: 44px;
        padding: 5px 10px;
    }
    h1 {
        font-size: 46px;
        letter-spacing: -2px;
        margin-top: 24px;
    }
    .hero-description {
        font-size: 16px;
        line-height: 1.8;
        margin-top: 21px;
    }
    .hero-description br {
        display: none;
    }
    .hero-actions {
        margin-top: 25px;
    }
    .button {
        font-size: 12px;
        padding: 10px 13px;
        min-height: 46px;
    }
    .button .icon,
    .button > span {
        margin-left: 10px;
        width: 15px;
    }
    .hero-actions > * + * {
        margin-left: 9px;
    }
    .compatibility {
        font-size: 11px;
        margin-top: 17px;
    }
    .compatibility span {
        margin: 0 5px;
    }
    .showcase {
        border-radius: 9px;
    }
    .showcase-top {
        padding: 0 15px;
        min-height: 46px;
        font-size: 12px;
    }
    .showcase-top img {
        width: 16px;
        height: 16px;
        margin-right: 7px;
    }
    .preview-label {
        display: none;
    }
    .showcase-body {
        display: block;
    }
    .workflow-sidebar {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 10px;
    }
    .sidebar-label,
    .sidebar-bottom {
        display: none;
    }
    .workflow-steps {
        display: flex;
    }
    .workflow-step {
        flex: 1;
        width: auto;
        justify-content: center;
        padding: 11px 8px;
        margin: 0;
        min-height: 44px;
    }
    .workflow-step + .workflow-step {
        margin-left: 5px;
    }
    .workflow-step > .icon {
        width: 14px;
        margin-right: 6px;
    }
    .workflow-step strong {
        font-size: 12px;
    }
    .workflow-step small {
        display: none;
    }
    .workflow-panel pre {
        font-size: 12px;
        padding: 13px 19px;
        height: 252px;
        min-height: 252px;
    }
    .code-header {
        padding: 18px 19px 8px;
    }
    .workflow-explanation {
        padding: 20px;
        min-height: 264px;
    }
    .workflow-explanation h3 {
        font-size: 19px;
    }
    .workflow-explanation p {
        font-size: 13px;
        min-height: 86px;
    }
    .workflow-explanation .text-link {
        font-size: 12px;
        min-height: 44px;
        margin-top: 6px;
    }
    .capability-strip {
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 0;
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    .capability-strip > span {
        margin: 8px 10px;
    }
    .capability-strip .icon {
        margin-right: 6px;
        width: 15px;
        height: 15px;
    }
    .product-section {
        padding-top: 63px;
    }
    h2 {
        font-size: 35px;
        letter-spacing: -1.25px;
    }
    .eyebrow {
        font-size: 10px;
        letter-spacing: 0.8px;
        margin-bottom: 20px;
    }
    .section-intro > p:last-child {
        font-size: 16px;
        margin-top: 20px;
    }
    .native-product {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    .native-product figure {
        padding: 22px 19px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .screenshot-toolbar {
        margin-bottom: 18px;
    }
    .screenshot-toolbar > span:last-child {
        display: inline;
        font-size: 10px;
    }
    .native-product figcaption {
        font-size: 11px;
        margin-top: 15px;
    }
    .native-description {
        padding: 26px;
    }
    .volume-key {
        margin-bottom: 20px;
    }
    .native-description h3 {
        font-size: 27px;
    }
    .native-description p {
        font-size: 15px;
    }
    .native-description .text-link {
        font-size: 12px;
    }
    .intelligence-section {
        padding-top: 64px;
    }
    .section-heading {
        display: block;
        margin-bottom: 28px;
    }
    .section-heading > p {
        margin: 22px 0 0;
        max-width: none;
        font-size: 16px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
        grid-gap: 16px;
    }
    .feature-art {
        height: 205px;
    }
    .feature-copy {
        padding: 24px;
    }
    .feature-copy h3 {
        font-size: 22px;
    }
    .feature-copy p {
        font-size: 15px;
        min-height: 0;
    }
    .feature-copy .text-link {
        font-size: 12px;
    }
    .tool-row {
        grid-template-columns: 1fr;
        grid-gap: 16px;
        padding: 16px 0 0;
    }
    .tool-row article {
        padding: 24px;
    }
    .tool-row h3 {
        font-size: 19px;
    }
    .tool-row p {
        font-size: 14px;
    }
    .tool-row a {
        font-size: 12px;
    }
    .install-section {
        grid-template-columns: 1fr;
        grid-gap: 30px;
        padding: 64px 0;
    }
    .install-section h2 {
        font-size: 36px;
    }
    .install-copy > p:not(.eyebrow) {
        margin-top: 20px;
    }
    .install-copy .text-link {
        font-size: 12px;
        margin-top: 17px;
    }
    .install-card {
        padding: 23px;
    }
    .repo-copy {
        padding-left: 11px;
    }
    .repo-copy a {
        font-size: 12px;
    }
    .install-card > p {
        font-size: 13px;
    }
    .install-card li {
        font-size: 13px;
    }
    .install-footnote {
        font-size: 12px;
    }
    .faq-section {
        padding: 62px 0;
        grid-template-columns: 1fr;
        grid-gap: 28px;
    }
    .faq-section h2 {
        font-size: 35px;
    }
    .faq-section .text-link {
        margin-top: 16px;
        font-size: 12px;
    }
    summary {
        font-size: 14px;
    }
    details p {
        font-size: 14px;
    }
    .closing {
        padding: 60px 0;
    }
    .closing h2 {
        font-size: 45px;
        letter-spacing: -1.8px;
    }
    .closing .eyebrow {
        font-size: 10px;
    }
    .closing-description {
        font-size: 15px;
    }
    .footer-top {
        display: block;
    }
    .footer-top > div {
        flex-wrap: wrap;
        margin-top: 17px;
    }
    .footer-top > div > a {
        margin: 0 20px 0 0;
        font-size: 12px;
    }
    .footer-bottom {
        display: block;
        line-height: 2;
    }
    .footer-bottom > span {
        display: block;
    }
}
@media (max-width: 600px) {
    .demo-screen {
        padding: 10px;
        height: 168px;
    }
    .demo-screen-label {
        font-size: 9px;
    }
    .demo-target {
        font-size: 11px;
        padding: 7px 3px;
    }
    .demo-result {
        font-size: 9px;
    }
    .demo-ocr-source {
        font-size: 19px;
        padding: 8px;
    }
    .demo-ocr-output {
        font-size: 10px;
        white-space: nowrap;
    }
    .preview-footer {
        padding: 15px 15px 15px 0;
    }
    .preview-footer p {
        font-size: 11px;
    }
    .touch-label {
        font-size: 9px;
    }
    .ring-three {
        width: 155px;
        height: 155px;
    }
    .ring-two {
        width: 108px;
        height: 108px;
    }
    .ring-one {
        width: 62px;
        height: 62px;
    }
}
@media (max-width: 360px) {
    .container {
        width: calc(100% - 32px);
    }
    h1 {
        font-size: 41px;
        letter-spacing: -2px;
    }
    .button {
        font-size: 12px;
        padding: 10px;
    }
    .button .icon,
    .button > span {
        margin-left: 7px;
    }
    .repo-copy a {
        font-size: 11px;
    }
    .workflow-panel pre {
        font-size: 11px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .target-window {
        width: 245px;
    }
    .ocr-source {
        font-size: 24px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *:before,
    *:after {
        transition: none !important;
        animation: none !important;
    }
}
