:root {
  color-scheme: dark;
  --black: #020202;
  --surface: #070707;
  --surface-raised: #0c0c0c;
  --ink: #fffaf0;
  --ink-dark: #020202;
  --soft: rgba(255, 250, 240, 0.72);
  --faint: rgba(255, 250, 240, 0.42);
  --line: rgba(255, 250, 240, 0.16);
  --line-strong: rgba(255, 250, 240, 0.32);
  --cyan: #84d4ff;
  --violet: #9a95ff;
  --rose: #e3a9b8;
  --gold: #edc28a;
  --pearl: #fffaf0;
  --green: #8fd9b4;
  --danger: #ffabab;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --copy: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-family: var(--mono);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #020202 0%, #040508 48%, #020202 100%);
  font-family: var(--copy);
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.light-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
  background:
    linear-gradient(115deg, transparent 0 41%, rgba(255, 250, 240, 0.035) 48%, transparent 55% 100%),
    linear-gradient(180deg, rgba(2, 2, 2, 0.12), rgba(2, 2, 2, 0.76));
}

.light-field::before,
.light-field::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  mix-blend-mode: screen;
}

.light-field::before {
  opacity: 0.78;
  background: linear-gradient(
    90deg,
    rgba(154, 149, 255, 0.2) 0%,
    rgba(154, 149, 255, 0.16) 10%,
    rgba(132, 212, 255, 0.17) 24%,
    rgba(132, 212, 255, 0.05) 37%,
    transparent 52%
  );
  filter: blur(18px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 13%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 13%, #000 82%, transparent 100%);
}

.light-field::after {
  opacity: 0.58;
  background: linear-gradient(
    90deg,
    transparent 64%,
    rgba(227, 169, 184, 0.03) 78%,
    rgba(154, 149, 255, 0.12) 91%,
    rgba(154, 149, 255, 0.2) 100%
  );
  filter: blur(24px);
}

.prism-band,
.prism-line,
.grid-field {
  position: absolute;
  display: block;
}

.prism-band {
  left: -24vw;
  width: 154vw;
  height: clamp(92px, 11vw, 176px);
  opacity: 0.72;
  filter: blur(25px) saturate(1.18);
  mix-blend-mode: screen;
  transform-origin: center;
  will-change: transform;
}

.prism-band-one {
  top: 5svh;
  background: linear-gradient(
    90deg,
    transparent 3%,
    rgba(154, 149, 255, 0.04) 16%,
    rgba(154, 149, 255, 0.2) 31%,
    rgba(132, 212, 255, 0.33) 43%,
    rgba(255, 250, 240, 0.32) 50%,
    rgba(227, 169, 184, 0.17) 59%,
    transparent 78%
  );
  transform: rotate(-10deg) translate3d(-2%, 0, 0);
  animation: prismDriftOne 18s ease-in-out infinite alternate;
}

.prism-band-two {
  bottom: -1svh;
  height: clamp(72px, 9vw, 140px);
  opacity: 0.6;
  background: linear-gradient(
    90deg,
    transparent 8%,
    rgba(237, 194, 138, 0.12) 27%,
    rgba(227, 169, 184, 0.24) 43%,
    rgba(154, 149, 255, 0.3) 56%,
    rgba(132, 212, 255, 0.12) 70%,
    transparent 88%
  );
  transform: rotate(8deg) translate3d(2%, 0, 0);
  animation: prismDriftTwo 22s ease-in-out infinite alternate;
}

.prism-line {
  left: -18vw;
  width: 138vw;
  height: 1px;
  opacity: 0.58;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(154, 149, 255, 0.26) 25%,
    rgba(255, 250, 240, 0.82) 48%,
    rgba(132, 212, 255, 0.4) 61%,
    transparent 88%
  );
  box-shadow:
    0 0 18px rgba(255, 250, 240, 0.32),
    0 0 42px rgba(132, 212, 255, 0.13);
  transform-origin: center;
}

.prism-line-one {
  top: 24svh;
  transform: rotate(-10deg);
}

.prism-line-two {
  bottom: 17svh;
  opacity: 0.35;
  transform: rotate(8deg);
}

.grid-field {
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 250, 240, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.45) 58%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.45) 58%, transparent 100%);
}

.app-bar {
  position: relative;
  z-index: 10;
  height: 70px;
  padding: 0 clamp(18px, 3.75vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 250, 240, 0.08);
  background: rgba(2, 2, 2, 0.36);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand,
.meeting-meta,
.schedule-head,
.availability-state,
.date-toolbar,
.time-head,
.schedule-foot,
.back-button,
.book-button {
  display: flex;
  align-items: center;
}

.brand img {
  width: 35px;
  height: 35px;
  display: block;
  object-fit: contain;
}

.brand-name {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.meeting-meta {
  gap: 9px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.meta-divider {
  color: rgba(255, 250, 240, 0.24);
}

.app-shell {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - clamp(36px, 7.5vw, 144px)));
  min-height: min(690px, calc(100svh - 116px));
  margin: 24px auto 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  background:
    linear-gradient(102deg, rgba(154, 149, 255, 0.07), rgba(132, 212, 255, 0.025) 31%, transparent 52%, rgba(154, 149, 255, 0.02) 100%),
    rgba(2, 2, 4, 0.68);
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.54),
    inset 0 1px 0 rgba(255, 250, 240, 0.03);
  -webkit-backdrop-filter: blur(26px);
  backdrop-filter: blur(26px);
}

.app-shell::before {
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 2;
  width: min(44%, 570px);
  height: 1px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, var(--violet), var(--cyan) 48%, rgba(255, 250, 240, 0.85), transparent);
  opacity: 0.74;
}

.app-shell::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(154, 149, 255, 0.055), rgba(132, 212, 255, 0.018) 30%, transparent 48%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.025), transparent 24%);
}

.app-shell.has-selection {
  grid-template-columns: minmax(0, 1fr) minmax(350px, 410px);
}

.schedule-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 27px clamp(22px, 3.2vw, 54px) 25px;
  display: flex;
  flex-direction: column;
}

.terminal-line {
  min-height: 20px;
  margin: 0 0 20px;
  color: var(--soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.terminal-prompt {
  margin-right: 7px;
  color: var(--faint);
}

.terminal-cursor {
  width: 6px;
  height: 1em;
  margin-left: 4px;
  display: inline-block;
  vertical-align: -0.14em;
  background: var(--ink);
  animation: cursorBlink 1s steps(1, end) infinite;
}

.schedule-head {
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.title-block {
  max-width: 690px;
}

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

.eyebrow {
  margin-bottom: 13px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow > span {
  color: var(--faint);
}

h1 {
  margin-bottom: 0;
  font-family: var(--copy);
  font-size: clamp(38px, 3.65vw, 58px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.schedule-intro {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.55;
}

.availability-state {
  margin: 0;
  padding: 9px 11px;
  gap: 9px;
  border: 1px solid rgba(255, 250, 240, 0.1);
  color: var(--faint);
  background: rgba(2, 2, 2, 0.38);
  font-family: var(--mono);
  font-size: 10px;
  white-space: nowrap;
}

.state-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.availability-state.is-live {
  color: var(--soft);
}

.availability-state.is-live .state-dot {
  background: var(--green);
  box-shadow: 0 0 10px rgba(143, 217, 180, 0.48);
}

.availability-state.is-demo .state-dot {
  background: var(--gold);
}

.availability-state.is-offline .state-dot {
  background: var(--danger);
}

.preview-notice {
  margin: 16px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(237, 194, 138, 0.28);
  color: var(--gold);
  background: rgba(237, 194, 138, 0.045);
  font-size: 10px;
  line-height: 1.5;
}

.step-label {
  margin: 20px 0 0;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-label span {
  margin-right: 9px;
  color: var(--soft);
}

.date-toolbar {
  gap: 10px;
  padding: 11px 0 23px;
}

.date-rail {
  min-width: 0;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.date-button,
.icon-button,
.time-button,
.schedule-error button {
  border: 1px solid var(--line);
  color: var(--soft);
  background: rgba(7, 7, 10, 0.5);
  font-family: var(--mono);
  cursor: pointer;
  transition:
    border-color 150ms ease,
    background 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.date-button:hover,
.time-button:hover,
.icon-button:hover,
.schedule-error button:hover {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.055);
}

.date-button:hover,
.time-button:hover {
  transform: translateY(-1px);
}

.date-button:focus-visible,
.time-button:focus-visible,
.icon-button:focus-visible,
.back-button:focus-visible,
.book-button:focus-visible,
.schedule-error button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.date-button {
  min-height: 78px;
  padding: 11px 8px;
  display: grid;
  place-items: center;
  gap: 2px;
}

.date-button span {
  color: var(--faint);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-button strong {
  color: var(--ink);
  font-family: var(--copy);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.date-button small {
  color: var(--faint);
  font-size: 9px;
  text-transform: lowercase;
}

.date-button.is-active {
  border-color: var(--ink);
  color: var(--ink-dark);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.98), rgba(245, 242, 236, 0.94));
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.date-button.is-active span,
.date-button.is-active strong,
.date-button.is-active small {
  color: var(--ink-dark);
}

.icon-button {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  padding: 0;
  justify-content: center;
}

.icon-button:disabled {
  opacity: 0.25;
  cursor: default;
}

.time-head {
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin: 1px 0 14px;
}

.time-head h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-family: var(--copy);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.time-head .step-label {
  margin-top: 0;
}

.timezone {
  margin: 0;
  color: var(--faint);
  font-size: 9px;
}

.timezone::before {
  content: "tz / ";
}

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

.time-button,
.slot-skeleton {
  min-height: 52px;
}

.time-button {
  position: relative;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
}

.time-button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(132, 212, 255, 0.42), transparent);
  opacity: 0;
  transition: opacity 150ms ease;
}

.time-button:hover::after {
  opacity: 1;
}

.time-button.is-selected {
  border-color: var(--ink);
  color: var(--ink-dark);
  background: var(--ink);
}

.slot-skeleton {
  display: block;
  border: 1px solid var(--line);
  background: linear-gradient(100deg, #050505 30%, #101010 48%, #050505 66%);
  background-size: 220% 100%;
  animation: shimmer 1.35s linear infinite;
}

.schedule-foot {
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 250, 240, 0.07);
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
}

.schedule-foot strong {
  color: var(--soft);
  font-weight: 500;
}

.schedule-error {
  min-height: 196px;
  padding: 36px 18px;
  place-items: center;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.schedule-error:not([hidden]) {
  display: grid;
}

.schedule-error p {
  max-width: 520px;
  margin-bottom: 16px;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.65;
}

.schedule-error button {
  padding: 10px 13px;
  font-size: 10px;
}

.booking-drawer {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: none;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(155deg, rgba(13, 13, 18, 0.98), rgba(4, 4, 6, 0.99));
}

.booking-drawer::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 1px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(154, 149, 255, 0.5), rgba(132, 212, 255, 0.17) 34%, transparent 82%);
}

.app-shell.has-selection .booking-drawer {
  display: flex;
}

.drawer-form,
.success-state {
  width: 100%;
  padding: 29px clamp(22px, 2.2vw, 38px);
}

.drawer-form {
  display: flex;
  flex-direction: column;
}

.back-button {
  width: max-content;
  padding: 0;
  gap: 8px;
  border: 0;
  color: var(--faint);
  background: none;
  font-size: 10px;
  cursor: pointer;
}

.back-button:hover {
  color: var(--ink);
}

.selected-time-card {
  margin: 36px 0 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.selected-time-card p {
  margin-bottom: 10px;
  color: var(--faint);
  font-size: 9px;
  font-weight: 500;
  text-transform: lowercase;
}

.selected-time-card h2 {
  margin-bottom: 9px;
  font-family: var(--copy);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.selected-time-card > span {
  color: var(--soft);
  font-size: 11px;
  line-height: 1.6;
}

#booking-form {
  display: grid;
  gap: 15px;
}

#booking-form label {
  display: grid;
  gap: 7px;
}

#booking-form label > span {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
}

#booking-form label small {
  color: rgba(255, 250, 240, 0.28);
  font-size: inherit;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--black);
  font-family: var(--copy);
  font-size: 13px;
  transition: border-color 140ms ease, background 140ms ease;
}

input {
  height: 44px;
  padding: 0 12px;
}

textarea {
  min-height: 76px;
  padding: 11px 12px;
  resize: vertical;
}

input:hover,
textarea:hover {
  border-color: var(--line-strong);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.book-button {
  min-height: 49px;
  margin-top: 3px;
  padding: 0 15px;
  justify-content: space-between;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink-dark);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.book-button:hover {
  background: #ffffff;
}

.book-button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.invite-note,
.form-error {
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.55;
}

.invite-note {
  color: var(--faint);
  text-align: center;
}

.form-error {
  color: var(--danger);
}

.success-state {
  margin: auto 0;
  text-align: left;
}

.success-state:not([hidden]) {
  display: block;
}

.success-mark {
  width: 42px;
  height: 42px;
  margin: 0 0 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(143, 217, 180, 0.34);
  color: var(--green);
  background: rgba(143, 217, 180, 0.04);
}

.success-state h2 {
  margin-bottom: 14px;
  font-family: var(--copy);
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.success-state > p:not(.eyebrow, .demo-warning) {
  margin-bottom: 22px;
  color: var(--soft);
  font-size: 11px;
  line-height: 1.65;
}

.success-state a {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 11px;
}

.demo-warning {
  margin: 24px 0 0;
  padding: 10px;
  border: 1px solid rgba(237, 194, 138, 0.28);
  color: var(--gold);
  background: rgba(237, 194, 138, 0.045);
  font-size: 9px;
  line-height: 1.55;
}

.noscript {
  padding: 24px;
  color: var(--soft);
  text-align: center;
}

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

@keyframes cursorBlink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

@keyframes prismDriftOne {
  from {
    transform: rotate(-10deg) translate3d(-2%, -5%, 0);
  }

  to {
    transform: rotate(-8.5deg) translate3d(3%, 6%, 0);
  }
}

@keyframes prismDriftTwo {
  from {
    transform: rotate(8deg) translate3d(2%, 4%, 0);
  }

  to {
    transform: rotate(6.5deg) translate3d(-3%, -5%, 0);
  }
}

@media (max-width: 1180px) {
  .slot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .app-shell,
  .app-shell.has-selection {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-panel {
    padding-right: clamp(22px, 3.2vw, 54px);
  }

  .app-shell.has-selection .booking-drawer {
    position: fixed;
    z-index: 20;
    inset: 70px 0 0;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
    background: linear-gradient(155deg, #0d0d12, #040406);
  }

  .booking-drawer::before {
    top: -1px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--violet), var(--cyan) 46%, transparent 88%);
  }

  .drawer-form,
  .success-state {
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 30px 22px 42px;
  }
}

@media (max-width: 680px) {
  .app-bar {
    height: 58px;
    padding: 0 16px;
  }

  .brand img {
    width: 29px;
    height: 29px;
  }

  .meeting-meta {
    gap: 6px;
    font-size: 9px;
  }

  .meeting-meta span:first-child,
  .meeting-meta span:nth-child(2) {
    display: none;
  }

  .app-shell {
    width: calc(100% - 20px);
    min-height: calc(100svh - 82px);
    margin: 14px 10px 10px;
  }

  .app-shell.has-selection .booking-drawer {
    inset: 58px 0 0;
  }

  .schedule-panel {
    padding: 19px 17px 17px;
  }

  .terminal-line {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .schedule-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 21px;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 9px;
  }

  h1 {
    font-size: 35px;
  }

  .schedule-intro {
    margin-top: 11px;
    font-size: 11px;
  }

  .availability-state {
    gap: 6px;
    padding: 7px 8px;
    font-size: 8px;
  }

  .preview-notice {
    margin-top: 12px;
    font-size: 9px;
  }

  .date-toolbar {
    gap: 6px;
    padding: 10px 0 18px;
  }

  .date-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .date-button:nth-child(n + 4) {
    display: none;
  }

  .date-button {
    min-height: 65px;
    padding: 8px 4px;
  }

  .date-button strong {
    font-size: 18px;
  }

  .icon-button {
    width: 34px;
    height: 34px;
  }

  .time-head {
    margin-bottom: 12px;
  }

  .time-head h2 {
    font-size: 13px;
  }

  .timezone {
    font-size: 8px;
  }

  .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .time-button,
  .slot-skeleton {
    min-height: 46px;
  }

  .schedule-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding-top: 20px;
    font-size: 8px;
  }

  .schedule-error {
    min-height: 220px;
    padding: 30px 12px;
  }

  .schedule-error p {
    font-size: 11px;
  }

  .prism-band {
    left: -62vw;
    width: 224vw;
    opacity: 0.46;
  }

  .prism-band-one {
    top: 8svh;
  }

  .prism-line {
    left: -52vw;
    width: 204vw;
  }
}

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