:root {
  --brand: #0b5cad;
  --brand-dark: #073f78;
  --brand-ink: #062e57;
  --brand-soft: #e8f3ff;
  --sky: #70b0e9;
  --sky-strong: #5e9ed8;
  --teal: #67bfbf;
  --teal-soft: #e7f5f5;
  --mint: #9be2dd;
  --sun: #f2a93b;
  --sun-soft: #fff3db;
  --coral: #ef715e;
  --coral-soft: #fff0ed;
  --green: #18855a;
  --green-soft: #e6f6ee;
  --red: #c43e3e;
  --red-soft: #fdecec;
  --ink: #17242b;
  --slate: #4e5e68;
  --muted: #73838d;
  --line: #d9e7ef;
  --line-strong: #c5d7e1;
  --surface: #f5fbfe;
  --warm: #f7f6f2;
  --white: #ffffff;
  --shadow-sm: 0 6px 18px rgba(16, 66, 96, 0.08);
  --shadow-md: 0 14px 40px rgba(10, 62, 94, 0.14);
  --shadow-lg: 0 30px 80px rgba(5, 34, 55, 0.22);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #e9f0f3;
  color: var(--ink);
  font-family: var(--ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  color: inherit;
}

button > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(11, 92, 173, 0.28);
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
}

.prototype-workbench {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(520px, 1fr);
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% 15%, rgba(112, 176, 233, 0.26), transparent 32%),
    radial-gradient(circle at 35% 90%, rgba(103, 191, 191, 0.18), transparent 34%),
    #e9f0f3;
}

.prototype-panel {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  background: rgba(250, 252, 253, 0.96);
  border-right: 1px solid rgba(127, 154, 170, 0.22);
  box-shadow: 18px 0 60px rgba(14, 47, 65, 0.08);
  backdrop-filter: blur(22px);
}

.prototype-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 26px 18px;
}

.prototype-panel__header h1 {
  margin: 5px 0 3px;
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.1;
  color: var(--brand-dark);
}

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

.prototype-kicker {
  color: var(--brand);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.prototype-close {
  display: none;
  flex: 0 0 auto;
  font-size: 28px;
  line-height: 1;
}

.prototype-search {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  margin: 0 22px 12px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--muted);
}

.prototype-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.prototype-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 22px 14px;
}

.mini-button {
  min-height: 39px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  color: var(--slate);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.prototype-routes {
  flex: 1;
  overflow-y: auto;
  padding: 2px 14px 26px;
  overscroll-behavior: contain;
}

.prototype-group {
  margin: 0 0 14px;
}

.prototype-group h2 {
  margin: 0;
  padding: 10px 10px 7px;
  color: #83939c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prototype-route {
  display: grid;
  width: 100%;
  min-height: 40px;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--slate);
  text-align: left;
  cursor: pointer;
}

.prototype-route:hover {
  background: #edf5f8;
}

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

.prototype-route__icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: rgba(112, 176, 233, 0.13);
}

.prototype-route__icon svg {
  width: 14px;
  height: 14px;
}

.prototype-route__title {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prototype-route__state {
  color: #91a0a8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.prototype-panel__footer {
  display: grid;
  gap: 5px;
  padding: 14px 22px 20px;
  border-top: 1px solid rgba(210, 226, 234, 0.8);
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 9px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
}

.status-dot--live {
  background: #1caa72;
  box-shadow: 0 0 0 4px rgba(28, 170, 114, 0.12);
}

.prototype-backdrop {
  display: none;
}

.device-stage {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 54px 56px 58px;
}

.device-context {
  position: absolute;
  top: 22px;
  right: 32px;
  left: 32px;
  display: flex;
  justify-content: space-between;
  color: rgba(45, 74, 88, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.device {
  position: relative;
  width: 418px;
  height: 872px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 55px;
  background: linear-gradient(145deg, #23343b, #06090b 65%, #243a45);
  box-shadow:
    0 0 0 2px #82929b,
    0 0 0 5px #26363e,
    var(--shadow-lg);
}

.device::before,
.device::after {
  position: absolute;
  left: -9px;
  width: 5px;
  border-radius: 5px 0 0 5px;
  background: #33464f;
  content: "";
}

.device::before {
  top: 150px;
  height: 72px;
}

.device::after {
  top: 240px;
  height: 106px;
}

.device-speaker {
  position: absolute;
  z-index: 80;
  top: 25px;
  left: 50%;
  width: 112px;
  height: 31px;
  transform: translateX(-50%);
  border-radius: 18px;
  background: #030506;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.app-viewport {
  position: relative;
  width: 390px;
  height: 844px;
  overflow: hidden;
  border-radius: 42px;
  background: var(--surface);
  isolation: isolate;
}

#app {
  width: 100%;
  height: 100%;
}

.device-help {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(46, 73, 86, 0.62);
  font-size: 9px;
}

kbd {
  padding: 2px 5px;
  border: 1px solid rgba(79, 103, 115, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 0 rgba(31, 56, 68, 0.15);
  font-family: inherit;
}

.prototype-mobile-trigger {
  display: none;
}

.app-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--surface);
}

.app-screen--white {
  background: var(--white);
}

.app-scroll {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 112px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-y: contain;
}

.app-scroll::-webkit-scrollbar,
.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.app-scroll--no-nav {
  padding-bottom: 34px;
}

.app-scroll--with-cta {
  padding-bottom: 134px;
}

.status-bar {
  position: relative;
  z-index: 50;
  display: flex;
  height: 48px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 24px 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  pointer-events: none;
}

.status-bar--light {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-icons svg {
  width: 15px;
  height: 15px;
}

.battery {
  position: relative;
  width: 21px;
  height: 10px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.battery::before {
  position: absolute;
  top: 2px;
  right: -3px;
  width: 2px;
  height: 4px;
  border-radius: 0 2px 2px 0;
  background: currentColor;
  content: "";
}

.battery::after {
  position: absolute;
  top: 1.5px;
  bottom: 1.5px;
  left: 1.5px;
  width: 14px;
  border-radius: 1px;
  background: currentColor;
  content: "";
}

.topbar {
  position: relative;
  z-index: 40;
  display: grid;
  min-height: 54px;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  padding: 0 12px;
  background: rgba(245, 251, 254, 0.92);
  backdrop-filter: blur(16px);
}

.topbar--white {
  background: rgba(255, 255, 255, 0.94);
}

.topbar--overlay {
  position: absolute;
  top: 48px;
  right: 0;
  left: 0;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 20, 38, 0.42), transparent);
  backdrop-filter: none;
}

.topbar__title {
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}

.topbar__action {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.topbar__action:hover {
  background: rgba(112, 176, 233, 0.12);
}

.topbar__action svg {
  width: 21px;
  height: 21px;
}

.topbar__action--glass {
  background: rgba(5, 24, 39, 0.34);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.page {
  padding: 12px 18px 24px;
}

.page--flush {
  padding: 0 0 24px;
}

.page-header {
  padding: 5px 0 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 7px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

.display-title {
  margin: 0;
  color: var(--brand-dark);
  font-family: var(--display);
  font-size: 33px;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.display-title--light {
  color: var(--white);
}

.page-title {
  margin: 0;
  color: var(--brand-dark);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.page-subtitle {
  margin: 9px 0 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  margin: 0 0 26px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

.section-heading h2,
.section-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.text-button {
  min-height: 44px;
  padding: 8px 0 8px 10px;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.primary-button,
.secondary-button,
.quiet-button,
.danger-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 17px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.primary-button:active,
.secondary-button:active,
.quiet-button:active,
.danger-button:active {
  transform: scale(0.985);
}

.primary-button {
  border: 1px solid var(--brand);
  background: var(--brand);
  box-shadow: 0 9px 20px rgba(11, 92, 173, 0.22);
  color: var(--white);
}

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

.primary-button--sun {
  border-color: var(--sun);
  background: var(--sun);
  box-shadow: 0 9px 20px rgba(242, 169, 59, 0.22);
  color: #452c08;
}

.secondary-button {
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--brand-dark);
}

.quiet-button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--brand);
}

.danger-button {
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
}

.button-row {
  display: grid;
  gap: 10px;
}

.button-row--two {
  grid-template-columns: 1fr 1fr;
}

.full-width {
  width: 100%;
}

.sticky-cta {
  position: absolute;
  z-index: 60;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(210, 225, 234, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -12px 30px rgba(25, 70, 96, 0.08);
  backdrop-filter: blur(18px);
}

.sticky-cta--single {
  grid-template-columns: 1fr;
}

.sticky-cta__price span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.sticky-cta__price strong {
  color: var(--brand-dark);
  font-size: 18px;
}

.sticky-cta .primary-button {
  min-height: 50px;
  padding-right: 21px;
  padding-left: 21px;
}

.bottom-nav {
  position: absolute;
  z-index: 55;
  right: 10px;
  bottom: 8px;
  left: 10px;
  display: grid;
  height: 70px;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 5px 6px calc(5px + env(safe-area-inset-bottom));
  border: 1px solid rgba(213, 227, 234, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(18, 64, 91, 0.16);
  backdrop-filter: blur(20px);
}

.bottom-nav__item {
  display: grid;
  min-width: 0;
  height: 58px;
  place-items: center;
  align-content: center;
  gap: 3px;
  padding: 0 2px;
  border: 0;
  border-radius: 17px;
  background: transparent;
  color: #85939b;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

.bottom-nav__item svg {
  width: 21px;
  height: 21px;
}

.bottom-nav__item.is-active {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.bottom-nav__item.is-active span {
  font-weight: 800;
}

.search-field {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(28, 74, 101, 0.05);
  color: var(--muted);
}

.search-field svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.search-field input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
}

.search-field button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 11px;
  background: var(--brand-soft);
  color: var(--brand);
  cursor: pointer;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field label,
.field__label {
  color: var(--slate);
  font-size: 10px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
}

.field textarea {
  min-height: 86px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 92, 173, 0.1);
}

.field__hint {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice-list {
  display: grid;
  gap: 10px;
}

.choice-card {
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(27, 74, 99, 0.04);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.choice-card.is-selected {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: 0 0 0 2px rgba(11, 92, 173, 0.08);
}

.choice-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--surface);
  color: var(--brand);
}

.choice-card.is-selected .choice-card__icon {
  background: var(--white);
}

.choice-card__icon svg {
  width: 21px;
  height: 21px;
}

.choice-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
}

.choice-card small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.choice-card__check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: transparent;
}

.choice-card.is-selected .choice-card__check {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.chip-row,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--slate);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.chip svg {
  width: 15px;
  height: 15px;
}

.chip.is-selected,
.chip--active {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.chip--soft {
  border-color: transparent;
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.chip--success {
  border-color: transparent;
  background: var(--green-soft);
  color: var(--green);
}

.chip--warning {
  border-color: transparent;
  background: var(--sun-soft);
  color: #8a5a0d;
}

.chip--danger {
  border-color: transparent;
  background: var(--red-soft);
  color: var(--red);
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 18px 14px;
}

.progress-track {
  height: 4px;
  flex: 1;
  overflow: hidden;
  border-radius: 99px;
  background: #dfeaf0;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--teal));
  transition: width 240ms ease;
}

.progress-wrap small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.onboarding-page {
  display: flex;
  min-height: calc(100% - 102px);
  flex-direction: column;
  padding: 8px 20px 24px;
}

.onboarding-page__body {
  flex: 1;
}

.onboarding-page__footer {
  display: grid;
  gap: 8px;
  padding-top: 18px;
}

.welcome-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #061f36;
}

.welcome-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-screen::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4, 23, 38, 0.08) 8%, rgba(4, 23, 38, 0.24) 38%, rgba(4, 23, 38, 0.96) 93%),
    linear-gradient(135deg, rgba(7, 63, 120, 0.15), rgba(5, 25, 42, 0.1));
  content: "";
}

.welcome-top {
  position: absolute;
  z-index: 3;
  top: 55px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.welcome-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welcome-brand img {
  width: 48px;
  height: 32px;
  object-fit: contain;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
}

.language-pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 25, 40, 0.22);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.welcome-content {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 28px;
  left: 22px;
}

.welcome-content h1 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: 41px;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.welcome-content h1 span {
  color: var(--mint);
}

.welcome-content > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 13px;
  line-height: 1.55;
}

.welcome-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
}

.welcome-proof span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.welcome-screen .secondary-button {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.splash-screen {
  position: relative;
  display: grid;
  height: 100%;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 22%, rgba(155, 226, 221, 0.38), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(112, 176, 233, 0.5), transparent 35%),
    linear-gradient(145deg, var(--brand-dark), var(--brand) 52%, #337fbf);
}

.splash-screen::before,
.splash-screen::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.splash-screen::before {
  width: 420px;
  height: 420px;
  transform: translate(170px, -280px);
}

.splash-screen::after {
  width: 280px;
  height: 280px;
  transform: translate(-170px, 330px);
}

.splash-content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
}

.splash-mark {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(2, 28, 51, 0.32);
  animation: splash-pulse 1.8s ease-in-out infinite;
}

.splash-mark img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.splash-content h1 {
  margin: 24px 0 6px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.splash-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.splash-loader {
  position: absolute;
  right: 54px;
  bottom: 56px;
  left: 54px;
  z-index: 3;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.splash-loader span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: var(--white);
  animation: loader-sweep 1.4s ease-in-out infinite;
}

.ready-visual {
  position: relative;
  height: 260px;
  margin: 6px 0 24px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #d9f1f1, #cfe8fb);
}

.ready-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ready-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 48, 78, 0.65), transparent 55%);
  content: "";
}

.ready-visual__badge {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.ready-visual__badge span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
}

.home-header {
  padding: 2px 18px 13px;
}

.home-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.home-greeting small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
}

.home-greeting strong {
  color: var(--brand-dark);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.header-actions {
  display: flex;
  gap: 6px;
}

.notification-button {
  position: relative;
}

.notification-button::after {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.location-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.location-button svg {
  width: 15px;
  height: 15px;
}

.today-card {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border-radius: 27px;
  background: var(--brand-dark);
  box-shadow: var(--shadow-md);
}

.today-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.today-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(4, 35, 61, 0.93), rgba(4, 35, 61, 0.34) 75%),
    linear-gradient(to top, rgba(3, 27, 47, 0.45), transparent 55%);
  content: "";
}

.today-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 200px;
  align-content: space-between;
  padding: 20px;
  color: var(--white);
}

.today-card__weather {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.today-card__weather strong {
  font-size: 28px;
  line-height: 1;
}

.today-card__weather small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
}

.today-card__weather span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(155, 226, 221, 0.18);
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  backdrop-filter: blur(9px);
}

.today-card__copy h2 {
  max-width: 270px;
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.05;
}

.today-card__copy p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 10px;
  line-height: 1.45;
}

.today-card__action {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 8px 12px;
  border: 0;
  border-radius: 13px;
  background: var(--white);
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.alert-card {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #eed39e;
  border-radius: var(--radius);
  background: var(--sun-soft);
}

.alert-card--info {
  border-color: #c6deef;
  background: var(--brand-soft);
}

.alert-card--danger {
  border-color: #efc7c3;
  background: var(--red-soft);
}

.alert-card__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.7);
  color: #9b6715;
}

.alert-card--info .alert-card__icon {
  color: var(--brand);
}

.alert-card--danger .alert-card__icon {
  color: var(--red);
}

.alert-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
}

.alert-card p {
  margin: 0;
  color: var(--slate);
  font-size: 8.5px;
  line-height: 1.45;
}

.alert-card button {
  min-height: 44px;
  padding: 7px 4px 7px 8px;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.horizontal-scroll {
  display: flex;
  gap: 12px;
  margin-right: -18px;
  padding-right: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.tour-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.tour-card--horizontal {
  width: 245px;
  min-width: 245px;
  scroll-snap-align: start;
}

.tour-card--row {
  grid-template-columns: 112px 1fr;
  min-height: 126px;
}

.tour-card + .tour-card {
  margin-top: 12px;
}

.tour-card__image {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: #d7e7ef;
}

.tour-card--row .tour-card__image {
  height: 100%;
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.tour-card:hover .tour-card__image img {
  transform: scale(1.025);
}

.tour-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  font-size: 8px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.tour-card__save {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  box-shadow: 0 4px 12px rgba(12, 48, 71, 0.12);
  cursor: pointer;
}

.tour-card__save.is-saved {
  background: var(--coral);
  color: var(--white);
}

.tour-card__save svg {
  width: 17px;
  height: 17px;
}

.tour-card__body {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 12px 13px 13px;
}

.tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
}

.tour-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.tour-card__meta svg {
  width: 12px;
  height: 12px;
}

.tour-card__body h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tour-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
}

.tour-card__rating {
  color: #9a6108;
  font-size: 8px;
  font-weight: 800;
}

.tour-card__price {
  text-align: right;
}

.tour-card__price small {
  display: block;
  color: var(--muted);
  font-size: 7px;
}

.tour-card__price strong {
  color: var(--brand-dark);
  font-size: 14px;
}

.place-card {
  position: relative;
  display: grid;
  width: 162px;
  min-width: 162px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  cursor: pointer;
}

.place-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.place-card__body {
  padding: 11px;
}

.place-card__body h3 {
  margin: 0 0 5px;
  font-size: 12px;
}

.place-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.4;
}

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

.category-tile {
  display: grid;
  min-height: 80px;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 8px 4px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  color: var(--slate);
  font-size: 8px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.category-tile span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
}

.category-tile:nth-child(2) span {
  background: var(--teal-soft);
  color: #277d7d;
}

.category-tile:nth-child(3) span {
  background: var(--sun-soft);
  color: #996315;
}

.category-tile:nth-child(4) span {
  background: #edf0fb;
  color: #5c5ba5;
}

.category-tile svg {
  width: 19px;
  height: 19px;
}

.trip-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.trip-card__hero {
  position: relative;
  height: 120px;
  overflow: hidden;
}

.trip-card__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-card__status {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
}

.trip-card__body {
  padding: 13px;
}

.trip-card__body h3 {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.35;
}

.trip-card__facts {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--slate);
  font-size: 9px;
}

.trip-card__facts span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trip-card__facts svg {
  width: 14px;
  height: 14px;
  color: var(--brand);
}

.support-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 23px;
  background:
    radial-gradient(circle at 90% 10%, rgba(155, 226, 221, 0.38), transparent 36%),
    linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.support-card h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 20px;
}

.support-card p {
  max-width: 245px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 9px;
  line-height: 1.5;
}

.support-card button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 0;
  border-radius: 13px;
  background: var(--white);
  color: var(--brand-dark);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.detail-hero {
  position: relative;
  height: 302px;
  overflow: hidden;
  background: var(--brand-dark);
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 28, 48, 0.76), transparent 57%);
  content: "";
}

.detail-hero__pager {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 15px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(4, 24, 39, 0.48);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.detail-content {
  position: relative;
  z-index: 4;
  margin-top: -26px;
  padding: 20px 18px 28px;
  border-radius: 27px 27px 0 0;
  background: var(--surface);
}

.detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.detail-title-row h1 {
  flex: 1;
  margin: 0;
  color: var(--brand-dark);
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 9px 0 12px;
  color: var(--slate);
  font-size: 9px;
}

.detail-rating strong {
  color: var(--ink);
}

.detail-rating .star {
  color: var(--sun);
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 10px 0 18px;
  padding: 10px 11px;
  border: 1px solid #cce6dc;
  border-radius: 13px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 22px;
}

.fact {
  display: grid;
  min-height: 78px;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.fact svg {
  width: 17px;
  height: 17px;
  color: var(--brand);
}

.fact small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.fact strong {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-section {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.detail-section h2 {
  margin: 0 0 11px;
  font-size: 16px;
}

.detail-section p,
.detail-section li {
  color: var(--slate);
  font-size: 10px;
  line-height: 1.6;
}

.detail-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-section li {
  position: relative;
  padding-left: 22px;
}

.detail-section li::before {
  position: absolute;
  top: 6px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
  content: "";
}

.pickup-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
}

.map-canvas {
  position: relative;
  height: 176px;
  overflow: hidden;
  background:
    linear-gradient(32deg, transparent 44%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0.85) 49%, transparent 50%),
    linear-gradient(147deg, transparent 34%, rgba(255, 255, 255, 0.75) 35%, rgba(255, 255, 255, 0.75) 40%, transparent 41%),
    linear-gradient(105deg, transparent 58%, rgba(255, 255, 255, 0.65) 59%, rgba(255, 255, 255, 0.65) 63%, transparent 64%),
    #dcefea;
}

.map-canvas::before,
.map-canvas::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(112, 176, 233, 0.38);
  content: "";
}

.map-canvas::before {
  top: -45px;
  left: -50px;
  width: 170px;
  height: 170px;
}

.map-canvas::after {
  right: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 8px;
  background: var(--brand);
  box-shadow: 0 5px 12px rgba(8, 59, 104, 0.25);
  color: var(--white);
}

.map-pin svg {
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
}

.map-pin--one {
  top: 47%;
  left: 46%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin--two {
  top: 27%;
  left: 74%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--coral);
}

.map-pin--three {
  top: 72%;
  left: 70%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--teal);
}

.pickup-preview__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
}

.pickup-preview__body strong {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
}

.pickup-preview__body p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
}

.calendar {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.calendar__head strong {
  font-size: 12px;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar__weekday {
  display: grid;
  height: 22px;
  place-items: center;
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
}

.calendar__day {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--ink);
  font-size: 9px;
  cursor: pointer;
}

.calendar__day.is-muted,
.calendar__day:disabled {
  color: #c3ccd1;
  cursor: not-allowed;
}

.calendar__day.is-available::after {
  position: absolute;
  bottom: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.calendar__day.is-selected {
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
}

.calendar__day.is-selected::after {
  background: var(--white);
}

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

.time-option {
  min-height: 48px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--slate);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.time-option small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 600;
}

.time-option.is-selected {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-dark);
}

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

.counter-row strong {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
}

.counter-row small {
  color: var(--muted);
  font-size: 8px;
}

.counter {
  display: grid;
  grid-template-columns: 38px 28px 38px;
  align-items: center;
  text-align: center;
}

.counter button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--brand);
  font-size: 18px;
  cursor: pointer;
}

.counter span {
  font-size: 12px;
  font-weight: 800;
}

.summary-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.summary-card__head {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 11px;
  padding: 11px;
  border-bottom: 1px solid var(--line);
}

.summary-card__head img {
  width: 82px;
  height: 72px;
  object-fit: cover;
  border-radius: 13px;
}

.summary-card__head h3 {
  margin: 2px 0 6px;
  font-size: 11px;
  line-height: 1.35;
}

.summary-card__head p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
}

.summary-list {
  display: grid;
  margin: 0;
}

.summary-row {
  display: grid;
  grid-template-columns: 23px 1fr auto;
  align-items: start;
  gap: 8px;
  padding: 11px 13px;
  border-bottom: 1px solid var(--line);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

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

.summary-row strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 9px;
}

.summary-row button {
  padding: 2px 0 4px 8px;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}

.price-list {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--slate);
  font-size: 9px;
}

.price-row--total {
  margin-top: 4px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.payment-method {
  display: grid;
  width: 100%;
  min-height: 64px;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  text-align: left;
  cursor: pointer;
}

.payment-method + .payment-method {
  margin-top: 9px;
}

.payment-method.is-selected {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.payment-method__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: #101820;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
}

.payment-method strong {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
}

.payment-method small {
  color: var(--muted);
  font-size: 8px;
}

.secure-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 8px;
  line-height: 1.5;
}

.secure-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.processing-screen,
.state-screen {
  display: grid;
  height: calc(100% - 48px);
  align-content: center;
  justify-items: center;
  padding: 30px 26px 60px;
  text-align: center;
}

.processing-orbit {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  margin-bottom: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
}

.processing-orbit::before {
  position: absolute;
  inset: -8px;
  border: 2px solid transparent;
  border-top-color: var(--teal);
  border-right-color: var(--brand);
  border-radius: 50%;
  content: "";
  animation: spin 1.2s linear infinite;
}

.processing-orbit svg {
  width: 40px;
  height: 40px;
}

.processing-screen h1,
.state-screen h1 {
  margin: 0 0 9px;
  color: var(--brand-dark);
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.1;
}

.processing-screen p,
.state-screen > p {
  max-width: 290px;
  margin: 0;
  color: var(--slate);
  font-size: 11px;
  line-height: 1.6;
}

.state-illustration {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 35px;
  background: linear-gradient(145deg, var(--brand-soft), var(--teal-soft));
  color: var(--brand);
  transform: rotate(-3deg);
}

.state-illustration svg {
  width: 47px;
  height: 47px;
  transform: rotate(3deg);
}

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

.state-illustration--warning {
  background: var(--sun-soft);
  color: #a66c12;
}

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

.state-actions {
  display: grid;
  width: 100%;
  gap: 9px;
  margin-top: 26px;
}

.confirmation-card {
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.confirmation-card__top {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  background: var(--green-soft);
}

.confirmation-card__top span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
}

.confirmation-card__top strong {
  display: block;
  margin-bottom: 2px;
  color: var(--green);
  font-size: 10px;
}

.confirmation-card__top small {
  color: #4e7767;
  font-size: 8px;
}

.confirmation-card__body {
  padding: 14px;
}

.confirmation-card__body h3 {
  margin: 0 0 11px;
  font-size: 12px;
  line-height: 1.35;
}

.confirmation-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.confirmation-card__grid span {
  color: var(--muted);
  font-size: 7px;
  text-transform: uppercase;
}

.confirmation-card__grid strong {
  display: block;
  margin-top: 3px;
  font-size: 9px;
}

.qr-card {
  margin: 10px 0 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.qr-grid {
  display: grid;
  width: 176px;
  height: 176px;
  grid-template-columns: repeat(17, 1fr);
  grid-template-rows: repeat(17, 1fr);
  gap: 1px;
  margin: 0 auto 14px;
  padding: 10px;
  border: 1px solid #edf0f2;
  border-radius: 13px;
  background: var(--white);
}

.qr-grid i {
  border-radius: 1px;
  background: transparent;
}

.qr-grid i.on {
  background: #0c1d25;
}

.qr-card strong {
  display: block;
  font-size: 11px;
}

.qr-card small {
  color: var(--muted);
  font-size: 8px;
}

.offline-badge {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
}

.tab-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border-radius: 15px;
  background: #e9f1f4;
}

.tab-bar button {
  min-height: 44px;
  padding: 7px 5px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.tab-bar button.is-active {
  background: var(--white);
  box-shadow: 0 3px 10px rgba(29, 67, 87, 0.08);
  color: var(--brand-dark);
}

.list-row {
  display: grid;
  width: 100%;
  min-height: 62px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.list-row__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
}

.list-row__icon svg {
  width: 19px;
  height: 19px;
}

.list-row strong {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
}

.list-row p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

.list-row__end {
  color: var(--muted);
  font-size: 8px;
}

.notification-row {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.notification-row.is-unread::before {
  position: absolute;
  top: 18px;
  left: -10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.notification-row__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
}

.notification-row__icon--alert {
  background: var(--sun-soft);
  color: #9f6710;
}

.notification-row strong {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
}

.notification-row p {
  margin: 0;
  color: var(--slate);
  font-size: 8px;
  line-height: 1.45;
}

.notification-row time {
  color: var(--muted);
  font-size: 7px;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.avatar {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--brand), var(--teal));
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
}

.profile-card h2 {
  margin: 0 0 4px;
  font-size: 14px;
}

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

.switch {
  position: relative;
  width: 44px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: #cdd8dd;
  cursor: pointer;
}

.switch::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 5px rgba(27, 58, 73, 0.25);
  content: "";
  transition: transform 180ms ease;
}

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

.switch.is-on::after {
  transform: translateX(18px);
}

.divider-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 8px;
}

.divider-label::before,
.divider-label::after {
  height: 1px;
  flex: 1;
  background: var(--line);
  content: "";
}

.otp-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  margin: 21px 0;
}

.otp-row input {
  width: 100%;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.prototype-lab {
  padding: 2px 18px 30px;
}

.lab-section {
  margin: 0 0 20px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.lab-section h2 {
  margin: 0 0 5px;
  font-size: 13px;
}

.lab-section > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.scenario-button {
  display: grid;
  min-height: 74px;
  align-content: space-between;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  color: var(--slate);
  text-align: left;
  cursor: pointer;
}

.scenario-button svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
}

.scenario-button strong {
  font-size: 9px;
}

.scenario-button small {
  color: var(--muted);
  font-size: 7px;
}

.state-table {
  display: grid;
  gap: 8px;
}

.state-table__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.state-table__row:last-child {
  border-bottom: 0;
}

.state-table__row strong {
  color: var(--brand-dark);
  font-size: 8px;
}

.state-table__row span {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

.bottom-sheet-wrap {
  position: absolute;
  z-index: 90;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: rgba(4, 26, 43, 0.42);
  backdrop-filter: blur(2px);
  animation: fade-in 160ms ease-out;
}

.bottom-sheet {
  width: 100%;
  max-height: 86%;
  overflow-y: auto;
  padding: 10px 18px 24px;
  border-radius: 28px 28px 0 0;
  background: var(--surface);
  box-shadow: 0 -20px 50px rgba(4, 27, 45, 0.22);
  animation: sheet-up 210ms cubic-bezier(0.22, 0.86, 0.28, 1);
}

.bottom-sheet__handle {
  width: 42px;
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 99px;
  background: #c5d3da;
}

.bottom-sheet__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.bottom-sheet__header h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 19px;
}

.bottom-sheet__header p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.sheet-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.toast {
  position: absolute;
  z-index: 120;
  right: 16px;
  bottom: 94px;
  left: 16px;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  transform: translateY(20px);
  border-radius: 15px;
  background: rgba(13, 35, 47, 0.96);
  box-shadow: 0 15px 35px rgba(8, 30, 41, 0.3);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.skeleton {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #dde8ed;
}

.skeleton::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  content: "";
  animation: shimmer 1.35s infinite;
}

.skeleton--hero {
  height: 190px;
  border-radius: 24px;
}

.skeleton--line {
  height: 12px;
  margin-bottom: 9px;
}

.skeleton--line-short {
  width: 58%;
}

.skeleton-card {
  margin-bottom: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
}

.empty-inline {
  display: grid;
  min-height: 220px;
  align-content: center;
  justify-items: center;
  padding: 22px;
  border: 1px dashed var(--line-strong);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  text-align: center;
}

.empty-inline span {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 13px;
  place-items: center;
  border-radius: 21px;
  background: var(--brand-soft);
  color: var(--brand);
}

.empty-inline h3 {
  margin: 0 0 6px;
  font-size: 13px;
}

.empty-inline p {
  max-width: 240px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 9px;
  color: var(--slate);
  font-size: 9px;
  line-height: 1.45;
  cursor: pointer;
}

.check-row input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--brand);
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.photo-gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
}

.photo-gallery img:first-child {
  grid-column: 1 / -1;
  height: 250px;
}

.review-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.review-card + .review-card {
  margin-top: 10px;
}

.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}

.review-card__head strong {
  font-size: 10px;
}

.review-card__head span {
  color: var(--sun);
  font-size: 9px;
}

.review-card p {
  margin: 0;
  color: var(--slate);
  font-size: 9px;
  line-height: 1.55;
}

.review-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 7px;
}

.menu-section {
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.menu-section .list-row {
  padding-right: 13px;
  padding-left: 13px;
}

.menu-section .list-row:last-child {
  border-bottom: 0;
}

.timeline {
  display: grid;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding-bottom: 18px;
}

.timeline-item::before {
  position: absolute;
  top: 28px;
  bottom: 0;
  left: 15px;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-item__dot {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--brand);
  font-size: 8px;
  font-weight: 800;
}

.timeline-item strong {
  display: block;
  margin: 2px 0 4px;
  font-size: 10px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
}

.noscript {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: var(--surface);
  color: var(--brand-dark);
  font-weight: 800;
  text-align: center;
}

@keyframes splash-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.02);
  }
}

@keyframes loader-sweep {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(340%);
  }
}

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

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}

@keyframes sheet-up {
  from {
    transform: translateY(100%);
  }
}

@media (max-height: 920px) and (min-width: 761px) {
  .device-stage {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .device {
    transform: scale(0.86);
  }

  .device-help {
    display: none;
  }
}

@media (max-width: 980px) and (min-width: 761px) {
  .prototype-workbench {
    grid-template-columns: 280px 1fr;
  }

  .device-stage {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--surface);
  }

  .prototype-workbench {
    display: block;
    min-height: 100%;
    background: var(--surface);
  }

  .prototype-panel {
    position: fixed;
    z-index: 300;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(88vw, 350px);
    height: 100dvh;
    transform: translateX(-105%);
    border-right: 0;
    box-shadow: 25px 0 70px rgba(4, 27, 45, 0.3);
    transition: transform 220ms cubic-bezier(0.22, 0.86, 0.28, 1);
  }

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

  .prototype-close {
    display: inline-grid;
  }

  .prototype-backdrop {
    position: fixed;
    z-index: 290;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(4, 24, 39, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .prototype-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .device-stage {
    display: block;
    min-height: 100%;
    padding: 0;
  }

  .device-context,
  .device-help,
  .device-speaker {
    display: none;
  }

  .device {
    width: 100%;
    height: 100dvh;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .device::before,
  .device::after {
    display: none;
  }

  .app-viewport {
    width: 100%;
    height: 100dvh;
    border-radius: 0;
  }

  .prototype-mobile-trigger {
    position: fixed;
    z-index: 210;
    right: 11px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(14, 36, 48, 0.86);
    box-shadow: 0 8px 22px rgba(8, 29, 40, 0.25);
    color: var(--white);
    font-size: 8px;
    font-weight: 800;
    backdrop-filter: blur(13px);
    cursor: pointer;
  }

  .prototype-mobile-trigger span:first-child {
    letter-spacing: -2px;
  }

  .prototype-mobile-trigger span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 340px) {
  .page,
  .home-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .display-title {
    font-size: 29px;
  }

  .welcome-content h1 {
    font-size: 36px;
  }

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

  .category-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Native product direction — restrained, system-led, and app-first. */
:root {
  --ink: #0f1113;
  --slate: #52575c;
  --muted: #747a80;
  --line: #e7e9eb;
  --line-strong: #d9dcdf;
  --surface: #ffffff;
  --brand: #0b5cad;
  --brand-dark: #082f53;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: none;
  --shadow-md: 0 12px 32px rgba(10, 20, 28, 0.12);
}

.app-screen {
  display: flex;
  flex-direction: column;
  background: #fff;
}

#app button {
  transition:
    transform 130ms ease-out,
    background-color 160ms ease-out,
    border-color 160ms ease-out,
    color 160ms ease-out;
}

.status-bar {
  flex: 0 0 48px;
  background: inherit;
}

.topbar {
  min-height: 56px;
  flex: 0 0 56px;
  background: rgba(255, 255, 255, 0.94);
}

.topbar--overlay {
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent);
}

.topbar__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.app-scroll {
  height: auto;
  min-height: 0;
  flex: 1 1 auto;
  background: #fff;
  animation: native-screen-in 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.app-scroll--local-update {
  animation: none;
}

.page {
  padding-right: 20px;
  padding-left: 20px;
}

.page-header {
  padding-top: 8px;
  padding-bottom: 22px;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
}

.display-title,
.welcome-content h1,
.processing-screen h1,
.state-screen h1 {
  font-family: var(--ui);
  font-weight: 780;
  letter-spacing: -0.055em;
}

.display-title {
  color: var(--ink);
  font-size: 34px;
  line-height: 1.02;
}

.page-title {
  color: var(--ink);
  font-size: 30px;
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.page-subtitle {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.48;
}

.section {
  margin-bottom: 32px;
}

.section-heading {
  margin-bottom: 15px;
}

.section-heading h2,
.section-heading h3 {
  font-size: 20px;
  font-weight: 730;
  letter-spacing: -0.035em;
}

.section-heading p {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.4;
}

.primary-button,
.secondary-button,
.quiet-button,
.danger-button {
  min-height: 54px;
  border-radius: 14px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

.primary-button:hover {
  background: #000;
}

.primary-button:disabled {
  border-color: #d9dcdf;
  background: #d9dcdf;
  color: #8a9095;
  cursor: not-allowed;
}

.secondary-button {
  border-color: transparent;
  background: #f1f2f3;
  color: #111315;
}

.quiet-button,
.text-button {
  color: #111315;
}

.welcome-content h1 {
  font-size: 44px;
  line-height: 0.98;
}

.welcome-content h1 span {
  color: #fff;
}

.welcome-content > p {
  font-size: 14px;
  line-height: 1.5;
}

.welcome-screen .primary-button--sun {
  border-color: #fff;
  background: #fff;
  color: #111315;
}

.welcome-screen .secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(15, 17, 19, 0.36);
}

.icon-button,
.topbar__action {
  border-color: transparent;
  background: #f1f2f3;
}

.topbar--overlay .topbar__action,
.topbar__action--glass {
  background: rgba(0, 0, 0, 0.34);
}

.search-field {
  min-height: 56px;
  border: 0;
  border-radius: 16px;
  background: #f1f2f3;
  box-shadow: none;
}

.search-field input {
  font-size: 14px;
}

.search-field button {
  border-radius: 13px;
  background: #fff;
  color: #111315;
}

.home-header {
  padding-top: 5px;
  padding-bottom: 16px;
}

.home-greeting small {
  margin-bottom: 4px;
  font-size: 12px;
}

.home-greeting strong,
.home-greeting h1 {
  color: var(--ink);
  font-size: 27px;
  font-weight: 770;
  letter-spacing: -0.045em;
}

.home-greeting h1 {
  margin: 0;
  line-height: 1.06;
}

.location-button {
  border: 0;
  background: #f1f2f3;
  color: #111315;
  font-size: 11px;
}

.location-button svg:first-child {
  color: var(--brand);
}

.home-search-button {
  width: 100%;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.home-search-button span {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
}

.home-search-button svg:last-child {
  color: var(--muted);
}

.home-priority {
  display: grid;
  width: 100%;
  min-height: 76px;
  grid-template-columns: 44px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 0;
  border-radius: 17px;
  background: #f4f5f6;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.home-priority__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: #e6f1fa;
  color: var(--brand);
}

.home-priority__icon--time {
  background: #fff4df;
  color: #8a5a0d;
}

.home-priority strong,
.home-priority small {
  display: block;
}

.home-priority strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.home-priority small {
  overflow: hidden;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-priority > svg {
  color: var(--muted);
}

.home-priority:active,
.home-search-button:active,
.list-row:active,
.choice-card:active,
.tour-card:active {
  transform: scale(0.985);
}

.home-actions .list-row__icon {
  background: #eef5fb;
  color: var(--brand);
}

.today-card {
  min-height: 226px;
  border-radius: 22px;
  box-shadow: none;
}

.today-card__content {
  min-height: 226px;
  padding: 22px;
}

.today-card__weather strong {
  font-size: 34px;
}

.today-card__weather small,
.today-card__weather span {
  font-size: 10px;
}

.today-card__copy h2 {
  max-width: 285px;
  font-family: var(--ui);
  font-size: 26px;
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.today-card__copy p {
  font-size: 11px;
  line-height: 1.45;
}

.today-card__action {
  border-radius: 12px;
  font-size: 11px;
}

.category-tile {
  min-height: 84px;
  border: 0;
  border-radius: 16px;
  background: #f3f4f5;
  font-size: 10px;
  font-weight: 700;
}

.category-tile span {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: transparent !important;
  color: #111315 !important;
}

.tour-card,
.place-card {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tour-card__open,
.place-card__open {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 0;
  border: 0;
  border-radius: inherit;
  outline: 0;
  background: transparent;
  cursor: pointer;
}

.tour-card__open:focus-visible,
.place-card__open:focus-visible {
  box-shadow: inset 0 0 0 3px var(--brand);
}

.tour-card__save {
  z-index: 3;
}

.tour-card__image,
.place-card img {
  overflow: hidden;
  border-radius: 18px;
}

.tour-card__body {
  padding: 12px 2px 4px;
}

.tour-card__body h3 {
  font-size: 14px;
  font-weight: 720;
  line-height: 1.3;
}

.tour-card__meta {
  color: var(--slate);
  font-size: 11px;
}

.tour-card__rating {
  color: var(--ink);
  font-size: 11px;
}

.tour-card__price small {
  font-size: 9px;
}

.tour-card__price strong {
  color: var(--ink);
  font-size: 15px;
}

.tour-card__badge {
  font-size: 9px;
}

.place-card__body {
  padding: 11px 2px 2px;
}

.place-card__body h3 {
  font-size: 13px;
}

.place-card__body p {
  font-size: 11px;
}

.alert-card {
  border: 0;
  border-radius: 16px;
  background: #f5f6f7;
}

.alert-card--info {
  background: #edf5fb;
}

.alert-card--danger {
  background: #fff0ed;
}

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

.alert-card p {
  font-size: 11px;
  line-height: 1.4;
}

.alert-card button {
  color: #111315;
  font-size: 11px;
}

.support-card {
  border-radius: 20px;
  background: #111315;
  box-shadow: none;
}

.support-card h3 {
  font-family: var(--ui);
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.support-card p,
.support-card button {
  font-size: 10px;
}

.choice-card,
.summary-card,
.trip-card,
.profile-card,
.menu-section,
.calendar,
.price-list,
.payment-method,
.review-card,
.qr-card,
.lab-section {
  border-color: transparent;
  background: #f6f7f8;
  box-shadow: none;
}

.choice-card {
  border-radius: 16px;
}

.choice-card.is-selected {
  border-color: #111315;
  background: #fff;
  box-shadow: inset 0 0 0 2px #111315;
}

.choice-card strong {
  font-size: 13px;
}

.choice-card small {
  font-size: 10px;
}

.chip {
  border: 0;
  background: #f1f2f3;
  color: #303438;
  font-size: 11px;
}

.chip.is-selected,
.chip--active {
  background: #111315;
  color: #fff;
}

.field label,
.field__label {
  font-size: 11px;
}

.field input,
.field textarea,
.field select {
  border: 0;
  background: #f1f2f3;
  font-size: 14px;
}

.field__hint,
.secure-note {
  font-size: 10px;
}

.detail-content {
  margin-top: 0;
  border-radius: 0;
  background: #fff;
}

.detail-hero__pager {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 6px;
  border: 0;
}

.detail-hero__pager svg {
  width: 14px;
  height: 14px;
}

.detail-title-row h1 {
  color: var(--ink);
  font-size: 25px;
  font-weight: 770;
}

.detail-rating,
.trust-line {
  font-size: 11px;
}

.trust-line {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
}

.fact {
  border: 0;
  background: #f3f4f5;
}

.fact small {
  font-size: 10px;
}

.fact strong {
  font-size: 12px;
}

.detail-section h2 {
  font-size: 19px;
  letter-spacing: -0.03em;
}

.detail-section p,
.detail-section li {
  font-size: 12px;
  line-height: 1.55;
}

.summary-row span,
.price-row,
.trip-card__facts,
.pickup-preview__body p,
.confirmation-card__grid span {
  font-size: 11px;
}

.summary-row strong,
.pickup-preview__body strong,
.confirmation-card__grid strong {
  font-size: 12px;
}

.list-row strong,
.notification-row strong {
  font-size: 12px;
}

.list-row p,
.notification-row p,
.review-card p,
.timeline-item p {
  font-size: 11px;
}

.bottom-nav {
  right: 0;
  bottom: 0;
  left: 0;
  height: 76px;
  padding: 5px 10px calc(5px + env(safe-area-inset-bottom));
  border: 0;
  border-top: 1px solid #eceeef;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -8px 22px rgba(10, 20, 28, 0.04);
}

.bottom-nav__item {
  color: #777d82;
  font-size: 10px;
}

.bottom-nav__item.is-active {
  background: transparent;
  color: var(--brand);
}

.sticky-cta {
  border-top-color: #eceeef;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -8px 22px rgba(10, 20, 28, 0.05);
}

.sticky-cta__price span {
  font-size: 10px;
}

.sticky-cta__price strong {
  color: #111315;
  font-size: 19px;
}

.state-screen > p,
.processing-screen p {
  font-size: 13px;
}

.prototype-mobile-trigger {
  opacity: 0.58;
}

.prototype-panel.is-open + .prototype-backdrop,
.prototype-mobile-trigger:focus,
.prototype-mobile-trigger:hover {
  opacity: 1;
}

@keyframes native-screen-in {
  from {
    opacity: 0.72;
  }
  to {
    opacity: 1;
  }
}

/* Final native type scale: readable at arm's length, with no brochure-style fine print. */
.topbar__title {
  font-size: 17px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.045em;
}

.primary-button,
.secondary-button,
.quiet-button,
.danger-button {
  font-size: 16px;
}

.search-field input,
.field input,
.field textarea,
.field select {
  font-size: 15px;
}

.field label,
.field__label,
.field__hint,
.secure-note,
.progress-wrap small {
  font-size: 12px;
}

.choice-card strong,
.payment-method strong {
  font-size: 15px;
}

.choice-card small,
.payment-method small {
  font-size: 13px;
  line-height: 1.4;
}

.chip,
.category-tile,
.location-button {
  font-size: 13px;
}

.section-heading p,
.page-subtitle {
  font-size: 14px;
}

.alert-card strong {
  font-size: 14px;
}

.alert-card p,
.alert-card button {
  font-size: 13px;
}

.today-card__weather small,
.today-card__weather span {
  font-size: 12px;
}

.today-card__copy p,
.today-card__action {
  font-size: 13px;
}

.tour-card__body h3 {
  font-size: 16px;
}

.tour-card__meta,
.tour-card__rating,
.tour-card__price small,
.tour-card__badge {
  font-size: 12px;
}

.tour-card__price strong {
  font-size: 17px;
}

.place-card__body h3 {
  font-size: 15px;
}

.place-card__body p,
.fact small,
.detail-rating,
.trust-line,
.sticky-cta__price span {
  font-size: 12px;
}

.fact strong,
.summary-row strong,
.pickup-preview__body strong,
.confirmation-card__grid strong {
  font-size: 14px;
}

.detail-section p,
.detail-section li,
.state-screen > p,
.processing-screen p {
  font-size: 15px;
}

.summary-row span,
.price-row,
.trip-card__facts,
.pickup-preview__body p,
.confirmation-card__grid span,
.check-row span {
  font-size: 13px;
}

.summary-row button,
.summary-card__head p,
.summary-card__head small,
.qr-card small,
.review-card small,
.offline-badge {
  font-size: 12px;
}

.summary-card__head h3,
.qr-card > strong {
  font-size: 15px;
}

.qr-card.is-invalid .qr-grid {
  opacity: 0.18;
  filter: grayscale(1);
}

.qr-card.is-invalid .offline-badge {
  background: var(--red-soft);
  color: var(--red);
}

.list-row strong,
.notification-row strong {
  font-size: 15px;
}

.list-row p,
.notification-row p,
.review-card p,
.timeline-item p {
  font-size: 13px;
}

.payment-method__icon {
  font-size: 11px;
}

.bottom-nav__item {
  font-size: 11px;
}

@media (max-width: 760px) {
  .prototype-mobile-trigger {
    display: none;
  }
}

@media (max-width: 340px) {
  .welcome-content h1 {
    font-size: 39px;
  }

  .page-title {
    font-size: 27px;
  }
}
