/* Slídilka — veřejný web (slidilka.cz)
   Vizuální systém: značková fialová z aplikace (#6d28d9) jen pro akce a značku,
   jantar pro čenich a verdikt „možná“, zelená pro shodu. Nadpisy Bricolage Grotesque,
   text IBM Plex Sans (stejné písmo jako v aplikaci). */

:root {
    --ink: #1b1430;
    --ink-2: #514a68;
    --ink-3: #7d7690;
    --brand: #6d28d9;
    --brand-deep: #4c1d95;
    --brand-soft: #ede7fa;
    --brand-line: #d6c8f3;
    --ground: #f7f5fb;
    --paper: #ffffff;
    --line: #e4dff0;
    --amber: #f5b72b;
    --amber-ink: #7a5200;
    --amber-soft: #fff4d6;
    --match: #14934a;
    --match-soft: #e2f5e8;
    --no: #8a8499;
    --no-soft: #efedf3;
    --bazos: #2a78d6;
    --sbazar: #eb6834;
    --sauto: #c2185b;
    --sreality: #5b5fc7;
    --jobs: #0f766e;
    --prace: #b45309;
    --aukro: #1baf7a;

    --sans: "IBM Plex Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
    --display: "Bricolage Grotesque", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;

    --measure: 62ch;
    --wrap: 1120px;
    --gutter: clamp(20px, 4vw, 40px);
    --radius: 10px;
}

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

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

/* Hlavička je přilepená; bez rezervy by cíl kotvy (#jak-to-funguje…) zajel pod ni. */
[id] { scroll-margin-top: 84px; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

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

h1, h2, h3, h4 {
    font-family: var(--display);
    font-variation-settings: "wdth" 90;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin: 0;
    text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; font-variation-settings: "wdth" 95; letter-spacing: -0.015em; }

p { margin: 0 0 1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: var(--brand-deep); text-underline-offset: 0.15em; text-decoration-thickness: 1px; }
a:hover { color: var(--brand); }

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

.skip-link {
    position: absolute;
    left: 12px;
    top: -60px;
    z-index: 100;
    padding: 10px 14px;
    background: var(--ink);
    color: #fff;
    border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.wrap {
    width: min(100% - 2 * var(--gutter), var(--wrap));
    margin-inline: auto;
}

/* ---------- Tlačítka ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font: 500 1rem/1 var(--sans);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-deep); border-color: var(--brand-deep); color: #fff; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--brand-line); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand-deep); }
.btn-lg { padding: 15px 26px; font-size: 1.06rem; }

/* ---------- Hlavička ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--ground) 88%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.site-header .wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 68px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    font-family: var(--display);
    font-variation-settings: "wdth" 90;
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}
.brand img { width: 36px; height: 36px; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.site-nav a:not(.btn) {
    padding: 8px 12px;
    color: var(--ink-2);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.97rem;
}
.site-nav a:not(.btn):hover { color: var(--ink); background: var(--brand-soft); }
.site-nav .btn { margin-left: 8px; padding-block: 9px; }
.site-nav .nav-login { color: var(--brand-deep); }

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 10px;
    cursor: pointer;
    color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Sedm položek navigace se do jednoho řádku vejde až od ~1000 px; mezi 860 a 1000 se
   dřív lámaly na dva řádky. Tablet na výšku i menší notebook proto dostanou hamburger. */
@media (max-width: 999px) {
    .nav-toggle { display: inline-grid; place-items: center; }
    .site-nav {
        display: none;
        position: absolute;
        left: 0; right: 0; top: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 12px var(--gutter) max(18px, env(safe-area-inset-bottom));
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 32px -20px rgba(27, 20, 48, 0.35);
        /* Telefon na šířku: menu je vyšší než okno, ať jde rolovat a neuteče z dosahu. */
        max-height: calc(100vh - 68px);
        max-height: calc(100dvh - 68px);
        overflow-y: auto;
    }
    .site-nav.open { display: flex; }
    .site-nav a:not(.btn) { padding: 12px 10px; font-size: 1.05rem; }
    .site-nav .btn { margin: 8px 0 0; justify-content: center; }
}

/* ---------- Hero ---------- */

.hero {
    padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
    overflow: hidden;
}
.hero .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
.hero-copy h1 { margin-bottom: 0.5em; }
.hero-copy .lede {
    font-size: 1.18rem;
    color: var(--ink-2);
    max-width: 48ch;
    margin-bottom: 1.6em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note {
    margin-top: 20px;
    font-size: 0.93rem;
    color: var(--ink-3);
    max-width: 44ch;
}

@media (max-width: 960px) {
    .hero .wrap { grid-template-columns: 1fr; }
    .hero-copy .lede { max-width: var(--measure); }
}

/* Telefon: text o chlup menší, tlačítka výzvy přes celou šířku místo dvou nestejně
   zalomených pilulek pod sebou. */
@media (max-width: 480px) {
    body { font-size: 16px; }
    .hero-copy .lede { font-size: 1.1rem; }
    .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
}

/* Ukázka hledání — to jediné, co má na stránce být nápadné. */

.demo {
    position: relative;
    display: grid;
    gap: 14px;
    max-width: 560px;
    justify-self: end;
    width: 100%;
}
@media (max-width: 960px) { .demo { justify-self: stretch; max-width: none; } }

.demo-query {
    background: var(--paper);
    border: 1.5px solid var(--brand-line);
    border-radius: var(--radius);
    padding: 16px 18px 14px;
    box-shadow: 0 24px 48px -32px rgba(77, 29, 149, 0.45);
}
.demo-label {
    display: block;
    font-size: 0.82rem;
    color: var(--ink-3);
    margin-bottom: 6px;
}
.demo-text {
    font-family: var(--display);
    font-variation-settings: "wdth" 95;
    font-weight: 500;
    font-size: 1.28rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    min-height: 3.9em;
    margin: 0;
}
.demo-text .caret {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    margin-left: 2px;
    vertical-align: -0.18em;
    background: var(--brand);
    animation: blink 1s steps(2, start) infinite;
}
.demo.done .demo-text .caret { display: none; }
@keyframes blink { to { visibility: hidden; } }

.demo-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
    font-size: 0.86rem;
    color: var(--ink-3);
}
.src {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px 3px 8px;
    border-radius: 999px;
    background: var(--ground);
    border: 1px solid var(--line);
    color: var(--ink-2);
    font-size: 0.84rem;
    font-weight: 500;
}
.src::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--src, var(--ink-3));
}
.src-bazos { --src: var(--bazos); }
.src-sbazar { --src: var(--sbazar); }
.src-sauto { --src: var(--sauto); }
.src-sreality { --src: var(--sreality); }
.src-jobs { --src: var(--jobs); }
.src-prace { --src: var(--prace); }
.src-aukro { --src: var(--aukro); }

.demo-results {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.demo-results li {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: start;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.demo.animating .demo-results li { opacity: 0; transform: translateY(8px); }
.demo.animating .demo-results li.shown { opacity: 1; transform: none; }

.verdict {
    display: inline-block;
    padding: 4px 0;
    border-radius: 6px;
    text-align: center;
    font-family: var(--display);
    font-variation-settings: "wdth" 90;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: -0.01em;
    width: 100%;
}
.verdict-match { background: var(--match-soft); color: var(--match); }
.verdict-maybe { background: var(--amber-soft); color: var(--amber-ink); }
.verdict-no { background: var(--no-soft); color: var(--ink-3); }
.verdict small { display: block; font: 500 0.72rem/1.2 var(--sans); letter-spacing: 0; opacity: 0.85; }

.listing-title {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.35;
}
.listing-title .price { white-space: nowrap; color: var(--ink-2); font-weight: 500; }
.listing-why {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--ink-2);
    max-width: none;
}
.listing-src { margin-top: 6px; }
.listing-src .src { font-size: 0.78rem; padding-block: 2px; }

@media (max-width: 480px) {
    .demo-results li { grid-template-columns: 1fr; gap: 6px; }
    .verdict { width: auto; justify-self: start; padding-inline: 12px; }
    .listing-title { flex-direction: column; gap: 2px; }
}

/* ---------- Sekce ---------- */

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { margin-bottom: 0.45em; }
.section-head p { font-size: 1.1rem; color: var(--ink-2); }

/* Jak to funguje — pořadí kroků je skutečná sekvence, proto číslování. */

.steps {
    counter-reset: step;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 36px);
}
.steps li {
    counter-increment: step;
    position: relative;
    padding-top: 18px;
    border-top: 2px solid var(--brand-line);
}
.steps li::before {
    content: counter(step);
    position: absolute;
    top: -17px;
    left: 0;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: var(--ground);
    color: var(--brand-deep);
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--brand-line);
    border-radius: 50%;
}
.steps h3 { margin: 12px 0 8px; }
.steps p { font-size: 0.98rem; color: var(--ink-2); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* Ukázky zadání — „zeď“ vět, různě široké, jako by je někdo psal. */

.examples {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.examples li {
    flex: 1 1 260px;
    max-width: 420px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 4px solid var(--brand);
    border-radius: 6px;
    padding: 14px 18px 12px;
}
.examples q {
    font-family: var(--display);
    font-variation-settings: "wdth" 95;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
    quotes: "\201E" "\201C";
}
.examples small {
    display: block;
    margin-top: 8px;
    color: var(--ink-3);
    font-size: 0.85rem;
}

/* Portály */

.portals {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px 28px;
}
.portals li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
}
.portals .name { font-weight: 600; display: inline-flex; align-items: center; gap: 10px; }
.portals .name::before {
    content: "";
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--src, var(--line));
    flex: none;
}
.portals .name { flex-wrap: wrap; }
.portals .cats { flex-basis: 100%; padding-left: 20px; font-weight: 400; font-size: 0.86rem; color: var(--ink-3); }
.portals .state { font-size: 0.86rem; color: var(--ink-3); white-space: nowrap; }
.portals .state-live { color: var(--match); font-weight: 500; }
.portals-note { margin-top: 24px; color: var(--ink-2); font-size: 0.98rem; }

/* Srovnání — tabulka nese informaci, ne dekoraci. */

.compare {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.98rem;
}
.compare th, .compare td {
    text-align: left;
    vertical-align: top;
    padding: 14px 16px 14px 0;
    border-bottom: 1px solid var(--line);
}
.compare th { font-family: var(--display); font-variation-settings: "wdth" 92; font-weight: 700; font-size: 1.05rem; }
.compare thead th { color: var(--ink-3); font-size: 0.92rem; font-family: var(--sans); font-weight: 500; padding-top: 0; }
.compare thead th:last-child { color: var(--brand-deep); }
.compare td:last-child { color: var(--ink); }
.compare td:first-of-type { color: var(--ink-2); }
.compare th[scope="row"] { width: 22%; }
.table-scroll { overflow-x: auto; }

/* Telefon: tři sloupce se nevejdou a rolování do strany by schovalo právě ten sloupec,
   o který jde (Slídilka). Každý řádek je proto karta: vlastnost jako nadpis, pod ní
   obě strany srovnání s popiskem z `data-label`. Hlavička tabulky je pak zbytečná. */
@media (max-width: 640px) {
    .compare, .compare tbody, .compare tr, .compare th, .compare td { display: block; }
    .compare thead { display: none; }
    .compare tr { padding: 14px 0; border-bottom: 1px solid var(--line); }
    .compare th[scope="row"] { width: auto; padding: 0 0 6px; border: 0; }
    .compare td { padding: 4px 0 4px 0; border: 0; }
    .compare td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--ink-3);
    }
    .compare td:last-child::before { color: var(--brand-deep); }
}

/* Soukromí */

.pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 40px);
}
.pillars h3 { margin-bottom: 8px; }
.pillars p { font-size: 0.98rem; color: var(--ink-2); }
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }

/* Přístup */

.access {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    background: var(--ink);
    color: #efeaf9;
    border-radius: 18px;
    padding: clamp(28px, 5vw, 56px);
}
.access h2 { color: #fff; margin-bottom: 0.45em; }
.access p { color: #cdc4e3; }
.access .btn-primary { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.access .btn-primary:hover { background: #ffc94d; border-color: #ffc94d; }
.access .btn-secondary { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.access .btn-secondary:hover { border-color: #fff; color: #fff; }
.access-side { display: grid; gap: 10px; font-size: 0.98rem; }
.access-side div { padding: 12px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.access-side b { display: block; color: #fff; font-weight: 600; }
.access-side span { color: #b9afd4; }
@media (max-width: 800px) { .access { grid-template-columns: 1fr; } }

/* Otázky */

.faq { max-width: 760px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 40px 18px 0;
    position: relative;
    font-family: var(--display);
    font-variation-settings: "wdth" 92;
    font-weight: 600;
    font-size: 1.12rem;
    letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    translate: 0 -50%;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--brand);
    transition: rotate 0.2s ease;
}
.faq details[open] summary::after { rotate: 45deg; }
.faq details p { padding-bottom: 18px; color: var(--ink-2); max-width: none; }

/* Kontakt */

.contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 64px);
}
.contact dl { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: 10px 24px; font-size: 1rem; }
.contact dt { color: var(--ink-3); }
.contact dd { margin: 0; font-weight: 500; }
.contact dd.todo { color: var(--ink-3); font-weight: 400; font-style: italic; }
@media (max-width: 720px) { .contact { grid-template-columns: 1fr; } }

/* Patička */

.site-footer {
    border-top: 1px solid var(--line);
    padding: 32px 0 40px;
    font-size: 0.92rem;
    color: var(--ink-3);
}
.site-footer .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 28px;
}
.site-footer .brand { font-size: 1.15rem; }
.site-footer .brand img { width: 28px; height: 28px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.site-footer nav a { color: var(--ink-2); text-decoration: none; }
.site-footer nav a:hover { color: var(--brand-deep); text-decoration: underline; }
.site-footer .copy { margin-left: auto; }

/* Pomocné */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Co uvidíte v aplikaci — schematická ukázka záložky Výsledky vedle seznamu obrazovek.
   Ukázka je statická a záměrně zjednodušená; jde o tvar obrazovky, ne o pixely aplikace. */

.app-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}
@media (max-width: 960px) { .app-grid { grid-template-columns: 1fr; } }

.app-frame {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 30px 60px -40px rgba(27, 20, 48, 0.5);
    font-size: 0.86rem;
    display: grid;
    gap: 10px;
    position: sticky;
    top: 88px;
}
@media (max-width: 960px) { .app-frame { position: static; } }

.app-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--ground);
}
.app-toggle {
    display: inline-flex;
    border: 1px solid var(--brand-line);
    border-radius: 8px;
    overflow: hidden;
}
.app-toggle > * {
    padding: 5px 10px;
    color: var(--ink-2);
    border-right: 1px solid var(--brand-line);
    font-weight: 500;
}
.app-toggle > *:last-child { border-right: 0; }
.app-toggle b { background: var(--brand-soft); color: var(--brand-deep); font-weight: 600; }
.app-select, .app-search {
    padding: 5px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink-2);
}
.app-select::after { content: " ▾"; color: var(--ink-3); }
.app-search { color: var(--ink-3); flex: 1 1 140px; }
.app-search::before { content: "⌕ "; }
.app-count { color: var(--ink-3); font-variant-numeric: tabular-nums; padding-inline: 4px; }

.app-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--no);
    border-radius: 10px;
    align-items: start;
}
.app-row-match { border-left-color: var(--match); }
.app-thumb {
    width: 64px;
    height: 48px;
    border-radius: 6px;
    background: linear-gradient(135deg, #e6e2f2, #d6c8f3);
}
.app-title { font-weight: 600; font-size: 0.95rem; line-height: 1.3; }
.app-title b { font-weight: 600; margin-left: 6px; white-space: nowrap; }
.app-title em {
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--brand);
    color: #fff;
    padding: 1px 7px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: 2px;
}
.app-meta { color: var(--ink-3); margin-top: 2px; }
.app-meta .src { font-size: 0.76rem; padding-block: 1px; margin-right: 4px; }
.app-why { margin-top: 6px; color: var(--ink-2); }
.app-why .verdict { width: auto; padding-inline: 8px; font-size: 0.78rem; margin-right: 6px; vertical-align: 1px; }
.app-thumbs { color: var(--ink-3); letter-spacing: 0.1em; font-size: 0.9rem; }
@media (max-width: 480px) {
    .app-row { grid-template-columns: 1fr; }
    .app-thumb, .app-thumbs { display: none; }
}

.features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 22px;
}
.features li { padding-left: 18px; border-left: 3px solid var(--brand-line); }
.features h3 { margin-bottom: 6px; }
.features p { font-size: 0.98rem; color: var(--ink-2); max-width: none; }
