/* Canvastify Business OS Shell — one frontend chrome for every owner tool.
   Namespaced .cv-os-*; dark palette matches the App Shell (#0f172a). */
.cv-os{
  --os-bg:#0b1120;--os-bg2:#0f172a;--os-panel:#111725;--os-panel2:#0f1522;--os-card:#131b2e;
  --os-line:#1e2637;--os-line2:#273449;--os-txt:#f8fafc;--os-txt2:#e6edf7;--os-mut:#94a3b8;
  --os-green:#22c55e;--os-blue:#3b82f6;--os-radius:14px;
  background:linear-gradient(180deg,#0f172a 0%,#0b1120 100%);
  color:var(--os-txt2);border-radius:16px;overflow:hidden;
  border:1px solid var(--os-line);box-shadow:0 24px 60px rgba(0,0,0,.35);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,sans-serif;
  font-size:14px;line-height:1.5;
}
.cv-os *{box-sizing:border-box;}
.cv-os a{color:inherit;text-decoration:none;}

/* Header */
.cv-os-header{display:flex;align-items:center;gap:14px;padding:14px 20px;
  background:var(--os-bg2);border-bottom:1px solid var(--os-line);}
.cv-os-brand{display:flex;align-items:center;gap:10px;min-width:0;}
.cv-os-logo{color:var(--os-green);filter:drop-shadow(0 0 8px rgba(34,197,94,.5));font-size:18px;}
.cv-os-name{font-weight:800;color:#fff;font-size:17px;letter-spacing:-.01em;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.cv-os-health{font-size:10px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  padding:3px 10px;border-radius:999px;}
.cv-os-health--green{background:rgba(34,197,94,.16);color:#4ade80;}
.cv-os-health--blue{background:rgba(59,130,246,.16);color:#60a5fa;}
.cv-os-health--neutral{background:rgba(148,163,184,.15);color:#cbd5e1;}
.cv-os-header__right{margin-left:auto;display:flex;align-items:center;gap:12px;}

/* Journey */
.cv-os-journey{padding:12px 20px 14px;background:var(--os-bg2);border-bottom:1px solid var(--os-line);}
.cv-os-journey__top{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px;}
.cv-os-journey__label{font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--os-mut);}
.cv-os-journey__pct{font-size:14px;font-weight:800;color:#fff;}
.cv-os-journey__track{height:6px;border-radius:999px;background:var(--os-line2);overflow:hidden;}
.cv-os-journey__fill{display:block;height:100%;background:linear-gradient(90deg,#22c55e,#3b82f6);border-radius:999px;transition:width .6s ease;}
.cv-os-journey__steps{display:flex;gap:6px;flex-wrap:wrap;margin-top:10px;}
.cv-os-jstep{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:700;color:var(--os-mut);
  background:var(--os-panel2);border:1px solid var(--os-line);border-radius:999px;padding:4px 11px;text-decoration:none;}
a.cv-os-jstep:hover{border-color:var(--os-green);color:#fff;text-decoration:none;transform:translateY(-1px);}
.cv-os-jstep__dot{width:15px;height:15px;border-radius:50%;background:var(--os-line2);color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:9px;}
.cv-os-jstep.is-done{color:#4ade80;border-color:rgba(34,197,94,.35);}
.cv-os-jstep.is-done .cv-os-jstep__dot{background:var(--os-green);color:#04210f;}
.cv-os-jstep.is-now{color:#fff;border-color:var(--os-blue);}
.cv-os-jstep.is-now .cv-os-jstep__dot{background:var(--os-blue);}
.cv-os-jstep.is-locked{opacity:.55;}

/* Body: workspace + right rail */
.cv-os-body{display:grid;grid-template-columns:1fr 320px;gap:22px;align-items:start;padding:22px;}
.cv-os-body--norail{grid-template-columns:1fr;}
@media(max-width:1100px){.cv-os-body{grid-template-columns:1fr;}}
.cv-os-workspace{min-width:0;}
.cv-os-workhead{margin-bottom:16px;}
.cv-os-worktitle{font-size:22px;font-weight:800;color:#fff;margin:0;letter-spacing:-.02em;display:flex;align-items:center;gap:10px;}

/* Right rail */
.cv-os-rail{display:flex;flex-direction:column;gap:14px;position:sticky;top:16px;}
.cv-os-card{background:var(--os-card);border:1px solid var(--os-line);border-radius:var(--os-radius);padding:16px;}
.cv-os-card__eyebrow{font-size:10px;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:var(--os-mut);margin-bottom:8px;}
.cv-os-card__title{font-size:15px;font-weight:800;color:#fff;margin-bottom:4px;}
.cv-os-card__body{font-size:12.5px;color:var(--os-mut);}
.cv-os-card--ai .cv-os-card__body{color:var(--os-txt2);}
.cv-os-health-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px;}
.cv-os-health-row{display:flex;align-items:center;gap:8px;font-size:12.5px;}
.cv-os-health-dot{width:8px;height:8px;border-radius:50%;background:var(--os-line2);flex:0 0 8px;}
.cv-os-health-row.is-ok .cv-os-health-dot{background:var(--os-green);box-shadow:0 0 6px rgba(34,197,94,.6);}
.cv-os-health-k{color:var(--os-txt2);font-weight:600;}
.cv-os-health-v{margin-left:auto;color:var(--os-mut);font-size:11.5px;}

/* Footer */
.cv-os-footer{padding:14px 20px;border-top:1px solid var(--os-line);color:var(--os-mut);font-size:12px;
  display:flex;align-items:center;gap:8px;background:var(--os-bg2);}

/* Workspace switcher (reused) — dark themed to match */
.cv-os-switch .cvws-switch-btn{background:var(--os-panel);border:1px solid var(--os-line2);color:var(--os-txt2);font-weight:700;padding:7px 12px;border-radius:9px;}
.cv-os-switch .cvws-switch-btn:hover{border-color:var(--os-green);filter:none;}
.cv-os-switch .cvws-panel{background:var(--os-panel);border:1px solid var(--os-line2);box-shadow:0 16px 40px rgba(0,0,0,.5);}
.cv-os-switch .cvws-search{border-bottom:1px solid var(--os-line);}
.cv-os-switch .cvws-search-input{background:var(--os-panel2);border:1px solid var(--os-line2);color:var(--os-txt);}
.cv-os-switch .cvws-link{color:var(--os-txt2);}
.cv-os-switch .cvws-link:hover{background:var(--os-card);}
.cv-os-switch .cvws-sub{color:var(--os-mut);}
.cv-os-switch .cvws-divider{background:var(--os-line);}
.cv-os-switch .cvws-check{color:var(--os-green);}
@media(max-width:600px){.cv-os-switch .cvws-switch-label{display:none;}}

/* Tool blend-in: when a tool renders inside the shell, drop its own outer
   panel chrome + title so it becomes part of the workspace (no panel-in-panel,
   no duplicate heading). Add a line per migrated tool. */
.cv-os .cv-post-builder{background:transparent;border:0;box-shadow:none;padding:0;border-radius:0;}
.cv-os .cv-post-builder .cv-pb-left > h2:first-child{display:none;}
/* Onboarding wizard: drop its full-page gradient/min-height so it sits in the workspace. */
.cv-os .cv-onboarding-wrap{background:none !important;min-height:0 !important;padding:0 !important;}
.cv-os .cv-onboarding{max-width:none !important;margin:0 !important;}
/* Launch dashboard: neutralize any full-page padding. */
.cv-os .cv-ld{margin:0 !important;}

/* ── Front Door (Pipeline Step 0) ─────────────────────────────────────────── */
.cv-fd{max-width:820px;margin:0 auto;}
.cv-fd-hero{text-align:center;margin-bottom:26px;}
.cv-fd-eyebrow{font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--os-mut);margin-bottom:8px;}
.cv-fd-title{font-size:30px;font-weight:800;color:#fff;letter-spacing:-.02em;margin:0 0 8px;}
.cv-fd-sub{color:var(--os-mut);font-size:15px;margin:0;}
.cv-fd-sub a{color:#8fd7ff;}
/* Continue card */
.cv-fd-continue{background:linear-gradient(160deg,rgba(34,197,94,.12),rgba(59,130,246,.06));
  border:1px solid rgba(34,197,94,.30);border-radius:18px;padding:26px 28px;text-align:center;margin-bottom:22px;box-shadow:0 20px 50px rgba(0,0,0,.30);}
.cv-fd-continue__label{font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--os-mut);}
.cv-fd-continue__name{font-size:26px;font-weight:800;color:#fff;margin:6px 0 10px;letter-spacing:-.02em;}
.cv-fd-continue__health{font-size:13px;color:var(--os-mut);margin-bottom:18px;}
.cv-fd-health{font-weight:800;padding:3px 10px;border-radius:999px;font-size:11px;text-transform:uppercase;letter-spacing:.05em;margin-left:4px;}
.cv-fd-health--green{background:rgba(34,197,94,.18);color:#4ade80;}
.cv-fd-health--blue{background:rgba(59,130,246,.18);color:#60a5fa;}
.cv-fd-health--neutral{background:rgba(148,163,184,.16);color:#cbd5e1;}
.cv-fd-btn{display:inline-block;border:0;border-radius:10px;padding:12px 28px;font-weight:800;font-size:15px;cursor:pointer;text-decoration:none;}
.cv-fd-btn--primary{background:linear-gradient(180deg,var(--os-green),#16a34a);color:#04210f;}
.cv-fd-btn--primary:hover{filter:brightness(1.06);}
/* Other businesses */
.cv-fd-others{margin-bottom:22px;}
.cv-fd-others__label{font-size:11px;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:var(--os-mut);margin-bottom:10px;text-align:center;}
.cv-fd-others__grid{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;}
.cv-fd-chip{display:flex;flex-direction:column;gap:2px;background:var(--os-card);border:1px solid var(--os-line);border-radius:12px;padding:10px 16px;min-width:160px;transition:.15s;}
.cv-fd-chip:hover{border-color:var(--os-green);transform:translateY(-2px);}
.cv-fd-chip__name{font-weight:700;color:#fff;font-size:14px;}
.cv-fd-chip__sub{font-size:11px;color:var(--os-mut);}
/* Secondary actions */
.cv-fd-actions{display:grid;grid-template-columns:1fr 1fr 1fr;gap:14px;margin-top:8px;}
.cv-fd-actions--stack{grid-template-columns:1fr 1fr;max-width:660px;margin:20px auto 0;}
@media(max-width:720px){.cv-fd-actions,.cv-fd-actions--stack{grid-template-columns:1fr;}}
.cv-fd-action{display:flex;flex-direction:column;gap:6px;background:var(--os-card);border:1px solid var(--os-line);border-radius:14px;padding:18px;transition:.15s;}
.cv-fd-action:hover{border-color:var(--os-green);transform:translateY(-2px);}
.cv-fd-action--big{padding:24px;}
.cv-fd-action__i{font-size:24px;}
.cv-fd-action__t{font-weight:800;color:#fff;font-size:15px;}
.cv-fd-action__d{font-size:12.5px;color:var(--os-mut);}
.cv-fd-action--switch{cursor:default;}
.cv-fd-switch{margin-top:6px;}
.cv-fd-switch .cvws-switch-btn{background:var(--os-panel);border:1px solid var(--os-line2);color:var(--os-txt2);font-weight:700;padding:7px 12px;border-radius:9px;}
.cv-fd-switch .cvws-panel{background:var(--os-panel);border:1px solid var(--os-line2);box-shadow:0 16px 40px rgba(0,0,0,.5);}
.cv-fd-switch .cvws-link{color:var(--os-txt2);}
.cv-fd-switch .cvws-link:hover{background:var(--os-card);}
.cv-fd-switch .cvws-sub{color:var(--os-mut);}
.cv-fd-switch .cvws-check{color:var(--os-green);}

/* ── Meet Your Business (Phase 2): live discovery timeline + summary ──────── */
.cv-meet,.cv-build{max-width:820px;margin:0 auto;}
.cv-meet-phase{transition:opacity .4s ease,transform .4s ease;}
.cv-meet-phase--timeline.is-exit{opacity:0;transform:translateY(-10px);}
.cv-meet-phase--summary{opacity:0;transform:translateY(12px);}
.cv-meet-phase--summary.is-in{opacity:1;transform:none;}
/* Lead */
.cv-meet-lead{text-align:center;margin-bottom:28px;}
.cv-meet-lead__title{font-size:28px;font-weight:800;color:#fff;letter-spacing:-.02em;margin:0 0 8px;}
.cv-meet-lead__sub{color:var(--os-mut);font-size:15px;margin:0;}
/* Steps */
.cv-meet-steps{list-style:none;margin:0 auto;padding:0;max-width:560px;}
.cv-meet-step{display:flex;align-items:center;gap:14px;padding:14px 0;border-top:1px solid var(--os-line);opacity:.45;transition:opacity .3s ease;}
.cv-meet-step:first-child{border-top:0;}
.cv-meet-step.is-running,.cv-meet-step.is-done{opacity:1;}
.cv-meet-step__mark{position:relative;width:26px;height:26px;flex:0 0 26px;border-radius:50%;background:var(--os-line2);display:flex;align-items:center;justify-content:center;}
.cv-meet-step__spin{position:absolute;width:16px;height:16px;border-radius:50%;border:2px solid rgba(255,255,255,.25);border-top-color:var(--os-green);opacity:0;}
.cv-meet-step.is-running .cv-meet-step__mark{background:rgba(59,130,246,.18);}
.cv-meet-step.is-running .cv-meet-step__spin{opacity:1;animation:cvmeet-spin .7s linear infinite;}
.cv-meet-step__check{opacity:0;color:#04210f;font-size:14px;font-weight:800;transform:scale(.5);transition:.25s;}
.cv-meet-step.is-done .cv-meet-step__mark{background:var(--os-green);box-shadow:0 0 12px rgba(34,197,94,.5);}
.cv-meet-step.is-done .cv-meet-step__check{opacity:1;transform:none;}
@keyframes cvmeet-spin{to{transform:rotate(360deg);}}
.cv-meet-step__body{display:flex;flex-direction:column;gap:2px;min-width:0;}
.cv-meet-step__label{font-weight:700;color:var(--os-txt);font-size:15px;}
.cv-meet-step__reward{font-size:12.5px;color:var(--os-mut);max-height:0;overflow:hidden;opacity:0;transition:.3s ease;}
.cv-meet-step.is-done .cv-meet-step__reward{max-height:32px;opacity:1;color:#4ade80;}
/* Summary reward */
.cv-meet-reward{text-align:center;margin-bottom:26px;}
.cv-meet-reward__icon{font-size:42px;}
.cv-meet-reward__title{font-size:26px;font-weight:800;color:#fff;letter-spacing:-.02em;margin:6px 0 8px;}
.cv-meet-reward__sub{color:var(--os-mut);font-size:15px;margin:0;}
/* Summary grid */
.cv-meet-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:14px;}
.cv-meet-skel{grid-column:1/-1;text-align:center;color:var(--os-mut);padding:30px;}
.cv-meet-tile{background:var(--os-card);border:1px solid var(--os-line);border-radius:14px;padding:16px;text-align:center;
  opacity:0;transform:translateY(10px);transition:opacity .35s ease,transform .35s ease,border-color .2s;}
.cv-meet-tile.is-in{opacity:1;transform:none;}
.cv-meet-tile.is-has{border-color:rgba(34,197,94,.30);}
.cv-meet-tile.is-empty{opacity:.72;}
.cv-meet-tile.is-empty.is-in{opacity:.72;}
.cv-meet-tile__i{font-size:22px;}
.cv-meet-tile__v{font-size:28px;font-weight:800;color:#fff;line-height:1;margin:6px 0 2px;letter-spacing:-.02em;}
.cv-meet-tile.is-has .cv-meet-tile__v{color:#4ade80;}
.cv-meet-tile__k{font-size:12px;font-weight:700;color:var(--os-txt2);text-transform:uppercase;letter-spacing:.05em;}
.cv-meet-tile__why{font-size:11px;color:var(--os-mut);margin-top:6px;line-height:1.35;}
/* Summary CTA */
.cv-meet-cta{text-align:center;margin-top:28px;}
.cv-meet-btn{display:inline-block;border:0;border-radius:10px;padding:13px 30px;font-weight:800;font-size:15px;cursor:pointer;text-decoration:none;}
.cv-meet-btn--primary{background:linear-gradient(180deg,var(--os-green),#16a34a);color:#04210f;}
.cv-meet-btn--primary:hover{filter:brightness(1.06);}
.cv-meet-cta__why{margin-top:10px;font-size:12.5px;color:var(--os-mut);}
@media(prefers-reduced-motion:reduce){.cv-meet-step__spin{animation:none;}.cv-meet-tile{transition:none;}}

/* ── Review My Business (Phase 3): approval workspace ─────────────────────── */
.cv-rev,.cv-rev-board{max-width:860px;margin:0 auto;}
.cv-rev-hero{text-align:center;margin-bottom:26px;}
.cv-rev-hero__title{font-size:28px;font-weight:800;color:#fff;letter-spacing:-.02em;margin:0 0 10px;}
.cv-rev-hero__sub{color:var(--os-txt2);font-size:15px;line-height:1.55;max-width:660px;margin:0 auto 10px;}
.cv-rev-hero__promise{display:inline-block;font-size:12.5px;font-weight:800;color:#4ade80;background:rgba(34,197,94,.12);border:1px solid rgba(34,197,94,.3);border-radius:999px;padding:6px 14px;}
/* Section overview cards */
.cv-rev-cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:14px;margin-bottom:26px;}
.cv-rev-card{display:flex;flex-direction:column;align-items:center;text-align:center;gap:2px;background:var(--os-card);border:1px solid var(--os-line);border-radius:14px;padding:18px 14px;transition:.15s;}
a.cv-rev-card:hover{border-color:var(--os-green);transform:translateY(-2px);}
.cv-rev-card--fact.is-ok{border-color:rgba(34,197,94,.28);}
.cv-rev-card--section.is-reviewed{border-color:rgba(34,197,94,.4);}
.cv-rev-card__i{font-size:22px;}
.cv-rev-card__v{font-size:28px;font-weight:800;color:#fff;line-height:1;margin:4px 0 2px;letter-spacing:-.02em;}
.cv-rev-card--section .cv-rev-card__v,.cv-rev-card--fact.is-ok .cv-rev-card__v{color:#4ade80;}
.cv-rev-card__k{font-size:12px;font-weight:700;color:var(--os-txt2);text-transform:uppercase;letter-spacing:.05em;}
.cv-rev-card__s{font-size:11px;color:var(--os-mut);margin-top:4px;}
.cv-rev-card--section.is-reviewed .cv-rev-card__s{color:#4ade80;}
/* CTA */
.cv-rev-cta{text-align:center;margin-top:8px;}
.cv-rev-cta__reward{font-size:15px;font-weight:800;color:#4ade80;margin-bottom:14px;}
.cv-rev-cta__why{margin-top:10px;font-size:12.5px;color:var(--os-mut);max-width:520px;margin-left:auto;margin-right:auto;}
.cv-rev-btn{display:inline-block;border:0;border-radius:10px;padding:13px 30px;font-weight:800;font-size:15px;cursor:pointer;text-decoration:none;}
.cv-rev-btn--primary{background:linear-gradient(180deg,var(--os-green),#16a34a);color:#04210f;}
.cv-rev-btn--primary:hover{filter:brightness(1.06);}
.cv-rev-btn--primary[disabled]{opacity:.6;cursor:default;}
.cv-rev-btn--ghost{background:transparent;border:1px solid var(--os-line2);color:var(--os-txt2);}
.cv-rev-btn--ghost:hover{border-color:var(--os-green);color:#fff;}
/* Board */
.cv-rev-back{display:inline-block;color:var(--os-mut);font-size:13px;font-weight:700;margin-bottom:14px;}
.cv-rev-back:hover{color:#fff;}
.cv-rev-boardhead{text-align:center;margin-bottom:22px;}
.cv-rev-boardhead__title{font-size:24px;font-weight:800;color:#fff;letter-spacing:-.02em;margin:0 0 8px;}
.cv-rev-boardhead__sub{color:var(--os-mut);font-size:14px;margin:0;}
.cv-rev-items{display:flex;flex-direction:column;gap:10px;}
.cv-rev-item{display:flex;align-items:center;gap:14px;background:var(--os-card);border:1px solid var(--os-line);border-radius:12px;padding:14px 16px;transition:.15s;border-left:3px solid var(--os-line2);}
.cv-rev-item.is-approved{border-left-color:var(--os-green);}
.cv-rev-item.is-rejected{border-left-color:#ef4444;opacity:.6;}
.cv-rev-item__main{flex:1;min-width:0;}
.cv-rev-item__title{font-weight:700;color:#fff;font-size:15px;}
.cv-rev-item__sub{font-size:12px;color:var(--os-mut);margin-top:2px;}
.cv-rev-item__actions{display:flex;gap:8px;flex:0 0 auto;}
.cv-rev-chip{border:1px solid var(--os-line2);background:var(--os-panel);color:var(--os-mut);border-radius:8px;padding:7px 14px;font-size:12.5px;font-weight:700;cursor:pointer;transition:.15s;}
.cv-rev-chip--approve:hover,.cv-rev-item.is-approved .cv-rev-chip--approve{background:var(--os-green);border-color:var(--os-green);color:#04210f;}
.cv-rev-chip--reject:hover,.cv-rev-item.is-rejected .cv-rev-chip--reject{background:#ef4444;border-color:#ef4444;color:#fff;}
.cv-rev-empty{text-align:center;color:var(--os-mut);padding:34px;background:var(--os-panel2);border:1px dashed var(--os-line2);border-radius:14px;}
.cv-rev-boardcta{display:flex;justify-content:center;gap:12px;margin-top:24px;flex-wrap:wrap;}
.cv-rev-reward{text-align:center;margin-top:16px;font-size:15px;font-weight:800;color:#4ade80;}

/* ── Launch My Business (Phase 5): one-button go-live ────────────────────── */
.cv-launch{max-width:760px;margin:0 auto;text-align:center;}
.cv-launch-hero__icon{font-size:46px;}
.cv-launch-hero__title{font-size:30px;font-weight:800;color:#fff;letter-spacing:-.02em;margin:8px 0 10px;}
.cv-launch-hero__sub{color:var(--os-mut);font-size:15px;line-height:1.55;max-width:600px;margin:0 auto;}
.cv-launch-recap{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin:24px 0 30px;}
.cv-launch-chip{background:var(--os-card);border:1px solid var(--os-line);border-radius:999px;padding:8px 16px;font-size:13px;font-weight:700;color:var(--os-txt2);}
.cv-launch-go{margin-top:6px;}
.cv-launch-btn{display:inline-block;border:0;border-radius:14px;padding:18px 44px;font-size:18px;font-weight:800;cursor:pointer;text-decoration:none;
  background:linear-gradient(180deg,#22c55e,#16a34a);color:#04210f;box-shadow:0 16px 40px rgba(34,197,94,.35);transition:.15s;}
.cv-launch-btn:hover{filter:brightness(1.06);transform:translateY(-2px);}
.cv-launch-btn[disabled]{opacity:.7;cursor:default;transform:none;}
.cv-launch-btn--open{background:linear-gradient(180deg,#22c55e,#16a34a);padding:14px 32px;font-size:16px;border-radius:12px;}
.cv-launch-go__note{margin-top:14px;font-size:12.5px;color:var(--os-mut);}
/* Celebration */
.cv-launch-done{padding:20px 0;}
.cv-launch-done__burst{font-size:64px;animation:cvlaunch-pop .6s ease;}
@keyframes cvlaunch-pop{0%{transform:scale(.3);opacity:0;}60%{transform:scale(1.15);}100%{transform:scale(1);opacity:1;}}
.cv-launch-done__title{font-size:34px;font-weight:800;color:#fff;letter-spacing:-.02em;margin:6px 0 10px;
  background:linear-gradient(90deg,#4ade80,#60a5fa);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;}
.cv-launch-done__sub{color:var(--os-txt2);font-size:15px;line-height:1.55;max-width:600px;margin:0 auto 24px;}
.cv-launch-done__cta{display:flex;flex-direction:column;align-items:center;gap:14px;}
.cv-launch-view{color:#8fd7ff;font-size:13.5px;font-weight:700;}
.cv-launch-view:hover{text-decoration:underline;}
@media(prefers-reduced-motion:reduce){.cv-launch-done__burst{animation:none;}}

/* ── Open My Business (Phase 6): the permanent Business OS home ───────────── */
.cv-os-home{max-width:100%;}
.cv-os-welcome{margin-bottom:24px;}
.cv-os-welcome.is-first{text-align:center;}
.cv-os-welcome__burst{font-size:52px;animation:cvlaunch-pop .6s ease;}
.cv-os-welcome__title{font-size:26px;font-weight:800;color:#fff;letter-spacing:-.02em;margin:6px 0 8px;}
.cv-os-welcome__sub{color:var(--os-mut);font-size:14.5px;line-height:1.55;max-width:640px;}
.cv-os-welcome.is-first .cv-os-welcome__sub{margin:0 auto;}
/* Four question cards */
.cv-os-qs{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:26px;}
@media(max-width:760px){.cv-os-qs{grid-template-columns:1fr;}}
.cv-os-q{background:var(--os-card);border:1px solid var(--os-line);border-radius:16px;padding:18px 20px;}
.cv-os-q__eyebrow{font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--os-mut);margin-bottom:10px;}
.cv-os-q__headline{font-size:24px;font-weight:800;letter-spacing:-.02em;margin-bottom:10px;}
.cv-os-q__headline--green{color:#4ade80;}
.cv-os-q__headline--blue{color:#60a5fa;}
.cv-os-q__headline--neutral{color:#cbd5e1;}
.cv-os-q__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:7px;}
.cv-os-q__row{display:flex;align-items:center;gap:8px;font-size:12.5px;}
.cv-os-q__dot{width:8px;height:8px;border-radius:50%;background:var(--os-line2);flex:0 0 8px;}
.cv-os-q__row.is-ok .cv-os-q__dot{background:var(--os-green);box-shadow:0 0 6px rgba(34,197,94,.6);}
.cv-os-q__k{color:var(--os-txt2);font-weight:600;}
.cv-os-q__v{margin-left:auto;color:var(--os-mut);font-size:11.5px;}
.cv-os-q__title{font-size:16px;font-weight:800;color:#fff;margin-bottom:4px;}
.cv-os-q__detail{font-size:12.5px;color:var(--os-mut);margin-bottom:12px;}
.cv-os-q__cta{display:inline-block;background:linear-gradient(180deg,var(--os-green),#16a34a);color:#04210f;font-weight:800;font-size:13px;border-radius:9px;padding:9px 16px;}
.cv-os-q__cta:hover{filter:brightness(1.06);}
.cv-os-q__ai{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px;}
.cv-os-q__ai li{display:flex;align-items:center;gap:9px;font-size:12.5px;color:var(--os-txt2);font-weight:600;}
.cv-os-q__pulse{width:9px;height:9px;border-radius:50%;background:var(--os-green);flex:0 0 9px;animation:cvpulse 1.6s infinite;}
@keyframes cvpulse{0%{box-shadow:0 0 0 0 rgba(34,197,94,.5);}70%{box-shadow:0 0 0 6px rgba(34,197,94,0);}100%{box-shadow:0 0 0 0 rgba(34,197,94,0);}}
.cv-os-q__tips{display:flex;flex-direction:column;gap:8px;}
.cv-os-q__tip{display:flex;align-items:center;gap:8px;background:var(--os-panel2);border:1px solid var(--os-line);border-radius:10px;padding:10px 12px;font-size:13px;font-weight:700;color:var(--os-txt2);transition:.15s;}
.cv-os-q__tip:hover{border-color:var(--os-green);color:#fff;}
/* Quick access */
.cv-os-quick__label{font-size:11px;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:var(--os-mut);margin-bottom:12px;}
.cv-os-quick__grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:14px;}
.cv-os-quick__tile{display:flex;flex-direction:column;gap:4px;background:var(--os-card);border:1px solid var(--os-line);border-radius:14px;padding:16px;transition:.15s;}
.cv-os-quick__tile:hover{border-color:var(--os-green);transform:translateY(-2px);}
.cv-os-quick__i{font-size:22px;}
.cv-os-quick__t{font-weight:800;color:#fff;font-size:14px;}
.cv-os-quick__d{font-size:12px;color:var(--os-mut);}
@media(prefers-reduced-motion:reduce){.cv-os-welcome__burst{animation:none;}.cv-os-q__pulse{animation:none;}}
