/* =============================================================
   CABOO · OPERATOR DASHBOARD — dashboard.css
   The real authenticated dashboard (SSR via apps/api), brand-aligned.
   Built from the measured design spec. Pairs with tokens.css (brand
   tokens) + a client module for tabs / accordion / availability painter,
   and a shaders.com <canvas> behind the banner.
   ============================================================= */

:root {
  /* dashboard-specific additions to the brand token set (matched to the design) */
  --dash-card-radius: 16px;          /* measured ~15-16, not the 22px --r-card */
  --ok:        #5d7544;              /* confirmed / healthy */
  --ok-ink:    #4f6a39;
  --ok-tint:   #eceee9;              /* sage CONFIRMED pill bg */
  --seg-track: #f2f2f2;              /* segmented control track */
  --toggle-plus: #384161;            /* collapsed "+" glyph (slate, per design) */
  --pro-tint:  #fef2f0;              /* PRO badge bg on white */
  --rowline:   #f1f1f1;              /* in-card row dividers */

  /* premium pillow shadows — very light, very wide, warm-tinted (no border needed) */
  --dash-shadow:
    0 1px 3px rgba(56, 45, 36, .02),
    0 10px 24px rgba(56, 45, 36, .016),
    0 28px 60px rgba(56, 45, 36, .018),
    0 56px 112px 4px rgba(56, 45, 36, .02);
  --dash-shadow-sm:
    0 1px 3px rgba(56, 45, 36, .022),
    0 8px 20px rgba(56, 45, 36, .017),
    0 22px 48px rgba(56, 45, 36, .02);
  /* hover / selected — fuller, still light, even wider */
  --dash-shadow-lift:
    0 2px 6px rgba(56, 45, 36, .022),
    0 14px 34px rgba(56, 45, 36, .022),
    0 36px 76px rgba(56, 45, 36, .026),
    0 72px 134px 8px rgba(56, 45, 36, .026);

  /* ---- motion · refined ----
     A small, deliberate easing set. --ease (tokens.css) stays the resting
     curve; these add Apple-grade deceleration for the moments that carry the
     eye: disclosure reveal, glyph morph, tactile press. No bounce, no
     elastic — confident ease-out only. Exit ≈ 75% of enter. */
  --ease-out-quint: cubic-bezier(.22, 1, .36, 1);   /* refined deceleration */
  --ease-out-expo:  cubic-bezier(.16, 1, .3, 1);    /* decisive, long tail */
  --ease-disclose:  cubic-bezier(.32, .72, 0, 1);   /* iOS sheet / reveal */
  --ease-press:     cubic-bezier(.32, .9, .3, 1);   /* quick, settled press */
  --ease-spring:    cubic-bezier(.34, 1.56, .64, 1); /* gentle overshoot — the bouncy reveal */
  --dur-press:      .15s;                            /* finger-down feedback */
  --dur-reveal:     .46s;                            /* expand */
  --dur-collapse:   .36s;                            /* collapse */
}

.dash { background: var(--canvas); min-height: 100vh; margin: 0; color: var(--ink); font-family: var(--font-body); font-size: var(--fs-body, 1rem); line-height: var(--lh-normal, 1.5); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
.dash :where(a) { color: inherit; text-decoration: none; }
.dash *, .dash *::before, .dash *::after { box-sizing: border-box; }
/* one shared container — top bar, banner and cards align to the same column */
.shell { max-width: 1040px; margin: 0 auto; padding: 26px 24px 96px; }
.dashc { margin: 0; }

/* ---- top bar (utility, on the page) ---- */
.top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.top .brand img { height: 26px; width: auto; display: block; }
.top__util { display: flex; align-items: center; gap: 10px; }
.upill { display: inline-flex; align-items: center; gap: 8px; appearance: none; -webkit-appearance: none; cursor: pointer; border: 1px solid var(--rule); background: var(--surface); color: #3e332b; font-family: var(--font-body); font-size: var(--home-small, .875rem); padding: 8px 16px; border-radius: 14px; text-decoration: none; -webkit-tap-highlight-color: transparent; transition: border-color .15s var(--ease), background .15s var(--ease), transform var(--dur-press) var(--ease-press); }
.upill svg { width: 16px; height: 16px; color: #6e6660; flex: 0 0 auto; }
.upill:hover { border-color: rgba(26, 22, 19, .22); }
.upill:active { transform: scale(.96); }
.upill--solid { background: #f1f1e9; border-color: transparent; }
.upill--solid:hover { background: #e9e8df; }
.acctmenu { position: relative; display: inline-flex; }
.acctmenu__pop { position: absolute; top: calc(100% + 8px); right: 0; min-width: 210px; background: #fff; border-radius: 14px; box-shadow: var(--dash-shadow-lift, 0 16px 38px rgba(26, 22, 19, .2)); padding: 6px; z-index: 60; display: flex; flex-direction: column; gap: 1px; animation: acctmenuIn .16s var(--ease-out-quint, ease) backwards; }
.acctmenu__pop[hidden] { display: none; }
.acctmenu__email { padding: 9px 12px 8px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); word-break: break-all; border-bottom: 1px solid var(--rowline); margin-bottom: 4px; }
.acctmenu__item { display: flex; align-items: center; gap: 8px; width: 100%; box-sizing: border-box; padding: 9px 12px; border: 0; background: transparent; border-radius: 9px; font: inherit; font-size: 14px; color: var(--espresso); text-align: left; text-decoration: none; cursor: pointer; }
.acctmenu__item:hover { background: rgba(26, 22, 19, .05); }
.acctmenu form { margin: 4px 0 0; padding-top: 4px; border-top: 1px solid var(--rowline); }
.acctmenu__item--out { color: var(--coral-ink); }
.acctmenu__item--out:hover { background: rgba(216, 73, 44, .08); }
@keyframes acctmenuIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .acctmenu__pop { animation: none; } }

/* ---- shader banner ---- */
.banner { position: relative; border-radius: 16px; overflow: hidden; padding: 0; isolation: isolate; }
.banner__shader { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; display: block; }
/* CSS fallback under the canvas (until the shader mounts / reduced-motion) */
.banner::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(130% 150% at 8% 100%, #f4a750 0%, #de3719 60%, #c2371d 100%); }
.banner__head { display: flex; align-items: center; gap: 14px; margin: 30px 0 0 38px; }
.banner__icon { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 13px; background: rgba(255, 255, 255, .16); color: #fff; }
.banner__icon svg { width: 24px; height: 24px; }
.banner__meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.banner__biz { display: inline-flex; align-items: center; gap: 9px; appearance: none; -webkit-appearance: none; border: 0; background: none; cursor: pointer; margin: 0; padding: 0; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 1.9vw, 1.6rem); letter-spacing: -.015em; line-height: 1.05; color: #fff; }
.banner__chev { width: 15px; height: 15px; flex: 0 0 auto; color: rgba(255, 255, 255, .78); }
.banner__desc { margin: 0; max-width: clamp(200px, 34vw, 380px); font-family: var(--font-body); font-weight: 400; font-size: .875rem; line-height: 1.3; color: rgba(255, 255, 255, .82); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bannergate { margin-left: auto; margin-right: 38px; min-width: 146px; min-height: 48px; display: inline-flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px; padding: 9px 16px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .16); color: #fff; text-decoration: none; cursor: pointer; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: inset 0 1px 0 rgba(255,255,255,.26), 0 12px 30px rgba(75, 24, 9, .16); }
.bannergate span { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; opacity: .82; }
.bannergate b { font-family: var(--font-body); font-size: .86rem; font-weight: 600; line-height: 1.15; }
.bannergate--ready { background: rgba(255,255,255,.9); color: var(--coral-ink); border-color: rgba(255,255,255,.8); }
.bannergate--live { background: rgba(236, 249, 232, .94); color: #315b2c; border-color: rgba(236, 249, 232, .9); }
.bannergate:disabled { opacity: .62; cursor: not-allowed; box-shadow: inset 0 1px 0 rgba(255,255,255,.2); }

/* ---- folder tabs (docked to the banner bottom) ---- */
.tabs { display: flex; align-items: stretch; gap: 0; margin: 44px 0 0; padding-left: 38px; padding-right: 38px; }
.tab { flex: 1; min-width: 0; position: relative; display: flex; align-items: center; justify-content: flex-start; gap: 6px; appearance: none; -webkit-appearance: none; cursor: pointer; padding: 13px 12px; font-family: var(--font-body); font-size: .8125rem; font-weight: 600; color: #fff; background: rgba(255, 255, 255, .1); border: 0; border-top: 1px solid rgba(255, 255, 255, .3); -webkit-tap-highlight-color: transparent; transition: background .15s var(--ease), color .2s var(--ease); }
.tab:first-child { border-top-left-radius: 12px; }
.tab:active:not(.is-on) { background: rgba(255, 255, 255, .22); }
.tab:last-child { border-top-right-radius: 12px; }
.tab svg { width: 16px; height: 16px; flex: 0 0 auto; }
.tab__label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tab + .tab { border-left: 1px solid rgba(255, 255, 255, .16); }
.tab:hover { background: rgba(255, 255, 255, .16); }
.tab__pro, .tab__soon { margin-left: auto; font-family: var(--font-body); font-size: .5625rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 2px 5px; border-radius: 999px; flex: 0 0 auto; }
.tab__pro { background: rgba(255, 255, 255, .22); color: #fff; }
.tab__soon { background: rgba(255, 255, 255, .13); color: rgba(255, 255, 255, .7); }
/* coming-soon tabs collapse to just an icon */
.tab.is-soon { flex: 0 0 auto; justify-content: center; gap: 0; padding: 13px 18px; color: rgba(255, 255, 255, .72); }
.tab.is-soon .tab__label, .tab.is-soon .tab__soon { display: none; }
.tab.is-soon:hover { color: #fff; }
/* active = white folder, ink icon + label */
.tab.is-on { background: var(--surface); color: var(--ink); border-top-color: transparent; border-top-left-radius: 12px; border-top-right-radius: 12px; font-weight: 700; }
/* inactive siblings nest against the active folder: each rounds only the top corner facing it */
.tab:has(+ .tab.is-on) { border-top-right-radius: 12px; }
.tab.is-on svg { color: var(--ink); }
.tab.is-on + .tab { border-left: 0; border-top-left-radius: 12px; }

/* ---- view + header ---- */
.view { display: none; }
.view.is-active { display: block; }
@keyframes dashIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .view.is-active { animation: none; } .acc-item, .feed__row { transition: none; } .acc-item:hover:not(.is-open), .feed__row:hover { transform: none; } }
.vtitle { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.35rem); letter-spacing: -.02em; line-height: 1.04; color: var(--espresso); margin: 32px 0 0 38px; }
.vstatus { display: inline-flex; align-items: center; gap: 9px; margin: 12px 0 0 38px; font-size: var(--home-small, .9rem); color: var(--ink-3); }
.vdot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); flex: 0 0 auto; }

/* ---- accordion of section cards ---- */
.acc { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.acc-item { background: rgba(255, 255, 255, .8); border-radius: var(--dash-card-radius); box-shadow: var(--dash-shadow); padding: 0 38px; transition: background .3s var(--ease-out-quint), box-shadow .4s var(--ease-out-quint), transform .4s var(--ease-out-quint); }
.acc-item:hover { background: #fff; box-shadow: var(--dash-shadow-lift); }
.acc-item:hover:not(.is-open) { transform: translateY(-2px); }
.acc-item.is-open { background: #fff; box-shadow: var(--dash-shadow-lift); }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; appearance: none; -webkit-appearance: none; border: 0; background: none; cursor: pointer; text-align: left; padding: 22px 0; -webkit-tap-highlight-color: transparent; }
.acc-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -.01em; color: #544d45; display: inline-flex; align-items: center; gap: 10px; transition: color .25s var(--ease); }
.acc-head:hover .acc-title, .acc-item.is-open .acc-title { color: var(--espresso); }
.acc-pro { font-family: var(--font-mono); font-size: var(--home-badge, .6875rem); letter-spacing: .06em; text-transform: uppercase; color: var(--coral-ink); background: var(--pro-tint); padding: 3px 8px; border-radius: 999px; }
/* +/− circular toggle — the vertical bar lies down into a minus (no display swap),
   the disc warms on hover, and presses in under the finger. */
.acc-tog { position: relative; width: 40px; height: 40px; flex: 0 0 auto; border-radius: 50%; background: var(--canvas); transition: background .3s var(--ease), box-shadow .3s var(--ease), transform var(--dur-press) var(--ease-press); }
.acc-tog::before, .acc-tog::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; border-radius: 2px; background: var(--toggle-plus); transform: translate(-50%, -50%); transition: transform var(--dur-reveal) var(--ease-disclose), background .25s var(--ease); }
.acc-tog::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc-head:hover .acc-tog { background: var(--surface); box-shadow: inset 0 0 0 1px var(--rule-soft); }
.acc-head:active .acc-tog { transform: scale(.86); }
.acc-item.is-open .acc-tog { background: var(--surface); box-shadow: inset 0 0 0 1px #d7d7d7; }
.acc-item.is-open .acc-tog::before { background: var(--coral-ink); }
.acc-item.is-open .acc-tog::after { transform: translate(-50%, -50%) rotate(0deg); background: var(--coral-ink); }
/* collapsible body — height reveals via grid-template-rows (the FAQ technique;
   no layout-property animation), content settling in behind the edge. The
   persistent rows (e.g. Hours/Slot) live outside it in .acc-rows. */
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-collapse) var(--ease-disclose); }
.acc-item.is-open .acc-body { grid-template-rows: 1fr; transition: grid-template-rows var(--dur-reveal) var(--ease-disclose); }
.acc-body__inner { overflow: hidden; min-height: 0; opacity: 0; transform: translateY(-6px); transition: opacity .18s var(--ease), transform .22s var(--ease-out-quint); }
/* bottom breathing room as a clipped spacer, not padding — padding on the grid
   item would floor the collapsed height and leave a sliver. */
.acc-body__inner::after { content: ""; display: block; height: 18px; }
.acc-item.is-open .acc-body__inner { opacity: 1; transform: none; transition: opacity .4s var(--ease-out-quint) .08s, transform var(--dur-reveal) var(--ease-disclose) .05s; }
.acc-rows { border-top: 1px solid var(--rowline); }

/* ---- iOS rows ---- */
.row { display: flex; align-items: center; gap: 14px; min-height: 52px; padding: 12px 0; border-top: 1px solid var(--rowline); }
.row:first-child { border-top: 0; }
.row__k { flex: 1; min-width: 0; font-family: var(--font-body); font-weight: 500; font-size: 1rem; color: var(--ink); }
.row__k .row__sub { display: block; font-weight: 400; font-size: .8125rem; color: var(--ink-3); margin-top: 2px; }
.row__v { color: var(--ink-2); font-size: 1rem; flex: 0 0 auto; }
.row__chev { width: 16px; height: 16px; color: var(--ink-3); flex: 0 0 auto; transition: transform .25s var(--ease-out-quint), color .2s var(--ease); }
.row--tap { cursor: pointer; }
.row--tap:hover .row__v { color: var(--ink); }
.row--tap:hover .row__chev { transform: translateX(3px); color: var(--ink-2); }
.row--tap:active .row__chev { transform: translateX(5px); }
.addrow { appearance: none; -webkit-appearance: none; border: 0; background: none; cursor: pointer; color: var(--coral-ink); font-family: var(--font-body); font-size: var(--home-small, .9rem); padding: 14px 0 4px; }

/* ---- segmented (Off / Optional / Required) — one thumb slides between equal
   thirds; the label it lands on lifts to ink. Works for both the radio markup
   (label > input + span) and the legacy button markup. The thumb + active
   label follow the REAL radio :checked state first (no JS needed), with
   [data-value]/.is-on as the fallback the JS keeps in sync. ---- */
.seg { position: relative; display: inline-flex; gap: 0; width: 16rem; background: var(--seg-track); border-radius: 11px; padding: 4px; flex: 0 0 auto; isolation: isolate; }
.seg :is(button, label) { position: relative; z-index: 1; flex: 1 1 0; min-width: 66px; text-align: center; appearance: none; -webkit-appearance: none; border: 0; background: none; cursor: pointer; font-family: var(--font-body); font-size: var(--home-small, .875rem); color: var(--ink-2); padding: 7px 14px; border-radius: 8px; -webkit-tap-highlight-color: transparent; transition: color .3s var(--ease-out-quint), transform var(--dur-press) var(--ease-press); }
.seg input { position: absolute; opacity: 0; pointer-events: none; margin: 0; }
.seg label span { position: relative; z-index: 1; }
/* the sliding thumb */
.seg::before { content: ""; position: absolute; z-index: 0; top: 4px; bottom: 4px; left: 4px; width: calc((100% - 8px) / 3); border-radius: 7px; background: var(--surface); box-shadow: 0 1px 2px rgba(26, 22, 19, .1); transform: translateX(0); transition: transform .42s var(--ease-out-quint); }
/* fallback driver: JS-synced data attribute / class */
.seg[data-value="optional"]::before { transform: translateX(100%); }
.seg[data-value="required"]::before { transform: translateX(200%); }
.seg :is(button, label).is-on { color: var(--ink); font-weight: 500; }
/* primary driver: the native radio state (wins on specificity, needs no JS) */
.seg:has(> label:nth-of-type(2) input:checked)::before { transform: translateX(100%); }
.seg:has(> label:nth-of-type(3) input:checked)::before { transform: translateX(200%); }
.seg label:has(input:checked) { color: var(--ink); font-weight: 500; }
.seg :is(button, label):active { transform: scale(.93); }
/* locked variant — same control footprint, pinned to Required and sealed:
   the off/optional options recede, the active label carries a lock. */
.seg--locked { pointer-events: none; }
.seg--locked label:not(.is-on) { opacity: .38; }
.seg--locked .is-on { color: var(--ink-2); }
.seg--locked label span { display: inline-flex; align-items: center; justify-content: center; gap: 4px; }
.seg__lock { width: .78em; height: .78em; flex: 0 0 auto; color: var(--ink-3); }

/* ---- availability: mode chooser (Frozen vs Real-time) ---- */
.avail__modes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.avail__mode { display: flex; align-items: flex-start; gap: 11px; text-align: left; appearance: none; -webkit-appearance: none; cursor: pointer; border: 0; background: var(--canvas); border-radius: 13px; padding: 14px; transition: background .15s var(--ease); }
.avail__mode:hover { background: #f1ede6; }
.avail__mode.is-on { background: var(--pro-tint); }
.avail__mode-ic { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 9px; background: #fff; color: var(--ink-2); }
.avail__mode.is-on .avail__mode-ic { background: var(--coral-2); color: #fff; }
.avail__mode-ic--caboo, .avail__mode.is-on .avail__mode-ic--caboo { background: none; }
.avail__mode-ic--caboo img { width: 100%; height: 100%; display: block; }
.avail__mode-ic svg { width: 18px; height: 18px; }
.avail__mode-tx { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.avail__mode-tx b { font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: var(--ink); }
.avail__mode-tx em { font-style: normal; font-size: .8rem; color: var(--ink-3); line-height: 1.35; }
.avail__pane { display: none; }
.avail__pane.is-on { display: block; animation: dashIn .25s var(--ease); }
.avail__hint { font-size: .9rem; color: var(--ink-2); line-height: 1.5; margin: 0 0 14px; max-width: 64ch; }
/* frozen: the card that opens the editor drawer */
.avail__open { width: 100%; display: flex; align-items: center; gap: 13px; appearance: none; -webkit-appearance: none; cursor: pointer; border: 0; background: var(--canvas); border-radius: 13px; padding: 15px 16px; transition: background .15s var(--ease), box-shadow .2s var(--ease); }
.avail__open:hover { background: #f1ede6; box-shadow: var(--dash-shadow-sm); }
.avail__open-ic { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 10px; background: var(--coral-2); color: #fff; }
.avail__open-ic svg { width: 20px; height: 20px; }
.avail__open-tx { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; text-align: left; }
.avail__open-tx b { font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: var(--ink); }
.avail__open-tx em { font-style: normal; font-size: .82rem; color: var(--ink-3); }
.avail__open-cta { display: inline-flex; align-items: center; gap: 3px; flex: 0 0 auto; font-size: .85rem; font-weight: 500; color: var(--coral-ink); }
.avail__open-cta svg { width: 16px; height: 16px; }
/* real-time: provider cards */
.provs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.prov { display: flex; align-items: center; gap: 11px; background: var(--canvas); border-radius: 13px; padding: 12px 14px; transition: background .15s var(--ease); }
.prov.is-on { background: var(--ok-tint); }
.prov.is-disabled { opacity: .68; }
.prov__ic { width: 36px; height: 36px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 9px; color: #fff; }
.prov__ic--logo { background: #fff; }
.prov__ic svg { width: 20px; height: 20px; }
.prov__ic img { width: 22px; height: 22px; display: block; }
.prov__tx { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.prov__tx b { font-family: var(--font-body); font-weight: 600; font-size: .9rem; color: var(--ink); }
.prov__tx em { font-style: normal; font-size: .78rem; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prov.is-on .prov__tx em { color: var(--ok-ink); }
.prov__gate { flex: 0 0 auto; appearance: none; -webkit-appearance: none; cursor: pointer; font-family: var(--font-body); font-size: .72rem; font-weight: 600; color: var(--ink-2); background: var(--surface); border: 1px solid var(--rule); border-radius: 999px; padding: 5px 11px; }
.prov__gate:hover { border-color: rgba(26, 22, 19, .24); }
.prov__soon { flex: 0 0 auto; font-family: var(--font-mono); font-size: .62rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); background: rgba(26, 22, 19, .06); border-radius: 999px; padding: 6px 10px; }
/* toggle switch */
.switch { width: 42px; height: 24px; flex: 0 0 auto; border-radius: 999px; background: #d9d6d0; border: 0; position: relative; cursor: pointer; padding: 0; transition: background .18s var(--ease); }
.switch::after { content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .25); transition: transform .18s var(--ease); }
.switch[aria-checked="true"] { background: var(--ok); }
.switch[aria-checked="true"]::after { transform: translateX(18px); }

/* ---- slide-over drawer (availability editor) ---- */
.drawer { position: fixed; inset: 0; z-index: 60; }
.drawer[hidden] { display: none; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(26, 22, 19, .34); opacity: 0; transition: opacity .3s var(--ease-disclose); }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__sheet { position: absolute; top: 0; right: 0; height: 100%; width: min(560px, 94vw); background: var(--canvas); box-shadow: -20px 0 60px -20px rgba(26, 22, 19, .4); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .28s var(--ease-disclose); }
.drawer.is-open .drawer__sheet { transform: none; transition: transform .44s var(--ease-disclose); }
@media (prefers-reduced-motion: reduce) { .drawer__scrim, .drawer__sheet { transition: none; } }
.drawer__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 22px 24px 16px; border-bottom: 1px solid var(--rule); }
.drawer__title { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -.01em; color: var(--espresso); margin: 0; }
.drawer__sub { font-size: .85rem; color: var(--ink-3); margin: 4px 0 0; }
.drawer__close { width: 36px; height: 36px; flex: 0 0 auto; display: grid; place-items: center; appearance: none; -webkit-appearance: none; cursor: pointer; border: 1px solid var(--rule); background: var(--surface); border-radius: 10px; color: var(--ink-2); }
.drawer__close:hover { border-color: rgba(26, 22, 19, .24); }
.drawer__close svg { width: 18px; height: 18px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.drawer__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 24px; border-top: 1px solid var(--rule); }
.drawer__count { font-size: .85rem; color: var(--ink-3); }
.drawer__count b { color: var(--espresso); font-weight: 700; }
.drawer .sched { max-width: none; margin: 0; background: var(--surface); border-radius: 12px; padding: 16px; }
/* booking rules (slot length / buffer / notice — or covers / pacing for restaurants) */
.rules { margin-top: 16px; border-radius: 12px; background: var(--surface); padding: 4px 16px 10px; }
.rules__label { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); margin: 12px 0 2px; }
.rule { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 48px; padding: 8px 0; border-top: 1px solid var(--rowline); }
.rule:first-of-type { border-top: 0; }
.rule > span { font-size: .92rem; color: var(--ink); font-weight: 500; }
.rule__in { width: 116px; flex: 0 0 auto; text-align: right; font-family: var(--font-body); font-size: .9rem; color: var(--ink); background: var(--canvas); border: 1px solid var(--rule); border-radius: 9px; padding: 8px 12px; }
.rule__in:focus { outline: none; border-color: var(--coral-2); }

/* coral CTA (drawer Done + locked-view upgrade) */
.cta { display: inline-flex; align-items: center; justify-content: center; gap: 6px; appearance: none; -webkit-appearance: none; border: 0; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: .9rem; color: #fff; background: linear-gradient(180deg, var(--coral-1), var(--coral-2)); padding: 11px 22px; border-radius: var(--r-btn, 14px); box-shadow: 0 6px 16px -8px rgba(216, 73, 44, .6); transition: filter .15s var(--ease), transform .15s var(--ease); }
.cta:hover { filter: saturate(108%) brightness(1.02); transform: translateY(-1px); }
.cta:active { transform: translateY(0) scale(.97); }
.cta--sm { padding: 8px 16px; font-size: var(--home-small, .875rem); box-shadow: 0 4px 12px -6px rgba(216, 73, 44, .55); }
/* Distribution lead: status text + publish/unpublish action on one row */
.dist-lead { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.dist-lead .acc-lead { margin-bottom: 14px; }
.dist-publish { flex: 0 0 auto; }
.dist-publish { display: inline-flex; align-items: center; gap: 10px; }
.dist-publish button:disabled { cursor: wait; opacity: .68; }
.save-msg { min-width: 0; color: var(--ink-3); font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.is-saved .save-msg { color: var(--ok-ink); }
.is-error .save-msg { color: var(--coral-ink); }
.save-msg__link { color: var(--coral-ink); text-decoration: underline; text-underline-offset: 2px; }
.ob-msg { display: block; margin-top: 10px; font-family: var(--font-body); font-size: .82rem; line-height: 1.35; letter-spacing: 0; text-transform: none; white-space: normal; }
.locked > .ob-msg { max-width: 36ch; margin-left: auto; margin-right: auto; }
.found__act, .launchcta { flex-wrap: wrap; }
.found__act .ob-msg, .launchcta .ob-msg { flex: 0 0 100%; text-align: right; }
.manualstart { max-width: 980px; margin: clamp(8px, 2vh, 22px) 38px 0; }
.manualstart__head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.manualstart__head .locked__ic { margin: 0; flex: 0 0 auto; }
.manualstart__head h2 { margin: 0 0 4px; font-family: var(--font-body); font-size: clamp(1.6rem, 3vw, 2.35rem); letter-spacing: 0; color: var(--ink); }
.manualstart__head .found__lead { margin: 0; }
.manualstart__facts { margin-top: 0; }
.manualstart__act { justify-content: flex-end; }
@media (max-width: 720px) {
  .manualstart { margin-left: 18px; margin-right: 18px; }
  .manualstart__head { align-items: flex-start; }
  .manualstart__act { justify-content: stretch; }
  .manualstart__act .cta, .manualstart__act .ibtn { width: 100%; justify-content: center; }
}
.booksrc { display: flex; align-items: center; gap: 14px; padding: 14px 16px; margin-bottom: 16px; border-radius: 14px; background: var(--canvas); box-shadow: inset 0 0 0 1px var(--rule-soft); }
.booksrc.is-configured { background: #fff; box-shadow: inset 0 0 0 1px rgba(67, 111, 60, .16), var(--dash-shadow-sm); }
.booksrc__badge { flex: 0 0 auto; display: inline-flex; align-items: center; height: 26px; padding: 0 10px; border-radius: 999px; background: #fff2ee; color: var(--coral-ink); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.booksrc.is-configured .booksrc__badge { background: #eef7ec; color: #436f3c; }
.booksrc__copy { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.booksrc__copy b { font-family: var(--font-body); font-weight: 600; color: var(--ink); }
.booksrc__copy span { color: var(--ink-3); font-size: .86rem; line-height: 1.35; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.booksrc .ibtn { flex: 0 0 auto; }
@media (max-width: 720px) {
  .booksrc { align-items: stretch; flex-direction: column; }
  .booksrc__copy span { white-space: normal; }
  .booksrc .ibtn { justify-content: center; }
}
.vdot.is-draft { background: #cf9a2a; }

/* ---- bookings feed ---- */
.feed__label { font-family: var(--font-mono); font-size: var(--home-micro, .75rem); letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.feed__label svg { width: 14px; height: 14px; }
.feed { display: flex; flex-direction: column; gap: 12px; }
.feed__row { display: flex; align-items: center; gap: 14px; background: rgba(255, 255, 255, .8); border-radius: 13px; box-shadow: var(--dash-shadow-sm); padding: 13px 16px; transition: background .2s var(--ease), box-shadow .28s var(--ease), transform .28s var(--ease); }
.feed__row:hover { background: #fff; box-shadow: var(--dash-shadow); transform: translateY(-2px); }
.feed__d { flex: 0 0 auto; width: 42px; text-align: center; }
.feed__d b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--espresso); line-height: 1; }
.feed__d span { font-family: var(--font-mono); font-size: .56rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); }
.feed__m { flex: 1; min-width: 0; appearance: none; -webkit-appearance: none; border: 0; background: none; cursor: pointer; text-align: left; font: inherit; padding: 0; border-radius: 8px; transition: opacity .15s var(--ease); }
.feed__m:hover { opacity: .72; }
.feed__m b { display: block; font-size: 1rem; font-weight: 500; color: var(--ink); }
.feed__m span { font-size: .875rem; color: var(--ink-3); }
.feed__t { flex: 0 0 auto; font-family: var(--font-mono); font-size: var(--home-micro, .68rem); letter-spacing: .05em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; }
.feed__t.ok { background: var(--ok-tint); color: var(--ok-ink); }
.feed__t.wait { background: rgba(207, 154, 42, .14); color: #8a6410; }
/* inline approve / decline on a pending booking row */
.feed__act { display: flex; gap: 8px; flex: 0 0 auto; }
.feed__act form { margin: 0; }
.ibtn--ok { color: var(--ok-ink); border-color: rgba(93, 117, 68, .4); }
.ibtn--ok:hover { background: var(--ok-tint); border-color: rgba(93, 117, 68, .6); }
/* pending-approval call-to-action on the Bookings status line */
.vstatus--cta b { color: var(--coral-ink); font-weight: 600; }
.vdot.is-pending { background: #cf9a2a; }

/* ---- a quiet panel for grouped readouts (registry, policies) ---- */
.panel { background: var(--canvas); border-radius: 12px; padding: 14px 16px; }

/* ---- locked Pro view (teaser) ---- */
.locked { text-align: center; max-width: 440px; margin: 48px auto; }
.locked__badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: var(--home-badge, .6875rem); letter-spacing: .06em; text-transform: uppercase; color: var(--coral-ink); background: var(--pro-tint); padding: 5px 11px; border-radius: 999px; margin-bottom: 14px; }
.locked__badge--soon { color: var(--ink-3); background: #efeee8; }
.locked h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 1.9rem); letter-spacing: -.02em; color: var(--espresso); margin: 0 0 10px; }
.locked p { font-size: var(--home-body, 1rem); color: var(--ink-2); line-height: 1.5; margin: 0 auto 20px; max-width: 38ch; }

/* ---- responsive ---- */
@media (max-width: 720px) {
  .shell { padding: 18px 16px 80px; }
  .banner { border-radius: 14px; }
  .banner__head { margin: 22px 0 0 18px; }
  .bannergate { margin-right: 18px; min-width: 122px; padding-inline: 13px; }
  .tabs { padding-left: 18px; }
  .tab__label, .tab__pro, .tab__soon { display: none; }   /* icons-only tabs on narrow */
  .tab { padding: 14px 6px; justify-content: center; }
  .acc-item { padding: 0 18px; }
  .vtitle, .vstatus { margin-left: 18px; }
  .wk__head { margin-left: 18px; }
  .avail__modes { grid-template-columns: 1fr; }
  .drawer__sheet { width: 100vw; }
}
@media (max-width: 560px) {
  .row { flex-wrap: wrap; }
  /* the segmented control drops to its own full-width line so the label keeps
     room — the sliding thumb just re-thirds the wider track. */
  .row .seg { flex-basis: 100%; margin-top: 6px; }
}

/* =============================================================
   REWORKED — Distribution & Policies.
   Rows that DO something: copy an address, test the gateway, submit a
   listing, edit the actual policy text, accept a drafted one. Never a
   bare status word on the right.
   ============================================================= */
.acc-lead { display: flex; align-items: flex-start; gap: 9px; font-size: .9rem; color: var(--ink-3); line-height: 1.5; margin: 2px 0 18px; }
.acc-lead .vdot { margin-top: 6px; }
.acc-lead b { color: var(--ink-2); font-weight: 500; }

/* small inline action button shared by copy / edit / submit / draft */
.ibtn { appearance: none; -webkit-appearance: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; font-family: var(--font-body); font-size: .84rem; color: var(--ink-2); background: var(--surface); border: 1px solid var(--rule); border-radius: 10px; padding: 8px 14px; -webkit-tap-highlight-color: transparent; transition: border-color .15s var(--ease), background .15s var(--ease), transform var(--dur-press) var(--ease-press); }
.ibtn:hover { border-color: rgba(26, 22, 19, .24); }
.ibtn:active { transform: scale(.95); }
.ibtn svg { width: 14px; height: 14px; color: var(--ink-3); }
.ibtn--plat img { width: 15px; height: 15px; }
.ibtn--go { color: var(--coral-ink); border-color: rgba(216, 73, 44, .32); }
.ibtn--go:hover { background: var(--pro-tint); border-color: rgba(216, 73, 44, .5); }
.ibtn--draft { color: var(--coral-ink); background: var(--pro-tint); border-color: rgba(216, 73, 44, .3); }
.ibtn--draft:hover { background: #fde7e2; border-color: rgba(216, 73, 44, .46); }
.ibtn.is-done { color: var(--ok-ink); border-color: rgba(93, 117, 68, .4); background: var(--ok-tint); }

/* copyable address rows live in the quiet panel, tight */
.panel--flush { padding: 2px 16px; margin-bottom: 16px; }
.row--addr .row__sub { font-family: var(--font-mono); font-size: .78rem; color: var(--ink-3); letter-spacing: -.01em; }

/* try-it row */
.tryrow { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 0 0 18px; border-bottom: 1px solid var(--rowline); margin-bottom: 18px; }
.tryrow__l { font-size: .92rem; color: var(--ink-2); font-weight: 500; }
.tryrow__l span { display: block; font-size: .8rem; color: var(--ink-3); font-weight: 400; margin-top: 2px; }
.tryrow__b { display: flex; gap: 8px; flex-wrap: wrap; }

/* micro section label */
.mlabel { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 4px; }

/* status tag (real states, not a verb) */
.tag { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .05em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; flex: 0 0 auto; }
.tag.ok { background: var(--ok-tint); color: var(--ok-ink); }
.tag.wait { background: rgba(207, 154, 42, .14); color: #8a6410; }

/* policy rows — editable sentences persisted to the gateway policy */
.policy-form { display: block; }
.policy-form .acc-rows { margin-bottom: 14px; }
.row--pol { align-items: flex-start; }
.row--pol .row__k { flex: 1 1 420px; min-width: 0; }
.policy-in { display: block; width: 100%; min-height: 78px; resize: vertical; margin-top: 8px; font-family: var(--font-body); font-size: .9rem; line-height: 1.45; color: var(--ink-2); background: var(--surface); border: 1px solid var(--rowline); border-radius: 10px; padding: 10px 12px; box-shadow: inset 0 1px 2px rgba(26, 22, 19, .035); }
.policy-in::placeholder { color: var(--ink-3); }
.policy-in:focus { outline: 2px solid rgba(216, 73, 44, .42); outline-offset: 1px; border-color: rgba(216, 73, 44, .42); }
.policy-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.policy-form button:disabled { cursor: wait; opacity: .68; }

/* =============================================================
   WEEK SCHEDULE — the booking heartbeat
   The dated week, at a glance. Painted-open hours recede to a wash;
   real bookings sit on top as solid pills carrying the assistant
   that booked them + the booker's first name. Click a pill and a
   detail pane docks beside the grid (where cancel / propose new
   time will live). Scoped to .wk, additive: the painter (.sched)
   is untouched. Rendered client-side from booking-calendar.js.
   ============================================================= */
.wk { margin: 28px 0 8px; }
.wk__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px 20px; flex-wrap: wrap; margin: 0 0 14px 38px; }
.wk__titles { min-width: 0; }
.wk__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.35rem); line-height: 1.04; letter-spacing: -.02em; color: var(--espresso); margin: 0; }
.wk__sub { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin: 7px 0 0; font-size: .85rem; color: var(--ink-3); }
.wk__sub b { color: var(--ink-2); font-weight: 600; }
.wk__sub .vdot { background: var(--coral-2); }
.wk__sub i { font-style: normal; color: var(--rule); }
.wk__tools { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Schedule | Edit hours — the two modes of one grid */
.wk__modes { display: inline-flex; padding: 3px; gap: 2px; background: var(--canvas); border-radius: 12px; }
.wk__mode { appearance: none; -webkit-appearance: none; cursor: pointer; border: 0; background: none; font-family: var(--font-body); font-weight: 600; font-size: .82rem; color: var(--ink-3); padding: 7px 15px; border-radius: 9px; -webkit-tap-highlight-color: transparent; transition: background .25s var(--ease-out-quint), color .25s var(--ease), box-shadow .25s var(--ease-out-quint), transform var(--dur-press) var(--ease-press); }
.wk__mode.is-on { background: var(--surface); color: var(--espresso); box-shadow: var(--dash-shadow-sm); }
.wk__mode:active { transform: scale(.95); }
.wk__mode:not(.is-on):hover { color: var(--ink-2); }

/* week nav */
.wk__nav { display: inline-flex; align-items: center; gap: 5px; }
.wk__navbtn { width: 32px; height: 32px; display: grid; place-items: center; appearance: none; -webkit-appearance: none; cursor: pointer; border: 1px solid var(--rule); background: var(--surface); border-radius: 9px; color: var(--ink-2); -webkit-tap-highlight-color: transparent; transition: border-color .15s var(--ease), transform var(--dur-press) var(--ease-press); }
.wk__navbtn:hover { border-color: rgba(26, 22, 19, .24); }
.wk__navbtn:active { transform: scale(.9); }
.wk__navbtn svg { width: 15px; height: 15px; }
.wk__navnow { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); padding: 0 6px; }

/* body: grid on the left, detail pane docks on the right */
.wk__body { position: relative; background: var(--surface); border-radius: 16px; box-shadow: var(--dash-shadow); padding: 14px 16px 16px; overflow: hidden; }
.wk__scroll { max-height: 458px; overflow: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: rgba(56, 45, 36, .25) transparent; }
.wk__scroll::-webkit-scrollbar { width: 10px; height: 10px; }
.wk__scroll::-webkit-scrollbar-thumb { background: rgba(56, 45, 36, .22); border: 3px solid var(--surface); border-radius: 999px; background-clip: padding-box; }
.wk__scroll::-webkit-scrollbar-thumb:hover { background: rgba(56, 45, 36, .36); background-clip: padding-box; }
.wk__scroll::-webkit-scrollbar-track, .wk__scroll::-webkit-scrollbar-corner { background: transparent; }
.wk__grid { display: grid; grid-template-columns: 50px repeat(7, minmax(60px, 1fr)); gap: 4px; min-width: 540px; }
.wk__corner { position: sticky; top: 0; left: 0; z-index: 4; background: var(--surface); }
.wk__dayhead { position: sticky; top: 0; z-index: 3; background: var(--surface); padding: 4px 0 9px; text-align: center; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.wk__dayhead b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: 0; color: var(--ink-2); margin-top: 3px; }
.wk__dayhead.is-today { color: var(--coral-ink); }
.wk__dayhead.is-today b { color: var(--coral-ink); }
.wk__time { position: sticky; left: 0; z-index: 2; background: var(--surface); font-family: var(--font-mono); font-size: .6rem; color: var(--ink-3); display: flex; align-items: flex-start; justify-content: flex-end; padding: 1px 8px 0 0; }
.wk__cell { position: relative; height: 30px; border-radius: 6px; border: 1px solid var(--rule-soft); background: var(--canvas); }

/* open (offered, free) recedes to a wash so the bookings carry the eye */
.wk__cell.is-open { background: rgba(242, 94, 64, .11); border-color: rgba(242, 94, 64, .24); }
/* past time is dead; one-off blocked hours read as hatched */
.wk__cell.is-past { opacity: .42; }
.wk__cell.is-blocked { background-image: repeating-linear-gradient(135deg, transparent 0 4px, rgba(26, 22, 19, .055) 4px 5px); }

/* the now-line, drawn across the current half-hour row */
.wk__now { position: absolute; left: 50px; right: 0; height: 0; border-top: 2px solid var(--coral-2); z-index: 2; pointer-events: none; }
.wk__now::before { content: ""; position: absolute; left: -3px; top: -4px; width: 7px; height: 7px; border-radius: 50%; background: var(--coral-2); }

/* a booking — solid, occupied, named, with the assistant that booked it */
.wk__bk { position: absolute; inset: 0; display: flex; align-items: center; gap: 5px; padding: 0 6px; border-radius: 6px; cursor: pointer; background: var(--espresso); box-shadow: var(--dash-shadow-sm); z-index: 1; transition: transform .18s var(--ease), box-shadow .22s var(--ease); }
.wk__bk:hover { transform: translateY(-1px); box-shadow: var(--dash-shadow-lift); }
.wk__bk:active { transform: translateY(0) scale(.97); }
.wk__bk:focus-visible { outline: 2px solid var(--coral-2); outline-offset: 2px; }
.wk__ai { width: 15px; height: 15px; flex: 0 0 auto; border-radius: 4px; background: #fff; display: grid; place-items: center; box-shadow: 0 1px 2px rgba(26, 22, 19, .18); }
.wk__ai img { width: 11px; height: 11px; display: block; }
.wk__who { font-family: var(--font-mono); font-size: .66rem; font-weight: 500; letter-spacing: -.01em; color: #f3ebe1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* pending / awaiting approval — a request, in warm amber */
.wk__bk.is-pending { background: #efe0bd; box-shadow: inset 0 0 0 1px rgba(207, 154, 42, .55), var(--dash-shadow-sm); }
.wk__bk.is-pending .wk__who { color: #73510c; }
.wk__bk.is-pending .wk__ai { box-shadow: 0 1px 2px rgba(115, 81, 12, .22); }
/* the booking whose detail is open */
.wk__bk.is-selected { box-shadow: 0 0 0 2px var(--coral-2), var(--dash-shadow-lift); }
.wk__bk.is-selected.is-pending { box-shadow: 0 0 0 2px var(--coral-2), inset 0 0 0 1px rgba(207, 154, 42, .55); }
/* a freshly-arrived booking (live heartbeat) slides + glows in, then settles */
.wk__bk--new { animation: wk-bk-in .55s cubic-bezier(.22, 1, .36, 1) backwards; }
@keyframes wk-bk-in {
  0%   { opacity: 0; transform: translateY(10px) scale(.9); box-shadow: 0 0 0 3px var(--coral-2); }
  55%  { opacity: 1; transform: translateY(0) scale(1.05); box-shadow: 0 0 0 3px rgba(242, 94, 64, .55), var(--dash-shadow-lift); }
  100% { opacity: 1; transform: none; box-shadow: var(--dash-shadow-sm); }
}

/* ---- the docked detail pane (sibling, not a modal) ---- */
.wk__detail { position: absolute; top: 0; right: 0; bottom: 0; width: min(366px, 86%); display: flex; flex-direction: column; background: var(--surface); border-left: 1px solid var(--rule); box-shadow: -26px 0 64px -36px rgba(56, 45, 36, .5); transform: translateX(calc(100% + 30px)); transition: transform .32s var(--ease); z-index: 5; }
.wk__body.is-detail .wk__detail { transform: none; }
@media (prefers-reduced-motion: reduce) { .wk__bk, .wk__detail { transition: none; } .wk__bk:hover { transform: none; } .wk__bk--new { animation: none; } }
.wkd__head { display: flex; align-items: flex-start; gap: 12px; padding: 18px 18px 14px; border-bottom: 1px solid var(--rule); }
.wkd__id { min-width: 0; flex: 1; }
.wkd__name { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -.01em; color: var(--espresso); margin: 0; line-height: 1.1; }
.wkd__chip { display: inline-flex; align-items: center; gap: 6px; margin-top: 7px; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.wkd__chip.ok { background: var(--ok-tint); color: var(--ok-ink); }
.wkd__chip.wait { background: rgba(207, 154, 42, .14); color: #8a6410; }
.wkd__chip .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.wkd__close { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; appearance: none; -webkit-appearance: none; cursor: pointer; border: 1px solid var(--rule); background: var(--surface); border-radius: 10px; color: var(--ink-2); transition: border-color .15s var(--ease); }
.wkd__close:hover { border-color: rgba(26, 22, 19, .24); }
.wkd__close svg { width: 17px; height: 17px; }
.wkd__body { flex: 1; overflow-y: auto; padding: 16px 18px; }
/* how it was booked — the assistant, up front */
.wkd__via { display: flex; align-items: center; gap: 10px; background: var(--canvas); border-radius: 12px; padding: 11px 13px; margin-bottom: 16px; }
.wkd__via-ic { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 8px; background: var(--surface); display: grid; place-items: center; box-shadow: var(--dash-shadow-sm); }
.wkd__via-ic img { width: 18px; height: 18px; display: block; }
.wkd__via-tx b { display: block; font-size: .86rem; font-weight: 600; color: var(--ink); }
.wkd__via-tx span { font-family: var(--font-mono); font-size: .64rem; color: var(--ink-3); }
/* what + when */
.wkd__sec { margin: 0 0 16px; }
.wkd__lbl { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 8px; }
.wkd__what { display: flex; align-items: center; gap: 13px; }
.wkd__when { flex: 0 0 auto; width: 46px; text-align: center; background: var(--canvas); border-radius: 10px; padding: 7px 0; }
.wkd__when b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--espresso); line-height: 1; }
.wkd__when span { font-family: var(--font-mono); font-size: .54rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); }
.wkd__what-tx b { display: block; font-size: .96rem; font-weight: 500; color: var(--ink); }
.wkd__what-tx span { font-size: .82rem; color: var(--ink-3); }
/* contact lines */
.wkd__contact { display: flex; flex-direction: column; gap: 1px; }
.wkd__line { display: flex; align-items: center; gap: 10px; min-height: 38px; padding: 4px 0; border-top: 1px solid var(--rowline); }
.wkd__line:first-child { border-top: 0; }
.wkd__line svg { width: 15px; height: 15px; color: var(--ink-3); flex: 0 0 auto; }
.wkd__line span { font-family: var(--font-mono); font-size: .78rem; color: var(--ink-2); letter-spacing: -.01em; word-break: break-all; }
/* the activity trail (built from the booking's notifications) */
.wkd__tl { list-style: none; margin: 0; padding: 2px 0 0; }
.wkd__ev { position: relative; padding: 0 0 14px 22px; }
.wkd__ev::before { content: ""; position: absolute; left: 3px; top: 2px; width: 9px; height: 9px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px var(--ok-tint); z-index: 1; }
.wkd__ev::after { content: ""; position: absolute; left: 7px; top: 11px; bottom: -3px; width: 1px; background: var(--rule); }
.wkd__ev:last-child::after { display: none; }
.wkd__ev.is-queued::before { background: var(--ink-3); box-shadow: 0 0 0 3px rgba(156, 149, 138, .18); }
.wkd__ev.is-failed::before { background: #b73c27; box-shadow: 0 0 0 3px rgba(183, 60, 39, .16); }
.wkd__ev b { display: block; font-size: .82rem; color: var(--ink); font-weight: 500; }
.wkd__ev span { font-family: var(--font-mono); font-size: .6rem; color: var(--ink-3); letter-spacing: .02em; }
/* actions — propose / cancel; honest about the outward email */
.wkd__foot { padding: 13px 18px 16px; border-top: 1px solid var(--rule); }
.wkd__note { display: flex; align-items: center; gap: 7px; font-size: .72rem; color: var(--ink-3); margin: 0 0 10px; }
.wkd__note svg { width: 13px; height: 13px; flex: 0 0 auto; }
.wkd__acts { display: flex; gap: 9px; }
.wkd__act { flex: 1; appearance: none; -webkit-appearance: none; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: .85rem; padding: 11px 12px; border-radius: 12px; -webkit-tap-highlight-color: transparent; transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease), transform var(--dur-press) var(--ease-press); }
.wkd__act:active { transform: scale(.97); }
.wkd__act--primary { border: 0; color: #fff; background: linear-gradient(180deg, var(--coral-1), var(--coral-2)); box-shadow: var(--shadow-btn); }
.wkd__act--primary:hover { filter: brightness(1.03); }
.wkd__act--ghost { border: 1px solid var(--rule); background: var(--surface); color: var(--ink-2); }
.wkd__act--ghost:hover { border-color: rgba(216, 73, 44, .42); color: var(--coral-ink); background: var(--pro-tint); }
.wkd__act--decline { flex: 0 0 auto; min-width: 96px; border: 1px solid var(--rule); background: var(--surface); color: var(--ink-2); }
.wkd__act--decline:hover { border-color: rgba(216, 73, 44, .42); color: var(--coral-ink); background: var(--pro-tint); }
/* a declined booking fades out of the grid */
.wk__bk--leaving { animation: wk-bk-out .26s ease-in both; pointer-events: none; }
@keyframes wk-bk-out { to { opacity: 0; transform: scale(.82); } }

@media (max-width: 720px) {
  .wk__detail { width: 100%; border-left: 0; }
  .wk__body { padding: 12px; }
}

/* ---- Edit hours: the SAME grid, flipped to paint the recurring availability rule ---- */
.wk__dayhead { appearance: none; -webkit-appearance: none; border: 0; width: 100%; }
.wk__editbar, .wk__rules { display: none; }
.wk.is-editing .wk__editbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.wk__presets { display: flex; gap: 6px; flex-wrap: wrap; }
.wk__preset { appearance: none; -webkit-appearance: none; cursor: pointer; border: 1px solid var(--rule); background: var(--canvas); color: var(--ink-2); font-family: var(--font-mono); font-size: .64rem; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; transition: border-color .15s var(--ease), color .15s var(--ease); }
.wk__preset:hover { border-color: var(--coral-2); color: var(--coral-ink); }
.wk__count { font-family: var(--font-mono); font-size: .82rem; color: var(--ink-3); white-space: nowrap; }
.wk__count b { color: var(--coral-ink); font-weight: 600; }
.wk.is-editing .wk__rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.wk__rule { display: flex; flex-direction: column; gap: 6px; }
.wk__rule > span { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); }
.wk__rin { width: 100%; appearance: none; -webkit-appearance: none; font-family: var(--font-body); font-size: .9rem; color: var(--ink); background: var(--canvas); border: 1px solid var(--rule); border-radius: 9px; padding: 9px 12px; }
.wk__rin:focus { outline: 0; border-color: var(--coral-2); box-shadow: 0 0 0 3px rgba(242, 94, 64, .15); }
.wk__save { align-self: end; border: 0; border-radius: 999px; background: var(--ink); color: #fff; font: 700 .78rem var(--font-body); padding: 11px 16px; cursor: pointer; }
.wk__save:disabled { opacity: .55; cursor: wait; }
.wk__save-msg { align-self: end; min-height: 18px; color: var(--ink-3); font-size: .78rem; }
/* in edit mode bookings, now-line and week-nav step back; dates fade to weekday; cells paint solid coral */
.wk.is-editing .wk__bk, .wk.is-editing .wk__now, .wk.is-editing .wk__nav { display: none; }
.wk.is-editing .wk__dayhead b { display: none; }
.wk.is-editing .wk__dayhead, .wk.is-editing .wk__dayhead.is-today { color: var(--ink-3); cursor: pointer; }
.wk.is-editing .wk__grid { touch-action: none; user-select: none; }
.wk.is-editing .wk__cell { cursor: pointer; }
.wk.is-editing .wk__cell.is-past { opacity: 1; }
.wk.is-editing .wk__cell:hover { border-color: var(--coral-2); }
.wk.is-editing .wk__cell.is-open { background: var(--coral-2); border-color: var(--coral-2); }
@media (max-width: 560px) { .wk.is-editing .wk__rules { grid-template-columns: 1fr; } }


/* ---- synced (Cal.com / Google live mirror) chrome ---- */
.wk__sync { display: none; align-items: center; gap: 10px; flex-wrap: wrap; }
.wk.is-synced .wk__sync { display: inline-flex; }
.wk.is-synced .wk__modes { display: none; }
.wk__synced { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .03em; color: var(--ok-ink); background: var(--ok-tint); padding: 6px 11px; border-radius: 999px; }
.wk__synced-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(93, 117, 68, .18); }
.wk__manage { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: .8rem; color: var(--ink-2); border: 1px solid var(--rule); border-radius: 10px; padding: 7px 12px; text-decoration: none; transition: border-color .15s var(--ease), color .15s var(--ease); }
.wk__manage:hover { border-color: rgba(26, 22, 19, .24); color: var(--ink); }
.wk__manage svg { width: 13px; height: 13px; }
.wk__sub .vdot--ok { background: var(--ok); }

/* ---- Booking source — a setting card matching the others; shows what's live vs connectable ---- */
.bsrc:hover { transform: none; }
.src__top { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; padding: 22px 0 16px; }
.src__title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -.01em; color: #544d45; }
.src__list { display: flex; flex-direction: column; gap: 6px; padding: 6px; margin-bottom: 22px; background: rgba(26, 22, 19, .05); border-radius: 16px; }
.src__opt { display: flex; align-items: center; gap: 13px; width: 100%; text-align: left; appearance: none; -webkit-appearance: none; cursor: pointer; border: 0; background: rgba(255, 255, 255, .4); border-radius: 12px; padding: 13px 15px; -webkit-tap-highlight-color: transparent; transition: background .2s var(--ease), box-shadow .3s var(--ease-out-quint), transform var(--dur-press) var(--ease-press); }
.src__opt:hover { background: rgba(255, 255, 255, .68); }
.src__opt:active { transform: scale(.99); }
.src__opt.is-active { background: #fff; box-shadow: var(--dash-shadow-sm); }
.src__opt.is-disabled { cursor: default; opacity: .62; }
.src__opt.is-disabled:hover { background: rgba(255, 255, 255, .4); }
.src__opt.is-disabled:active { transform: none; }
.src__ic { width: 36px; height: 36px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 9px; background: rgba(255, 255, 255, .55); }
.src__opt.is-active .src__ic { background: var(--canvas); }
.src__ic img { width: 19px; height: 19px; display: block; }
.src__tx { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.src__tx b { font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: var(--ink); }
.src__tx em { font-style: normal; font-size: .82rem; color: var(--ink-3); }
.src__state { flex: 0 0 auto; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .05em; text-transform: uppercase; }
.src__state--on { display: inline-flex; align-items: center; gap: 6px; color: var(--ok-ink); }
.src__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(93, 117, 68, .18); }
.src__state--switch { color: var(--ink-2); }
.src__state--connect { color: var(--coral-ink); }
.src__state--soon { color: var(--ink-3); }
.src__warn { margin: -10px 8px 18px; color: var(--coral-ink); font-size: .78rem; line-height: 1.35; }
.src__warn[hidden] { display: none; }
.account-secret__key { display: block; overflow-x: auto; max-width: 100%; padding: 12px 14px; border-radius: 12px; background: rgba(26, 22, 19, .06); color: var(--espresso); font-family: var(--font-mono); font-size: .86rem; white-space: nowrap; }

/* ---- list sections as grey wells of white-glass cards; opacity = status (white = set / live, 40% = needs you) ---- */
.acc--well .rows, .acc--well .acc-rows { background: rgba(26, 22, 19, .06); border-top: 0; border-radius: 16px; padding: 6px; display: flex; flex-direction: column; gap: 6px; }
.acc--well .rows .row, .acc--well .acc-rows .row { border-top: 0; border-radius: 12px; min-height: 0; padding: 12px 15px; margin: 0; background: #fff; box-shadow: var(--dash-shadow-sm); }
/* intake: a field switched Off recedes to 40% */
.acc--well .row:has(.seg [data-val="off"].is-on) { background: rgba(255, 255, 255, .42); box-shadow: none; }
/* policies: "not set" (drafted, not accepted) recedes to 40%; accepted goes full white */
.acc--well .acc-rows .row--pol { background: rgba(255, 255, 255, .42); box-shadow: none; }
.acc--well .acc-rows .row--pol:not(:has(.muted)) { background: #fff; box-shadow: var(--dash-shadow-sm); }
/* directories: awaiting submit / draft recedes to 40%; listed goes full white */
.acc--well .acc-rows .row--dir { background: rgba(255, 255, 255, .42); box-shadow: none; }
.acc--well .acc-rows .row--dir:has(.tag.ok) { background: #fff; box-shadow: var(--dash-shadow-sm); }

/* ---- custom booking requirements (intake builder) ---- */
.req-add { padding: 10px 0 2px; }
.req-suggest { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.req-suggest__lab { font-family: var(--font-mono); font-size: var(--home-micro, .7rem); letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.req-chip { appearance: none; -webkit-appearance: none; cursor: pointer; font-family: var(--font-body); font-size: .8rem; color: var(--coral-ink); background: var(--pro-tint); border: 0; border-radius: 999px; padding: 6px 12px; -webkit-tap-highlight-color: transparent; transition: background .15s var(--ease), transform var(--dur-press) var(--ease-press); }
.req-chip:hover { background: #fde7e2; }
.req-chip:active { transform: scale(.94); }
.req-addrow { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; appearance: none; -webkit-appearance: none; cursor: pointer; background: none; border: 1.5px dashed rgba(216, 73, 44, .35); border-radius: 12px; padding: 14px 16px; color: var(--coral-ink); font-family: var(--font-body); font-weight: 600; font-size: var(--home-small, .9rem); -webkit-tap-highlight-color: transparent; transition: border-color .15s var(--ease), background .15s var(--ease), transform var(--dur-press) var(--ease-press); }
.req-addrow:hover { border-color: rgba(216, 73, 44, .55); background: var(--pro-tint); }
.req-addrow:active { transform: scale(.99); }
.intake-form { display: block; }
.intake-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; padding-top: 14px; }
.intake-form button[disabled] { cursor: progress; opacity: .7; }
.row--req .seg { margin-left: auto; }

/* one requirement: editor card -> saved summary row */
.req { margin-top: 12px; }
.req.is-saved { margin-top: 0; }
.req__edit { background: var(--canvas); border-radius: 14px; padding: 16px 18px; }
.req.is-error .req__edit { box-shadow: inset 0 0 0 1.5px rgba(216, 73, 44, .45); }
.req__row1 { display: flex; align-items: center; gap: 12px; }
.req__name { flex: 1; min-width: 0; font-family: var(--font-body); font-weight: 500; font-size: 1.02rem; color: var(--ink); background: var(--surface); border: 0; border-radius: 10px; padding: 11px 13px; box-shadow: 0 1px 2px rgba(26, 22, 19, .05); }
.req__name::placeholder { color: var(--ink-3); font-weight: 400; }
.req__name:focus { outline: 2px solid var(--coral-2); outline-offset: 1px; }
.req__typewrap { flex: 0 0 auto; }
.req__type { appearance: none; -webkit-appearance: none; font-family: var(--font-body); font-size: .85rem; color: var(--ink-2); background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239c958a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center; border: 0; border-radius: 10px; padding: 10px 32px 10px 13px; cursor: pointer; box-shadow: 0 1px 2px rgba(26, 22, 19, .05); }
.req__choices { display: block; width: 100%; margin-top: 11px; font-family: var(--font-body); font-size: .9rem; color: var(--ink); background: var(--surface); border: 0; border-radius: 10px; padding: 11px 13px; box-shadow: 0 1px 2px rgba(26, 22, 19, .05); }
.req__choices::placeholder { color: var(--ink-3); }
.req__choices[hidden] { display: none; }
.req__row2 { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.req__actions { display: flex; align-items: center; gap: 6px; }
.req__cancel { appearance: none; -webkit-appearance: none; cursor: pointer; border: 0; background: none; color: var(--ink-3); font-family: var(--font-body); font-size: .85rem; padding: 9px 12px; border-radius: 9px; transition: color .15s var(--ease); }
.req__cancel:hover { color: var(--ink-2); }
.req__save { appearance: none; -webkit-appearance: none; cursor: pointer; border: 0; color: #fff; background: linear-gradient(180deg, var(--coral-1), var(--coral-2)); font-family: var(--font-body); font-weight: 600; font-size: .85rem; padding: 9px 20px; border-radius: 10px; box-shadow: 0 4px 12px -6px rgba(216, 73, 44, .6); -webkit-tap-highlight-color: transparent; transition: filter .15s var(--ease), transform var(--dur-press) var(--ease-press); }
.req__save:hover { filter: brightness(1.04) saturate(106%); }
.req__save:active { transform: scale(.96); }
.req__saved { display: none; }
.req.is-saved .req__edit { display: none; }
.req.is-saved .req__saved { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 2px; border-top: 1px solid var(--rowline); }
.req__sum { min-width: 0; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.req__sum-name { font-family: var(--font-body); font-weight: 500; font-size: 1rem; color: var(--ink); }
.req__sum-meta { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-3); }
.req__saved-actions { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.req__editbtn { appearance: none; -webkit-appearance: none; cursor: pointer; border: 0; background: none; color: var(--coral-ink); font-family: var(--font-body); font-weight: 500; font-size: .85rem; padding: 6px 10px; border-radius: 8px; transition: background .15s var(--ease); }
.req__editbtn:hover { background: var(--pro-tint); }
.req__del { appearance: none; -webkit-appearance: none; cursor: pointer; border: 0; background: none; color: var(--ink-3); font-size: 1.2rem; line-height: 1; padding: 4px 8px; border-radius: 7px; transition: color .15s var(--ease), background .15s var(--ease); }
.req__del:hover { color: var(--coral-ink); background: var(--pro-tint); }

/* =============================================================
   REDUCED MOTION — honor the OS preference across the dashboard.
   State still changes (accordions open, the segmented thumb lands, the
   toggle reads as a minus, presses register) — it just arrives instantly
   instead of easing. Targeted blocks above stay; this is the safety net.
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .dash *, .dash *::before, .dash *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- sticky header: condensed tabs-only bar that slides in once the banner scrolls past ---- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 80; transform: translateY(-110%); transition: transform .32s var(--ease-disclose, var(--ease)); background: var(--canvas); box-shadow: 0 1px 0 var(--rule), 0 10px 30px -20px rgba(56, 45, 36, .4); }
.navbar.is-stuck { transform: none; }
.navbar__inner { max-width: 1040px; margin: 0 auto; padding: 9px 24px; display: flex; align-items: center; gap: 18px; }
.navbar__biz { display: inline-flex; align-items: center; gap: 10px; min-width: 0; flex: 0 1 auto; }
.navbar__biz img { height: 22px; width: auto; display: block; flex: 0 0 auto; }
.navbar__biz b { font-family: var(--font-display); font-weight: 800; font-size: .98rem; letter-spacing: -.01em; color: var(--espresso); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.navbar__tabs { display: flex; align-items: center; gap: 2px; margin-left: auto; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.navbar__tabs::-webkit-scrollbar { display: none; }
.navbar__tab { display: inline-flex; align-items: center; gap: 6px; appearance: none; -webkit-appearance: none; cursor: pointer; border: 0; background: none; font-family: var(--font-body); font-weight: 600; font-size: .82rem; color: var(--ink-3); padding: 7px 12px; border-radius: 9px; white-space: nowrap; transition: background .15s var(--ease), color .15s var(--ease); }
.navbar__tab svg { width: 15px; height: 15px; flex: 0 0 auto; }
.navbar__tab:hover { color: var(--ink-2); }
.navbar__tab.is-on { background: var(--surface); color: var(--espresso); box-shadow: var(--dash-shadow-sm); }
.navbar__lock { font-family: var(--font-mono); font-size: .54rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--coral-ink); background: var(--pro-tint); padding: 2px 6px; border-radius: 999px; }
.navbar__lock--soon { color: var(--ink-3); background: #efeee8; }
@media (max-width: 720px) { .navbar__inner { padding: 8px 16px; gap: 12px; } .navbar__biz b { display: none; } .navbar__tab span { display: none; } .navbar__tab { padding: 7px 9px; } }
@media (prefers-reduced-motion: reduce) { .navbar { transition: none; } }

/* ---- Cal.com connect (provider button + branded drawer) ---- */
.prov__connect { appearance: none; -webkit-appearance: none; cursor: pointer; border: 0; background: var(--pro-tint); color: var(--coral-ink); font-family: var(--font-body); font-weight: 600; font-size: .82rem; padding: 8px 16px; border-radius: 999px; transition: background .15s var(--ease); }
.prov__connect:hover { background: #fde7e2; }
.prov.is-on .prov__connect { background: rgba(26, 22, 19, .05); color: var(--ink-2); }
.cx__brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.cx__logo { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: #fff; box-shadow: 0 2px 10px rgba(26, 22, 19, .08); flex: 0 0 auto; }
.cx__logo img { width: 26px; height: 26px; object-fit: contain; }
.cx__field { display: block; margin-bottom: 16px; }
.cx__lbl { display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px; }
.cx__in { width: 100%; box-sizing: border-box; font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--surface); border: 1px solid var(--rule); border-radius: 11px; padding: 12px 14px; transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.cx__in::placeholder { color: var(--ink-3); }
.cx__in:focus { outline: none; border-color: var(--coral-2); box-shadow: 0 0 0 3px var(--pro-tint); }
.cx__hint { font-family: var(--font-body); font-size: .82rem; line-height: 1.5; color: var(--ink-3); margin: 2px 0 0; }
.cx__hint b { color: var(--ink-2); font-weight: 600; }
.cx__err { font-family: var(--font-body); font-size: .85rem; color: var(--coral-ink); background: var(--pro-tint); border-radius: 10px; padding: 10px 13px; margin-top: 14px; }
.cx__ok { display: flex; align-items: center; gap: 9px; font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.cx__ok-dot { width: 9px; height: 9px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 4px rgba(22, 163, 74, .16); flex: 0 0 auto; }
.cx__meta { font-family: var(--font-body); font-size: .9rem; line-height: 1.55; color: var(--ink-2); margin: 14px 0 0; }
.cx__status { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); }
.cx__disconnect { color: var(--ink-2); }

/* Cal.com connect — centered, logo-forward hero */
.cx__head { justify-content: flex-end; border-bottom: 0; padding-bottom: 4px; min-height: 0; }
.cx__body { text-align: center; }
.cx__pane[hidden], .cx__manual[hidden] { display: none; }
.cx__hero { display: flex; flex-direction: column; align-items: center; max-width: 372px; margin: 0 auto; padding-bottom: 10px; }
.cx__logo--hero { width: 74px; height: 74px; border-radius: 21px; box-shadow: 0 10px 30px rgba(26, 22, 19, .13), 0 2px 6px rgba(26, 22, 19, .06); margin-bottom: 22px; }
.cx__logo--hero img { width: 42px; height: 42px; }
.cx__logo--hero.is-ok { box-shadow: 0 10px 30px rgba(22, 163, 74, .2), 0 0 0 1px rgba(22, 163, 74, .18); }
.cx__title { font-family: var(--font-body); font-size: 1.52rem; font-weight: 600; letter-spacing: -.015em; color: var(--ink); margin: 0 0 9px; }
.cx__sub { font-family: var(--font-body); font-size: .98rem; line-height: 1.5; color: var(--ink-2); margin: 0 0 22px; max-width: 330px; }
.cx__points--center { align-self: stretch; text-align: left; margin: 0 0 24px; padding: 17px 19px; background: rgba(26, 22, 19, .028); border-radius: 15px; }
.cx__cta { display: inline-flex; align-items: center; justify-content: center; gap: 11px; width: 100%; box-sizing: border-box; padding: 15px 20px; font-family: var(--font-body); font-weight: 600; font-size: 1.04rem; color: #fff; border: 0; border-radius: 13px; cursor: pointer; transition: transform .15s var(--ease), box-shadow .2s var(--ease), background-color .15s var(--ease); }
.cx__cta:hover { transform: translateY(-1px); }
.cx__cta:active { transform: translateY(0); }
.cx__cta:disabled { opacity: .5; cursor: default; transform: none; box-shadow: none; }
.cx__cta--calcom { background: #18130d; box-shadow: 0 7px 20px rgba(24, 19, 13, .28); }
.cx__cta--calcom:hover { box-shadow: 0 11px 26px rgba(24, 19, 13, .34); }
.cx__cta--google { background: #1a73e8; box-shadow: 0 7px 20px rgba(26, 115, 232, .3); }
.cx__cta--google:hover { background: #1b6fe0; box-shadow: 0 11px 26px rgba(26, 115, 232, .36); }
.cx__cta-ic { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 7px; background: #fff; flex: 0 0 auto; }
.cx__cta-ic img { width: 16px; height: 16px; object-fit: contain; }
.cx__alt { margin-top: 15px; background: none; border: 0; padding: 4px; font-family: var(--font-body); font-size: .9rem; color: var(--ink-3); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; transition: color .15s var(--ease); }
.cx__alt:hover { color: var(--ink); }
.cx__status { display: block; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); margin-top: 12px; min-height: 1.1em; }
.cx__status:empty { margin-top: 0; min-height: 0; }
.cx__manual { align-self: stretch; text-align: left; margin-top: 22px; padding-top: 4px; }
.cx__manual-rule { display: flex; align-items: center; gap: 13px; margin: 0 0 18px; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.cx__manual-rule span { flex: 0 0 auto; }
.cx__manual-rule::before, .cx__manual-rule::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.cx__getlink { display: inline-block; margin: -8px 0 16px; font-family: var(--font-body); font-size: .85rem; font-weight: 500; color: var(--coral-ink); text-decoration: none; }
.cx__getlink:hover { text-decoration: underline; }
.cx__manual-go { margin-top: 6px; }

/* ---- Upgrade modal: $40 -> $99 Pro, overlaid from a Pro tab ---- */
.upm { position: fixed; inset: 0; z-index: 100; display: none; }
.upm.is-open { display: block; }
.upm__scrim { position: absolute; inset: 0; background: rgba(26, 22, 19, .5); opacity: 0; transition: opacity .3s var(--ease); }
.upm.is-open .upm__scrim { opacity: 1; }
.upm__panel { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -46%); opacity: 0; transition: transform .36s var(--ease-out-quint, var(--ease)), opacity .28s var(--ease); width: min(580px, 94vw); max-height: 92vh; overflow-y: auto; background: var(--canvas); border-radius: 24px; padding: 30px; box-shadow: var(--shadow-pop, 0 40px 90px -30px rgba(0, 0, 0, .5)); }
.upm.is-open .upm__panel { transform: translate(-50%, -50%); opacity: 1; }
@media (prefers-reduced-motion: reduce) { .upm__scrim, .upm__panel { transition: none; } }
.upm__close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; display: grid; place-items: center; appearance: none; -webkit-appearance: none; cursor: pointer; border: 1px solid var(--rule); background: var(--surface); border-radius: 10px; color: var(--ink-2); transition: border-color .15s var(--ease); }
.upm__close:hover { border-color: rgba(26, 22, 19, .24); }
.upm__close svg { width: 18px; height: 18px; }
.upm__eyebrow { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--coral-ink); margin: 2px 0 10px; }
.upm__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.1rem); letter-spacing: -.02em; line-height: 1.06; color: var(--espresso); margin: 0; }
.upm__pitch { font-size: .95rem; color: var(--ink-2); line-height: 1.5; margin: 12px 0 20px; max-width: 46ch; }
.upm__caps { display: flex; flex-direction: column; gap: 6px; padding: 6px; background: rgba(26, 22, 19, .05); border-radius: 16px; margin-bottom: 18px; }
.upm__cap { display: flex; align-items: flex-start; gap: 13px; background: #fff; border-radius: 12px; padding: 14px 16px; box-shadow: var(--dash-shadow-sm); }
.upm__cap.is-lead { box-shadow: 0 0 0 2px var(--coral-2), var(--dash-shadow-sm); }
.upm__cap-ic { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 9px; background: var(--canvas); color: var(--espresso); }
.upm__cap.is-lead .upm__cap-ic { background: var(--coral-2); color: #fff; }
.upm__cap-ic svg { width: 18px; height: 18px; }
.upm__cap-tx { min-width: 0; }
.upm__cap-tx b { display: block; font-family: var(--font-body); font-weight: 600; font-size: .98rem; color: var(--ink); margin-bottom: 5px; }
.upm__cap-tx ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.upm__cap-tx li { font-size: .82rem; color: var(--ink-3); line-height: 1.4; padding-left: 15px; position: relative; }
.upm__cap-tx li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--coral-2); opacity: .55; }
.upm__buy { display: flex; flex-direction: column; gap: 14px; }
.upm__price { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.upm__toggle { display: inline-flex; gap: 2px; padding: 3px; background: var(--surface); border-radius: 11px; box-shadow: var(--dash-shadow-sm); }
.upm__toggle button { appearance: none; -webkit-appearance: none; cursor: pointer; border: 0; background: none; font-family: var(--font-body); font-weight: 600; font-size: .8rem; color: var(--ink-3); padding: 7px 13px; border-radius: 8px; display: inline-flex; align-items: center; gap: 5px; transition: background .15s var(--ease), color .15s var(--ease); }
.upm__toggle button.is-on { background: var(--canvas); color: var(--espresso); }
.upm__toggle button span { font-family: var(--font-mono); font-size: .58rem; color: var(--ok-ink); }
.upm__amt { display: inline-flex; align-items: baseline; gap: 4px; }
.upm__amt-n { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; letter-spacing: -.01em; color: var(--espresso); }
.upm__amt-p { font-size: .9rem; color: var(--ink-3); }
.upm__amt-note { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-3); margin-left: 4px; }
.upm__cta { display: block; text-align: center; appearance: none; -webkit-appearance: none; cursor: pointer; border: 0; font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: #fff; background: linear-gradient(180deg, var(--coral-1), var(--coral-2)); box-shadow: var(--shadow-btn); border-radius: 14px; padding: 14px; text-decoration: none; transition: filter .15s var(--ease); }
.upm__cta:hover { filter: brightness(1.04); }
.upm__foot { text-align: center; font-size: .76rem; color: var(--ink-3); margin: 0; }
@media (max-width: 560px) { .upm__panel { padding: 22px 18px; border-radius: 20px; } .upm__price { justify-content: center; } }

/* ---- Google Calendar connect (panel internals) ---- */
.cx__points { margin: 0 0 20px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cx__points li { position: relative; padding-left: 27px; font-family: var(--font-body); font-size: .92rem; line-height: 1.5; color: var(--ink-2); }
.cx__points li::before { content: ""; position: absolute; left: 0; top: 4px; width: 17px; height: 17px; border-radius: 50%; background: var(--pro-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23d8492c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center; }
.gc__btn { display: inline-flex; align-items: center; justify-content: center; gap: 11px; width: 100%; appearance: none; -webkit-appearance: none; cursor: pointer; background: #fff; border: 1px solid var(--rule); border-radius: 12px; padding: 13px 18px; font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: var(--ink); box-shadow: 0 1px 2px rgba(26, 22, 19, .05); transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.gc__btn:hover { border-color: var(--ink-3); box-shadow: 0 3px 12px rgba(26, 22, 19, .09); }
.gc__btn img { width: 20px; height: 20px; }
.gc__cals { display: flex; flex-direction: column; gap: 8px; }
.gc__cal { display: flex; align-items: center; gap: 11px; width: 100%; text-align: left; appearance: none; -webkit-appearance: none; cursor: pointer; background: var(--surface); border: 1px solid var(--rule); border-radius: 11px; padding: 12px 14px; font-family: var(--font-body); font-size: .92rem; color: var(--ink); transition: border-color .15s var(--ease), background .15s var(--ease); }
.gc__cal:hover { border-color: var(--ink-3); }
.gc__cal.is-on { border-color: var(--coral-2); background: var(--pro-tint); }
.gc__cal-radio { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--ink-3); flex: 0 0 auto; }
.gc__cal.is-on .gc__cal-radio { border-color: var(--coral-2); background: radial-gradient(circle at center, var(--coral-2) 0 4px, transparent 5px); }
.gc__cal-primary { margin-left: auto; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); }

/* =============================================================
   ONBOARDING STATES — additive only. New classes for the
   empty / pipeline / teaser states that render BEFORE the
   populated dashboard. Nothing above this line is changed.
   ============================================================= */
.locked__ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; background: var(--pro-tint); color: var(--coral-ink); margin: 0 auto 16px; }
.locked__ic svg { width: 26px; height: 26px; }
.locked--start .locked__ic { background: var(--canvas); color: var(--espresso); box-shadow: inset 0 0 0 1px var(--rule-soft); }
.locked--start .cta { margin-top: 4px; }
.cta__chev { width: 15px; height: 15px; }
/* stage markers sit inside the existing .acc-title (inline-flex, gap:10px) */
.acc-mark { display: grid; place-items: center; width: 24px; height: 24px; flex: 0 0 auto; border-radius: 50%; font-family: var(--font-mono); font-size: .75rem; font-weight: 500; color: var(--ink-3); box-shadow: inset 0 0 0 1.5px var(--rule); }
.acc-mark svg { width: 15px; height: 15px; }
.acc-mark--active { color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.acc-mark--done { background: var(--ok-tint); color: var(--ok-ink); box-shadow: none; }
.stage-copy { color: var(--ink-2); font-size: .9rem; line-height: 1.5; margin: 0 0 16px; }
.stage-note { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--ok-ink); margin: 0; }
.stage-note__ic { width: 15px; height: 15px; }
/* Book launch panel — the deliberate "Go live" at the end of setup */
.launchcta { display: flex; align-items: center; gap: 18px; margin-top: 16px; background: #fff; border-radius: var(--dash-card-radius, 16px); box-shadow: var(--dash-shadow-lift, 0 14px 34px rgba(56,45,36,.022)); padding: 20px 24px; }
.launchcta--blocked { background: rgba(255, 255, 255, .72); box-shadow: var(--dash-shadow-sm); }
.launchcta__tx { flex: 1; min-width: 0; }
.launchcta__tx b { display: block; font-family: var(--font-body); font-weight: 600; font-size: 1.0625rem; color: var(--ink); }
.launchcta__tx span { display: block; font-size: .875rem; color: var(--ink-3); margin-top: 2px; line-height: 1.4; }
.launchcta .cta { flex: 0 0 auto; }
.launchcta .cta:disabled { opacity: .48; cursor: not-allowed; box-shadow: none; transform: none; }
@media (max-width: 560px) { .launchcta { flex-direction: column; align-items: stretch; gap: 14px; } .launchcta .cta { justify-content: center; } }
/* Smooth step transitions — fade content out before an action reload; the
   new step fades in via the existing .view dashIn animation. */
.dashc { transition: opacity .18s var(--ease), transform .18s var(--ease); }
.dash.is-leaving .dashc { opacity: 0; transform: scale(.985); }
@media (prefers-reduced-motion: reduce) { .dashc { transition: none; } }
/* List ready view — the published service catalog assistants quote from */
.catalog { background: var(--surface); border-radius: var(--dash-card-radius, 16px); box-shadow: var(--dash-shadow-sm); overflow: hidden; margin-top: 18px; }
.catalog__row { display: flex; align-items: flex-start; gap: 16px; padding: 16px 24px; border-top: 1px solid var(--rowline); }
.catalog__row:first-child { border-top: 0; }
.catalog__main { flex: 1; min-width: 0; }
.catalog__main b { display: block; font-family: var(--font-body); font-weight: 600; font-size: 1.0625rem; color: var(--ink); }
.catalog__main em { display: block; font-style: normal; font-size: .875rem; color: var(--ink-3); margin-top: 3px; line-height: 1.45; }
.catalog__price { flex: 0 0 auto; font-family: var(--font-mono); font-size: .9rem; color: var(--espresso); font-weight: 500; }

/* Funnel plan select + voucher ticket */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.plan { cursor: pointer; display: flex; }
.plan input { position: absolute; opacity: 0; pointer-events: none; }
.plan__card { flex: 1; box-sizing: border-box; position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--rule-soft); border-radius: 18px; padding: 22px 24px; box-shadow: 0 1px 3px rgba(26, 22, 19, .03), 0 8px 20px -8px rgba(26, 22, 19, .06), 0 20px 44px -16px rgba(26, 22, 19, .08); transition: box-shadow .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease); }
.plan:hover .plan__card { transform: translateY(-2px); box-shadow: 0 2px 6px rgba(26, 22, 19, .04), 0 14px 30px -10px rgba(26, 22, 19, .09), 0 30px 56px -18px rgba(26, 22, 19, .11); }
.plan input:checked + .plan__card { border-color: transparent; background: var(--pro-tint); box-shadow: inset 0 0 0 1.5px var(--coral-2), 0 2px 8px rgba(216, 73, 44, .08), 0 16px 36px -10px rgba(216, 73, 44, .18), 0 30px 60px -20px rgba(216, 73, 44, .15); }
.plan__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 9px; }
.plan__name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--espresso); display: inline-flex; align-items: center; gap: 9px; }
.plan input:checked + .plan__card .plan__name { color: var(--coral-ink); }
.plan__badge { font-family: var(--font-mono); font-size: .55rem; letter-spacing: .07em; text-transform: uppercase; color: #fff; background: var(--coral-2); padding: 3px 8px; border-radius: 999px; }
.plan__check { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--ink-3); background: transparent; transition: border-color .15s var(--ease), background .15s var(--ease); }
.plan:hover .plan__card .plan__check { border-color: var(--ink-2); }
.plan input:checked + .plan__card .plan__check { border-color: var(--coral-2); background: var(--coral-2) url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23ffffff%27 stroke-width=%273.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M20 6 9 17l-5-5%27/%3E%3C/svg%3E") no-repeat center; }
.plan__price { display: inline-flex; align-items: baseline; gap: 3px; font-variant-numeric: tabular-nums; margin-bottom: 14px; }
.plan__price b { font-family: var(--font-display); font-weight: 800; font-size: 1.75rem; color: var(--espresso); letter-spacing: -.01em; }
.plan input:checked + .plan__card .plan__price b { color: var(--coral-ink); }
.plan__price i { font-style: normal; font-size: .82rem; color: var(--ink-3); }
.plan__desc { font-size: .92rem; color: var(--ink-2); line-height: 1.45; }
.plan__feat { font-family: var(--font-mono); font-size: .7rem; color: var(--ink-3); letter-spacing: .02em; line-height: 1.5; margin-top: auto; padding-top: 16px; }
.vticket { display: flex; align-items: stretch; background: var(--surface); border-radius: 14px; box-shadow: var(--dash-shadow-sm); overflow: hidden; }
.vticket__offer { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 20px 22px; background: linear-gradient(180deg, rgba(242, 94, 64, .055), transparent); }
.vticket__eyebrow { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-ink); }
.vticket__headline { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; color: var(--espresso); line-height: 1; }
.vticket__fine { font-size: .72rem; color: var(--ink-3); line-height: 1.4; max-width: 28ch; }
.vticket__perf { position: relative; width: 1px; margin: 0; }
.vticket__perf::before { content: ""; position: absolute; top: 14px; bottom: 14px; left: 0; border-left: 2px dashed var(--rule); }
.vticket__notch, .vticket__perf::after { content: ""; position: absolute; left: 50%; width: 16px; height: 16px; border-radius: 50%; background: var(--canvas); transform: translate(-50%, -50%); }
.vticket__perf::after { top: 0; }
.vticket__notch { bottom: -8px; top: auto; }
.vticket__redeem { display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 20px 22px; min-width: 200px; }
.vticket__label { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.vticket__input { appearance: none; -webkit-appearance: none; background: var(--canvas); border: 0; border-radius: 10px; padding: 11px 13px; font-family: var(--font-mono); font-size: .95rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); box-shadow: inset 0 0 0 1px var(--rule-soft); }
.vticket__input:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--ink); }
.vticket__input::placeholder { color: var(--ink-3); }
.funnel__note { font-family: var(--font-mono); font-size: .68rem; color: var(--ink-3); margin: 0; }
/* Searchable business-type combobox */
.combo { position: relative; }
.combo__list { position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30; max-height: 264px; overflow-y: auto; list-style: none; margin: 0; padding: 6px; background: var(--surface); border-radius: 12px; box-shadow: 0 1px 2px rgba(26, 22, 19, .08), var(--shadow-pop, 0 30px 70px -34px rgba(0, 0, 0, .5)); }
.combo__opt { padding: 11px 14px; border-radius: 8px; font-size: .95rem; color: var(--ink); cursor: pointer; transition: background .12s var(--ease), color .12s var(--ease); }
.combo__opt:hover { background: var(--pro-tint); color: var(--coral-ink); }
.combo__empty { padding: 11px 14px; font-size: .85rem; color: var(--ink-3); line-height: 1.4; }
.combo__group { padding: 10px 14px 4px; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); pointer-events: none; }
.combo__group:first-child { padding-top: 4px; }
.combo__opt[hidden], .combo__group[hidden] { display: none; }
.combo__opt.is-active { background: var(--pro-tint); color: var(--coral-ink); }
.combo__mark { font-weight: 600; color: var(--coral-ink); }

/* Funnel inputs: a touch smaller than the wizard default (felt oversized). */
.page--setup .field input { font-size: 0.9375rem; padding: 11px 14px; }
.fld-row.fld-row--2 { grid-template-columns: 1.4fr 1fr; }
@media (max-width: 560px) { .plans { grid-template-columns: 1fr; } .vticket { flex-direction: column; } .vticket__perf { width: auto; height: 1px; margin: 0 22px; } .vticket__perf::before { top: 0; bottom: auto; left: 14px; right: 14px; border-left: 0; border-top: 2px dashed var(--rule); } .vticket__perf::after { left: 0; top: 50%; } .vticket__notch { left: auto; right: -8px; top: 50%; bottom: auto; } .vticket__redeem { min-width: 0; } }
/* Book setup progress strip (sits above the real editor cards in pipeline state) */
.setup-strip { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0 38px; padding: 0; }
.setup-strip--flow { margin-bottom: 20px; }
.setup-chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 6px; border-radius: 999px; background: rgba(255,255,255,.7); box-shadow: var(--dash-shadow-sm); font-size: .8125rem; color: var(--ink-3); }
.setup-chip__l { white-space: nowrap; }
.setup-chip--active { color: var(--ink); }
.setup-chip--active .setup-chip__l { font-weight: 600; }
.setup-chip--done { color: var(--ok-ink); }
@media (max-width: 720px) { .setup-strip { margin-left: 18px; } }
/* Book fetch phase — live probe rows while gathering info */
.fetchx .probe { text-align: left; margin: 22px auto 0; max-width: 380px; }
.probe { list-style: none; padding: 0; margin: 0; }
/* fetch progress: indeterminate bar + rotating activity so the wait never reads as stuck */
.fetchx__bar { position: relative; height: 4px; max-width: 380px; margin: 16px 0 0; border-radius: 999px; background: rgba(26, 22, 19, .07); overflow: hidden; }
.fetchx__bar > span { position: absolute; top: 0; left: 0; height: 100%; width: 38%; border-radius: 999px; background: var(--coral-2); animation: fetchxBar 1.5s var(--ease-out-quint) infinite; }
@keyframes fetchxBar { 0% { transform: translateX(-115%); } 100% { transform: translateX(290%); } }
.fetchx__now { display: flex; align-items: center; gap: 8px; margin: 11px 0 2px; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .01em; color: var(--coral-ink); }
.fetchx__now-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral-2); flex: none; animation: probeBreathe 1.5s var(--ease-out-quint) infinite; }
.fetchx__now [data-fetch-rotate] { transition: opacity .2s ease; }
@media (prefers-reduced-motion: reduce) { .fetchx__bar > span { animation: none; width: 100%; opacity: .45; } .fetchx__now-dot { animation: none; } }
.fetchmeta { display: flex; flex-wrap: wrap; gap: 7px; max-width: 430px; margin: 14px 0 0; }
.fetchmeta span { display: inline-flex; align-items: center; gap: 5px; min-height: 28px; padding: 5px 10px; border: 1px solid rgba(26, 22, 19, .08); border-radius: 999px; background: rgba(255, 255, 255, .72); color: var(--ink-3); font-family: var(--font-mono); font-size: .68rem; white-space: nowrap; box-shadow: 0 1px 2px rgba(26, 22, 19, .04); }
.fetchmeta b { color: var(--coral-ink); font-weight: 700; }
.fetchmeta--stale span:first-child { background: rgba(255, 244, 236, .95); border-color: rgba(242, 85, 55, .22); color: var(--coral-ink); }
.fetchwarn { display: grid; gap: 4px; max-width: 430px; margin: 14px 0 0; padding: 13px 14px; border: 1px solid rgba(242, 85, 55, .18); border-radius: 14px; background: rgba(255, 244, 236, .92); color: var(--ink-2); box-shadow: var(--dash-shadow-sm); }
.fetchwarn b { color: var(--espresso); font-size: .9rem; }
.fetchwarn span { font-size: .82rem; line-height: 1.35; }
.linkbtn { appearance: none; justify-self: start; margin: 6px 0 0; padding: 0; border: 0; background: transparent; color: var(--coral-ink); font: 700 .82rem/1.2 var(--font-body); cursor: pointer; }
.linkbtn:hover { text-decoration: underline; }
.probe__row { display: flex; align-items: baseline; gap: 10px; padding: 10px 0; border-top: 1px solid var(--rowline); }
.probe__row:first-child { border-top: 0; }
.probe__name { font-size: .9rem; color: var(--ink); }
.probe__leader { flex: 1; min-width: 16px; align-self: center; border-bottom: 1px dotted var(--rule); height: 0; }
.probe__state { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; font-family: var(--font-mono); font-size: .72rem; color: var(--ink-3); }
.probe__dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--coral-2); }
.probe__row.is-live .probe__state { color: var(--coral-ink); }
.probe__row.is-live .probe__dot { animation: probeBreathe 1.5s var(--ease-out-quint) infinite; }
.probe__row.is-live .probe__dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--coral-2); animation: probeSonar 1.8s var(--ease-out-quint) infinite; }
@keyframes obPulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.probe__row.is-done .probe__name { color: var(--ink-2); }
.probe__row.is-done .probe__state { color: var(--ok-ink, #4f6a39); }
.probe__row.is-failed .probe__state { color: var(--danger, #b73124); }
.probe__check { width: 13px; height: 13px; color: var(--ok-ink, #4f6a39); animation: checkPop .42s var(--ease-spring) backwards; }
@keyframes probe-check { 0% { transform: scale(.4); opacity: 0; } 100% { transform: none; opacity: 1; } }
.cta.is-busy { pointer-events: none; }
.cta:disabled { opacity: .48; cursor: not-allowed; box-shadow: none; transform: none; }
.cta.is-busy .cta__chev { display: none; }
.cta.is-busy::after { content: ""; flex: 0 0 auto; width: 15px; height: 15px; box-sizing: border-box; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .4); border-top-color: #fff; animation: dash-spin .55s linear infinite, loadFadeIn .25s var(--ease-out-quint) backwards; }
@media (prefers-reduced-motion: reduce) { .probe__row.is-live .probe__dot { animation: none; } .probe__row.is-live .probe__dot::after { display: none; } .probe__check { animation: none; } .cta.is-busy::after { animation: dash-spin .9s linear infinite; } }
/* Book found-summary (draft_ready): what we gathered, before the editors */
.found { max-width: 560px; margin: clamp(8px, 2vh, 22px) 0 0 38px; }
.found__lead { font-family: var(--font-body); font-size: 1.0625rem; color: var(--ink); margin: 0 0 16px; }
.found__lead b { font-family: var(--font-display); font-weight: 800; color: var(--espresso); }
.found__facts { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rowline); border-radius: 12px; overflow: hidden; }
.found__fact { background: var(--surface); padding: 12px 14px; display: flex; flex-direction: column; gap: 3px; }
.found__fact--wide { grid-column: 1 / -1; }
.found__fact dt { font-family: var(--font-mono); font-size: .625rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.found__fact dd { margin: 0; font-size: .95rem; color: var(--ink); line-height: 1.4; }
/* editable review fields — inline inputs that read as text until focused */
.found__fact dt label { cursor: text; }
.found__edit { width: 100%; box-sizing: border-box; border: 0; border-bottom: 1px solid rgba(26, 22, 19, .14); border-radius: 0; background: transparent; font-family: inherit; font-size: .95rem; color: var(--ink); line-height: 1.4; padding: 3px 0; transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.found__edit::placeholder { color: var(--ink-3); }
.found__edit:hover { border-bottom-color: rgba(26, 22, 19, .32); }
.found__edit:focus { outline: none; border-bottom-color: var(--coral-2); box-shadow: 0 1px 0 0 var(--coral-2); }
.found__ro { color: var(--ink-3); font-size: .85rem; }
.found__edit.is-invalid { border-bottom-color: var(--coral-ink); box-shadow: 0 1px 0 0 var(--coral-ink); }
.found__err { display: block; margin-top: 5px; font-size: .76rem; line-height: 1.3; color: var(--coral-ink); }
.found__err:empty { display: none; }
.found__act { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.found__act .cta { margin-left: auto; }
.found__hint { font-size: .85rem; color: var(--ink-3); }
@media (max-width: 560px) { .found__facts { grid-template-columns: 1fr; } }
/* Pro artifact view — generated asset previews (llms.txt / schema / robots) */
.asset-pre { font-family: var(--font-mono); font-size: .78rem; line-height: 1.55; color: var(--ink); background: var(--canvas); border-radius: 10px; padding: 14px 16px; margin: 4px 0 0; overflow-x: auto; white-space: pre; max-height: 280px; }
.asset-act { display: flex; justify-content: flex-end; margin-top: 12px; }

/* === Discovery (mirror): gateway row + cross-assistant discoverability probe === */
.gwrow { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: rgba(255, 255, 255, .8); border-radius: 13px; box-shadow: var(--dash-shadow-sm); padding: 14px 18px; margin-top: 18px; }
.gwrow__k { font-family: var(--font-body); font-weight: 500; font-size: .95rem; color: var(--ink); min-width: 0; }
.gwrow__sub { display: block; font-family: var(--font-mono); font-weight: 400; font-size: .8rem; color: var(--ink-3); margin-top: 3px; word-break: break-all; }
.gwrow__act { display: inline-flex; gap: 8px; flex: 0 0 auto; }

/* Cross-assistant discoverability probe */
.provcheck { margin-top: 24px; }
.provcheck__title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -.01em; color: var(--espresso); margin: 0; }
.provcheck__sub { margin: 4px 0 0; font-size: .875rem; color: var(--ink-3); }
.provcheck__ask { display: flex; gap: 8px; margin: 15px 0 0; }
.provcheck__field { position: relative; flex: 1; min-width: 0; }
.provcheck__ic { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); display: grid; place-items: center; color: var(--ink-3); pointer-events: none; }
.provcheck__ic svg { width: 18px; height: 18px; }
.provcheck__in { width: 100%; appearance: none; -webkit-appearance: none; border: 0; background: rgba(255, 255, 255, .8); border-radius: 12px; padding: 13px 16px 13px 38px; font-family: var(--font-body); font-size: .95rem; color: var(--ink); box-shadow: var(--dash-shadow-sm); transition: box-shadow .16s var(--ease); }
.provcheck__in:focus { outline: 0; box-shadow: 0 0 0 1.5px var(--coral-2), var(--dash-shadow-sm); }
.provcheck__go { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 4px; appearance: none; border: 0; cursor: pointer; background: var(--coral-2); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .9rem; padding: 0 18px; border-radius: 12px; transition: background .2s var(--ease), transform .12s var(--ease); }
.provcheck__go svg { width: 15px; height: 15px; }
.provcheck__go:hover { background: var(--coral-ink); }
.provcheck__go:active { transform: scale(.96); }
.provcheck__summary { display: flex; align-items: center; gap: 9px; margin: 17px 2px 13px; font-size: .85rem; color: var(--ink-2); }
.provcheck__rows { display: flex; flex-direction: column; gap: 6px; background: rgba(26, 22, 19, .06); border-radius: 16px; padding: 6px; }

.prow { background: #fff; border-radius: 12px; box-shadow: var(--dash-shadow-sm); overflow: hidden; transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.prow:hover { box-shadow: var(--dash-shadow); }
.prow__head { width: 100%; display: flex; align-items: center; gap: 13px; appearance: none; border: 0; background: none; cursor: pointer; text-align: left; padding: 14px 18px; -webkit-tap-highlight-color: transparent; }
.prow__logo { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 9px; background: var(--canvas); display: grid; place-items: center; box-shadow: var(--dash-shadow-sm); }
.prow__logo img { width: 18px; height: 18px; }
.prow__name { font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: var(--ink); }
.prow__state { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--ink-2); }
.prow__checking { margin-left: auto; display: none; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; color: var(--ink-3); }
.prow__dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; background: var(--ink-3); }
.prow__dot--ok { background: #5d7544; }
.prow[data-state="found"] .prow__dot { background: #5d7544; }
.prow[data-state="listed"] .prow__dot { background: #c98a2b; }
.prow[data-state="missing"] .prow__dot { background: transparent; box-shadow: inset 0 0 0 1.5px var(--ink-3); }
.prow[data-state="unknown"] .prow__dot { background: transparent; box-shadow: inset 0 0 0 1.5px var(--rule-strong); }
.prow[data-state="error"] .prow__dot { background: var(--coral-2); }
.prow__spin { width: 13px; height: 13px; border-radius: 50%; border: 2px solid var(--rule-soft); border-top-color: var(--coral-2); animation: prowspin .7s linear infinite; }
@keyframes prowspin { to { transform: rotate(360deg); } }
.prow__chev { width: 16px; height: 16px; color: var(--ink-3); flex: 0 0 auto; transition: transform .3s var(--ease-out-quint); }
.prow.is-open .prow__chev { transform: rotate(90deg); }
.prow[data-state="checking"] .prow__state { display: none; }
.prow[data-state="checking"] .prow__checking { display: inline-flex; }
.prow[data-state="checking"] { position: relative; }
.prow[data-state="checking"]::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 35%, rgba(242, 94, 64, .08) 50%, transparent 65%); background-size: 220% 100%; animation: prowsweep 1.15s var(--ease) infinite; pointer-events: none; }
@keyframes prowsweep { from { background-position: 200% 0; } to { background-position: -60% 0; } }
.prow__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease-disclose); }
.prow.is-open .prow__body { grid-template-rows: 1fr; }
.prow__body-in { overflow: hidden; min-height: 0; }
.prow__det { padding: 2px 18px 16px; }
.prow__cap { display: block; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 5px; }
.prow__quote { margin: 0; font-size: .95rem; line-height: 1.5; color: var(--ink-2); max-width: 62ch; }
.prow__link { display: inline-flex; margin-top: 9px; font-size: .8rem; color: var(--coral-ink); text-decoration: underline; text-underline-offset: 3px; }

.fixrow { display: flex; align-items: center; gap: 14px; background: var(--pro-tint); border-radius: 13px; padding: 15px 18px; margin-top: 16px; }
.fixrow__tx { flex: 1; min-width: 0; }
.fixrow__tx b { display: block; font-family: var(--font-body); font-weight: 600; font-size: .92rem; color: var(--espresso); }
.fixrow__tx em { display: block; font-style: normal; font-size: .82rem; color: var(--coral-ink); margin-top: 1px; }
.fixrow__cta { flex: 0 0 auto; appearance: none; border: 0; cursor: pointer; background: var(--espresso); color: #fff; font-family: var(--font-body); font-weight: 500; font-size: .82rem; padding: 10px 17px; border-radius: 999px; transition: background .2s var(--ease), transform .15s var(--ease); }
.fixrow__cta:hover { background: var(--coral-ink); transform: translateY(-1px); }
.fixrow__cta:disabled { cursor: not-allowed; opacity: .55; transform: none; }

/* Discovery alignment: bring every block's text onto the title line.
   .vtitle/.vstatus sit at view-edge + 38px (Book content line); match it. */
#view-discovery .provcheck__intro,
#view-discovery .provcheck__summary { margin-left: 38px; }
#view-discovery .gwrow,
#view-discovery .fixrow { padding-left: 38px; }
#view-discovery .provcheck__rows { margin-left: 14px; }

/* === List (authoring): editable service cards in the grey well + republish === */
#view-list .gwrow { padding-left: 38px; }
#view-list .provcheck__intro { margin-left: 38px; }
.lst-intro { margin-top: 24px; }
.svc-well { display: flex; flex-direction: column; gap: 6px; background: rgba(26, 22, 19, .06); border-radius: 16px; padding: 6px; margin: 14px 0 0 14px; }
.svc { background: #fff; border-radius: 12px; box-shadow: var(--dash-shadow-sm); padding: 13px 18px; transition: box-shadow .3s var(--ease); }
.svc:hover { box-shadow: var(--dash-shadow); }
.svc__top { display: flex; align-items: center; gap: 10px; }
.svc__name, .svc__price, .svc__desc { appearance: none; -webkit-appearance: none; border: 0; background: transparent; color: var(--ink); border-radius: 8px; transition: background .15s var(--ease), box-shadow .15s var(--ease); }
.svc__name { flex: 1; min-width: 0; font-family: var(--font-body); font-weight: 600; font-size: 1.0625rem; padding: 4px 7px; margin: -4px -7px; }
.svc__price { flex: 0 0 auto; width: 116px; text-align: right; font-family: var(--font-mono); font-size: .9rem; font-weight: 500; color: var(--espresso); padding: 4px 7px; margin: -4px -7px; }
.svc__desc { display: block; width: 100%; font-family: var(--font-body); font-size: .875rem; color: var(--ink-3); padding: 4px 7px; margin: 6px -7px 0; }
.svc__name:focus, .svc__price:focus, .svc__desc:focus { outline: 0; background: var(--canvas); box-shadow: inset 0 0 0 1.5px var(--coral-2); }
.svc__name::placeholder, .svc__price::placeholder, .svc__desc::placeholder { color: var(--ink-3); opacity: .55; }
.svc__del { flex: 0 0 auto; appearance: none; border: 0; background: none; cursor: pointer; width: 26px; height: 26px; border-radius: 50%; color: var(--ink-3); font-size: 1.15rem; line-height: 1; display: grid; place-items: center; opacity: 0; transition: opacity .15s var(--ease), background .15s var(--ease), color .15s var(--ease); }
.svc:hover .svc__del, .svc__del:focus-visible { opacity: 1; }
.svc__del:hover { background: rgba(216, 73, 44, .1); color: var(--coral-ink); }
.svc-add { display: flex; align-items: center; gap: 9px; width: 100%; appearance: none; border: 0; cursor: pointer; background: transparent; font-family: var(--font-body); font-weight: 500; font-size: .9rem; color: var(--ink-2); padding: 12px 18px; border-radius: 12px; transition: background .15s var(--ease), color .15s var(--ease); }
.svc-add:hover { background: rgba(255, 255, 255, .6); color: var(--espresso); }
.svc-add__plus { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--pro-tint); color: var(--coral-ink); font-size: 1rem; line-height: 1; }
.republish { display: flex; align-items: center; gap: 14px; background: var(--espresso); border-radius: 14px; padding: 14px 18px; margin: 16px 0 0 14px; box-shadow: var(--dash-shadow-lift); animation: rpub .3s var(--ease-out-quint); }
.republish[hidden] { display: none; }
@keyframes rpub { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.republish__tx { flex: 1; min-width: 0; }
.republish__tx b { display: block; font-family: var(--font-body); font-weight: 600; font-size: .92rem; color: #fff; }
.republish__tx em { display: block; font-style: normal; font-size: .8rem; color: rgba(255, 255, 255, .68); margin-top: 1px; }
.republish__btn { flex: 0 0 auto; appearance: none; border: 0; cursor: pointer; background: var(--coral-2); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .9rem; padding: 11px 20px; border-radius: 999px; transition: background .2s var(--ease), transform .15s var(--ease); }
.republish__btn:hover { background: var(--coral-ink); transform: translateY(-1px); }
.republish__btn:disabled { opacity: .6; cursor: default; transform: none; }

/* List service-card details (expansion) */
.svc__more { display: inline-flex; align-items: center; gap: 6px; appearance: none; border: 0; background: none; cursor: pointer; font-family: var(--font-body); font-size: .8rem; font-weight: 500; color: var(--ink-3); padding: 7px 0 1px; margin-top: 3px; -webkit-tap-highlight-color: transparent; }
.svc__more:hover { color: var(--coral-ink); }
.svc__more svg { width: 13px; height: 13px; transition: transform .3s var(--ease-out-quint); }
.svc.is-open .svc__more svg { transform: rotate(90deg); }
.svc__detail { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease-disclose); }
.svc.is-open .svc__detail { grid-template-rows: 1fr; }
.svc__detail-in { overflow: hidden; min-height: 0; }
.svc__detail-pad { padding-top: 13px; display: grid; gap: 16px; }
.svc__flabel { display: block; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px; }
.svc__area, .svc__in2, .svc__lin { appearance: none; -webkit-appearance: none; border: 0; background: var(--canvas); border-radius: 9px; font-family: var(--font-body); font-size: .9rem; color: var(--ink); box-shadow: inset 0 0 0 1px var(--rule-soft); transition: box-shadow .15s var(--ease); }
.svc__area { display: block; width: 100%; padding: 10px 12px; resize: vertical; line-height: 1.45; }
.svc__in2 { display: block; width: 100%; padding: 10px 12px; }
.svc__area:focus, .svc__in2:focus, .svc__lin:focus { outline: 0; box-shadow: inset 0 0 0 1.5px var(--coral-2); }
.svc__area::placeholder, .svc__in2::placeholder, .svc__lin::placeholder { color: var(--ink-3); opacity: .55; }
.svc__list { display: grid; gap: 7px; }
.svc__litem { display: flex; align-items: center; gap: 9px; }
.svc__libul { flex: 0 0 auto; width: 5px; height: 5px; border-radius: 50%; background: var(--coral-2); }
.svc__lin { flex: 1; min-width: 0; padding: 8px 11px; }
.svc__lx { flex: 0 0 auto; appearance: none; border: 0; background: none; cursor: pointer; width: 22px; height: 22px; border-radius: 50%; color: var(--ink-3); font-size: 1rem; line-height: 1; display: grid; place-items: center; opacity: .5; transition: opacity .15s var(--ease), background .15s var(--ease), color .15s var(--ease); }
.svc__lx:hover { opacity: 1; background: rgba(216, 73, 44, .1); color: var(--coral-ink); }
.svc__ladd { display: inline-flex; align-items: center; gap: 7px; appearance: none; border: 0; background: none; cursor: pointer; font-family: var(--font-body); font-size: .82rem; font-weight: 500; color: var(--ink-2); padding: 7px 4px 1px; margin-top: 1px; }
.svc__ladd:hover { color: var(--espresso); }
.svc__ladd .svc-add__plus { width: 17px; height: 17px; font-size: .85rem; }

/* List drag-to-reorder handle */
.svc { position: relative; }
.svc__drag { position: absolute; left: 2px; top: 13px; width: 14px; height: 22px; display: grid; place-items: center; cursor: grab; color: var(--ink-3); opacity: 0; transition: opacity .15s var(--ease), color .15s var(--ease); -webkit-tap-highlight-color: transparent; }
.svc:hover .svc__drag { opacity: .45; }
.svc__drag:hover { opacity: 1; color: var(--ink-2); }
.svc__drag:active { cursor: grabbing; }
.svc__drag svg { width: 13px; height: 13px; fill: currentColor; pointer-events: none; }
.svc.is-dragging { opacity: .5; box-shadow: var(--dash-shadow-lift); }

/* "Write the details for me" assist */
.svc__assist { display: inline-flex; align-items: center; gap: 7px; appearance: none; border: 0; cursor: pointer; background: var(--pro-tint); color: var(--coral-ink); font-family: var(--font-body); font-weight: 600; font-size: .82rem; padding: 9px 14px; border-radius: 10px; transition: background .15s var(--ease), transform .12s var(--ease); }
.svc__assist svg { width: 14px; height: 14px; }
.svc__assist:hover { background: rgba(216, 73, 44, .16); }
.svc__assist:active { transform: scale(.97); }
.svc__assist[data-busy="1"] { opacity: .7; cursor: default; }

.devfile { margin-top: 12px; }
.devfile:first-of-type { margin-top: 4px; }
.devfile__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.devfile__label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .03em; color: var(--ink-2); }

/* ===== Post-signup funnel (business shell → plan → pay) — centered surface ===== */
.funnel { background: var(--canvas); min-height: 100vh; }
.funnel__wrap { max-width: 560px; margin: 0 auto; padding: 40px 24px 96px; }
.funnel__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 44px; }
.funnel__brand img { height: 26px; width: auto; display: block; }
.funnel__who { font-family: var(--font-mono); font-size: .75rem; color: var(--ink-3); }
.funnel__dots { list-style: none; display: flex; gap: 6px; padding: 0; margin: 0 0 30px; }
.funnel__dot { width: 28px; height: 4px; border-radius: 2px; background: var(--rule); }
.funnel__dot.is-on { background: var(--coral-2); }
.funnel__eyebrow { font-family: var(--font-mono); font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 12px; }
.funnel__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 1.4rem + 2vw, 2.5rem); letter-spacing: -.025em; line-height: 1.05; color: var(--espresso); margin: 0 0 12px; text-wrap: balance; }
.funnel__sub { font-size: var(--fs-lead, 1.15rem); color: var(--ink-2); line-height: 1.5; margin: 0 0 32px; max-width: 46ch; }
.funnel__form { display: flex; flex-direction: column; gap: 18px; }
.funnel__err { font-size: .9rem; color: var(--coral-ink); background: var(--pro-tint); padding: 12px 14px; border-radius: 12px; margin: 0; }
.fld { display: flex; flex-direction: column; gap: 7px; }
.fld__l { font-family: var(--font-body); font-size: .875rem; font-weight: 500; color: var(--ink-2); }
.fld__in { appearance: none; -webkit-appearance: none; background: var(--surface); border: 0; border-radius: 12px; padding: 13px 15px; font-family: var(--font-body); font-size: 1rem; color: var(--ink); box-shadow: inset 0 0 0 1px var(--rule); transition: box-shadow .15s var(--ease); width: 100%; }
.fld__in:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--ink); }
.fld__in::placeholder { color: var(--ink-3); }
.fld__selwrap { position: relative; }
.fld__sel { cursor: pointer; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239c958a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.fld-row { display: grid; grid-template-columns: 1.3fr 1fr .8fr; gap: 12px; }
.presence { display: inline-flex; background: var(--seg-track); border-radius: 12px; padding: 4px; }
.presence__opt { position: relative; cursor: pointer; }
.presence__opt input { position: absolute; opacity: 0; pointer-events: none; }
.presence__opt span { display: block; padding: 9px 18px; border-radius: 9px; font-size: .9rem; color: var(--ink-2); transition: background .2s var(--ease), color .2s var(--ease); }
.presence__opt input:checked + span { background: var(--surface); color: var(--ink); font-weight: 500; box-shadow: 0 1px 2px rgba(26, 22, 19, .1); }
.funnel__cta { align-self: flex-start; margin-top: 8px; padding: 14px 28px; }
@media (max-width: 560px) { .fld-row { grid-template-columns: 1fr 1fr; } .funnel__cta { align-self: stretch; justify-content: center; } }

/* =============================================================
   MICRO-INTERACTION POLISH — keyboard focus, copy confirmation,
   save feedback. Additive: restores affordances appearance:none
   stripped, in the same restrained register as everything above.
   ============================================================= */

/* ---- focus-visible: one branded ring for keyboard nav, never on press.
   Keyed off element/role so every control (incl. future ones) is covered.
   :where() keeps specificity flat so the banner override below wins. ---- */
:where(.dash) :is(button, [role="switch"], [role="tab"], a):focus-visible,
:where(.dash) .seg label:has(input:focus-visible) {
  outline: 2px solid var(--coral-2); outline-offset: 2px;
}
:where(.dash) .acc-head:focus-visible { outline-offset: 3px; border-radius: 12px; }
/* on the coral banner a coral ring vanishes — light ring for the tabs + name */
:where(.banner) .tab:focus-visible { outline-color: rgba(255, 255, 255, .95); outline-offset: -4px; }
:where(.banner) .tab.is-on:focus-visible { outline-color: var(--coral-2); }
:where(.banner) .banner__biz:focus-visible { outline-color: rgba(255, 255, 255, .9); outline-offset: 3px; border-radius: 8px; }

/* ---- copy confirmation: the copy glyph pops into a sage check on success ---- */
.ibtn.is-done svg { color: var(--ok-ink); animation: probe-check .28s var(--ease-out-quint); }

/* ---- save feedback: a spinner while saving, a check once saved ---- */
.save-msg::before { content: ""; display: none; box-sizing: border-box; width: 11px; height: 11px; flex: 0 0 auto; }
.is-saving .save-msg, .is-saved .save-msg { display: inline-flex; align-items: center; gap: 7px; }
.is-saving .save-msg::before { display: inline-block; border-radius: 50%; border: 1.5px solid rgba(56, 45, 36, .25); border-top-color: var(--ink-2); animation: dash-spin .6s linear infinite; }
.is-saved .save-msg::before { display: inline-block; border-radius: 50%; background: var(--ok-ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center; animation: probe-check .28s var(--ease-out-quint); }
@keyframes dash-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .ibtn.is-done svg, .is-saved .save-msg::before { animation: none; }
  .is-saving .save-msg::before { animation-duration: .9s; }
}

/* =============================================================
   MICRO-INTERACTION MOTION — animated feedback on the things you
   touch. View blocks rise in on every tab switch, the active tab
   icon pops, CTA chevrons lean on hover, the live now-line breathes.
   Ease-out only, snappy, state-conveying. Honors reduced-motion.
   ============================================================= */

/* tab switch: the view's blocks rise in as a quick cascade (replaces the
   old single fade) so changing tabs reads as motion, not a hard cut */
.view.is-active > * { animation: viewRise .44s var(--ease-out-quint) backwards; }
.view.is-active > *:nth-child(2) { animation-delay: .045s; }
.view.is-active > *:nth-child(3) { animation-delay: .09s; }
.view.is-active > *:nth-child(4) { animation-delay: .135s; }
.view.is-active > *:nth-child(n+5) { animation-delay: .18s; }
@keyframes viewRise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* the selected tab's icon pops as it lands */
.tab.is-on svg { animation: tabIconPop .36s var(--ease-out-quint) backwards; }
@keyframes tabIconPop { from { opacity: .5; transform: scale(.7); } to { opacity: 1; transform: none; } }

/* CTA chevrons lean forward under the cursor */
.cta__chev { transition: transform .2s var(--ease-out-quint); }
.cta:hover .cta__chev { transform: translateX(3px); }

/* the live now-line breathes a slow heartbeat */
.wk__now::before { animation: nowPulse 2.6s var(--ease) infinite; }
@keyframes nowPulse { 0% { box-shadow: 0 0 0 0 rgba(242, 94, 64, .5); } 70%, 100% { box-shadow: 0 0 0 7px rgba(242, 94, 64, 0); } }

@media (prefers-reduced-motion: reduce) {
  .view.is-active > *, .tab.is-on svg, .wk__now::before { animation: none; }
  .cta__chev, .cta:hover .cta__chev { transition: none; transform: none; }
}

/* =============================================================
   LOADING & FETCH MOTION — the async moments get fluid, springy
   life: probe dots breathe + ping, completed steps pop with a gentle
   overshoot, fetched / empty states spring in, busy CTAs spin. Bouncy
   where it delights, calm where it'd distract. Honors reduced-motion.
   ============================================================= */
@keyframes probeBreathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(.78); } }
@keyframes probeSonar { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(2.9); opacity: 0; } }
@keyframes checkPop { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes springReveal { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes loadFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

/* fetched / loading / empty states spring in (bouncy arrival), overriding the
   calmer view cascade for these specific moments */
.view.is-active > .fetchx, .view.is-active > .found, .view.is-active > .locked { animation: springReveal .52s var(--ease-spring) backwards; }

/* skeleton placeholder — a soft shimmer while content loads */
.skeleton { background: linear-gradient(90deg, rgba(26, 22, 19, .05) 25%, rgba(26, 22, 19, .09) 37%, rgba(26, 22, 19, .05) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease-in-out infinite; border-radius: 10px; }
.gc__skeleton { height: 46px; margin-bottom: 8px; }

@media (prefers-reduced-motion: reduce) {
  .view.is-active > .fetchx, .view.is-active > .found, .view.is-active > .locked { animation: none; }
  .skeleton { animation: none; }
}

/* =============================================================
   GUIDED BUILD — source-strength entry for no-site / social-only
   businesses (BookGuidedStart). Wired to /presence-sources +
   /graph/draft + /graph/apply. Caboo register.
   ============================================================= */
.guided { max-width: 660px; margin: 26px auto 0; }
.guided__intro { text-align: center; margin-bottom: 22px; }
.guided__eyebrow { font-family: var(--font-mono); font-size: .68rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; color: var(--coral-ink); }
.guided__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 1.3rem + 1.8vw, 2.2rem); letter-spacing: -.02em; line-height: 1.06; color: var(--espresso); margin: 10px 0 12px; }
.guided__lede { font-size: 1rem; line-height: 1.55; color: var(--ink-2); margin: 0 auto; max-width: 52ch; }
.guided__lede b { color: var(--ink); font-weight: 600; }
.guided__panel { background: var(--surface); border-radius: var(--dash-card-radius, 16px); box-shadow: var(--dash-shadow); padding: 24px 26px; }
.guided__q { display: flex; align-items: center; gap: 11px; font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--ink); margin: 0; }
.guided__qn { width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--pro-tint); color: var(--coral-ink); font-family: var(--font-mono); font-size: .78rem; }
.srcpick { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.srcchip { display: inline-flex; align-items: center; gap: 7px; background: var(--canvas); border-radius: 999px; padding: 3px; transition: background .2s var(--ease); }
.srcchip.is-on { background: var(--pro-tint); }
.srcchip__btn { display: inline-flex; align-items: center; gap: 6px; appearance: none; -webkit-appearance: none; cursor: pointer; border: 0; background: transparent; color: var(--ink-2); font-family: var(--font-body); font-weight: 600; font-size: .88rem; padding: 8px 15px; border-radius: 999px; -webkit-tap-highlight-color: transparent; transition: background .18s var(--ease), color .18s var(--ease), transform var(--dur-press, .15s) var(--ease-press, ease); }
.srcchip__btn:active { transform: scale(.95); }
.srcchip.is-on .srcchip__btn { background: var(--coral-2); color: #fff; box-shadow: 0 4px 12px -6px rgba(216, 73, 44, .6); }
.srcchip__tick { width: 0; height: 13px; overflow: hidden; opacity: 0; display: inline-grid; place-items: center; transition: width .2s var(--ease-out-quint, ease), opacity .2s var(--ease); }
.srcchip__tick::before { content: ""; width: 10px; height: 6px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg) translateY(-1px); }
.srcchip.is-on .srcchip__tick { width: 13px; opacity: 1; }
.srcchip__in { display: none; width: 158px; appearance: none; -webkit-appearance: none; border: 0; background: var(--surface); border-radius: 999px; padding: 8px 13px; font-family: var(--font-body); font-size: .85rem; color: var(--ink); box-shadow: inset 0 0 0 1px var(--rule-soft); }
.srcchip__in:focus { outline: 0; box-shadow: inset 0 0 0 1.5px var(--coral-2); }
.srcchip.is-on .srcchip__in { display: inline-block; }
.srcpick__note { font-size: .82rem; color: var(--ink-3); margin: 14px 0 0; }
.guided__act { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.guided__out { margin-top: 20px; }
.guided__out[hidden] { display: none; }
/* guided build — the "what an assistant sees" preview (rendered from the real graph draft) */
.gpv { background: var(--surface); border-radius: 16px; box-shadow: var(--dash-shadow-sm); padding: 16px; margin-top: 14px; display: flex; flex-direction: column; gap: 11px; }
.gpv__me { align-self: flex-end; max-width: 84%; background: var(--coral-2); color: #fff; padding: 9px 13px; border-radius: 15px 15px 4px 15px; font-size: .9rem; }
.gpv__ai { align-self: flex-start; display: flex; gap: 9px; max-width: 92%; }
.gpv__av { width: 24px; height: 24px; flex: 0 0 auto; border-radius: 7px; background: #000; color: #fff; display: grid; place-items: center; font-size: 12px; margin-top: 1px; }
.gpv__bub { background: var(--canvas); color: var(--ink-2); padding: 10px 14px; border-radius: 15px 15px 15px 4px; font-size: .9rem; line-height: 1.5; }
.gpv__bub b { color: var(--ink); font-weight: 600; }
/* guided build — captured presence sources, owner-claimed (seeds the verified-listing ladder) */
.gpv__srcs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
.gpv__srcslab { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); }
.gpv__src { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--ink); background: var(--canvas); border-radius: 999px; padding: 5px 6px 5px 12px; }
.gpv__srctag { font-style: normal; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); background: rgba(26, 22, 19, .06); padding: 3px 8px; border-radius: 999px; }
.gpv__srctag.is-verified { color: var(--ok-ink); background: var(--ok-tint); }

/* no-web discovery: public profile candidates before owner-entered fallback */
.guided__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.guided__actions { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; justify-content: flex-end; }
.presencepick { margin-top: 18px; border-top: 1px solid var(--rule-soft); padding-top: 18px; }
.presencepick[hidden] { display: none; }
.presencepick__head { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.presencepick__head b { color: var(--espresso); font-size: .98rem; }
.presencepick__head span { color: var(--ink-3); font-size: .86rem; line-height: 1.45; }
.presencepick__list { display: flex; flex-direction: column; gap: 8px; }
.presencepick__row { display: grid; grid-template-columns: 20px 1fr auto; align-items: center; gap: 12px; padding: 12px 13px; border: 1px solid var(--rule-soft); border-radius: 12px; background: var(--canvas); cursor: pointer; }
.presencepick__row input { width: 16px; height: 16px; accent-color: var(--coral-2); }
.presencepick__main { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.presencepick__main b { color: var(--ink); font-size: .91rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.presencepick__main em { color: var(--ink-3); font-style: normal; font-size: .78rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.presencepick__score { font-family: var(--font-mono); font-size: .72rem; color: var(--ok-ink); background: var(--ok-tint); border-radius: 999px; padding: 4px 8px; }
.presencepick__empty { display: flex; flex-direction: column; gap: 5px; padding: 14px; border: 1px dashed var(--rule); border-radius: 12px; background: var(--canvas); }
.presencepick__empty b { color: var(--espresso); }
.presencepick__empty span { color: var(--ink-3); font-size: .86rem; line-height: 1.45; }
.presencepick__act { margin-top: 14px; }
.manualpick { margin-top: 18px; border-top: 1px solid var(--rule-soft); padding-top: 14px; }
.manualpick summary { cursor: pointer; color: var(--coral-ink); font-weight: 600; font-size: .9rem; }
.manualpick[open] summary { margin-bottom: 12px; }
.fetchstart__site { display: inline-flex; align-items: center; max-width: 100%; margin: 4px 0 16px; padding: 7px 11px; border-radius: 999px; background: var(--canvas); color: var(--ink-2); font-family: var(--font-mono); font-size: .78rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.presencepick__row--static { cursor: default; }
.presencepick__check { width: 20px; height: 20px; display: grid; place-items: center; color: var(--ok-ink); }
.presencepick__check svg { width: 16px; height: 16px; }

/* graph-ready SSR review, after sources exist but before Book setup is applied */
.graphready { max-width: 760px; }
.graphready__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.graphready__sub { color: var(--ink-3); font-size: .92rem; line-height: 1.5; margin: 7px 0 0; max-width: 56ch; }
.graphready__badge { flex: 0 0 auto; font-family: var(--font-mono); font-size: .7rem; color: var(--coral-ink); background: var(--pro-tint); border-radius: 999px; padding: 6px 10px; }
.graphready__facts { margin-top: 18px; }
.graphready__srcs { margin: 16px 0 0; }
.graphready__warn { margin: 14px 0 0; color: var(--warn-ink, #8a5a16); background: var(--warn-tint, rgba(219, 158, 48, .14)); border-radius: 12px; padding: 10px 12px; font-size: .86rem; line-height: 1.45; }
.graphready__act { align-items: center; }
.graphready__toggle { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); font-size: .88rem; }
.graphready__toggle input { width: 16px; height: 16px; accent-color: var(--coral-2); }
.graphready__toggle.is-disabled { opacity: .45; }

@media (max-width: 680px) {
  .guided { margin-top: 18px; }
  .guided__intro { text-align: left; }
  .guided__panel { padding: 18px; border-radius: 14px; }
  .guided__row, .graphready__head, .graphready__act { flex-direction: column; align-items: stretch; }
  .guided__actions { justify-content: stretch; }
  .guided__actions .cta, .guided__actions .ibtn, .graphready__act .cta { width: 100%; justify-content: center; }
  .presencepick__row { grid-template-columns: 20px minmax(0, 1fr); }
  .presencepick__score { grid-column: 2; justify-self: start; }
  .srcchip { width: 100%; border-radius: 14px; align-items: stretch; flex-wrap: wrap; }
  .srcchip__btn { flex: 1; justify-content: flex-start; border-radius: 12px; }
  .srcchip__in, .srcchip.is-on .srcchip__in { width: calc(100% - 16px); margin: 0 8px 8px; border-radius: 10px; }
  .gpv__me, .gpv__ai { max-width: 100%; }
}
/* fetch-start (website business) — group the site URL + fetch button into one
   aligned row; give the URL real contrast (was canvas-on-canvas, invisible). */
.fetchstart__row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.fetchstart__site { display: inline-flex; align-items: center; max-width: 100%; margin: 0; padding: 12px 16px; border-radius: 12px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--rule-soft); color: var(--ink-2); font-family: var(--font-mono); font-size: .82rem; letter-spacing: -.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
/* utility pills (Profile / Billing / Notifications / avatar) — borderless,
   fully rounded, more compact. White-on-canvas carries the definition. */
.top__util { gap: 8px; }
.upill { border: 0; border-radius: 999px; padding: 7px 13px; gap: 6px; }
.upill svg { width: 15px; height: 15px; }
.upill:hover { border-color: transparent; background: #f1f1e9; }
.upill--solid { padding: 7px 12px; }
.upill--solid:hover { background: #e9e8df; }
