@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #000;
  --bg-soft: #050505;
  --panel: #0b0b0c;
  --panel-raised: #141416;
  --interactive: #1c1c20;
  --border: #1b1b1e;
  --border-strong: #34343a;
  --text: #fff;
  --text-soft: #b3b3ba;
  --muted: #777780;
  --accent: #1db954;
  --accent-hover: #27cf64;
  --accent-soft: rgba(29, 185, 84, .13);
  --accent-border: rgba(29, 185, 84, .32);
  --header: rgba(0, 0, 0, .84);
  --shadow: 0 30px 90px rgba(0, 0, 0, .62);
  --radius: 12px;
  --page: 1220px;
  color-scheme: dark;
}

:root[data-theme="obsidian"] {
  --bg: #050505;
  --bg-soft: #0c0c0d;
  --panel: #111112;
  --panel-raised: #19191b;
  --interactive: #29292d;
  --border: #242428;
  --border-strong: #3a3a42;
  --text: #f7f7f8;
  --text-soft: #aaaab2;
  --muted: #74747f;
  --header: rgba(5, 5, 5, .84);
}

:root[data-theme="discord"] {
  --bg: #1e1f22;
  --bg-soft: #232428;
  --panel: #2b2d31;
  --panel-raised: #313338;
  --interactive: #3f4147;
  --border: #34363c;
  --border-strong: #4e5058;
  --text: #f2f3f5;
  --text-soft: #b5bac1;
  --muted: #949ba4;
  --header: rgba(30, 31, 34, .9);
}

:root[data-theme="frost"] {
  --bg: #0f172a;
  --bg-soft: #162033;
  --panel: #1e293b;
  --panel-raised: #243247;
  --interactive: #33465f;
  --border: #334155;
  --border-strong: #52657d;
  --text: #f8fafc;
  --text-soft: #cbd5e1;
  --muted: #94a3b8;
  --header: rgba(15, 23, 42, .88);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; background: var(--bg); color: var(--text); font: 14px/1.55 'Inter', system-ui, sans-serif; overflow-x: hidden; transition: background .3s ease, color .3s ease; }
body::before { content: none; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.section-shell { width: min(calc(100% - 48px), var(--page)); margin-inline: auto; }

.site-header { position: fixed; inset: 0 0 auto; height: 64px; z-index: 50; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 max(24px, calc((100vw - var(--page)) / 2)); background: var(--header); border-bottom: 1px solid var(--border); }
.brand { justify-self: start; display: flex; align-items: baseline; gap: 9px; font-weight: 750; letter-spacing: -.02em; }
.brand-credit { color: var(--muted); font-size: 11px; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 30px; color: var(--text-soft); font-size: 13px; }
.nav-links a, .footer-links a { transition: color .18s ease; }
.nav-links a:hover, .footer-links a:hover { color: var(--text); }
.header-github { justify-self: end; display: flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid var(--border); border-radius: 8px; background: var(--panel); color: var(--text-soft); font-weight: 600; font-size: 12px; transition: border-color .18s ease, color .18s ease, transform .18s ease; }
.header-github:hover { border-color: var(--border-strong); color: var(--text); transform: translateY(-1px); }

.hero { min-height: 780px; padding-top: 130px; display: grid; grid-template-columns: minmax(390px, .78fr) minmax(600px, 1.22fr); align-items: center; gap: 58px; position: relative; }
.hero::before { content: none; }
.release-pill { width: fit-content; display: flex; align-items: center; gap: 9px; padding: 7px 10px; border: 1px solid var(--border); border-radius: 6px; background: var(--panel); color: var(--text-soft); font-size: 11px; font-weight: 650; }
.release-pill svg { width: 13px; height: 13px; color: var(--accent); transition: transform .18s ease; }
.release-pill:hover svg { transform: translateX(2px); }
.hero h1 { margin: 26px 0 20px; font-size: clamp(48px, 5vw, 74px); line-height: .98; letter-spacing: -.065em; font-weight: 800; }
.hero h1 span { color: var(--accent); }
.hero-lede { max-width: 530px; margin: 0; color: var(--text-soft); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 31px; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 17px; border: 1px solid transparent; border-radius: 8px; font-size: 13px; font-weight: 700; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #041309; }
.button-primary:hover { background: var(--accent-hover); }
.button-secondary { background: var(--panel); border-color: var(--border); color: var(--text-soft); }
.button-secondary:hover { color: var(--text); border-color: var(--border-strong); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 22px; color: var(--muted); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.hero-meta span { display: flex; align-items: center; gap: 5px; }
.hero-meta svg { width: 12px; height: 12px; color: var(--accent); stroke-width: 2.4; }

.hero-visual { min-width: 0; }
.app-window { overflow: hidden; background: var(--bg-soft); border: 1px solid var(--border-strong); border-radius: 9px; box-shadow: 0 24px 65px rgba(0,0,0,.52); }
.window-bar { height: 32px; display: flex; align-items: center; justify-content: center; position: relative; background: var(--bg); border-bottom: 1px solid var(--border); }
.window-title { display: flex; align-items: baseline; gap: 7px; font-size: 7px; font-weight: 750; }
.window-title span { color: var(--muted); font-weight: 500; }
.window-actions { position: absolute; right: 0; top: 0; height: 100%; display: flex; }
.window-actions b { width: 34px; position: relative; }
.window-actions b::after { content: ''; position: absolute; inset: 50% auto auto 50%; width: 7px; height: 1px; background: var(--muted); transform: translate(-50%, -50%); }
.window-actions b:nth-child(2)::after { height: 6px; border: 1px solid var(--muted); background: transparent; }
.window-close::before, .window-close::after { content: ''; position: absolute; inset: 50% auto auto 50%; width: 7px; height: 1px; background: var(--muted); }
.window-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.window-close::after { transform: translate(-50%, -50%) rotate(-45deg) !important; }
.app-layout { display: grid; grid-template-columns: 112px minmax(330px, 1fr) 168px; height: 355px; }
.mock-sidebar { background: var(--bg); border-right: 1px solid var(--border); padding: 30px 7px 8px; display: flex; flex-direction: column; gap: 3px; }
.mock-nav { height: 28px; display: flex; align-items: center; gap: 9px; padding: 0 9px; border-radius: 5px; color: var(--text-soft); font-size: 8px; font-weight: 560; }
.mock-nav svg { width: 10px; height: 10px; stroke-width: 2.2; }
.mock-nav.active { color: var(--accent); background: var(--accent-soft); box-shadow: inset 2px 0 var(--accent); }
.mock-account { margin-top: auto; display: flex; gap: 7px; align-items: center; padding: 8px 4px 2px; border-top: 1px solid var(--border); font-size: 7px; }
.mock-account > span:last-child { display: grid; }
.mock-account small { color: var(--muted); }
.mini-avatar { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: #06150b; background: var(--accent); font-size: 8px; font-weight: 800; }
.mock-main { min-width: 0; background: var(--bg-soft); }
.mock-topbar { height: 38px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border-bottom: 1px solid var(--border); font-size: 8px; }
.connected { display: flex; align-items: center; color: var(--muted); padding: 4px 7px; background: var(--panel); border: 1px solid var(--border); border-radius: 4px; }
.mock-content { padding: 23px 18px; }
.eyebrow { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.format-card { margin-top: 10px; padding: 12px; background: var(--panel); border: 1px solid var(--border); border-radius: 7px; display: grid; }
.format-card > strong { font-size: 8px; }
.format-card > small { color: var(--muted); font-size: 6px; }
.chips { display: flex; gap: 5px; margin: 10px 0 7px; }
.chips span, .preset-row span { padding: 2px 6px; border-radius: 99px; background: var(--bg); color: var(--text-soft); font-size: 5.5px; border: 1px solid var(--border); }
.mock-input { height: 20px; padding: 5px 7px; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; font-size: 6px; }
.mock-preview { height: 29px; display: flex; align-items: center; gap: 8px; margin-top: 5px; padding: 0 7px; border: 1px dashed var(--border-strong); border-radius: 4px; background: var(--bg); font-size: 6px; overflow: hidden; }
.mock-preview b { color: var(--muted); font-size: 5px; letter-spacing: .08em; }
.mock-preview span { white-space: nowrap; }
.presets-label { display: block; margin-top: 19px; }
.preset-row { display: flex; gap: 7px; margin-top: 9px; }
.preset-row span { padding: 4px 8px; }
.profile-preview { position: relative; padding: 0 11px 11px; background: var(--bg); border-left: 1px solid var(--border); overflow: hidden; }
.profile-banner { height: 57px; margin: 10px -2px 0; border-radius: 6px 6px 0 0; background: var(--panel-raised); border: 1px solid var(--border); }
.profile-avatar { width: 38px; height: 38px; margin: -17px 0 6px 7px; position: relative; display: grid; place-items: center; border: 3px solid var(--bg); border-radius: 50%; background: #082216; color: var(--accent); font-size: 13px; font-weight: 800; }
.profile-name { display: block; color: var(--accent); font-size: 10px; }
.profile-preview > small { display: block; color: var(--text-soft); font-size: 6px; }
.profile-line { height: 1px; margin: 10px 0; background: var(--border); }
.listening-label { color: var(--text-soft); font-size: 5.5px; }
.now-playing { display: flex; gap: 7px; margin-top: 7px; }
.album-art { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); }
.album-art svg { width: 12px; }
.now-playing > span { display: grid; align-content: center; font-size: 6px; line-height: 1.25; }
.now-playing i { color: var(--accent); font-style: normal; }
.now-playing small { color: var(--muted); }
.status-card { min-height: 68px; display: grid; align-content: start; gap: 5px; margin-top: 10px; padding: 9px; background: var(--panel); border: 1px solid var(--border); border-radius: 6px; }
.status-card b { color: var(--muted); font-size: 5px; }
.status-card strong { font-size: 7px; line-height: 1.35; }
.status-card small { color: var(--muted); }
.visual-caption { display: flex; align-items: center; justify-content: center; margin-top: 15px; color: var(--muted); font-size: 10px; }

.features { padding-block: 110px 126px; border-top: 1px solid var(--border); }
.section-heading { max-width: 650px; margin-bottom: 42px; }
.section-heading h2, .download-copy h2 { margin: 11px 0 10px; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p, .download-copy p { margin: 0; color: var(--text-soft); font-size: 15px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.feature-card { min-height: 238px; position: relative; overflow: hidden; padding: 24px; border: 1px solid var(--border); border-radius: 9px; background: var(--panel); transition: background .18s ease, border-color .18s ease; }
.feature-card:hover { background: var(--panel-raised); border-color: var(--border-strong); }
.feature-wide { grid-column: 1 / -1; min-height: 305px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; gap: 32px; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; }
.feature-heading { display: flex; align-items: center; gap: 11px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
.feature-icon { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; margin: 0; border-radius: 6px; background: var(--accent-soft); color: var(--accent); }
.feature-icon svg { width: 17px; height: 17px; }
.card-kicker { display: block; color: var(--text-soft); font-size: 9px; font-weight: 750; letter-spacing: .12em; }
.feature-card h3 { margin: 28px 0 9px; font-size: 22px; letter-spacing: -.035em; }
.feature-card p { max-width: 480px; margin: 0; color: var(--text-soft); font-size: 13px; }
.lyric-stack { min-height: 100%; position: relative; display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 12px; text-align: left; border: 1px solid var(--border); border-radius: 7px; background: var(--bg); overflow: hidden; }
.lyric-stack::before { content: none; }
.lyric-stack span, .lyric-stack strong { display: block; padding: 13px 14px; border-radius: 5px; }
.lyric-stack span { color: var(--muted); font-size: 11px; }
.lyric-stack strong { color: var(--text); font-size: 15px; background: var(--panel-raised); border-left: 2px solid var(--accent); }
.lyric-stack i { position: absolute; left: 0; bottom: 0; width: 64%; height: 1px; background: var(--accent); }
.theme-card { grid-template-columns: .8fr 1.2fr; }
.theme-picker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.theme-swatch { min-height: 86px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 11px; align-content: center; text-align: left; padding: 14px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-soft); cursor: pointer; transition: border-color .18s ease, background .18s ease; }
.theme-swatch:hover, .theme-swatch.active { border-color: var(--accent); background: var(--accent-soft); }
.theme-swatch i { grid-row: 1 / 3; align-self: center; width: 22px; height: 22px; border-radius: 4px; background: #000; border: 1px solid #34343a; box-shadow: inset 0 -5px #1db954; }
.theme-swatch[data-theme-choice="obsidian"] i { background: #111112; box-shadow: inset 0 -5px #1db954; }
.theme-swatch[data-theme-choice="discord"] i { background: #313338; box-shadow: inset 0 -5px #5865f2; }
.theme-swatch[data-theme-choice="frost"] i { background: #1e293b; box-shadow: inset 0 -5px #7dd3fc; }
.theme-swatch span { font-size: 11px; font-weight: 700; }
.theme-swatch small { color: var(--muted); font-size: 9px; }

.steps { padding-block: 42px 126px; }
.step-track { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--border); }
.step { min-height: 170px; display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-content: center; padding: 30px; border-right: 1px solid var(--border); }
.step:last-child { border-right: 0; }
.step > span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.step h3 { margin: 0 0 7px; font-size: 16px; }
.step p { margin: 0; color: var(--muted); font-size: 12px; }

.security-section { padding-bottom: 104px; }
.security-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 38px; margin-bottom: 28px; }
.security-section-heading .section-heading { margin: 0; }
.security-overall { --scan-color: var(--muted); min-width: 300px; display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--border); border-radius: 9px; background: var(--panel); }
.security-overall[data-state="clear"] { --scan-color: var(--accent); border-color: var(--accent-border); }
.security-overall[data-state="warning"] { --scan-color: #f0ad4e; border-color: rgba(240, 173, 78, .4); }
.security-overall[data-state="danger"] { --scan-color: #f23f42; border-color: rgba(242, 63, 66, .42); }
.security-overall-icon { width: 38px; height: 38px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 7px; background: color-mix(in srgb, var(--scan-color) 14%, transparent); color: var(--scan-color); }
.security-overall-icon svg { width: 17px; height: 17px; }
.security-overall > span:last-child { min-width: 0; display: grid; gap: 2px; }
.security-overall strong { font-size: 11px; }
.security-overall small { color: var(--muted); font-size: 8px; }
.scan-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.scan-card { --scan-color: var(--muted); min-width: 0; padding: 22px; border: 1px solid var(--border); border-radius: 10px; background: var(--panel); }
.scan-card[data-state="clear"] { --scan-color: var(--accent); }
.scan-card[data-state="warning"] { --scan-color: #f0ad4e; }
.scan-card[data-state="danger"] { --scan-color: #f23f42; }
.scan-card-heading { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; }
.scan-file-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 7px; background: var(--accent-soft); color: var(--accent); }
.scan-file-icon.secondary { background: var(--panel-raised); color: var(--text-soft); }
.scan-file-icon svg { width: 15px; height: 15px; }
.scan-card-heading > div { min-width: 0; display: grid; }
.scan-card-heading > div > span { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .08em; }
.scan-card-heading h3 { margin: 1px 0 0; font-size: 12px; }
.scan-state { padding: 4px 7px; border: 1px solid color-mix(in srgb, var(--scan-color) 32%, var(--border)); border-radius: 5px; color: var(--scan-color); font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.scan-score { display: grid; gap: 3px; margin-top: 28px; }
.scan-score strong { color: var(--accent); font-size: clamp(34px, 4vw, 48px); line-height: 1; letter-spacing: -.045em; }
.scan-score span { color: var(--text-soft); font-size: 10px; }
.scan-meter { height: 4px; display: flex; gap: 2px; margin: 17px 0 15px; overflow: hidden; border-radius: 2px; background: var(--interactive); }
.scan-meter span { display: block; height: 100%; transition: width .35s ease; }
.scan-meter-ok { width: 34%; background: var(--accent); }
.scan-meter-hit { width: 0; background: #f23f42; }
.scan-breakdown { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border: 1px solid var(--border); border-radius: 7px; overflow: hidden; }
.scan-breakdown div { display: grid; gap: 1px; padding: 10px; border-right: 1px solid var(--border); }
.scan-breakdown div:last-child { border-right: 0; }
.scan-breakdown dt { color: var(--text-soft); font-size: 11px; font-weight: 700; }
.scan-breakdown dd { margin: 0; color: var(--muted); font-size: 8px; }
.scan-breakdown [data-vt-not-flagged] { color: var(--accent); }
.scan-breakdown [data-vt-flagged] { color: var(--scan-color); }
.scan-card-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: 16px; }
.scan-card-meta > div { min-width: 0; display: grid; gap: 2px; }
.scan-card-meta > div > span { color: var(--muted); font-size: 7px; font-weight: 700; letter-spacing: .07em; }
.scan-card-meta code { overflow: hidden; max-width: 240px; color: var(--text-soft); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.scan-card-meta a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 6px; color: var(--text-soft); font-size: 9px; }
.scan-card-meta a:hover { color: var(--scan-color); }
.scan-card-meta a svg { width: 10px; height: 10px; }
.scan-disclaimer { margin: 12px 0 0; color: var(--muted); font-size: 9px; }
.scan-disclaimer span { color: var(--text-soft); }

.download-section { padding-bottom: 120px; }
.download-panel { display: grid; grid-template-columns: 1fr 430px; gap: 70px; align-items: center; padding: 54px; border: 1px solid var(--border-strong); border-radius: 10px; background: var(--panel); }
.download-copy h2 { max-width: 650px; font-size: clamp(34px, 4.3vw, 58px); }
.release-stats { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.release-stats span { padding: 5px 8px; border: 1px solid var(--border); border-radius: 5px; background: var(--bg-soft); color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }
.release-stats b { color: var(--text-soft); }
.download-options { display: grid; gap: 8px; }
.download-card { min-height: 76px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding: 11px; border: 1px solid var(--border); border-radius: 9px; background: var(--bg); transition: transform .18s ease, border-color .18s ease; }
.download-card:hover { transform: translateX(3px); border-color: var(--accent); }
.download-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 7px; background: var(--accent); color: #041309; }
.download-icon.secondary { background: var(--panel-raised); color: var(--text); }
.download-card > span:nth-child(2) { display: grid; }
.download-card strong { font-size: 12px; }
.download-card small { color: var(--muted); font-size: 9px; }
.arrow-icon { color: var(--muted); width: 15px; }
.release-notes { width: fit-content; display: flex; align-items: center; gap: 6px; margin: 8px auto 0; color: var(--muted); font-size: 9px; }
.release-notes:hover { color: var(--text-soft); }
.release-notes svg { width: 11px; height: 11px; }

footer { min-height: 126px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding: 30px max(24px, calc((100vw - var(--page)) / 2)); border-top: 1px solid var(--border); background: var(--bg-soft); }
.footer-brand { display: grid; }
.footer-brand strong { font-size: 12px; }
.footer-brand span, .footer-credit { color: var(--muted); font-size: 9px; }
.footer-links { display: flex; gap: 22px; color: var(--text-soft); font-size: 10px; }
.footer-credit { justify-self: end; }

.live-lyric { transition: opacity .18s ease, transform .18s ease; }
.live-lyric.changing { opacity: 0; transform: translateY(3px); }

@media (max-width: 1060px) {
  .hero { min-height: auto; grid-template-columns: minmax(0, 1fr); padding-block: 135px 90px; }
  .hero-copy { min-width: 0; max-width: 680px; }
  .hero-visual { width: 100%; transform: none; }
  .download-panel { grid-template-columns: 1fr; gap: 38px; }
  .download-options { max-width: 520px; }
}

@media (max-width: 760px) {
  .section-shell { width: min(calc(100% - 28px), var(--page)); }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 15px; }
  .nav-links { display: none; }
  .brand-credit { display: none; }
  .header-github span { display: none; }
  .header-github { padding: 8px; }
  .hero { padding-top: 116px; gap: 46px; }
  .hero h1 { font-size: clamp(44px, 14vw, 64px); }
  .hero-lede { font-size: 15px; }
  .button { width: 100%; }
  .hero-meta { gap: 10px 14px; }
  .app-layout { grid-template-columns: 76px minmax(280px, 1fr); height: 330px; }
  .profile-preview { display: none; }
  .mock-sidebar { padding-inline: 5px; }
  .mock-nav { padding-inline: 7px; }
  .mock-nav span { display: none; }
  .mock-nav svg { width: 12px; height: 12px; }
  .mock-account > span:last-child { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-wide, .theme-card { grid-column: auto; grid-template-columns: 1fr; }
  .feature-card { min-height: 280px; padding: 24px; }
  .lyric-stack { margin-top: 6px; }
  .theme-picker { grid-template-columns: 1fr 1fr; }
  .step-track { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: 0; }
  .security-section-heading { align-items: stretch; flex-direction: column; gap: 20px; }
  .security-overall { min-width: 0; }
  .scan-grid { grid-template-columns: 1fr; }
  .download-panel { padding: 27px 18px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .footer-credit { justify-self: center; }
}

@media (max-width: 460px) {
  .hero-meta span:nth-child(3) { display: none; }
  .hero-visual { margin-inline: -14px; width: calc(100% + 28px); }
  .app-window { border-radius: 0; }
  .mock-content { padding-inline: 12px; }
  .theme-picker { grid-template-columns: 1fr; }
  .release-stats { gap: 5px; }
  .scan-card { padding: 18px; }
  .scan-card-heading { grid-template-columns: auto 1fr; }
  .scan-state { grid-column: 1 / -1; width: fit-content; margin-top: 4px; }
  .scan-card-meta { align-items: flex-start; flex-direction: column; }
  .scan-card-meta code { max-width: 210px; }
  .download-card { grid-template-columns: auto 1fr; }
  .download-card > .arrow-icon { display: none; }
}

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