/* ==================================================================== *
   Shared stylesheet for every page on this site.
   Lifted out of index.html when the site grew past one page: four copies
   of a palette drift apart, and the drift shows up as one page in last
   month's colours.
 * ==================================================================== */

/* ------------------------------------------------------------------ *
   Tokens.
   Palette measured from bitrix24.com's own stylesheet so the page sits
   beside the platform it plugs into: #409eef is their primary, #00629a
   their deep blue, 6/12/999px their radii. The one departure is the
   orange, taken from the checkmark in our own product mark and spent
   only on the audit motif.
 * ------------------------------------------------------------------ */
:root {
    --blue:        #409eef;
    --blue-deep:   #00629a;
    --blue-wash:   #eaf4fe;
    --on-blue:     #ffffff;
    --check:       #f5920b;
    --check-wash:  #fff4e4;

    --ink:         #1c2430;
    --ink-soft:    #37455a;
    --muted:       #5a6779;

    --ground:      #ffffff;
    --ground-alt:  #f6f9fc;
    --surface:     #ffffff;
    --line:        #e2e9f1;
    --line-soft:   #edf2f8;

    --shadow-sm:   0 1px 2px rgba(28, 36, 48, .06), 0 2px 8px rgba(28, 36, 48, .04);
    --shadow-lg:   0 2px 4px rgba(28, 36, 48, .04), 0 18px 48px rgba(28, 48, 78, .12);

    --r-sm: 6px;
    --r-md: 12px;
    --r-pill: 999px;

    --maxw: 1120px;
    --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --blue:        #5cb0f5;
        --blue-deep:   #8fcbfa;
        --blue-wash:   #14263a;
        --on-blue:     #08121d;
        --check:       #ffab3d;
        --check-wash:  #2e2113;

        --ink:         #e9eff7;
        --ink-soft:    #c2cdda;
        --muted:       #93a2b7;

        --ground:      #0e1520;
        --ground-alt:  #121c2a;
        --surface:     #16202f;
        --line:        #253248;
        --line-soft:   #1d2939;

        --shadow-sm:   0 1px 2px rgba(0, 0, 0, .4);
        --shadow-lg:   0 2px 4px rgba(0, 0, 0, .3), 0 18px 48px rgba(0, 0, 0, .45);
    }
}

:root[data-theme="dark"] {
    --blue:        #5cb0f5;
    --blue-deep:   #8fcbfa;
    --blue-wash:   #14263a;
    --on-blue:     #08121d;
    --check:       #ffab3d;
    --check-wash:  #2e2113;

    --ink:         #e9eff7;
    --ink-soft:    #c2cdda;
    --muted:       #93a2b7;

    --ground:      #0e1520;
    --ground-alt:  #121c2a;
    --surface:     #16202f;
    --line:        #253248;
    --line-soft:   #1d2939;

    --shadow-sm:   0 1px 2px rgba(0, 0, 0, .4);
    --shadow-lg:   0 2px 4px rgba(0, 0, 0, .3), 0 18px 48px rgba(0, 0, 0, .45);
}

/* ------------------------------------------------------------------ */

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

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-wrap: balance;
    font-weight: 800;
}

p { margin: 0; }

a { color: var(--blue-deep); }

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

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

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

.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: 24px;
}

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---- header ------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: color-mix(in srgb, var(--ground) 88%, transparent);
    backdrop-filter: saturate(1.6) blur(10px);
    border-bottom: 1px solid var(--line-soft);
}

.site-header .wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 15px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -.01em;
}

.brand img { width: 30px; height: 30px; border-radius: 7px; }

.header-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
}

.header-links a:hover { color: var(--blue-deep); }

@media (max-width: 640px) {
    .header-links .hide-sm { display: none; }
}

/* ---- buttons ------------------------------------------------------ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 46px;
    padding-inline: 22px;
    border-radius: var(--r-pill);
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--blue);
    color: var(--on-blue);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover { background: var(--blue-deep); }

.btn-ghost {
    background: var(--surface);
    color: var(--ink);
    border-color: var(--line);
}

.btn-ghost:hover { border-color: var(--blue); color: var(--blue-deep); }

.btn svg { flex: none; }

/* ---- hero --------------------------------------------------------- */

.hero {
    padding-block: clamp(34px, 4.5vw, 60px) clamp(56px, 8vw, 96px);
    background:
        radial-gradient(720px 380px at 78% -8%, var(--blue-wash), transparent 68%);
}

.hero-grid {
    display: grid;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}

@media (min-width: 940px) {
    .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 440px); }
}

.hero-copy { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }

.hero h1 { font-size: clamp(34px, 5.2vw, 52px); }

.hero h1 .accent { color: var(--blue-deep); }

.hero-sub {
    font-size: clamp(16px, 1.6vw, 18.5px);
    color: var(--muted);
    max-width: 34em;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px 6px 10px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
}

.chip .tick { color: var(--check); flex: none; }

/* ---- product rendering -------------------------------------------- */

.stage {
    position: relative;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    background: var(--ground-alt);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.stage-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); flex: none; }

.stage-url {
    margin-left: 6px;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stage-body { padding: 16px; display: grid; gap: 12px; }

/* the CRM record showing behind the popup */
.record { display: grid; gap: 9px; }

.record-row { display: flex; align-items: center; gap: 10px; }

.skel {
    height: 9px;
    border-radius: var(--r-pill);
    background: var(--line);
}

.record-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-soft);
    letter-spacing: -.01em;
}

/* the extension popup itself */
.popup {
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.popup-head {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 13px;
    border-bottom: 1px solid var(--line-soft);
}

.popup-head img { width: 20px; height: 20px; border-radius: 5px; }

.popup-title { font-size: 12.5px; font-weight: 700; letter-spacing: -.01em; }

.badge {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: var(--r-pill);
    background: var(--blue-wash);
    color: var(--blue-deep);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .02em;
}

.popup-body { padding: 13px; display: grid; gap: 11px; }

.field {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
}

.field dt { color: var(--muted); }
.field dd { margin: 0; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }

.composer {
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 10px 11px;
    background: var(--ground-alt);
    font-size: 12.5px;
    color: var(--ink-soft);
    min-height: 62px;
}

.caret {
    display: inline-block;
    width: 1.5px;
    height: 14px;
    vertical-align: -3px;
    margin-left: 1px;
    background: var(--blue);
    animation: blink 1.1s step-end infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.composer-foot { display: flex; align-items: center; gap: 10px; }

.counter { font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }

.mini-btn {
    margin-left: auto;
    padding: 7px 15px;
    border-radius: var(--r-sm);
    background: var(--blue);
    color: var(--on-blue);
    font-size: 12px;
    font-weight: 700;
}

/* the audit trail: the thing that makes this different from a text box */
.trail {
    border-top: 1px dashed var(--line);
    padding: 11px 13px 13px;
    display: grid;
    gap: 7px;
    background: var(--ground-alt);
}

.trail-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

.trail-row {
    display: grid;
    grid-template-columns: 15px 1fr auto;
    align-items: center;
    gap: 9px;
    font-size: 11.5px;
    color: var(--ink-soft);
}

.trail-row time {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 10.5px;
    font-variant-numeric: tabular-nums;
}

.trail-row .tick { color: var(--check); }

.trail-row .verb { font-weight: 700; }

/* ---- sections ----------------------------------------------------- */

.section { padding-block: clamp(56px, 8vw, 84px); }

.section-alt { background: var(--ground-alt); border-block: 1px solid var(--line-soft); }

.section-head { display: grid; gap: 12px; margin-bottom: 40px; }

.section-head h2 { max-width: 20ch; }

.section-head h2 { font-size: clamp(25px, 3.2vw, 33px); }

.section-head p { color: var(--muted); max-width: 52ch; }

.cards {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
}

.card {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 24px;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.card-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--blue-wash);
    color: var(--blue-deep);
    margin-bottom: 4px;
}

.card-icon.warm { background: var(--check-wash); color: var(--check); }

.card h3 { font-size: 16px; font-weight: 700; letter-spacing: -.01em; }

.card p { font-size: 14.5px; color: var(--muted); }

/* ---- steps: numbered because the order is real -------------------- */

.steps {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    counter-reset: step;
}

.step { display: grid; gap: 9px; align-content: start; position: relative; padding-top: 20px; }

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    font-weight: 800;
    color: var(--blue-deep);
    background: var(--blue-wash);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-variant-numeric: tabular-nums;
}

.step h3 { font-size: 16.5px; font-weight: 700; margin-top: 10px; }

.step p { font-size: 14.5px; color: var(--muted); }

.step code {
    font-family: var(--mono);
    font-size: 12.5px;
    background: var(--blue-wash);
    color: var(--blue-deep);
    padding: 1px 6px;
    border-radius: 4px;
}

/* ---- closing band ------------------------------------------------- */

.closer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    padding: 34px;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.closer > div:first-child { flex: 1 1 320px; display: grid; gap: 8px; }

.closer .hero-actions { flex: 0 0 auto; flex-wrap: nowrap; }

.closer h2 { font-size: clamp(21px, 2.6vw, 26px); }

.closer p { color: var(--muted); font-size: 15px; }

/* ---- footer ------------------------------------------------------- */

.site-footer {
    border-top: 1px solid var(--line-soft);
    padding-block: 34px 44px;
    background: var(--ground);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    align-items: center;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 20px; margin-left: auto; }

.footer-links a { font-size: 14px; color: var(--ink-soft); text-decoration: none; font-weight: 500; }

.footer-links a:hover { color: var(--blue-deep); text-decoration: underline; }

.fine { font-size: 12.5px; color: var(--muted); margin-top: 20px; max-width: 62ch; }

/* ==================================================================== *
   Forms.
   Used by the support form on the home page and on /support/.
 * ==================================================================== */

.form-grid {
    display: grid;
    gap: 18px;
    max-width: 640px;
}

.form-row {
    display: grid;
    gap: 18px;
}

@media (min-width: 620px) {
    .form-row-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* Fields sit at the top of their row rather than stretching to match it.
   Without this, a field carrying a hint line makes its neighbour taller, and
   the neighbour's control drifts down away from its own label. */
.form-row {
    align-items: start;
}

/* A select is 2px taller than a text input at the same padding, which reads as
   a misalignment when the two sit side by side. Matching the line box settles
   it without hard coding a height. */
.field select {
    line-height: 1.35;
    height: calc(1.35em + 24px);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.field .hint {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 11px 13px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    transition: border-color .15s, box-shadow .15s;
}

.field textarea {
    resize: vertical;
    min-height: 132px;
    line-height: 1.6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-wash);
}

.field input[type="file"] {
    padding: 9px 11px;
    font-size: 14px;
    color: var(--ink-soft);
}

.counter {
    font-size: 13px;
    color: var(--muted);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.form-status {
    font-size: 14px;
    line-height: 1.6;
    padding: 11px 14px;
    border-radius: var(--r-sm);
    border: 1px solid transparent;
}

.form-status[hidden] {
    display: none;
}

.form-status.is-ok {
    color: #14532d;
    background: #eefaf1;
    border-color: #bfe6cb;
}

.form-status.is-error {
    color: #8a1c1c;
    background: #fdf0f0;
    border-color: #f2c9c9;
}

.form-status.is-busy {
    color: var(--ink-soft);
    background: var(--ground-alt);
    border-color: var(--line);
}

/* Off screen rather than display:none, so a bot reading the DOM still
   fills it in while nobody using a screen reader ever reaches it. */
.trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==================================================================== *
   Legal pages.
 * ==================================================================== */

.doc {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 0 72px;
}

.doc-head {
    padding-bottom: 26px;
    margin-bottom: 34px;
    border-bottom: 1px solid var(--line);
}

.doc-head h1 {
    font-size: clamp(30px, 4.4vw, 42px);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 12px;
    text-wrap: balance;
}

.doc-meta {
    font-size: 14px;
    color: var(--muted);
}

.doc h2 {
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: -.01em;
    margin: 40px 0 12px;
    color: var(--ink);
}

.doc h3 {
    font-size: 16px;
    line-height: 1.4;
    margin: 26px 0 8px;
    color: var(--ink);
}

.doc p,
.doc li {
    font-size: 16px;
    line-height: 1.72;
    color: var(--ink-soft);
}

.doc p {
    margin: 0 0 14px;
}

.doc ul {
    margin: 0 0 14px;
    padding-left: 22px;
}

.doc li {
    margin-bottom: 7px;
}

.doc li::marker {
    color: var(--blue);
}

.doc strong {
    color: var(--ink);
    font-weight: 600;
}

.doc code {
    font-family: var(--mono);
    font-size: .88em;
    background: var(--ground-alt);
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    padding: 1px 5px;
}

.doc-toc {
    margin: 0 0 34px;
    padding: 18px 22px;
    background: var(--ground-alt);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
}

.doc-toc p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 10px;
}

.doc-toc ol {
    margin: 0;
    padding-left: 20px;
    columns: 2;
    column-gap: 28px;
}

@media (max-width: 560px) {
    .doc-toc ol {
        columns: 1;
    }
}

.doc-toc li {
    font-size: 14px;
    margin-bottom: 5px;
    break-inside: avoid;
}

/* A claim worth not burying: what we do and do not receive. */
.callout {
    margin: 22px 0;
    padding: 18px 22px;
    background: var(--blue-wash);
    border: 1px solid #c9e2fa;
    border-left: 3px solid var(--blue);
    border-radius: var(--r-sm);
}

.callout p:last-child {
    margin-bottom: 0;
}

.doc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 22px;
    font-size: 15px;
}

.doc-table th,
.doc-table td {
    text-align: left;
    padding: 11px 14px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    line-height: 1.6;
}

.doc-table th {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom-color: var(--ink-soft);
}

.doc-table td {
    color: var(--ink-soft);
}

.table-scroll {
    overflow-x: auto;
}

.back-link {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-deep);
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* ------------------------------------------------------------------ *
   Hosting.
   Two routes side by side, then what the hosted one would cost. The
   pricing sits under a card that says it is not open, so the numbers
   have to read as indicative rather than as a checkout: no accent
   fill, no most popular badge, nothing that looks like a buy button.
 * ------------------------------------------------------------------ */

.cards-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tag {
    display: inline-block;
    justify-self: start;
    padding: 3px 9px;
    border-radius: var(--r-pill);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--line-soft);
    border: 1px solid var(--line);
}

.tag-live {
    color: var(--blue-deep);
    background: var(--blue-wash);
    border-color: transparent;
}

.inline-link {
    color: var(--blue-deep);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.inline-link:hover {
    border-bottom-color: currentColor;
}

.sep {
    /* --line is a border colour: against a card it reads as nothing at all,
       and the two links run together as one gap. */
    color: var(--muted);
    margin: 0 6px;
}

.plans {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 28px;
}

.plan {
    display: grid;
    gap: 4px;
    align-content: start;
    padding: 22px;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    background: var(--surface);
}

.plan-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--muted);
}

.plan-price {
    font-size: 30px;
    font-weight: 800;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}

.plan-price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
}

.plan ul {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
    gap: 7px;
}

.plan li {
    font-size: 14px;
    color: var(--muted);
    padding-left: 16px;
    position: relative;
}

.plan li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--line);
}

.plans-note {
    margin-top: 20px;
    max-width: 68ch;
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
}

.plans-note b {
    color: var(--ink-soft);
}

.waitlist {
    margin-top: 28px;
    display: grid;
    gap: 8px;
    max-width: 460px;
}

.waitlist label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-soft);
}

.waitlist-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.waitlist-row input {
    flex: 1 1 220px;
    min-width: 0;
}

/* The hint styling is scoped to .field, and this one sits directly in the
   form, so without this it renders at body size and reads as a promise
   rather than a footnote. */
.waitlist .hint {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

/* ------------------------------------------------------------------ *
   Who builds this.
   Placed after everything has been given away free, so it reads as an
   offer rather than a pitch. The services list is a plain rail: no
   icons, no cards, nothing that competes with the product above it.
 * ------------------------------------------------------------------ */

.about {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    align-items: start;
}

.about-copy p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 14px;
}

.about-copy b {
    color: var(--ink);
}

.services {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.services li {
    display: grid;
    gap: 3px;
    padding-left: 16px;
    border-left: 2px solid var(--line);
}

.services b {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
}

.services span {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}
