/* DeskPulse — deskpulse.io
   Dark-first palette (a desktop at night), light theme derived from the same tokens. */

:root {
    color-scheme: dark;
    --ground: #0b0f14;
    --ground-2: #0f151c;
    --surface: #141b24;
    --surface-2: #1b2430;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);
    --text: #eef2f6;
    --text-2: #a5b1bf;
    --text-3: #6f7d8c;
    --accent: #57c4ff;
    --accent-deep: #2b6cf6;
    --accent-ink: #06263d;
    --accent-soft: rgba(87, 196, 255, 0.14);
    --up: #5cd67a;
    --up-soft: rgba(92, 214, 122, 0.14);
    --down: #ff7a8a;
    --down-soft: rgba(255, 122, 138, 0.14);
    --glow: rgba(87, 196, 255, 0.28);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.35);

    --display: 'Bricolage Grotesque', 'Segoe UI Variable Display', 'Segoe UI', system-ui, sans-serif;
    --body: 'Manrope', 'Segoe UI Variable Text', 'Segoe UI', system-ui, sans-serif;
    --mono: 'JetBrains Mono', 'Cascadia Code', Consolas, monospace;

    --container: 1120px;
    --radius: 18px;
    --radius-sm: 10px;
}

@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) {
        color-scheme: light;
        --ground: #f3f6fa;
        --ground-2: #eaeff5;
        --surface: #ffffff;
        --surface-2: #f5f8fc;
        --line: rgba(15, 22, 32, 0.09);
        --line-strong: rgba(15, 22, 32, 0.18);
        --text: #0f1620;
        --text-2: #4d5c6d;
        --text-3: #7b8896;
        --accent: #0a6fd6;
        --accent-deep: #0a4fb3;
        --accent-ink: #ffffff;
        --accent-soft: rgba(10, 111, 214, 0.1);
        --up: #157f3b;
        --up-soft: rgba(21, 127, 59, 0.12);
        --down: #c8323f;
        --down-soft: rgba(200, 50, 63, 0.12);
        --glow: rgba(10, 111, 214, 0.18);
        --shadow: 0 30px 80px rgba(15, 22, 32, 0.18);
        --shadow-sm: 0 10px 30px rgba(15, 22, 32, 0.12);
    }
}

:root[data-theme="light"] {
    color-scheme: light;
    --ground: #f3f6fa;
    --ground-2: #eaeff5;
    --surface: #ffffff;
    --surface-2: #f5f8fc;
    --line: rgba(15, 22, 32, 0.09);
    --line-strong: rgba(15, 22, 32, 0.18);
    --text: #0f1620;
    --text-2: #4d5c6d;
    --text-3: #7b8896;
    --accent: #0a6fd6;
    --accent-deep: #0a4fb3;
    --accent-ink: #ffffff;
    --accent-soft: rgba(10, 111, 214, 0.1);
    --up: #157f3b;
    --up-soft: rgba(21, 127, 59, 0.12);
    --down: #c8323f;
    --down-soft: rgba(200, 50, 63, 0.12);
    --glow: rgba(10, 111, 214, 0.18);
    --shadow: 0 30px 80px rgba(15, 22, 32, 0.18);
    --shadow-sm: 0 10px 30px rgba(15, 22, 32, 0.12);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--ground);
    color: var(--text);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0;
}

.container {
    width: min(var(--container), calc(100% - 2.5rem));
    margin-inline: auto;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.lead {
    font-size: 1.18rem;
    color: var(--text-2);
    max-width: 58ch;
}

.section {
    padding: 6rem 0;
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 720px;
    margin-bottom: 3rem;
}

.mono {
    font-family: var(--mono);
    font-variant-numeric: tabular-nums;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: 0 10px 30px var(--glow);
}

.btn-primary:hover {
    box-shadow: 0 14px 36px var(--glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line-strong);
}

.btn-ghost:hover {
    background: var(--surface-2);
}

.btn-lg {
    padding: 1.05rem 1.8rem;
    font-size: 1.08rem;
}

.btn-meta {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text-3);
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px) saturate(140%);
    background: color-mix(in srgb, var(--ground) 78%, transparent);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.logo:hover {
    text-decoration: none;
}

.logo img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-2);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text);
    text-decoration: none;
}

.nav .btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.92rem;
}

@media (max-width: 820px) {
    .nav-links {
        display: none;
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -20% -10% auto auto;
    width: 60%;
    height: 90%;
    background: radial-gradient(closest-side, var(--glow), transparent 70%);
    opacity: 0.7;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-copy h1 span {
    color: var(--accent);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.4rem;
    font-size: 0.9rem;
    color: var(--text-2);
}

.hero-meta li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    list-style: none;
}

.hero-meta ul {
    display: contents;
}

.hero-meta svg {
    width: 16px;
    height: 16px;
    color: var(--up);
}

.hero-visual {
    position: relative;
    display: grid;
    justify-items: center;
}

.hero-shot {
    width: min(440px, 100%);
    border-radius: 22px;
    box-shadow: var(--shadow), 0 0 0 1px var(--line);
}

/* Floating Windows-style notification */
.toast {
    position: absolute;
    right: -18px;
    top: 42px;
    width: 300px;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0.75rem;
    align-items: start;
    animation: toast-in 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s both;
}

.toast img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.toast strong {
    display: block;
    font-size: 0.92rem;
}

.toast span {
    font-size: 0.85rem;
    color: var(--text-2);
}

.toast small {
    display: block;
    margin-top: 0.3rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--text-3);
}

.hotkey-chip {
    position: absolute;
    left: -10px;
    bottom: 56px;
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
    font-size: 0.82rem;
    color: var(--text-2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: toast-in 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s both;
}

.hotkey-chip kbd {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--line-strong);
    border-bottom-width: 2px;
    border-radius: 6px;
    padding: 0.1rem 0.4rem;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        padding: 0 1rem;
    }

    .toast {
        right: 0;
    }

    .hotkey-chip {
        left: 0;
    }
}

/* ---------- Trust strip ---------- */
.trust {
    border-block: 1px solid var(--line);
    background: var(--ground-2);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}

.trust-item {
    background: var(--ground-2);
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.trust-item strong {
    font-family: var(--display);
    font-size: 1.05rem;
}

.trust-item span {
    font-size: 0.92rem;
    color: var(--text-2);
}

.trust-item svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- Feature showcase (alternating rows) ---------- */
.showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.feature-row:nth-child(even) .feature-media {
    order: -1;
}

.feature-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-copy h3 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.feature-copy p {
    color: var(--text-2);
    max-width: 52ch;
}

.feature-copy ul {
    margin: 0.4rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-2);
    font-size: 0.98rem;
}

.feature-copy li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.feature-copy li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 0.6rem;
    border-radius: 50%;
    background: var(--accent);
}

.feature-media {
    display: grid;
    justify-items: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius);
    background:
        radial-gradient(60% 70% at 50% 40%, var(--accent-soft), transparent 70%),
        var(--surface);
    border: 1px solid var(--line);
}

.feature-media img {
    width: min(400px, 100%);
    border-radius: 18px;
    box-shadow: var(--shadow-sm), 0 0 0 1px var(--line);
}

.feature-media.pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
}

.feature-media.pair img {
    width: 100%;
}

.feature-media.pair img.small {
    width: 78%;
}

@media (max-width: 900px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row:nth-child(even) .feature-media {
        order: 0;
    }
}

/* ---------- Small feature grid ---------- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tile {
    padding: 1.4rem 1.4rem 1.5rem;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tile svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.tile strong {
    font-family: var(--display);
    font-size: 1.05rem;
}

.tile span {
    font-size: 0.93rem;
    color: var(--text-2);
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ---------- Steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 1.6rem 1.5rem 1.7rem;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.step strong {
    font-family: var(--display);
    font-size: 1.15rem;
}

.step span {
    color: var(--text-2);
    font-size: 0.95rem;
}

@media (max-width: 800px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

/* ---------- Comparison table ---------- */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--surface);
}

.compare {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 640px;
}

.compare th,
.compare td {
    padding: 0.9rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.compare thead th {
    font-family: var(--display);
    font-size: 0.95rem;
    color: var(--text-2);
    background: var(--surface-2);
}

.compare thead th:first-child {
    color: var(--text-3);
    font-weight: 500;
}

.compare th.hl {
    color: var(--accent);
}

.compare tbody th {
    font-weight: 600;
    color: var(--text);
    width: 30%;
}

.compare tbody tr:last-child td,
.compare tbody tr:last-child th {
    border-bottom: 0;
}

.compare td {
    color: var(--text-2);
}

.compare td.yes {
    color: var(--up);
    font-weight: 600;
}

.compare td.no {
    color: var(--text-3);
}

/* ---------- FAQ ---------- */
.faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.faq details {
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 0 1.3rem;
}

.faq summary {
    cursor: pointer;
    list-style: none;
    padding: 1.1rem 0;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: '+';
    font-family: var(--mono);
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq details[open] summary::after {
    content: '−';
}

.faq details p {
    padding: 0 0 1.2rem;
    color: var(--text-2);
    font-size: 0.97rem;
}

@media (max-width: 800px) {
    .faq {
        grid-template-columns: 1fr;
    }
}

/* ---------- Final CTA ---------- */
.cta-final {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background:
        radial-gradient(70% 120% at 100% 0%, var(--accent-soft), transparent 60%),
        var(--surface);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.cta-final h2 {
    margin-bottom: 0.8rem;
}

.cta-final p {
    color: var(--text-2);
}

.cta-final .hero-cta {
    justify-self: end;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 800px) {
    .cta-final {
        grid-template-columns: 1fr;
        padding: 2.2rem;
    }

    .cta-final .hero-cta {
        justify-self: start;
        align-items: flex-start;
    }
}

/* ---------- Footer ---------- */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 3rem 0 2.5rem;
    font-size: 0.9rem;
    color: var(--text-2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-grid h4 {
    margin: 0 0 0.8rem;
    font-family: var(--display);
    font-size: 0.95rem;
    color: var(--text);
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-grid a {
    color: var(--text-2);
}

.footer-grid a:hover {
    color: var(--text);
}

.footer-legal {
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-3);
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Legal pages ---------- */
.legal {
    padding: 4rem 0 6rem;
}

.legal-body {
    max-width: 72ch;
}

.legal-body h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
}

.legal-body .updated {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text-3);
    margin-bottom: 2.5rem;
}

.legal-body h2 {
    font-size: 1.35rem;
    margin: 2.2rem 0 0.7rem;
}

.legal-body h3 {
    font-size: 1.05rem;
    margin: 1.4rem 0 0.4rem;
}

.legal-body p,
.legal-body li {
    color: var(--text-2);
    margin-bottom: 0.7rem;
}

.legal-body ul {
    padding-left: 1.2rem;
}

.legal-body address {
    font-style: normal;
    color: var(--text-2);
    line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {

    .toast,
    .hotkey-chip {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ---------- Blog ---------- */
.blog-index {
    padding: 4rem 0 6rem;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.post-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.6rem;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--text);
    transition: border-color 0.15s, transform 0.15s;
}

.post-card:hover {
    text-decoration: none;
    border-color: var(--line-strong);
    transform: translateY(-2px);
}

.post-card h3 {
    font-size: 1.25rem;
    line-height: 1.25;
}

.post-card p {
    color: var(--text-2);
    font-size: 0.95rem;
}

.post-meta {
    font-family: var(--mono);
    font-size: 0.74rem;
    color: var(--text-3);
    letter-spacing: 0.04em;
}

@media (max-width: 760px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
}

.article {
    padding: 3.5rem 0 6rem;
}

.article-body {
    max-width: 70ch;
}

.breadcrumbs {
    font-family: var(--mono);
    font-size: 0.76rem;
    color: var(--text-3);
    margin-bottom: 1.6rem;
}

.breadcrumbs a {
    color: var(--text-3);
}

.article-body h1 {
    font-size: clamp(2rem, 4.2vw, 3rem);
    margin-bottom: 0.9rem;
}

.article-body .lead {
    margin-bottom: 1.2rem;
}

.article-body h2 {
    font-size: 1.55rem;
    margin: 2.6rem 0 0.8rem;
}

.article-body h3 {
    font-size: 1.15rem;
    margin: 1.8rem 0 0.5rem;
}

.article-body p,
.article-body li {
    color: var(--text-2);
    margin-bottom: 0.9rem;
}

.article-body ul,
.article-body ol {
    padding-left: 1.3rem;
}

.article-body figure {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--line);
    display: grid;
    justify-items: center;
    gap: 0.8rem;
}

.article-body figure img {
    width: min(400px, 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-sm), 0 0 0 1px var(--line);
}

.article-body figcaption {
    font-size: 0.85rem;
    color: var(--text-3);
    text-align: center;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
    margin: 1.2rem 0 1.6rem;
}

.article-body th,
.article-body td {
    text-align: left;
    padding: 0.6rem 0.7rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    color: var(--text-2);
}

.article-body th {
    color: var(--text);
    font-family: var(--display);
    font-weight: 600;
}

.article-body kbd {
    font-family: var(--mono);
    font-size: 0.82em;
    background: var(--surface-2);
    border: 1px solid var(--line-strong);
    border-bottom-width: 2px;
    border-radius: 5px;
    padding: 0.05rem 0.35rem;
    color: var(--text);
}

.article-cta {
    margin: 2.5rem 0;
    padding: 1.6rem 1.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background:
        radial-gradient(70% 120% at 100% 0%, var(--accent-soft), transparent 60%),
        var(--surface);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.article-cta strong {
    font-family: var(--display);
    font-size: 1.15rem;
    display: block;
}

.article-cta span {
    color: var(--text-2);
    font-size: 0.95rem;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
    color: var(--text-3);
}

.related {
    margin-top: 3rem;
}

.related h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Dedicated download landing (ads) */
.dl-hero {
    padding: 4rem 0 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.dl-hero ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    color: var(--text-2);
}

.dl-hero li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.dl-hero li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--up);
    margin-top: 0.2rem;
}

@media (max-width: 860px) {
    .dl-hero {
        grid-template-columns: 1fr;
    }
}
