@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

.gs-page {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --gs-ink: #0b1b3a;
  --gs-muted: #6b7a90;
  --gs-faint: #8a97ab;
  --gs-placeholder: #a3aec0;
  --gs-line: #e3e8f0;
  --gs-line-soft: #eef1f6;
  --gs-fill: #f1f4f9;
  --gs-combo: #f6f8fb;
  --gs-blue: #2457f5;
  --gs-blue-hover: #1a43c9;
  --gs-blue-soft: #eef3ff;
  --gs-blue-ring: #e4ecff;
  --gs-ok: #16a34a;
  --gs-err: #dc2626;
  --gs-warn: #f59e0b;
  --gs-dash: #d5dce7;
  --gs-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --gs-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gs-press: 160ms var(--gs-ease);
  --gs-shift: 280ms var(--gs-ease);
  margin: 0;
  min-height: 100dvh;
  background: #fff;
  color: var(--gs-ink);
  font-family: var(--gs-font);
}

[hidden] { display: none !important; }

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

.gs-shell {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
}

.gs-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: calc(10px + env(safe-area-inset-top, 0px)) 20px 0;
  flex-shrink: 0;
}

.gs-chrome-back {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid var(--gs-line);
  background: #fff;
  color: var(--gs-ink);
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  transition: opacity var(--gs-press), transform var(--gs-press), border-color var(--gs-press), background-color var(--gs-press);
}

.gs-chrome-back svg {
  width: 18px;
  height: 18px;
  display: block;
  margin-left: -1px;
}

.gs-chrome-back:hover {
  background: var(--gs-blue-soft);
  border-color: #c9d6fb;
}

.gs-chrome-back:active { transform: scale(0.94); }

.gs-chrome-back.is-muted {
  opacity: 0.35;
}

.gs-chrome-back.is-muted:hover {
  opacity: 0.55;
  background: #fff;
}

.gs-chrome-back:focus-visible {
  outline: 2px solid var(--gs-blue);
  outline-offset: 2px;
}

.gs-progress {
  flex: 1;
  display: flex;
  gap: 6px;
  min-width: 0;
}

.gs-progress span {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--gs-line);
  transform-origin: left center;
  transition: background-color var(--gs-shift), transform 220ms var(--gs-ease);
}

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

.gs-count {
  margin: 0;
  min-width: 36px;
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: var(--gs-muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.gs-main {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.gs-panel {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.gs-panel.is-enter {
  animation: gs-enter-next var(--gs-shift) both;
}

.gs-panel.is-enter-back {
  animation: gs-enter-back var(--gs-shift) both;
}

@keyframes gs-enter-next {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: none; }
}

@keyframes gs-enter-back {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: none; }
}

.gs-head {
  padding: 22px 20px 0;
  flex-shrink: 0;
}

.gs-h {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.15;
  text-wrap: balance;
}

.gs-lede {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--gs-muted);
  text-wrap: pretty;
}

.gs-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 16px 20px 12px;
  -webkit-overflow-scrolling: touch;
}

.gs-dock {
  flex-shrink: 0;
  padding: 12px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--gs-line-soft);
  background: #fff;
}

.gs-continue {
  appearance: none;
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--gs-blue);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(36, 87, 245, 0);
  transition:
    background-color var(--gs-press),
    transform var(--gs-press),
    box-shadow 220ms var(--gs-ease),
    opacity var(--gs-press);
}

.gs-continue:hover:not(:disabled) {
  background: var(--gs-blue-hover);
  box-shadow: 0 10px 22px rgba(36, 87, 245, 0.26);
  transform: translateY(-1px);
}

.gs-continue:active:not(:disabled) {
  transform: scale(0.98);
  box-shadow: none;
}

.gs-continue:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.gs-continue:focus-visible {
  outline: 2px solid var(--gs-blue);
  outline-offset: 3px;
}

.gs-next {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--gs-faint);
}

.gs-next button {
  appearance: none;
  border: 0;
  background: none;
  color: var(--gs-blue);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.gs-text-back {
  appearance: none;
  display: block;
  width: 100%;
  margin-top: 4px;
  border: 0;
  background: none;
  color: var(--gs-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px;
}

.gs-inds {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gs-ind {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--gs-line);
  background: #fff;
  color: var(--gs-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  animation: gs-row-in 320ms var(--gs-ease) both;
  transition:
    border-color var(--gs-press),
    background-color var(--gs-press),
    transform var(--gs-press),
    box-shadow var(--gs-press);
}

.gs-ind:nth-child(1) { animation-delay: 20ms; }
.gs-ind:nth-child(2) { animation-delay: 50ms; }
.gs-ind:nth-child(3) { animation-delay: 80ms; }
.gs-ind:nth-child(4) { animation-delay: 110ms; }
.gs-ind:nth-child(5) { animation-delay: 140ms; }
.gs-ind:nth-child(6) { animation-delay: 170ms; }

@keyframes gs-row-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.gs-ind:hover {
  border-color: #c9d6fb;
  background: #f8faff;
}

.gs-ind:active { transform: scale(0.985); }

.gs-ind.is-on {
  border: 1.5px solid var(--gs-blue);
  background: var(--gs-blue-soft);
  box-shadow: 0 0 0 3px transparent;
}

.gs-ind.is-extra { display: none; }
.gs-inds.is-open .gs-ind.is-extra {
  display: flex;
  animation: gs-row-in 240ms var(--gs-ease) both;
}

.gs-ind-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gs-fill);
  color: var(--gs-muted);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background-color var(--gs-press), color var(--gs-press);
}

.gs-ind.is-on .gs-ind-mark {
  background: var(--gs-blue);
  color: #fff;
}

.gs-ind-label {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 500;
}

.gs-ind.is-on .gs-ind-label { font-weight: 600; }

.gs-radio {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid var(--gs-dash);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: background-color var(--gs-press), border-color var(--gs-press), transform 200ms var(--gs-ease);
}

.gs-ind.is-on .gs-radio {
  background: var(--gs-blue);
  border-color: var(--gs-blue);
  transform: scale(1.04);
}

.gs-radio::after {
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) scale(0);
  margin-top: -2px;
  transition: transform 180ms var(--gs-ease);
}

.gs-ind.is-on .gs-radio::after {
  transform: rotate(45deg) scale(1);
}

.gs-more {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px;
  border: 0;
  background: none;
  color: var(--gs-blue);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.gs-more-chev {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 200ms var(--gs-ease);
}

.gs-inds.is-open .gs-more-chev {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.gs-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gs-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gs-opt {
  font-weight: 400;
  color: var(--gs-faint);
}

.gs-field input,
.gs-field select,
.gs-time select {
  width: 100%;
  box-sizing: border-box;
  height: 52px;
  border: 1px solid var(--gs-line);
  border-radius: 14px;
  padding: 0 16px;
  font: inherit;
  font-size: 16px;
  background: #fff;
  color: var(--gs-ink);
  transition: border-color var(--gs-press), box-shadow var(--gs-press);
}

.gs-field input::placeholder {
  color: var(--gs-placeholder);
}

.gs-field input:hover,
.gs-field select:hover,
.gs-time select:hover {
  border-color: #cdd5e2;
}

.gs-field input:focus,
.gs-field select:focus,
.gs-time select:focus {
  outline: none;
  border: 1.5px solid var(--gs-blue);
  box-shadow: 0 0 0 3px var(--gs-blue-ring);
}

.gs-field input[aria-invalid="true"],
.gs-combo.is-invalid {
  border-color: var(--gs-err);
  box-shadow: none;
}

.gs-combo.is-invalid {
  border: 1.5px solid var(--gs-err);
}

.gs-slug,
.gs-help {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--gs-faint);
}

.gs-slug {
  font-variant-numeric: tabular-nums;
}

.gs-combo {
  display: flex;
  align-items: stretch;
  height: 52px;
  border: 1px solid var(--gs-line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: border-color var(--gs-press), box-shadow var(--gs-press);
}

.gs-combo:focus-within {
  border: 1.5px solid var(--gs-blue);
  box-shadow: 0 0 0 3px var(--gs-blue-ring);
}

.gs-combo.is-ok:focus-within {
  border-color: var(--gs-ok);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.gs-combo input {
  border: 0;
  border-radius: 0;
  height: auto;
  box-shadow: none !important;
  flex: 1;
  min-width: 0;
  padding: 0 14px;
}

.gs-combo input:focus {
  border: 0;
  box-shadow: none;
}

.gs-combo-lead {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: var(--gs-combo);
  color: #3b4a62;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  border-right: 1px solid var(--gs-line);
}

.gs-field-ok {
  width: 20px;
  height: 20px;
  margin: auto 14px auto 0;
  border-radius: 999px;
  background: var(--gs-ok);
  flex-shrink: 0;
  position: relative;
  animation: gs-pop 240ms var(--gs-ease);
}

.gs-field-ok::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

@keyframes gs-pop {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.gs-select-wrap {
  position: relative;
}

.gs-select-wrap select {
  padding-right: 92px;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gs-muted) 50%),
    linear-gradient(135deg, var(--gs-muted) 50%, transparent 50%),
    linear-gradient(45deg, transparent 50%, var(--gs-muted) 50%),
    linear-gradient(135deg, var(--gs-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px,
    calc(100% - 18px) 27px,
    calc(100% - 13px) 27px;
  background-size: 5px 5px, 5px 5px, 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.gs-select-gmt {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--gs-faint);
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}

.gs-pass-wrap {
  display: flex;
  align-items: stretch;
  height: 52px;
  border: 1px solid var(--gs-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color var(--gs-press), box-shadow var(--gs-press);
}

.gs-pass-wrap:focus-within {
  border: 1.5px solid var(--gs-blue);
  box-shadow: 0 0 0 3px var(--gs-blue-ring);
}

.gs-pass-wrap input {
  border: 0;
  border-radius: 0;
  height: auto;
  flex: 1;
  min-width: 0;
  padding-right: 8px;
  letter-spacing: 0.04em;
}

.gs-pass-wrap input:focus {
  outline: none;
  box-shadow: none;
}

.gs-pass-toggle {
  appearance: none;
  border: 0;
  background: none;
  color: var(--gs-blue);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 16px;
  letter-spacing: 0;
  flex-shrink: 0;
}

.gs-pass-meter {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.gs-pass-meter span {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--gs-line);
  transition: background-color 220ms var(--gs-ease);
}

.gs-pass-meter.is-weak span:nth-child(-n+1) { background: var(--gs-err); }
.gs-pass-meter.is-fair span:nth-child(-n+2) { background: var(--gs-warn); }
.gs-pass-meter.is-strong span:nth-child(-n+3) { background: var(--gs-ok); }
.gs-pass-meter.is-great span { background: var(--gs-ok); }

.gs-pass-hint {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 500;
}

.gs-pass-hint.is-weak { color: var(--gs-err); }
.gs-pass-hint.is-fair { color: #b45309; }
.gs-pass-hint.is-strong,
.gs-pass-hint.is-great { color: var(--gs-ok); }

.gs-err {
  margin: 6px 0 0;
  color: var(--gs-err);
  font-size: 12px;
  font-weight: 500;
}

.gs-consent {
  margin: 10px 0 0;
  text-align: center;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--gs-faint);
}

.gs-consent a { color: #6b7a90; }

.gs-hours-presets {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  margin-bottom: 18px;
  scrollbar-width: none;
}

.gs-hours-presets::-webkit-scrollbar { display: none; }

.gs-hours-preset {
  appearance: none;
  flex-shrink: 0;
  border: 1px solid var(--gs-line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--gs-ink);
  cursor: pointer;
  transition: background-color var(--gs-press), border-color var(--gs-press), color var(--gs-press), transform var(--gs-press);
}

.gs-hours-preset:hover {
  border-color: #c9d6fb;
  background: var(--gs-blue-soft);
}

.gs-hours-preset:active { transform: scale(0.96); }

.gs-hours-preset.is-on {
  border: 1.5px solid var(--gs-blue);
  background: var(--gs-blue-soft);
  color: var(--gs-blue);
  font-weight: 600;
}

.gs-sec {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gs-faint);
}

.gs-opendays,
.gs-shared-hours {
  margin-bottom: 18px;
}

.gs-chips {
  display: flex;
  gap: 7px;
}

.gs-chip {
  appearance: none;
  flex: 1;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: var(--gs-blue);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--gs-press), color var(--gs-press), border-color var(--gs-press), transform var(--gs-press);
}

.gs-chip:hover { filter: brightness(1.06); }
.gs-chip:active { transform: scale(0.92); }

.gs-chip.is-off {
  background: transparent;
  border: 1.5px dashed var(--gs-dash);
  color: var(--gs-placeholder);
  filter: none;
}

.gs-hours-summary {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--gs-muted);
}

.gs-hours-summary.is-warn { color: var(--gs-err); font-weight: 600; }

.gs-hours-pair {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gs-time {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.gs-time select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gs-muted) 50%),
    linear-gradient(135deg, var(--gs-muted) 50%, transparent 50%),
    linear-gradient(45deg, transparent 50%, var(--gs-muted) 50%),
    linear-gradient(135deg, var(--gs-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px,
    calc(100% - 18px) 27px,
    calc(100% - 13px) 27px;
  background-size: 5px 5px, 5px 5px, 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.gs-to {
  color: var(--gs-faint);
  font-size: 14px;
  flex-shrink: 0;
}

.gs-exceptions {
  border: 1px solid var(--gs-line);
  border-radius: 14px;
  overflow: hidden;
}

.gs-exceptions-head {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.gs-exceptions-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.gs-exceptions-hint {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--gs-muted);
  text-wrap: pretty;
}

.gs-switch {
  width: 46px;
  height: 28px;
  flex: 0 0 46px;
  border-radius: 999px;
  background: var(--gs-dash);
  position: relative;
  transition: background-color 200ms var(--gs-ease);
}

.gs-exceptions-head.is-on .gs-switch,
.gs-switch.is-on {
  background: var(--gs-blue);
}

.gs-switch span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(11, 27, 58, 0.18);
  transition: left 200ms var(--gs-ease);
}

.gs-exceptions-head.is-on .gs-switch span,
.gs-switch.is-on span {
  left: 21px;
}

.gs-exceptions-body {
  border-top: 1px solid var(--gs-line-soft);
  background: #fafbfd;
}

.gs-ex-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  animation: gs-row-in 240ms var(--gs-ease) both;
}

.gs-ex-row + .gs-ex-row,
.gs-ex-add {
  border-top: 1px solid var(--gs-line-soft);
}

.gs-ex-day {
  width: 72px;
  flex-shrink: 0;
  height: 40px;
  border: 1px solid var(--gs-line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 0 8px;
}

.gs-ex-row select.gs-ex-time {
  flex: 1;
  min-width: 0;
  height: 40px;
  border: 1px solid var(--gs-line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  padding: 0 10px;
}

.gs-ex-row .gs-to { font-size: 13px; }

.gs-ex-add {
  appearance: none;
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 0;
  background: transparent;
  color: var(--gs-blue);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

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

.gs-otp input {
  box-sizing: border-box;
  width: 100%;
  height: 56px;
  margin: 0;
  padding: 0;
  text-align: center;
  font: inherit;
  font-size: 22px;
  font-weight: 700;
  border: 1px solid var(--gs-line);
  border-radius: 14px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--gs-press), box-shadow var(--gs-press), transform var(--gs-press);
}

.gs-otp input:focus {
  outline: none;
  border: 1.5px solid var(--gs-blue);
  box-shadow: 0 0 0 3px var(--gs-blue-ring);
  transform: translateY(-1px);
}

.gs-wait {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #fff;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
  animation: gs-fade 240ms var(--gs-ease);
}

.gs-wait-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #2457f5, #93c5fd, #2457f5);
  mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 0);
  animation: gs-spin 1s linear infinite;
}

.gs-wait-title {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 800;
}

.gs-wait-copy {
  margin: 0;
  color: var(--gs-muted);
  font-size: 15px;
}

@keyframes gs-spin { to { transform: rotate(1turn); } }
@keyframes gs-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gs-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
}

.gs-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 58, 0.45);
  animation: gs-fade 200ms ease;
}

.gs-modal-card {
  position: relative;
  width: min(420px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 64px rgba(11, 27, 58, 0.18);
  text-align: center;
  animation: gs-modal-in 280ms var(--gs-ease);
}

@keyframes gs-modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.gs-modal-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gs-blue-soft);
  color: var(--gs-blue);
  display: grid;
  place-items: center;
}

.gs-modal-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
}

.gs-modal-phone {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--gs-blue);
}

.gs-modal-copy {
  margin: 0 0 22px;
  color: var(--gs-muted);
  font-size: 14px;
  line-height: 1.5;
}

.gs-modal-card .gs-continue { width: 100%; }

.gs-modal-edit {
  appearance: none;
  display: block;
  width: 100%;
  margin-top: 10px;
  border: 0;
  background: none;
  color: var(--gs-muted);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 860px) {
  .gs-page {
    background: #eef0f4;
    padding: 28px 16px;
    box-sizing: border-box;
  }
  .gs-shell {
    min-height: calc(100dvh - 56px);
    max-width: 440px;
    border-radius: 28px;
    box-shadow: 0 18px 48px rgba(11, 27, 58, 0.1);
    overflow: hidden;
  }
  .gs-chrome {
    padding-top: 18px;
  }
  .gs-h { font-size: 28px; }
}

@media (max-width: 380px) {
  .gs-h { font-size: 22px; }
  .gs-chip { height: 44px; font-size: 13px; }
  .gs-ind { padding: 10px 12px; }
  .gs-ind-label { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .gs-panel.is-enter,
  .gs-panel.is-enter-back,
  .gs-ind,
  .gs-inds.is-open .gs-ind.is-extra,
  .gs-ex-row,
  .gs-field-ok,
  .gs-modal-card,
  .gs-modal-backdrop,
  .gs-wait {
    animation: none;
  }
  .gs-continue,
  .gs-chrome-back,
  .gs-ind,
  .gs-chip,
  .gs-hours-preset,
  .gs-switch,
  .gs-switch span,
  .gs-progress span,
  .gs-otp input {
    transition-duration: 0.01ms;
  }
  .gs-continue:hover:not(:disabled),
  .gs-continue:active:not(:disabled),
  .gs-chrome-back:active,
  .gs-ind:active,
  .gs-chip:active,
  .gs-hours-preset:active,
  .gs-otp input:focus {
    transform: none;
  }
  .gs-wait-mark { animation: none; }
}
