@font-face {
  font-family: "Innovator Grotesk";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/InnovatorGrotesk-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Innovator Grotesk";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/InnovatorGrotesk-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Innovator Grotesk";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/InnovatorGrotesk-SemiBold.otf") format("opentype");
}

:root {
  --blue: #1463ff;
  --blue-dark: #0e4bc0;
  --green: #4ec375;
  --yellow: #ffbc00;
  --ink: #0f0d1f;
  --muted: rgba(15, 13, 31, 0.64);
  --line: rgba(15, 13, 31, 0.12);
  --page: #edf1ff;
  --card-bg: rgba(255, 255, 255, 0.94);
  --control-bg: #ffffff;
  --control-ring: rgba(15, 13, 31, 0.10);
  --panel-bg: #ffffff;
  --progress-track: rgba(15, 13, 31, 0.10);
  --label-color: rgba(15, 13, 31, 0.65);
  --card-shadow: 0 16px 42px rgba(15, 13, 31, 0.10);
  --error: #d93d35;
  --success: #168a44;
  --shell-page: #edf1ff;
  --skeleton-card-bg: rgba(255, 255, 255, 0.88);
  --skeleton-line: rgba(15, 13, 31, 0.11);
  --skeleton-line-active: rgba(20, 99, 255, 0.22);
  --skeleton-highlight: rgba(255, 255, 255, 0.72);
  --skeleton-border: rgba(15, 13, 31, 0.10);
  --skeleton-shadow: 0 16px 42px rgba(15, 13, 31, 0.08);
  color-scheme: light;
}

:root[data-shell-theme="dark"] {
  --shell-page: #05060a;
  --skeleton-card-bg: rgba(15, 13, 31, 0.55);
  --skeleton-line: rgba(255, 255, 255, 0.10);
  --skeleton-line-active: rgba(20, 99, 255, 0.36);
  --skeleton-highlight: rgba(255, 255, 255, 0.18);
  --skeleton-border: rgba(255, 255, 255, 0.10);
  --skeleton-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 24px 60px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}

body[data-theme="dark"] {
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --line: rgba(255, 255, 255, 0.12);
  --page: #05060a;
  --card-bg: rgba(15, 13, 31, 0.55);
  --control-bg: rgba(255, 255, 255, 0.06);
  --control-ring: rgba(255, 255, 255, 0.14);
  --panel-bg: rgba(255, 255, 255, 0.04);
  --progress-track: rgba(255, 255, 255, 0.12);
  --label-color: rgba(255, 255, 255, 0.72);
  --card-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 24px 60px rgba(0, 0, 0, 0.40);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

html {
  background: var(--shell-page);
}

:root[data-shell-embed="true"] {
  --shell-page: transparent;
  background: transparent;
  background-color: transparent;
  background-image: none;
}

body {
  background: var(--shell-page);
  color: var(--ink);
  font-family: "Innovator Grotesk", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body[data-theme] {
  background: var(--page);
}

:root[data-shell-embed="true"] body,
:root[data-shell-embed="true"] #app,
:root[data-shell-embed="true"] .demo-form,
body[data-embed="true"] {
  background: transparent;
  background-color: transparent;
  background-image: none;
}

body[data-embed="true"] {
  --page: transparent;
}

body.demo-modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

a.primary-button {
  text-decoration: none;
}

.demo-form {
  width: 100%;
}

.shell {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 8px;
}

body[data-embed="true"] .shell {
  width: 100%;
  padding: 0;
}

:root[data-shell-embed="true"] .skeleton-shell {
  width: 100%;
  padding: 0;
}

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

body[data-embed="true"] .brand-row {
  display: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 30px;
}

.card,
.loading-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
}

.card {
  padding: 32px 34px 28px;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

body[data-embed="true"] .card {
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.loading-card {
  padding: 32px;
  color: var(--muted);
}

.form-skeleton {
  width: 100%;
}

.skeleton-brand-row {
  display: flex;
  align-items: center;
  height: 30px;
  margin-bottom: 14px;
}

:root[data-shell-embed="true"] .skeleton-brand-row {
  display: none;
}

.skeleton-logo {
  display: block;
  width: 92px;
  height: 24px;
  border-radius: 6px;
  background: var(--skeleton-line);
}

.skeleton-card {
  width: 100%;
  border: 1px solid var(--skeleton-border);
  border-radius: 8px;
  padding: 32px 34px 28px;
  overflow: hidden;
  background: var(--skeleton-card-bg);
  box-shadow: var(--skeleton-shadow);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

:root[data-shell-embed="true"] .skeleton-card,
body[data-embed="true"] .skeleton-card {
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px var(--skeleton-border);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body[data-embed="true"] .loading-card {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.skeleton-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 22px;
}

.skeleton-progress span {
  height: 3px;
  border-radius: 999px;
  background: var(--skeleton-line);
}

.skeleton-progress span:first-child {
  background: var(--skeleton-line-active);
}

.skeleton-line,
.skeleton-input,
.skeleton-size-grid span,
.skeleton-submit,
.skeleton-logo {
  position: relative;
  overflow: hidden;
}

.skeleton-line::after,
.skeleton-input::after,
.skeleton-size-grid span::after,
.skeleton-submit::after,
.skeleton-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--skeleton-highlight), transparent);
  transform: translateX(-100%);
  animation: skeleton-sheen 1400ms ease-in-out infinite;
}

.skeleton-line {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: var(--skeleton-line);
}

.skeleton-heading {
  width: min(330px, 78%);
  height: 30px;
  margin-bottom: 20px;
}

.skeleton-form-grid {
  display: grid;
  gap: 22px;
}

.skeleton-control {
  display: grid;
  gap: 8px;
}

.skeleton-label {
  display: block;
  width: 128px;
  height: 14px;
  border-radius: 999px;
  background: var(--skeleton-line);
}

.skeleton-label.short {
  width: 142px;
}

.skeleton-input {
  display: block;
  height: 48px;
  border-radius: 12px;
  background: var(--skeleton-line);
}

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

.skeleton-size-grid span {
  display: block;
  min-height: 40px;
  border-radius: 10px;
  background: var(--skeleton-line);
}

.skeleton-submit {
  display: block;
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  background: var(--skeleton-line-active);
}

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

h1,
h2 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  margin-bottom: 20px;
  font-size: 26px;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 4vw, 28px);
}

.lede {
  max-width: 54ch;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.progress {
  display: grid;
  grid-template-columns: repeat(var(--progress-count, 4), 1fr);
  gap: 4px;
  margin-bottom: 22px;
}

.progress span {
  height: 3px;
  border-radius: 999px;
  background: rgba(15, 13, 31, 0.10);
  background: var(--progress-track);
}

.progress span.is-active {
  background: var(--blue);
}

.form-grid {
  display: grid;
  gap: 22px;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label,
.field-label {
  display: grid;
  gap: 8px;
  color: var(--label-color);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.label-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.required-star {
  color: var(--blue);
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: var(--control-bg);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--control-ring);
  font-size: 15px;
  outline: none;
}

input {
  height: 48px;
  padding: 0 16px;
}

textarea {
  min-height: 72px;
  padding: 10px 14px;
  line-height: 1.45;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(15, 13, 31, 0.38);
}

body[data-theme="dark"] input::placeholder,
body[data-theme="dark"] textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

input:focus,
textarea:focus {
  box-shadow: inset 0 0 0 2px var(--blue);
}

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

.size-option,
.slot-button,
.secondary-button,
.primary-button {
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background 140ms ease, box-shadow 140ms ease, color 140ms ease, transform 140ms ease;
}

.size-option,
.slot-button,
.secondary-button {
  background: var(--control-bg);
  box-shadow: inset 0 0 0 1px var(--control-ring);
  color: var(--ink);
}

.size-option {
  padding: 0 8px;
  font-size: 13.5px;
  font-weight: 500;
}

.size-option.is-selected,
.slot-button.is-selected {
  background: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue-dark), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
  color: #fff;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--blue);
  color: #fff;
  min-height: 56px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px var(--blue-dark), 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 4px 14px rgba(20, 99, 255, 0.35);
  font-weight: 600;
}

.primary-button:disabled,
.secondary-button:disabled,
.slot-button:disabled,
.size-option:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.primary-button:not(:disabled):hover,
.secondary-button:not(:disabled):hover,
.size-option:not(.is-selected):hover,
.slot-button:not(.is-selected):hover {
  transform: translateY(-1px);
}

.secondary-button {
  padding: 0 14px;
  font-weight: 600;
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.actions .primary-button {
  flex: 1;
}

.actions .secondary-button {
  width: auto;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.consent input {
  height: 18px;
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  padding: 0;
  box-shadow: none;
  accent-color: var(--blue);
}

.note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

.label-note {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.field-note {
  margin: -1px 2px 1px;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.error-note {
  color: var(--error);
}

.phone-field {
  position: relative;
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-input-wrap input {
  flex: 1;
  min-width: 0;
}

.country-selector-wrap {
  position: relative;
  flex-shrink: 0;
}

.country-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: var(--control-bg);
  box-shadow: inset 0 0 0 1px var(--control-ring);
  color: var(--ink);
  cursor: pointer;
  padding: 0 11px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.country-selector:hover {
  box-shadow: inset 0 0 0 1px rgba(20, 99, 255, 0.38);
}

.country-selector-chevron {
  color: var(--muted);
  flex-shrink: 0;
}

.country-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  z-index: 20;
  width: 250px;
  max-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: 0 18px 42px rgba(15, 13, 31, 0.22);
}

body[data-theme="dark"] .country-dropdown {
  background: #171527;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.country-dropdown.open {
  display: block;
}

.country-list {
  max-height: 260px;
  overflow-y: auto;
  padding: 6px;
}

.country-list::-webkit-scrollbar {
  width: 5px;
}

.country-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--control-ring);
}

.country-option {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 9px;
  min-height: 36px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0 9px;
  text-align: left;
}

.country-option:hover,
.country-option.focused,
.country-option.selected {
  background: rgba(20, 99, 255, 0.10);
}

.country-option-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
}

.country-option-dial {
  color: var(--muted);
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
}

.status {
  border-radius: 8px;
  padding: 12px 13px;
  font-size: 13px;
  line-height: 1.4;
}

.status.error {
  border: 1px solid rgba(217, 61, 53, 0.24);
  background: rgba(217, 61, 53, 0.08);
  color: var(--error);
}

.status.success {
  border: 1px solid rgba(22, 138, 68, 0.24);
  background: rgba(22, 138, 68, 0.08);
  color: var(--success);
}

.calendar-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(190px, 0.72fr);
  gap: 16px;
  margin-top: 4px;
}

.calendar-panel,
.slots-panel {
  border-radius: 14px;
  background: var(--panel-bg);
  box-shadow: inset 0 0 0 1px var(--line);
}

.calendar-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  color: var(--ink);
}

.calendar-header strong,
.slots-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.calendar-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: var(--control-bg);
  box-shadow: inset 0 0 0 1px var(--control-ring);
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.calendar-nav:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.timezone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(20, 99, 255, 0.10);
  box-shadow: inset 0 0 0 1px rgba(20, 99, 255, 0.22);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.timezone-row strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.weekday-row,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.weekday-row {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.weekday-row span {
  padding: 2px 0;
}

.calendar-empty,
.calendar-day {
  aspect-ratio: 1;
  min-width: 0;
}

.calendar-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: default;
  font-size: 12px;
  font-weight: 500;
}

.calendar-day.is-available {
  background: rgba(20, 99, 255, 0.10);
  color: #7cb1ff;
  cursor: pointer;
  font-weight: 600;
}

body:not([data-theme="dark"]) .calendar-day.is-available {
  color: var(--blue);
}

.calendar-day.is-selected {
  background: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue-dark), 0 1px 0 rgba(255, 255, 255, 0.16) inset;
  color: #fff;
}

.slots-panel {
  align-self: stretch;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-height: 100%;
  padding: 16px;
}

.slots-panel .note {
  margin: 4px 0 0;
}

.time-slot-grid {
  align-content: start;
  display: grid;
  gap: 8px;
  max-height: 270px;
  overflow: auto;
  padding-right: 2px;
}

.slot-button {
  justify-content: center;
  padding: 0 10px;
  font-size: 13.5px;
  font-weight: 600;
}

.selected-time-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.78fr);
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.selected-time-bar span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.selected-time-bar strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.booking-skip-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(20, 99, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(20, 99, 255, 0.18);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.booking-skip-row strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.booking-skip-row span {
  display: block;
}

.booking-skip-button {
  min-height: 42px;
  white-space: nowrap;
}

.skip-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: 18px;
}

.skip-booking-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 8, 18, 0.76);
  cursor: pointer;
}

.skip-booking-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(520px, 100%);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 24px 72px rgba(5, 8, 18, 0.30), inset 0 0 0 1px var(--card-border);
}

body[data-theme="dark"] .skip-booking-panel {
  background: #151423;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.48), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.skip-booking-header {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.skip-booking-header h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.08;
}

.skip-booking-header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.skip-booking-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: var(--control-bg);
  box-shadow: inset 0 0 0 1px var(--control-ring);
  color: var(--muted);
  cursor: pointer;
}

.skip-booking-close .icon {
  width: 18px;
  height: 18px;
}

.skip-booking-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 10px;
}

.skip-booking-actions .primary-button,
.skip-booking-actions .secondary-button {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
}

.help-summary {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--control-bg);
  box-shadow: inset 0 0 0 1px var(--control-ring);
}

.help-summary span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.help-summary p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.details-step-form .two-col {
  grid-template-columns: 1fr;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.booked-banner {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 32px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(37, 197, 90, 0.06);
  box-shadow: inset 0 0 0 1px rgba(37, 197, 90, 0.32);
  color: #3fcb7a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
}

.booked-banner .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke-width: 2.25;
}

.booking-summary {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.booking-summary h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: 0;
  line-height: 1.05;
}

.booking-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.self-demo-confirmation {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.self-demo-heading {
  display: grid;
  gap: 4px;
}

.self-demo-mobile {
  display: none;
}

.self-demo-heading h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.1;
}

.self-demo-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.interactive-demo-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #040404;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.10), 0 12px 32px rgba(15, 13, 31, 0.15);
  color: #fff;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

body[data-theme="dark"] .interactive-demo-card {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10), 0 12px 32px rgba(0, 0, 0, 0.45);
}

.interactive-demo-card:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.14), 0 18px 40px rgba(15, 13, 31, 0.22);
}

body[data-theme="dark"] .interactive-demo-card:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 18px 40px rgba(0, 0, 0, 0.45);
}

.demo-launch-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(4, 4, 8, 0.40) 0%, rgba(4, 4, 8, 0.62) 100%);
  transition: background 180ms ease;
}

.interactive-demo-card:hover .demo-launch-overlay {
  background: linear-gradient(180deg, rgba(4, 4, 8, 0.55) 0%, rgba(4, 4, 8, 0.78) 100%);
}

.demo-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(20, 99, 255, 0.40), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: scale(1);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.interactive-demo-card:hover .demo-play {
  box-shadow: 0 10px 30px rgba(20, 99, 255, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.20);
  transform: scale(1.06);
}

.demo-play .icon {
  width: 22px;
  height: 22px;
  margin-left: 2px;
  fill: currentColor;
  stroke: none;
}

.demo-launch-copy {
  display: grid;
  gap: 3px;
  justify-items: center;
}

.demo-launch-copy strong {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.demo-launch-copy span {
  color: rgba(255, 255, 255, 0.70);
  font-size: 12px;
  line-height: 1.2;
}

.demo-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
}

.demo-browser-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--dot-color);
}

.demo-address {
  display: inline-flex;
  align-items: center;
  flex: 1;
  gap: 6px;
  max-width: 320px;
  height: 16px;
  margin-left: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.50);
  padding: 0 8px;
  font-size: 10.5px;
  line-height: 1;
}

.demo-address .icon {
  width: 9px;
  height: 9px;
}

.demo-product-preview {
  display: flex;
  height: 220px;
}

.demo-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 56px;
  gap: 8px;
  padding: 10px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: #0f0d1f;
}

.demo-mark {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(20, 99, 255, 0.20);
}

.demo-mark i {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid transparent;
  border-radius: 50%;
}

.demo-mark i:nth-child(1) {
  border-color: var(--green);
  transform: translate(-3px, -3px);
}

.demo-mark i:nth-child(2) {
  border-color: var(--blue);
  transform: translate(3px, -1px);
}

.demo-mark i:nth-child(3) {
  border-color: var(--yellow);
  transform: translate(0, 4px);
}

.demo-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.55);
}

.demo-nav-icon.is-active {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

.demo-nav-icon .icon {
  width: 14px;
  height: 14px;
  stroke-width: 1.75;
}

.demo-inbox-preview {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 12px;
  background: #0a0a0f;
}

.demo-inbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.demo-inbox-header strong {
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.2;
}

.demo-inbox-header strong span,
.demo-inbox-header > span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 400;
}

.demo-inbox-list {
  display: grid;
  gap: 6px;
}

.demo-inbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  border-radius: 6px;
  padding: 6px 8px;
}

.demo-inbox-row.is-featured {
  background: rgba(20, 99, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(20, 99, 255, 0.35);
}

.demo-row-accent {
  width: 4px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 2px;
  background: var(--accent);
}

.demo-row-unread,
.demo-row-spacer {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
}

.demo-row-unread {
  border-radius: 50%;
  background: var(--blue);
}

.demo-inbox-row strong {
  min-width: 70px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.demo-inbox-row span:not(.demo-row-accent, .demo-row-unread, .demo-row-spacer) {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-inbox-row time {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.mobile-demo-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 0 0 1px rgba(15, 13, 22, 0.08);
}

body[data-theme="dark"] .mobile-demo-card {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}

.mobile-demo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(20, 99, 255, 0.15);
  color: var(--blue);
}

.mobile-demo-icon .icon {
  width: 18px;
  height: 18px;
}

.mobile-demo-card strong {
  display: block;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
}

.mobile-demo-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
}

.mobile-demo-card p span {
  color: var(--ink);
  font-weight: 500;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  background: #040404;
  color: #fff;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.demo-modal-panel {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  background: #040404;
}

.demo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 14px 18px 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 4, 4, 0.96);
}

.demo-modal-title {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.demo-modal-title strong {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.demo-modal-title span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12.5px;
  line-height: 1.3;
}

.demo-modal-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.demo-modal-trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue-dark), 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 4px 14px rgba(20, 99, 255, 0.28);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.demo-modal-trial:hover {
  background: #0054ff;
  transform: translateY(-1px);
}

.demo-modal-trial .icon {
  width: 16px;
  height: 16px;
}

.demo-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  cursor: pointer;
  transition: background 140ms ease, transform 140ms ease;
}

.demo-modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.04);
}

.demo-modal-close .icon {
  width: 20px;
  height: 20px;
}

.demo-modal-frame {
  width: 100%;
  min-height: 0;
  flex: 1;
  border: 0;
  background: #fff;
}

.chloe-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  border-radius: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(20, 99, 255, 0.12) 0%, rgba(119, 50, 241, 0.10) 100%);
  box-shadow: inset 0 0 0 1px rgba(20, 99, 255, 0.24);
}

.chloe-orbit {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.chloe-orbit > span {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(20, 99, 255, 0.44);
  border-radius: 50%;
  animation: chloe-ring 2.1s ease-out infinite;
}

.chloe-orbit > span:nth-child(2) {
  animation-delay: 0.7s;
}

.chloe-orbit > span:nth-child(3) {
  animation-delay: 1.4s;
}

.chloe-phone {
  position: absolute;
  inset: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1463ff 0%, #7732f1 100%);
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.30), 0 4px 12px rgba(20, 99, 255, 0.36);
  font-size: 15px;
}

.chloe-copy {
  flex: 1;
  min-width: 0;
}

.chloe-title-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.chloe-title-row strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.chloe-title-row span {
  border-radius: 999px;
  background: rgba(119, 50, 241, 0.12);
  color: #7732f1;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.chloe-copy p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.chloe-wave {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
}

.chloe-wave span {
  width: 2px;
  height: var(--wave-height);
  border-radius: 99px;
  background: linear-gradient(180deg, #1463ff 0%, #7732f1 100%);
  opacity: 0.6;
  animation: chloe-wave 1.2s ease-in-out infinite;
  animation-delay: calc(var(--wave-index) * 90ms);
}

.confirmation-trial {
  gap: 10px;
  margin-bottom: 14px;
  font-size: 20px;
}

.confirmation-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0 0 28px;
}

.confirmation-links a {
  color: #7cb1ff;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

body:not([data-theme="dark"]) .confirmation-links a {
  color: var(--blue);
}

.confirmation-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

@media (min-width: 760px) {
  body[data-embed="true"] .booked-card {
    border-radius: 34px;
    padding: 54px 64px 52px;
  }

  body[data-embed="true"] .booked-card .progress {
    gap: 8px;
    margin-bottom: 38px;
  }

  body[data-embed="true"] .booked-card .progress span {
    height: 6px;
  }

  body[data-embed="true"] .booked-banner {
    gap: 18px;
    min-height: 98px;
    margin-bottom: 36px;
    border-radius: 24px;
    padding: 28px 30px;
    font-size: 30px;
  }

  body[data-embed="true"] .booked-banner .icon {
    width: 40px;
    height: 40px;
  }

  body[data-embed="true"] .booking-summary {
    gap: 16px;
    margin-bottom: 28px;
  }

  body[data-embed="true"] .booking-summary h2 {
    font-size: 48px;
  }

  body[data-embed="true"] .booking-summary p {
    font-size: 28px;
    line-height: 1.35;
  }

  body[data-embed="true"] .confirmation-links {
    gap: 34px;
    margin-bottom: 42px;
  }

  body[data-embed="true"] .confirmation-links a {
    font-size: 29px;
  }

  body[data-embed="true"] .booked-card .chloe-callout {
    gap: 26px;
    min-height: 205px;
    margin-bottom: 36px;
    border-radius: 26px;
    padding: 28px 32px;
    box-shadow: inset 0 0 0 2px rgba(20, 99, 255, 0.42);
  }

  body[data-embed="true"] .booked-card .chloe-orbit {
    width: 120px;
    height: 120px;
  }

  body[data-embed="true"] .booked-card .chloe-phone {
    inset: 34px;
    font-size: 28px;
  }

  body[data-embed="true"] .booked-card .chloe-title-row {
    gap: 12px;
  }

  body[data-embed="true"] .booked-card .chloe-title-row strong {
    font-size: 29px;
  }

  body[data-embed="true"] .booked-card .chloe-title-row span {
    padding: 6px 13px;
    font-size: 18px;
  }

  body[data-embed="true"] .booked-card .chloe-copy p {
    margin-top: 10px;
    font-size: 27px;
    line-height: 1.35;
  }

  body[data-embed="true"] .booked-card .chloe-wave {
    gap: 4px;
    height: 38px;
  }

  body[data-embed="true"] .booked-card .chloe-wave span {
    width: 4px;
  }

  body[data-embed="true"] .confirmation-trial {
    min-height: 110px;
    gap: 22px;
    margin-bottom: 38px;
    border-radius: 26px;
    font-size: 32px;
  }

  body[data-embed="true"] .confirmation-trial .icon {
    width: 32px;
    height: 32px;
  }

  body[data-embed="true"] .confirmation-note {
    font-size: 24px;
  }
}

@keyframes chloe-ring {
  0% {
    opacity: 0.75;
    transform: scale(0.82);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes chloe-wave {
  0%,
  100% {
    opacity: 0.48;
    transform: scaleY(0.78);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

@keyframes skeleton-sheen {
  0% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-line::after,
  .skeleton-input::after,
  .skeleton-size-grid span::after,
  .skeleton-submit::after,
  .skeleton-logo::after {
    animation: none;
  }
}

@media (max-width: 520px) {
  .shell {
    padding: 6px;
  }

  .demo-modal-header {
    gap: 10px;
    min-height: 60px;
    padding: 10px 12px 10px 14px;
  }

  .demo-modal-title strong {
    font-size: 14px;
  }

  .demo-modal-title span {
    font-size: 11.5px;
  }

  .demo-modal-actions {
    gap: 8px;
  }

  .demo-modal-trial {
    min-height: 36px;
    padding: 0 10px;
    font-size: 12.5px;
  }

  .demo-modal-trial .icon {
    display: none;
  }

  .demo-modal-close {
    width: 36px;
    height: 36px;
  }

  .card {
    padding: 24px 20px 20px;
  }

  .skeleton-card {
    padding: 24px 20px 20px;
  }

  .skeleton-size-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-embed="true"] .card {
    border-radius: 18px;
  }

  :root[data-shell-embed="true"] .skeleton-card,
  body[data-embed="true"] .skeleton-card {
    border-radius: 18px;
  }

  .two-col,
  .calendar-experience,
  .selected-time-bar {
    grid-template-columns: 1fr;
  }

  .size-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .time-slot-grid {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .selected-time-bar .actions {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .booking-skip-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .booking-skip-button {
    width: 100%;
  }

  .skip-booking-panel {
    padding: 20px;
  }

  .skip-booking-header h3 {
    font-size: 21px;
  }

  .skip-booking-actions {
    grid-template-columns: 1fr;
  }

  .phone-input-wrap {
    align-items: stretch;
  }

  .country-selector {
    min-height: 48px;
  }

  .country-dropdown {
    width: min(250px, calc(100vw - 64px));
  }

  .self-demo-confirmation {
    gap: 16px;
  }

  .self-demo-desktop {
    display: none;
  }

  .self-demo-mobile {
    display: block;
  }

  .self-demo-heading h2 {
    font-size: 22px;
  }

  .demo-product-preview {
    height: 190px;
  }

  .demo-sidebar {
    flex-basis: 48px;
  }

  .demo-inbox-header > span,
  .demo-inbox-row:nth-child(n + 5) {
    display: none;
  }

  .demo-inbox-row strong {
    min-width: 62px;
  }

  .chloe-callout {
    align-items: flex-start;
  }

  .chloe-wave {
    display: none;
  }
}
