:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --surface: rgba(255,255,255,.78);
  --surface-solid: #fff;
  --text: #101828;
  --muted: #667085;
  --border: rgba(16,24,40,.1);
  --accent: #1aa6a9;
  --accent-strong: #087b7d;
  --accent-soft: #dff8f6;
  --violet: #705cf6;
  --shadow: 0 24px 70px rgba(16,24,40,.09);
  --radius: 24px;
  --header: rgba(247,249,252,.82);
  --github-filter: none;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #090d14;
  --surface: rgba(19,25,36,.74);
  --surface-solid: #121924;
  --text: #eef4ff;
  --muted: #9ba9bd;
  --border: rgba(238,244,255,.11);
  --accent: #55d3cd;
  --accent-strong: #84e7e1;
  --accent-soft: #103c3d;
  --violet: #a999ff;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --header: rgba(9,13,20,.82);
  --github-filter: invert(1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 2%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 32rem),
    radial-gradient(circle at 2% 30%, color-mix(in srgb, var(--violet) 8%, transparent), transparent 36rem),
    var(--bg);
  font: 16px/1.7 var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; }
[hidden] { display: none !important; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 16px; background: var(--text); color: var(--bg); border-radius: 10px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50; height: 70px;
  border-bottom: 1px solid var(--border); background: var(--header);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.nav { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #16b6ad, #6555ed); border-radius: 11px 11px 11px 4px; box-shadow: 0 8px 24px rgba(40,150,160,.26); }
.brand-mark::before { content: "OK"; font: 700 10px/1 var(--font-mono); }
.brand-project-icon { width: 36px; height: 36px; display: grid; place-items: center; overflow: hidden; background: transparent; border: 0; border-radius: 11px; }
.brand-project-icon img { width: 100%; height: 100%; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; color: var(--muted); font-weight: 650; font-size: 16px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-button { height: 38px; border: 1px solid var(--border); color: var(--text); background: var(--surface); border-radius: 12px; }
.icon-button { width: 38px; display: grid; place-items: center; cursor: pointer; }
.icon-button:hover { border-color: color-mix(in srgb, var(--accent) 65%, var(--border)); }
.custom-dropdown { position: relative; }
.project-switcher { margin-right: auto; }
.dropdown-trigger { height: 42px; display: inline-flex; align-items: center; gap: 9px; padding: 0 12px; color: var(--text); background: var(--surface-solid); border: 1px solid var(--border); border-radius: 13px; box-shadow: 0 7px 20px rgba(16,24,40,.06); cursor: pointer; font-size: 15px; font-weight: 750; }
.dropdown-trigger:hover, .dropdown-trigger[aria-expanded="true"] { border-color: color-mix(in srgb,var(--accent) 62%,var(--border)); }
.dropdown-trigger:focus-visible { outline: 3px solid color-mix(in srgb,var(--accent) 20%,transparent); outline-offset: 2px; }
.project-trigger { min-width: 148px; justify-content: flex-start; }
.language-trigger { min-width: 142px; }
.dropdown-arrow { width: 8px; height: 8px; flex: none; margin-left: auto; color: var(--muted); border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; font-size: 0; line-height: 0; transform: translateY(-2px) rotate(45deg); transform-origin: center; transition: transform .18s ease; }
.dropdown-trigger[aria-expanded="true"] .dropdown-arrow { transform: translateY(2px) rotate(225deg); }
.dropdown-current-icon, .dropdown-option-icon { width: 27px; height: 27px; display: grid; place-items: center; flex: none; overflow: hidden; background: transparent; border: 0; border-radius: 8px; }
.dropdown-current-icon img, .dropdown-option-icon img { width: 100%; height: 100%; object-fit: contain; }
.dropdown-current-icon.brand-mark, .dropdown-option-icon.brand-mark { color: #fff; border: 0; box-shadow: none; }
.dropdown-current-icon.brand-mark::before, .dropdown-option-icon.brand-mark::before { font-size: 8px; }
.language-symbol { width: 23px; color: var(--accent-strong); text-align: center; font-size: 13px; font-weight: 850; }
.dropdown-menu { position: absolute; z-index: 90; top: calc(100% + 9px); min-width: 220px; display: grid; gap: 3px; padding: 7px; color: var(--text); background: var(--surface-solid); border: 1px solid var(--border); border-radius: 15px; box-shadow: var(--shadow); }
.project-menu { left: 0; }
.language-menu { right: 0; }
.dropdown-option { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 6px 9px; border-radius: 10px; font-size: 14px; font-weight: 650; }
.dropdown-option:hover, .dropdown-option:focus-visible { color: var(--text); background: color-mix(in srgb,var(--accent) 10%,transparent); outline: 0; }
.dropdown-option[aria-current="page"] { color: var(--accent-strong); background: color-mix(in srgb,var(--accent) 13%,transparent); }
.language-code { min-width: 42px; color: var(--muted); font: 500 10px var(--font-mono); text-transform: uppercase; }
.github-link { display: inline-flex; align-items: center; gap: 6px; }
.inline-icon { width: 15px; height: 15px; flex: none; filter: var(--github-filter); }
.menu-button { display: none; }

.hero { position: relative; z-index: 2; min-height: 550px; padding: 56px 0 40px; overflow: visible; }
.landing-container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.hero-grid { display: grid; align-items: center; }
.hero-single { grid-template-columns: minmax(0, 1fr); }
.hero-single > div { width: 100%; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; color: var(--accent-strong); font-size: 15px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
h1 { width: 100%; max-width: none; margin: 0; font-size: clamp(54px, 7vw, 108px); line-height: 1.01; letter-spacing: -.06em; }
.hero-framework { min-height: 400px; padding: 28px 0 24px; }
.hero-framework .eyebrow { margin-bottom: 14px; }
.hero-framework h1 { font-size: clamp(36px, 4.5vw, 64px); }
.hero-framework .hero-copy { margin: 18px 0 22px; }
.title-line { display: block; white-space: nowrap; }
.gradient-text { color: transparent; background: linear-gradient(110deg, var(--accent), var(--violet)); background-clip: text; -webkit-background-clip: text; }
.hero-copy { max-width: 1100px; margin: 26px 0 30px; color: var(--muted); font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); font-weight: 700; transition: transform .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(16,24,40,.09); }
.button.primary { border-color: transparent; color: #fff; background: linear-gradient(115deg, #149f9f, #6670ee); }
.button code { font: 600 12px var(--font-mono); }
.pip-button { padding-left: 9px; }
.pip-mark { display: grid; place-items: center; min-width: 35px; height: 30px; padding: 0 6px; color: #fff; background: linear-gradient(135deg, #3775a9 50%, #ffd343 50%); border-radius: 9px; font-size: 8px; font-weight: 800; }
.download-split { display: inline-flex; align-items: stretch; }
.download-main { border-radius: 14px 0 0 14px; }
.download-main:hover { transform: none; }
.download-main strong { padding-left: 2px; }
.download-main small { color: rgba(255,255,255,.78); font-size: 10px; font-weight: 750; text-transform: uppercase; }
.download-toggle { width: 42px; display: flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(115deg, #4e66dc, #6670ee); border: 0; border-left: 1px solid rgba(255,255,255,.25); border-radius: 0 14px 14px 0; cursor: pointer; }
.download-toggle:hover, .download-toggle[aria-expanded="true"] { background: #5964dc; }
.download-toggle:focus-visible { position: relative; outline: 3px solid color-mix(in srgb,var(--accent) 25%,transparent); outline-offset: 2px; }
.download-toggle .dropdown-arrow { margin: 0; color: currentColor; }
.download-toggle[aria-expanded="true"] .dropdown-arrow { transform: translateY(2px) rotate(225deg); }
.download-menu { left: 0; right: 0; min-width: 100%; }
.download-option { justify-content: space-between; }
.download-option strong { color: var(--accent-strong); font: 650 11px var(--font-mono); }
.download-split[data-downloading="true"] .download-main { opacity: .72; cursor: progress; pointer-events: none; }
.download-split[data-downloading="true"] .download-main > span:last-child { animation: download-pulse .8s ease-in-out infinite alternate; }
.download-split[data-downloading="true"] .download-toggle { opacity: .62; cursor: not-allowed; }
.download-guide { position: fixed; z-index: 50; top: 18px; right: 18px; display: flex; align-items: center; gap: 10px; max-width: min(360px, calc(100vw - 36px)); padding: 13px 16px; border: 1px solid var(--border-strong); border-radius: 14px; background: color-mix(in srgb, var(--surface) 92%, var(--accent) 8%); box-shadow: 0 14px 38px rgba(0,0,0,.18); color: var(--text); font-size: 14px; font-weight: 700; opacity: 0; transform: translateY(-12px) scale(.96); transition: opacity .24s ease, transform .24s ease; pointer-events: none; }
.download-guide.visible { opacity: 1; transform: translateY(0) scale(1); }
.download-guide-arrow { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 22px; line-height: 1; animation: download-guide-bounce 1s ease-in-out infinite alternate; }
@keyframes download-guide-bounce { from { transform: translate(0, 2px); } to { transform: translate(4px, -3px); } }
.download-option[aria-disabled="true"] { opacity: .6; pointer-events: none; }
@keyframes download-pulse { to { transform: translateY(3px); } }
.download-alternatives { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-top: 16px; color: var(--muted); font-size: 12px; }
.download-alternatives span { font-weight: 650; }.download-alternatives a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }
.community-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 17px; }
.community-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; margin-top: 18px; }
.community-meta-row .community-row { margin-top: 0; }
.community-stars { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; }
.community-stars strong { color: var(--text); }
.community-stars:hover, .project-stars:hover { color: var(--accent-strong); }
.project-stars { color: inherit; }
.community-updated { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; }
.community-updated strong { color: var(--text); }
.community-label { display: inline-flex; align-items: center; gap: 6px; margin-right: 3px; color: var(--muted); font-size: 12px; font-weight: 650; }
.community-heading-icon { width: 21px; height: 21px; display: grid; place-items: center; color: var(--accent-strong); background: transparent; border-radius: 7px; font-size: 12px; }
.community-chip { display: inline-flex; align-items: center; gap: 7px; min-height: 30px; padding: 3px 10px 3px 7px; color: var(--muted); background: var(--surface); border: 1px solid var(--border); border-radius: 999px; font-size: 11px; font-weight: 700; }
.community-icon { width: 19px; height: 19px; flex: none; object-fit: contain; background: transparent; }
button.community-chip { cursor: pointer; }
button.community-chip.copied { color: #178559; border-color: rgba(38,190,126,.45); }
a.community-chip:hover { color: var(--text); border-color: color-mix(in srgb,var(--accent) 50%,var(--border)); }

.section { padding: 48px 0; }
.section-muted { border-block: 1px solid var(--border); background: color-mix(in srgb, var(--surface-solid) 45%, transparent); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.section-head.compact { align-items: center; }
.section-head.compact .section-kicker { min-width: max-content; margin-bottom: 0; }
.section-kicker { margin-bottom: 10px; color: var(--accent-strong); font-size: 18px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.15; letter-spacing: -.045em; }
.section-head p { width: 66.666%; max-width: 780px; margin: 0; color: var(--muted); }
#projects .section-head p { text-align: right; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card, .project-card { position: relative; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); transition: transform .2s ease, border-color .2s ease; }
.feature-card { min-height: 132px; display: grid; grid-template-columns: 45px minmax(0,1fr); grid-template-rows: auto 1fr; align-content: center; column-gap: 17px; padding: 22px; overflow: hidden; }
.feature-card:hover, .project-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 55%, var(--border)); }
.feature-icon { width: 45px; height: 45px; display: grid; grid-row: 1 / span 2; place-items: center; margin: 0; color: var(--accent-strong); background: var(--accent-soft); border-radius: 14px; font: 700 18px var(--font-mono); }
.feature-card h3 { grid-column: 2; margin: 0 0 5px; font-size: 17px; line-height: 1.3; }.feature-card p { grid-column: 2; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card { min-height: 280px; display: flex; flex-direction: column; padding: 26px; }
.project-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.project-top-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px 14px; color: var(--muted); font-size: 11px; }
.project-logo { width: 52px; height: 52px; display: grid; place-items: center; overflow: hidden; color: var(--text); background: transparent; border: 0; border-radius: 15px; font: 700 12px var(--font-mono); }
.project-logo img { width: 100%; height: 100%; object-fit: contain; }
.project-card h3 { margin: 18px 0 6px; font-size: 19px; }.project-description { min-height: 44px; margin: 0 0 14px; color: var(--muted); font-size: 14px; }.project-meta { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); gap: 10px; margin-bottom: 14px; padding: 11px 12px; background: color-mix(in srgb, var(--surface-solid) 55%, transparent); border: 1px solid var(--border); border-radius: 12px; }.project-meta span { min-width: 0; display: grid; gap: 3px; }.project-meta small { color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }.project-meta strong, .project-meta time { overflow: hidden; color: var(--text); font: 650 11px var(--font-mono); text-overflow: ellipsis; white-space: nowrap; }.project-link { margin-top: auto; color: var(--accent-strong); font-size: 13px; font-weight: 700; }

.faq-section { border-top: 1px solid var(--border); }
.faq-section .section-head { margin-bottom: 20px; }
.faq-section .section-kicker { margin-bottom: 8px; }
.faq-section .section-head h2 { color: var(--accent-strong); font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -.025em; }
.faq-content { width: 100%; max-width: none; }
.faq-section .faq-content > h2 { color: var(--text); font-size: clamp(20px, 2vw, 25px); }
.faq-section .faq-content > h3 { color: var(--text); font-size: clamp(18px, 1.7vw, 22px); }
.faq-content > p:first-child { margin-top: 0; color: var(--muted); }
.faq-content > ol { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; counter-reset: faq; }
.faq-content > ol > li { position: relative; min-height: 58px; padding: 16px 18px 16px 54px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; counter-increment: faq; }
.faq-content > ol > li::before { content: counter(faq); position: absolute; left: 17px; top: 15px; width: 25px; height: 25px; display: grid; place-items: center; color: var(--accent-strong); background: var(--accent-soft); border-radius: 8px; font: 700 11px var(--font-mono); }
.faq-content > ol > li > p { margin: 0; }
.faq-content > ol > li > ul { margin: 8px 0 0; }

.cta { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 48px; color: #f7ffff; background: linear-gradient(120deg, #0d7f82, #564cc8); border-radius: 32px; overflow: hidden; }
.cta h2 { max-width: 650px; }.cta p { max-width: 520px; margin: 12px 0 0; color: rgba(255,255,255,.72); }.cta .button { flex: none; background: #fff; color: #182033; border: 0; }
.site-footer { padding: 28px 0; color: var(--muted); border-top: 1px solid var(--border); font-size: 13px; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }.footer-links { display: flex; gap: 20px; }

/* Documentation */
.docs-layout { width: min(1440px, calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: 260px minmax(0, 820px) 210px; gap: 48px; padding: 42px 0 90px; }
.docs-sidebar, .docs-toc { position: sticky; top: 102px; align-self: start; max-height: calc(100vh - 126px); overflow: auto; }
.docs-sidebar h2 { margin: 0 0 20px; font-size: 15px; letter-spacing: -.01em; }.docs-nav { display: grid; gap: 3px; }
.docs-nav a { padding: 8px 11px; color: var(--muted); border-radius: 9px; font-size: 13px; line-height: 1.4; }.docs-nav a:hover, .docs-nav a.active { color: var(--accent-strong); background: var(--accent-soft); }
.docs-main { min-width: 0; padding: 6px 0; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 24px; color: var(--muted); font-size: 12px; }.breadcrumb a:hover { color: var(--text); }
.markdown-body h1 { font-size: clamp(38px, 5vw, 58px); }.markdown-body h2 { margin: 2.1em 0 .65em; padding-bottom: .35em; border-bottom: 1px solid var(--border); font-size: 30px; }.markdown-body h3 { margin: 1.7em 0 .5em; font-size: 22px; }.markdown-body h4 { font-size: 17px; }
.markdown-body p, .markdown-body li { color: color-mix(in srgb, var(--text) 85%, var(--muted)); }.markdown-body a { color: var(--accent-strong); text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--accent) 35%, transparent); text-underline-offset: 3px; }.markdown-body a:hover { text-decoration-color: currentColor; }
.markdown-body img { display: block; margin: 28px auto; border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 12px 36px rgba(16,24,40,.08); }
.markdown-body pre { overflow: auto; padding: 20px; border: 1px solid var(--border); color: #dce8f7; background: #111824; border-radius: 16px; font: 13px/1.65 var(--font-mono); }.markdown-body :not(pre)>code { padding: .18em .38em; color: var(--accent-strong); background: var(--accent-soft); border-radius: 6px; font: .88em var(--font-mono); }
.markdown-body blockquote { margin: 24px 0; padding: 16px 20px; border-left: 3px solid var(--accent); background: var(--surface); border-radius: 0 14px 14px 0; }.markdown-body blockquote p { margin: 0; }
.markdown-body table { width: 100%; display: block; overflow: auto; border-collapse: collapse; }.markdown-body th, .markdown-body td { min-width: 140px; padding: 11px 14px; border: 1px solid var(--border); text-align: left; }.markdown-body th { background: var(--surface); }
.markdown-body hr { margin: 40px 0; border: 0; border-top: 1px solid var(--border); }
.markdown-body > :first-child { margin-top: 0; }
.docs-toc h2 { margin: 0 0 14px; color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }.toc-list { display: grid; gap: 9px; border-left: 1px solid var(--border); }.toc-list a { padding-left: 13px; color: var(--muted); font-size: 12px; line-height: 1.4; }.toc-list a:hover { color: var(--accent-strong); }
.page-meta { margin-top: 52px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--muted); font-size: 12px; }

@media (max-width: 1050px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }.project-grid { grid-template-columns: repeat(2, 1fr); }
  .docs-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 32px; }.docs-toc { display: none; }
}
@media (max-width: 780px) {
  .container { width: min(100% - 28px, 1180px); }.site-header { height: 62px; }.nav { gap: 12px; }.nav-links { display: none; position: absolute; left: 14px; right: 14px; top: 70px; padding: 18px; background: var(--surface-solid); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); }.nav-links.open { display: grid; }.menu-button { display: grid; }
  .hero { min-height: auto; padding: 42px 0 34px; }.hero-grid { grid-template-columns: 1fr; }.title-line { white-space: normal; }
  .hero-framework { padding: 22px 0 20px; }
  .section { padding: 38px 0; }.section-head { align-items: start; flex-direction: column; gap: 8px; margin-bottom: 18px; }.section-head p { width: 100%; }#projects .section-head p { text-align: left; }.project-grid { grid-template-columns: 1fr; }.cta { align-items: start; flex-direction: column; padding: 30px; }.footer-row { align-items: start; flex-direction: column; }
  .docs-layout { width: min(100% - 28px, 820px); display: block; padding-top: 28px; }.docs-sidebar { position: static; max-height: none; margin-bottom: 28px; }.docs-sidebar h2 { display: none; }.docs-nav { display: flex; overflow: auto; padding-bottom: 8px; }.docs-nav a { white-space: nowrap; background: var(--surface); }.markdown-body h2 { font-size: 26px; }
}
@media (max-width: 520px) {
  h1 { font-size: 48px; }.hero-framework h1 { font-size: 34px; }.hero-copy { font-size: 16px; }.feature-grid { grid-template-columns: 1fr; }.feature-card { min-height: 112px; }.project-trigger { min-width: 0; }.project-trigger > span:nth-child(2) { display: none; }.language-trigger { min-width: 0; }.language-trigger > span:nth-child(2) { display: none; }.dropdown-menu { min-width: 200px; }.download-main { padding-inline: 14px; }.download-main small { display: none; }.cta { border-radius: 24px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } }
