/* [project]/apps/web/src/styles/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  color: var(--ink);
  scroll-behavior: smooth;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

body {
  min-width: 320px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button, a {
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .5;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  letter-spacing: -.035em;
  font-size: 28px;
  line-height: 1.2;
}

h2 {
  letter-spacing: -.018em;
  font-size: 18px;
}

h3 {
  font-size: 15px;
}

svg {
  display: block;
}

.skip-link {
  z-index: 100;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  left: 12px;
}

.skip-link:focus {
  top: 12px;
}

.icon-button {
  width: 36px;
  height: 36px;
  color: var(--muted);
  background: none;
  border: 0;
  border-radius: 9px;
  place-items: center;
  display: inline-grid;
}

.icon-button:hover {
  color: var(--ink);
  background: #f0f1f5;
}

.icon-button:focus-visible, .button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .nav-item:focus-visible {
  outline-offset: 2px;
  outline: 3px solid #2563eb40;
}

.brand-lockup {
  align-items: center;
  gap: 10px;
  display: flex;
}

.brand-mark {
  background: var(--brand);
  border-radius: 9px;
  width: 29px;
  height: 29px;
  display: block;
  position: relative;
  overflow: hidden;
}

.brand-mark span {
  background: #fff;
  border-radius: 99px;
  width: 18px;
  height: 5px;
  position: absolute;
  left: 5px;
  transform: rotate(-18deg);
}

.brand-mark span:first-child {
  top: 6px;
}

.brand-mark span:nth-child(2) {
  width: 14px;
  top: 12px;
}

.brand-mark span:last-child {
  width: 10px;
  top: 18px;
}

.brand-name {
  letter-spacing: -.035em;
  font-size: 17px;
  font-weight: 760;
}

.avatar {
  color: #4d45b3;
  background: linear-gradient(145deg, #dad7ff, #f1efff);
  border: 2px solid #fff;
  border-radius: 50%;
  flex: none;
  place-items: center;
  font-weight: 750;
  display: inline-grid;
  overflow: hidden;
  box-shadow: 0 0 0 1px #dddff0;
}

.avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.avatar-sm {
  width: 30px;
  height: 30px;
  font-size: 11px;
}

.avatar-md {
  width: 38px;
  height: 38px;
  font-size: 12px;
}

.avatar-lg {
  width: 54px;
  height: 54px;
  font-size: 16px;
}

.badge {
  text-transform: capitalize;
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  width: max-content;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.badge-dot {
  background: currentColor;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.badge-neutral {
  color: #626a79;
  background: #f0f1f4;
}

.badge-success {
  background: var(--green-soft);
  color: var(--green);
}

.badge-warning {
  background: var(--amber-soft);
  color: var(--amber);
}

.badge-danger {
  background: var(--red-soft);
  color: var(--red);
}

.badge-info {
  background: var(--blue-soft);
  color: var(--blue);
}

.button {
  border: 1px solid #0000;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 680;
  line-height: 1;
  transition: all .16s;
  display: inline-flex;
}

.button-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px #2563eb38;
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: #fff;
}

.button-ghost {
  color: var(--muted);
  background: none;
}

.button-danger {
  color: var(--red);
  background: #fff;
  border-color: #efcbc9;
}

.button-sm {
  min-height: 32px;
  padding: 6px 11px;
  font-size: 12px;
}

.text-link {
  color: var(--brand-dark);
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.app-shell {
  min-height: 100vh;
}

.sidebar {
  z-index: 30;
  width: var(--sidebar);
  border-right: 1px solid var(--line);
  background: #fff;
  flex-direction: column;
  padding: 20px 14px 14px;
  display: flex;
  position: fixed;
  inset: 0 auto 0 0;
}

.sidebar-brand {
  justify-content: space-between;
  align-items: center;
  padding: 0 8px 24px;
  display: flex;
}

.sidebar-close {
  display: none;
}

.sidebar-nav {
  flex-direction: column;
  flex: 1;
  gap: 4px;
  display: flex;
}

.nav-label {
  color: #a0a6b2;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 750;
}

.nav-item {
  color: #60697a;
  border-radius: 9px;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  font-weight: 590;
  display: flex;
}

.nav-item svg {
  color: #848b99;
}

.nav-item:hover {
  color: var(--ink);
  background: #f6f6f9;
}

.nav-item.is-active {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
}

.nav-spacer {
  flex: 1;
}

.sidebar-profile {
  border-top: 1px solid var(--line);
  align-items: center;
  gap: 10px;
  padding: 15px 5px 2px;
  display: flex;
}

.sidebar-profile div {
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

.sidebar-profile strong {
  font-size: 12px;
}

.sidebar-profile span {
  color: var(--muted);
  font-size: 11px;
}

.sidebar-profile > svg {
  color: var(--subtle);
}

.app-frame {
  margin-left: var(--sidebar);
  min-height: 100vh;
}

.topbar {
  z-index: 20;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  background: #ffffffeb;
  align-items: center;
  height: 64px;
  padding: 0 28px;
  display: flex;
  position: sticky;
  top: 0;
}

.workspace-switcher {
  background: none;
  border: 0;
  align-items: center;
  gap: 8px;
  font-weight: 690;
  display: flex;
}

.workspace-dot {
  color: #fff;
  background: #252a38;
  border-radius: 8px;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 11px;
  display: grid;
}

.workspace-logo {
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
  padding: 2px;
}

.topbar-actions {
  align-items: center;
  gap: 8px;
  margin-left: auto;
  display: flex;
}

.public-link {
  color: var(--muted);
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 650;
  display: flex;
}

.public-link:hover {
  color: var(--ink);
  background: #f2f3f6;
}

.mobile-menu {
  display: none;
}

.main-content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 34px 36px 64px;
}

.page-stack {
  flex-direction: column;
  gap: 24px;
  display: flex;
}

.page-header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  display: flex;
}

.page-header h1 {
  margin-bottom: 6px;
}

.page-header p {
  color: var(--muted);
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand);
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 780;
}

.page-actions {
  align-items: center;
  gap: 8px;
  display: flex;
}

.section-header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  display: flex;
}

.section-header h2 {
  margin: 0 0 3px;
}

.section-header p {
  color: var(--muted);
  margin: 0;
  font-size: 12px;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  display: grid;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  padding: 18px;
  display: grid;
}

.metric-icon {
  border-radius: 10px;
  grid-row: 1 / 4;
  place-items: center;
  width: 38px;
  height: 38px;
  display: grid;
}

.metric-brand {
  background: var(--brand-soft);
  color: var(--brand);
}

.metric-green {
  background: var(--green-soft);
  color: var(--green);
}

.metric-amber {
  background: var(--amber-soft);
  color: var(--amber);
}

.metric-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.metric-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.metric-card > strong {
  letter-spacing: -.03em;
  font-size: 23px;
  line-height: 1.1;
}

.dashboard-grid {
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, .7fr);
  gap: 18px;
  display: grid;
}

.upcoming-panel, .quick-panel, .event-summary-panel {
  padding: 20px;
}

.booking-list {
  margin: 14px -10px -8px;
}

.booking-row {
  border-radius: 10px;
  grid-template-columns: 48px 1fr auto 20px;
  align-items: center;
  gap: 12px;
  padding: 11px 10px;
  display: grid;
}

.date-chip {
  width: 45px;
  height: 48px;
  color: var(--brand-dark);
  background: #f2f1ff;
  border-radius: 9px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.date-chip strong {
  font-size: 17px;
  line-height: 1;
}

.date-chip span {
  text-transform: uppercase;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 750;
}

.booking-main {
  min-width: 0;
}

.booking-main > div {
  align-items: center;
  gap: 8px;
  display: flex;
}

.booking-main > span {
  color: var(--muted);
  font-size: 12px;
  display: block;
}

.booking-main small {
  color: var(--subtle);
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  display: flex;
}

.booking-main small i {
  font-style: normal;
}

.booking-row > svg {
  color: var(--subtle);
}

.quick-actions {
  flex-direction: column;
  margin: 10px -6px -8px;
  display: flex;
}

.quick-actions > a {
  grid-template-columns: 38px 1fr 16px;
  align-items: center;
  gap: 10px;
  padding: 12px 6px;
  display: grid;
}

.quick-actions > a + a {
  border-top: 1px solid var(--line);
}

.quick-icon {
  width: 36px;
  height: 36px;
  color: var(--brand);
  background: #f3f3f8;
  border-radius: 9px;
  place-items: center;
  display: grid;
}

.quick-actions div {
  flex-direction: column;
  display: flex;
}

.quick-actions strong {
  font-size: 12px;
}

.quick-actions small {
  color: var(--muted);
  font-size: 10px;
}

.quick-actions > a > svg {
  color: var(--subtle);
}

.event-summary-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 15px;
  display: grid;
}

.event-summary {
  border: 1px solid var(--line);
  border-radius: 10px;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 14px 14px 18px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.event-color {
  width: 4px;
  position: absolute;
  inset: 0 auto 0 0;
}

.event-summary > div {
  flex-direction: column;
  display: flex;
}

.event-summary span {
  color: var(--muted);
  font-size: 10px;
}

.event-count {
  text-align: right;
}

.event-count strong {
  font-size: 17px;
}

.event-count span {
  font-size: 9px;
}

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

.search-field {
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 9px;
  align-items: center;
  gap: 8px;
  width: min(350px, 100%);
  padding: 0 11px;
  display: flex;
}

.search-field svg {
  color: var(--subtle);
}

.search-field input {
  background: none;
  border: 0;
  outline: 0;
  width: 100%;
  height: 38px;
}

.segmented {
  background: #ededf2;
  border-radius: 9px;
  gap: 3px;
  padding: 3px;
  display: flex;
}

.segmented button {
  color: var(--muted);
  background: none;
  border: 0;
  border-radius: 7px;
  padding: 6px 10px;
  font-size: 12px;
}

.segmented button.is-active {
  color: var(--ink);
  background: #fff;
  font-weight: 700;
  box-shadow: 0 1px 3px #00000014;
}

.segmented span {
  background: #dddde5;
  border-radius: 99px;
  padding: 1px 4px;
  font-size: 9px;
}

.sync-note {
  color: var(--muted);
  align-items: center;
  gap: 8px;
  font-size: 12px;
  display: flex;
}

.spinner {
  border: 2px solid #ddd;
  border-top-color: var(--brand);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  animation: .8s linear infinite spin;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.event-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

.event-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  position: relative;
  overflow: hidden;
}

.event-card-head {
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px 0;
  display: flex;
}

.event-card-body {
  padding: 10px 16px;
}

.event-card-body h2 {
  margin: 0 0 5px;
  font-size: 17px;
}

.event-card-body p {
  color: var(--muted);
  min-height: 36px;
  margin: 0 0 12px;
  font-size: 12px;
}

.event-meta {
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  display: flex;
}

.event-meta span {
  align-items: center;
  gap: 5px;
  display: flex;
}

.event-card-stats {
  border-block: 1px solid var(--line);
  background: #fafafd;
  grid-template-columns: 1fr 1.4fr;
  display: grid;
}

.event-card-stats > div {
  flex-direction: column;
  padding: 10px 16px;
  display: flex;
}

.event-card-stats > div + div {
  border-left: 1px solid var(--line);
}

.event-card-stats strong {
  font-size: 12px;
}

.event-card-stats span {
  color: var(--subtle);
  font-size: 9px;
}

.event-card-link {
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  display: flex;
}

.event-card-link span {
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--muted);
  flex: 1;
  font-size: 10px;
  overflow: hidden;
}

.event-card-link button, .event-card-link a {
  color: var(--subtle);
  background: none;
  border: 0;
  padding: 4px;
}

.event-card-foot {
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  display: flex;
}

.event-card-foot > span {
  color: var(--muted);
  flex: 1;
  font-size: 10px;
}

.toggle {
  background: #d8dbe2;
  border: 0;
  border-radius: 99px;
  width: 34px;
  height: 20px;
  padding: 2px;
  transition: all .15s;
}

.toggle span {
  background: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  transition: all .15s;
  display: block;
  box-shadow: 0 1px 3px #0003;
}

.toggle.is-on span {
  transform: translateX(14px);
}

.editor-page {
  background: var(--canvas);
  min-height: calc(100vh - 64px);
  margin: -34px -36px -64px;
}

.editor-topbar {
  border-bottom: 1px solid var(--line);
  z-index: 10;
  background: #fff;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  height: 70px;
  padding: 0 24px;
  display: flex;
  position: sticky;
  top: 64px;
}

.editor-title, .editor-actions {
  align-items: center;
  gap: 9px;
  display: flex;
}

.editor-title > div {
  flex-direction: column;
  display: flex;
}

.editor-title span {
  color: var(--muted);
  font-size: 9px;
}

.editor-title strong {
  font-size: 13px;
}

.editor-layout {
  grid-template-columns: 190px minmax(500px, 760px) 280px;
  gap: 22px;
  max-width: 1280px;
  margin: auto;
  padding: 24px;
  display: grid;
}

.editor-progress {
  align-items: center;
  gap: 10px;
  height: max-content;
  padding-top: 10px;
  display: flex;
}

.progress-ring {
  --progress: 50%;
  background: conic-gradient(var(--brand) var(--progress),#e5e6ec 0);
  border-radius: 50%;
  place-items: center;
  width: 50px;
  height: 50px;
  display: grid;
  position: relative;
}

.progress-ring:after {
  content: "";
  background: var(--canvas);
  border-radius: 50%;
  position: absolute;
  inset: 5px;
}

.progress-ring strong {
  z-index: 1;
  font-size: 10px;
  position: relative;
}

.editor-progress > div:last-child {
  flex-direction: column;
  display: flex;
}

.editor-progress strong {
  font-size: 11px;
}

.editor-progress span {
  color: var(--muted);
  font-size: 9px;
}

.editor-tabs {
  border-bottom: 1px solid var(--line);
  gap: 2px;
  display: flex;
  overflow: auto;
}

.editor-tabs button {
  color: var(--muted);
  background: none;
  border: 0;
  border-bottom: 2px solid #0000;
  padding: 10px 13px;
  font-size: 11px;
}

.editor-tabs button.is-active {
  color: var(--brand-dark);
  border-bottom-color: var(--brand);
  font-weight: 700;
}

.editor-sections {
  flex-direction: column;
  gap: 14px;
  padding-top: 16px;
  display: flex;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
}

.form-card-title {
  gap: 10px;
  margin-bottom: 18px;
  display: flex;
}

.form-card-title h2 {
  margin: 0;
}

.form-card-title p {
  color: var(--muted);
  margin: 2px 0 0;
  font-size: 11px;
}

.number-chip {
  background: var(--brand-soft);
  width: 26px;
  height: 26px;
  color: var(--brand);
  border-radius: 8px;
  flex: none;
  place-items: center;
  font-size: 11px;
  font-weight: 750;
  display: grid;
}

.form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

.form-grid > .field:nth-child(3) {
  grid-column: 1 / -1;
}

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

.field-label {
  font-size: 11px;
  font-weight: 700;
}

.field-hint {
  color: var(--subtle);
  word-break: break-all;
  font-size: 9px;
}

.field input, .field select, .field textarea, .toolbar select, .time-window select, .duration-row select {
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 8px;
  outline: 0;
  width: 100%;
  padding: 9px 10px;
  font-size: 12px;
}

.field textarea {
  resize: vertical;
}

.input-prefix {
  border: 1px solid var(--line-strong);
  background: #f7f7f9;
  border-radius: 8px;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.input-prefix span {
  color: var(--muted);
  white-space: nowrap;
  padding: 0 9px;
  font-size: 10px;
}

.input-prefix input {
  border: 0;
  border-left: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 0;
}

.color-options {
  gap: 9px;
  padding-top: 3px;
  display: flex;
}

.color-options button {
  width: 28px;
  height: 28px;
  box-shadow: 0 0 0 1px var(--line);
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  place-items: center;
  display: grid;
}

.color-options button svg {
  opacity: 0;
}

.color-options button.is-selected {
  box-shadow: 0 0 0 2px var(--ink);
}

.color-options button.is-selected svg {
  opacity: 1;
}

.duration-list {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.duration-row {
  border: 1px solid var(--line);
  border-radius: 9px;
  grid-template-columns: 24px 120px 90px 100px 1fr 34px auto;
  align-items: center;
  gap: 8px;
  padding: 9px;
  display: grid;
}

.radio {
  background: #fff;
  border: 1px solid #bdc1cb;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  padding: 3px;
}

.radio span {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: block;
}

.radio.is-selected {
  border-color: var(--brand);
}

.radio.is-selected span {
  background: var(--brand);
}

.duration-input, .money-input {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.duration-input input, .money-input input {
  border: 0;
  width: 100%;
  min-width: 0;
  padding: 7px;
}

.duration-input span, .money-input span {
  color: var(--muted);
  padding: 0 7px;
  font-size: 10px;
}

.muted {
  color: var(--muted);
  font-size: 10px;
}

.add-row {
  width: max-content;
  color: var(--brand-dark);
  background: none;
  border: 0;
  align-items: center;
  gap: 6px;
  padding: 7px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.inline-fields, .two-column {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
  display: grid;
}

.setting-row {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  display: flex;
}

.setting-row > div {
  flex-direction: column;
  display: flex;
}

.setting-row strong {
  font-size: 12px;
}

.setting-row span {
  color: var(--muted);
  font-size: 10px;
}

.setting-row.compact {
  border: 0;
  padding-bottom: 0;
}

.notice {
  border-radius: 9px;
  align-items: flex-start;
  gap: 9px;
  margin-top: 14px;
  padding: 11px 12px;
  font-size: 11px;
  display: flex;
}

.notice div {
  flex-direction: column;
  display: flex;
}

.notice span {
  color: inherit;
  opacity: .8;
}

.notice-warning {
  background: var(--amber-soft);
  color: #805312;
}

.notice-info {
  background: var(--blue-soft);
  color: #315f9f;
}

.question-list {
  flex-direction: column;
  display: flex;
}

.question-row {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 11px 4px;
  display: grid;
}

.question-row > div {
  flex-direction: column;
  display: flex;
}

.question-row strong {
  font-size: 11px;
}

.question-row span {
  color: var(--muted);
  font-size: 9px;
}

.drag-handle {
  color: #aeb3be;
}

.editor-preview {
  height: max-content;
  position: sticky;
  top: 154px;
}

.preview-label {
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 700;
  display: block;
}

.mini-booking-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.mini-brand {
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  display: flex;
}

.mini-logo, .public-logo {
  background: var(--brand);
  color: #fff;
  border-radius: 9px;
  place-items: center;
  width: 32px;
  height: 32px;
  font-weight: 800;
  display: grid;
}

.mini-host {
  color: var(--muted);
  font-size: 10px;
}

.mini-booking-card h2 {
  margin: 4px 0 7px;
  font-size: 19px;
}

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

.mini-meta {
  flex-direction: column;
  gap: 8px;
  margin: 15px 0;
  display: flex;
}

.mini-meta span {
  color: var(--muted);
  align-items: center;
  gap: 6px;
  font-size: 10px;
  display: flex;
}

.mini-booking-card > button {
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  padding: 10px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.editor-preview > small {
  text-align: center;
  color: var(--subtle);
  margin-top: 8px;
  font-size: 9px;
  display: block;
}

.toast {
  z-index: 80;
  color: #fff;
  box-shadow: var(--shadow-lg);
  background: #202634;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 12px;
  display: flex;
  position: fixed;
  top: 82px;
  left: 50%;
  transform: translateX(-50%);
}

.toast > span {
  background: var(--green);
  border-radius: 50%;
  place-items: center;
  width: 20px;
  height: 20px;
  display: grid;
}

.toast-error {
  background: #8e3431;
}

.toast-error > span {
  background: #ffffff26;
}

.availability-layout {
  grid-template-columns: minmax(0, 1.5fr) 330px;
  gap: 18px;
  display: grid;
}

.availability-main, .compact-panel {
  padding: 20px;
}

.timezone-pill {
  color: var(--muted);
  background: #f3f3f7;
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  font-size: 10px;
  display: flex;
}

.schedule-list {
  margin-top: 14px;
}

.schedule-day {
  border-top: 1px solid var(--line);
  grid-template-columns: 100px 1fr 36px;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  display: grid;
}

.day-toggle {
  align-items: center;
  gap: 9px;
  padding-top: 7px;
  display: flex;
}

.day-toggle strong {
  font-size: 11px;
}

.day-windows {
  flex-direction: column;
  gap: 7px;
  display: flex;
}

.time-window {
  grid-template-columns: 1fr 10px 1fr 32px;
  align-items: center;
  gap: 7px;
  display: grid;
}

.time-window select {
  padding: 7px;
}

.unavailable-label {
  color: var(--subtle);
  padding: 8px;
  font-size: 11px;
}

.add-window {
  margin-top: 2px;
}

.availability-aside {
  flex-direction: column;
  gap: 18px;
  display: flex;
}

.mini-week {
  margin: 18px 0;
}

.mini-week-head, .mini-week-grid {
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  display: grid;
}

.mini-week-head span {
  text-align: center;
  color: var(--muted);
  font-size: 9px;
}

.mini-week-grid > div {
  background: #f4f5f8;
  border-radius: 5px;
  align-items: flex-end;
  height: 85px;
  padding: 3px;
  display: flex;
}

.mini-week-grid > div span {
  background: linear-gradient(180deg,#8983ec,var(--brand));
  opacity: .75;
  border-radius: 3px;
  width: 100%;
  display: block;
}

.aside-note {
  color: var(--muted);
  gap: 7px;
  margin: 0;
  font-size: 10px;
  display: flex;
}

.legend-dot {
  background: var(--brand);
  border-radius: 2px;
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 4px;
}

.two-panel-grid {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  display: grid;
}

.two-panel-grid > .panel {
  padding: 20px;
}

.exception-list {
  margin-top: 12px;
}

.exception-row {
  border-top: 1px solid var(--line);
  grid-template-columns: 38px 1fr auto 34px;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  display: grid;
}

.exception-icon {
  background: var(--blue-soft);
  width: 34px;
  height: 34px;
  color: var(--blue);
  border-radius: 9px;
  place-items: center;
  display: grid;
}

.exception-off {
  background: var(--red-soft);
  color: var(--red);
}

.exception-row > div {
  flex-direction: column;
  display: flex;
}

.exception-row strong {
  font-size: 11px;
}

.exception-row span {
  color: var(--muted);
  font-size: 9px;
}

.bookings-toolbar {
  flex-wrap: wrap;
}

.bookings-toolbar .search-field {
  margin-right: auto;
}

.bookings-toolbar select, .bookings-toolbar > .button {
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 9px;
  height: 40px;
  padding: 0 10px;
  font-size: 11px;
}

.bookings-panel {
  overflow: hidden;
}

.booking-table-head, .booking-table-row {
  grid-template-columns: 1.2fr 1.2fr 1fr 110px 30px;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  display: grid;
}

.booking-table-head {
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--line);
  background: #fafafd;
  font-size: 9px;
  font-weight: 750;
}

.booking-table-row {
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: #fff;
  width: 100%;
}

.booking-table-row > span {
  flex-direction: column;
  display: flex;
}

.booking-table-row > span:last-child {
  color: var(--subtle);
}

.booking-table-row strong {
  font-size: 11px;
}

.booking-table-row small {
  color: var(--muted);
  font-size: 9px;
}

.invitee-cell {
  align-items: center;
  gap: 9px;
  flex-direction: row !important;
}

.invitee-cell > span {
  flex-direction: column;
  display: flex;
}

.table-footer {
  color: var(--muted);
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  font-size: 10px;
  display: flex;
}

.table-footer div {
  display: flex;
}

.table-footer button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 5px 8px;
  font-size: 10px;
}

.table-footer button.is-active {
  background: var(--brand);
  color: #fff;
}

.empty-state {
  text-align: center;
  padding: 45px 20px;
}

.empty-icon {
  width: 44px;
  height: 44px;
  color: var(--muted);
  background: #f0f1f5;
  border-radius: 12px;
  place-items: center;
  margin: 0 auto 12px;
  display: grid;
}

.empty-state h3 {
  margin: 0 0 5px;
}

.empty-state p {
  color: var(--muted);
  font-size: 11px;
}

.drawer-layer, .modal-layer {
  z-index: 60;
  position: fixed;
  inset: 0;
}

.drawer-scrim, .modal-scrim {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: #191d2857;
  border: 0;
  position: absolute;
  inset: 0;
}

.detail-drawer {
  width: min(430px, 100%);
  box-shadow: var(--shadow-lg);
  background: #fff;
  padding: 22px;
  position: absolute;
  inset: 0 0 0 auto;
  overflow: auto;
}

.detail-drawer header {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 16px;
  display: flex;
}

.detail-drawer header > div {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.detail-drawer header h2 {
  margin: 7px 0 0;
}

.detail-drawer header span {
  color: var(--muted);
  font-size: 9px;
}

.drawer-invitee {
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  display: flex;
}

.drawer-invitee > div {
  flex-direction: column;
  display: flex;
}

.drawer-invitee span {
  color: var(--muted);
  font-size: 11px;
}

.detail-list {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 5px 14px;
}

.detail-list > div {
  grid-template-columns: 25px 1fr;
  gap: 8px;
  padding: 11px 0;
  display: grid;
}

.detail-list > div + div {
  border-top: 1px solid var(--line);
}

.detail-list svg {
  color: var(--brand);
}

.detail-list span {
  flex-direction: column;
  display: flex;
}

.detail-list small {
  color: var(--subtle);
  font-size: 9px;
}

.detail-list strong {
  font-size: 11px;
}

.detail-list em {
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
}

.drawer-answer {
  margin-top: 18px;
}

.drawer-answer h3 {
  margin-bottom: 9px;
}

.drawer-answer small {
  color: var(--muted);
}

.drawer-answer p {
  background: #f7f7fa;
  border-radius: 9px;
  padding: 12px;
  font-size: 11px;
}

.drawer-actions {
  gap: 8px;
  margin-top: 20px;
  display: flex;
}

.integration-summary {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  display: grid;
}

.integration-summary > div {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  gap: 11px;
  padding: 14px;
  display: flex;
}

.summary-icon {
  background: var(--green-soft);
  width: 34px;
  height: 34px;
  color: var(--green);
  border-radius: 10px;
  place-items: center;
  display: grid;
}

.summary-icon.warning {
  background: var(--amber-soft);
  color: var(--amber);
}

.integration-summary > div > div {
  flex-direction: column;
  display: flex;
}

.integration-summary strong {
  font-size: 12px;
}

.integration-summary span {
  color: var(--muted);
  font-size: 10px;
}

.integration-groups {
  flex-direction: column;
  gap: 24px;
  display: flex;
}

.group-title {
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  display: flex;
}

.group-title h2 {
  margin: 0;
}

.group-title span {
  color: var(--subtle);
  font-size: 10px;
}

.integration-grid {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  display: grid;
}

.integration-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  grid-template-columns: 44px 1fr auto;
  align-items: start;
  gap: 13px;
  padding: 16px;
  display: grid;
}

.integration-mark {
  color: #fff;
  border-radius: 11px;
  place-items: center;
  width: 42px;
  height: 42px;
  font-weight: 800;
  display: grid;
}

.mark-google {
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.mark-outlook {
  background: #1674d1;
}

.mark-zoom {
  background: #4a8cff;
}

.mark-stripe {
  background: #635bff;
}

.integration-copy > div {
  align-items: center;
  gap: 8px;
  display: flex;
}

.integration-copy h3 {
  margin: 0;
}

.integration-copy p {
  color: var(--muted);
  margin: 6px 0;
  font-size: 10px;
}

.integration-detail {
  color: var(--subtle);
  font-size: 9px;
}

.modal {
  width: min(440px, 100% - 30px);
  box-shadow: var(--shadow-lg);
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.modal-mark {
  margin-bottom: 15px;
}

.modal h2 {
  margin-bottom: 7px;
  font-size: 21px;
}

.modal > p {
  color: var(--muted);
  font-size: 12px;
}

.modal-details {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 16px 0;
}

.modal-details > div {
  justify-content: space-between;
  padding: 10px 12px;
  display: flex;
}

.modal-details > div + div {
  border-top: 1px solid var(--line);
}

.modal-details span {
  color: var(--muted);
  font-size: 10px;
}

.modal-details strong {
  font-size: 10px;
}

.modal-actions {
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
  display: flex;
}

.settings-layout {
  grid-template-columns: 180px minmax(0, 720px);
  gap: 20px;
  display: grid;
}

.settings-nav {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.settings-nav button {
  text-align: left;
  color: var(--muted);
  background: none;
  border: 0;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  padding: 9px 11px;
  font-size: 12px;
  display: flex;
}

.settings-nav button.is-active {
  color: var(--brand-dark);
  box-shadow: var(--shadow);
  background: #fff;
  font-weight: 700;
}

.settings-heading {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.settings-heading h2 {
  margin: 0 0 4px;
}

.settings-heading p {
  color: var(--muted);
  margin: 0;
  font-size: 11px;
}

.profile-photo {
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  display: flex;
}

.profile-photo > div {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  display: flex;
}

.profile-photo > div span {
  color: var(--subtle);
  font-size: 9px;
}

.settings-content > .field {
  margin-top: 15px;
}

.settings-footer {
  border-top: 1px solid var(--line);
  justify-content: flex-end;
  gap: 8px;
  margin-top: 24px;
  padding-top: 16px;
  display: flex;
}

.brand-editor {
  grid-template-columns: 1fr 250px;
  gap: 24px;
  display: grid;
}

.brand-form {
  flex-direction: column;
  gap: 15px;
  display: flex;
}

.upload-box {
  align-items: center;
  gap: 12px;
  display: flex;
}

.upload-box > div {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  display: flex;
}

.upload-box small {
  color: var(--muted);
  font-size: 9px;
}

.brand-logo-thumb {
  border: 1px solid var(--line);
  object-fit: contain;
  background: #fff;
  border-radius: 11px;
  flex: none;
  width: 54px;
  height: 54px;
  padding: 4px;
}

.brand-logo-fallback {
  place-items: center;
  padding: 0;
  font-size: 16px;
  font-weight: 800;
  display: grid;
}

.logo-upload-actions {
  align-items: center;
  gap: 6px;
  display: flex;
}

.visually-hidden-file {
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  overflow: hidden !important;
}

.uploaded-brand-logo {
  object-fit: contain;
  background: #fff;
  padding: 3px;
}

.brand-color-row {
  gap: 8px;
  display: flex;
}

.brand-color-row input[type="color"] {
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px;
  height: 38px;
  padding: 3px;
}

.brand-preview {
  background: #f3f4f8;
  border-radius: 12px;
  padding: 12px;
}

.brand-preview > span {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-size: 9px;
}

.brand-preview-card {
  text-align: center;
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 10px;
  margin-top: 9px;
  padding: 20px;
}

.brand-preview-card .mini-logo {
  margin: auto;
}

.brand-preview-card > strong {
  margin-top: 7px;
  display: block;
}

.brand-preview-card h3 {
  margin: 20px 0 5px;
}

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

.brand-preview-card button {
  color: #fff;
  border: 0;
  border-radius: 7px;
  padding: 8px 13px;
  font-size: 10px;
  font-weight: 700;
}

.brand-preview-card small {
  color: var(--subtle);
  margin-top: 18px;
  font-size: 8px;
  display: block;
}

.member-list {
  border: 1px solid var(--line);
  border-radius: 10px;
}

.member-row {
  grid-template-columns: 38px 1fr auto 36px;
  align-items: center;
  gap: 9px;
  padding: 11px;
  display: grid;
}

.member-row + .member-row {
  border-top: 1px solid var(--line);
}

.member-row > div {
  flex-direction: column;
  display: flex;
}

.member-row strong {
  font-size: 11px;
}

.member-row span {
  color: var(--muted);
  font-size: 9px;
}

.plan-card {
  background: var(--brand-soft);
  border: 1px solid #d9d5ff;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  display: flex;
}

.plan-card h3 {
  margin: 9px 0 3px;
  font-size: 24px;
}

.plan-card h3 span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.plan-card p {
  color: var(--muted);
  margin: 0;
  font-size: 10px;
}

.usage-list {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-top: 16px;
}

.usage-list div {
  justify-content: space-between;
  padding: 11px;
  display: flex;
}

.usage-list div + div {
  border-top: 1px solid var(--line);
}

.usage-list span {
  color: var(--muted);
  font-size: 11px;
}

.usage-list strong {
  font-size: 11px;
}

.public-page {
  background: #f8f8fb;
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.public-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  padding: 0 max(24px, 50vw - 590px);
  display: flex;
}

.public-header > div:last-child {
  color: var(--muted);
  align-items: center;
  gap: 5px;
  display: flex;
}

.public-header select {
  background: none;
  border: 0;
  font-size: 11px;
}

.booking-shell {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  grid-template-columns: 360px minmax(0, 1fr);
  width: min(1160px, 100% - 40px);
  margin: 38px auto;
  display: grid;
  overflow: hidden;
  box-shadow: 0 16px 60px #1c1f2c14;
}

.booking-info {
  border-right: 1px solid var(--line);
  background: linear-gradient(150deg, #fefeff, #f7f6ff);
  padding: 36px;
}

.booking-brand {
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  display: flex;
}

.booking-brand > div {
  flex-direction: column;
  display: flex;
}

.booking-brand strong {
  font-size: 12px;
}

.booking-brand span {
  color: var(--muted);
  font-size: 9px;
}

.host-label {
  color: var(--muted);
  font-size: 11px;
}

.booking-info h1 {
  margin: 5px 0 10px;
  font-size: 27px;
}

.booking-info > p {
  color: var(--muted);
  font-size: 12px;
}

.public-meta {
  flex-direction: column;
  gap: 10px;
  margin: 22px 0;
  display: flex;
}

.public-meta span {
  color: #515a6b;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  display: flex;
}

.public-meta svg {
  color: var(--brand);
}

.booking-safe-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  gap: 8px;
  padding-top: 20px;
  font-size: 9px;
  display: flex;
}

.booking-safe-note svg {
  color: var(--green);
  flex: none;
}

.booking-flow {
  padding: 28px 36px;
}

.stepper {
  color: var(--subtle);
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 9px;
  font-weight: 650;
  display: grid;
}

.stepper span {
  align-items: center;
  gap: 5px;
  display: flex;
}

.stepper i {
  background: #eef0f4;
  border-radius: 50%;
  place-items: center;
  width: 20px;
  height: 20px;
  font-style: normal;
  display: grid;
}

.stepper b {
  background: var(--line);
  height: 1px;
}

.stepper .is-active {
  color: var(--brand-dark);
}

.stepper .is-active i {
  background: var(--brand);
  color: #fff;
}

.stepper .is-complete i {
  background: var(--green-soft);
  color: var(--green);
}

.flow-panel {
  max-width: 660px;
}

.flow-heading h2 {
  margin: 0 0 3px;
}

.flow-heading p {
  color: var(--muted);
  margin: 0;
  font-size: 11px;
}

.duration-options {
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 14px 0 24px;
  display: grid;
}

.duration-options button {
  border: 1px solid var(--line-strong);
  text-align: left;
  background: #fff;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px;
  display: flex;
  position: relative;
}

.duration-options button > span {
  flex-direction: column;
  font-size: 11px;
  display: flex;
}

.duration-options small {
  color: var(--brand);
  font-size: 8px;
}

.duration-options i {
  display: none;
}

.duration-options button.is-selected i {
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  place-items: center;
  width: 20px;
  height: 20px;
  display: grid;
}

.calendar-heading {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.booking-calendar {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-top: 12px;
  overflow: hidden;
}

.calendar-week {
  border-bottom: 1px solid var(--line);
  background: #fafafd;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  padding: 12px;
  display: grid;
}

.calendar-week button {
  background: none;
  border: 0;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 7px 3px;
  display: flex;
  position: relative;
}

.calendar-week button span {
  color: var(--muted);
  font-size: 8px;
}

.calendar-week button strong {
  font-size: 12px;
}

.calendar-week button i {
  background: var(--brand);
  border-radius: 50%;
  width: 3px;
  height: 3px;
}

.calendar-week button.is-selected {
  background: var(--brand);
  color: #fff;
}

.time-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 13px;
  display: grid;
}

.time-grid button {
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  font-size: 10px;
  display: flex;
}

.time-grid button:hover {
  border-color: var(--brand);
}

.time-grid button.is-selected {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand-dark);
  font-weight: 700;
}

.flow-next {
  width: 100%;
  min-height: 44px;
  margin-top: 16px;
}

.back-link {
  color: var(--muted);
  background: none;
  border: 0;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
  padding: 0;
  font-size: 10px;
  display: flex;
}

.details-form {
  flex-direction: column;
  gap: 13px;
  margin-top: 18px;
  display: flex;
}

.consent-check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  display: grid;
}

.consent-check input {
  opacity: 0;
  position: absolute;
}

.consent-check > span {
  border: 1px solid var(--line-strong);
  color: #0000;
  border-radius: 4px;
  place-items: center;
  width: 17px;
  height: 17px;
  display: grid;
}

.consent-check input:checked + span {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.consent-check p {
  color: var(--muted);
  margin: 0;
  font-size: 10px;
}

.consent-check a {
  color: var(--brand-dark);
  text-decoration: underline;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-top: 16px;
  overflow: hidden;
}

.review-event {
  background: #fafafd;
  align-items: center;
  gap: 10px;
  padding: 14px;
  display: flex;
}

.review-event > span {
  border-radius: 99px;
  width: 4px;
  height: 38px;
}

.review-event > div {
  flex-direction: column;
  display: flex;
}

.review-event small {
  color: var(--muted);
  font-size: 9px;
}

.review-card dl {
  margin: 0;
  padding: 5px 14px;
}

.review-card dl > div {
  grid-template-columns: 120px 1fr;
  padding: 10px 0;
  display: grid;
}

.review-card dl > div + div {
  border-top: 1px solid var(--line);
}

.review-card dt {
  color: var(--muted);
  align-items: center;
  gap: 6px;
  font-size: 10px;
  display: flex;
}

.review-card dd {
  flex-direction: column;
  margin: 0;
  font-size: 11px;
  font-weight: 650;
  display: flex;
}

.review-card dd small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
}

.refund-note {
  background: var(--amber-soft);
  border-radius: 9px;
  margin-top: 12px;
  padding: 11px;
}

.refund-note strong {
  font-size: 10px;
}

.refund-note p {
  color: #805312;
  margin: 3px 0 0;
  font-size: 9px;
}

.secure-line {
  text-align: center;
  color: var(--muted);
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 9px;
  display: flex;
}

.form-error {
  background: var(--red-soft);
  color: var(--red);
  border-radius: 8px;
  margin-top: 10px;
  padding: 10px;
  font-size: 10px;
}

.public-footer {
  width: min(1160px, 100% - 40px);
  color: var(--subtle);
  justify-content: space-between;
  margin: auto auto 0;
  padding: 20px 0;
  font-size: 9px;
  display: flex;
}

.public-footer span:last-child {
  gap: 14px;
  display: flex;
}

.outcome-shell, .manage-shell {
  text-align: center;
  width: min(580px, 100% - 36px);
  margin: 65px auto;
}

.success-mark {
  background: var(--green-soft);
  width: 70px;
  height: 70px;
  color: var(--green);
  border-radius: 50%;
  place-items: center;
  margin: 0 auto 16px;
  display: grid;
  box-shadow: 0 0 0 9px #16836f0f;
}

.outcome-eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 10px;
  font-weight: 800;
}

.outcome-shell h1, .manage-shell h1 {
  margin: 7px 0;
  font-size: 30px;
}

.outcome-shell > p, .manage-shell > p {
  color: var(--muted);
  max-width: 470px;
  margin: 0 auto 24px;
  font-size: 12px;
}

.confirmation-card, .manage-summary, .current-booking, .manage-form, .reschedule-picker {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: left;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
}

.confirmation-brand {
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 11px;
  padding-bottom: 14px;
  display: flex;
}

.confirmation-brand > div {
  flex-direction: column;
  display: flex;
}

.confirmation-brand span {
  color: var(--muted);
  font-size: 9px;
}

.confirmation-card dl {
  margin: 6px 0 14px;
}

.confirmation-card dl > div {
  grid-template-columns: 120px 1fr;
  padding: 10px 0;
  display: grid;
}

.confirmation-card dt {
  color: var(--muted);
  gap: 7px;
  font-size: 10px;
  display: flex;
}

.confirmation-card dd {
  flex-direction: column;
  margin: 0;
  font-size: 11px;
  font-weight: 650;
  display: flex;
}

.confirmation-card dd small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
}

.manage-row {
  color: var(--muted);
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 10px;
  display: flex;
}

.manage-row a {
  color: var(--brand-dark);
  font-weight: 700;
}

.reference {
  color: var(--subtle);
  margin-top: 12px;
  display: block;
}

.manage-summary {
  gap: 13px;
  margin-bottom: 14px;
  display: flex;
}

.manage-summary > div {
  flex-direction: column;
  display: flex;
}

.manage-summary > div > span {
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 10px;
}

.manage-summary small {
  color: var(--muted);
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  font-size: 9px;
  display: flex;
}

.manage-form {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.manage-form > a {
  text-align: center;
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 700;
}

.current-booking {
  background: var(--brand-soft);
  flex-direction: column;
  margin-bottom: 14px;
  display: flex;
}

.current-booking span, .current-booking small {
  color: var(--muted);
  font-size: 9px;
}

.reschedule-picker h2 {
  text-align: center;
}

.reschedule-picker .calendar-week {
  border: 1px solid var(--line);
  border-radius: 10px;
}

.skeleton {
  background: linear-gradient(90deg, #eeeef2 25%, #f7f7f9 45%, #eeeef2 65%) 0 0 / 250% 100%;
  border-radius: 10px;
  animation: 1.3s infinite shimmer;
}

.skeleton-title {
  width: 260px;
  height: 35px;
}

.skeleton-card {
  height: 100px;
}

.skeleton-panel {
  height: 360px;
}

@keyframes shimmer {
  to {
    background-position: -250% 0;
  }
}

.error-state {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  display: flex;
}

.error-state > span {
  background: var(--red-soft);
  width: 50px;
  height: 50px;
  color: var(--red);
  border-radius: 12px;
  place-items: center;
  display: grid;
}

.error-state h1 {
  margin: 14px 0 5px;
}

.error-state p {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .editor-layout {
    grid-template-columns: 150px minmax(500px, 1fr);
  }

  .editor-preview {
    display: none;
  }

  .availability-layout {
    grid-template-columns: 1fr;
  }

  .availability-aside {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .integration-grid {
    grid-template-columns: 1fr;
  }

  .booking-shell {
    grid-template-columns: 320px 1fr;
  }

  .brand-editor {
    grid-template-columns: 1fr;
  }

  .brand-preview {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --sidebar: 250px;
  }

  .sidebar {
    box-shadow: var(--shadow-lg);
    transition: all .2s;
    transform: translateX(-100%);
  }

  .sidebar.is-open {
    transform: translateX(0);
  }

  .sidebar-close, .mobile-menu {
    display: grid;
  }

  .sidebar-scrim {
    z-index: 25;
    background: #16192459;
    border: 0;
    position: fixed;
    inset: 0;
  }

  .app-frame {
    margin-left: 0;
  }

  .topbar {
    padding: 0 16px;
  }

  .public-link {
    display: none;
  }

  .main-content {
    padding: 26px 20px 50px;
  }

  .dashboard-grid, .two-panel-grid, .event-summary-grid, .event-card-grid {
    grid-template-columns: 1fr;
  }

  .editor-page {
    margin: -26px -20px -50px;
  }

  .editor-topbar {
    align-items: flex-start;
    height: auto;
    min-height: 70px;
    padding: 12px 16px;
    top: 64px;
  }

  .editor-title .badge, .editor-actions .button-secondary:first-child {
    display: none;
  }

  .editor-layout {
    padding: 20px;
    display: block;
  }

  .editor-progress, .booking-table-head {
    display: none;
  }

  .booking-table-row {
    grid-template-columns: 1fr auto;
  }

  .booking-table-row > span:nth-child(2), .booking-table-row > span:nth-child(3) {
    grid-column: 1;
  }

  .booking-table-row > span:nth-child(4) {
    grid-area: 1 / 2;
  }

  .booking-table-row > span:nth-child(5) {
    grid-area: 3 / 2;
  }

  .settings-layout {
    grid-template-columns: 1fr;
  }

  .settings-nav {
    flex-direction: row;
    overflow: auto;
  }

  .settings-nav button {
    white-space: nowrap;
  }

  .booking-shell {
    grid-template-columns: 1fr;
    width: min(680px, 100% - 24px);
    margin: 18px auto;
  }

  .booking-info {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px;
  }

  .booking-info h1 {
    font-size: 23px;
  }

  .booking-brand {
    margin-bottom: 20px;
  }

  .booking-flow {
    padding: 24px;
  }

  .public-meta {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .public-header {
    padding: 0 16px;
  }

  .integration-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 24px;
  }

  .page-header {
    flex-direction: column;
  }

  .page-actions, .page-actions > .button {
    width: 100%;
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .metric-card {
    flex-direction: column;
    gap: 3px;
    padding: 14px;
    display: flex;
  }

  .metric-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
  }

  .metric-card > strong {
    font-size: 20px;
  }

  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .search-field {
    width: 100%;
  }

  .segmented {
    overflow: auto;
  }

  .event-card-body p {
    min-height: 0;
  }

  .event-card-stats {
    grid-template-columns: 1fr;
  }

  .event-card-stats > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .editor-topbar {
    align-items: center;
  }

  .editor-title > div, .editor-title > .badge {
    display: none;
  }

  .editor-actions {
    margin-left: auto;
  }

  .editor-actions .button-secondary {
    display: none;
  }

  .editor-actions .button {
    padding: 8px;
    font-size: 11px;
  }

  .form-grid, .two-column, .inline-fields {
    grid-template-columns: 1fr;
  }

  .form-grid > .field:nth-child(3) {
    grid-column: auto;
  }

  .duration-row {
    grid-template-columns: 24px 1fr 85px 34px;
  }

  .duration-row > .money-input, .duration-row > .muted, .duration-row > .badge {
    grid-column: 2 / 4;
  }

  .color-options {
    flex-wrap: wrap;
  }

  .availability-aside {
    grid-template-columns: 1fr;
  }

  .schedule-day {
    grid-template-columns: 82px 1fr 30px;
  }

  .time-window {
    grid-template-columns: 1fr;
  }

  .time-window > span {
    display: none;
  }

  .time-window > .icon-button {
    position: absolute;
    right: 30px;
  }

  .bookings-toolbar select, .bookings-toolbar > .button {
    width: 100%;
  }

  .table-footer {
    flex-direction: column;
    gap: 10px;
  }

  .drawer-actions {
    flex-direction: column;
  }

  .integration-card {
    grid-template-columns: 40px 1fr;
  }

  .integration-card > .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .settings-content {
    padding: 18px;
  }

  .settings-content .two-column {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    align-items: flex-start;
  }

  .member-row {
    grid-template-columns: 38px 1fr 34px;
  }

  .member-row > .badge {
    display: none;
  }

  .plan-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .duration-options {
    grid-template-columns: 1fr;
  }

  .calendar-week {
    gap: 2px;
    padding: 8px 5px;
  }

  .time-grid {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
  }

  .booking-flow {
    padding: 20px 16px;
  }

  .booking-info {
    padding: 20px;
  }

  .public-meta {
    grid-template-columns: 1fr;
  }

  .stepper span {
    font-size: 0;
  }

  .stepper span i {
    font-size: 9px;
  }

  .review-card dl > div, .confirmation-card dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .public-footer {
    width: calc(100% - 28px);
  }

  .public-footer span:last-child a:not(:last-child) {
    display: none;
  }

  .manage-shell, .outcome-shell {
    margin: 38px auto;
  }

  .outcome-shell h1, .manage-shell h1 {
    font-size: 25px;
  }

  .time-grid-scroll {
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    max-height: 420px;
    overflow-y: auto;
  }

  .time-grid-scroll:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: -3px;
  }
}

.exception-row.has-conflict {
  border-color: var(--red);
  background: var(--red-soft);
}

.exception-row.has-conflict input[type="date"] {
  border-color: var(--red);
}

.exception-row.has-conflict small {
  color: var(--red);
  margin-top: 4px;
  font-weight: 700;
  display: block;
}

.member-controls {
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  display: flex;
}

.member-controls select {
  min-width: 94px;
}

.member-controls .button {
  min-height: 36px;
  padding: 7px 10px;
}

@media (max-width: 540px) {
  .member-row:has(.member-controls) {
    grid-template-columns: 38px 1fr;
  }

  .member-controls {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .member-controls select, .member-controls .button {
    flex: 1;
  }
}

.auth-inline-link {
  color: var(--brand-dark);
  align-self: flex-end;
  font-size: 11px;
  font-weight: 700;
}

.auth-actions {
  flex-wrap: wrap;
  gap: 9px;
  display: flex;
}

.recovery-card {
  width: min(480px, 100% - 28px);
}

.recovery-result {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.recovery-result p {
  color: var(--muted);
  font-size: 12px;
}

.invitation-form {
  grid-template-columns: minmax(220px, 1fr) 160px auto;
  align-items: end;
  gap: 12px;
  display: grid;
}

.invitation-list, .inbox-list {
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  display: flex;
}

.invitation-row, .inbox-message {
  border: 1px solid var(--line);
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 11px 12px;
  display: flex;
}

.invitation-row > div, .inbox-message > div {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.invitation-row span, .inbox-message span {
  color: var(--muted);
  font-size: 9px;
}

.local-inbox {
  padding: 20px;
}

.manage-recovery-form {
  border-top: 1px solid var(--line);
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  display: flex;
}

.sidebar-profile {
  min-width: 0;
  overflow: hidden;
}

.sidebar-profile span {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  display: block;
  overflow: hidden;
}

@media (max-width: 820px) {
  .sidebar {
    visibility: hidden;
    pointer-events: none;
    contain: paint;
    transition: transform .2s, visibility 0s linear .2s;
    overflow: hidden;
    transform: translateX(calc(-100% - 2px));
  }

  .sidebar.is-open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
    transform: translateX(0);
  }
}

@media (max-width: 540px) {
  .auth-actions {
    flex-direction: column;
  }

  .auth-actions .button {
    width: 100%;
  }

  .invitation-form {
    grid-template-columns: 1fr;
  }

  .invitation-row, .inbox-message {
    flex-direction: column;
    align-items: flex-start;
  }

  .inbox-message .button {
    width: 100%;
  }
}

:root {
  --subtle: #667085;
}

.nav-label, .segmented button {
  color: #596273;
}

a:focus-visible, button:focus-visible, [role="button"]:focus-visible, [role="tab"]:focus-visible, [role="radio"]:focus-visible, [role="switch"]:focus-visible {
  outline-offset: 3px;
  outline: 3px solid #2563eb6b;
}

[role="alert"]:focus {
  outline-offset: 3px;
  outline: 3px solid #bd4a4659;
}

.sidebar-profile span, .member-row span, .invitation-row strong, .inbox-message strong, .drawer-invitee span {
  overflow-wrap: anywhere;
}

.editor-tabs [role="tab"] {
  min-height: 36px;
}

.drawer-scrim {
  cursor: default;
}

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

.brand-preview > span, .onboarding-next > span, .badge-neutral {
  color: #596273;
}

.button-primary:disabled {
  opacity: 1;
  color: #1d4ed8;
  box-shadow: none;
  background: #dbeafe;
  border-color: #dbeafe;
}

.auth-page {
  background: radial-gradient(circle at top, #eaf2ff 0, #f7f7fb 42%, #f2f3f7 100%);
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  display: grid;
}

.auth-card {
  border: 1px solid var(--line);
  width: min(440px, 100%);
  box-shadow: var(--shadow-lg);
  background: #fff;
  border-radius: 18px;
  flex-direction: column;
  gap: 24px;
  padding: 34px;
  display: flex;
}

.auth-card h1 {
  margin: 6px 0 8px;
  font-size: 28px;
}

.auth-card p {
  color: var(--muted);
  margin: 0;
}

.auth-card form {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.auth-card form label {
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.auth-card form input, .auth-card form select {
  border: 1px solid var(--line-strong);
  height: 44px;
  font: inherit;
  background: #fff;
  border-radius: 9px;
  padding: 0 12px;
}

.auth-card form input:focus, .auth-card form select:focus {
  border-color: var(--brand);
  outline: 3px solid #2563eb2e;
}

.auth-card .spinner {
  align-self: center;
}

.auth-switch {
  text-align: center;
  font-size: 12px;
}

.auth-switch a {
  color: var(--brand-dark);
  font-weight: 750;
}

.signup-card {
  width: min(720px, 100%);
}

.signup-grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

.password-rules {
  font-size: 11px;
  margin-top: -10px !important;
}

.onboarding-card {
  width: min(560px, 100%);
}

.onboarding-success {
  background: var(--green-soft);
  width: 48px;
  height: 48px;
  color: var(--green);
  border-radius: 14px;
  place-items: center;
  display: grid;
}

.onboarding-summary {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 0;
  overflow: hidden;
}

.onboarding-summary > div {
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 12px 15px;
  display: grid;
}

.onboarding-summary > div + div {
  border-top: 1px solid var(--line);
}

.onboarding-summary dt {
  color: var(--muted);
  font-size: 11px;
}

.onboarding-summary dd {
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.onboarding-summary dd small {
  color: var(--muted);
  font-weight: 400;
}

.onboarding-next {
  background: var(--brand-soft);
  border-radius: 11px;
  flex-direction: column;
  padding: 14px;
  display: flex;
}

.onboarding-next strong {
  font-size: 12px;
}

.onboarding-next span {
  color: var(--muted);
  margin-top: 3px;
  font-size: 11px;
}

.account-settings-grid {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  display: grid;
}

.workspace-overview {
  border: 1px solid var(--line);
  border-radius: 11px;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px;
  display: flex;
}

.workspace-overview .workspace-dot {
  width: 42px;
  height: 42px;
}

.workspace-overview > div {
  flex-direction: column;
  display: flex;
}

.workspace-overview span {
  color: var(--muted);
  font-size: 11px;
}

.workspace-facts {
  border-top: 1px solid var(--line);
  margin: 16px 0 0;
}

.workspace-facts > div {
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  display: flex;
}

.workspace-facts dt {
  color: var(--muted);
  font-size: 10px;
}

.workspace-facts dd {
  overflow-wrap: anywhere;
  text-align: right;
  margin: 0;
  font-size: 10px;
  font-weight: 700;
}

.security-form {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.member-row {
  grid-template-columns: 38px 1fr auto;
}

.member-row .badge {
  align-self: center;
}

@media (max-width: 820px) {
  .account-settings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .auth-page {
    padding: 14px;
  }

  .auth-card {
    gap: 20px;
    padding: 24px 20px;
  }

  .signup-grid {
    grid-template-columns: 1fr;
  }

  .onboarding-summary > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .member-row {
    grid-template-columns: 38px 1fr;
  }

  .member-row > .badge {
    grid-column: 2;
  }

  .workspace-facts > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .workspace-facts dd {
    text-align: left;
  }
}

.onboarding-next > span {
  color: #596273;
}

.member-row .badge-success, .invitation-row .badge-success {
  color: #0d6f5f;
}

.editor-title .badge-neutral {
  color: #596273;
}

.badge-warning {
  color: #965c10;
}

.badge-danger {
  color: #b74440;
}

.timezone-pill {
  color: #596273;
}

.calendar-week button.is-selected span {
  color: #fff;
}

@media (max-width: 540px) {
  .schedule-day {
    grid-template-columns: 82px minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .time-window > .icon-button {
    justify-self: end;
    position: static;
  }

  .add-window {
    justify-self: end;
  }
}

.button.button-primary {
  color: #fff;
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.button.button-primary:disabled {
  opacity: 1;
  color: #1d4ed8;
  box-shadow: none;
  background: #dbeafe;
  border-color: #dbeafe;
}

:root {
  --ink: #10213d;
  --muted: #52627a;
  --subtle: #5b6b82;
  --line: #dce5f1;
  --line-strong: #c8d5e6;
  --surface: #fff;
  --canvas: #f5f8fc;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-soft: #eaf2ff;
  --green: #116b5c;
  --green-soft: #e5f2ee;
  --amber: #875814;
  --amber-soft: #fbf2df;
  --red: #a83f3b;
  --red-soft: #faeceb;
  --blue: #2563eb;
  --blue-soft: #eaf2ff;
  --shadow: 0 1px 2px #141c1e09;
  --shadow-lg: 0 18px 48px #141c1e24;
  --radius: 10px;
  --radius-sm: 7px;
  --sidebar: 244px;
}

html {
  background: var(--canvas);
}

body {
  letter-spacing: -.002em;
}

h1 {
  letter-spacing: -.045em;
  font-size: 30px;
}

h2 {
  letter-spacing: -.025em;
}

.panel, .metric-card, .event-card, .form-card, .mini-booking-card, .confirmation-card, .manage-summary, .current-booking, .manage-form, .reschedule-picker {
  box-shadow: none;
}

.button {
  border-radius: 7px;
  min-height: 39px;
  transition: background-color .14s, border-color .14s, color .14s;
}

.button:hover {
  transform: none;
}

.button.button-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: none;
}

.button-secondary {
  background: #fff;
}

.button-secondary:hover {
  background: #f5f7f6;
  border-color: #aeb8b5;
}

.button-ghost:hover {
  background: #eef1f0;
}

.brand-mark {
  background: var(--brand);
  border-radius: 7px;
}

.avatar {
  color: var(--brand-dark);
  box-shadow: 0 0 0 1px var(--line);
  background: #edf1f0;
  border-color: #fff;
}

.sidebar {
  background: #fafbf9;
  padding: 22px 14px 16px;
}

.sidebar-brand {
  padding-bottom: 28px;
}

.nav-label {
  color: #5b6b82;
  letter-spacing: .12em;
  font-size: 9px;
}

.nav-item {
  color: #505b63;
  border-radius: 7px;
}

.nav-item:hover {
  background: #f0f3f1;
}

.nav-item.is-active {
  color: var(--brand-dark);
  box-shadow: inset 3px 0 0 var(--brand);
  background: #e8f0ef;
}

.nav-item.is-active svg {
  color: var(--brand-dark);
}

.sidebar-profile {
  padding-top: 17px;
}

.topbar {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #fffffff5;
  height: 66px;
  padding: 0 32px;
}

.workspace-dot {
  background: #20282d;
  border-radius: 7px;
}

.public-link {
  border-radius: 7px;
}

.main-content {
  max-width: 1360px;
  padding: 40px 44px 72px;
}

.page-stack {
  gap: 26px;
}

.page-header {
  padding-bottom: 2px;
}

.page-header p {
  max-width: 680px;
}

.eyebrow {
  color: var(--brand-dark);
}

.metric-grid {
  gap: 12px;
}

.metric-card {
  border-radius: 9px;
  grid-template-columns: auto 1fr;
  padding: 18px;
}

.metric-icon, .quick-icon {
  color: var(--brand-dark);
  background: #edf1f0;
  border-radius: 7px;
}

.metric-brand, .metric-green, .metric-amber, .metric-blue {
  color: var(--brand-dark);
  background: #edf1f0;
}

.metric-card > strong {
  font-size: 25px;
}

.date-chip {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #f8faf9;
  border-radius: 7px;
}

.booking-row, .quick-actions > a {
  border-radius: 7px;
}

.booking-row:hover {
  background: #f3f6f4;
}

.event-summary {
  border-radius: 8px;
}

.event-summary:hover {
  background: #fafcfb;
  border-color: #aeb8b5;
}

.segmented {
  background: #e9ecea;
  border-radius: 7px;
  padding: 3px;
}

.segmented button {
  border-radius: 5px;
}

.segmented button.is-active {
  box-shadow: none;
  border: 1px solid var(--line);
}

.event-card {
  border-radius: 9px;
}

.event-card-stats, .booking-table-head {
  background: #f7f8f6;
}

.event-card-accent {
  height: 3px;
}

.toggle.is-on {
  background: var(--brand);
}

.editor-page {
  background: var(--canvas);
}

.editor-layout {
  gap: 26px;
}

.form-card {
  border-radius: 9px;
  padding: 22px;
}

.number-chip {
  color: var(--brand-dark);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
}

.editor-tabs button.is-active {
  color: var(--brand-dark);
  border-bottom-color: var(--brand);
}

.mini-booking-card {
  border-radius: 10px;
}

.mini-booking-card > button {
  background: var(--brand);
  border-radius: 7px;
}

.progress-ring {
  background: conic-gradient(var(--brand) var(--progress),#dce5f1 0);
}

.mini-week-grid > div span {
  background: var(--brand);
  opacity: .72;
}

.timezone-pill {
  background: #eaeeec;
}

.exception-icon, .summary-icon {
  border-radius: 7px;
}

.booking-table-row:hover {
  background: #f6f8f7;
}

.detail-drawer {
  box-shadow: -12px 0 42px #141c1e1f;
}

.drawer-scrim, .modal-scrim {
  background: #141b1d6b;
}

.integration-summary > div, .integration-card {
  border-radius: 9px;
}

.integration-mark {
  color: var(--ink) !important;
  border: 1px solid var(--line) !important;
  box-shadow: none !important;
  background: #f0f3f2 !important;
  border-radius: 8px !important;
}

.mark-google {
  color: #305f85 !important;
}

.mark-stripe {
  color: #574a9c !important;
}

.local-inbox {
  border-radius: 9px;
}

.group-title span {
  color: #5b6b82;
}

.settings-content {
  padding: 26px;
}

.workspace-overview, .member-list, .invitation-row, .inbox-message, .brand-preview, .brand-preview-card {
  border-radius: 8px;
}

.brand-preview-card {
  box-shadow: none;
}

.brand-logo-thumb {
  border-radius: 8px;
}

.auth-card {
  border-radius: 12px;
  padding: 38px;
  box-shadow: 0 18px 50px #151d1e17;
}

.auth-card form input, .auth-card form select {
  border-radius: 7px;
}

.onboarding-success {
  border-radius: 9px;
}

.onboarding-next {
  background: var(--brand-soft);
  border-radius: 8px;
}

.public-header {
  border-bottom-color: var(--line);
  background: #fff;
}

.public-header .public-workspace-brand {
  align-items: center;
  gap: 9px;
  display: flex;
}

.booking-shell {
  border-radius: 12px;
  box-shadow: 0 16px 50px #141c1e14;
}

.booking-brand {
  margin-bottom: 28px;
}

.booking-safe-note {
  font-size: 10px;
}

.duration-options button, .booking-calendar, .review-card {
  border-radius: 8px;
}

.duration-options button.is-selected i, .calendar-week button.is-selected, .stepper .is-active i, .consent-check input:checked + span {
  background: var(--brand);
}

.time-grid button {
  border-radius: 6px;
}

.confirmation-card, .manage-summary, .manage-form, .reschedule-picker {
  border-radius: 10px;
}

.success-mark {
  width: 64px;
  height: 64px;
  box-shadow: none;
}

.outcome-eyebrow {
  color: var(--green);
}

.badge {
  border-radius: 6px;
  padding: 3px 7px;
}

.badge-brand {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.badge-success {
  color: #0e6557;
}

.toast {
  border-radius: 8px;
}

@media (max-width: 820px) {
  .main-content {
    padding: 30px 22px 56px;
  }

  .editor-page {
    margin: -30px -22px -56px;
  }

  .topbar {
    padding: 0 18px;
  }

  .booking-shell {
    box-shadow: none;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 26px;
  }

  .auth-card {
    padding: 27px 22px;
  }

  .metric-grid {
    gap: 9px;
  }

  .metric-card {
    padding: 14px;
  }

  .settings-content {
    padding: 20px;
  }

  .booking-shell {
    border-radius: 9px;
  }
}

.calendar-week button i {
  width: auto;
  height: auto;
  color: var(--subtle);
  background: none;
  border-radius: 0;
  font-size: 8px;
  font-style: normal;
  line-height: 1;
}

.calendar-week button.is-selected i {
  color: #fff;
  background: none;
}

.sidebar {
  color: #f7faf9;
  background: #0b1f3a;
  border-right: 0;
  padding: 24px 16px 16px;
}

.sidebar .brand-name {
  color: #fff;
  font-weight: 720;
}

.sidebar .brand-mark {
  background: #60a5fa;
}

.sidebar-brand {
  padding: 0 8px 30px;
}

.sidebar .nav-label {
  color: #87969a;
  letter-spacing: .15em;
  padding: 8px 11px 7px;
  font-size: 9px;
  font-weight: 700;
}

.sidebar .nav-item {
  color: #b8c3c5;
  border: 1px solid #0000;
  border-radius: 6px;
  padding: 10px 11px;
  font-weight: 560;
  position: relative;
}

.sidebar .nav-item.is-active {
  box-shadow: none;
  color: #fff;
  background: #ffffff13;
  border-color: #ffffff12;
}

.sidebar .nav-item.is-active:before {
  content: "";
  background: #60a5fa;
  border-radius: 3px;
  width: 2px;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -5px;
}

.sidebar .sidebar-profile {
  border-top-color: #ffffff1a;
  padding: 18px 4px 2px;
}

.sidebar .sidebar-profile > .icon-button:hover, .sidebar .sidebar-close:hover {
  color: #fff;
  background: #ffffff14;
}

.metric-grid {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  display: grid;
  overflow: hidden;
}

.metric-card {
  min-height: 138px;
  box-shadow: none;
  background: #fff;
  border: 0;
  border-radius: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 22px 22px 19px;
  display: flex;
  position: relative;
}

.metric-card + .metric-card {
  border-left: 1px solid var(--line);
}

.metric-icon {
  border: 1px solid #d9dfdd;
  border-radius: 50%;
  width: 29px;
  height: 29px;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #52615f !important;
  background: none !important;
}

.metric-label {
  color: #59656a;
  letter-spacing: .06em;
  text-transform: uppercase;
  order: -1;
  font-size: 10px;
  font-weight: 700;
}

.metric-card > strong {
  letter-spacing: -.045em;
  margin-top: auto;
  font-size: 30px;
  font-weight: 680;
  line-height: 1;
}

.metric-detail {
  color: #7b8689;
  font-size: 10px;
}

.integration-card {
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 15px;
  padding: 19px;
}

.integration-mark {
  width: 44px;
  height: 44px;
  overflow: hidden;
  background: none !important;
  border: 0 !important;
  border-radius: 9px !important;
}

.integration-mark svg {
  width: 44px;
  height: 44px;
}

.integration-copy h3 {
  font-size: 14px;
}

.integration-copy p {
  font-size: 11px;
  line-height: 1.55;
}

.integration-detail {
  font-size: 10px;
}

@media (max-width: 1120px) {
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .metric-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .sidebar {
    background: #0b1f3a;
  }

  .sidebar .brand-name {
    color: #fff;
  }
}

@media (max-width: 540px) {
  .metric-grid {
    gap: 0;
  }

  .metric-card {
    min-height: 126px;
    padding: 17px 16px;
  }

  .metric-card + .metric-card {
    border-left: 1px solid var(--line);
  }

  .metric-card:nth-child(3) {
    border-left: 0;
  }

  .metric-icon {
    width: 27px;
    height: 27px;
    top: 15px;
    right: 15px;
  }

  .metric-card > strong {
    font-size: 26px;
  }

  .integration-mark, .integration-mark svg {
    width: 40px;
    height: 40px;
  }
}

.sidebar .sidebar-profile .avatar {
  color: #bfdbfe;
}

.metric-detail {
  color: #5d696c;
}

:root {
  --ink: #10213d;
  --muted: #52627a;
  --subtle: #5b6b82;
  --line: #dce5f1;
  --line-strong: #c8d5e6;
  --surface: #fff;
  --canvas: #f5f8fc;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-soft: #eaf2ff;
  --blue: #2563eb;
  --blue-soft: #eaf2ff;
  --shadow: 0 1px 2px #0f23440a;
  --shadow-lg: 0 20px 55px #0f234424;
}

.brand-mark {
  width: 32px;
  height: 32px;
  color: var(--brand);
  border-radius: 0;
  overflow: visible;
  background: none !important;
}

.brand-mark svg {
  width: 32px;
  height: 32px;
}

.brand-name {
  color: var(--ink);
  letter-spacing: -.045em;
  font-size: 18px;
  font-weight: 790;
}

.button.button-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.button.button-primary:hover:not(:disabled) {
  background: #1e4fc2;
  border-color: #1e4fc2;
}

.button.button-primary:disabled {
  color: #1e40af;
  background: #dbeafe;
  border-color: #dbeafe;
}

.button-primary {
  box-shadow: 0 5px 14px #2563eb33;
}

a:focus-visible, button:focus-visible, [role="button"]:focus-visible, [role="tab"]:focus-visible, [role="radio"]:focus-visible, [role="switch"]:focus-visible, .icon-button:focus-visible, .button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .nav-item:focus-visible {
  outline-color: #2563eb6b;
}

.sidebar {
  color: #f8fbff;
  background: #0b1f3a;
}

.sidebar .brand-name {
  color: #fff;
}

.sidebar .brand-mark {
  color: #60a5fa;
}

.sidebar .nav-label {
  color: #8395ad;
}

.sidebar .nav-item {
  color: #b9c7d8;
}

.sidebar .nav-item svg {
  color: #8094ad;
}

.sidebar .nav-item:hover {
  color: #fff;
  background: #60a5fa17;
}

.sidebar .nav-item:hover svg {
  color: #bfdbfe;
}

.sidebar .nav-item.is-active {
  color: #fff;
  background: #3b82f629;
  border-color: #93c5fd26;
}

.sidebar .nav-item.is-active:before {
  background: #60a5fa;
}

.sidebar .nav-item.is-active svg {
  color: #93c5fd;
}

.sidebar .sidebar-profile {
  border-top-color: #bfdbfe24;
}

.sidebar .sidebar-profile strong {
  color: #f8fbff;
}

.sidebar .sidebar-profile span {
  color: #94a8c1;
}

.sidebar .sidebar-profile > .icon-button, .sidebar .sidebar-close {
  color: #9fb2c9;
}

.sidebar .avatar {
  color: #bfdbfe;
  background: #17345b;
  border-color: #19365c;
  box-shadow: 0 0 0 1px #bfdbfe1f;
}

.workspace-dot {
  background: #173b6b;
}

.badge-brand, .onboarding-next {
  background: var(--brand-soft);
}

.metric-icon, .quick-icon, .metric-brand, .metric-green, .metric-amber, .metric-blue {
  color: #1e4fc2;
  background: #edf4ff;
}

.number-chip {
  color: #1e40af;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px #2563eb1f;
}

.auth-page {
  background: radial-gradient(circle at top, #e8f1ff 0, #f7f9fc 44%, #f1f5fa 100%);
}

.auth-card form input:focus, .auth-card form select:focus {
  border-color: var(--brand);
  outline-color: #2563eb2e;
}

.date-chip {
  color: var(--ink);
  background: #f6f9ff;
  border-color: #d9e4f2;
}

.integration-mark {
  background: #f3f7fd !important;
  border-color: #d7e2f0 !important;
}

.mark-worker {
  color: #1d4ed8 !important;
}

.duration-options button.is-selected {
  border-color: var(--brand);
  background: #f5f9ff;
  box-shadow: 0 0 0 2px #2563eb17;
}

.time-grid button.is-selected {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: #1e40af;
}

.brand-preview {
  background: #eef4fb;
}

.booking-info {
  background: #f8faff;
}

.public-page {
  background: #f4f7fb;
}

@media (max-width: 820px) {
  .sidebar {
    background: #0b1f3a;
  }

  .sidebar .brand-name {
    color: #fff;
  }
}

.stepper-step {
  appearance: none;
  min-width: 44px;
  min-height: 44px;
  color: inherit;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  align-items: center;
  gap: .35rem;
  padding: 0;
  display: inline-flex;
}

.stepper-step:focus-visible {
  outline: 2px solid var(--brand-dark);
  outline-offset: 3px;
  border-radius: 6px;
}

.stepper-step[aria-disabled="true"] {
  color: #67727d;
  cursor: not-allowed;
}

.stepper-step > span {
  font-size: inherit;
}

.stepper-connector {
  background: var(--line);
  height: 1px;
}

.flow-heading h2[tabindex="-1"]:focus {
  outline: none;
}

/*# sourceMappingURL=apps_web_src_styles_globals_0z9zaro.css.map*/