:root {
  --ink: #172033;
  --muted: #59647a;
  --line: #dfe5ef;
  --soft: #f4f7fb;
  --paper: #fff;
  --blue: #246bfd;
  --blue-dark: #1554d1;
  --teal: #0e8f84;
  --violet: #7857d8;
  --shadow: 0 24px 70px rgb(38 62 105 / .14);
  --radius: 24px;
  --wrap: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 17px/1.65 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: var(--blue-dark); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--blue); }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #f4a825; outline-offset: 3px; border-radius: 4px; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.5rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.15em; }
.wrap { width: var(--wrap); margin-inline: auto; }
.narrow { width: min(760px, calc(100% - 40px)); 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; z-index: 1000; left: 1rem; top: -6rem; background: var(--ink); color: #fff; padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; z-index: 100; top: 0; background: rgb(255 255 255 / .9); border-bottom: 1px solid rgb(223 229 239 / .8); backdrop-filter: saturate(150%) blur(16px); }
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 750; font-size: 1.16rem; text-decoration: none; letter-spacing: -.02em; }
.brand img { border-radius: 10px; box-shadow: 0 6px 18px rgb(36 107 253 / .18); }
.site-nav { display: flex; align-items: center; gap: 24px; font-size: .94rem; }
.site-nav > a { color: #3e485c; text-decoration: none; font-weight: 600; }
.site-nav > a:hover { color: var(--blue); }
.language-switch { display: flex; gap: 4px; padding-left: 10px; border-left: 1px solid var(--line); }
.language-link { padding: 4px 6px; border-radius: 7px; color: var(--muted); font-size: .72rem; font-weight: 800; text-decoration: none; }
.language-link.active { color: var(--blue-dark); background: #eaf1ff; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 10px; }
.nav-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 2px; }

.hero { overflow: hidden; background: radial-gradient(circle at 78% 25%, #e6f1ff 0, rgb(230 241 255 / 0) 30%), linear-gradient(180deg, #fafcff, #fff); }
.home-hero { position: relative; color: #f7f9ff; background: radial-gradient(circle at 79% 34%, rgb(31 93 255 / .24), transparent 28%), radial-gradient(circle at 58% 100%, rgb(93 45 220 / .17), transparent 38%), linear-gradient(145deg, #030816 0%, #071329 52%, #030813 100%); border-bottom: 1px solid #142446; }
.home-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .18; background-image: linear-gradient(rgb(88 131 219 / .08) 1px, transparent 1px), linear-gradient(90deg, rgb(88 131 219 / .08) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.home-hero .hero-copy, .home-hero .hero-visual { position: relative; z-index: 1; min-width: 0; }
.home-hero .eyebrow { color: #79b9ff; }
.home-hero .hero-lede { color: #b9c5d9; }
.home-hero .text-link { color: #9dcbff; }
.home-hero .trust-row { color: #aebbd0; }
.home-hero .button.disabled { color: #fff; background: linear-gradient(135deg, #246bfd, #174fd9); box-shadow: 0 14px 36px rgb(23 91 247 / .32); }
.hero-grid { min-height: 680px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 7vw; padding-block: 78px 92px; }
.hero h1 { margin-bottom: 24px; max-width: 780px; }
.hero-lede { color: var(--muted); font-size: clamp(1.15rem, 2.3vw, 1.4rem); line-height: 1.55; }
.hero-copy .hero-lede { max-width: 650px; }
.eyebrow { color: var(--blue-dark); font-weight: 800; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 13px; background: var(--blue); color: #fff; font-weight: 750; text-decoration: none; box-shadow: 0 10px 25px rgb(36 107 253 / .22); }
.button:hover { background: var(--blue-dark); color: #fff; }
.button.disabled { background: #253147; box-shadow: none; cursor: default; }
.store-badges { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.store-badge { display: inline-flex; align-items: center; height: 50px; text-decoration: none; transition: transform .18s ease, opacity .18s ease; }
.store-badge:hover { opacity: .9; transform: translateY(-1px); }
.store-badge img { display: block; width: auto; height: 50px; object-fit: contain; }
.store-badge.google-play img { height: 50px; }
.text-link { font-weight: 700; text-decoration: none; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; color: var(--muted); font-size: .84rem; font-weight: 650; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trust-row .icon { width: 18px; height: 18px; color: var(--teal); }

.hero-visual { display: grid; place-items: center; min-height: 500px; }
.app-showcase { position: relative; display: grid; place-items: center; width: min(540px, 92vw); aspect-ratio: 1; isolation: isolate; }
.app-showcase::before { content: ""; position: absolute; inset: 15%; z-index: -1; border-radius: 50%; background: #1f68ff; filter: blur(80px); opacity: .22; }
.app-showcase::after { content: ""; position: absolute; inset: 7%; z-index: -2; border: 1px solid rgb(96 147 255 / .18); border-radius: 34px; transform: rotate(-6deg); box-shadow: inset 0 0 90px rgb(17 67 174 / .13); }
.app-showcase img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 30px 45px rgb(0 0 0 / .44)); }
.app-showcase:hover img { animation: showcase-float 6s ease-in-out infinite; }
.showcase-badge { position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px; min-height: 42px; padding: 9px 14px; border: 1px solid rgb(121 172 255 / .25); border-radius: 13px; color: #dceaff; background: rgb(5 13 31 / .8); box-shadow: 0 18px 45px rgb(0 0 0 / .28); backdrop-filter: blur(16px); font-size: .78rem; font-weight: 750; }
.showcase-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #32d992; box-shadow: 0 0 16px #32d992; }
.showcase-badge.local { left: 1%; bottom: 15%; }
.showcase-badge.search { right: -2%; top: 18%; }
.showcase-badge.search::before { background: #4c92ff; box-shadow: 0 0 16px #4c92ff; }
@keyframes showcase-float { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-8px) rotate(1deg); } }
.document-stack { position: relative; width: min(350px, 74vw); aspect-ratio: .72; }
.doc-page { position: absolute; inset: 0; border: 1px solid #dce4f1; border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.doc-page.back { transform: rotate(9deg) translate(34px, 6px); background: #edf4ff; }
.doc-page.middle { transform: rotate(-6deg) translate(-23px, 12px); background: #f8fbff; }
.doc-page.front { padding: 68px 44px; overflow: hidden; }
.scan-corners { position: absolute; inset: 20px; border: 2px solid var(--blue); border-radius: 13px; opacity: .55; clip-path: polygon(0 0,18% 0,18% 2px,2px 2px,2px 18%,0 18%,0 0,100% 0,100% 18%,calc(100% - 2px) 18%,calc(100% - 2px) 2px,82% 2px,82% 0,100% 0,100% 100%,82% 100%,82% calc(100% - 2px),calc(100% - 2px) calc(100% - 2px),calc(100% - 2px) 82%,100% 82%,100% 100%,0 100%,0 82%,2px 82%,2px calc(100% - 2px),18% calc(100% - 2px),18% 100%); }
.doc-line { display: block; width: 80%; height: 9px; margin: 0 0 16px; background: #dbe3ef; border-radius: 8px; }
.doc-line.wide { width: 100%; height: 14px; background: #26334b; margin-bottom: 28px; }
.doc-line.short { width: 58%; }
.doc-summary { margin-top: 54px; padding: 22px; background: #edf4ff; border-radius: 15px; }
.doc-summary span { display: block; height: 8px; margin: 9px 0; border-radius: 5px; background: #adc7fa; }
.doc-summary span:last-child { width: 66%; }
.floating-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #dce4f1; border-radius: 14px; padding: 10px 14px; box-shadow: 0 16px 40px rgb(35 57 93 / .16); font-size: .82rem; font-weight: 800; }
.floating-chip .icon { width: 19px; height: 19px; color: var(--blue); }
.chip-ocr { top: 17%; left: -25%; }
.chip-private { bottom: 12%; right: -30%; }
.chip-private .icon { color: var(--teal); }

.section { padding-block: 96px; }
.section-title { max-width: 800px; margin-bottom: 20px; }
.section-intro { max-width: 730px; color: var(--muted); font-size: 1.15rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.feature-card { min-height: 255px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); text-decoration: none; background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgb(38 62 105 / .1); border-color: #b9caf0; color: var(--ink); }
.feature-card .icon { width: 38px; height: 38px; color: var(--blue); margin-bottom: 34px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: .96rem; }
.feature-card > span { color: var(--blue-dark); font-size: .87rem; font-weight: 800; }
.tool-showcase { position: relative; overflow: hidden; color: #f4f7ff; background: radial-gradient(circle at 10% 0%, rgb(42 104 255 / .18), transparent 26%), radial-gradient(circle at 90% 55%, rgb(116 57 218 / .14), transparent 28%), #030815; border-block: 1px solid #132343; }
.tool-showcase .eyebrow { color: #75b5ff; }
.tool-showcase .section-intro { color: #aebbd0; }
.showcase-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 42px; }
.showcase-card { position: relative; min-width: 0; min-height: 300px; overflow: hidden; padding: 20px; border: 1px solid rgb(109 150 224 / .17); border-radius: 22px; color: #f6f8ff; text-decoration: none; background: linear-gradient(145deg, rgb(16 27 48 / .94), rgb(5 12 26 / .97)); box-shadow: inset 0 1px rgb(255 255 255 / .035), 0 20px 42px rgb(0 0 0 / .16); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.showcase-card::before { content: ""; position: absolute; width: 140px; height: 140px; top: 16px; right: 8px; border-radius: 50%; background: var(--glow, #246bfd); filter: blur(55px); opacity: .16; }
.showcase-card:hover { color: #fff; transform: translateY(-5px); border-color: rgb(85 144 255 / .48); box-shadow: 0 26px 55px rgb(0 0 0 / .3), inset 0 1px rgb(255 255 255 / .06); }
.showcase-card img { position: relative; z-index: 1; width: 100%; height: 176px; margin: -16px 0 -2px; object-fit: contain; filter: drop-shadow(0 18px 25px rgb(0 0 0 / .36)); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.showcase-card:hover img { transform: translateY(-4px) scale(1.035); }
.showcase-card h3 { position: relative; z-index: 1; margin: 0 0 7px; font-size: 1.08rem; letter-spacing: -.02em; }
.showcase-card p { position: relative; z-index: 1; margin: 0; color: #9daac0; font-size: .82rem; line-height: 1.45; }
.showcase-card[data-tone="violet"] { --glow: #8d4bff; }
.showcase-card[data-tone="cyan"] { --glow: #21c7e6; }
.showcase-card[data-tone="green"] { --glow: #27c88a; }
.showcase-card[data-tone="orange"] { --glow: #ff8b2d; }
.tint { background: var(--soft); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.split-grid > div > p:not(.eyebrow) { color: var(--muted); font-size: 1.12rem; }
.privacy-note { display: flex; gap: 12px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 15px; font-size: .9rem !important; }
.privacy-note .icon { flex: 0 0 auto; color: var(--teal); }
.ai-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ai-list li { min-height: 150px; padding: 24px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.ai-list strong, .ai-list span { display: block; }
.ai-list span { margin-top: 8px; color: var(--muted); font-size: .9rem; }
.section-heading-row { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.section-heading-row h2 { max-width: 700px; margin-bottom: 0; }
.tool-cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.tool-cloud a { padding: 14px 20px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); font-weight: 700; text-decoration: none; }
.tool-cloud a:hover { border-color: var(--blue); color: var(--blue); }
.privacy-panel { background: #13233b; color: #fff; }
.privacy-panel .eyebrow { color: #82c7ff; }
.privacy-panel .split-grid > div > p:not(.eyebrow) { color: #c6d1e1; }
.privacy-panel .text-link { color: #a6d6ff; }
.privacy-visual { position: relative; display: grid; place-items: center; min-height: 360px; }
.privacy-visual .icon { width: 135px; height: 135px; color: #6ccbbe; }
.orbit { position: absolute; width: 270px; height: 270px; border: 1px solid rgb(141 181 224 / .3); border-radius: 50%; }
.orbit.two { width: 355px; height: 355px; }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 30px; margin: 12px 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.privacy-panel .check-list li::before { color: #6ccbbe; }

.breadcrumbs { padding-top: 34px; color: var(--muted); font-size: .8rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; padding-left: 8px; color: #a1aabb; }
.breadcrumbs a { color: var(--muted); }
.page-hero, .guide-hero { padding-block: 70px 72px; text-align: left; }
.page-hero { background: linear-gradient(180deg, #f7faff, #fff); }
.page-hero h1, .guide-hero h1 { font-size: clamp(2.5rem, 6.4vw, 4.8rem); margin-bottom: 24px; }
.article-body { padding-bottom: 64px; }
.article-body > section { margin-bottom: 68px; }
.article-body h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); margin-bottom: 22px; }
.article-body h3 { letter-spacing: -.02em; }
.article-body p, .article-body li { color: #39455a; }
.article-body p { font-size: 1.05rem; }
.note { margin: 32px 0; padding: 24px 26px; border-left: 4px solid var(--blue); background: var(--soft); border-radius: 0 14px 14px 0; }
.note strong { display: block; margin-bottom: 5px; }
.note p { margin: 0; font-size: .96rem; }
.steps { list-style: none; margin: 28px 0; padding: 0; counter-reset: steps; }
.steps li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.steps li > span { display: grid; place-items: center; align-self: start; width: 42px; height: 42px; border-radius: 50%; background: #e9f0ff; color: var(--blue-dark); font-weight: 850; }
.steps h3 { margin: 0 0 6px; }
.steps p { margin: 0; font-size: .96rem; }
.related { background: var(--soft); }
.related h2 { margin-bottom: 30px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: flex; flex-direction: column; gap: 8px; min-height: 145px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; color: var(--ink); text-decoration: none; }
.related-card span { font-weight: 800; }
.related-card small { color: var(--muted); font-size: .88rem; }
.faq { background: #fff; }
.faq-list { margin-top: 34px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; cursor: pointer; list-style: none; padding: 22px 44px 22px 0; font-weight: 750; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 18px; color: var(--blue); font-size: 1.5rem; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details div { padding: 0 44px 20px 0; color: var(--muted); }
.final-cta { padding-block: 70px; background: linear-gradient(135deg, #eaf2ff, #f3efff); }
.final-cta .wrap { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; }
.final-cta img { border-radius: 20px; box-shadow: 0 16px 40px rgb(37 64 110 / .18); }
.final-cta h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 8px; }
.final-cta p { margin: 0; color: var(--muted); }
.final-cta .store-badges { justify-content: flex-end; }

.guide-hero { padding-bottom: 50px; }
.byline { display: flex; flex-wrap: wrap; gap: 8px 22px; padding-top: 18px; color: var(--muted); font-size: .82rem; border-top: 1px solid var(--line); }
.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.guide-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; }
.guide-card h2 { font-size: 1.45rem; letter-spacing: -.025em; }
.guide-card h2 a { color: var(--ink); text-decoration: none; }
.guide-card p:not(.eyebrow) { color: var(--muted); font-size: .94rem; }
.guide-card > span { color: var(--muted); font-size: .8rem; }
.legal-shell { padding-block: 70px; }
.legal-shell h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
.legal-shell h2 { margin-top: 52px; font-size: 1.75rem; }
.legal-shell h3 { margin-top: 32px; }
.legal-shell .meta { color: var(--muted); }
.legal-shell table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.legal-shell th, .legal-shell td { padding: 12px; border: 1px solid var(--line); vertical-align: top; text-align: left; }
.not-found { min-height: 66vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.not-found h1 { font-size: clamp(2.6rem, 7vw, 5rem); margin-bottom: 20px; }
.error-code { color: var(--blue); font-size: 1rem; font-weight: 900; letter-spacing: .16em; }

.site-footer { padding: 70px 0 24px; background: #0d1728; color: #eaf0fa; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 50px; }
.footer-brand { color: #fff; }
.footer-grid p { color: #9eacc2; font-size: .9rem; }
.availability { display: inline-flex; padding: 7px 10px; border: 1px solid #33435d; border-radius: 9px; color: #b9c8dd; font-size: .75rem; }
.app-store-link { text-decoration: none; transition: color .2s ease, border-color .2s ease, background-color .2s ease; }
.app-store-link:hover { color: #fff; border-color: #668bd0; background: rgb(50 91 166 / .18); }
.footer-grid h2 { margin: 8px 0 16px; color: #94a3b9; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand) { display: block; margin: 9px 0; color: #dce6f4; font-size: .88rem; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid #25334a; color: #8d9bb0; font-size: .76rem; }

@media (max-width: 900px) {
  .site-header { backdrop-filter: none; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; inset: 72px 0 auto; padding: 18px 20px 24px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 14px 30px rgb(38 62 105 / .1); flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav.open { display: flex; }
  .site-nav > a { min-height: 46px; display: flex; align-items: center; }
  .language-switch { margin-top: 8px; padding: 10px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 50px; padding-block: 60px 80px; }
  .hero-visual { min-height: 420px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-grid { grid-template-columns: 1fr; }
  .privacy-visual { min-height: 280px; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --wrap: min(calc(100% - 32px), 1160px); }
  body { font-size: 16px; }
  .header-inner { min-height: 66px; }
  .site-nav { top: 66px; }
  .brand img { width: 36px; height: 36px; }
  .hero-grid { padding-block: 46px 64px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-actions .store-badges { width: 100%; }
  .trust-row { gap: 12px; flex-direction: column; }
  .hero-visual { min-height: 330px; }
  .app-showcase { width: 100%; }
  .showcase-badge { font-size: .7rem; padding: 7px 10px; }
  .showcase-badge.local { left: 0; }
  .showcase-badge.search { right: 0; }
  .document-stack { width: 230px; }
  .doc-page.front { padding: 46px 30px; }
  .doc-summary { margin-top: 32px; padding: 15px; }
  .chip-ocr { left: -18%; }
  .chip-private { right: -20%; }
  .section { padding-block: 68px; }
  .feature-grid, .ai-list, .guide-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .showcase-card { min-height: 250px; padding: 14px; border-radius: 18px; }
  .showcase-card img { height: 142px; margin-top: -11px; }
  .showcase-card h3 { font-size: .94rem; }
  .showcase-card p { font-size: .74rem; }
  .feature-card { min-height: 0; }
  .privacy-visual { overflow: hidden; }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .page-hero, .guide-hero { padding-block: 52px; }
  .article-body > section { margin-bottom: 52px; }
  .steps li { grid-template-columns: 44px 1fr; gap: 12px; }
  .final-cta .wrap { grid-template-columns: auto 1fr; }
  .final-cta .button { grid-column: 1 / -1; }
  .final-cta .store-badges { grid-column: 1 / -1; justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .legal-shell table { display: block; overflow-x: auto; }
}

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

@media (max-width: 390px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card { min-height: 280px; }
  .showcase-card img { height: 175px; }
}

.hero-slogan { margin: .45rem 0 0; color: var(--blue-dark); font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 700; letter-spacing: .01em; }

.tool-page-art { width: min(100%, 34rem); margin: 1.75rem auto 0; border: 1px solid rgba(64,127,255,.2); border-radius: 1.75rem; overflow: hidden; background: radial-gradient(circle at 50% 35%, rgba(43,103,255,.22), transparent 60%), #071329; box-shadow: 0 1.4rem 3.5rem rgba(7,19,41,.2); }
.tool-page-art img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; }
@media (prefers-color-scheme: dark) { .tool-page-art { border-color: rgba(111,158,255,.3); box-shadow: 0 1.4rem 4rem rgba(0,0,0,.35); } }
