@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');._wrap_1bh0h_1 {
  position: relative;
}

._avatar_1bh0h_5 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border-subtle);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  padding: 0;
}

._avatar_1bh0h_5:hover {
  border-color: #4030F0;
  box-shadow: 0 0 0 3px rgba(64, 48, 240, 0.14);
}

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

._initials_1bh0h_32 {
  font-size: 13px;
  font-weight: var(--fw-bold, 700);
  color: #fff;
  line-height: 1;
  user-select: none;
}

/* ── Dropdown menu ── */
._menu_1bh0h_41 {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg, 12px);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: _menuIn_1bh0h_1 0.16s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 600;
}

@keyframes _menuIn_1bh0h_1 {
  from { opacity: 0; transform: translateY(-6px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

._menuHeader_1bh0h_60 {
  padding: 14px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

._menuName_1bh0h_67 {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--text-strong);
}

._menuEmail_1bh0h_73 {
  font-size: 12px;
  color: var(--text-muted);
  word-break: break-all;
}

._menuDivider_1bh0h_79 {
  height: 1px;
  background: var(--border-subtle);
}

._menuItem_1bh0h_84 {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 11px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--text-body);
  text-align: left;
  transition: background var(--dur-fast) var(--ease-out);
}

._menuItem_1bh0h_84:hover {
  background: var(--surface-sunken);
  color: var(--text-strong);
}
/* ── Outer sticky wrapper ── */
._outer_6lol7_2 {
  position: sticky;
  top: 16px;
  z-index: 200;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

/* ── Floating pill ── */
._pill_6lol7_14 {
  pointer-events: auto;
  width: 100%;
  max-width: 1160px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 10px 12px 10px 22px;
  box-shadow: var(--shadow-md);
}

/* ── Logo ── */
._logo_6lol7_31 {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity var(--dur-fast) var(--ease-out);
}

._logo_6lol7_31:hover {
  opacity: 0.8;
}

._logoImg_6lol7_43 {
  height: 28px;
  width: auto;
  display: block;
}

/* ── Desktop nav links ── */
._links_6lol7_50 {
  display: flex;
  gap: 2px;
  flex: 1;
  margin-left: 8px;
  align-items: center;
}

._link_6lol7_50 {
  font-size: 14.5px;
  font-weight: var(--fw-medium);
  font-family: var(--font-text);
  color: var(--text-body);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}

._link_6lol7_50:hover {
  background: var(--surface-sunken);
  color: var(--text-strong);
}

._linkActive_6lol7_76 {
  background: var(--surface-sunken);
  color: var(--text-strong);
}

/* ── Discover dropdown trigger ── */
._discoverWrapper_6lol7_82 {
  position: relative;
}

._discoverTrigger_6lol7_86 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-text);
}

._chevron_6lol7_96 {
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-out);
}

._chevronOpen_6lol7_101 {
  transform: rotate(180deg);
}

/* ── Discover dropdown panel ── */
._dropdown_6lol7_106 {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 300;
}

._dropdownItem_6lol7_119 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: none;
  background: none;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  font-family: var(--font-text);
  color: var(--text-body);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}

._dropdownItem_6lol7_119:hover {
  background: var(--surface-sunken);
  color: var(--text-strong);
}

._dropdownItemSub_6lol7_144 {
  gap: 8px;
}

._dropdownGroup_6lol7_148 {
  position: relative;
}

/* Sub-dropdown (Middle East / SE Asia) */
._subDropdown_6lol7_153 {
  margin: 2px 6px 4px 28px;
  padding-left: 12px;
  border-left: 2px solid var(--border-subtle);
}

._subDropdownItem_6lol7_159 {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  border: none;
  background: none;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  font-family: var(--font-text);
  color: var(--text-body);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}

._subDropdownItem_6lol7_159:hover {
  background: var(--surface-sunken);
  color: var(--text-strong);
}

/* ── Right controls ── */
._right_6lol7_183 {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

/* Primary CTA — Login (near-black) */
._loginBtn_6lol7_192 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  font-family: var(--font-text);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--ink-900, #0c0e12);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

._loginBtn_6lol7_192:hover {
  background: #1e2128;
  box-shadow: 0 4px 16px rgba(12, 14, 18, 0.28);
}

/* ── Hamburger (mobile only) ── */
._hamburger_6lol7_213 {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
}

._hamburger_6lol7_213:hover {
  background: var(--surface-sunken);
}

/* ── Mobile drawer ── */
._drawer_6lol7_232 {
  pointer-events: auto;
  width: calc(100% - 48px);
  max-width: 1160px;
  background: var(--surface-card);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-out);
}

._drawerOpen_6lol7_244 {
  max-height: 520px;
}

._drawerLinks_6lol7_248 {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-5) var(--space-6);
  gap: 2px;
}

/* Section label inside drawer (e.g. "Discover") */
._drawerSectionLabel_6lol7_256 {
  font-size: var(--fs-overline);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--space-3) 0 var(--space-1);
}

._drawerLink_6lol7_248 {
  display: block;
  width: 100%;
  text-align: left;
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  font-family: var(--font-text);
  color: var(--text-body);
  text-decoration: none;
  padding: var(--space-3) 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out);
}

._drawerLink_6lol7_248:hover {
  color: var(--text-strong);
}

._drawerBook_6lol7_285 {
  margin-top: var(--space-4);
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--ink-900, #0c0e12);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  font-family: var(--font-text);
  text-align: center;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
}

._drawerBook_6lol7_285:hover {
  background: #1e2128;
}

/* ── Drawer: logged-in user row ── */
._drawerUserRow_6lol7_306 {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--surface-sunken);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

._drawerUserName_6lol7_316 {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--text-strong);
}

._drawerSignOut_6lol7_322 {
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  text-align: left;
  padding: 0;
  font-family: var(--font-text);
  transition: color var(--dur-fast) var(--ease-out);
}

._drawerSignOut_6lol7_322:hover {
  color: #dc2626;
}

/* Hide Login button in Nav when on mobile (avatar shown in drawer) */
@media (max-width: 768px) {
  ._loginBtn_6lol7_192 {
    display: none;
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  ._links_6lol7_50 {
    display: none;
  }

  ._loginBtn_6lol7_192 {
    display: none;
  }

  ._hamburger_6lol7_213 {
    display: flex;
  }
}
._footer_1m2nj_1 {
  background: var(--surface-inverse);
  padding: 56px 0 28px;
  margin-top: 0;
}

._inner_1m2nj_7 {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

._top_1m2nj_13 {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

/* ── Brand ── */
._brand_1m2nj_22 {
  max-width: 240px;
}

._logo_1m2nj_26 {
  margin-bottom: var(--space-2);
}

._logoImg_1m2nj_30 {
  height: 26px;
  width: auto;
  display: block;
  opacity: 0.92;
}

._tagline_1m2nj_37 {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
  line-height: var(--lh-relaxed);
}

/* ── Nav columns ── */
._cols_1m2nj_44 {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

._col_1m2nj_44 {}

._colHeading_1m2nj_52 {
  font-size: var(--fs-overline);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--space-4);
}

._colLink_1m2nj_61 {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  margin-bottom: var(--space-2);
  transition: color var(--dur-fast) var(--ease-out);
}

._colLink_1m2nj_61:hover {
  color: rgba(255,255,255,0.88);
}

/* ── Bottom bar ── */
._bottom_1m2nj_75 {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--fs-overline);
  color: rgba(255,255,255,0.50);
}

._legal_1m2nj_86 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

._legal_1m2nj_86 a {
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

._legal_1m2nj_86 a:hover {
  color: rgba(255,255,255,0.82);
}

._dot_1m2nj_102 {
  opacity: 0.4;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  ._top_1m2nj_13 {
    flex-direction: column;
    gap: var(--space-8);
  }

  ._brand_1m2nj_22 {
    max-width: 100%;
  }

  ._cols_1m2nj_44 {
    gap: var(--space-8);
  }

  ._bottom_1m2nj_75 {
    flex-direction: column;
    gap: var(--space-2);
  }
}
/* ── Overlay ── */
._overlay_1x8kw_2 {
  position: fixed;
  inset: 0;
  background: rgba(12, 14, 18, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: _fadeIn_1x8kw_1 0.18s ease;
}

@keyframes _fadeIn_1x8kw_1 {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Card ── */
._card_1x8kw_22 {
  position: relative;
  background: var(--surface-card, #fff);
  border: 1px solid var(--border-subtle, rgba(0,0,0,0.08));
  border-radius: 20px;
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  animation: _cardIn_1x8kw_1 0.26s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90svh;
  overflow-y: auto;
}

@keyframes _cardIn_1x8kw_1 {
  from { transform: scale(0.94) translateY(16px); opacity: 0; }
  to   { transform: scale(1)    translateY(0);    opacity: 1; }
}

/* ── Close ── */
._closeBtn_1x8kw_42 {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--surface-sunken, #f5f6f7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted, #6b7280);
  transition: background var(--dur-fast, 0.12s) ease, color var(--dur-fast, 0.12s) ease;
  flex-shrink: 0;
}

._closeBtn_1x8kw_42:hover {
  background: var(--border-subtle, rgba(0,0,0,0.08));
  color: var(--text-strong, #0c0e12);
}

/* ── Logo ── */
._logoWrap_1x8kw_66 {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

._logo_1x8kw_66 {
  height: 26px;
  width: auto;
}

/* ── Back button ── */
._backBtn_1x8kw_78 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: var(--fw-medium, 500);
  color: var(--text-muted, #6b7280);
  margin-bottom: 16px;
  padding: 0;
  transition: color var(--dur-fast, 0.12s) ease;
}

._backBtn_1x8kw_78:hover {
  color: var(--text-strong, #0c0e12);
}

/* ── Headings ── */
._title_1x8kw_98 {
  font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
  font-size: 22px;
  font-weight: var(--fw-bold, 700);
  color: var(--text-strong, #0c0e12);
  margin: 0 0 8px;
  line-height: 1.2;
  text-align: center;
}

._sub_1x8kw_108 {
  font-size: 14px;
  color: var(--text-muted, #6b7280);
  line-height: 1.55;
  margin: 0 0 24px;
  text-align: center;
}

/* ── Google button wrapper ── */
._googleWrap_1x8kw_117 {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

._googleBtn_1x8kw_123 {
  /* GIS renders its own button inside here; we size the container */
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Force GIS button to fill container width */
._googleBtn_1x8kw_123 > div,
._googleBtn_1x8kw_123 > iframe {
  width: 100% !important;
}

/* ── Divider ── */
._divider_1x8kw_139 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--text-muted, #6b7280);
  font-size: 12px;
  font-weight: var(--fw-medium, 500);
}

._divider_1x8kw_139::before,
._divider_1x8kw_139::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle, rgba(0,0,0,0.08));
}

/* ── Phone row ── */
._phoneRow_1x8kw_158 {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

._dialSelect_1x8kw_164 {
  flex-shrink: 0;
  width: 96px;
  height: 48px;
  border: 1px solid var(--border-strong, rgba(0,0,0,0.18));
  border-radius: var(--radius-lg, 12px);
  padding: 0 8px 0 10px;
  font-size: 14px;
  font-family: var(--font-text);
  color: var(--text-strong, #0c0e12);
  background: var(--surface-card, #fff);
  cursor: pointer;
  transition: border-color var(--dur-fast, 0.12s) ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  padding-right: 22px;
}

._dialSelect_1x8kw_164:focus {
  outline: none;
  border-color: #4030F0;
  box-shadow: 0 0 0 3px rgba(64, 48, 240, 0.12);
}

._phoneInput_1x8kw_190 {
  flex: 1;
  height: 48px;
  border: 1px solid var(--border-strong, rgba(0,0,0,0.18));
  border-radius: var(--radius-lg, 12px);
  padding: 0 16px;
  font-size: 15px;
  font-family: var(--font-text);
  color: var(--text-strong, #0c0e12);
  background: var(--surface-card, #fff);
  transition: border-color var(--dur-fast, 0.12s) ease, box-shadow var(--dur-fast, 0.12s) ease;
}

._phoneInput_1x8kw_190::placeholder {
  color: var(--text-placeholder, #9ca3af);
}

._phoneInput_1x8kw_190:focus {
  outline: none;
  border-color: #4030F0;
  box-shadow: 0 0 0 3px rgba(64, 48, 240, 0.12);
}

/* ── Primary button ── */
._primary_1x8kw_214 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  border: none;
  border-radius: var(--radius-pill, 9999px);
  background: #4030F0;
  color: #fff;
  font-size: 15px;
  font-weight: var(--fw-semibold, 600);
  font-family: var(--font-text);
  cursor: pointer;
  transition: background 0.14s ease, box-shadow 0.14s ease, opacity 0.14s ease;
  margin-top: 4px;
}

._primary_1x8kw_214:hover:not(:disabled) {
  background: #3526d4;
  box-shadow: 0 8px 28px rgba(64, 48, 240, 0.36);
}

._primary_1x8kw_214:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Spinner inside button ── */
._spinner_1x8kw_244 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  animation: _spin_1x8kw_244 0.7s linear infinite;
  display: inline-block;
}

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

/* ── Error (global, centered — Google auth failure) ── */
._error_1x8kw_259 {
  font-size: 13px;
  color: #dc2626;
  margin: 4px 0 10px;
  text-align: center;
}

/* ── Inline field error ── */
._fieldError_1x8kw_267 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: var(--fw-medium, 500);
  color: #dc2626;
  margin: 5px 0 0;
  line-height: 1.4;
}

/* ── Input error state ── */
._inputError_1x8kw_279,
._inputError_1x8kw_279:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

/* ── Field wrapper: input + its inline error stacked ── */
._fieldWrap_1x8kw_286 {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ── Legal ── */
._legal_1x8kw_294 {
  font-size: 11.5px;
  color: var(--text-placeholder, #9ca3af);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

._legal_1x8kw_294 a {
  color: var(--text-muted, #6b7280);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── OTP section ── */
._demoBanner_1x8kw_309 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(64, 48, 240, 0.06);
  border: 1px solid rgba(64, 48, 240, 0.18);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13px;
  color: #4030F0;
  margin-bottom: 20px;
  text-align: center;
}

._otpRow_1x8kw_324 {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

._otpBox_1x8kw_331 {
  width: 46px;
  height: 56px;
  border: 1.5px solid var(--border-strong, rgba(0,0,0,0.18));
  border-radius: 12px;
  text-align: center;
  font-size: 22px;
  font-weight: var(--fw-bold, 700);
  color: var(--text-strong, #0c0e12);
  background: var(--surface-card, #fff);
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
  font-family: var(--font-text);
  caret-color: #4030F0;
}

._otpBox_1x8kw_331:focus {
  outline: none;
  border-color: #4030F0;
  box-shadow: 0 0 0 3px rgba(64, 48, 240, 0.12);
}

._otpBoxFilled_1x8kw_352 {
  border-color: #4030F0;
  background: rgba(64, 48, 240, 0.04);
}

._resend_1x8kw_357 {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted, #6b7280);
  margin-top: 14px;
}

._resendBtn_1x8kw_364 {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: var(--fw-semibold, 600);
  color: #4030F0;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

._resendBtn_1x8kw_364:hover {
  color: #3526d4;
}

/* ── Profile form ── */
._profileForm_1x8kw_381 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

._nameRow_1x8kw_387 {
  display: flex;
  gap: 10px;
}

._input_1x8kw_279 {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border-strong, rgba(0,0,0,0.18));
  border-radius: var(--radius-lg, 12px);
  padding: 0 16px;
  font-size: 15px;
  font-family: var(--font-text);
  color: var(--text-strong, #0c0e12);
  background: var(--surface-card, #fff);
  box-sizing: border-box;
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
}

._input_1x8kw_279::placeholder {
  color: var(--text-placeholder, #9ca3af);
}

._input_1x8kw_279:focus {
  outline: none;
  border-color: #4030F0;
  box-shadow: 0 0 0 3px rgba(64, 48, 240, 0.12);
}

._inputFull_1x8kw_416 {
  width: 100%;
}

/* ── Mobile ── */
@media (max-width: 480px) {
  ._card_1x8kw_22 {
    padding: 28px 20px 24px;
    border-radius: 16px;
  }

  ._otpBox_1x8kw_331 {
    width: 40px;
    height: 50px;
    font-size: 20px;
  }

  ._otpRow_1x8kw_324 {
    gap: 6px;
  }
}
/* ── Page loader ── */
._loader_16abd_2 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--surface-page);
}

._loaderSpinner_16abd_10 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--brand);
  animation: _spin_16abd_1 0.75s linear infinite;
}

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

/* ── 404 ── */
._notFound_16abd_24 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  gap: var(--space-4);
  padding: var(--space-24) var(--gutter);
}

._notFound_16abd_24 h1 {
  font-size: 80px;
  font-weight: var(--fw-heavy);
  color: var(--border-strong);
  line-height: 1;
}

._notFound_16abd_24 p {
  font-size: var(--fs-body-lg);
  color: var(--text-muted);
}

._notFound_16abd_24 a {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--brand);
  text-decoration: underline;
}

/* ── Auth modal ── */
._authOverlay_16abd_55 {
  position: fixed;
  inset: 0;
  background: rgba(12,14,18,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: _fadeIn_16abd_1 var(--dur-base) var(--ease-out);
}

@keyframes _fadeIn_16abd_1 {
  from { opacity: 0; }
  to   { opacity: 1; }
}

._authCard_16abd_74 {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px 24px 32px;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  animation: _scaleIn_16abd_1 var(--dur-slow) cubic-bezier(0.22, 0.68, 0, 1.18);
}

@keyframes _scaleIn_16abd_1 {
  from { transform: scale(0.94) translateY(12px); opacity: 0; }
  to   { transform: scale(1)    translateY(0);    opacity: 1; }
}

._authClose_16abd_91 {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--space-2);
}

._authClose_16abd_91 button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
}

._authClose_16abd_91 button:hover {
  background: var(--surface-sunken);
}

._authIcon_16abd_115 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

._authTitle_16abd_126 {
  font-family: var(--font-display);
  font-size: var(--fs-title);
  font-weight: var(--fw-semibold);
  color: var(--text-strong);
  margin-bottom: var(--space-2);
}

._authSub_16abd_134 {
  font-size: var(--fs-sm);
  color: var(--text-body);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

._authActions_16abd_144 {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

._authPrimary_16abd_150 {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--brand);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

._authPrimary_16abd_150:hover {
  background: var(--brand-strong);
  box-shadow: var(--shadow-brand);
}

._authSecondary_16abd_168 {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: var(--surface-card);
  color: var(--text-strong);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
}

._authSecondary_16abd_168:hover {
  background: var(--surface-sunken);
}



/* ============================================================
   Travelomore Design Tokens — single source of truth.
   Import this file once at the app root.
   ============================================================ */
:root {
  /* ── Brand: Electric Indigo ── */
  --indigo-50:  #EEEDFE;
  --indigo-100: #DEDBFD;
  --indigo-200: #C0B9FB;
  --indigo-300: #9C90F8;
  --indigo-400: #7361F4;
  --indigo-500: #4030F0;
  --indigo-600: #3422D6;
  --indigo-700: #281BA8;
  --indigo-800: #1D1480;
  --indigo-900: #150E5C;

  /* ── Ink ── */
  --ink-900: #0F1115;
  --ink-800: #16191F;
  --ink-700: #1F232B;

  /* ── Neutrals ── */
  --gray-0:   #FFFFFF;
  --gray-25:  #FAFAFB;
  --gray-50:  #F5F6F7;
  --gray-100: #ECEDEF;
  --gray-200: #DFE1E5;
  --gray-300: #C8CBD1;
  --gray-400: #A6ABB4;
  --gray-500: #7C828D;
  --gray-600: #5A606B;
  --gray-700: #3F444E;
  --gray-800: #282C33;
  --gray-900: #15181D;

  /* ── Semantic ── */
  --green-500:  #1FA463;
  --green-300:  #2FB46B;
  --amber-500:  #E8920C;
  --red-500:    #E5484D;
  --blue-500:   #2E84E8;

  /* ── Semantic aliases ── */
  --brand:           var(--indigo-500);
  --brand-strong:    var(--indigo-600);
  --brand-soft:      var(--indigo-50);
  --brand-on:        #FFFFFF;

  --surface-page:    var(--gray-25);
  --surface-card:    var(--gray-0);
  --surface-sunken:  var(--gray-50);
  --surface-inverse: var(--ink-900);
  --surface-glass:   rgba(255,255,255,0.14);

  --text-strong:     var(--ink-900);
  --text-body:       var(--gray-700);
  --text-muted:      var(--gray-500);
  --text-on-dark:    #FFFFFF;
  --text-on-dark-dim:rgba(255,255,255,0.72);
  --text-brand:      var(--indigo-600);

  --border-subtle:   var(--gray-200);
  --border-strong:   var(--gray-300);
  --border-on-dark:  rgba(255,255,255,0.22);

  --control-ink:     var(--ink-900);
  --control-ink-hover: var(--ink-700);
  --field-bg:        var(--gray-0);
  --field-border:    var(--gray-200);
  --field-focus:     var(--indigo-500);

  --overlay-bottom:  linear-gradient(180deg, rgba(12,14,18,0) 0%, rgba(12,14,18,0.10) 38%, rgba(12,14,18,0.78) 100%);
  --overlay-flat:    rgba(12,14,18,0.32);

  /* ── Typography ── */
  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-text:    "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono:    "SF Mono", ui-monospace, "SFMono-Regular", "Menlo", monospace;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-heavy:    800;

  --fs-display-2xl: 76px;
  --fs-display-xl:  58px;
  --fs-display-lg:  44px;
  --fs-h1:  34px;
  --fs-h2:  28px;
  --fs-h3:  22px;
  --fs-title: 18px;
  --fs-body-lg: 17px;
  --fs-body:  15px;
  --fs-sm:    13px;
  --fs-xs:    12px;
  --fs-overline: 11px;

  --lh-tight:   1.04;
  --lh-snug:    1.18;
  --lh-normal:  1.5;
  --lh-relaxed: 1.62;

  --ls-tighter: -0.03em;
  --ls-tight:   -0.015em;
  --ls-normal:  0em;
  --ls-wide:    0.04em;
  --ls-overline:0.14em;

  /* ── Spacing (4px base) ── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  --container-max: 1200px;
  --gutter: 24px;
  --section-y: 96px;

  /* ── Radius ── */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-2xl:  36px;
  --radius-pill: 999px;

  /* ── Shadows ── */
  --shadow-xs: 0 1px 2px rgba(15,17,21,0.06);
  --shadow-sm: 0 2px 6px rgba(15,17,21,0.07);
  --shadow-md: 0 8px 20px rgba(15,17,21,0.08);
  --shadow-lg: 0 18px 40px rgba(15,17,21,0.10);
  --shadow-xl: 0 30px 70px rgba(15,17,21,0.14);
  --shadow-brand: 0 10px 28px rgba(64,48,240,0.30);

  --ring-brand: 0 0 0 3px rgba(64,48,240,0.28);
  --ring-error: 0 0 0 3px rgba(229,72,77,0.26);

  /* ── Motion ── */
  --dur-instant: 80ms;
  --dur-fast:    140ms;
  --dur-base:    220ms;
  --dur-slow:    360ms;
  --dur-slowest: 560ms;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-emph:   cubic-bezier(0.16, 1, 0.3, 1);

  --press-scale: 0.97;
}
@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-instant: 0ms;
    --dur-fast:    0ms;
    --dur-base:    0ms;
    --dur-slow:    0ms;
    --dur-slowest: 0ms;
    --press-scale: 1;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-text);
  background: var(--surface-page);
  color: var(--text-strong);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: var(--font-display); }
button { font-family: var(--font-text); cursor: pointer; }
img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
.overline {
  font-size: var(--fs-overline);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--brand);
}
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 768px) {
  :root {
    --section-y: 56px;
    --gutter: 20px;
  }
}
