/* ============================================================================
   Daybook — Landing page · "Field Notebook"
   Composes the design-system tokens (../styles.css must be linked first).
   ============================================================================ */

body { background: var(--bg-app); }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* audience tracks ------------------------------------------------------------
   The chosen track is html[data-audience]; the OTHER track's content is hidden,
   so matching elements keep their natural display (grid, flex, table, details). */
html[data-audience="parents"]   [data-aud="providers"] { display: none; }
html[data-audience="providers"] [data-aud="parents"]   { display: none; }

/* track switch — fade the page while sections swap */
body { transition: opacity 140ms var(--ease-standard); }
html.switching body { opacity: 0; }

/* ---- top nav ---- */
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--border-subtle); }
.tendmark { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.mono-t { width: 24px; height: 24px; border-radius: 50%; background: var(--iodine-600); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 13px; flex: none; }
.tendmark .w { font-family: var(--font-display); font-size: 21px; color: var(--ink-900); line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-body); text-decoration: none; }
.nav-links a:hover { color: var(--iodine-700); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.signin { font-size: 14px; font-weight: 700; color: var(--text-muted); text-decoration: none; }
.nav-burger { display: none; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-md); background: var(--surface-card); color: var(--ink-900); cursor: pointer; }
@media (max-width: 860px) {
  .nav { position: relative; }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  /* Open menu shows only the active track's links (audience attr must win). */
  html[data-audience="parents"] .nav.open .nav-links[data-aud="parents"],
  html[data-audience="providers"] .nav.open .nav-links[data-aud="providers"] {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 60;
    background: var(--surface-card); border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-card); padding: 8px;
    box-shadow: 0 10px 30px rgba(23, 20, 13, 0.14);
  }
  .nav.open .nav-links a { padding: 12px 14px; border-radius: 6px; }
  .nav.open .nav-links a:hover { background: var(--surface-sunken); }
}

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: var(--radius-md); font-family: var(--font-sans); font-weight: 700; font-size: 15px; padding: 12px 22px; min-height: 44px; cursor: pointer; text-decoration: none; transition: background-color var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard); }
.btn:active { transform: translateY(0.5px); }
.btn-primary { background: var(--primary); color: var(--text-on-accent); }
.btn-primary:hover { background: var(--primary-hover); }
.btn-ink { background: var(--ink-900); color: var(--text-on-ink); }
.btn-ink:hover { background: var(--ink-800); }
.btn-outline { background: transparent; border-color: var(--border-strong); color: var(--text-strong); }
.btn-outline:hover { background: var(--ink-900); color: var(--paper); }
.btn-paper { background: var(--paper); color: var(--ink-900); }
.btn-paper:hover { background: var(--taupe-100); }
.btn-sm { font-size: 13px; padding: 8px 14px; min-height: 36px; }

/* ---- audience toggle (segmented) ---- */
.seg { display: inline-flex; border: 1.5px solid var(--border-strong); border-radius: var(--radius-md); background: var(--surface-card); padding: 3px; gap: 3px; }
.seg button { border: 0; background: transparent; border-radius: 4px; font-family: var(--font-sans); font-size: 14px; font-weight: 700; color: var(--text-body); padding: 9px 18px; min-height: 38px; cursor: pointer; transition: background-color var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard); }
.seg button:hover { color: var(--ink-900); }
.seg button[aria-pressed="true"] { background: var(--ink-900); color: var(--paper); }

/* ---- hero — two doors, the track selector ---- */
.hero { padding: 56px 0 24px; }
.hero h1 { color: var(--text-strong); text-wrap: balance; }

.hero-doors h1 { font-size: 56px; text-align: center; max-width: 18ch; margin: 0 auto; }
.hero-doors .sub { text-align: center; font-size: 17px; color: var(--text-muted); max-width: 52ch; margin: 16px auto 0; line-height: var(--leading-normal); }
.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.door { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-card); padding: 30px 30px 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; cursor: pointer; transition: border-color var(--motion-fast) var(--ease-standard), background-color var(--motion-fast) var(--ease-standard); }
.door:hover { border-color: var(--border-strong); }
.door.active { border: 1.5px solid var(--border-strong); }
.door h2 { font-size: 30px; }
.door p { margin: 0; font-size: 15px; color: var(--text-body); line-height: var(--leading-normal); max-width: 40ch; }
.door .btn { margin-top: 10px; }
.door .micro { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-muted); }
@media (max-width: 860px) { .doors { grid-template-columns: 1fr; } .hero-doors h1 { font-size: 40px; } }

/* ---- persistent track switcher (fixed pill, shown once the hero scrolls out) ---- */
.track-switch { position: fixed; bottom: 18px; left: 50%; transform: translate(-50%, 12px); z-index: 50; box-shadow: 0 6px 24px rgba(23, 20, 13, 0.16); opacity: 0; pointer-events: none; transition: opacity var(--motion-fast) var(--ease-standard), transform var(--motion-fast) var(--ease-standard); }
.track-switch.visible { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
@media (max-width: 480px) { .track-switch button { padding: 7px 12px; font-size: 13px; min-height: 34px; } }

/* ---- section scaffolding ---- */
section.band { padding: 72px 0; }
section.band + section.band { border-top: 1px solid var(--border-subtle); }
.band .eyebrow { display: block; margin-bottom: 14px; }
.band h2 { font-size: 38px; color: var(--text-strong); max-width: 24ch; text-wrap: balance; }
.band .lead { font-size: 16px; color: var(--text-body); max-width: 60ch; margin: 14px 0 0; line-height: var(--leading-normal); }
@media (max-width: 860px) { section.band { padding: 52px 0; } .band h2 { font-size: 30px; } }

/* ---- service types grid ---- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.svc-card { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-card); padding: 20px; transition: border-color var(--motion-fast) var(--ease-standard); }
.svc-card:hover { border-color: var(--iodine-600); }
.svc-card h4 { font-family: var(--font-display); font-weight: var(--weight-regular); font-size: 21px; color: var(--text-strong); margin: 0 0 7px; }
.svc-card p { margin: 0; font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
.svc-card p b { color: var(--text-body); font-weight: 600; }
@media (max-width: 860px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---- feature rows ---- */
.features { display: flex; flex-direction: column; gap: 64px; margin-top: 52px; }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature.rev .fcopy { order: 2; }
.feature.rev .fmock { order: 1; }
.fcopy h3 { font-family: var(--font-display); font-weight: var(--weight-regular); font-size: 28px; color: var(--text-strong); letter-spacing: var(--tracking-display); line-height: var(--leading-tight); margin: 0 0 12px; }
.fcopy .feyebrow { display: block; margin-bottom: 10px; }
.fcopy p { margin: 0; font-size: 15.5px; color: var(--text-body); line-height: 1.65; max-width: 48ch; }
.fcopy p + p { margin-top: 10px; }
.fcopy p b { color: var(--text-strong); }
@media (max-width: 860px) {
  .feature, .feature.rev { grid-template-columns: 1fr; gap: 22px; }
  .feature.rev .fcopy { order: 1; } .feature.rev .fmock { order: 2; }
  .features { gap: 48px; }
}

/* ---- mockettes (product cards) ---- */
.mock { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-card); overflow: hidden; }
.mock-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--border-subtle); }
.mock-head .eyebrow { margin: 0; }
.lrow { display: flex; align-items: center; gap: 12px; padding: 13px 18px; }
.lrow + .lrow { border-top: 1px dashed var(--rule-dashed); }
.lrow .t { font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); font-variant-numeric: tabular-nums; flex: none; }
.lrow .n { font-size: 14px; font-weight: 600; color: var(--text-strong); min-width: 0; }
.lrow .d { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); }
.lrow .dots { flex: 1; border-bottom: 1px dotted var(--taupe-300); transform: translateY(-3px); min-width: 16px; }
.lrow .p { font-family: var(--font-mono); font-size: 14px; color: var(--text-strong); font-variant-numeric: tabular-nums; }
.lrow.sunken { background: var(--surface-sunken); }
.lrow.muted .n { color: var(--text-muted); font-weight: 500; }
.mock-foot { padding: 12px 18px; background: var(--surface-sunken); border-top: 1px solid var(--border-subtle); font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.mock-foot b { color: var(--text-body); }
.mock-foot .ok { color: var(--pine-600); font-weight: 700; }

.badge { display: inline-flex; align-items: center; gap: 5px; border-radius: var(--radius-sm); font-size: 11.5px; font-weight: 700; padding: 3px 8px; white-space: nowrap; }
.b-iodine   { background: var(--iodine-100);   color: var(--iodine-700); }
.b-prussian { background: var(--prussian-100); color: var(--prussian-600); }
.b-pine     { background: var(--pine-100);     color: var(--pine-600); }
.b-plum     { background: var(--plum-100);     color: var(--plum-600); }
.b-taupe    { background: var(--taupe-100);    color: var(--taupe-600); }

.av { width: 36px; height: 36px; flex: none; border-radius: var(--radius-md); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; }
.av-owner { background: var(--avatar-owner-bg); color: var(--avatar-owner-fg); }
.av-pet   { background: var(--avatar-pet-bg);   color: var(--avatar-pet-fg); }

.chips { display: flex; gap: 7px; flex-wrap: wrap; }
.chip { border: 1px solid var(--border-default); border-radius: var(--radius-full); background: var(--surface-card); padding: 3px 11px; font-size: 12px; font-weight: 600; color: var(--text-body); }

/* ---- bridge: one visit, two views ---- */
.bridge-grid { display: grid; grid-template-columns: 1fr 1.35fr 1fr; gap: 36px; margin-top: 48px; align-items: center; }
.notes { display: flex; flex-direction: column; gap: 26px; }
.note .nlabel { display: block; margin-bottom: 6px; }
.note p { margin: 0; font-size: 14.5px; color: var(--text-body); line-height: 1.55; }
.notes.right { text-align: right; }
.notes.right .note p { margin-left: auto; }
.report { background: var(--surface-card); border: 1.5px solid var(--border-strong); border-radius: var(--radius-card); overflow: hidden; }
.report .rhead { padding: 16px 20px 0; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.report .rdate { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.report .rlede { font-family: var(--font-display); font-style: italic; font-size: 20px; line-height: 1.45; color: var(--text-strong); margin: 10px 0 0; padding: 0 20px; }
.report .rchecks { margin: 16px 0 0; padding: 0 20px 18px; display: flex; flex-direction: column; gap: 8px; }
.rcheck { display: flex; align-items: baseline; gap: 9px; font-size: 14px; color: var(--text-body); }
.rcheck .tick { width: 18px; height: 18px; flex: none; border-radius: var(--radius-sm); background: var(--pine-100); color: var(--pine-600); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; transform: translateY(2px); }
.rcheck .cam { margin-left: auto; color: var(--text-faint); display: inline-flex; transform: translateY(3px); }
.rcheck .cam + .when { margin-left: 8px; }
.rcheck .when { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-left: auto; }
.report .rphoto { padding: 0 20px 18px; }
@media (max-width: 980px) {
  .bridge-grid { grid-template-columns: 1fr; gap: 28px; }
  .notes, .notes.right { flex-direction: row; text-align: left; gap: 18px; }
  .notes .note { flex: 1; } .notes.right .note p { margin-left: 0; }
}
@media (max-width: 640px) { .notes, .notes.right { flex-direction: column; } }

/* ---- stats ---- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.stat { border-top: 1px solid var(--border-strong); padding-top: 14px; }
.stat .v { font-family: var(--font-display); font-size: 44px; color: var(--text-strong); line-height: 1.05; }
.stat .k { margin-top: 6px; font-family: var(--font-mono); font-size: 12px; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--text-muted); }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; } }

/* ---- reviews ---- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.review { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-card); padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.review .q { font-family: var(--font-display); font-style: italic; font-size: 18px; line-height: 1.45; color: var(--text-strong); margin: 0; flex: 1; }
.review .who { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.review .nm { font-size: 13px; font-weight: 700; color: var(--text-body); }
.review .dt { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); }
.rev-policy { margin-top: 18px; font-size: 13px; color: var(--text-muted); }
.rev-policy b { color: var(--pine-600); }
@media (max-width: 860px) { .reviews { grid-template-columns: 1fr; } }

/* ---- setup strip ---- */
.setup { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 16px; border: 1px solid var(--border-subtle); border-radius: var(--radius-card); background: var(--surface-card); }
.setup .step { padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; }
.setup .step + .step { border-left: 1px dashed var(--rule-dashed); }
.setup .num { font-family: var(--font-mono); font-size: 12px; color: var(--iodine-600); padding-top: 2px; }
.setup .step b { display: block; font-size: 14px; color: var(--text-strong); margin-bottom: 3px; }
.setup .step p { margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 860px) { .setup { grid-template-columns: 1fr; } .setup .step + .step { border-left: 0; border-top: 1px dashed var(--rule-dashed); } }

/* ---- marketplace flow ---- */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.fstep { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-card); padding: 24px; }
.fstep.hot { border: 1.5px solid var(--border-strong); }
.fstep .fnum { font-family: var(--font-mono); font-size: 12px; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 12px; }
.fstep h3 { font-family: var(--font-display); font-weight: var(--weight-regular); font-size: 26px; color: var(--text-strong); margin: 0 0 10px; letter-spacing: var(--tracking-display); }
.fstep p { margin: 0; font-size: 14px; color: var(--text-body); line-height: 1.6; }
.fstep p b { color: var(--text-strong); }
.fstep .ftag { display: inline-flex; margin-bottom: 12px; }
.flow-note { margin-top: 18px; font-size: 13.5px; color: var(--text-muted); max-width: 66ch; }
.flow-note b { color: var(--text-body); }
@media (max-width: 860px) { .flow { grid-template-columns: 1fr; } }

/* ---- live demo frame ---- */
.demo-frame { margin-top: 44px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-card); overflow: hidden; background: var(--surface-card); }
.demo-chrome { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-bottom: 1px solid var(--border-subtle); background: var(--surface-sunken); }
.demo-chrome .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--taupe-300); }
.demo-chrome .url { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.demo-chrome .live { font-family: var(--font-mono); font-size: 11px; color: var(--pine-600); display: inline-flex; align-items: center; gap: 6px; }
.demo-chrome .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pine-500); }
.demo-vp { height: 680px; }
.demo-vp iframe { display: block; width: 100%; height: 100%; border: 0; }
.demo-launch { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; width: 100%; height: 100%; padding: 32px; border: 0; cursor: pointer; background: var(--surface-sunken); color: var(--text-strong); text-align: center; transition: background 120ms ease; }
.demo-launch:hover { background: var(--surface-card); }
.demo-launch:focus-visible { outline: 2px solid var(--iodine-500); outline-offset: -4px; }
.demo-launch-play { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--iodine-600); color: var(--surface-paper); font-size: 18px; padding-left: 4px; }
.demo-launch-label { font-family: var(--font-display); font-size: 24px; }
.demo-launch-sub { font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); }
.demo-fallback { display: none; }
@media (max-width: 980px) {
  .demo-frame { display: none; }
  .demo-fallback { display: block; margin-top: 32px; }
}

/* ---- vs table ---- */
.vs-wrap { margin-top: 44px; border: 1px solid var(--border-subtle); border-radius: var(--radius-card); background: var(--surface-card); overflow-x: auto; }
.vs { width: 100%; min-width: 780px; border-collapse: collapse; }
.vs th, .vs td { text-align: left; padding: 14px 18px; vertical-align: top; font-size: 13.5px; line-height: 1.55; color: var(--text-body); }
.vs thead th { font-family: var(--font-mono); font-size: 11px; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; font-weight: 500; color: var(--text-muted); background: var(--surface-sunken); border-bottom: 1px solid var(--border-subtle); }
.vs tbody td, .vs tbody th { border-top: 1px dashed var(--rule-dashed); }
.vs tbody tr:first-child td, .vs tbody tr:first-child th { border-top: 0; }
.vs tbody th { font-family: var(--font-sans); font-size: 14px; font-weight: 700; color: var(--text-strong); width: 18%; }
.vs td.dbcol { background: var(--surface-tint); }
.vs thead th.dbcol { background: var(--iodine-100); color: var(--iodine-700); }
.vs .neg { color: var(--text-muted); }
.vs .pos { color: var(--text-body); }
.vs .pos b, .vs td.dbcol b { color: var(--iodine-700); }
.vs-note { margin-top: 14px; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); }

/* ---- pricing ---- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; align-items: start; }
.plan { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-card); padding: 24px; }
.plan.pro { border: 1.5px solid var(--border-strong); }
.plan .phead { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.plan h3 { font-family: var(--font-display); font-weight: var(--weight-regular); font-size: 28px; color: var(--text-strong); margin: 0; }
.plan .price { font-family: var(--font-mono); font-size: 15px; color: var(--text-strong); font-variant-numeric: tabular-nums; }
.plan .price small { font-size: 11px; color: var(--text-muted); }
.plan .pfor { margin: 8px 0 0; font-size: 14px; color: var(--text-muted); }
.plan ul { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.plan li { display: flex; gap: 10px; align-items: baseline; font-size: 14.5px; color: var(--text-body); line-height: 1.5; }
.plan li .tick { width: 18px; height: 18px; flex: none; border-radius: var(--radius-sm); background: var(--pine-100); color: var(--pine-600); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; transform: translateY(2px); }
.plan li.plus .tick { background: var(--iodine-100); color: var(--iodine-700); }
.plan .btn { margin-top: 24px; width: 100%; }
.plan .pnote { margin-top: 16px; border-top: 1px dashed var(--rule-dashed); padding-top: 12px; font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }
.plan .pnote b { color: var(--text-body); }
.plans-note { margin-top: 18px; font-size: 13px; color: var(--text-muted); max-width: 64ch; }
.plans-note b { color: var(--text-body); }
@media (max-width: 980px) { .plans { grid-template-columns: 1fr; } }

/* the switch panel */
.switch { margin-top: 28px; border: 1px solid var(--border-subtle); border-radius: var(--radius-card); background: var(--surface-card); display: grid; grid-template-columns: repeat(3, 1fr); }
.switch .scol { padding: 22px 24px; }
.switch .scol + .scol { border-left: 1px dashed var(--rule-dashed); }
.switch .scol .eyebrow { display: block; margin-bottom: 8px; }
.switch .math { font-family: var(--font-mono); font-size: 15px; color: var(--text-strong); font-variant-numeric: tabular-nums; margin: 0 0 8px; }
.switch .math b { color: var(--pine-600); font-weight: 500; }
.switch p { margin: 0; font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.switch p b { color: var(--text-body); font-weight: 600; }
@media (max-width: 860px) { .switch { grid-template-columns: 1fr; } .switch .scol + .scol { border-left: 0; border-top: 1px dashed var(--rule-dashed); } }

/* ---- parents pricing band ---- */
.pricing-parents { text-align: center; }
.pricing-parents h2, .pricing-parents .lead { margin-left: auto; margin-right: auto; }
.pricing-parents .acts { display: flex; justify-content: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.pricing-parents .micro { margin-top: 14px; font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }

/* ---- cross-track link band ---- */
.xlink { border-top: 1px solid var(--border-subtle); padding: 26px 0; text-align: center; }
.xlink button { border: 0; background: transparent; padding: 0; cursor: pointer; font-family: var(--font-sans); font-size: 15px; color: var(--text-muted); }
.xlink button b { color: var(--text-strong); font-weight: 700; }
.xlink button:hover b { color: var(--iodine-700); }

/* ---- final CTA band ---- */
.cta-band { background: var(--ink-900); color: var(--paper); padding: 80px 0; margin-top: 72px; }
/* On the dark band the taupe text tokens flip: AA needs LIGHT taupe on ink. */
.cta-band .eyebrow { color: var(--taupe-300); display: block; margin-bottom: 14px; }
.cta-band h2 { font-size: 52px; color: var(--paper); max-width: 22ch; text-wrap: balance; }
.cta-band h2 em { font-style: italic; color: var(--iodine-500); }
.cta-band .lead { color: var(--taupe-300); font-size: 16px; max-width: 56ch; margin: 16px 0 0; line-height: var(--leading-normal); }
.cta-band .acts { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.cta-band .micro { margin-top: 16px; font-family: var(--font-mono); font-size: 12px; color: var(--taupe-300); }
@media (max-width: 860px) { .cta-band h2 { font-size: 36px; } .cta-band { padding: 56px 0; } }

/* ---- hero product strip ---- */
.hero-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; max-width: 1020px; margin: 48px auto 0; align-items: start; }
.hero-strip .mock { font-size: 13px; }
.hero-strip .lrow { padding: 10px 14px; }
.hero-strip .mock-head { padding: 10px 14px; }
.hero-strip .rlede { font-size: 16px; padding: 0 14px; margin-top: 8px; }
.hero-strip .rchecks { padding: 0 14px 14px; margin-top: 10px; }
@media (max-width: 860px) { .hero-strip { grid-template-columns: 1fr; max-width: 460px; } .hero-strip .mock:nth-child(3) { display: none; } }

/* ---- FAQ ---- */
.faq { margin-top: 44px; border-top: 1px solid var(--border-subtle); }
.faq details { border-bottom: 1px solid var(--border-subtle); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 18px 4px; font-size: 16px; font-weight: 700; color: var(--text-strong); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ind { font-family: var(--font-mono); font-size: 14px; color: var(--text-faint); flex: none; transition: transform var(--motion-fast) var(--ease-standard); }
.faq details[open] summary .ind { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 4px 18px; font-size: 14.5px; color: var(--text-body); line-height: 1.65; max-width: 72ch; }
.faq details p b { color: var(--text-strong); }

/* ---- footer ---- */
footer.site { border-top: 1px solid var(--border-subtle); padding: 40px 0; margin-top: 0; }
.fcols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 32px; }
.fcols .fbrand p { margin: 10px 0 0; font-size: 13px; color: var(--text-muted); max-width: 26ch; line-height: 1.55; }
.fcols h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; font-weight: 500; color: var(--text-muted); margin: 0 0 12px; }
.fcols ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.fcols a { font-size: 13.5px; font-weight: 600; color: var(--text-body); text-decoration: none; }
.fcols a:hover { color: var(--iodine-700); }
footer.site .frow { border-top: 1px dashed var(--rule-dashed); padding-top: 18px; }
@media (max-width: 860px) { .fcols { grid-template-columns: 1fr 1fr; } }

footer.site .frow { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); }
footer.site a { color: var(--text-muted); text-decoration: none; }
footer.site .flinks { display: flex; gap: 18px; }
