:root {
    --ink: #07111f;
    --ink-soft: #344155;
    --muted: #68758a;
    --paper: #f7f9fc;
    --white: #ffffff;
    --line: #dfe5ed;
    --cyan: #16b8c4;
    --cyan-dark: #087e89;
    --cyan-pale: #dff7f7;
    --navy: #081525;
    --violet: #7357ff;
    --shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input { font: inherit; }
svg { display: block; }
a:focus-visible, button:focus-visible {
    outline: 3px solid rgba(22, 184, 196, .48);
    outline-offset: 4px;
    border-radius: 8px;
}
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.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; top: 10px; left: 10px; z-index: 9999; padding: 10px 14px; background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(247, 249, 252, 0.86);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: border-color .25s, box-shadow .25s;
}
.site-header.scrolled { border-color: rgba(7, 17, 31, .08); box-shadow: 0 8px 35px rgba(7, 17, 31, .05); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: Manrope, sans-serif; font-size: 20px; font-weight: 800; text-decoration: none; letter-spacing: -.04em; }
.brand strong { color: var(--cyan-dark); }
.brand-mark { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 11px; background: var(--ink); color: var(--white); font-size: 16px; }
.brand-mark svg { width: 25px; fill: none; stroke: var(--white); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: #465267; text-decoration: none; font-size: 14px; font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links .nav-cta { padding: 11px 17px; border: 1px solid #cfd7e2; border-radius: 11px; color: var(--ink); background: rgba(255,255,255,.6); }
.menu-button { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s; }

.hero { min-height: 760px; padding-top: 156px; padding-bottom: 90px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 66px; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; color: var(--cyan-dark); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 23px; height: 2px; background: var(--cyan); }
h1, h2, h3 { font-family: Manrope, sans-serif; }
h1 { max-width: 650px; margin: 0; font-size: clamp(48px, 5.25vw, 76px); line-height: .99; letter-spacing: -.065em; }
h1 em { display: block; color: var(--cyan-dark); font-style: normal; }
.hero-lede { max-width: 590px; margin: 28px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.72; }
.hero-actions { margin-top: 35px; display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 50px; padding: 0 21px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; border: 1px solid transparent; border-radius: 12px; text-decoration: none; font-weight: 700; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); box-shadow: 0 12px 30px rgba(7,17,31,.18); }
.button-primary:hover { background: #14243a; box-shadow: 0 16px 35px rgba(7,17,31,.22); }
.button-secondary { background: var(--white); color: var(--ink); border-color: var(--line); }
.trust-row { margin-top: 34px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; color: #788499; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.trust-row i { width: 3px; height: 3px; border-radius: 50%; background: #b4becb; }

.hero-visual { position: relative; min-width: 0; }
.browser-card { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(255,255,255,.7); border-radius: 22px; background: var(--white); box-shadow: 0 34px 90px rgba(10, 31, 52, .2); transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.browser-bar { height: 48px; display: grid; grid-template-columns: 70px 1fr 36px; align-items: center; gap: 10px; padding: 0 16px; background: #eef2f6; border-bottom: 1px solid #dde3ea; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots span { width: 7px; height: 7px; border-radius: 50%; background: #c1c9d3; }
.address-bar { padding: 8px 14px; border: 1px solid #d8dfe8; border-radius: 8px; background: var(--white); color: #8792a2; font-size: 11px; text-align: center; }
.lock { color: var(--cyan-dark); }
.browser-menu { color: #8a95a4; letter-spacing: 1px; }
.browser-body { min-height: 420px; display: grid; grid-template-columns: 1fr 230px; }
.mock-page { padding: 52px 34px 28px; background: linear-gradient(145deg, #fff 0%, #f0f4f7 100%); }
.mock-label, .mock-title, .mock-lines span { display: block; border-radius: 5px; background: #dbe2e9; }
.mock-label { width: 55px; height: 7px; margin-bottom: 18px; background: var(--cyan); }
.mock-title { height: 13px; margin-bottom: 9px; background: #5c6878; }
.mock-title.wide { width: 85%; }
.mock-title.short { width: 57%; }
.mock-lines { margin-top: 24px; }
.mock-lines span { width: 95%; height: 6px; margin-bottom: 8px; }
.mock-lines span:nth-child(2) { width: 82%; }
.mock-lines span:nth-child(3) { width: 90%; }
.mock-lines span:nth-child(4) { width: 62%; }
.mock-chart { height: 158px; margin-top: 38px; padding: 18px 18px 0; display: flex; align-items: flex-end; gap: 10px; border-left: 1px solid #d2dbe4; border-bottom: 1px solid #d2dbe4; background-image: linear-gradient(#e7ebf0 1px, transparent 1px); background-size: 100% 34px; }
.mock-chart span { flex: 1; height: var(--height); border-radius: 4px 4px 0 0; background: linear-gradient(#29c4ce, #0c8791); box-shadow: 0 5px 12px rgba(22,184,196,.2); }
.extension-panel { padding: 20px 16px; background: #0c192a; color: var(--white); }
.panel-heading { display: grid; grid-template-columns: 31px 1fr 8px; align-items: center; gap: 9px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.panel-heading div { min-width: 0; }
.panel-heading strong, .panel-heading small { display: block; }
.panel-heading strong { font-family: Manrope, sans-serif; font-size: 12px; }
.panel-heading small { margin-top: 2px; color: #8190a3; font-size: 9px; }
.mini-mark { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: var(--cyan); font-weight: 800; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #4bdd94; box-shadow: 0 0 0 4px rgba(75,221,148,.1); }
.analysis-card { margin-top: 14px; padding: 12px 10px; display: grid; grid-template-columns: 28px 1fr 18px; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: rgba(255,255,255,.035); }
.analysis-card strong, .analysis-card small { display: block; }
.analysis-card strong { font-size: 10px; }
.analysis-card small { margin-top: 3px; color: #7f8da0; font-size: 8px; }
.analysis-icon { color: #61d5dc; font-family: Manrope, sans-serif; font-size: 9px; font-weight: 800; }
.check { color: #51d899; font-size: 13px; }
.loader { width: 12px; height: 12px; border: 2px solid rgba(255,255,255,.15); border-top-color: var(--cyan); border-radius: 50%; animation: spin 1.1s linear infinite; }
.mock-button { width: 100%; margin-top: 18px; padding: 10px; border: 0; border-radius: 9px; background: var(--cyan); color: #06151d; font-size: 9px; font-weight: 800; }
.glow { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .65; }
.glow-one { width: 320px; height: 320px; top: -55px; right: -55px; background: rgba(22,184,196,.22); }
.glow-two { width: 260px; height: 260px; bottom: -65px; left: -45px; background: rgba(115,87,255,.16); }
.floating-chip { position: absolute; z-index: 3; padding: 11px 14px; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.8); border-radius: 10px; background: rgba(255,255,255,.92); box-shadow: 0 16px 35px rgba(7,17,31,.13); backdrop-filter: blur(10px); color: #344155; font-size: 11px; font-weight: 700; }
.floating-chip span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; background: var(--cyan-pale); color: var(--cyan-dark); }
.chip-top { top: 57px; right: -28px; }
.chip-bottom { bottom: 38px; left: -35px; }
@keyframes spin { to { transform: rotate(360deg); } }

.value-strip { border-block: 1px solid var(--line); background: var(--white); }
.value-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.value-grid > div { padding: 8px 28px; border-right: 1px solid var(--line); }
.value-grid > div:first-child { padding-left: 0; }
.value-grid > div:last-child { border: 0; }
.value-grid strong, .value-grid span { display: block; }
.value-grid strong { font: 800 18px Manrope, sans-serif; }
.value-grid span { margin-top: 5px; color: var(--muted); font-size: 12px; }

.section { padding-top: 112px; padding-bottom: 112px; scroll-margin-top: 70px; }
.section-heading { max-width: 630px; }
.section-heading.centered { margin: 0 auto 52px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .install-copy h2, .honesty-grid h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.05em; }
.section-heading > p:not(.eyebrow), .install-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card { position: relative; overflow: hidden; min-height: 300px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 30px rgba(7,17,31,.035); }
.feature-card-wide { grid-column: span 2; min-height: 310px; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 60px; }
.feature-number { display: inline-block; margin-bottom: 38px; color: var(--cyan-dark); font: 800 11px Manrope, sans-serif; letter-spacing: .12em; }
.feature-card h3 { margin: 0 0 13px; font-size: 24px; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.icon-box { width: 62px; height: 62px; margin: -7px 0 28px; display: flex; align-items: flex-end; justify-content: center; gap: 5px; border-radius: 16px; background: var(--cyan-pale); color: var(--cyan-dark); font-size: 26px; }
.chart-icon { padding: 14px; }
.chart-icon i { width: 6px; height: 30%; border-radius: 3px 3px 0 0; background: var(--cyan-dark); }
.chart-icon i:nth-child(2) { height: 65%; }.chart-icon i:nth-child(3) { height: 45%; }.chart-icon i:nth-child(4) { height: 82%; }
.text-demo { padding: 25px; border: 1px solid #dce3eb; border-radius: 16px; background: #f9fbfc; box-shadow: 0 16px 35px rgba(7,17,31,.07); transform: rotate(1.5deg); }
.text-demo-top { margin-bottom: 18px; display: flex; justify-content: space-between; color: #8792a1; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.live-dot { color: #1a9b68; }.live-dot::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: #35c887; }
.text-demo p { margin: 11px 0; color: #364359; font-size: 13px; line-height: 1.5; }
.text-demo .muted-line { color: #a7b0bd; font-size: 11px; }
.strike { text-decoration: line-through; }
mark { padding: 1px 3px; background: #ccf4f1; color: var(--ink); }
.file-demo { padding: 22px; display: grid; grid-template-columns: 50px 1fr 38px; gap: 14px; align-items: center; border: 1px solid var(--line); border-radius: 15px; background: #f9fbfc; }
.file-icon { width: 46px; height: 56px; position: relative; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 9px; border-radius: 7px; background: var(--ink); color: var(--white); }
.file-icon::after { content: ""; position: absolute; top: 0; right: 0; border-style: solid; border-width: 0 0 13px 13px; border-color: transparent transparent #435066 transparent; }
.file-icon span { font-size: 8px; font-weight: 800; }
.file-demo strong, .file-demo small { display: block; }.file-demo strong { font-size: 13px; }.file-demo small { margin-top: 5px; color: var(--muted); font-size: 10px; }
.download-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: var(--cyan-pale); color: var(--cyan-dark); }

.workflow-section { background: var(--white); border-block: 1px solid var(--line); }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.1fr .7fr; align-items: end; gap: 100px; }
.split-heading > p { margin: 0; }
.steps { margin-top: 68px; display: flex; align-items: flex-start; }
.step { flex: 1; position: relative; }
.step-index { color: #9aa5b5; font: 700 10px Manrope, sans-serif; letter-spacing: .13em; }
.step-icon { width: 54px; height: 54px; margin: 17px 0 25px; display: grid; place-items: center; border: 1px solid #cfd8e2; border-radius: 15px; background: var(--paper); color: var(--cyan-dark); font-size: 23px; font-weight: 700; }
.step h3 { margin: 0 0 9px; font-size: 19px; }.step p { max-width: 205px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.step-line { flex: 0 0 45px; height: 1px; margin: 58px 14px 0; background: repeating-linear-gradient(90deg, #b7c2cf 0 4px, transparent 4px 9px); }

.architecture-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: center; }
.text-link { display: inline-flex; align-items: center; gap: 11px; margin-top: 18px; color: var(--cyan-dark); font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.architecture-map { padding: 42px; border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: var(--shadow); }
.arch-row { display: flex; align-items: center; justify-content: center; gap: 18px; }.arch-row.outputs { justify-content: space-between; }
.arch-node { min-width: 185px; padding: 17px 20px; border: 1px solid var(--line); border-radius: 13px; background: #f9fbfc; text-align: left; }
.arch-node span, .arch-node strong, .arch-node small { display: block; }.arch-node span { color: var(--cyan-dark); font-size: 8px; font-weight: 800; letter-spacing: .13em; }.arch-node strong { margin-top: 5px; font: 700 13px Manrope, sans-serif; }.arch-node small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.user-node { width: 190px; margin: 0 auto; }.accent-node { background: var(--ink); border-color: var(--ink); color: var(--white); }.accent-node small { color: #94a2b5; }
.arch-arrow { color: #95a2b2; }.arch-arrow.vertical { margin: 8px 0; text-align: center; }
.arch-branch { width: 52%; height: 30px; margin: 8px auto 0; border-top: 1px dashed #b5c0cd; border-inline: 1px dashed #b5c0cd; }

.honesty-section { background: var(--navy); color: var(--white); }
.honesty-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: center; }
.eyebrow.light { color: #63d8df; }
.status-list { border-top: 1px solid rgba(255,255,255,.13); }
.status-list > div { padding: 20px 0; display: grid; grid-template-columns: 34px 1fr; align-items: start; gap: 13px; border-bottom: 1px solid rgba(255,255,255,.13); }
.status-list p { margin: 0; color: #9eabbc; font-size: 14px; line-height: 1.5; }.status-list strong { display: block; margin-bottom: 4px; color: var(--white); }
.status-symbol { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 7px; font-weight: 800; }.status-symbol.done { background: rgba(59,205,137,.15); color: #53da9a; }.status-symbol.partial { background: rgba(87,190,223,.14); color: #5ed4e1; }.status-symbol.note { background: rgba(246,190,65,.13); color: #f2c45d; }.status-symbol.warn { background: rgba(237,99,99,.12); color: #f08080; }

.install-card { padding: 65px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; border: 1px solid var(--line); border-radius: 30px; background: var(--white); box-shadow: var(--shadow); }
.install-links { margin-top: 28px; display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }.install-links .text-link { margin: 0; }
.install-steps { margin: 0; padding: 0; list-style: none; }
.install-steps li { padding: 18px 0; display: grid; grid-template-columns: 34px 1fr; gap: 14px; border-bottom: 1px solid var(--line); }.install-steps li:first-child { padding-top: 0; }.install-steps li:last-child { padding-bottom: 0; border: 0; }
.install-steps li > span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 8px; background: var(--cyan-pale); color: var(--cyan-dark); font-size: 11px; font-weight: 800; }
.install-steps strong { display: block; margin-bottom: 7px; font-family: Manrope, sans-serif; font-size: 14px; }.install-steps p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.install-steps code { display: block; padding: 10px 12px; border-radius: 8px; background: #101c2b; color: #b8e9e8; font-size: 10px; line-height: 1.6; overflow-x: auto; }

.docs-section { padding-bottom: 120px; }
.docs-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 20px; background: var(--white); overflow: hidden; }
.docs-grid a { min-height: 195px; padding: 28px; position: relative; border-right: 1px solid var(--line); text-decoration: none; transition: background .2s; }.docs-grid a:last-child { border: 0; }.docs-grid a:hover { background: #f0f8f8; }
.docs-grid span { color: var(--cyan-dark); font-size: 9px; font-weight: 800; }.docs-grid strong, .docs-grid small { display: block; }.docs-grid strong { margin-top: 34px; font: 700 17px Manrope, sans-serif; }.docs-grid small { margin-top: 7px; color: var(--muted); line-height: 1.5; }.docs-grid i { position: absolute; right: 24px; bottom: 24px; color: var(--cyan-dark); font-style: normal; }

.site-footer { padding: 70px 0 25px; background: #050d18; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }.footer-brand .brand-mark { background: var(--cyan); color: var(--ink); }.footer-grid > div > p { max-width: 390px; color: #7f8da0; line-height: 1.65; }
.footer-links { display: flex; justify-content: flex-end; gap: 100px; }.footer-links div { display: flex; flex-direction: column; gap: 12px; }.footer-links strong { margin-bottom: 5px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }.footer-links a { color: #8d9aab; font-size: 14px; text-decoration: none; }.footer-links a:hover { color: var(--white); }
.footer-bottom { margin-top: 55px; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: #667386; font-size: 11px; }

@media (max-width: 1050px) {
    .hero { grid-template-columns: 1fr; padding-top: 145px; }
    .hero-copy { max-width: 720px; }
    .hero-visual { width: min(700px, 95%); margin: 0 auto; }
    .architecture-grid, .install-card { gap: 50px; }
    .docs-grid { grid-template-columns: repeat(2, 1fr); }.docs-grid a:nth-child(2) { border-right: 0; }.docs-grid a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
    .shell { width: min(100% - 32px, 680px); }
    .menu-button { display: block; }
    .nav-links { position: fixed; inset: 78px 0 auto; padding: 25px 24px 32px; display: flex; flex-direction: column; align-items: stretch; gap: 4px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(7,17,31,.1); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: .25s; }
    .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }.nav-links a { padding: 12px; font-size: 16px; }.nav-links .nav-cta { margin-top: 8px; text-align: center; }
    .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }.menu-button[aria-expanded="true"] span:nth-child(3) { opacity: 0; }.menu-button[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
    .value-grid { grid-template-columns: 1fr 1fr; padding-block: 22px; }.value-grid > div { padding: 16px 20px; }.value-grid > div:nth-child(2) { border-right: 0; }.value-grid > div:first-child { padding-left: 20px; }
    .feature-card-wide { grid-template-columns: 1fr; gap: 35px; }.split-heading, .architecture-grid, .honesty-grid, .install-card { grid-template-columns: 1fr; }.split-heading { gap: 18px; }
    .steps { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }.step-line { display: none; }
    .architecture-grid, .honesty-grid { gap: 50px; }.install-card { padding: 45px; }.footer-grid { grid-template-columns: 1fr; }.footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
    .shell { width: min(100% - 24px, 480px); }
    .hero { min-height: auto; padding-top: 125px; padding-bottom: 70px; gap: 55px; }.hero-lede { font-size: 16px; }.hero-actions .button { width: 100%; }.trust-row { gap: 9px; }
    .browser-card { transform: none; }.browser-body { min-height: 355px; grid-template-columns: 1fr 155px; }.mock-page { padding: 38px 18px 20px; }.mock-chart { height: 120px; padding-inline: 8px; gap: 6px; }.extension-panel { padding: 13px 9px; }.analysis-card { padding: 8px 6px; grid-template-columns: 20px 1fr 13px; }.analysis-card small { display: none; }.chip-top { top: -30px; right: 5px; }.chip-bottom { bottom: -30px; left: 5px; }
    .value-grid { grid-template-columns: 1fr; }.value-grid > div, .value-grid > div:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }.value-grid > div:last-child { border-bottom: 0; }
    .section { padding-block: 82px; }.feature-grid { grid-template-columns: 1fr; }.feature-card, .feature-card-wide { grid-column: auto; min-height: auto; padding: 27px; }.feature-number { margin-bottom: 25px; }.file-demo { grid-template-columns: 45px 1fr; }.download-mark { display: none; }
    .steps { grid-template-columns: 1fr; }.step p { max-width: none; }.architecture-map { padding: 24px 15px; }.arch-row { gap: 8px; }.arch-node { min-width: 0; flex: 1; padding: 13px; }.arch-arrow { font-size: 12px; }.arch-branch { width: 58%; }
    .install-card { padding: 30px 22px; }.docs-grid { grid-template-columns: 1fr; }.docs-grid a, .docs-grid a:nth-child(2), .docs-grid a:nth-child(-n+2) { border: 0; border-bottom: 1px solid var(--line); }.docs-grid a:last-child { border: 0; }
    .footer-links { gap: 55px; }.footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
