:root {
  --bg: #fff7fb;
  --paper: #fffdf8;
  --ink: #372733;
  --muted: #78626f;
  --line: #372733;
  --violet: #8064e8;
  --lavender: #eadfff;
  --mint: #4edfa6;
  --sun: #ffd45f;
  --peach: #ff9f82;
  --sky: #79dfff;
  --pink: #ff8fca;
  --wash: #fff0f5;
  --dark: #09081c;
  --radius: 8px;
  --shadow: 5px 5px 0 rgba(55, 39, 51, .14);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { margin: 0; color: var(--ink); background: var(--bg); font-family: var(--sans); line-height: 1.65; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .45; background-image: radial-gradient(rgba(128, 100, 232, .16) .8px, transparent .8px); background-size: 22px 22px; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
.wrap { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tight { padding: 72px 0; }
.surface-band { background: var(--paper); border-block: 1px solid rgba(55, 39, 51, .12); }
.accent-band { background: var(--lavender); border-block: 2px solid var(--line); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 253, 248, .94); border-bottom: 1px solid rgba(55, 39, 51, .16); backdrop-filter: blur(16px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; font-weight: 900; line-height: 1.05; }
.brand img { border: 2px solid var(--line); border-radius: var(--radius); box-shadow: 3px 3px 0 rgba(55, 39, 51, .16); }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a { padding: 10px 12px; border-radius: 7px; color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 800; }
.primary-nav a:hover { background: var(--wash); }
.primary-nav .nav-download { background: var(--ink); color: white; padding-inline: 16px; }
.primary-nav .nav-download:hover { background: var(--violet); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 2px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink); cursor: pointer; }
.language-switcher { position: relative; }
.language-switcher summary { min-height: 42px; display: flex; align-items: center; gap: 8px; padding: 8px 10px; border: 2px solid var(--line); border-radius: var(--radius); background: var(--paper); font-size: 12px; font-weight: 800; list-style: none; cursor: pointer; }
.language-switcher summary::-webkit-details-marker { display: none; }
.language-switcher summary .fa-chevron-down { font-size: 9px; transition: transform .18s ease; }
.language-switcher[open] summary .fa-chevron-down { transform: rotate(180deg); }
.language-menu { position: absolute; top: calc(100% + 8px); right: 0; width: 170px; display: grid; padding: 8px; border: 2px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.language-menu a { padding: 8px 10px; border-radius: 5px; color: var(--ink); text-decoration: none; font-size: 12px; font-weight: 700; }
.language-menu a:hover { background: var(--wash); }

.download-hero { position: relative; min-height: 650px; display: flex; align-items: flex-end; color: white; background-color: var(--dark); background-image: var(--hero-image); background-size: cover; background-position: center; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 4, 22, .96) 0%, rgba(5, 4, 22, .78) 36%, rgba(5, 4, 22, .18) 72%, rgba(5, 4, 22, .36) 100%); }
.hero-content { position: relative; z-index: 1; padding-block: 86px 62px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--violet); font-family: var(--mono); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 3px; background: currentColor; }
.eyebrow.light { color: var(--sun); }
.download-hero h1 { max-width: 720px; margin: 0; font-size: 58px; line-height: 1.04; font-weight: 900; letter-spacing: 0; }
.download-hero h1 span { color: var(--pink); }
.download-hero > .hero-content > p { max-width: 630px; margin: 22px 0 0; color: #f0e8f2; font-size: 18px; }
.hero-actions, .content-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 17px; border: 2px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink); box-shadow: var(--shadow); text-decoration: none; font-weight: 900; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 7px 7px 0 rgba(55, 39, 51, .14); }
.button-primary { background: var(--mint); color: #132a20; }
.button-secondary { background: var(--paper); }
.button-ghost-light { border-color: rgba(255, 255, 255, .7); background: rgba(12, 10, 35, .58); color: white; box-shadow: 4px 4px 0 rgba(255, 255, 255, .16); }
.button-block { width: 100%; }
.button.is-disabled { opacity: .5; pointer-events: none; }
.hero-facts { max-width: 850px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 46px; border: 1px solid rgba(255, 255, 255, .28); background: rgba(9, 8, 28, .72); backdrop-filter: blur(12px); }
.hero-facts span { min-width: 0; padding: 16px 18px; border-right: 1px solid rgba(255, 255, 255, .18); color: #cfc6d1; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.hero-facts span:last-child { border-right: 0; }
.hero-facts strong { display: block; overflow-wrap: anywhere; color: white; font-size: 14px; text-transform: none; }

.download-layout, .prose-grid, .release-layout, .compatibility-layout, .verify-layout, .faq-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr); gap: 70px; align-items: start; }
.section-copy h2, .section-heading h2, .release-summary h2, .compatibility-layout h2, .verify-layout h2, .faq-layout h2 { margin: 0; font-size: 40px; line-height: 1.15; letter-spacing: 0; }
.section-copy p, .section-heading p, .long-copy p, .release-summary p, .compatibility-layout p, .verify-layout p { color: var(--muted); }
.source-note { display: flex; gap: 12px; align-items: flex-start; margin-top: 24px; padding: 16px; border-left: 4px solid var(--mint); background: var(--paper); font-size: 14px; }
.source-note i { margin-top: 5px; color: #16885c; }
.download-card { padding: 26px; border: 2px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.download-card-head { display: flex; gap: 16px; align-items: center; }
.download-card-head img { border: 2px solid var(--line); border-radius: var(--radius); }
.download-card-head h3 { margin: 4px 0 0; font-size: 24px; }
.download-card-head p { margin: 2px 0 0; color: var(--muted); font-size: 12px; }
.status-badge { display: inline-flex; align-items: center; gap: 6px; color: #146a49; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.release-facts { display: grid; grid-template-columns: 1fr 1fr; margin: 24px 0; border: 1px solid rgba(55, 39, 51, .16); }
.release-facts div { min-width: 0; padding: 11px 13px; border-bottom: 1px solid rgba(55, 39, 51, .12); }
.release-facts div:nth-child(odd) { border-right: 1px solid rgba(55, 39, 51, .12); }
.release-facts dt { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.release-facts dd { margin: 2px 0 0; overflow-wrap: anywhere; font-family: var(--mono); font-size: 12px; font-weight: 800; }
.download-secondary-actions { display: flex; justify-content: center; gap: 18px; margin-top: 16px; }
.text-button { border: 0; background: transparent; color: var(--violet); font-size: 12px; font-weight: 900; cursor: pointer; }
.text-button i { margin-right: 6px; }
.checksum { margin: 20px 0 0; padding-top: 16px; border-top: 1px solid rgba(55, 39, 51, .14); }
.checksum strong { display: block; font-size: 10px; }
.checksum code { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; overflow-wrap: anywhere; }

.prose-grid { grid-template-columns: .65fr 1.35fr; }
.prose-grid h2 { margin: 0; font-size: 40px; line-height: 1.15; }
.long-copy p:first-child { margin-top: 0; }
.section-heading { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-heading.left { margin-left: 0; text-align: left; }
.screenshot-row { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.screenshot-card { margin: 0; overflow: hidden; border: 2px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 3px 3px 0 rgba(55, 39, 51, .12); }
.screenshot-card img { width: 100%; height: auto; aspect-ratio: 1 / 2; object-fit: cover; object-position: top; background: var(--dark); }
.screenshot-card figcaption { padding: 13px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.screenshot-card figcaption strong { display: block; color: var(--ink); font-size: 13px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 210px; padding: 24px; border: 2px solid var(--line); border-radius: var(--radius); background: var(--bg); box-shadow: 4px 4px 0 rgba(55, 39, 51, .1); }
.feature-card > i { width: 42px; height: 42px; display: grid; place-items: center; border: 2px solid var(--line); border-radius: var(--radius); background: var(--sun); font-size: 18px; }
.feature-card:nth-child(2n) > i { background: var(--mint); }
.feature-card:nth-child(3n) > i { background: var(--pink); }
.feature-card h3 { margin: 18px 0 8px; font-size: 18px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }
.release-layout { grid-template-columns: .85fr 1.15fr; }
.update-list { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--line); }
.update-list li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 19px 0; border-bottom: 1px solid rgba(55, 39, 51, .16); }
.update-list li > span { width: 34px; height: 34px; display: grid; place-items: center; border: 2px solid var(--line); border-radius: var(--radius); background: var(--lavender); font-family: var(--mono); font-weight: 900; }
.update-list strong { font-size: 16px; }
.update-list p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 36px 0 0; padding: 0; list-style: none; border: 2px solid var(--line); background: var(--paper); }
.step-grid li { position: relative; min-height: 240px; padding: 26px; border-right: 1px solid var(--line); }
.step-grid li:last-child { border-right: 0; }
.step-grid li > span { font-family: var(--mono); color: var(--violet); font-size: 30px; font-weight: 900; }
.step-grid h3 { margin: 24px 0 8px; }
.step-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.section-link { margin: 24px 0 0; text-align: right; font-weight: 900; }
.section-link a, .inline-link { color: var(--violet); text-decoration: none; }
.platform-list { border-top: 2px solid var(--line); }
.platform-row { display: grid; grid-template-columns: 42px 1fr 18px; gap: 14px; align-items: center; padding: 17px 0; border-bottom: 1px solid rgba(55, 39, 51, .16); text-decoration: none; }
.platform-row > i:first-child { width: 40px; height: 40px; display: grid; place-items: center; border: 2px solid var(--line); border-radius: var(--radius); background: var(--sun); }
.platform-row span { color: var(--muted); font-size: 12px; }
.platform-row strong { display: block; color: var(--ink); font-size: 15px; }
.verify-panel { border: 2px solid var(--line); border-radius: var(--radius); background: var(--dark); color: white; box-shadow: var(--shadow); }
.verify-panel p { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 10px; margin: 0; padding: 14px 16px; border-bottom: 1px solid rgba(255, 255, 255, .15); }
.verify-panel p:last-child { border-bottom: 0; }
.verify-panel span { color: #bdb3c4; font-size: 11px; text-transform: uppercase; }
.verify-panel code { overflow-wrap: anywhere; color: var(--mint); font-size: 11px; }
.faq-layout { grid-template-columns: .7fr 1.3fr; }
.faq-list { border-top: 2px solid var(--line); }
.faq-list details { border-bottom: 1px solid rgba(55, 39, 51, .18); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; cursor: pointer; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list summary i { transition: transform .18s ease; }
.faq-list details p { margin: -4px 0 20px; color: var(--muted); }

.content-hero { padding: 72px 0 64px; background: var(--paper); border-bottom: 2px solid var(--line); }
.content-hero-inner { max-width: 900px; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 24px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs i { font-size: 8px; }
.content-hero h1 { margin: 0; max-width: 860px; font-size: 48px; line-height: 1.08; letter-spacing: 0; }
.content-hero > .wrap > p { max-width: 780px; margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 60px; padding-block: 70px 100px; align-items: start; }
.article-body { min-width: 0; overflow-wrap: anywhere; }
.quick-answer { padding: 20px; border-left: 5px solid var(--mint); background: var(--paper); }
.quick-answer strong { font-size: 12px; text-transform: uppercase; }
.quick-answer p { margin: 5px 0 0; }
.article-media { margin: 34px 0 48px; }
.article-media img { width: 100%; max-height: 520px; object-fit: contain; border: 2px solid var(--line); border-radius: var(--radius); background: var(--dark); }
.article-media figcaption { margin-top: 9px; color: var(--muted); font-size: 12px; }
.article-section { margin-top: 48px; scroll-margin-top: 100px; }
.article-section h2 { margin: 0 0 16px; font-size: 30px; line-height: 1.2; }
.article-section p, .article-section li { color: var(--muted); }
.article-section li + li { margin-top: 9px; }
.article-steps { padding-left: 0; list-style: none; counter-reset: steps; }
.article-steps li { position: relative; margin-top: 18px; padding: 17px 18px 17px 58px; border: 1px solid rgba(55, 39, 51, .16); background: var(--paper); counter-increment: steps; }
.article-steps li::before { content: counter(steps); position: absolute; left: 17px; top: 17px; width: 26px; height: 26px; display: grid; place-items: center; border: 2px solid var(--line); border-radius: var(--radius); background: var(--sun); color: var(--ink); font-family: var(--mono); font-weight: 900; }
.article-steps p { margin: 4px 0 0; }
.article-callout { margin-top: 24px; padding: 18px; border: 2px solid var(--line); background: var(--lavender); }
.article-callout p { margin: 5px 0 0; color: var(--ink); }
.version-table-wrap { width: 100%; overflow-x: auto; border: 1px solid rgba(55, 39, 51, .16); }
.content-table { width: 100%; border-collapse: collapse; min-width: 600px; background: var(--paper); }
.content-table th, .content-table td { padding: 13px 14px; border-bottom: 1px solid rgba(55, 39, 51, .13); text-align: left; vertical-align: top; font-size: 12px; }
.content-table th { background: var(--lavender); color: var(--ink); font-size: 10px; text-transform: uppercase; }
.small-download { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 6px; padding: 7px 9px; background: var(--mint); font-size: 11px; font-weight: 900; cursor: pointer; }
.article-sidebar { position: sticky; top: 100px; display: grid; gap: 18px; }
.sidebar-panel, .sidebar-links { padding: 20px; border: 2px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 4px 4px 0 rgba(55, 39, 51, .1); }
.sidebar-panel h2 { margin: 14px 0 3px; font-size: 20px; }
.sidebar-panel p { margin: 0 0 18px; color: var(--muted); font-size: 12px; }
.sidebar-links strong { display: block; margin-bottom: 9px; }
.sidebar-links a { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(55, 39, 51, .13); color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 800; }
.sidebar-links a:last-child { border-bottom: 0; }

.legal-page { padding-block: 72px 100px; }
.legal-hero { max-width: 820px; margin-bottom: 36px; }
.legal-hero h1 { margin: 0; font-size: 48px; line-height: 1.08; }
.legal-hero p { color: var(--muted); font-size: 18px; }
.legal-panel { max-width: 900px; padding: 34px; border: 2px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.legal-panel h2 { margin-top: 36px; }
.legal-panel p, .legal-panel li { color: var(--muted); }
.legal-meta { font-family: var(--mono); font-size: 12px; }

.site-dialog { width: min(540px, calc(100% - 28px)); max-height: min(720px, calc(100vh - 32px)); overflow: auto; padding: 30px; border: 2px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink); box-shadow: 10px 10px 0 rgba(55, 39, 51, .22); }
.site-dialog::backdrop { background: rgba(9, 8, 28, .74); backdrop-filter: blur(4px); }
.wide-dialog { width: min(760px, calc(100% - 28px)); }
.dialog-close { position: absolute; top: 13px; right: 13px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); cursor: pointer; }
.dialog-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 2px solid var(--line); border-radius: var(--radius); background: var(--mint); }
.site-dialog h2 { margin: 16px 40px 8px 0; line-height: 1.2; }
.site-dialog > p { color: var(--muted); }
.dialog-facts { display: grid; grid-template-columns: 1fr 1fr; margin: 22px 0; border: 1px solid rgba(55, 39, 51, .15); }
.dialog-facts div { padding: 11px; }
.dialog-facts dt { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.dialog-facts dd { margin: 2px 0 0; overflow-wrap: anywhere; font-family: var(--mono); font-size: 12px; font-weight: 800; }
.countdown-status { padding: 14px; background: var(--lavender); color: var(--ink) !important; text-align: center; }
.countdown-status strong { font-size: 22px; }
.dialog-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dialog-note { margin-bottom: 0; font-size: 11px; }
.release-notes { white-space: pre-wrap; color: var(--muted); font-size: 13px; }
.version-list { max-height: 430px; overflow: auto; border-top: 2px solid var(--line); }
.version-list-item { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 14px 2px; border-bottom: 1px solid rgba(55, 39, 51, .15); }
.version-list-item p { margin: 0; }
.version-list-item small { color: var(--muted); }

.site-footer { padding: 54px 0 24px; border-top: 4px solid var(--line); background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.footer-brand > p { max-width: 520px; color: var(--muted); font-size: 13px; }
.footer-brand .disclaimer { font-family: var(--mono); font-size: 10px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer-links strong { display: block; margin-bottom: 12px; font-size: 12px; text-transform: uppercase; }
.footer-links a { display: block; margin: 8px 0; color: var(--muted); text-decoration: none; font-size: 13px; }
.footer-bottom { margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(55, 39, 51, .14); color: var(--muted); font-family: var(--mono); font-size: 10px; }

@media (max-width: 1024px) {
  .primary-nav a { padding-inline: 8px; }
  .download-layout, .release-layout, .compatibility-layout, .verify-layout { gap: 44px; }
  .screenshot-row { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .step-grid { grid-template-columns: 1fr 1fr; }
  .step-grid li:nth-child(2) { border-right: 0; }
  .step-grid li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 1080px) {
  .header-inner { min-height: 68px; }
  .menu-toggle { display: grid; place-items: center; margin-left: auto; }
  .primary-nav { position: absolute; left: 18px; right: 18px; top: calc(100% + 8px); display: none; padding: 10px; border: 2px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { padding: 12px; }
}

@media (max-width: 820px) {
  .header-inner { min-height: 68px; }
  .menu-toggle { display: grid; place-items: center; margin-left: auto; }
  .primary-nav { position: absolute; left: 18px; right: 18px; top: calc(100% + 8px); display: none; padding: 10px; border: 2px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { padding: 12px; }
  .download-hero { min-height: 620px; background-position: 58% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(5, 4, 22, .35), rgba(5, 4, 22, .93) 62%); }
  .hero-content { padding-block: 190px 42px; }
  .download-hero h1 { font-size: 42px; }
  .download-hero > .hero-content > p { font-size: 16px; }
  .hero-facts { grid-template-columns: 1fr 1fr; margin-top: 30px; }
  .hero-facts span:nth-child(2) { border-right: 0; }
  .hero-facts span:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .download-layout, .prose-grid, .release-layout, .compatibility-layout, .verify-layout, .faq-layout, .article-layout, .footer-grid { grid-template-columns: 1fr; }
  .article-layout { gap: 36px; }
  .article-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .section { padding: 68px 0; }
  .section-tight { padding: 58px 0; }
  .section-copy h2, .section-heading h2, .release-summary h2, .compatibility-layout h2, .verify-layout h2, .faq-layout h2 { font-size: 34px; }
  .footer-grid { gap: 34px; }
}

@media (max-width: 580px) {
  .wrap { width: min(100% - 24px, 1160px); }
  .brand small { display: none; }
  .language-switcher summary span { display: none; }
  .download-hero { min-height: 610px; }
  .hero-content { padding-top: 210px; }
  .download-hero h1 { font-size: 36px; }
  .hero-actions, .content-hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-facts span { padding: 12px; }
  .download-layout { gap: 32px; }
  .download-card { padding: 18px; }
  .release-facts { grid-template-columns: 1fr; }
  .release-facts div:nth-child(odd) { border-right: 0; }
  .download-secondary-actions { align-items: stretch; flex-direction: column; gap: 9px; }
  .screenshot-row { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
  .screenshot-card { flex: 0 0 72%; scroll-snap-align: start; }
  .feature-grid, .step-grid, .article-sidebar, .footer-links { grid-template-columns: 1fr; }
  .step-grid li { border-right: 0; border-bottom: 1px solid var(--line); }
  .step-grid li:last-child { border-bottom: 0; }
  .verify-panel p { grid-template-columns: 1fr; }
  .content-hero { padding-block: 52px 48px; }
  .content-hero h1, .legal-hero h1 { font-size: 36px; }
  .content-hero > .wrap > p, .legal-hero p { font-size: 16px; }
  .article-layout { padding-block: 42px 70px; }
  .article-section h2 { font-size: 27px; }
  .article-media { margin-block: 28px 38px; }
  .legal-page { padding-block: 48px 70px; }
  .legal-panel { padding: 22px; }
  .dialog-actions, .dialog-facts { grid-template-columns: 1fr; }
  .site-dialog { padding: 22px; }
  .version-list-item { grid-template-columns: 1fr; }
  .small-download span { display: none; }
}
