:root {
    color-scheme: dark;
    --bg: #0d1117;
    --surface: #151b23;
    --surface-2: #1b2430;
    --raised: #202b38;
    --line: #2e3b4c;
    --line-soft: #222d39;
    --text: #f4f7fa;
    --secondary: #b9c3ce;
    --muted: #7f8c99;
    --accent: #e43c3c;
    --accent-strong: #ff5151;
    --accent-soft: rgb(228 60 60 / 12%);
    --green: #32c878;
    --warning: #f0b84b;
    --error: #e55757;
    --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font: 15px/1.65 "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; transform: translateY(-150%); background: var(--text); color: var(--bg); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--warning); outline-offset: 3px; }

.site-header {
    position: sticky; top: 0; z-index: 20;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    min-height: 74px; padding: 10px max(4vw, 22px);
    border-bottom: 1px solid var(--line-soft);
    background: rgb(13 17 23 / 94%);
    backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; color: var(--text); font-size: 18px; font-weight: 800; letter-spacing: -.3px; }
.brand > span:first-child { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #ff6b6b; border-radius: 6px; background: var(--accent); color: #fff; font-size: 20px; box-shadow: 0 0 0 4px var(--accent-soft); }
.brand small { display: block; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: clamp(13px, 1.7vw, 24px); }
nav > a:not(.button) { color: var(--secondary); font-size: 13px; font-weight: 650; }
nav a:hover, nav a:focus-visible, .text-link, .signin { color: var(--accent-strong); }
.nav-toggle { display: none; padding: 8px 11px; border: 1px solid var(--line); border-radius: 5px; background: var(--surface); color: var(--text); }

main { min-height: calc(100vh - 320px); }
.page-shell { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }
.section { padding-block: 82px; }
.page-hero { max-width: var(--max); padding-top: 94px; padding-bottom: 48px; border-bottom: 1px solid var(--line-soft); }
.page-hero h1 { max-width: 950px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 32px; }
.section-heading > div { max-width: 760px; }
.eyebrow { margin: 0 0 12px; color: var(--accent-strong); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.signal-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgb(50 200 120 / 12%); }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0 0 22px; font-size: clamp(2.65rem, 5.9vw, 5.25rem); line-height: .98; letter-spacing: -.055em; }
h1 span { color: var(--accent-strong); }
h2 { margin: 0 0 14px; font-size: clamp(1.8rem, 3.2vw, 3rem); line-height: 1.12; letter-spacing: -.035em; }
h3 { margin: 0 0 10px; font-size: 1.05rem; line-height: 1.3; }
p { margin-top: 0; }
.lead { max-width: 750px; color: var(--secondary); font-size: clamp(1.02rem, 1.5vw, 1.2rem); line-height: 1.75; }
.muted { color: var(--muted); }
.centre { text-align: center; }

.button {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; padding: 10px 19px;
    border: 1px solid var(--accent); border-radius: 6px;
    background: var(--accent); color: #fff;
    font-weight: 750; line-height: 1.2; cursor: pointer;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.button:hover { background: var(--accent-strong); border-color: var(--accent-strong); transform: translateY(-1px); }
.button.secondary { border-color: var(--line); background: var(--surface-2); color: var(--text); }
.button.secondary:hover { border-color: #53667a; background: var(--raised); }
.button-small { min-height: 36px; padding: 7px 13px; font-size: 12px; }
.actions, .card-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.text-actions { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 23px; }
.text-actions a, .text-link { font-size: 13px; font-weight: 750; }

.hero {
    position: relative;
    display: grid; grid-template-columns: minmax(380px, .78fr) minmax(560px, 1.22fr);
    align-items: center; gap: clamp(36px, 4vw, 64px);
    width: min(1380px, calc(100% - 44px)); min-height: 720px; margin: auto; padding: 78px 0 88px;
}
.hero::before {
    position: absolute; top: 12%; right: -8%; z-index: -1;
    width: 52%; height: 66%; border-radius: 50%;
    background: rgb(228 60 60 / 8%); filter: blur(90px); content: "";
}
.hero-copy { max-width: 650px; }
.hero-copy .lead { max-width: 690px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.hero-proof span {
    padding: 7px 10px; border: 1px solid var(--line); border-radius: 4px;
    background: rgb(21 27 35 / 78%); color: var(--secondary);
    font-size: 10px; font-weight: 800; letter-spacing: .55px; text-transform: uppercase;
}
.hero-primary-action { min-width: 154px; box-shadow: 0 12px 30px rgb(228 60 60 / 22%); }
.product-showcase {
    position: relative;
    width: min(100%, 900px);
    margin: 0;
    border: 1px solid #344152;
    border-radius: 12px;
    background: linear-gradient(145deg, #18212b, #0e141b);
    box-shadow: 0 38px 90px rgb(0 0 0 / 46%), 0 0 0 1px rgb(255 255 255 / 2%) inset;
    transform: perspective(1600px) rotateY(-2.2deg) rotateX(.5deg);
    transform-origin: center;
    isolation: isolate;
}
.product-showcase::after {
    position: absolute;
    inset: 12% 0 -8% 12%;
    z-index: -1;
    border-radius: 50%;
    background: rgb(228 60 60 / 13%);
    filter: blur(55px);
    content: "";
}
.product-showcase-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font: 700 9px/1.2 Consolas, monospace;
    letter-spacing: 1px;
}
.product-showcase-bar span { display: inline-flex; align-items: center; gap: 7px; }
.product-showcase-bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgb(50 211 122 / 60%); }
.product-showcase-bar strong { color: var(--accent-strong); }
.product-showcase-stage {
    overflow: hidden;
    margin: 12px;
    border: 1px solid #2d3947;
    border-radius: 7px;
    background: #0b0f14;
}
.product-showcase-stage img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1617 / 1016;
    object-fit: cover;
    object-position: center;
}
.product-showcase-meta {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    margin: 0 12px 12px; overflow: hidden;
    border: 1px solid var(--line-soft); border-radius: 5px; background: var(--line-soft);
}
.product-showcase-meta span {
    padding: 10px 11px; background: #111820; color: var(--muted);
    font: 700 9px/1.35 Consolas, monospace; text-align: center; text-transform: uppercase;
}
.product-showcase-meta strong { color: var(--text); }
.product-showcase figcaption {
    padding: 0 16px 14px;
    color: var(--muted);
    font: 10px/1.5 Consolas, monospace;
}
.product-console { padding: 20px; border: 1px solid var(--line); border-radius: 9px; background: #111820; box-shadow: 0 28px 70px rgb(0 0 0 / 35%); }
.console-top { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 15px; border-bottom: 1px solid var(--line); color: var(--muted); font: 700 10px/1.2 Consolas, monospace; letter-spacing: 1px; }
.console-top strong { color: var(--green); }
.console-top i { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--green); }
.console-device { display: flex; align-items: center; gap: 15px; padding: 26px 0 20px; }
.phone-mark { display: grid; place-items: center; width: 48px; height: 58px; border: 1px solid var(--accent); border-radius: 6px; background: var(--accent-soft); color: var(--accent-strong); font-size: 28px; }
.console-device small, .console-device p { color: var(--muted); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.console-device h2 { margin: 3px 0; font-size: 1.2rem; }
.console-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-soft); }
.console-grid div { padding: 14px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.console-grid div:nth-child(2n) { border-right: 0; }
.console-grid div:nth-last-child(-n+2) { border-bottom: 0; }
.console-grid span, .data-row span { display: block; color: var(--muted); font-size: 10px; letter-spacing: .8px; text-transform: uppercase; }
.console-grid strong { display: block; margin-top: 5px; font-size: 12px; }
.console-progress { height: 4px; margin-top: 18px; overflow: hidden; background: var(--surface-2); }
.console-progress span { display: block; width: 82%; height: 100%; background: var(--accent); }
.product-console > p { margin: 11px 0 0; color: var(--muted); font: 10px Consolas, monospace; }

.trust-strip { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px 48px; padding: 20px 24px; border-block: 1px solid var(--line-soft); background: #10151c; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 1.2px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-grid.expanded { grid-template-columns: repeat(3, 1fr); }
.feature-card, .card, .form-card, .support-card {
    border: 1px solid var(--line); border-radius: 8px; background: var(--surface); box-shadow: 0 14px 35px rgb(0 0 0 / 13%);
}
.feature-card { min-height: 225px; padding: 25px; }
.feature-card h2 { font-size: 1.1rem; letter-spacing: -.015em; }
.feature-card p, .card p, .support-card p { color: var(--secondary); }
.feature-icon { display: grid; place-items: center; width: 37px; height: 37px; margin-bottom: 22px; border: 1px solid rgb(228 60 60 / 35%); border-radius: 6px; background: var(--accent-soft); color: var(--accent-strong); font-weight: 850; }
.card { padding: 25px; }

.compatibility-band { padding-block: 80px; border-block: 1px solid var(--line-soft); background: #11171e; }
.compatibility-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(42px, 8vw, 110px); }
.check-list, .compact-list { margin: 22px 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 11px 0; padding-left: 25px; color: var(--secondary); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 850; }
.android-stack { border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.android-stack > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px; border-bottom: 1px solid var(--line-soft); }
.android-stack > p { margin: 0; padding: 18px 20px; color: var(--muted); font-size: 12px; }
.status { display: inline-flex; padding: 5px 8px; border: 1px solid currentColor; border-radius: 4px; font-size: 10px; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.status.supported, .status.tested { color: var(--green); }
.status.limited, .status.confirmation { color: var(--warning); }
.status.planned { color: #8aa4be; }

.conversion-panel, .community-panel, .developer-panel, .reseller-banner {
    display: grid; grid-template-columns: 1.4fr .6fr; align-items: center; gap: 36px;
    padding: clamp(28px, 5vw, 52px); border: 1px solid var(--line); border-radius: 9px; background: var(--surface-2);
}
.conversion-panel { border-left: 4px solid var(--accent); }
.conversion-panel p, .community-panel p, .developer-panel p, .reseller-banner p { color: var(--secondary); }
.conversion-actions { display: grid; gap: 10px; }
.pricing-preview, .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.price-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.price-card.featured { border-color: var(--accent); background: linear-gradient(180deg, rgb(228 60 60 / 8%), var(--surface) 35%); }
.price-card.full { padding: clamp(28px, 4vw, 44px); }
.plan-label { color: var(--secondary); font-size: 13px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; }
.price { margin: 12px 0; font-size: 4.1rem; font-weight: 850; line-height: 1; letter-spacing: -.06em; }
.price sup { margin-right: 5px; color: var(--muted); font-size: .85rem; letter-spacing: 0; }
.duration { color: var(--muted); }
.recommendation { position: absolute; top: 0; right: 22px; padding: 7px 11px; background: var(--accent); color: #fff; font-size: 9px; font-weight: 850; letter-spacing: 1px; }
.pricing-section { padding-bottom: 90px; }
.reseller-banner { margin-top: 24px; }
.reseller-number, .support-number { display: block; margin-bottom: 15px; color: var(--text); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 850; letter-spacing: -.04em; }

.community-actions { display: grid; gap: 10px; }
.community-link { display: flex; justify-content: space-between; gap: 18px; padding: 17px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); }
.community-link:hover { border-color: #52657a; background: var(--raised); }
.community-link strong, .community-link span { display: block; }
.community-link span { color: var(--muted); font-size: 12px; }
.community-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.community-link.large { align-items: center; min-height: 145px; padding: 26px; }
.community-link.large > span { display: grid; place-items: center; flex: 0 0 44px; height: 44px; border-radius: 6px; background: var(--accent-soft); color: var(--accent-strong); font-size: 18px; font-weight: 850; }
.community-link.large p { margin: 6px 0 0; color: var(--secondary); }

.filter-bar { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
label { display: grid; gap: 7px; margin: 13px 0; color: var(--secondary); font-size: 12px; font-weight: 700; }
input, textarea, select { width: 100%; min-height: 43px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 6px; background: #10161e; color: var(--text); }
input:focus, textarea:focus, select:focus { border-color: var(--accent); outline: 3px solid var(--accent-soft); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.compatibility-table { width: 100%; min-width: 850px; border-collapse: collapse; text-align: left; }
.compatibility-table th { padding: 13px 16px; background: var(--surface-2); color: var(--muted); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.compatibility-table td { padding: 16px; border-top: 1px solid var(--line-soft); color: var(--secondary); vertical-align: middle; }
.compatibility-table td:first-child { color: var(--text); font-weight: 750; }
.empty-state { margin: 0; padding: 30px; text-align: center; color: var(--muted); }
.notice { margin-top: 18px; padding: 20px; border: 1px solid var(--line); border-left: 3px solid var(--warning); border-radius: 6px; background: var(--surface); }
.notice p { margin: 4px 0 0; color: var(--secondary); }

.download-centre { padding-bottom: 90px; }
.download-hero { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; padding: clamp(28px, 5vw, 50px); border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.download-hero h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
.badge { display: inline-flex; padding: 5px 9px; border: 1px solid rgb(50 200 120 / 35%); border-radius: 4px; background: rgb(50 200 120 / 10%); color: var(--green); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.badge.warning { border-color: rgb(240 184 75 / 35%); background: rgb(240 184 75 / 10%); color: var(--warning); }
.release-notes { color: var(--secondary); white-space: pre-line; }
.download-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.release-details { margin: 0; border: 1px solid var(--line-soft); }
.release-details div { display: flex; justify-content: space-between; gap: 20px; padding: 15px; border-bottom: 1px solid var(--line-soft); }
.release-details div:last-child { border-bottom: 0; }
.release-details dt { color: var(--muted); }
.release-details dd { margin: 0; font-weight: 750; text-align: right; }
.checksum-card { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 16px; padding: 22px; border: 1px solid var(--line); border-radius: 7px; background: #10161e; }
.checksum-card code { color: var(--secondary); overflow-wrap: anywhere; }
.download-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.compact-list { color: var(--secondary); }
.compact-list li { margin: 8px 0; }
.warning-card { border-top: 3px solid var(--warning); }
.availability-card { display: flex; align-items: center; gap: 24px; padding: 32px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.availability-card > div { flex: 1; }

.support-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; }
.support-card { padding: clamp(26px, 4vw, 40px); }
.support-card.primary { border-top: 3px solid var(--accent); }
.about-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; padding-block: 60px; }
.about-layout > div:first-child p { color: var(--secondary); font-size: 1.05rem; }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.principles-grid article { padding: 22px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); }
.principles-grid p { margin: 7px 0 0; color: var(--secondary); }

.form-card { width: min(540px, calc(100% - 32px)); margin: 68px auto; padding: 32px; }
.form-card h1 { font-size: clamp(2rem, 6vw, 3.1rem); }
.validation, .error { color: #ff8c8c; }
.success { color: var(--green); }
.recovery-shell {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(480px, 1fr);
    align-items: center;
    gap: clamp(38px, 7vw, 100px);
    width: min(var(--max), calc(100% - 44px));
    min-height: 720px;
    margin: auto;
    padding: 64px 0 84px;
}
.recovery-intro { max-width: 540px; }
.recovery-intro h1 { max-width: 620px; font-size: clamp(3rem, 6vw, 5.7rem); }
.recovery-intro > p:not(.eyebrow) { color: var(--secondary); font-size: 1.03rem; }
.recovery-security {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    padding: 19px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #10161e;
}
.recovery-security > span {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    height: 34px;
    border: 1px solid rgb(50 200 120 / 35%);
    border-radius: 50%;
    background: rgb(50 200 120 / 10%);
    color: var(--green);
    font-weight: 850;
}
.recovery-security p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.recovery-card { width: 100%; margin: 0; padding: clamp(27px, 4vw, 42px); }
.recovery-card h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.recovery-form label { margin: 18px 0 7px; color: var(--text); letter-spacing: .02em; }
.password-field { position: relative; }
.password-field input { padding-right: 74px; }
.password-toggle {
    position: absolute;
    top: 50%;
    right: 7px;
    min-width: 57px;
    min-height: 31px;
    padding: 5px 10px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface-2);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 800;
    transform: translateY(-50%);
}
.password-toggle:hover { border-color: var(--accent); color: var(--text); }
.password-toggle:focus-visible { outline: 3px solid var(--accent-soft); border-color: var(--accent); }
.password-guidance {
    margin: 20px 0;
    padding: 16px 18px;
    border: 1px solid var(--line-soft);
    border-left: 3px solid var(--warning);
    border-radius: 5px;
    background: #10161e;
    color: var(--secondary);
    font-size: 12px;
}
.password-guidance strong { color: var(--text); }
.password-guidance ul { margin: 9px 0 0; padding-left: 20px; }
.password-guidance li { margin: 5px 0; }
.recovery-submit { width: 100%; }
.back-link { display: inline-flex; gap: 8px; margin-top: 22px; color: var(--secondary); font-size: 13px; font-weight: 750; }
.form-alert { margin: 18px 0; padding: 13px 15px; border: 1px solid rgb(229 87 87 / 35%); border-radius: 5px; }
.recovery-result { padding: 8px 0; }
.recovery-result .result-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 50%;
    font-size: 21px;
    font-weight: 900;
}
.success-panel .result-mark { border: 1px solid rgb(50 200 120 / 45%); background: rgb(50 200 120 / 12%); color: var(--green); }
.recovery-confirmation .result-mark { border: 1px solid rgb(50 200 120 / 55%); background: rgb(50 200 120 / 14%); color: var(--green); box-shadow: 0 0 0 7px rgb(50 200 120 / 5%); }
.recovery-confirmation h2 { margin-bottom: 12px; }
.recovery-confirmation .card-actions { margin-top: 24px; }
.recovery-reminder {
    margin-top: 24px;
    padding: 15px 17px;
    border: 1px solid rgb(69 160 255 / 28%);
    border-left: 3px solid #459fff;
    border-radius: 5px;
    background: rgb(69 160 255 / 7%);
}
.recovery-reminder strong { color: var(--text); }
.recovery-reminder p { margin: 4px 0 0; color: var(--secondary); font-size: 13px; }
.recovery-support { margin: 20px 0 0; color: var(--muted); font-size: 12px; }
.recovery-support a { color: var(--accent-strong); font-weight: 800; }
.recovery-submit:disabled { cursor: wait; opacity: .82; transform: none; }
.submit-progress { display: inline-flex; align-items: center; gap: 9px; }
.submit-spinner {
    width: 15px;
    height: 15px;
    border: 2px solid rgb(255 255 255 / 38%);
    border-top-color: #fff;
    border-radius: 50%;
    animation: submit-spin .8s linear infinite;
}
.submit-progress[hidden] { display: none; }
@keyframes submit-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .submit-spinner { animation: none; } }
.error-panel .result-mark { border: 1px solid rgb(229 87 87 / 45%); background: rgb(229 87 87 / 12%); color: #ff8c8c; }
.recovery-result > p:not(.eyebrow) { color: var(--secondary); }
.account-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 24px; }
.account-nav { display: grid; align-content: start; gap: 7px; }
.account-nav a { padding: 11px 13px; border: 1px solid var(--line); border-radius: 5px; background: var(--surface); color: var(--secondary); }
.account-nav a:hover { color: var(--text); border-color: #52657a; }
.grid, .metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0; }
.data-row { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }

.site-footer { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 42px; padding: 58px max(4vw, 22px) 24px; border-top: 1px solid var(--line); background: #090d12; color: var(--muted); }
.site-footer h2 { margin-bottom: 13px; color: var(--text); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.site-footer > div:not(.footer-bottom) > a:not(.brand) { display: block; margin: 9px 0; color: var(--secondary); font-size: 13px; }
.site-footer a:hover { color: var(--accent-strong); }
.footer-brand p { max-width: 390px; margin: 16px 0 0; }
.footer-credit { font-size: 12px; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 24px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line-soft); font-size: 11px; }

@media (max-width: 1100px) {
    .site-header { flex-wrap: wrap; }
    .nav-toggle { display: inline-flex; align-items: center; gap: 7px; }
    nav { display: none; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 5px; padding: 18px 22px 24px; border-bottom: 1px solid var(--line); background: #0d1117; box-shadow: 0 22px 40px rgb(0 0 0 / 30%); }
    nav.open { display: flex; }
    nav > a { padding: 10px 4px; }
    .feature-grid, .feature-grid.expanded { grid-template-columns: repeat(2, 1fr); }
    .filter-bar { grid-template-columns: 1fr 1fr; }
    .site-footer { grid-template-columns: 1.5fr 1fr 1fr; }
    .site-footer > div:nth-child(4) { grid-column: 2; }
    .hero { grid-template-columns: minmax(300px, .8fr) minmax(430px, 1.2fr); gap: 30px; }
}

@media (max-width: 800px) {
    .page-shell, .hero { width: min(100% - 30px, var(--max)); }
    .section { padding-block: 58px; }
    .hero { grid-template-columns: 1fr; min-height: auto; padding: 64px 0; }
    .hero-copy { max-width: none; }
    .product-console, .product-showcase { width: 100%; max-width: 850px; }
    .product-showcase { transform: none; }
    .compatibility-layout, .conversion-panel, .community-panel, .developer-panel, .reseller-banner,
    .pricing-preview, .pricing-grid, .download-hero, .support-grid, .about-layout { grid-template-columns: 1fr; }
    .download-info-grid { grid-template-columns: 1fr; }
    .community-card-grid { grid-template-columns: 1fr; }
    .account-layout { grid-template-columns: 1fr; }
    .recovery-shell { grid-template-columns: 1fr; min-height: auto; padding-top: 58px; }
    .recovery-intro { max-width: 680px; }
    .account-nav { grid-template-columns: repeat(3, 1fr); }
    .grid, .metrics { grid-template-columns: 1fr 1fr; }
    .site-footer { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .site-footer > div:nth-child(4) { grid-column: auto; }
}

@media (max-width: 520px) {
    .product-showcase { transform: none; }
    .product-showcase-bar { align-items: flex-start; flex-direction: column; }
    .product-showcase-meta { grid-template-columns: 1fr; }
    .site-header { min-height: 66px; padding-inline: 15px; }
    nav { top: 66px; }
    .brand small { display: none; }
    h1 { font-size: clamp(2.25rem, 13vw, 3.5rem); }
    .page-hero { padding-top: 64px; }
    .actions, .card-actions, .text-actions { flex-direction: column; align-items: stretch; }
    .button { width: 100%; }
    .feature-grid, .feature-grid.expanded, .grid, .metrics, .principles-grid, .filter-bar { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; }
    .console-grid { grid-template-columns: 1fr; }
    .console-grid div { border-right: 0; }
    .console-grid div:nth-last-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
    .console-grid div:last-child { border-bottom: 0; }
    .trust-strip { justify-content: flex-start; gap: 13px; }
    .android-stack > div { align-items: flex-start; flex-direction: column; }
    .availability-card, .checksum-card { align-items: stretch; flex-direction: column; }
    .account-nav { grid-template-columns: 1fr 1fr; }
    .site-footer { grid-template-columns: 1fr; gap: 25px; padding-inline: 18px; }
    .recovery-shell { width: min(100% - 28px, var(--max)); gap: 32px; padding-block: 46px 60px; }
    .recovery-card { padding: 24px 20px; }
    .footer-brand, .footer-bottom { grid-column: 1; }
    .footer-bottom { flex-direction: column; }
}
