/* s-work.app — the site stylesheet: the design kit's tokens and components (base), then the
   site's own layout (top bar, hero, sections, faux app, footer). Ported 2026-09-13 from the local
   mockup A (~/Desktop/code.nosync/site-mockups, shared/base.css + shared/a.css). */

/* s-work site mockups — the shared layer. Design-kit values (hq design-kit, approved 2026-09-12):
   one face (system-ui), page ground #f1eeee, white cards, hairline #e8e4e4, ink #18181b,
   muted #6b7280, primary green #15803d (the one key action), brand red #e8001c (the lockup, and
   the signed-out Sign up only), attention pink #db2777, radii 6·10·14·20·full, controls 44/34.
   Layout tokens are the site library's (00-standard). */
:root {
  --maxw: 1100px; --gut: clamp(20px, 5vw, 60px); --sec-y: clamp(56px, 9vw, 112px); --measure: 68ch;
  --t--1: 13px;
  --t-0: clamp(15px, .9rem + .15vw, 17px);
  --t-1: clamp(18px, 1rem + .5vw, 22px);
  --t-2: clamp(22px, 1.1rem + 1vw, 30px);
  --t-3: clamp(28px, 1.2rem + 2vw, 42px);
  --t-4: clamp(34px, 1.3rem + 3.4vw, 64px);
  --t-5: clamp(40px, 1.4rem + 5vw, 92px);
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px; --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px;

  /* kit colour */
  --page: #f1eeee; --card: #ffffff; --surface-2: #faf8f8; --accent: #f0f0f2;
  --ink: #18181b; --ink-2: #3f3f46; --muted: #5f6570; --faint: #9aa0a6;
  --border: #e8e4e4; --hairline-2: #efebeb; --control-line: #8b9099;
  --primary: #15803d; --primary-hover: #126c34; --primary-ink: #ffffff;
  --brand: #e8001c; --brand-hover: #c40018;
  --attn: #db2777; --attn-bg: #fdf2f8; --attn-bd: #f9a8d4;
  --safe-bg: #e7f4ec; --safe-bd: #bfe3cc;
  --caution: #946a00; --caution-bg: #fbf1cf; --caution-bd: #eedda0;
  --shadow: 0 26px 60px -30px rgba(24,24,27,.42), 0 4px 12px -6px rgba(24,24,27,.14);
  --shadow-sm: 0 2px 6px -2px rgba(24,24,27,.14);
  --scrim: rgba(12,12,16,.5);
  --r-6: 6px; --r-10: 10px; --r-14: 14px; --r-20: 20px;
  --dur: 200ms; --ease: cubic-bezier(.4,0,.2,1);

  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --disp: var(--font); --disp-w: 700; --disp-track: -.035em; --disp-case: none; --disp-lh: 1.02;
  color-scheme: light;
}
/* --muted is one step darker than the kit's #6b7280 on purpose: #6b7280 on the #f1eeee page ground
   is 4.2:1, under AA for body text. On white cards the kit value would pass; the site sets long
   muted paragraphs on the page ground, so it takes #5f6570 (5.2:1). Flagged in the review. */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; background: var(--page); color: var(--ink); font: 400 var(--t-0)/1.6 var(--font); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
button, input { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; box-shadow: 0 0 0 5px color-mix(in srgb, var(--primary) 25%, transparent); }
.sr { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: var(--r-10); text-decoration: none; font-weight: 600; font-size: 14px; }
.skip:focus { top: 12px; }
svg.i { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.pad { padding: var(--sec-y) var(--gut); }
.wrap { max-width: var(--maxw); margin-inline: auto; }
.kicker { font: 700 11px/1.4 var(--font); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.disp { font-family: var(--disp); font-weight: var(--disp-w); letter-spacing: var(--disp-track); text-transform: var(--disp-case); line-height: var(--disp-lh); text-wrap: balance; }
.lede { font-size: var(--t-1); line-height: 1.5; color: var(--ink-2); max-width: 46ch; }
.muted { color: var(--muted); }
.prose-link, .prose a { color: var(--ink); text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--ink) 35%, transparent); text-underline-offset: 3px; }
.prose-link:hover, .prose a:hover { text-decoration-color: var(--ink); }

/* ── buttons: kit sizes 44 / 34, label 13–14/600, radius 10 ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; padding: 0 18px; border-radius: var(--r-10); corner-shape: squircle; font: 600 14.5px/1 var(--font); text-decoration: none; border: 1px solid transparent; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur); white-space: nowrap; }
.btn.sm { height: 34px; padding: 0 12px; font-size: 13px; }
/* primary actions wear brand red on the site (Will, 2026-09-13) */
.btn.primary { background: var(--brand); color: #fff; }
.btn.primary:hover { background: var(--brand-hover); }
.btn.brand { background: var(--brand); color: #fff; }
.btn.brand:hover { background: var(--brand-hover); }
.btn.ghost { background: var(--card); border-color: var(--border); color: var(--ink); }
.btn.ghost:hover { background: var(--accent); }
.btn.quiet { color: var(--ink); }
.btn.quiet:hover { background: var(--accent); }
.btn .i { width: 16px; height: 16px; }

.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-14); corner-shape: squircle; }
.pill { display: inline-flex; align-items: center; gap: 6px; height: 24px; padding: 0 10px; border-radius: 999px; font: 600 11.5px/1 var(--font); background: var(--card); border: 1px solid var(--border); color: var(--ink-2); }
.pill.attn { background: var(--attn-bg); border-color: var(--attn-bd); color: #9d174d; }
.pill.caution { background: var(--caution-bg); border-color: var(--caution-bd); color: #6b4d00; }

/* ── forms ── */
.field { display: grid; gap: 6px; }
.field label { font: 500 13px/1.3 var(--font); color: var(--ink-2); }
.input { height: 44px; padding: 0 12px; border-radius: var(--r-10); corner-shape: squircle; border: 1px solid var(--control-line); background: var(--card); font-size: 16px; width: 100%; }
.input:focus-visible { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 25%, transparent); }
.check { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; cursor: pointer; min-height: 32px; padding-top: 4px; }
.check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--primary); flex: none; }

/* ── FAQ accordion ── */
.faq { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; gap: var(--sp-4); width: 100%; min-height: 56px; padding: var(--sp-4) 0; text-align: left; font: 600 var(--t-1)/1.3 var(--font); letter-spacing: -.01em; }
.faq-q .i { margin-left: auto; transition: transform var(--dur) var(--ease); color: var(--muted); }
.faq-q[aria-expanded="true"] .i { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur) var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 50px var(--sp-5) 0; max-width: 62ch; color: var(--ink-2); }
.faq-a p + p { margin-top: calc(-1 * var(--sp-3)); }

/* ── legal / long-form prose ── */
.doc { display: grid; gap: var(--sp-7); grid-template-columns: 1fr; }
@media (min-width: 960px) { .doc { grid-template-columns: 240px 1fr; gap: var(--sp-8); } }
.doc-toc { align-self: start; position: sticky; top: 88px; font-size: 14px; }
.doc-toc h2 { font: 700 10.5px/1.4 var(--font); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 0 12px; margin-bottom: var(--sp-2); }
/* the kit's navigation: caps group label, icon + text rows, on the page ground */
.doc-toc ul { display: grid; gap: 2px; }
.toc-row { display: flex; align-items: center; gap: 12px; min-height: 38px; padding: 8px 12px; border-radius: 12px; corner-shape: squircle; font: 500 14px/1.25 var(--font); color: var(--ink); text-decoration: none; }
.toc-row .i { color: var(--muted); }
.toc-row:hover { background: color-mix(in srgb, var(--card) 70%, transparent); }
.toc-row.on { background: var(--card); font-weight: 600; }
.toc-row.on .i { color: var(--ink); }
@media (max-width: 959px) { .doc-toc { position: static; } }
.prose { max-width: var(--measure); font-size: 16px; line-height: 1.65; }
.prose h2 { font: 700 22px/1.3 var(--font); letter-spacing: -.02em; margin: var(--sp-7) 0 var(--sp-3); scroll-margin-top: 90px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font: 600 16px/1.4 var(--font); margin: var(--sp-5) 0 var(--sp-2); }
.prose p, .prose ul, .prose ol, .prose table, .prose .callout { margin-bottom: var(--sp-4); }
.prose ul { list-style: disc; padding-left: 1.3em; }
.prose ol { list-style: decimal; padding-left: 1.3em; }
.prose li + li { margin-top: 6px; }
.prose code { font: 13.5px var(--mono); background: var(--accent); padding: 1px 5px; border-radius: 6px; }
.tbl-wrap { overflow-x: auto; margin-bottom: var(--sp-5); border: 1px solid var(--border); border-radius: var(--r-14); background: var(--card); }
.prose table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 0; }
.prose th { text-align: left; font: 700 10.5px/1.4 var(--font); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 10px 14px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.prose td { padding: 10px 14px; border-bottom: 1px solid var(--hairline-2); vertical-align: top; }
.prose tr:last-child td { border-bottom: 0; }
.callout { display: flex; gap: 12px; padding: 14px 16px; border-radius: var(--r-14); border: 1px solid var(--caution-bd); background: var(--caution-bg); font-size: 14.5px; color: #4d3800; }
.callout.info { border-color: var(--border); background: var(--card); color: var(--ink-2); }
.callout .i { margin-top: 2px; }
.doc-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--sp-5); }

/* ── cookie tray — fixed, first load, Accept and Reject at equal weight ── */
.tray { position: fixed; z-index: 150; left: 50%; bottom: 16px; transform: translate(-50%, 0); width: min(560px, calc(100% - 24px)); background: var(--card); border: 1px solid var(--border); border-radius: var(--r-20); corner-shape: squircle; box-shadow: var(--shadow); padding: 18px 18px 16px; transition: transform 260ms var(--ease), opacity 260ms var(--ease); }
.tray[hidden] { display: none; }
.tray.leaving { transform: translate(-50%, 24px); opacity: 0; }
.tray h2 { display: flex; align-items: center; gap: 8px; font: 600 15px/1.3 var(--font); margin-bottom: 6px; }
.tray p { font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.tray-acts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.tray-acts .btn { width: 100%; }
.tray-more { margin-top: 10px; font-size: 13px; text-align: center; }
@media (min-width: 900px) { .tray { left: auto; right: 20px; transform: none; } .tray.leaving { transform: translateY(24px); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } }


/* A · Standard in the kit — kit type, colour and components; a top bar (Will, 2026-09-13: the
   shell's sidebar is gone). Brand red is the lockup and every primary action on the site. */

/* ── top bar ── */
.topbar { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--page) 90%, transparent); backdrop-filter: blur(8px); }
.topbar-in { max-width: calc(var(--maxw) + 2 * var(--gut)); margin-inline: auto; display: flex; align-items: center; gap: var(--sp-5); height: 64px; padding: 0 var(--gut); }
.lockup { font: 700 22px/1 var(--font); letter-spacing: -.025em; text-decoration: none; color: var(--brand); }
.topbar nav { display: flex; gap: 2px; margin-left: var(--sp-5); }
/* hover and the current page are darker text only, no background (Will, 2026-09-13) */
.topbar nav a { display: inline-flex; align-items: center; height: 36px; padding: 0 12px; text-decoration: none; font: 500 14px/1 var(--font); color: var(--muted); transition: color var(--dur) var(--ease); }
.topbar nav a:hover, .topbar nav a[aria-current="page"] { color: var(--ink); }
.topbar .acts { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.iconbtn { display: none; place-items: center; width: 44px; height: 44px; border-radius: var(--r-10); }
.iconbtn:hover { background: var(--card); }
.drawer, .scrim { display: none; }
@media (max-width: 899px) {
  .topbar nav { display: none; }
  .iconbtn { display: inline-grid; }
  .drawer { position: fixed; inset: 64px 0 auto 0; z-index: 49; background: var(--card); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); padding: 8px var(--gut) 16px; }
  body.menu-open .drawer { display: grid; gap: 2px; }
  .drawer a { display: flex; align-items: center; min-height: 48px; padding: 0 12px; border-radius: var(--r-10); text-decoration: none; font: 600 16px/1 var(--font); }
  .drawer a[aria-current="page"] { background: var(--surface-2); }
  body.menu-open .scrim { display: block; position: fixed; inset: 64px 0 0 0; z-index: 48; background: var(--scrim); }
}

/* ── hero: no backer; the title sits on the page margin ── */
.hero-in { max-width: calc(var(--maxw) + 2 * var(--gut)); margin-inline: auto; padding: clamp(48px, 7vw, 96px) var(--gut) clamp(24px, 4vw, 48px); display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--sp-8); align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: var(--sp-5); align-items: flex-start; }
.hero-copy h1 { font-size: var(--t-5); max-width: 11ch; }
.hero-copy .acts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--sp-2); }
.hero-art { justify-self: end; width: min(380px, 100%); transform: rotate(2.5deg); }
.hero-art img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-20); corner-shape: squircle; box-shadow: var(--shadow); }
.hero-art figcaption { margin-top: 12px; font-size: 12.5px; color: var(--muted); }
@media (max-width: 860px) { .hero-in { grid-template-columns: 1fr; } .hero-art { justify-self: start; width: min(280px, 100%); } }

.page-head { padding: clamp(40px, 6vw, 80px) var(--gut) var(--sp-6); }
.page-head .kicker { margin-bottom: var(--sp-4); display: block; }
.page-head h1 { font-size: var(--t-4); max-width: 16ch; }
.page-head .lede { margin-top: var(--sp-5); }

.bgs { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; padding-block: var(--sp-7); border-top: 1px solid var(--border); }
.bgs:first-child { border-top: 0; }
/* title and first line of text share one top edge: start alignment, and the paragraph's half-leading trimmed */
@media (min-width: 900px) { .bgs { grid-template-columns: 1fr 2fr; gap: var(--sp-8); align-items: start; } .bgs > div > p:first-child { margin-top: -.275em; } }
.bgs h2 { font-size: var(--t-4); }
.bgs p { color: var(--ink-2); max-width: 62ch; font-size: var(--t-1); line-height: 1.55; }
.bgs p + p { margin-top: var(--sp-4); }

.sec-head { display: grid; gap: var(--sp-3); margin-bottom: var(--sp-7); }
.sec-head h2, .sec-head h3 { font-size: var(--t-3); max-width: 18ch; }

/* ── what it does ── */
.grid-feat { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-feat { grid-template-columns: 1fr 1fr; } }
.feat { padding: var(--sp-6); display: grid; gap: var(--sp-3); align-content: start; }
.feat .ic { width: 88px; height: 88px; display: grid; place-items: center; border-radius: var(--r-20); corner-shape: squircle; background: var(--surface-2); }
.feat .ic .i { width: 40px; height: 40px; stroke-width: 1.6; }
.feat h3 { font: 700 20px/1.3 var(--font); letter-spacing: -.02em; margin-top: 8px; }
.feat p { color: var(--ink-2); }

/* faux app window — shared by options 2 and 3 */
.fx-top { display: flex; align-items: center; gap: 6px; height: 36px; padding: 0 14px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.fx-top i { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.fx-top span { margin: 0 auto; transform: translateX(-24px); font: 500 11.5px/1 var(--mono); color: var(--muted); background: var(--card); border: 1px solid var(--border); border-radius: 999px; padding: 5px 14px; }
.fx-rail { display: flex; flex-direction: column; gap: 2px; padding: 10px 8px; background: var(--card); border-right: 1px solid var(--border); }
.fx-lockup { font: 700 17px/1 var(--font); letter-spacing: -.025em; color: var(--brand); padding: 8px 10px 14px; }
.fx-row { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 10px; font: 500 13px/1.2 var(--font); color: var(--ink); }
.fx-row .i { width: 16px; height: 16px; color: var(--muted); }
.fx-row.on { background: var(--surface-2); font-weight: 600; }
.fx-row em { margin-left: auto; font: 700 10.5px/18px var(--mono); font-style: normal; min-width: 18px; text-align: center; border-radius: 999px; background: var(--brand); color: #fff; padding: 0 5px; }
.fx-acct { margin-top: auto; display: flex; align-items: center; gap: 8px; padding: 10px; border-top: 1px solid var(--border); font-size: 12.5px; }
.fx-av { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; corner-shape: squircle; color: #fff; font: 600 13px/1 var(--font); flex: none; }
.fx-acct .fx-av { width: 24px; height: 24px; border-radius: 999px; font-size: 11px; }
.fx-av.blue { background: #3b5bdb; } .fx-av.teal { background: #0f766e; } .fx-av.slate { background: #52525b; } .fx-av.plum { background: #86198f; } .fx-av.ink { background: var(--ink); } .fx-av.light { background: #e4e4e7; color: var(--ink); }
.fx-bub { max-width: 78%; padding: 8px 11px; border-radius: 13px; background: var(--card); font-size: 13px; line-height: 1.4; box-shadow: 0 1px 1px rgba(0,0,0,.06); align-self: flex-start; }
.fx-bub.me { align-self: flex-end; background: #d8f1c6; color: #12321a; }
.pill.safe { background: var(--safe-bg); border-color: var(--safe-bd); color: #0f5e2c; height: 20px; font-size: 10.5px; padding: 0 7px; }
.pill.caution { height: 20px; font-size: 10.5px; padding: 0 7px; }

/* option 3 · faux app */
.fx { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-20); corner-shape: squircle; overflow: hidden; box-shadow: var(--shadow); }
.fx-body { display: grid; grid-template-columns: 170px 300px 1fr; height: 460px; }
.fx-list { border-right: 1px solid var(--border); overflow: hidden; }
/* inbox head and chat head share one height */
.fx-list-head { display: flex; align-items: center; height: 56px; font: 700 17px/1 var(--font); letter-spacing: -.02em; padding: 0 14px; border-bottom: 1px solid var(--border); }
.fx-msg { display: flex; gap: 10px; align-items: center; padding: 11px 14px; border-bottom: 1px solid var(--hairline-2); }
.fx-msg.on { background: var(--surface-2); box-shadow: inset 3px 0 0 var(--ink); }
.fx-msg > div { min-width: 0; flex: 1; }
.fx-msg-top { display: flex; align-items: center; gap: 6px; }
.fx-msg-top b { font: 600 13.5px/1.3 var(--font); }
.fx-msg-top .pill { margin-left: auto; }
.fx-msg p { display: flex; align-items: center; gap: 5px; margin: 3px 0 0; font-size: 12.5px; color: var(--muted); min-width: 0; }
.fx-msg p span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand { flex: none; }
.pill.flags { height: 20px; font-size: 10.5px; padding: 0 7px; gap: 4px; background: #dc2626; border-color: #dc2626; color: #fff; }
.pill.flags .i { width: 11px; height: 11px; }
.fx-n { font: 700 10.5px/18px var(--mono); min-width: 18px; text-align: center; border-radius: 999px; background: var(--brand); color: #fff; padding: 0 5px; }
.fx-chat { display: flex; flex-direction: column; background: #ece7e3; min-width: 0; }
.fx-chat-head { display: flex; align-items: center; gap: 10px; height: 56px; padding: 0 14px; background: var(--card); border-bottom: 1px solid var(--border); }
.fx-chat-head .fx-av { width: 32px; height: 32px; }
.fx-head-acts { margin-left: auto; display: flex; gap: 6px; }
.fx-btn { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 11px; border-radius: 10px; border: 1px solid var(--border); background: var(--card); font: 600 12.5px/1 var(--font); color: var(--ink); }
.fx-btn .i { width: 14px; height: 14px; }
.fx-btn.danger { background: var(--card); border-color: #dc2626; color: #dc2626; }
.fx-chat-head b { font: 600 14.5px/1 var(--font); }
.fx-thread { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 16px; overflow: hidden; }
.fx-day { align-self: center; display: inline-flex; align-items: center; gap: 6px; font: 500 10.5px/1 var(--mono); color: var(--muted); background: var(--card); border-radius: 999px; padding: 5px 10px; }
.fx-compose { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: var(--card); border-top: 1px solid var(--border); }
.fx-compose span { flex: 1; height: 36px; display: flex; align-items: center; padding: 0 12px; border-radius: 20px; background: var(--surface-2); border: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.fx-compose i { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: var(--muted); }
.fx-compose .i { width: 16px; height: 16px; }
@media (max-width: 900px) { .fx-body { grid-template-columns: 1fr; height: auto; } .fx .fx-rail, .fx-list { display: none; } .fx-thread { min-height: 320px; } }

.quotes { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-5); }
.quote blockquote { font-size: 17px; line-height: 1.5; letter-spacing: -.005em; }
.quote .who { margin-top: auto; font-size: 13px; color: var(--muted); }

.cta { padding: var(--sec-y) var(--gut); }
.cta-card { max-width: var(--maxw); margin-inline: auto; padding: clamp(32px, 6vw, 72px); text-align: center; display: grid; justify-items: center; gap: var(--sp-4); }
.cta-card h2 { font-size: var(--t-4); max-width: 14ch; }
.cta-card p { color: var(--ink-2); max-width: 46ch; }
.cta-card .btn { margin-top: var(--sp-3); }

.split { display: grid; gap: var(--sp-7); grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1.1fr .9fr; gap: var(--sp-8); } }
.photo { border-radius: var(--r-14); overflow: hidden; background: var(--card); border: 1px solid var(--border); align-self: start; }
.photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.photo figcaption { padding: 10px 14px; font-size: 12.5px; color: var(--muted); border-top: 1px solid var(--border); }

/* marquee: light text, twice the room, tilted 2.5 degrees. Decorative and hidden from readers. */
.mq-wrap { overflow: hidden; padding-block: 96px 160px; }
.marquee { width: 120%; margin-left: -10%; transform: rotate(-2.5deg); background: var(--card); border-block: 1px solid var(--border); padding: 28px 0; overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 40px; width: max-content; animation: mq 38s linear infinite; font: 700 var(--t-2)/1 var(--font); letter-spacing: -.03em; color: #c9c3c3; }
/* the separator: a filled heart in the text colour, a little under the cap height */
.marquee-track .mq-heart { width: .9em; height: .9em; fill: currentColor; stroke: none; }
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ── footer ── */
.foot { padding: var(--sp-8) var(--gut) var(--sp-6); background: var(--card); margin-top: var(--sp-7); }
.foot-in { max-width: var(--maxw); margin-inline: auto; }
/* logo and line on the left; three equal link columns clustered on the right */
.foot-brand p { margin-top: var(--sp-3); color: var(--muted); font-size: 14px; }
.foot-cols { display: grid; gap: var(--sp-6); grid-template-columns: 1fr repeat(3, 180px); }
@media (max-width: 899px) { .foot-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .foot-cols { grid-template-columns: 1fr 1fr; } }
.foot h2 { font: 700 10.5px/1.4 var(--font); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: var(--sp-3); }
.foot ul { display: grid; gap: 2px; }
.foot ul a, .foot ul button { display: inline-flex; min-height: 32px; align-items: center; font-size: 14.5px; color: var(--ink-2); text-decoration: none; text-align: left; }
.foot ul a:hover, .foot ul button:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.foot-base { margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13px; color: var(--muted); }

/* about: two columns, heading above its text */
.cols2 { display: grid; gap: var(--sp-7); grid-template-columns: 1fr; }
@media (min-width: 820px) { .cols2 { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } }
/* the heading matches "Less admin, more bookings" on the app page; the glyph is the feature cards' size, bare */
.col-ic { display: block; margin-bottom: var(--sp-4); color: var(--ink); }
.col-ic .i { width: 40px; height: 40px; stroke-width: 1.6; }
.col h3 { font: 700 var(--t-3)/1.1 var(--font); letter-spacing: -.035em; margin-bottom: var(--sp-4); }
.col p { color: var(--ink-2); font-size: var(--t-1); line-height: 1.55; }
.col p + p { margin-top: var(--sp-4); }

/* faqs: heading on the left, questions on the right (library 00 · s04) */
.faq-page { padding-top: clamp(40px, 6vw, 80px); }
.faq-lay { display: grid; gap: var(--sp-7); grid-template-columns: 1fr; }
@media (min-width: 860px) { .faq-lay { grid-template-columns: 5fr 7fr; gap: var(--sp-9); align-items: start; } .faq-side { position: sticky; top: 96px; } }
.faq-side .kicker { display: block; margin-bottom: var(--sp-4); }
.faq-side h1 { font-size: var(--t-4); max-width: 11ch; }
.faq-side p { margin-top: var(--sp-5); }
