:root {
  --ul-bg: #fbfcfa;
  --ul-bg-2: #f4f6f4;
  --ul-surface: rgba(255, 255, 255, 0.84);
  --ul-card: rgba(255, 255, 255, 0.86);
  --ul-card-line: rgba(15, 23, 42, 0.08);
  --ul-text: #0f172a;
  --ul-muted: #475569;
  --ul-card-text: #0f172a;
  --ul-card-muted: #64748b;
  --ul-primary: #0f766e;
  --ul-primary-2: #115e59;
  --ul-success: #16a34a;
  --ul-danger: #b91c1c;
  --ul-card-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
  --ul-radius-xl: 24px;
  --ul-radius-lg: 18px;
  --ul-radius-md: 14px;
  --ul-safe-top: env(safe-area-inset-top, 0px);
  --ul-safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html, body {
  min-height: 100%;
  margin: 0;
  font-family: var(--es-font-sans);
  background: var(--ul-bg);
}
body {
  color: var(--ul-text);
  font-size: var(--es-text-md);
  line-height: var(--es-leading-normal);
}

.ul-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(960px 560px at 12% 14%, rgba(15, 118, 110, 0.09), transparent 58%),
    radial-gradient(760px 460px at 88% 18%, rgba(15, 23, 42, 0.045), transparent 56%),
    radial-gradient(640px 380px at 52% 88%, rgba(148, 163, 184, 0.07), transparent 54%),
    linear-gradient(180deg, #fbfcfa 0%, #f4f6f4 100%);
}
.ul-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.08));
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.08));
}

.ul-page-brand {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  width: min(17vw, 180px);
  min-width: 120px;
  pointer-events: none;
}
.ul-page-brand-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.ul-layout {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
}

.ul-main {
  background: transparent;
}
.ul-main-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 44px 20px calc(44px + var(--ul-safe-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
}
.ul-auth-wrap {
  width: 100%;
  max-width: 560px;
}

.ul-card {
  background: var(--ul-card);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--ul-radius-xl);
  box-shadow: var(--ul-card-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.ul-card-body { padding: 30px; }
.ul-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}
.ul-card-head-brand {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 0;
}

.ul-role-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.ul-role-btn {
  position: relative;
  width: 100%;
  min-height: 148px;
  text-align: left;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,248,246,0.94) 100%);
  padding: 18px 18px 17px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background-color .2s ease,
    transform .2s ease;
}
.ul-role-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(15,118,110,0.055), rgba(15,118,110,0));
  opacity: 0;
  transition: opacity .2s ease;
}
.ul-role-btn:hover,
.ul-role-btn:focus-visible {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(15,118,110,0.24);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10), 0 0 0 4px rgba(15,118,110,0.07);
}
.ul-role-btn:hover::after,
.ul-role-btn:focus-visible::after {
  opacity: 1;
}
.ul-role-btn[aria-pressed="true"] {
  border-color: rgba(15,118,110,0.3);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(236,253,245,0.82) 100%);
  box-shadow: 0 18px 40px rgba(15,118,110,0.09), 0 0 0 1px rgba(15,118,110,0.07);
}
.ul-role-btn[aria-pressed="true"]::after {
  opacity: 1;
}
.ul-role-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15,23,42,0.06);
  background: rgba(248, 250, 252, 0.95);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.ul-role-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ul-role-icon-requester {
  color: #0f766e;
  background: linear-gradient(180deg, #ecfdf5 0%, #ccfbf1 100%);
}
.ul-role-icon-provider {
  color: #334155;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f1 100%);
}
.ul-role-label {
  display: block;
  color: var(--ul-card-text);
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ul-role-copy {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 0.92rem;
  line-height: 1.45;
}

.ul-section { margin-top: 18px; }
.ul-stack { display: grid; gap: 10px; }
.ul-section-buttons { margin-top: 18px; }
.ul-btn, .ul-input { min-height: 50px; border-radius: 14px; }
.ul-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  font-size: 0.94rem;
  line-height: 1.4;
  font-weight: 600;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.78);
  color: var(--ul-card-text);
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.ul-btn:hover,
.ul-btn:focus-visible {
  outline: none;
  border-color: rgba(15,118,110,0.2);
  box-shadow: 0 0 0 4px rgba(15,118,110,0.06);
}
.ul-btn-primary {
  color: #fff;
  border-color: var(--ul-primary);
  background: linear-gradient(180deg, #0d9488 0%, #0f766e 100%);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.16);
}
.ul-btn-primary:hover,
.ul-btn-primary:focus-visible {
  border-color: var(--ul-primary-2);
  background: linear-gradient(180deg, #14b8a6 0%, #0f766e 100%);
}
.ul-btn[disabled] { opacity: 0.72; cursor: not-allowed; }

.ul-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 14px;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.ul-divider::before,
.ul-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(15,23,42,0.12);
}

.ul-input-wrap { display: grid; gap: 8px; }
.ul-label {
  color: #0f172a;
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 600;
}
.ul-input {
  width: 100%;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.78);
  color: var(--ul-card-text);
  padding: 0 15px;
  font-size: 0.94rem;
  line-height: 1.4;
}
.ul-input::placeholder { color: #94a3b8; }
.ul-input:focus {
  outline: none;
  border-color: rgba(15,118,110,0.3);
  box-shadow: 0 0 0 4px rgba(15,118,110,0.08);
}
.ul-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ul-inline-link,
.ul-text-link,
.ul-footer-link {
  color: var(--ul-primary);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 600;
}
.ul-inline-link {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  min-height: 0;
  width: auto;
  display: inline;
  cursor: pointer;
}
.ul-inline-link:hover,
.ul-text-link:hover,
.ul-footer-link:hover { text-decoration: underline; }
.ul-inline-link:focus-visible {
  outline: none;
  text-decoration: underline;
}

.ul-helper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--ul-card-text);
  font-size: 0.9rem;
}
.ul-feedback {
  min-height: 18px;
  margin-top: 8px;
  font-size: 0.88rem;
  line-height: 1.35;
}
.ul-feedback[data-kind="error"] { color: var(--ul-danger); }
.ul-feedback[data-kind="success"] { color: var(--ul-success); }
.ul-feedback[data-kind="info"] { color: var(--ul-card-muted); }

.ul-footer {
  margin-top: 12px;
  text-align: center;
  color: var(--ul-card-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
.ul-hidden { display: none !important; }

/* Shared polish for legacy customer/provider auth templates that include this file. */
body > .min-h-screen.grid {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(920px 520px at 12% 14%, rgba(15, 118, 110, 0.08), transparent 58%),
    radial-gradient(760px 460px at 88% 18%, rgba(15, 23, 42, 0.04), transparent 56%),
    linear-gradient(180deg, #fbfcfa 0%, #f4f6f4 100%);
}

body > .min-h-screen.grid > aside {
  background:
    radial-gradient(740px 360px at 18% 16%, rgba(20, 184, 166, 0.18), transparent 60%),
    radial-gradient(640px 320px at 80% 52%, rgba(148, 163, 184, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.99), rgba(2, 6, 23, 0.99)) !important;
}

body > .min-h-screen.grid > aside > .absolute {
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(20,184,166,.42), transparent 60%),
    radial-gradient(700px 350px at 70% 60%, rgba(148,163,184,.18), transparent 60%),
    linear-gradient(180deg, rgba(15,23,42,1), rgba(2,6,23,1)) !important;
  opacity: .32 !important;
}

body > .min-h-screen.grid main {
  padding-bottom: calc(1.5rem + var(--ul-safe-bottom));
}

body > .min-h-screen.grid main .bg-white.rounded-2xl,
body > .min-h-screen.grid main .bg-white.rounded-\[1\.25rem\],
body > .min-h-screen.grid main #loginCard {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,251,249,.96)) !important;
  border-color: rgba(203,213,225,.95) !important;
  box-shadow: 0 18px 48px rgba(15,23,42,.09) !important;
}

body > .min-h-screen.grid img.bg-slate-900 {
  background: linear-gradient(135deg, #0f766e, #0f172a) !important;
}

body > .min-h-screen.grid .shadow-soft {
  box-shadow: 0 18px 48px rgba(15,23,42,.09) !important;
}

body > .min-h-screen.grid .bg-brand-600,
body > .min-h-screen.grid .hover\:bg-brand-700:hover,
body > .min-h-screen.grid .es-btn-primary {
  background-color: var(--es-primary-bg) !important;
}

body > .min-h-screen.grid .es-btn-primary:hover,
body > .min-h-screen.grid .es-btn-primary:focus-visible {
  background-color: var(--es-primary-bg-hover) !important;
}

body > .min-h-screen.grid .focus\:ring-brand-100:focus,
body > .min-h-screen.grid .focus\:ring-brand-100:focus-visible {
  --tw-ring-color: rgba(15,118,110,.14) !important;
}

body > .min-h-screen.grid .bg-slate-50 {
  background-color: #f7f8f6 !important;
}

body > .min-h-screen.grid .text-brand-600,
body > .min-h-screen.grid .hover\:text-brand-700:hover {
  color: var(--es-brand-600) !important;
}

@media (max-width: 640px) {
  .ul-page-brand {
    top: 18px;
    left: 18px;
    width: min(34vw, 150px);
    min-width: 104px;
  }
  .ul-main-inner { padding: 24px 16px calc(24px + var(--ul-safe-bottom)); }
  .ul-card-body { padding: 22px 18px 20px; }
  .ul-role-grid { grid-template-columns: 1fr; }
  .ul-role-btn { min-height: 132px; }
  .ul-helper-row,
  .ul-row { flex-direction: column; align-items: stretch; }

  body > .min-h-screen.grid main {
    align-items: flex-start;
    padding: 1.5rem 1rem calc(1.5rem + var(--ul-safe-bottom));
  }

  body > .min-h-screen.grid main .flex.items-center.gap-3 {
    min-width: 0;
  }
}

/* Emergi public landing/login shell. Real auth still binds through unified-login.js IDs. */
.ul-landing-shell {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: visible;
  background:
    radial-gradient(900px 520px at 8% 4%, rgba(13, 148, 136, 0.16), transparent 58%),
    radial-gradient(740px 420px at 92% 10%, rgba(16, 185, 129, 0.12), transparent 58%),
    linear-gradient(180deg, #f8fafc 0%, #f0fdfa 52%, #ffffff 100%);
  color: #0f172a;
  font-family: "Plus Jakarta Sans", var(--es-font-sans), ui-sans-serif, system-ui, sans-serif;
}
.ul-landing-shell::before { display: none; }
.ul-landing-shell h1,
.ul-landing-shell h2,
.ul-landing-shell h3 {
  font-family: "Plus Jakarta Sans", var(--es-font-sans), ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.7px;
}
.ul-marketing-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  width: min(1180px, calc(100vw - 32px));
  min-height: 64px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.ul-nav-brand,
.ul-nav-links a,
.ul-marketing-footer a {
  color: inherit;
  text-decoration: none;
}
.ul-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
}
.ul-brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #0d9488, #0f766e);
  color: #fff;
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.22);
}
.ul-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 700;
}
.ul-nav-links a:hover { color: #0f766e; }
.ul-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ul-nav-link-btn,
.ul-nav-signin,
.ul-cta-primary,
.ul-cta-secondary,
.ul-request-card button,
.ul-close-btn {
  font-family: inherit;
  cursor: pointer;
}
.ul-nav-link-btn,
.ul-nav-signin {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 0.88rem;
  font-weight: 800;
}
.ul-nav-link-btn {
  border: 0;
  background: transparent;
  color: #475569;
}
.ul-nav-signin {
  border: 1px solid #0f766e;
  background: #0f766e;
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18);
}
.ul-hero,
.ul-section-block,
.ul-trust-section,
.ul-provider-cta,
.ul-stats-strip,
.ul-marketing-footer {
  width: min(1180px, calc(100vw - 32px));
  margin-inline: auto;
}
.ul-hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 140px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.82fr);
  gap: 52px;
  align-items: center;
}
.ul-eyebrow {
  margin: 0 0 12px;
  color: #0f766e;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ul-hero-copy h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(40px, 11vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: #06121f;
}
.ul-hero-subtitle {
  max-width: 610px;
  margin: 22px 0 0;
  color: #475569;
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  line-height: 1.62;
  font-weight: 600;
}
.ul-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.ul-cta-primary,
.ul-cta-secondary {
  min-height: 52px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.ul-cta-primary {
  border: 1px solid #0f766e;
  background: linear-gradient(180deg, #0d9488 0%, #0f766e 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(15, 118, 110, 0.22);
}
.ul-cta-secondary {
  border: 1px solid #cbd5e1;
  background: rgba(255, 255, 255, 0.86);
  color: #0f172a;
}
.ul-cta-primary:hover,
.ul-cta-secondary:hover { transform: translateY(-1px); }
.ul-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.ul-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0 12px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 800;
}
.ul-hero-visual {
  position: relative;
  min-height: 610px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
  background: #0f172a;
}
.ul-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03);
}
.ul-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.54));
}
.ul-request-card {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.ul-request-card-head,
.ul-location-preview,
.ul-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.ul-request-card-head p,
.ul-request-card-head h2 {
  margin: 0;
}
.ul-request-card-head p {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.ul-request-card-head h2 {
  margin-top: 4px;
  color: #0f172a;
  font-size: 1.42rem;
  line-height: 1.1;
}
.ul-request-card-head span {
  border-radius: 999px;
  background: #dcfce7;
  color: #047857;
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 800;
}
.ul-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ul-service-pills span {
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  padding: 8px 10px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 800;
}
.ul-location-preview {
  justify-content: flex-start;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
  padding: 13px;
}
.ul-location-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
  background: #0f766e;
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.14);
}
.ul-location-preview strong,
.ul-location-preview small {
  display: block;
}
.ul-location-preview strong {
  color: #0f172a;
  font-size: 0.94rem;
}
.ul-location-preview small {
  margin-top: 2px;
  color: #64748b;
}
.ul-request-card button {
  min-height: 48px;
  border: 1px solid #0f766e;
  border-radius: 16px;
  background: #0f766e;
  color: #fff;
  font-weight: 800;
}
.ul-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #e2e8f0;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}
.ul-stats-strip div {
  background: rgba(255, 255, 255, 0.88);
  padding: 24px;
}
.ul-stats-strip strong,
.ul-stats-strip span {
  display: block;
}
.ul-stats-strip strong {
  color: #0f766e;
  font-size: 2rem;
  line-height: 1;
}
.ul-stats-strip span {
  margin-top: 6px;
  color: #475569;
  font-weight: 700;
}
.ul-section-block {
  padding: 92px 0 0;
}
.ul-section-head {
  max-width: 690px;
}
.ul-section-head h2,
.ul-trust-section h2,
.ul-provider-cta h2 {
  margin: 0;
  color: #06121f;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}
.ul-steps-grid,
.ul-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.ul-service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ul-steps-grid article,
.ul-service-grid article,
.ul-trust-card {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}
.ul-steps-grid span {
  display: inline-flex;
  color: #0f766e;
  font-weight: 800;
}
.ul-steps-grid h3,
.ul-service-grid h3 {
  margin: 14px 0 8px;
  color: #0f172a;
  font-size: 1.1rem;
}
.ul-steps-grid p,
.ul-service-grid p,
.ul-trust-section p,
.ul-provider-cta p {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
  font-weight: 600;
}
.ul-trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.55fr);
  gap: 32px;
  align-items: center;
  padding: 96px 0 0;
}
.ul-trust-section p { margin-top: 18px; max-width: 660px; }
.ul-trust-card strong {
  display: block;
  color: #0f172a;
  font-size: 1.06rem;
}
.ul-trust-card ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.ul-trust-card li {
  color: #334155;
  font-weight: 800;
}
.ul-trust-card li::before {
  content: "✓";
  margin-right: 10px;
  color: #0f766e;
}
.ul-provider-cta {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: 96px;
  border-radius: 34px;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
}
.ul-provider-cta img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.ul-provider-cta > div {
  padding: 32px 40px 32px 0;
}
.ul-provider-cta h2,
.ul-provider-cta p {
  color: #fff;
}
.ul-provider-cta p {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.76);
}
.ul-marketing-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 34px 0 42px;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 700;
}
.ul-marketing-footer span { margin-right: auto; color: #0f172a; }
.ul-signin-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ul-signin-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
}
.ul-signin-sheet .ul-card {
  width: min(460px, 100%);
  max-height: min(780px, calc(100dvh - 40px));
  overflow: auto;
  pointer-events: auto;
}
.ul-signin-sheet[hidden],
.ul-signin-backdrop[hidden] {
  display: none !important;
}
.ul-signin-sheet .ul-card-body { padding: 24px; }
.ul-sheet-head {
  margin-bottom: 20px;
  align-items: flex-start;
}
.ul-sheet-head h2,
.ul-sheet-head p {
  margin: 0;
}
.ul-sheet-head h2 {
  color: #0f172a;
  font-size: 1.65rem;
  line-height: 1.1;
}
.ul-sheet-head > div > p:last-child {
  margin-top: 6px;
  color: #64748b;
  font-weight: 600;
  line-height: 1.5;
}
.ul-close-btn {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  color: #475569;
  font-size: 24px;
  line-height: 1;
}
.ul-signin-sheet .ul-role-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}
.ul-signin-sheet .ul-role-btn {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
}
.ul-signin-sheet .ul-role-icon {
  width: 44px;
  height: 44px;
  margin: 0;
  font-weight: 800;
}
.ul-role-text { min-width: 0; }
.ul-role-check {
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 999px;
}
.ul-role-btn[aria-pressed="true"] .ul-role-check {
  border-color: #0f766e;
  background: radial-gradient(circle at center, #0f766e 0 40%, transparent 43%);
}
.ul-signin-sheet .ul-btn-primary {
  background: linear-gradient(180deg, #0d9488 0%, #0f766e 100%);
}
.ul-footer a {
  color: #0f766e;
  font-weight: 800;
  text-decoration: none;
}
.ul-footer a:hover { text-decoration: underline; }
body.ul-sheet-open { overflow: hidden; }

@media (max-width: 980px) {
  .ul-nav-links { display: none; }
  .ul-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 120px;
  }
  .ul-hero-visual {
    min-height: 460px;
  }
  .ul-service-grid,
  .ul-steps-grid,
  .ul-trust-section,
  .ul-provider-cta {
    grid-template-columns: 1fr;
  }
  .ul-provider-cta > div {
    padding: 0 26px 30px;
  }
  .ul-provider-cta img {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .ul-marketing-nav {
    top: 10px;
    width: calc(100vw - 20px);
    min-height: 56px;
    padding: 8px 8px 8px 12px;
  }
  .ul-nav-brand span:last-child { display: none; }
  .ul-nav-link-btn { display: none; }
  .ul-nav-signin {
    min-height: 40px;
    padding-inline: 13px;
  }
  .ul-hero,
  .ul-section-block,
  .ul-trust-section,
  .ul-provider-cta,
  .ul-stats-strip,
  .ul-marketing-footer {
    width: min(100vw - 24px, 1180px);
  }
  .ul-hero {
    min-height: auto;
    padding: 104px 0 46px;
  }
  .ul-hero-copy h1 {
    font-size: clamp(40px, 11vw, 56px);
  }
  .ul-hero-actions {
    display: grid;
  }
  .ul-cta-primary,
  .ul-cta-secondary {
    width: 100%;
  }
  .ul-hero-visual {
    min-height: 410px;
    border-radius: 26px;
  }
  .ul-request-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }
  .ul-stats-strip {
    grid-template-columns: 1fr;
  }
  .ul-section-block,
  .ul-trust-section {
    padding-top: 64px;
  }
  .ul-provider-cta {
    margin-top: 64px;
    border-radius: 26px;
  }
  .ul-marketing-footer {
    flex-wrap: wrap;
    padding-bottom: 28px;
  }
  .ul-marketing-footer span {
    width: 100%;
  }
  .ul-signin-sheet {
    align-items: end;
    padding: 10px;
  }
  .ul-signin-sheet .ul-card {
    width: 100%;
    max-height: calc(100dvh - 20px - var(--ul-safe-bottom));
    border-radius: 24px 24px 18px 18px;
  }
  .ul-signin-sheet .ul-card-body {
    padding: 20px 16px calc(20px + var(--ul-safe-bottom));
  }
}

/* Emergi public home/login design. Scoped so other auth pages that load this file keep their existing layout. */
.ul-public-home {
  --home-brand: #0f766e;
  --home-brand-dark: #0a5c56;
  --home-brand-mid: #14998e;
  --home-brand-pale: #ccfbf1;
  --home-brand-glow: rgba(15, 118, 110, 0.15);
  --home-ink: #0a0f0e;
  --home-ink-2: #1c2b29;
  --home-ink-3: #374b48;
  --home-muted: #6b8f8c;
  --home-border: #d4e5e3;
  --home-surface: #f4fafa;
  --home-white: #ffffff;
  --home-radius-s: 10px;
  --home-radius-m: 16px;
  --home-radius-l: 24px;
  --home-radius-pill: 100px;
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--home-white);
  color: var(--home-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.ul-public-home *,
.ul-public-home *::before,
.ul-public-home *::after {
  box-sizing: border-box;
}

.ul-public-home button,
.ul-public-home input {
  font: inherit;
}

.ul-public-home button {
  cursor: pointer;
}

.ul-public-home button:focus-visible,
.ul-public-home a:focus-visible,
.ul-public-home input:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.35);
  outline-offset: 3px;
}

.ul-public-home .home-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.ul-public-home .nav-logo,
.ul-public-home .footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.ul-public-home .nav-mark,
.ul-public-home .footer-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--home-brand);
}

.ul-public-home .nav-mark svg,
.ul-public-home .footer-logo-mark svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.ul-public-home .nav-name,
.ul-public-home .footer-logo-name {
  color: var(--home-ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.ul-public-home .nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ul-public-home .btn-ghost,
.ul-public-home .btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: var(--home-radius-pill);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}

.ul-public-home .btn-ghost {
  padding: 9px 16px;
  border: 1.5px solid var(--home-border);
  background: transparent;
  color: var(--home-ink-3);
  font-size: 13px;
  font-weight: 600;
}

.ul-public-home .btn-ghost:hover {
  border-color: var(--home-brand);
  background: var(--home-surface);
}

.ul-public-home .btn-nav-cta {
  padding: 9px 18px;
  border: 0;
  background: var(--home-brand);
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.ul-public-home .btn-nav-cta:hover {
  background: var(--home-brand-dark);
}

.ul-public-home .hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 66px;
  overflow: hidden;
}

.ul-public-home .hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(104, 211, 197, 0.24), transparent 32%),
    radial-gradient(circle at 18% 76%, rgba(45, 212, 191, 0.2), transparent 38%),
    linear-gradient(145deg, #123f3b 0%, #082d2a 48%, #041c1a 100%);
}

.ul-public-home .hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 92, 86, 0.55) 0%, rgba(5, 30, 28, 0.75) 100%);
}

.ul-public-home .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-inline: auto;
  padding: 32px 20px 28px;
  text-align: center;
}

.ul-public-home .hero-eyebrow,
.ul-public-home .photo-feature-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: var(--home-radius-pill);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ul-public-home .hero-eyebrow {
  gap: 7px;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.ul-public-home .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: homePulse 2s ease-in-out infinite;
}

@keyframes homePulse {
  0%,
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.ul-public-home .hero-headline,
.ul-public-home .section-title,
.ul-public-home .photo-feature-title,
.ul-public-home .provider-title,
.ul-public-home .sheet-title,
.ul-public-home .stat-n {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.ul-public-home .hero-headline {
  margin: 0 0 14px;
  color: white;
  font-size: clamp(40px, 11vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.ul-public-home .hero-headline em {
  color: #5eead4;
  font-style: normal;
}

.ul-public-home .hero-sub {
  max-width: 360px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.ul-public-home .request-card {
  margin-bottom: 24px;
  padding: 20px;
  border-radius: var(--home-radius-l);
  background: white;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.ul-public-home .request-card-label,
.ul-public-home .section-eyebrow,
.ul-public-home .provider-eyebrow {
  color: var(--home-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ul-public-home .request-card-label {
  margin-bottom: 14px;
  color: var(--home-muted);
  letter-spacing: 0.6px;
}

.ul-public-home .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.ul-public-home .svc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 0;
  padding: 10px 4px;
  border: 1.5px solid var(--home-border);
  border-radius: var(--home-radius-s);
  background: white;
  transition: border-color 0.15s, background 0.15s;
}

.ul-public-home .svc:hover,
.ul-public-home .svc.active,
.ul-public-home .svc[aria-pressed="true"] {
  border-color: var(--home-brand);
  background: #f0faf9;
}

.ul-public-home .svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--home-surface);
}

.ul-public-home .svc.active .svc-icon,
.ul-public-home .svc[aria-pressed="true"] .svc-icon {
  background: var(--home-brand);
}

.ul-public-home .svc-icon svg,
.ul-public-home .sc-icon svg {
  fill: none;
  stroke: var(--home-brand);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ul-public-home .svc-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.ul-public-home .svc.active .svc-icon svg,
.ul-public-home .svc[aria-pressed="true"] .svc-icon svg {
  stroke: white;
}

.ul-public-home .svc-name {
  color: var(--home-ink-3);
  font-size: 10.5px;
  font-weight: 600;
  text-align: center;
}

.ul-public-home .location-field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 13px 14px;
  border: 1.5px solid var(--home-border);
  border-radius: var(--home-radius-s);
  transition: border-color 0.15s;
}

.ul-public-home .location-field:focus-within {
  border-color: var(--home-brand);
}

.ul-public-home .location-field svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--home-brand);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ul-public-home .location-field input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 500;
}

.ul-public-home .location-field input::placeholder {
  color: #aabfbd;
}

.ul-public-home .btn-request,
.ul-public-home .btn-provider,
.ul-public-home .btn-signin {
  width: 100%;
  border: 0;
  border-radius: var(--home-radius-s);
  font-weight: 700;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
}

.ul-public-home .btn-request {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  background: var(--home-brand);
  color: white;
  font-size: 15px;
}

.ul-public-home .btn-request:hover,
.ul-public-home .btn-signin:hover {
  background: var(--home-brand-dark);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.35);
}

.ul-public-home .btn-request svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.ul-public-home .hero-signin {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  text-align: center;
}

.ul-public-home .hero-signin button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ul-public-home .stats-strip {
  display: flex;
  justify-content: space-around;
  padding: 24px 20px;
  background: var(--home-ink-2);
}

.ul-public-home .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.ul-public-home .stat-n {
  color: white;
  font-size: 28px;
}

.ul-public-home .stat-l {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.ul-public-home .section,
.ul-public-home .services-section,
.ul-public-home .trust-section,
.ul-public-home .provider-section {
  padding: 52px 20px;
}

.ul-public-home .section-eyebrow,
.ul-public-home .provider-eyebrow {
  margin-bottom: 10px;
}

.ul-public-home .section-title,
.ul-public-home .provider-title {
  margin: 0 0 6px;
  color: var(--home-ink);
  font-size: 30px;
  line-height: 1.1;
}

.ul-public-home .section-sub,
.ul-public-home .step-desc,
.ul-public-home .sc-desc,
.ul-public-home .trust-desc,
.ul-public-home .provider-sub,
.ul-public-home .footer-tagline {
  color: var(--home-muted);
  line-height: 1.6;
}

.ul-public-home .section-sub {
  margin: 0 0 32px;
  font-size: 14px;
}

.ul-public-home .steps {
  display: flex;
  flex-direction: column;
}

.ul-public-home .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--home-border);
  text-align: center;
}

.ul-public-home .step:last-child {
  border-bottom: 0;
}

.ul-public-home .step-num {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--home-brand-pale);
  color: var(--home-brand);
  font-size: 13px;
  font-weight: 800;
}

.ul-public-home .step-title,
.ul-public-home .sc-title,
.ul-public-home .trust-title {
  margin: 0 0 4px;
  color: var(--home-ink);
  font-size: 15px;
  font-weight: 700;
}

.ul-public-home .step-desc,
.ul-public-home .sc-desc,
.ul-public-home .trust-desc {
  margin: 0;
  font-size: 13.5px;
}

.ul-public-home .photo-feature {
  position: relative;
  height: 220px;
  margin: 0 20px 52px;
  overflow: hidden;
  border-radius: var(--home-radius-l);
}

.ul-public-home .photo-feature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ul-public-home .photo-feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(5, 28, 26, 0.85) 0%, transparent 55%);
}

.ul-public-home .photo-feature-tag {
  gap: 6px;
  margin-bottom: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.ul-public-home .photo-feature-title {
  color: white;
  font-size: 22px;
  line-height: 1.15;
}

.ul-public-home .services-section {
  background: var(--home-surface);
}

.ul-public-home .service-cards,
.ul-public-home .trust-items,
.ul-public-home .provider-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ul-public-home .service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1.5px solid var(--home-border);
  border-radius: var(--home-radius-m);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.ul-public-home .service-card:hover {
  border-color: var(--home-brand);
  box-shadow: 0 4px 20px var(--home-brand-glow);
}

.ul-public-home .sc-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--home-brand-pale);
}

.ul-public-home .sc-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.ul-public-home .sc-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: var(--home-radius-pill);
  background: var(--home-brand-pale);
  color: var(--home-brand);
  font-size: 11px;
  font-weight: 600;
}

.ul-public-home .trust-items {
  gap: 16px;
}

.ul-public-home .trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-items: center;
  max-width: 560px;
  margin-inline: auto;
  gap: 12px;
  text-align: center;
}

.ul-public-home .trust-check {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--home-brand);
}

.ul-public-home .trust-check svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.ul-public-home .provider-section {
  position: relative;
  overflow: hidden;
  background: var(--home-ink);
  text-align: center;
}

.ul-public-home .provider-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.ul-public-home .provider-eyebrow {
  position: relative;
  color: var(--home-brand-mid);
}

.ul-public-home .provider-title,
.ul-public-home .provider-sub,
.ul-public-home .provider-perks,
.ul-public-home .btn-provider {
  position: relative;
}

.ul-public-home .provider-title {
  color: white;
}

.ul-public-home .provider-sub {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.ul-public-home .provider-perks {
  gap: 10px;
  margin-bottom: 28px;
}

.ul-public-home .perk {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.ul-public-home .perk-dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-brand-mid);
}

.ul-public-home .perk-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}

.ul-public-home .btn-provider {
  padding: 15px;
  background: white;
  color: var(--home-ink);
  font-size: 15px;
}

.ul-public-home .btn-provider:hover {
  background: #e0f2f0;
}

.ul-public-home .home-footer {
  padding: 40px 20px 32px;
  background: var(--home-ink-2);
  text-align: center;
}

.ul-public-home .footer-logo {
  justify-content: center;
  margin-bottom: 20px;
}

.ul-public-home .footer-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.ul-public-home .footer-logo-mark svg {
  width: 15px;
  height: 15px;
}

.ul-public-home .footer-logo-name {
  color: white;
  font-size: 15px;
}

.ul-public-home .footer-tagline {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.ul-public-home .footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.ul-public-home .footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.ul-public-home .footer-links a:hover {
  color: white;
}

.ul-public-home .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.ul-public-home .signin-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: block;
  background: rgba(10, 15, 14, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.ul-public-home .signin-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 210;
  width: 100%;
  max-height: calc(100dvh - 16px);
  overflow-y: auto;
  padding: 28px 24px calc(40px + var(--ul-safe-bottom));
  border-radius: 28px 28px 0 0;
  background: white;
  animation: homeSlideUp 0.28s cubic-bezier(0.32, 1.1, 0.6, 1);
}

.ul-public-home .signin-overlay[hidden],
.ul-public-home .signin-sheet[hidden] {
  display: none !important;
}

@keyframes homeSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.ul-public-home .sheet-handle {
  width: 40px;
  height: 4px;
  margin: 0 auto 24px;
  border-radius: 2px;
  background: #e0e0e0;
}

.ul-public-home .sheet-title {
  margin: 0 0 4px;
  color: var(--home-ink);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.ul-public-home .sheet-sub {
  margin: 0 0 24px;
  color: var(--home-muted);
  font-size: 14px;
}

.ul-public-home .sheet-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: var(--home-surface);
  color: var(--home-muted);
  font-size: 18px;
}

.ul-public-home .role-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.ul-public-home .role-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border: 1.5px solid var(--home-border);
  border-radius: var(--home-radius-m);
  background: white;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.ul-public-home .role-btn[aria-pressed="true"] {
  border-color: var(--home-brand);
  background: #f0faf9;
  box-shadow: 0 0 0 3px var(--home-brand-glow);
}

.ul-public-home .role-btn-name {
  color: var(--home-ink);
  font-size: 13px;
  font-weight: 700;
}

.ul-public-home .role-btn-desc {
  color: var(--home-muted);
  font-size: 11.5px;
}

.ul-public-home .sheet-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 14px;
  padding: 13px;
  border: 1.5px solid var(--home-border);
  border-radius: var(--home-radius-s);
  background: white;
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
}

.ul-public-home .sheet-google:hover {
  border-color: #aac8c6;
  background: var(--home-surface);
}

.ul-public-home .sheet-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--home-muted);
  font-size: 12px;
}

.ul-public-home .sheet-divider::before,
.ul-public-home .sheet-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--home-border);
}

.ul-public-home .sheet-field {
  margin-bottom: 12px;
}

.ul-public-home .sheet-field label {
  display: block;
  margin-bottom: 5px;
  color: var(--home-ink);
  font-size: 12.5px;
  font-weight: 600;
}

.ul-public-home .sheet-field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
}

.ul-public-home .forgot {
  border: 0;
  background: transparent;
  color: var(--home-brand);
  font-size: 12px;
  font-weight: 600;
}

.ul-public-home .sheet-field input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--home-border);
  border-radius: var(--home-radius-s);
  outline: none;
  background: white;
  color: var(--home-ink);
  font-size: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.ul-public-home .sheet-field input:focus {
  border-color: var(--home-brand);
  box-shadow: 0 0 0 3px var(--home-brand-glow);
}

.ul-public-home .btn-signin {
  margin-top: 4px;
  padding: 14px;
  background: var(--home-brand);
  color: white;
  font-size: 15px;
}

.ul-public-home .btn-signin:disabled,
.ul-public-home .sheet-google:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.ul-public-home .sheet-footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
  text-align: center;
}

.ul-public-home .sheet-footer-links p,
.ul-public-home .sheet-legal {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
}

.ul-public-home .sheet-footer-links a,
.ul-public-home .sheet-legal a {
  color: var(--home-brand);
  font-weight: 700;
  text-decoration: none;
}

.ul-public-home .sheet-footer-links a:hover,
.ul-public-home .sheet-legal a:hover {
  text-decoration: underline;
}

.ul-public-home .sheet-legal {
  margin-top: 14px;
  line-height: 1.5;
  text-align: center;
}

.ul-public-home .ul-feedback {
  margin-top: 12px;
}

.ul-public-home.ul-sheet-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .ul-public-home .hero-content {
    max-width: 720px;
    padding: 48px 48px 40px;
  }

  .ul-public-home .request-card {
    max-width: 480px;
  }

  .ul-public-home .section,
  .ul-public-home .services-section,
  .ul-public-home .trust-section,
  .ul-public-home .provider-section {
    padding: 72px 48px;
  }

  .ul-public-home .stats-strip {
    justify-content: center;
    gap: 64px;
    padding: 32px 48px;
  }

  .ul-public-home .service-cards {
    flex-flow: row wrap;
  }

  .ul-public-home .service-card {
    flex: 1;
    min-width: 240px;
  }

  .ul-public-home .photo-feature {
    height: 280px;
    margin: 0 48px 72px;
  }

  .ul-public-home .signin-sheet {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: min(480px, calc(100vw - 32px));
    padding: 28px 24px 34px;
    border-radius: 28px;
    transform: translate(-50%, -50%);
    animation: homeDialogIn 0.22s ease-out;
  }
}

@keyframes homeDialogIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 16px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Shared customer/provider signup shell for the public auth redesign. */
.auth-signup-page {
  --signup-brand: #0f766e;
  --signup-brand-dark: #0a5c56;
  --signup-brand-mid: #14998e;
  --signup-brand-pale: #ccfbf1;
  --signup-brand-glow: rgba(15, 118, 110, 0.15);
  --signup-ink: #0a0f0e;
  --signup-muted: #6b8f8c;
  --signup-border: #d4e5e3;
  --signup-surface: #f4fafa;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(780px 460px at 15% 8%, rgba(20, 153, 142, 0.18), transparent 62%),
    radial-gradient(640px 380px at 88% 12%, rgba(94, 234, 212, 0.18), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #f0fdfa 48%, #ffffff 100%);
  color: var(--signup-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.auth-signup-page *,
.auth-signup-page *::before,
.auth-signup-page *::after {
  box-sizing: border-box;
}

.auth-signup-page button,
.auth-signup-page input {
  font: inherit;
}

.auth-signup-page button {
  cursor: pointer;
}

.auth-signup-page a {
  color: var(--signup-brand);
  font-weight: 700;
  text-decoration: none;
}

.auth-signup-page a:hover {
  text-decoration: underline;
}

.auth-signup-page button:focus-visible,
.auth-signup-page input:focus-visible,
.auth-signup-page a:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.35);
  outline-offset: 3px;
}

.auth-signup-page .hidden {
  display: none !important;
}

.auth-signup-page .auth-signup-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.auth-signup-page .auth-signup-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.auth-signup-page .auth-signup-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--signup-ink);
}

.auth-signup-page .auth-signup-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--signup-brand);
  color: white;
  font-size: 15px;
  font-weight: 800;
}

.auth-signup-page .auth-signup-brand span:last-child {
  color: var(--signup-ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.auth-signup-page .auth-signup-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border: 1.5px solid var(--signup-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #374b48;
  font-size: 13px;
  font-weight: 700;
}

.auth-signup-page .auth-signup-main {
  flex: 1;
  display: grid;
  align-items: center;
  gap: 28px;
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.auth-signup-page .auth-signup-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(10, 92, 86, 0.94) 0%, rgba(5, 30, 28, 0.96) 100%),
    radial-gradient(360px 260px at 80% 18%, rgba(94, 234, 212, 0.2), transparent 65%);
  color: white;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  text-align: center;
}

.auth-signup-page .auth-signup-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.auth-signup-page .auth-signup-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
}

.auth-signup-page .auth-signup-panel h1,
.auth-signup-page .auth-signup-card h1,
.auth-signup-page .auth-signup-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.auth-signup-page .auth-signup-panel h1 {
  max-width: 520px;
  margin-inline: auto;
  color: white;
  font-size: clamp(34px, 7vw, 52px);
  line-height: 1.06;
}

.auth-signup-page .auth-signup-panel p {
  max-width: 560px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.auth-signup-page .auth-signup-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.auth-signup-page .auth-signup-point {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.auth-signup-page .auth-signup-point-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #5eead4;
  font-weight: 800;
}

.auth-signup-page .auth-signup-point strong {
  display: block;
  color: white;
  font-size: 14px;
}

.auth-signup-page .auth-signup-point > span:not(.auth-signup-point-icon) {
  display: block;
}

.auth-signup-page .auth-signup-point > span:not(.auth-signup-point-icon) > span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.auth-signup-page .auth-signup-card {
  overflow: hidden;
  border: 1px solid var(--signup-border);
  border-radius: 28px;
  background: white;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.auth-signup-page .shadow-soft {
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.auth-signup-page .auth-signup-card-head {
  padding: 24px 24px 18px;
  border-bottom: 1px solid #edf4f3;
  background: #f8fdfc;
  text-align: center;
}

.auth-signup-page .auth-signup-card h2 {
  color: var(--signup-ink);
  font-size: 24px;
  line-height: 1.15;
}

.auth-signup-page .auth-signup-card-head p {
  margin: 8px 0 0;
  color: var(--signup-muted);
  font-size: 14px;
  line-height: 1.5;
}

.auth-signup-page .auth-signup-card-body {
  padding: 24px;
}

.auth-signup-page .auth-signup-alert {
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid #fde68a;
  border-radius: 14px;
  background: #fffbeb;
  color: #92400e;
  font-size: 13px;
  font-weight: 700;
}

.auth-signup-page .auth-signup-actions {
  display: grid;
  gap: 10px;
}

.auth-signup-page .auth-signup-secondary,
.auth-signup-page .auth-signup-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.1s;
}

.auth-signup-page .auth-signup-secondary {
  border: 1.5px solid var(--signup-border);
  background: white;
  color: var(--signup-ink);
}

.auth-signup-page .auth-signup-secondary:hover {
  border-color: #aac8c6;
  background: var(--signup-surface);
}

.auth-signup-page .auth-signup-primary {
  border: 0;
  background: var(--signup-brand);
  color: white;
}

.auth-signup-page .auth-signup-primary:hover {
  background: var(--signup-brand-dark);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.3);
}

.auth-signup-page .auth-signup-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  color: var(--signup-muted);
  font-size: 12px;
}

.auth-signup-page .auth-signup-divider::before,
.auth-signup-page .auth-signup-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--signup-border);
}

.auth-signup-page .auth-signup-form {
  display: grid;
  gap: 12px;
}

.auth-signup-page .auth-signup-field label {
  display: block;
  margin-bottom: 5px;
  color: var(--signup-ink);
  font-size: 12.5px;
  font-weight: 700;
}

.auth-signup-page .auth-signup-field input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1.5px solid var(--signup-border);
  border-radius: 12px;
  outline: none;
  background: white;
  color: var(--signup-ink);
  font-size: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.auth-signup-page .auth-signup-field input:focus {
  border-color: var(--signup-brand);
  box-shadow: 0 0 0 3px var(--signup-brand-glow);
}

.auth-signup-page .auth-signup-password-rules {
  display: block;
  margin-top: 0.42rem;
  color: var(--signup-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.auth-password-requirements {
  display: grid;
  gap: 0.36rem;
  margin-top: 0.42rem;
  color: var(--signup-muted, var(--ul-card-muted, var(--ul-muted)));
  font-size: 0.78rem;
  line-height: 1.35;
}

.auth-password-requirements__title {
  color: var(--signup-ink, var(--ul-card-text, var(--ul-text)));
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.auth-password-requirements__list {
  display: grid;
  gap: 0.22rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.auth-password-requirements__list li {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.42rem;
  align-items: start;
  min-width: 0;
}

.auth-password-requirements__icon {
  color: var(--signup-brand, var(--ul-success, var(--ul-primary)));
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.auth-signup-page .auth-signup-terms,
.auth-signup-page .auth-signup-foot {
  color: var(--signup-muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.auth-signup-page .auth-signup-terms {
  margin: 18px 0 0;
}

.auth-signup-page .auth-signup-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 18px;
}

.auth-signup-page .es-login-feedback,
.auth-signup-page #err,
.auth-signup-page #msg {
  margin-top: 12px;
  min-height: 20px;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.auth-signup-page .auth-signup-footer {
  padding: 0 20px 22px;
  color: rgba(55, 75, 72, 0.62);
  font-size: 12px;
  text-align: center;
}

@media (min-width: 900px) {
  .auth-signup-page .auth-signup-main {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 450px);
    padding-top: 36px;
  }

  .auth-signup-page .auth-signup-panel {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px;
  }
}

/* 2026 dark public landing refresh. Real auth wiring remains in unified-login.js. */
.ul-public-home {
  --landing-black: #0a0c0b;
  --landing-green: #1a5c3a;
  --landing-mint: #3ddb82;
  --landing-mint-dim: #2ab56a;
  --landing-white: #f2f5f1;
  --landing-slate: #8a9690;
  --landing-card: rgba(15, 20, 17, 0.72);
  --landing-border: rgba(61, 219, 130, 0.18);
  --landing-panel: #0d110f;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--landing-black);
  color: var(--landing-white);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.ul-public-home *,
.ul-public-home *::before,
.ul-public-home *::after {
  box-sizing: border-box;
}

.ul-public-home button,
.ul-public-home input {
  font: inherit;
}

.ul-public-home .home-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(61, 219, 130, 0.08);
  background: rgba(10, 12, 11, 0.68);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ul-public-home .nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--landing-white);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.ul-public-home .nav-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--landing-mint);
  color: var(--landing-black);
}

.ul-public-home .nav-mark svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ul-public-home .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ul-public-home .nav-links a {
  color: var(--landing-slate);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.ul-public-home .nav-links a:hover {
  color: var(--landing-white);
}

.ul-public-home .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ul-public-home .btn-ghost,
.ul-public-home .btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.ul-public-home .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--landing-white);
}

.ul-public-home .btn-ghost:hover {
  border-color: var(--landing-mint);
  background: rgba(61, 219, 130, 0.06);
}

.ul-public-home .btn-nav-cta {
  border: 0;
  background: var(--landing-mint);
  color: var(--landing-black);
}

.ul-public-home .btn-nav-cta:hover {
  background: #52e896;
  transform: translateY(-1px);
}

.ul-public-home .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 24px 72px;
  overflow: hidden;
  background: transparent;
}

.ul-public-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 92, 58, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(61, 219, 130, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, #060908 0%, #0d1710 42%, #080b09 100%);
}

.ul-public-home .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 219, 130, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 219, 130, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.ul-public-home .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 720px);
  max-width: 720px;
  gap: 28px;
  padding: 0;
  text-align: center;
}

.ul-public-home .live-ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 16px;
  border: 1px solid rgba(61, 219, 130, 0.3);
  border-radius: 999px;
  background: rgba(61, 219, 130, 0.1);
  color: var(--landing-mint);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ul-public-home .live-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--landing-mint);
  animation: ulPulseDot 2s ease-in-out infinite;
}

@keyframes ulPulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(61, 219, 130, 0.5); }
  50% { opacity: 0.82; box-shadow: 0 0 0 5px rgba(61, 219, 130, 0); }
}

.ul-public-home .hero-headline {
  margin: 0;
  color: var(--landing-white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.ul-public-home .hero-headline .accent {
  color: var(--landing-mint);
}

.ul-public-home .hero-sub {
  max-width: 520px;
  margin: 0;
  color: var(--landing-slate);
  font-size: 1.05rem;
  line-height: 1.65;
}

.ul-public-home .service-widget {
  width: min(100%, 480px);
  padding: 24px;
  border: 1px solid var(--landing-border);
  border-radius: 20px;
  background: var(--landing-card);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.ul-public-home .widget-label {
  margin: 0 0 14px;
  color: var(--landing-slate);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ul-public-home .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 16px;
}

.ul-public-home .service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--landing-white);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.ul-public-home .service-btn:hover,
.ul-public-home .service-btn.active,
.ul-public-home .service-btn[aria-pressed="true"] {
  border-color: rgba(61, 219, 130, 0.4);
  background: rgba(61, 219, 130, 0.12);
  transform: translateY(-2px);
}

.ul-public-home .service-icon {
  color: var(--landing-mint);
  font-size: 1.35rem;
  line-height: 1;
}

.ul-public-home .service-name {
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 700;
}

.ul-public-home .widget-location {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  margin-bottom: 14px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--landing-mint);
}

.ul-public-home .widget-location input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--landing-white);
  font-size: 0.875rem;
}

.ul-public-home .widget-location input::placeholder {
  color: var(--landing-slate);
}

.ul-public-home .btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 15px;
  border: 0;
  border-radius: 12px;
  background: var(--landing-mint);
  color: var(--landing-black);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.ul-public-home .btn-hero:hover {
  background: #52e896;
  box-shadow: 0 12px 32px rgba(61, 219, 130, 0.3);
  transform: translateY(-2px);
}

.ul-public-home .widget-signin {
  margin: 12px 0 0;
  color: var(--landing-slate);
  font-size: 0.8rem;
}

.ul-public-home .link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--landing-mint);
  font-weight: 800;
  cursor: pointer;
}

.ul-public-home .trust-bar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 48px;
  width: min(100%, 960px);
  margin-top: 64px;
  padding: 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ul-public-home .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.ul-public-home .trust-number {
  color: var(--landing-white);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ul-public-home .trust-label {
  color: var(--landing-slate);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.ul-public-home .trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

.ul-public-home .landing-container {
  max-width: 1100px;
  margin: 0 auto;
}

.ul-public-home .section-how,
.ul-public-home .section-services,
.ul-public-home .section-safety {
  padding: 100px 40px;
}

.ul-public-home .section-how {
  background: var(--landing-white);
  color: var(--landing-black);
}

.ul-public-home .section-services {
  background: var(--landing-black);
}

.ul-public-home .section-safety {
  border-block: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--landing-panel);
}

.ul-public-home .section-eyebrow,
.ul-public-home .section-eyebrow-light {
  margin: 0 auto 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.ul-public-home .section-eyebrow {
  color: var(--landing-green);
}

.ul-public-home .section-eyebrow-light {
  color: var(--landing-mint);
}

.ul-public-home .section-title,
.ul-public-home .section-title-light {
  max-width: 620px;
  margin: 0 auto 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-align: center;
}

.ul-public-home .section-title {
  color: var(--landing-black);
}

.ul-public-home .section-title-light {
  color: var(--landing-white);
}

.ul-public-home .section-body,
.ul-public-home .section-body-light {
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.ul-public-home .section-body {
  color: #4a5550;
}

.ul-public-home .section-body-light {
  color: var(--landing-slate);
}

.ul-public-home .steps-grid,
.ul-public-home .services-grid {
  display: grid;
  max-width: 1100px;
  margin: 0 auto;
  gap: 24px;
}

.ul-public-home .steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ul-public-home .services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ul-public-home .step-card,
.ul-public-home .service-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, background 0.25s;
}

.ul-public-home .step-card {
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: white;
}

.ul-public-home .step-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.ul-public-home .step-number {
  display: block;
  margin-bottom: 16px;
  color: var(--landing-mint-dim);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ul-public-home .step-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border-radius: 12px;
  background: rgba(26, 92, 58, 0.08);
  color: var(--landing-green);
  font-size: 1.4rem;
  font-weight: 800;
}

.ul-public-home .step-title,
.ul-public-home .service-card-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ul-public-home .step-title {
  color: var(--landing-black);
}

.ul-public-home .step-desc,
.ul-public-home .service-card-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
}

.ul-public-home .step-desc {
  color: #5a6660;
}

.ul-public-home .service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--landing-white);
}

.ul-public-home .service-card:hover {
  border-color: rgba(61, 219, 130, 0.25);
  background: rgba(61, 219, 130, 0.05);
  transform: translateY(-4px);
}

.ul-public-home .service-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ul-public-home .service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(61, 219, 130, 0.1);
  color: var(--landing-mint);
  font-size: 1.5rem;
  font-weight: 800;
}

.ul-public-home .service-card-tag {
  padding: 4px 12px;
  border: 1px solid rgba(61, 219, 130, 0.2);
  border-radius: 999px;
  background: rgba(61, 219, 130, 0.12);
  color: var(--landing-mint);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ul-public-home .service-card-title {
  color: var(--landing-white);
}

.ul-public-home .service-card-desc {
  color: var(--landing-slate);
}

.ul-public-home .service-card-arrow {
  margin-top: auto;
  color: var(--landing-mint);
  font-size: 1.1rem;
}

.ul-public-home .safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.ul-public-home .safety-layout .section-eyebrow-light,
.ul-public-home .safety-layout .section-title-light,
.ul-public-home .safety-layout .section-body-light {
  margin-inline: 0;
  text-align: left;
}

.ul-public-home .safety-features {
  display: grid;
  gap: 28px;
  margin-top: 40px;
}

.ul-public-home .safety-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.ul-public-home .safety-check {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  border-radius: 8px;
  background: rgba(61, 219, 130, 0.12);
}

.ul-public-home .safety-check svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--landing-mint);
  stroke-width: 2.5;
}

.ul-public-home .safety-feature-title {
  margin: 0 0 4px;
  color: var(--landing-white);
  font-size: 0.95rem;
  font-weight: 800;
}

.ul-public-home .safety-feature-desc {
  margin: 0;
  color: var(--landing-slate);
  font-size: 0.85rem;
  line-height: 1.6;
}

.ul-public-home .status-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(61, 219, 130, 0.2);
  border-radius: 20px;
  background: rgba(15, 22, 18, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.ul-public-home .status-header,
.ul-public-home .status-summary > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ul-public-home .status-header {
  justify-content: space-between;
}

.ul-public-home .status-title-sm {
  color: var(--landing-white);
  font-size: 0.9rem;
  font-weight: 800;
}

.ul-public-home .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(61, 219, 130, 0.12);
  color: var(--landing-mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.ul-public-home .status-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--landing-mint);
}

.ul-public-home .status-summary {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.ul-public-home .status-summary p {
  margin: 0 0 8px;
  color: var(--landing-slate);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ul-public-home .status-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--landing-green);
  color: var(--landing-white);
  font-weight: 800;
}

.ul-public-home .status-summary strong,
.ul-public-home .status-summary span {
  display: block;
}

.ul-public-home .status-summary strong {
  color: var(--landing-white);
  font-size: 0.875rem;
}

.ul-public-home .status-summary span {
  color: var(--landing-slate);
  font-size: 0.75rem;
}

.ul-public-home .status-timeline {
  display: grid;
  gap: 0;
}

.ul-public-home .timeline-item {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 20px;
}

.ul-public-home .timeline-item:last-child {
  padding-bottom: 0;
}

.ul-public-home .timeline-item::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 0;
  left: 10px;
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
}

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

.ul-public-home .timeline-dot {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 999px;
}

.ul-public-home .timeline-dot.done {
  border: 1.5px solid var(--landing-mint);
  background: rgba(61, 219, 130, 0.15);
}

.ul-public-home .timeline-dot.done::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--landing-mint);
  font-size: 0.65rem;
  font-weight: 800;
}

.ul-public-home .timeline-dot.active {
  background: var(--landing-mint);
  box-shadow: 0 0 0 4px rgba(61, 219, 130, 0.2);
}

.ul-public-home .timeline-dot.pending {
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.ul-public-home .timeline-text-title {
  margin: 0;
  color: var(--landing-white);
  font-size: 0.85rem;
  font-weight: 800;
}

.ul-public-home .timeline-text-sub {
  margin: 2px 0 0;
  color: var(--landing-slate);
  font-size: 0.75rem;
}

.ul-public-home .section-roles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 480px;
}

.ul-public-home .role-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 80px 60px;
}

.ul-public-home .role-panel-customer {
  background: var(--landing-white);
  color: var(--landing-black);
}

.ul-public-home .role-panel-provider {
  background: var(--landing-green);
  color: var(--landing-white);
}

.ul-public-home .role-eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0.62;
  text-transform: uppercase;
}

.ul-public-home .role-title {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.ul-public-home .role-desc {
  max-width: 390px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.74;
}

.ul-public-home .role-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.ul-public-home .role-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0.86;
}

.ul-public-home .role-list li::before {
  content: "→";
  opacity: 0.5;
}

.ul-public-home .role-btn-customer,
.ul-public-home .role-btn-provider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 48px;
  margin-top: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.ul-public-home .role-btn-customer {
  border: 0;
  background: var(--landing-black);
  color: var(--landing-white);
}

.ul-public-home .role-btn-provider {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15);
  color: var(--landing-white);
}

.ul-public-home .role-btn-customer:hover,
.ul-public-home .role-btn-provider:hover {
  transform: translateY(-2px);
}

.ul-public-home .home-footer {
  padding: 60px 40px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #060807;
}

.ul-public-home .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.ul-public-home .footer-brand p {
  max-width: 280px;
  margin: 12px 0 0;
  color: var(--landing-slate);
  font-size: 0.85rem;
  line-height: 1.65;
}

.ul-public-home .footer-col-title {
  margin: 0 0 16px;
  color: var(--landing-white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ul-public-home .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ul-public-home .footer-links a {
  color: var(--landing-slate);
  font-size: 0.875rem;
  text-decoration: none;
}

.ul-public-home .footer-links a:hover {
  color: var(--landing-white);
}

.ul-public-home .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ul-public-home .footer-bottom p {
  margin: 0;
  color: var(--landing-slate);
  font-size: 0.8rem;
}

.ul-public-home .signin-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 12, 11, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ul-public-home .signin-sheet {
  border: 1px solid rgba(61, 219, 130, 0.16);
  background: #fbfdfb;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.auth-signup-page {
  --signup-brand: #3ddb82;
  --signup-brand-dark: #2ab56a;
  --signup-brand-glow: rgba(61, 219, 130, 0.18);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 92, 58, 0.42) 0%, transparent 70%),
    linear-gradient(160deg, #060908 0%, #0d1710 42%, #080b09 100%);
}

.auth-signup-page .auth-signup-nav {
  border-bottom-color: rgba(61, 219, 130, 0.08);
  background: rgba(10, 12, 11, 0.68);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.auth-signup-page .auth-signup-brand,
.auth-signup-page .auth-signup-login {
  color: #f2f5f1;
}

.auth-signup-page .auth-signup-mark {
  background: #3ddb82;
  color: #0a0c0b;
}

.auth-signup-page .auth-signup-panel {
  border-color: rgba(61, 219, 130, 0.18);
  background: rgba(15, 20, 17, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.auth-signup-page .auth-signup-eyebrow {
  border-color: rgba(61, 219, 130, 0.3);
  background: rgba(61, 219, 130, 0.1);
  color: #3ddb82;
}

@media (max-width: 900px) {
  .ul-public-home .home-nav {
    padding: 0 20px;
  }

  .ul-public-home .nav-links {
    display: none;
  }

  .ul-public-home .hero {
    padding: 90px 20px 60px;
  }

  .ul-public-home .trust-bar {
    gap: 24px;
    margin-top: 48px;
    padding: 20px 0;
  }

  .ul-public-home .trust-divider {
    display: none;
  }

  .ul-public-home .section-how,
  .ul-public-home .section-services,
  .ul-public-home .section-safety {
    padding: 72px 20px;
  }

  .ul-public-home .steps-grid,
  .ul-public-home .services-grid,
  .ul-public-home .safety-layout,
  .ul-public-home .section-roles {
    grid-template-columns: 1fr;
  }

  .ul-public-home .safety-layout {
    gap: 40px;
  }

  .ul-public-home .safety-layout .section-eyebrow-light,
  .ul-public-home .safety-layout .section-title-light,
  .ul-public-home .safety-layout .section-body-light {
    margin-inline: auto;
    text-align: center;
  }

  .ul-public-home .safety-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ul-public-home .role-panel {
    align-items: center;
    padding: 60px 32px;
    text-align: center;
  }

  .ul-public-home .role-desc,
  .ul-public-home .role-btn-customer,
  .ul-public-home .role-btn-provider {
    align-self: center;
  }

  .ul-public-home .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .ul-public-home .home-nav {
    height: 62px;
  }

  .ul-public-home .nav-name {
    display: none;
  }

  .ul-public-home .nav-actions {
    gap: 8px;
  }

  .ul-public-home .btn-ghost,
  .ul-public-home .btn-nav-cta {
    min-height: 36px;
    padding: 8px 13px;
  }

  .ul-public-home .service-widget {
    padding: 18px;
  }

  .ul-public-home .service-grid {
    gap: 7px;
  }

  .ul-public-home .service-btn {
    padding: 11px 6px;
  }

  .ul-public-home .status-card {
    padding: 20px;
  }

  .ul-public-home .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ul-public-home .footer-brand p {
    margin-inline: auto;
  }

  .ul-public-home .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ul-public-home *,
  .ul-public-home *::before,
  .ul-public-home *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* 2026 dashboard-aligned public refresh: dark green + warm cream. */
.ul-public-home {
  --landing-black: var(--emergi-green-950, #071a14);
  --landing-green: var(--emergi-green-700, #16543f);
  --landing-deep: var(--emergi-green-900, #0b241c);
  --landing-deeper: var(--emergi-green-950, #071a14);
  --landing-primary: var(--emergi-primary, #1f6f52);
  --landing-primary-hover: var(--emergi-primary-hover, #16543f);
  --landing-mint: var(--emergi-accent, #8ee889);
  --landing-mint-dim: var(--emergi-accent-strong, #5fd36a);
  --landing-white: var(--emergi-text-on-dark, #f8f4ea);
  --landing-cream: var(--emergi-cream, #f7f1e7);
  --landing-cream-2: var(--emergi-cream-2, #fbf7ef);
  --landing-card: var(--emergi-card, #fffaf2);
  --landing-border: var(--emergi-border, #e5dccf);
  --landing-slate: var(--emergi-text-soft-on-dark, #cbd8d0);
  --landing-text: var(--emergi-text, #12231d);
  --landing-muted: var(--emergi-text-muted, #5f6f68);
  --landing-clean-surface: #ffffff;
  --landing-clean-surface-muted: #f8fafc;
  --landing-clean-surface-subtle: #f1f5f9;
  --landing-clean-border: #e5eaf0;
  --landing-clean-border-strong: #cbd5e1;
  --landing-clean-text: #0f172a;
  --landing-clean-muted: #475569;
  --landing-clean-placeholder: #64748b;
  background: var(--landing-cream);
  color: var(--landing-text);
}

.ul-public-home .home-nav {
  border-bottom-color: rgba(248, 244, 234, 0.12);
  background: rgba(11, 36, 28, 0.84);
  box-shadow: 0 12px 36px rgba(7, 26, 20, 0.18);
}

.ul-public-home .nav-logo,
.ul-public-home .nav-links a,
.ul-public-home .btn-ghost {
  color: var(--landing-white);
}

.ul-public-home .nav-links a {
  opacity: 0.78;
}

.ul-public-home .nav-links a:hover {
  color: #fffaf2;
  opacity: 1;
}

.ul-public-home .nav-mark {
  background: var(--landing-card);
  color: var(--landing-primary);
}

.ul-public-home .btn-ghost {
  border-color: rgba(248, 244, 234, 0.24);
}

.ul-public-home .btn-ghost:hover {
  border-color: rgba(248, 244, 234, 0.46);
  background: rgba(248, 244, 234, 0.08);
}

.ul-public-home .btn-nav-cta,
.ul-public-home .btn-hero,
.auth-signup-page .auth-signup-primary,
.ul-public-home .btn-signin {
  background: var(--landing-primary);
  color: var(--landing-card);
  box-shadow: 0 14px 30px rgba(7, 26, 20, 0.22);
}

.ul-public-home .btn-nav-cta:hover,
.ul-public-home .btn-hero:hover,
.auth-signup-page .auth-signup-primary:hover,
.ul-public-home .btn-signin:hover {
  background: var(--landing-primary-hover);
  box-shadow: 0 16px 34px rgba(7, 26, 20, 0.26);
}

.ul-public-home .hero {
  min-height: 100svh;
  padding-bottom: 92px;
}

.ul-public-home .hero-bg {
  background:
    radial-gradient(ellipse 78% 58% at 50% 4%, rgba(31, 111, 82, 0.48) 0%, transparent 68%),
    radial-gradient(ellipse 58% 38% at 86% 78%, rgba(142, 232, 137, 0.08) 0%, transparent 62%),
    linear-gradient(160deg, var(--landing-deeper) 0%, var(--landing-deep) 42%, var(--emergi-green-800, #10382c) 100%);
}

.ul-public-home .hero-bg::after {
  background-image:
    linear-gradient(rgba(248, 244, 234, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 244, 234, 0.035) 1px, transparent 1px);
  opacity: 0.7;
}

.ul-public-home .live-ticker {
  border-color: rgba(142, 232, 137, 0.28);
  background: rgba(248, 244, 234, 0.08);
  color: var(--landing-white);
}

.ul-public-home .live-dot {
  background: var(--landing-mint);
}

.ul-public-home .hero-headline {
  color: var(--landing-white);
}

.ul-public-home .hero-headline .accent {
  color: #f7f1e7;
}

.ul-public-home .hero-sub {
  color: var(--landing-slate);
}

.ul-public-home .hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 680px;
  margin-top: -8px;
}

.ul-public-home .hero-trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(248, 244, 234, 0.16);
  border-radius: 999px;
  background: rgba(248, 244, 234, 0.08);
  color: var(--landing-white);
  font-size: 0.78rem;
  font-weight: 800;
}

.ul-public-home .service-widget {
  border-color: rgba(248, 244, 234, 0.2);
  background: rgba(255, 250, 242, 0.94);
  color: var(--landing-text);
  box-shadow: 0 24px 60px rgba(7, 26, 20, 0.32);
}

.ul-public-home .widget-label,
.ul-public-home .widget-signin {
  color: var(--landing-muted);
}

.ul-public-home .service-btn {
  border-color: var(--landing-border);
  background: var(--landing-cream-2);
  color: var(--landing-text);
  box-shadow: 0 1px 0 rgba(7, 26, 20, 0.03);
}

.ul-public-home .service-btn:hover,
.ul-public-home .service-btn.active,
.ul-public-home .service-btn[aria-pressed="true"] {
  border-color: color-mix(in srgb, var(--landing-primary) 40%, var(--landing-border));
  background: var(--emergi-primary-soft, #dcefe5);
  box-shadow: 0 10px 22px rgba(7, 26, 20, 0.1);
}

.ul-public-home .service-icon,
.ul-public-home .link-button {
  color: var(--landing-primary);
}

.ul-public-home .widget-location {
  border-color: var(--landing-border);
  background: #fffdf8;
  color: var(--landing-primary);
}

.ul-public-home .widget-location input {
  color: var(--landing-text);
}

.ul-public-home .widget-location input::placeholder {
  color: #82918a;
}

.ul-public-home .emergency-disclaimer {
  margin: 12px 0 0;
  color: var(--landing-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.ul-public-home .trust-bar {
  border-top-color: rgba(248, 244, 234, 0.12);
}

.ul-public-home .trust-number {
  color: var(--landing-white);
}

.ul-public-home .trust-label {
  color: var(--landing-slate);
}

.ul-public-home .section-how {
  background:
    radial-gradient(760px 420px at 50% 0%, rgba(220, 239, 229, 0.7), transparent 64%),
    var(--landing-cream);
}

.ul-public-home .section-services {
  background: #efe7d9;
}

.ul-public-home .section-safety,
.ul-public-home .home-footer {
  background:
    radial-gradient(780px 440px at 18% 8%, rgba(31, 111, 82, 0.36), transparent 68%),
    var(--landing-deep);
}

.ul-public-home .section-eyebrow,
.ul-public-home .section-eyebrow-light {
  color: var(--landing-primary);
}

.ul-public-home .section-title,
.ul-public-home .section-title-light {
  color: var(--landing-text);
}

.ul-public-home .section-body,
.ul-public-home .section-body-light {
  color: var(--landing-muted);
}

.ul-public-home .section-safety .section-eyebrow-light {
  color: var(--landing-mint);
}

.ul-public-home .section-safety .section-title-light {
  color: var(--landing-white);
}

.ul-public-home .section-safety .section-body-light {
  color: var(--landing-slate);
}

.ul-public-home .step-card {
  border-color: var(--landing-border);
  background: var(--landing-card);
  box-shadow: 0 18px 36px rgba(71, 52, 29, 0.08);
}

.ul-public-home .step-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--landing-primary), var(--landing-mint));
  opacity: 0.9;
}

.ul-public-home .step-number,
.ul-public-home .step-icon-wrap {
  color: var(--landing-primary);
}

.ul-public-home .step-icon-wrap {
  background: var(--emergi-primary-soft, #dcefe5);
}

.ul-public-home .step-title,
.ul-public-home .service-card-title {
  color: var(--landing-text);
}

.ul-public-home .step-desc,
.ul-public-home .service-card-desc {
  color: var(--landing-muted);
}

.ul-public-home .service-card {
  min-height: 340px;
  border-color: var(--landing-border);
  background: var(--landing-card);
  color: var(--landing-text);
  box-shadow: 0 16px 34px rgba(71, 52, 29, 0.08);
}

.ul-public-home .service-card:hover {
  border-color: color-mix(in srgb, var(--landing-primary) 38%, var(--landing-border));
  background: #fffdf8;
  box-shadow: 0 22px 46px rgba(71, 52, 29, 0.13);
}

.ul-public-home .service-card-icon {
  background: var(--emergi-primary-soft, #dcefe5);
  color: var(--landing-primary);
}

.ul-public-home .service-card-tag {
  border-color: color-mix(in srgb, var(--landing-primary) 26%, var(--landing-border));
  background: var(--emergi-primary-soft, #dcefe5);
  color: var(--landing-primary);
}

.ul-public-home .service-use-cases {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.ul-public-home .service-use-cases li {
  padding: 6px 9px;
  border: 1px solid var(--landing-border);
  border-radius: 999px;
  background: var(--landing-cream-2);
  color: var(--landing-muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.ul-public-home .safety-feature,
.ul-public-home .status-card {
  border: 1px solid rgba(248, 244, 234, 0.12);
  border-radius: 18px;
  background: rgba(248, 244, 234, 0.07);
}

.ul-public-home .safety-feature {
  padding: 18px;
}

.ul-public-home .safety-check {
  background: rgba(142, 232, 137, 0.12);
}

.ul-public-home .safety-check svg {
  stroke: var(--landing-mint);
}

.ul-public-home .status-card {
  box-shadow: 0 24px 54px rgba(7, 26, 20, 0.34);
}

.ul-public-home .status-summary {
  border-color: rgba(248, 244, 234, 0.12);
  background: rgba(248, 244, 234, 0.08);
}

.ul-public-home .status-avatar {
  background: var(--landing-primary);
}

.ul-public-home .timeline-dot.active {
  background: var(--landing-mint);
}

.ul-public-home .timeline-dot.done {
  border-color: var(--landing-mint);
  background: rgba(142, 232, 137, 0.14);
}

.ul-public-home .timeline-dot.done::after {
  color: var(--landing-mint);
}

.ul-public-home .section-roles {
  background: var(--landing-cream);
}

.ul-public-home .role-panel-customer {
  background: var(--landing-card);
  color: var(--landing-text);
}

.ul-public-home .role-panel-provider {
  background: var(--landing-primary);
  color: var(--landing-card);
}

.ul-public-home .role-btn-customer {
  background: var(--landing-primary);
  color: var(--landing-card);
}

.ul-public-home .role-btn-provider {
  border-color: rgba(255, 250, 242, 0.38);
  background: rgba(255, 250, 242, 0.13);
}

.ul-public-home .footer-brand p,
.ul-public-home .footer-links a,
.ul-public-home .footer-bottom p {
  color: var(--landing-slate);
}

.ul-public-home .footer-col-title,
.ul-public-home .footer-links a:hover {
  color: var(--landing-white);
}

.ul-public-home .signin-sheet {
  border-color: var(--landing-border);
  background: var(--landing-card);
  color: var(--landing-text);
  box-shadow: 0 28px 80px rgba(7, 26, 20, 0.38);
}

.ul-public-home .sheet-title,
.ul-public-home .role-btn-name,
.ul-public-home .sheet-field label {
  color: var(--landing-text);
}

.ul-public-home .sheet-sub,
.ul-public-home .role-btn-desc,
.ul-public-home .sheet-footer-links p,
.ul-public-home .sheet-legal {
  color: var(--landing-muted);
}

.ul-public-home .role-btn,
.ul-public-home .sheet-google,
.ul-public-home .sheet-field input {
  border-color: var(--landing-border);
  background: #fffdf8;
  color: var(--landing-text);
}

.ul-public-home .role-btn[aria-pressed="true"] {
  border-color: color-mix(in srgb, var(--landing-primary) 46%, var(--landing-border));
  background: var(--emergi-primary-soft, #dcefe5);
  box-shadow: 0 0 0 3px rgba(31, 111, 82, 0.12);
}

.ul-public-home .forgot,
.ul-public-home .sheet-footer-links a,
.ul-public-home .sheet-legal a {
  color: var(--landing-primary);
}

.ul-public-home .mobile-bottom-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(14px + var(--ul-safe-bottom));
  z-index: 90;
  display: none;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  background: var(--landing-primary);
  color: var(--landing-card);
  box-shadow: 0 18px 36px rgba(7, 26, 20, 0.28);
  font-size: 1rem;
  font-weight: 800;
}

.auth-signup-page {
  --signup-brand: var(--emergi-primary, #1f6f52);
  --signup-brand-dark: var(--emergi-primary-hover, #16543f);
  --signup-brand-glow: rgba(31, 111, 82, 0.18);
  --signup-ink: var(--emergi-text, #12231d);
  --signup-muted: var(--emergi-text-muted, #5f6f68);
  --signup-border: var(--emergi-border, #e5dccf);
  --signup-surface: var(--emergi-cream-2, #fbf7ef);
  background:
    radial-gradient(ellipse 76% 54% at 50% 0%, rgba(31, 111, 82, 0.34) 0%, transparent 70%),
    var(--emergi-cream, #f7f1e7);
}

.auth-signup-page .auth-signup-nav {
  border-bottom-color: rgba(248, 244, 234, 0.14);
  background: rgba(11, 36, 28, 0.86);
}

.auth-signup-page .auth-signup-mark {
  background: var(--emergi-card, #fffaf2);
  color: var(--emergi-primary, #1f6f52);
}

.auth-signup-page .auth-signup-panel {
  border-color: rgba(248, 244, 234, 0.16);
  background:
    radial-gradient(520px 340px at 20% 0%, rgba(31, 111, 82, 0.38), transparent 68%),
    var(--emergi-green-900, #0b241c);
}

.auth-signup-page .auth-signup-eyebrow {
  border-color: rgba(142, 232, 137, 0.22);
  background: rgba(248, 244, 234, 0.08);
  color: var(--emergi-text-on-dark, #f8f4ea);
}

.auth-signup-page .auth-signup-dot,
.auth-signup-page .auth-signup-point-icon {
  background: var(--emergi-accent, #8ee889);
  color: var(--emergi-green-950, #071a14);
}

.auth-signup-page .auth-signup-card {
  border-color: var(--emergi-border, #e5dccf);
  background: var(--emergi-card, #fffaf2);
  box-shadow: 0 24px 60px rgba(71, 52, 29, 0.12);
}

.auth-signup-page .auth-signup-card-head {
  border-bottom-color: var(--emergi-border, #e5dccf);
  background: var(--emergi-cream-2, #fbf7ef);
}

.auth-signup-page .auth-signup-secondary {
  border-color: var(--emergi-border, #e5dccf);
  background: #fffdf8;
  color: var(--emergi-text, #12231d);
}

.auth-signup-page .auth-signup-secondary:hover {
  border-color: color-mix(in srgb, var(--emergi-primary, #1f6f52) 38%, var(--emergi-border, #e5dccf));
  background: var(--emergi-primary-soft, #dcefe5);
}

.auth-signup-page .auth-signup-field input {
  border-color: var(--emergi-border, #e5dccf);
  background: #fffdf8;
}

@media (max-width: 900px) {
  .auth-signup-page .auth-signup-nav {
    padding-top: calc(18px + var(--ul-safe-top)) !important;
  }

  .ul-public-home .mobile-bottom-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ul-public-home {
    padding-bottom: calc(76px + var(--ul-safe-bottom));
  }
}

/* Marketplace request flow additions. */
.ul-public-home .nav-name {
  color: var(--landing-white);
}

.ul-public-home .hero-brand-line {
  margin: -12px 0 -16px;
  color: var(--landing-mint);
  font-size: 1.02rem;
  font-weight: 800;
}

.ul-public-home .service-widget {
  position: relative;
}

.ul-public-home .service-widget::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 34%);
}

.ul-public-home .service-widget > * {
  position: relative;
}

.ul-public-home .service-grid,
.ul-public-home .services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ul-public-home .request-reassurance,
.ul-public-home .emergency-disclaimer {
  margin: 12px 0 0;
  color: var(--landing-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.ul-public-home .request-reassurance {
  font-weight: 800;
}

.ul-public-home .availability-preview {
  margin-top: 14px;
  animation: availabilitySlideIn 220ms ease both;
}

@keyframes availabilitySlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ul-public-home .availability-empty,
.ul-public-home .availability-checking,
.ul-public-home .availability-result,
.ul-public-home .availability-unavailable {
  padding: 14px;
  border: 1px solid var(--landing-border);
  border-radius: 16px;
  background: #fffdf8;
  box-shadow: 0 12px 24px rgba(71, 52, 29, 0.08);
  text-align: left;
}

.ul-public-home .availability-empty strong,
.ul-public-home .availability-checking strong,
.ul-public-home .availability-result strong,
.ul-public-home .availability-unavailable strong {
  display: block;
  color: var(--landing-text);
  font-size: 0.94rem;
  line-height: 1.35;
}

.ul-public-home .availability-empty p,
.ul-public-home .availability-checking p,
.ul-public-home .availability-result p,
.ul-public-home .availability-unavailable p {
  margin: 4px 0 0;
  color: var(--landing-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.ul-public-home .availability-checking {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ul-public-home .availability-spinner {
  width: 26px;
  height: 26px;
  border: 3px solid var(--emergi-primary-soft, #dcefe5);
  border-top-color: var(--landing-primary);
  border-radius: 999px;
  animation: availabilitySpin 800ms linear infinite;
}

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

.ul-public-home .availability-result-head {
  display: grid;
  gap: 6px;
}

.ul-public-home .availability-next {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--emergi-primary-soft, #dcefe5);
  color: var(--landing-primary-hover);
  font-size: 0.82rem;
  font-weight: 800;
}

.ul-public-home .availability-continue {
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--landing-primary);
  color: var(--landing-card);
  box-shadow: 0 12px 22px rgba(7, 26, 20, 0.18);
  font-weight: 800;
}

.ul-public-home .availability-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.ul-public-home .availability-service-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  background: var(--landing-cream-2);
}

.ul-public-home .availability-service-card strong,
.ul-public-home .availability-service-card span {
  display: block;
}

.ul-public-home .availability-service-card span,
.ul-public-home .availability-service-card p,
.ul-public-home .availability-service-card small {
  color: var(--landing-muted);
  font-size: 0.75rem;
}

.ul-public-home .availability-service-card p {
  margin: 0;
  white-space: nowrap;
}

.ul-public-home .availability-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.ul-public-home .availability-actions a,
.ul-public-home .availability-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--landing-border);
  border-radius: 10px;
  background: var(--landing-cream-2);
  color: var(--landing-primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.ul-public-home .hero-actions {
  margin-top: -14px;
}

.ul-public-home .btn-secondary-hero {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(248, 244, 234, 0.24);
  border-radius: 999px;
  background: rgba(248, 244, 234, 0.08);
  color: var(--landing-white);
  font-weight: 800;
}

.ul-public-home .service-card {
  min-height: 360px;
}

@media (max-width: 900px) {
  .ul-public-home .service-grid,
  .ul-public-home .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .ul-public-home .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ul-public-home .availability-service-card {
    display: grid;
  }
}

/* Split-section and availability-preview polish for the cream/dark-green system. */
.ul-public-home .role-panel-customer {
  background: var(--emergi-card, #fffaf2);
  color: var(--emergi-text, #12231d);
}

.ul-public-home .role-panel-customer .role-title {
  color: var(--emergi-text, #12231d);
}

.ul-public-home .role-panel-customer .role-desc,
.ul-public-home .role-panel-customer .role-list li {
  color: var(--emergi-text-muted, #5f6f68);
  opacity: 1;
}

.ul-public-home .role-btn-customer {
  background: var(--emergi-primary, #1f6f52);
  color: var(--emergi-card, #fffaf2);
}

.ul-public-home .role-btn-customer:hover {
  background: var(--emergi-primary-hover, #16543f);
}

.ul-public-home .role-panel-provider {
  background:
    radial-gradient(circle at 75% 20%, rgba(142, 232, 137, 0.13), transparent 35%),
    linear-gradient(135deg, #16543f 0%, #0b241c 100%);
  color: var(--emergi-text-on-dark, #f8f4ea);
}

.ul-public-home .role-panel-provider .role-title,
.ul-public-home .role-panel-provider .role-list li {
  color: var(--emergi-text-on-dark, #f8f4ea);
  opacity: 1;
}

.ul-public-home .role-panel-provider .role-desc {
  color: var(--emergi-text-soft-on-dark, #cbd8d0);
  opacity: 1;
}

.ul-public-home .role-btn-provider {
  border-color: rgba(255, 250, 242, 0.72);
  background: var(--emergi-card, #fffaf2);
  color: var(--emergi-green-800, #10382c);
}

.ul-public-home .role-btn-provider:hover {
  background: var(--emergi-cream, #f7f1e7);
}

.ul-public-home .availability-empty,
.ul-public-home .availability-checking,
.ul-public-home .availability-result,
.ul-public-home .availability-unavailable {
  border-color: var(--emergi-border, #e5dccf);
  background: var(--emergi-card, #fffaf2);
  box-shadow: 0 16px 34px rgba(7, 26, 20, 0.12);
}

.ul-public-home .availability-service-card {
  border-color: var(--emergi-border, #e5dccf);
  background: var(--emergi-cream-2, #fbf7ef);
}

.ul-public-home .availability-preview .status-badge.available {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(31, 111, 82, 0.18);
  border-radius: 999px;
  background: var(--emergi-primary-soft, #dcefe5);
  color: var(--emergi-primary-hover, #16543f);
  font-size: 0.78rem;
  font-weight: 700;
}

.ul-public-home .availability-preview .status-badge.available::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--emergi-primary, #1f6f52);
}

.ul-public-home .availability-preview .status-badge.available .status-badge-dot {
  display: none;
}

.ul-public-home .availability-next {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(31, 111, 82, 0.16);
  background: #edf6ef;
  color: var(--emergi-green-800, #10382c);
}

.ul-public-home .availability-next span {
  color: var(--emergi-text-muted, #5f6f68);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ul-public-home .availability-next strong {
  color: var(--emergi-green-800, #10382c);
  font-size: 0.9rem;
}

/* 2026 Emergi platform redesign. Scoped to the public marketing/login page. */
.ul-public-home {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--color-bg-dark);
  color: var(--color-text-primary);
  font-family: Inter, var(--es-font-sans), ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.ul-public-home *,
.ul-public-home *::before,
.ul-public-home *::after {
  box-sizing: border-box;
}

.ul-public-home button,
.ul-public-home input {
  font: inherit;
}

.ul-public-home a {
  color: inherit;
}

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

.ul-public-home button:focus-visible,
.ul-public-home a:focus-visible,
.ul-public-home input:focus-visible {
  outline: 2px solid var(--color-green-accent);
  outline-offset: 2px;
}

.ul-public-home .top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  background: var(--color-green-muted);
  color: var(--color-text-primary);
  font: var(--type-label);
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
}

.ul-public-home .status-light {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-green-accent);
}

.ul-public-home .home-nav {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: var(--transition-platform);
}

.ul-public-home .home-nav.is-scrolled {
  border-bottom-color: rgba(247, 246, 242, 0.08);
  background: rgba(15, 21, 16, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ul-public-home .nav-logo {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  text-decoration: none;
}

.ul-public-home .nav-name,
.ul-public-home .footer-logo-name {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ul-public-home .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ul-public-home .nav-links a {
  color: var(--color-text-secondary);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-platform);
}

.ul-public-home .nav-links a:hover {
  color: var(--color-text-primary);
}

.ul-public-home .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ul-public-home .btn-ghost,
.ul-public-home .btn-nav-cta,
.ul-public-home .btn-hero,
.ul-public-home .audience-cta,
.ul-public-home .message-provider,
.ul-public-home .btn-signin,
.ul-public-home .sheet-google,
.ul-public-home .mobile-menu-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-platform);
  cursor: pointer;
}

.ul-public-home .btn-ghost {
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #fff;
}

.ul-public-home .btn-nav-cta {
  min-height: 42px;
  gap: 8px;
  padding: 10px 20px;
  border: 0;
  background: var(--color-green-primary);
  color: #fff;
}

.ul-public-home .btn-nav-cta:hover,
.ul-public-home .btn-hero:hover,
.ul-public-home .audience-cta-primary:hover,
.ul-public-home .btn-signin:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.ul-public-home .mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  background: transparent;
  color: #fff;
}

.ul-public-home .mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.ul-public-home .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 32px;
  background: rgba(15, 21, 16, 0.98);
  color: #fff;
}

.ul-public-home .mobile-menu[hidden] {
  display: none;
}

.ul-public-home .mobile-menu a,
.ul-public-home .mobile-menu button {
  width: 100%;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
}

.ul-public-home .mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  background: transparent;
  color: #fff;
  font-size: 30px;
}

.ul-public-home .mobile-menu-secondary {
  margin-top: 8px;
  border: 1px solid var(--color-green-primary);
  font-size: 18px;
}

.ul-public-home .mobile-menu-secondary {
  background: transparent;
}

.ul-public-home .hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 128px 0 32px;
  background: var(--color-bg-dark);
}

.ul-public-home .hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  justify-items: start;
}

.ul-public-home .hero-headline {
  margin: 0;
  color: var(--color-text-primary);
  font: var(--type-display);
  letter-spacing: var(--letter-display);
}

.ul-public-home .hero-brand-line {
  margin: 16px 0 0;
  color: var(--color-green-accent);
  font: var(--type-heading);
  letter-spacing: var(--letter-heading);
}

.ul-public-home .hero-sub {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--color-text-secondary);
  font: var(--type-body);
}

.ul-public-home .hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ul-public-home .hero-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(168, 181, 162, 0.22);
  border-radius: var(--radius-pill);
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 600;
}

.ul-public-home .hero-trust-strip svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--color-green-accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ul-public-home .service-widget {
  display: grid;
  gap: 16px;
  width: 100%;
  border-radius: var(--radius-modal);
  background: var(--color-surface-card);
  padding: 24px;
  color: #142018;
  box-shadow: var(--shadow-platform), 0 22px 60px rgba(0, 0, 0, 0.22);
}

.ul-public-home .widget-label,
.ul-public-home .section-eyebrow,
.ul-public-home .service-card-tag,
.ul-public-home .status-title-sm,
.ul-public-home .footer-col-title {
  margin: 0;
  font: var(--type-label);
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
}

.ul-public-home .widget-label {
  color: #51624f;
}

.ul-public-home .service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ul-public-home .service-btn {
  min-height: 86px;
  display: grid;
  gap: 8px;
  place-items: center;
  padding: 16px 10px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: #1d2a20;
  transition: var(--transition-platform);
}

.ul-public-home .service-btn[aria-pressed="true"],
.ul-public-home .service-btn.active {
  border-color: var(--color-green-primary);
  background: #f0f7f3;
}

.ul-public-home .service-btn[aria-pressed="true"] .service-icon,
.ul-public-home .service-btn.active .service-icon {
  color: var(--color-green-primary);
}

.ul-public-home .service-icon {
  color: #697269;
  font-size: 21px;
  font-weight: 800;
}

.ul-public-home .service-name {
  font-size: 13px;
  font-weight: 700;
}

.ul-public-home .widget-location {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid #dedede;
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
}

.ul-public-home .widget-location input {
  min-width: 0;
  flex: 1;
  height: 46px;
  border: 0;
  outline: 0;
  color: #142018;
}

.ul-public-home .btn-hero {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--color-green-primary);
  color: #fff;
  font-size: 18px;
  gap: 8px;
}

.ul-public-home .request-reassurance {
  margin: 0;
  color: #64715f;
  font-size: 14px;
  line-height: 1.55;
}

.ul-public-home .availability-preview {
  border-radius: 8px;
  border: 1px solid #d9e7dd;
  background: #f0f7f3;
  padding: 12px;
  color: #17351f;
  font-size: 14px;
}

.ul-public-home .availability-preview p {
  margin: 4px 0 0;
  color: #586657;
}

.ul-public-home .availability-continue,
.ul-public-home .availability-actions a,
.ul-public-home .availability-actions button {
  margin-top: 10px;
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid var(--color-green-primary);
  background: var(--color-green-primary);
  color: #fff;
  padding: 0 12px;
  text-decoration: none;
}

.ul-public-home .social-proof {
  background: var(--color-surface);
  color: #152018;
  padding: 32px clamp(16px, 4vw, 48px);
}

.ul-public-home .social-proof-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ul-public-home .stat-item {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 0 28px;
  border-right: 1px solid #e0e0e0;
}

.ul-public-home .stat-item:last-child {
  border-right: 0;
}

.ul-public-home .stat-item strong {
  font: var(--type-heading);
  letter-spacing: var(--letter-heading);
  color: #172018;
}

.ul-public-home .stat-item span {
  color: #65705f;
  font: var(--type-caption);
}

.ul-public-home .light-section {
  background: var(--color-surface);
  color: #142018;
}

.ul-public-home .dark-section {
  background: var(--color-bg-dark);
  color: var(--color-text-primary);
}

.ul-public-home .landing-container,
.ul-public-home .status-layout,
.ul-public-home .footer-grid,
.ul-public-home .footer-coverage,
.ul-public-home .footer-trust,
.ul-public-home .footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ul-public-home .section-how,
.ul-public-home .section-services,
.ul-public-home .section-audience {
  padding: 96px 0;
}

.ul-public-home .section-status {
  padding: 96px clamp(16px, 4vw, 48px);
}

.ul-public-home .section-head {
  max-width: 760px;
}

.ul-public-home .section-eyebrow {
  color: var(--color-green-primary);
}

.ul-public-home .section-title,
.ul-public-home .section-title-light,
.ul-public-home .audience-content h2,
.ul-public-home .footer-coverage h2 {
  margin: 10px 0 0;
  font: var(--type-heading);
  letter-spacing: var(--letter-heading);
}

.ul-public-home .section-title-light {
  color: var(--color-text-primary);
}

.ul-public-home .section-body-light {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--color-text-secondary);
  font: var(--type-body);
}

.ul-public-home .timeline-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.ul-public-home .timeline-steps::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 17%;
  right: 17%;
  border-top: 2px dashed rgba(45, 122, 79, 0.45);
}

.ul-public-home .step-card {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 16px;
}

.ul-public-home .step-icon-wrap {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e4f0e8;
  color: var(--color-green-primary);
  box-shadow: 0 0 0 12px var(--color-surface);
}

.ul-public-home .step-icon-wrap svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ul-public-home .step-title {
  margin: 8px 0 0;
  font: var(--type-subhead);
  letter-spacing: var(--letter-subhead);
}

.ul-public-home .step-desc {
  max-width: 270px;
  margin: 0;
  color: #596555;
  font: var(--type-caption);
}

.ul-public-home .services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.ul-public-home .service-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(45, 122, 79, 0.08);
  border-radius: 12px;
  background: var(--color-surface-card);
  padding: 22px;
  box-shadow: var(--shadow-platform);
  transition: var(--transition-platform);
}

.ul-public-home .service-card:hover {
  border-color: var(--color-green-primary);
  box-shadow: 0 16px 36px rgba(15, 21, 16, 0.14);
  transform: translateY(-4px);
}

.ul-public-home .service-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-green-muted);
  color: #fff;
  font-weight: 800;
}

.ul-public-home .service-card h3 {
  min-height: 66px;
  margin: 22px 0 8px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.ul-public-home .service-card-tag {
  color: #60705d;
}

.ul-public-home .service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ul-public-home .service-chips span {
  border-radius: var(--radius-pill);
  background: #eef3ee;
  color: #334436;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
}

.ul-public-home .service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.ul-public-home .service-card-footer span {
  border-radius: var(--radius-pill);
  background: #e3f3e9;
  color: #1b5b35;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}

.ul-public-home .service-card-footer a {
  opacity: 0;
  color: var(--color-green-primary);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transform: translateX(-8px);
  transition: var(--transition-platform);
  white-space: nowrap;
}

.ul-public-home .service-card:hover .service-card-footer a {
  opacity: 1;
  transform: translateX(0);
}

.ul-public-home .status-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 500px);
  gap: 56px;
  align-items: center;
}

.ul-public-home .status-card {
  border: 1px solid rgba(247, 246, 242, 0.08);
  border-radius: var(--radius-modal);
  background: var(--color-bg-mid);
  padding: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.ul-public-home .status-header,
.ul-public-home .status-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ul-public-home .status-title-sm {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text-secondary);
}

.ul-public-home .status-header strong,
.ul-public-home .status-summary strong {
  display: block;
  color: var(--color-text-primary);
  font-size: 18px;
}

.ul-public-home .status-pause,
.ul-public-home .message-provider {
  border: 1px solid rgba(247, 246, 242, 0.16);
  background: transparent;
  color: var(--color-text-primary);
}

.ul-public-home .status-pause {
  min-height: 40px;
  border-radius: var(--radius-pill);
  padding: 0 14px;
}

.ul-public-home .status-summary {
  justify-content: flex-start;
  margin: 20px 0;
  border-radius: 12px;
  background: rgba(247, 246, 242, 0.06);
  padding: 14px;
}

.ul-public-home .status-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-green-primary);
  color: #fff;
  font-weight: 800;
}

.ul-public-home .status-summary span:last-child {
  display: block;
  margin-top: 2px;
  color: var(--color-text-secondary);
  font-size: 14px;
}

.ul-public-home .status-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ul-public-home .status-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 0 0 22px;
  color: var(--color-text-secondary);
}

.ul-public-home .status-timeline li::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 9px;
  border-left: 1px solid rgba(168, 181, 162, 0.24);
}

.ul-public-home .status-timeline li:last-child {
  padding-bottom: 0;
}

.ul-public-home .status-timeline li:last-child::before {
  display: none;
}

.ul-public-home .timeline-dot {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 2px solid #6f796f;
  border-radius: 999px;
  background: transparent;
}

.ul-public-home .status-timeline li.done .timeline-dot {
  border-color: var(--color-green-accent);
  background: var(--color-green-accent);
}

.ul-public-home .status-timeline li.done .timeline-dot::after {
  content: "✓";
  color: #0f1510;
  font-size: 12px;
  font-weight: 800;
}

.ul-public-home .status-timeline li.active {
  color: var(--color-text-primary);
}

.ul-public-home .status-timeline li.active strong {
  font-weight: 800;
}

.ul-public-home .status-timeline li.active .timeline-dot {
  border-color: var(--color-green-accent);
  background: var(--color-green-accent);
  animation: statusPulse 1.5s infinite;
}

.ul-public-home .status-timeline strong,
.ul-public-home .status-timeline small {
  display: block;
}

.ul-public-home .status-timeline small {
  margin-top: 3px;
  color: var(--color-text-secondary);
}

.ul-public-home .message-provider {
  width: 100%;
  margin-top: 22px;
}

.ul-public-home .audience-panel {
  border-radius: var(--radius-modal);
  background: var(--color-surface-card);
  padding: 28px;
  box-shadow: var(--shadow-platform);
}

.ul-public-home .audience-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  border-radius: var(--radius-pill);
  background: #edf2ec;
  padding: 4px;
}

.ul-public-home .audience-tabs button {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: #465342;
  padding: 0 18px;
  font-weight: 700;
}

.ul-public-home .audience-tabs button[aria-selected="true"] {
  background: var(--color-green-primary);
  color: #fff;
}

.ul-public-home .audience-content {
  max-width: 720px;
  padding-top: 28px;
}

.ul-public-home .audience-content[hidden] {
  display: none;
}

.ul-public-home .audience-content ul {
  display: grid;
  gap: 13px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  color: #334436;
  font-size: 17px;
}

.ul-public-home .audience-content li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ul-public-home .audience-content li span {
  color: var(--color-green-primary);
  font-weight: 800;
}

.ul-public-home .audience-cta {
  min-height: 52px;
  padding: 0 22px;
}

.ul-public-home .audience-cta-primary {
  background: var(--color-green-primary);
  color: #fff;
}

.ul-public-home .audience-cta-outline {
  border: 1px solid var(--color-green-primary);
  color: var(--color-green-primary);
}

.ul-public-home .home-footer {
  background: var(--color-green-muted);
  color: var(--color-text-primary);
  padding: 64px 0 32px;
}

.ul-public-home .footer-coverage {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  text-align: left;
}

.ul-public-home .footer-coverage h2 {
  max-width: 620px;
}

.ul-public-home .footer-coverage a,
.ul-public-home .footer-links a {
  color: var(--color-green-accent);
  text-decoration: none;
  font-weight: 700;
}

.ul-public-home .footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.ul-public-home .footer-trust span {
  border-radius: var(--radius-pill);
  background: rgba(247, 246, 242, 0.08);
  padding: 10px 13px;
  color: var(--color-text-primary);
  font-size: 14px;
}

.ul-public-home .footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.ul-public-home .footer-brand p,
.ul-public-home .footer-links a,
.ul-public-home .footer-bottom {
  color: var(--color-text-secondary);
}

.ul-public-home .footer-links {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.ul-public-home .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 246, 242, 0.12);
  font-size: 14px;
}

.ul-public-home .footer-social {
  display: flex;
  gap: 12px;
}

.ul-public-home .footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 246, 242, 0.14);
  border-radius: 999px;
  text-decoration: none;
}

.ul-public-home .signin-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ul-public-home .signin-overlay[hidden],
.ul-public-home .signin-sheet[hidden] {
  display: none;
}

.ul-public-home .signin-sheet {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 160;
  width: min(440px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  transform: translate(-50%, -50%);
  border-radius: var(--radius-modal);
  background: #fff;
  color: #142018;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.ul-public-home .sheet-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  background: #fff;
  color: #1d2a20;
  font-size: 24px;
}

.ul-public-home .sheet-title {
  margin: 0;
  padding-right: 48px;
  font: var(--type-heading);
  letter-spacing: var(--letter-heading);
}

.ul-public-home .sheet-sub {
  margin: 8px 0 22px;
  color: #667061;
}

.ul-public-home .sheet-google {
  width: 100%;
  gap: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #142018;
  border-radius: 8px;
}

.ul-public-home .sheet-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
  color: #667061;
  font-size: 14px;
}

.ul-public-home .sheet-divider::before,
.ul-public-home .sheet-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #e0e0e0;
}

.ul-public-home .signin-form {
  display: grid;
  gap: 16px;
}

.ul-public-home .sheet-field,
.ul-public-home .sheet-field-row {
  display: grid;
  gap: 7px;
}

.ul-public-home .sheet-field-row {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.ul-public-home .sheet-field label {
  color: #26352a;
  font-size: 14px;
  font-weight: 700;
}

.ul-public-home .sheet-field input {
  width: 100%;
  height: 48px;
  border: 1px solid #d9d9d9;
  border-radius: var(--radius-input);
  padding: 0 12px;
  color: #142018;
}

.ul-public-home .password-wrap {
  position: relative;
}

.ul-public-home .password-wrap input {
  padding-right: 68px;
}

.ul-public-home .password-toggle,
.ul-public-home .forgot {
  border: 0;
  background: transparent;
  color: var(--color-green-primary);
  font-weight: 700;
}

.ul-public-home .password-toggle {
  position: absolute;
  top: 0;
  right: 0;
  min-height: 48px;
  padding: 0 12px;
}

.ul-public-home .btn-signin {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--color-green-primary);
  color: #fff;
}

.ul-public-home .sheet-footer-links {
  margin-top: 18px;
  color: #667061;
  text-align: center;
  font-size: 14px;
}

.ul-public-home .sheet-footer-links a {
  color: var(--color-green-primary);
  font-weight: 700;
}

.ul-public-home .ul-feedback {
  min-height: 20px;
  margin-top: 12px;
  font-size: 14px;
}

.ul-public-home .will-reveal {
  opacity: 0;
  transform: translateY(20px);
}

.ul-public-home .will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms ease-out, transform 300ms ease-out;
}

@keyframes statusPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
}

@media (max-width: 1024px) {
  .ul-public-home .hero-content,
  .ul-public-home .status-layout {
    grid-template-columns: 1fr;
  }

  .ul-public-home .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ul-public-home .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ul-public-home .hero-content,
  .ul-public-home .social-proof-grid,
  .ul-public-home .landing-container,
  .ul-public-home .status-layout,
  .ul-public-home .footer-coverage,
  .ul-public-home .footer-trust,
  .ul-public-home .footer-grid,
  .ul-public-home .footer-bottom {
    width: min(1180px, calc(100% - 32px));
  }
}

@media (max-width: 760px) {
  .ul-public-home .nav-links,
  .ul-public-home .btn-ghost,
  .ul-public-home .btn-nav-cta {
    display: none;
  }

  .ul-public-home .mobile-menu-toggle {
    display: block;
  }

  .ul-public-home .hero {
    min-height: auto;
    padding: 124px 0 32px;
  }

  .ul-public-home .hero-content {
    gap: 24px;
    width: min(1180px, calc(100% - 24px));
  }

  .ul-public-home .hero-headline {
    font-size: 48px;
  }

  .ul-public-home .hero-brand-line,
  .ul-public-home .section-title,
  .ul-public-home .section-title-light,
  .ul-public-home .audience-content h2,
  .ul-public-home .footer-coverage h2 {
    font-size: 32px;
  }

  .ul-public-home .service-widget {
    padding: 18px;
  }

  .ul-public-home .service-grid,
  .ul-public-home .social-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(1180px, calc(100% - 24px));
  }

  .ul-public-home .stat-item {
    border-right: 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .ul-public-home .stat-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .ul-public-home .timeline-steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ul-public-home .timeline-steps::before {
    top: 34px;
    bottom: 34px;
    left: 48px;
    right: auto;
    border-top: 0;
    border-left: 2px dashed rgba(45, 122, 79, 0.45);
  }

  .ul-public-home .step-card {
    grid-template-columns: 96px 1fr;
    justify-items: start;
    text-align: left;
  }

  .ul-public-home .step-title,
  .ul-public-home .step-desc {
    grid-column: 2;
  }

  .ul-public-home .services-grid {
    grid-template-columns: 1fr;
  }

  .ul-public-home .service-card-footer a {
    opacity: 1;
    transform: none;
  }

  .ul-public-home .audience-tabs {
    width: 100%;
  }

  .ul-public-home .footer-coverage,
  .ul-public-home .footer-bottom {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 520px) {
  .ul-public-home .top-bar {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
    font-size: 10px;
  }

  .ul-public-home .home-nav {
    min-height: 64px;
    padding: 8px 16px;
  }

  .ul-public-home .hero-headline {
    font-size: 46px;
  }

  .ul-public-home .hero-sub {
    font-size: 16px;
  }

  .ul-public-home .section-how,
  .ul-public-home .section-services,
  .ul-public-home .section-audience,
  .ul-public-home .section-status {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .ul-public-home .footer-grid {
    grid-template-columns: 1fr;
    width: min(1180px, calc(100% - 24px));
  }

  .ul-public-home .signin-sheet {
    inset: auto 10px 10px;
    width: auto;
    max-height: calc(100dvh - 20px);
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ul-public-home *,
  .ul-public-home *::before,
  .ul-public-home *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .ul-public-home .will-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Emergi reference landing layout. Matches the provided look closely. */
html.ul-public-home,
html.ul-public-home body {
  background: #111111;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html.ul-public-home *,
html.ul-public-home *::before,
html.ul-public-home *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html.ul-public-home .eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #26c464;
  margin-bottom: 12px;
}

html.ul-public-home .h-xl {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7.5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

html.ul-public-home .h-lg {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
}

html.ul-public-home .h-md {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.2;
}

html.ul-public-home .t-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

html.ul-public-home .t-sm {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.50);
}

html.ul-public-home .wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

html.ul-public-home .sec {
  padding: 88px 0;
}

html.ul-public-home nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(11,34,23,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(38,196,100,0.18);
}

html.ul-public-home .nav-row {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

html.ul-public-home .nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

html.ul-public-home .nav-logo span {
  color: #26c464;
}

html.ul-public-home .live-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: #4ade80;
  background: rgba(38,196,100,0.09);
  border: 1px solid rgba(38,196,100,0.18);
  padding: 5px 11px;
  border-radius: 99px;
  white-space: nowrap;
}

html.ul-public-home .live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #26c464;
  display: block;
  flex-shrink: 0;
  animation: blinker 1.5s ease-in-out infinite;
}

@keyframes blinker {
  0%,100% { opacity: 1; }
  50% { opacity: .2; }
}

html.ul-public-home .nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

html.ul-public-home .nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}

html.ul-public-home .nav-links a:hover {
  color: #ffffff;
}

html.ul-public-home .btn-signin {
  padding: 8px 17px;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.83rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity .2s, transform .15s;
}

html.ul-public-home .btn-signin:hover {
  opacity: .9;
  transform: translateY(-1px);
}

html.ul-public-home .hero {
  min-height: 100svh;
  padding: 98px 24px 70px;
  background:
    radial-gradient(ellipse 85% 55% at 68% 38%, rgba(28,102,56,.20) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 8% 88%, rgba(38,196,100,.06) 0%, transparent 62%),
    #111111;
  display: flex;
  align-items: center;
}

html.ul-public-home .hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 56px;
  align-items: center;
}

html.ul-public-home .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #26c464;
  margin-bottom: 20px;
}

html.ul-public-home .hero-eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #26c464;
  display: block;
  flex-shrink: 0;
  animation: blinker 1.5s ease-in-out infinite;
}

html.ul-public-home .hero-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 8.5vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

html.ul-public-home .hero-h1 .accent {
  color: #26c464;
  position: relative;
}

html.ul-public-home .hero-h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #26c464;
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  animation: drawline .9s .5s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes drawline {
  to { transform: scaleX(1); }
}

html.ul-public-home .hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  max-width: 420px;
  margin-bottom: 30px;
}

html.ul-public-home .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

html.ul-public-home .trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 6px 13px;
  border-radius: 99px;
}

html.ul-public-home .trust-tag svg {
  flex-shrink: 0;
  color: #26c464;
}

html.ul-public-home .req-card {
  background: #f4f2ed;
  color: #111111;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 28px 60px rgba(0,0,0,.50), 0 0 0 1px rgba(255,255,255,.04);
  animation: floatY 7s ease-in-out infinite;
}

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

html.ul-public-home .card-lbl {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(0,0,0,.4);
  text-transform: uppercase;
  margin-bottom: 13px;
}

html.ul-public-home .svc-tabs {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 6px;
  margin-bottom: 14px;
}

html.ul-public-home .svc-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 4px;
  border-radius: 10px;
  cursor: pointer;
  background: rgba(0,0,0,.04);
  border: 2px solid transparent;
  font-size: 0.63rem;
  font-weight: 700;
  color: rgba(0,0,0,.48);
  text-align: center;
  line-height: 1.2;
  transition: all .18s;
  -webkit-tap-highlight-color: transparent;
}

html.ul-public-home .svc-tab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

html.ul-public-home .svc-tab:hover {
  background: rgba(28,102,56,.08);
  border-color: rgba(28,102,56,.25);
}

html.ul-public-home .svc-tab.on {
  background: rgba(28,102,56,.11);
  border-color: #1c6638;
  color: #1c6638;
}

html.ul-public-home .loc-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.11);
  border-radius: 10px;
  padding: 11px 13px;
  margin-bottom: 10px;
  transition: border-color .2s;
}

html.ul-public-home .loc-wrap:focus-within {
  border-color: #1c6638;
}

html.ul-public-home .loc-wrap input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #111;
}

html.ul-public-home .loc-wrap input::placeholder {
  color: rgba(0,0,0,.32);
}

html.ul-public-home .btn-go {
  width: 100%;
  padding: 13px 18px;
  background: #1c6638;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .2s, transform .15s, box-shadow .2s;
}

html.ul-public-home .btn-go:hover {
  background: #155030;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(28,102,56,.38);
}

html.ul-public-home .card-note {
  text-align: center;
  font-size: 0.68rem;
  color: rgba(0,0,0,.38);
  margin-top: 8px;
}

html.ul-public-home .ticker {
  background: #0b2217;
  border-top: 1px solid rgba(38,196,100,.1);
  border-bottom: 1px solid rgba(38,196,100,.1);
  padding: 14px 0;
  overflow: hidden;
}

html.ul-public-home .ticker-inner {
  display: flex;
  gap: 52px;
  width: max-content;
  animation: tick 32s linear infinite;
}

@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

html.ul-public-home .tick-item {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-size: 0.77rem;
  font-weight: 500;
  color: rgba(255,255,255,.48);
}

html.ul-public-home .tick-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #26c464;
  flex-shrink: 0;
}

html.ul-public-home .hiw {
  background: #111111;
}

html.ul-public-home .steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 44px;
}

html.ul-public-home .step-card {
  background: #181818;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

html.ul-public-home .step-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, #1c6638, #26c464);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

html.ul-public-home .step-card:hover {
  border-color: rgba(38,196,100,.18);
  transform: translateY(-3px);
}

html.ul-public-home .step-card:hover::before {
  transform: scaleX(1);
}

html.ul-public-home .step-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #26c464;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}

html.ul-public-home .step-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  margin-bottom: 16px;
  background: rgba(38,196,100,.08);
  border: 1px solid rgba(38,196,100,.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

html.ul-public-home .step-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: #fff;
  margin-bottom: 7px;
}

html.ul-public-home .step-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,.50);
  line-height: 1.65;
}

html.ul-public-home .stats-sec {
  background: #0b2217;
  border-top: 1px solid rgba(38,196,100,.08);
  border-bottom: 1px solid rgba(38,196,100,.08);
}

html.ul-public-home .stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

html.ul-public-home .stat-cell {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}

html.ul-public-home .stat-cell:last-child {
  border-right: none;
}

html.ul-public-home .stat-num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

html.ul-public-home .stat-num em {
  font-style: normal;
  color: #26c464;
}

html.ul-public-home .stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,.50);
}

html.ul-public-home .svc-sec {
  background: linear-gradient(180deg, #111111 0%, #0e1c14 100%);
}

html.ul-public-home .svc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 44px;
}

html.ul-public-home .svc-row {
  background: #181818;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  transition: border-color .25s, background .25s;
}

html.ul-public-home .svc-row:hover {
  border-color: rgba(38,196,100,.18);
  background: #1b2520;
}

html.ul-public-home .svc-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(38,196,100,.07);
  border: 1px solid rgba(38,196,100,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

html.ul-public-home .svc-tag {
  display: inline-block;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(38,196,100,.1);
  color: #4ade80;
  border: 1px solid rgba(38,196,100,.18);
  margin-bottom: 5px;
}

html.ul-public-home .svc-row h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}

html.ul-public-home .svc-row p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.50);
  line-height: 1.55;
}

html.ul-public-home .svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}

html.ul-public-home .chip {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.52);
}

html.ul-public-home .svc-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

html.ul-public-home .online-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 0.73rem;
  font-weight: 600;
  color: #26c464;
}

html.ul-public-home .online-dot i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #26c464;
  display: block;
  animation: blinker 1.5s ease-in-out infinite;
}

html.ul-public-home .arr {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(38,196,100,.07);
  border: 1px solid rgba(38,196,100,.14);
  color: #26c464;
}

html.ul-public-home .live-sec {
  background: #111111;
}

html.ul-public-home .feed-card {
  background: #181818;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 36px;
}

html.ul-public-home .feed-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

html.ul-public-home .feed-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #26c464;
}

html.ul-public-home .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #26c464;
  position: relative;
  flex-shrink: 0;
}

html.ul-public-home .pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(38,196,100,.22);
  animation: ripple 1.9s ease-out infinite;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: .4; }
  100% { transform: scale(2.8); opacity: 0; }
}

html.ul-public-home .feed-hdr span {
  font-size: 0.71rem;
  color: rgba(255,255,255,.50);
}

html.ul-public-home .act-list {
  padding: 2px 0;
}

html.ul-public-home .act-item {
  display: grid;
  grid-template-columns: 38px 1fr auto auto;
  align-items: center;
  gap: 13px;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .15s;
}

html.ul-public-home .act-item:last-child {
  border-bottom: none;
}

html.ul-public-home .act-item:hover {
  background: rgba(255,255,255,.02);
}

html.ul-public-home .act-ico-box {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(38,196,100,.08);
  border: 1px solid rgba(38,196,100,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

html.ul-public-home .act-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}

html.ul-public-home .act-loc {
  font-size: 0.73rem;
  color: rgba(255,255,255,.50);
}

html.ul-public-home .act-badge {
  font-size: 0.63rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: .04em;
}

html.ul-public-home .b-enroute {
  background: rgba(59,130,246,.12);
  color: #93c5fd;
  border: 1px solid rgba(59,130,246,.2);
}

html.ul-public-home .b-matched {
  background: rgba(38,196,100,.1);
  color: #4ade80;
  border: 1px solid rgba(38,196,100,.18);
}

html.ul-public-home .b-done {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.50);
  border: 1px solid rgba(255,255,255,.07);
}

html.ul-public-home .act-time {
  font-size: 0.7rem;
  color: rgba(255,255,255,.50);
  white-space: nowrap;
}

html.ul-public-home .prov-sec {
  background: #0b2217;
}

html.ul-public-home .prov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

html.ul-public-home .ben-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

html.ul-public-home .ben-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 17px 18px;
  transition: border-color .2s;
}

html.ul-public-home .ben-row:hover {
  border-color: rgba(38,196,100,.18);
}

html.ul-public-home .ben-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(38,196,100,.08);
  border: 1px solid rgba(38,196,100,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

html.ul-public-home .ben-row h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 3px;
}

html.ul-public-home .ben-row p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.50);
  line-height: 1.55;
}

html.ul-public-home .btn-vivid {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 26px;
  padding: 12px 24px;
  border-radius: 10px;
  background: #26c464;
  color: #111111;
  border: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}

html.ul-public-home .btn-vivid:hover {
  background: #4ade80;
  transform: translateY(-2px);
}

html.ul-public-home .map-box {
  background: #07160e;
  border: 1px solid rgba(38,196,100,.14);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 390px;
  margin-top: 14px;
}

html.ul-public-home .map-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(38,196,100,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,196,100,.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

html.ul-public-home .map-ping {
  position: absolute;
  width: 11px;
  height: 11px;
  background: #26c464;
  border-radius: 50%;
}

html.ul-public-home .map-ping::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(38,196,100,.2);
  animation: ripple 2.4s ease-out infinite;
}

html.ul-public-home .map-ping::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(38,196,100,.1);
  animation: ripple 2.4s .5s ease-out infinite;
}

html.ul-public-home .map-truck {
  position: absolute;
  top: calc(32% - 10px);
  animation: drive 5s ease-in-out infinite alternate;
}

@keyframes drive {
  from { left: 14%; }
  to { left: 53%; }
}

html.ul-public-home .map-route {
  position: absolute;
  top: calc(32% - 1px);
  left: 16%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, rgba(28,102,56,.35), #26c464);
  border-radius: 2px;
}

html.ul-public-home .map-pin { position: absolute; top: 22%; left: 58%; }

html.ul-public-home .map-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7,22,14,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(38,196,100,.15);
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

html.ul-public-home .eta-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1;
}

html.ul-public-home .eta-lbl {
  font-size: 0.68rem;
  color: rgba(255,255,255,.50);
  margin-top: 2px;
}

html.ul-public-home .eta-stat {
  font-size: 0.76rem;
  font-weight: 600;
  color: #26c464;
  display: flex;
  align-items: center;
  gap: 6px;
}

html.ul-public-home .eta-stat i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #26c464;
  display: block;
  animation: blinker 1.5s ease-in-out infinite;
}

html.ul-public-home .safety-sec {
  background: #111111;
}

html.ul-public-home .safety-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 44px;
}

html.ul-public-home .saf-card {
  background: #181818;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 13px;
  padding: 22px;
  transition: border-color .25s;
}

html.ul-public-home .saf-card:hover {
  border-color: rgba(38,196,100,.18);
}

html.ul-public-home .saf-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 14px;
  background: rgba(38,196,100,.08);
  border: 1px solid rgba(38,196,100,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

html.ul-public-home .saf-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 6px;
}

html.ul-public-home .saf-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.50);
  line-height: 1.62;
}

html.ul-public-home .cta-band {
  background: linear-gradient(135deg, #1c6638 0%, #0c4826 100%);
  margin: 32px 24px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

html.ul-public-home .cta-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  pointer-events: none;
}

html.ul-public-home .cta-inner {
  position: relative;
  z-index: 1;
  padding: 52px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

html.ul-public-home .cta-band h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.55rem, 3.8vw, 2.55rem);
  color: #fff;
  margin-bottom: 9px;
}

html.ul-public-home .cta-band p {
  font-size: 0.93rem;
  color: rgba(255,255,255,.74);
}

html.ul-public-home .cta-btns {
  display: flex;
  gap: 9px;
  flex-shrink: 0;
}

html.ul-public-home .btn-wh {
  padding: 12px 24px;
  border-radius: 9px;
  background: #ffffff;
  color: #1c6638;
  border: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
}

html.ul-public-home .btn-wh:hover {
  opacity: .9;
  transform: translateY(-2px);
}

html.ul-public-home .btn-ol {
  padding: 12px 24px;
  border-radius: 9px;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,.38);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
}

html.ul-public-home .btn-ol:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,.07);
}

html.ul-public-home footer {
  background: #0b2217;
  border-top: 1px solid rgba(38,196,100,.08);
  padding: 52px 24px 26px;
}

html.ul-public-home .foot-grid {
  max-width: 1120px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}

html.ul-public-home .foot-brand p {
  font-size: 0.81rem;
  color: rgba(255,255,255,.50);
  line-height: 1.65;
  margin-top: 9px;
  max-width: 220px;
}

html.ul-public-home .foot-col h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  margin-bottom: 13px;
}

html.ul-public-home .foot-col a {
  display: block;
  font-size: 0.83rem;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color .2s;
}

html.ul-public-home .foot-col a:hover {
  color: #ffffff;
}

html.ul-public-home .foot-btm {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: 0.73rem;
  color: rgba(255,255,255,.22);
}

html.ul-public-home .rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

html.ul-public-home .rv.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  html.ul-public-home .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  html.ul-public-home .req-card {
    max-width: 460px;
  }
  html.ul-public-home .steps-grid {
    grid-template-columns: 1fr;
  }
  html.ul-public-home .stats-grid {
    grid-template-columns: repeat(2,1fr);
  }
  html.ul-public-home .stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  html.ul-public-home .stat-cell:nth-child(2n) {
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  html.ul-public-home .stat-cell:nth-last-child(-n+2) {
    border-bottom: none;
  }
  html.ul-public-home .svc-row {
    grid-template-columns: 44px 1fr;
  }
  html.ul-public-home .svc-right {
    display: none;
  }
  html.ul-public-home .prov-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  html.ul-public-home .map-box {
    height: 280px;
  }
  html.ul-public-home .safety-grid {
    grid-template-columns: repeat(2,1fr);
  }
  html.ul-public-home .cta-inner {
    flex-direction: column;
    padding: 36px 28px;
  }
  html.ul-public-home .cta-btns {
    width: 100%;
  }
  html.ul-public-home .cta-btns button {
    flex: 1;
  }
  html.ul-public-home .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  html.ul-public-home .foot-btm {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html.ul-public-home .hero {
    padding: 86px 20px 52px;
  }
  html.ul-public-home .sec {
    padding: 64px 0;
  }
  html.ul-public-home .wrap {
    padding: 0 18px;
  }
  html.ul-public-home .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  html.ul-public-home .safety-grid {
    grid-template-columns: 1fr;
  }
  html.ul-public-home .cta-band {
    margin: 20px 16px;
    border-radius: 14px;
  }
  html.ul-public-home .foot-grid {
    grid-template-columns: 1fr;
  }
}

html.ul-public-home .signin-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

html.ul-public-home .signin-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
}

html.ul-public-home .signin-sheet[hidden],
html.ul-public-home .signin-overlay[hidden] {
  display: none !important;
}

html.ul-public-home .signin-sheet > * {
  pointer-events: auto;
}

html.ul-public-home .signin-sheet {
  align-items: center;
}

html.ul-public-home .signin-sheet .sheet-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  color: #475569;
  font-size: 24px;
  line-height: 1;
}

html.ul-public-home .signin-sheet .sheet-title {
  color: #0f172a;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

html.ul-public-home .signin-sheet .sheet-sub {
  margin-top: 6px;
  color: #64748b;
}

html.ul-public-home .signin-sheet .sheet-google,
html.ul-public-home .signin-sheet .btn-signin {
  border-radius: 12px;
}

html.ul-public-home .signin-sheet .ul-feedback {
  min-height: 18px;
  margin-top: 8px;
  font-size: 0.88rem;
}

html.ul-public-home .hero-grid,
html.ul-public-home .nav-row,
html.ul-public-home .wrap,
html.ul-public-home .cta-inner,
html.ul-public-home .foot-grid,
html.ul-public-home .foot-btm {
  width: min(1120px, calc(100vw - 48px));
  margin-inline: auto;
}

html.ul-public-home .hero-grid,
html.ul-public-home .prov-grid,
html.ul-public-home .cta-inner,
html.ul-public-home .foot-grid {
  align-items: center;
}

html.ul-public-home .hero-grid > :first-child,
html.ul-public-home .prov-grid > :first-child {
  min-width: 0;
}

html.ul-public-home .home-nav {
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  transition: background-color 180ms cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 180ms cubic-bezier(0.4, 0, 0.2, 1), border-color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

html.ul-public-home .home-nav.is-scrolled {
  background: rgba(15, 21, 16, 0.92);
  border-bottom-color: rgba(255, 250, 242, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

html.ul-public-home .header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
  margin-left: auto;
}

html.ul-public-home .sign-in-nav-button,
html.ul-public-home .mobile-menu-toggle,
html.ul-public-home .mobile-menu-secondary,
html.ul-public-home .auth-submit-button {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}

html.ul-public-home .sign-in-nav-button {
  width: auto;
  min-width: 88px;
  height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(248, 244, 234, 0.28);
  background: rgba(255, 250, 242, 0.08);
  color: #f8f4ea;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background-color 180ms cubic-bezier(0.4, 0, 0.2, 1), border-color 180ms cubic-bezier(0.4, 0, 0.2, 1), transform 180ms cubic-bezier(0.4, 0, 0.2, 1), filter 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

html.ul-public-home .sign-in-nav-button:hover,
html.ul-public-home .sign-in-nav-button:focus-visible {
  background: rgba(255, 250, 242, 0.14);
  border-color: rgba(248, 244, 234, 0.42);
  transform: translateY(-1px);
  outline: none;
}

html.ul-public-home .sign-in-nav-button.header-on-light {
  color: #0b241c;
  background: transparent;
  border: 1px solid rgba(18, 35, 29, 0.18);
}

html.ul-public-home .mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(248, 244, 234, 0.18);
  background: rgba(255, 250, 242, 0.05);
  color: #f8f4ea;
  padding: 0;
  flex: 0 0 auto;
}

html.ul-public-home .mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

html.ul-public-home .mobile-menu-toggle:focus-visible {
  outline: 2px solid #4CAF72;
  outline-offset: 2px;
}

html.ul-public-home .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 24px;
  background: rgba(7, 21, 16, 0.98);
  color: #fffaf2;
  overflow-y: auto;
}

html.ul-public-home .mobile-menu[hidden] {
  display: none;
}

html.ul-public-home .mobile-menu a,
html.ul-public-home .mobile-menu button {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

html.ul-public-home .mobile-menu a {
  color: #fffaf2;
  text-decoration: none;
  padding: 0 16px;
  border: 1px solid rgba(248, 244, 234, 0.08);
  background: rgba(255, 250, 242, 0.03);
}

html.ul-public-home .mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(248, 244, 234, 0.18);
  background: rgba(255, 250, 242, 0.05);
  color: #fffaf2;
  font-size: 28px;
  line-height: 1;
}

html.ul-public-home .mobile-menu-secondary {
  border: 1px solid rgba(248, 244, 234, 0.22);
  background: transparent;
  color: #fffaf2;
}

html.ul-public-home .signin-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 26, 20, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

html.ul-public-home .signin-sheet {
  position: fixed;
  inset: 0;
  z-index: 1010;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
}

html.ul-public-home .signin-sheet[hidden],
html.ul-public-home .signin-overlay[hidden] {
  display: none !important;
}

html.ul-public-home .signin-sheet-card {
  position: relative;
  width: min(100%, 480px);
  max-width: 480px;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  margin: 0 auto;
  border-radius: 28px;
  padding: 28px;
  background: #fffaf2;
  border: 1px solid #e5dccf;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
}

html.ul-public-home .signin-sheet-card > * {
  pointer-events: auto;
}

html.ul-public-home .signin-sheet .sheet-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid #e5dccf;
  border-radius: 14px;
  background: #fbf7ef;
  color: #5f6f68;
  font-size: 24px;
  line-height: 1;
}

html.ul-public-home .signin-sheet .sheet-title {
  margin: 0;
  color: #12231d;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

html.ul-public-home .signin-sheet .sheet-sub {
  margin-top: 8px;
  color: #5f6f68;
}

html.ul-public-home .signin-sheet .sheet-google {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid #e5dccf;
  background: #fff;
  color: #12231d;
  font-weight: 700;
}

html.ul-public-home .signin-sheet .sheet-divider {
  margin: 18px 0 16px;
  color: #5f6f68;
}

html.ul-public-home .signin-sheet .sheet-divider::before,
html.ul-public-home .signin-sheet .sheet-divider::after {
  background: #e5dccf;
}

html.ul-public-home .signin-sheet .sheet-field {
  margin-bottom: 14px;
}

html.ul-public-home .signin-sheet .sheet-field label {
  color: #12231d;
  font-size: 14px;
  font-weight: 700;
}

html.ul-public-home .auth-input {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid #e5dccf;
  background: #fbf7ef;
  color: #12231d;
  padding: 0 16px;
  transition: border-color 180ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0.4, 0, 0.2, 1), background-color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

html.ul-public-home .auth-input:focus {
  outline: none;
  border-color: #1f6f52;
  box-shadow: 0 0 0 4px rgba(31, 111, 82, 0.14);
}

html.ul-public-home .signin-sheet .password-wrap input {
  padding-right: 68px;
}

html.ul-public-home .signin-sheet .ul-password-rules {
  margin: 0.38rem 0 0;
  color: var(--landing-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

html.ul-public-home .signin-sheet .auth-password-requirements__title {
  color: var(--landing-text, var(--ul-card-text, var(--ul-text)));
}

html.ul-public-home .signin-sheet .auth-password-requirements__icon {
  color: var(--landing-accent, var(--lp-accent, var(--signup-brand, var(--ul-success, var(--ul-primary)))));
}

html.ul-public-home .signin-sheet .password-toggle,
html.ul-public-home .signin-sheet .forgot {
  color: #1f6f52;
}

html.ul-public-home .auth-submit-button {
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
  border-radius: 18px;
  border: 0;
  background: linear-gradient(180deg, #1f6f52 0%, #16543f 100%);
  color: #fffaf2;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 34px rgba(15, 47, 36, 0.18);
}

html.ul-public-home .auth-submit-button:hover,
html.ul-public-home .auth-submit-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  outline: none;
}

html.ul-public-home .signin-sheet .ul-feedback {
  min-height: 18px;
  margin-top: 10px;
  color: #5f6f68;
}

html.ul-public-home .signin-sheet .sheet-footer-links {
  margin-top: 18px;
  text-align: center;
}

html.ul-public-home .signin-sheet .sheet-footer-links p,
html.ul-public-home .signin-sheet .sheet-footer-links a {
  color: #5f6f68;
}

html.ul-public-home .signin-sheet .sheet-footer-links a:hover {
  color: #16543f;
}

@media (max-width: 900px) {
  html.ul-public-home .nav-links {
    display: none;
  }
  html.ul-public-home .header-actions {
    gap: 10px;
  }
  html.ul-public-home .sign-in-nav-button {
    display: none;
  }
  html.ul-public-home .mobile-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  html.ul-public-home .signin-sheet {
    padding: 16px;
  }
  html.ul-public-home .signin-sheet-card {
    width: 100%;
    max-width: 100%;
    border-radius: 24px;
    padding: 22px;
  }
  html.ul-public-home .signin-sheet .sheet-title {
    font-size: 1.75rem;
  }
  html.ul-public-home .header-actions {
    gap: 8px;
  }
  html.ul-public-home .mobile-menu {
    padding: 20px;
  }
}

html.ul-public-home .signin-overlay {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow-y: auto !important;
}

html.ul-public-home .signin-sheet {
  position: fixed !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  overflow-y: auto !important;
}

html.ul-public-home .signin-sheet-card {
  width: min(100%, 480px) !important;
  max-width: 480px !important;
  margin: auto !important;
  transform: none !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
}

@media (max-width: 640px) {
  html.ul-public-home .signin-sheet {
    padding: 16px !important;
  }

  html.ul-public-home .signin-sheet-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Landing polish pass: active public page container, CTA states, and modal centering. */
html.ul-public-home,
html.ul-public-home body {
  max-width: 100%;
}

html.ul-public-home .page-container,
html.ul-public-home .hero-grid,
html.ul-public-home .nav-row,
html.ul-public-home .wrap,
html.ul-public-home .stats-grid,
html.ul-public-home .cta-inner,
html.ul-public-home .foot-grid,
html.ul-public-home .foot-btm {
  width: min(100% - 48px, 1200px);
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 0;
}

html.ul-public-home .hero {
  padding-inline: 0;
  overflow-x: clip;
}

html.ul-public-home .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
}

html.ul-public-home .req-card {
  width: min(100%, 480px);
  justify-self: end;
  animation: none;
}

html.ul-public-home .btn-go,
html.ul-public-home .btn-vivid,
html.ul-public-home .btn-wh,
html.ul-public-home .btn-ol {
  min-height: 56px;
  border-radius: 18px;
}

html.ul-public-home .btn-go,
html.ul-public-home .btn-vivid {
  background: linear-gradient(180deg, #1f6f52 0%, #16543f 100%);
  color: #fffaf2;
  box-shadow: 0 18px 34px rgba(15, 47, 36, 0.18);
}

html.ul-public-home .btn-go:hover,
html.ul-public-home .btn-vivid:hover {
  background: linear-gradient(180deg, #247b5b 0%, #16543f 100%);
}

html.ul-public-home .hero-validation {
  min-height: 20px;
  margin: -2px 0 8px;
  color: #8a1f1f;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

html.ul-public-home .hero-validation:empty {
  display: none;
}

/* Shared customer-theme landing modes. Scoped to /login.html only. */
html.ul-public-home {
  --landing-primary: var(--cd-accent-600, #1f6f52);
  --landing-primary-hover: var(--cd-accent-700, #16543f);
  --landing-mint: var(--cd-accent-500, #8ee889);
  --landing-mint-dim: var(--cd-accent-500, #5fd36a);
}

html.ul-public-home[data-customer-effective-theme="day"] .hero {
  background:
    radial-gradient(720px 360px at 18% 16%, rgba(255, 226, 138, 0.34), transparent 64%),
    radial-gradient(620px 420px at 86% 24%, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.16), transparent 64%),
    linear-gradient(135deg, #f9fbff 0%, #eaf7ff 46%, #f7fff8 100%) !important;
}

html.ul-public-home[data-customer-effective-theme="day"] .hero::before {
  inset: 80px auto auto 9%;
  width: min(38vw, 440px);
  height: min(38vw, 440px);
  background: radial-gradient(circle, rgba(255, 198, 76, 0.36), rgba(255, 231, 170, 0.16) 42%, transparent 68%);
  filter: blur(1px);
}

html.ul-public-home[data-customer-effective-theme="day"] .hero::after {
  background: linear-gradient(180deg, transparent, rgba(248, 250, 252, 0.64));
}

html.ul-public-home[data-customer-effective-theme="day"] .hero-eyebrow,
html.ul-public-home[data-customer-effective-theme="day"] .hero-h1,
html.ul-public-home[data-customer-effective-theme="day"] .hero-sub,
html.ul-public-home[data-customer-effective-theme="day"] .trust-tag {
  color: #10231c;
}

html.ul-public-home[data-customer-effective-theme="day"] .hero-sub,
html.ul-public-home[data-customer-effective-theme="day"] .trust-tag {
  color: rgba(16, 35, 28, 0.72);
}

html.ul-public-home[data-customer-effective-theme="day"] .trust-tag,
html.ul-public-home[data-customer-effective-theme="day"] .hero-float {
  border-color: rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.66);
  color: rgba(16, 35, 28, 0.82);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

html.ul-public-home[data-customer-effective-theme="day"] .hero-float small {
  color: rgba(16, 35, 28, 0.56);
}

html.ul-public-home[data-customer-effective-theme="sunset"] .hero {
  background:
    radial-gradient(900px 420px at 6% -10%, rgba(251, 146, 60, 0.12), transparent 64%),
    radial-gradient(760px 360px at 98% 2%, rgba(249, 115, 22, 0.055), transparent 62%),
    linear-gradient(180deg, #fffdfb 0%, #fff8f3 100%) !important;
}

html.ul-public-home[data-customer-effective-theme="sunset"] .hero::before {
  inset: 72px auto auto 10%;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  background: radial-gradient(circle, rgba(255, 196, 128, 0.24), rgba(255, 226, 188, 0.11) 48%, transparent 72%);
  filter: blur(2px);
}

html.ul-public-home[data-customer-effective-theme="sunset"] .hero::after {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 250, 245, 0.58) 100%);
}

html.ul-public-home[data-customer-effective-theme="sunset"] .hero-eyebrow,
html.ul-public-home[data-customer-effective-theme="sunset"] .hero-h1,
html.ul-public-home[data-customer-effective-theme="sunset"] .hero-sub,
html.ul-public-home[data-customer-effective-theme="sunset"] .trust-tag {
  color: #28231e;
}

html.ul-public-home[data-customer-effective-theme="sunset"] .hero-sub,
html.ul-public-home[data-customer-effective-theme="sunset"] .trust-tag {
  color: rgba(40, 35, 30, 0.72);
}

html.ul-public-home[data-customer-effective-theme="sunset"] .trust-tag,
html.ul-public-home[data-customer-effective-theme="sunset"] .hero-float {
  border-color: rgba(var(--cd-accent-rgb, 15, 118, 110), 0.14);
  background: rgba(255, 255, 255, 0.66);
  color: rgba(31, 41, 55, 0.82);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

html.ul-public-home[data-customer-effective-theme="sunset"] .hero-float small {
  color: rgba(40, 35, 30, 0.56);
}

html.ul-public-home[data-customer-effective-theme="night"] .hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.38) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.34) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 64%, rgba(255, 255, 255, 0.28) 0 1px, transparent 2px),
    radial-gradient(820px 420px at 18% 16%, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.17), transparent 62%),
    radial-gradient(680px 420px at 86% 28%, rgba(96, 165, 250, 0.12), transparent 60%),
    linear-gradient(135deg, #07101f 0%, #0d1b34 48%, #020617 100%) !important;
  background-size: auto, 360px 280px, 420px 320px, 520px 360px, auto, auto, auto;
}

html.ul-public-home[data-customer-effective-theme="night"] .hero::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.8px),
    radial-gradient(circle at 54% 20%, rgba(255, 255, 255, 0.32) 0 1px, transparent 1.7px),
    radial-gradient(circle at 76% 48%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1.8px),
    radial-gradient(circle at 36% 72%, rgba(255, 255, 255, 0.26) 0 1px, transparent 1.7px);
  background-size: 300px 220px, 420px 300px, 520px 360px, 480px 340px;
  filter: none;
  opacity: 0.62;
}

html.ul-public-home[data-customer-effective-theme="night"] .hero::after {
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.64));
}

html.ul-public-home[data-customer-effective-theme="night"] .hero-eyebrow,
html.ul-public-home[data-customer-effective-theme="night"] .hero-h1 {
  color: rgba(248, 250, 252, 0.96);
}

html.ul-public-home[data-customer-effective-theme="night"] .hero-sub,
html.ul-public-home[data-customer-effective-theme="night"] .trust-tag {
  color: rgba(226, 232, 240, 0.78);
}

html.ul-public-home .landing-sky-shooting {
  display: none;
}

html.ul-public-home[data-customer-effective-theme="night"] .landing-sky-shooting {
  position: absolute;
  z-index: 1;
  top: 18%;
  left: 64%;
  display: block;
  width: 180px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
  pointer-events: none;
  transform: rotate(-24deg) translateX(-40vw);
  opacity: 0;
  animation: landingShootingStar 9s ease-in-out infinite;
}

@keyframes landingShootingStar {
  0%, 64%, 100% {
    opacity: 0;
    transform: rotate(-24deg) translateX(-42vw);
  }
  68% {
    opacity: 0.8;
  }
  76% {
    opacity: 0;
    transform: rotate(-24deg) translateX(18vw);
  }
}

html.ul-public-home[data-customer-effective-theme] .hero-h1::after {
  background: linear-gradient(90deg, var(--cd-accent-500, #26c464), rgba(var(--cd-accent-rgb, 15, 118, 110), 0.12));
}

html.ul-public-home[data-customer-effective-theme] .hero-route-line {
  stroke: rgba(var(--cd-accent-rgb, 15, 118, 110), 0.56);
}

html.ul-public-home[data-customer-effective-theme] .hero-route-point,
html.ul-public-home[data-customer-effective-theme] .hero-float-dot,
html.ul-public-home[data-customer-effective-theme] .request-live-row i {
  background: var(--cd-accent-500, #26c464);
  fill: var(--cd-accent-500, #26c464);
  box-shadow: 0 0 0 6px rgba(var(--cd-accent-rgb, 15, 118, 110), 0.16);
}

@media (prefers-reduced-motion: reduce) {
  html.ul-public-home[data-customer-effective-theme="night"] .landing-sky-shooting {
    animation: none !important;
    opacity: 0;
  }
}

html.ul-public-home .availability-preview {
  margin-top: 14px;
}

html.ul-public-home .availability-empty,
html.ul-public-home .availability-checking,
html.ul-public-home .availability-unavailable,
html.ul-public-home .availability-result {
  border: 1px solid #e5dccf;
  border-radius: 16px;
  background: #fffdf8;
  color: #12231d;
  padding: 14px;
}

html.ul-public-home .availability-checking {
  display: flex;
  align-items: center;
  gap: 12px;
}

html.ul-public-home .availability-empty strong,
html.ul-public-home .availability-checking strong,
html.ul-public-home .availability-unavailable strong,
html.ul-public-home .availability-result strong {
  display: block;
  font-size: 0.9rem;
}

html.ul-public-home .availability-empty p,
html.ul-public-home .availability-checking p,
html.ul-public-home .availability-unavailable p,
html.ul-public-home .availability-result p,
html.ul-public-home .availability-result small {
  margin-top: 4px;
  color: #5f6f68;
  font-size: 0.78rem;
  line-height: 1.45;
}

html.ul-public-home .availability-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(31, 111, 82, 0.16);
  border-top-color: #1f6f52;
  border-radius: 999px;
  animation: ulAvailabilitySpin 0.8s linear infinite;
}

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

html.ul-public-home .availability-result-head {
  display: grid;
  gap: 6px;
}

html.ul-public-home .status-badge.available {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(31, 111, 82, 0.1);
  color: #1f6f52;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html.ul-public-home .availability-next {
  margin: 12px 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f7f1e7;
}

html.ul-public-home .availability-next span {
  display: block;
  margin-bottom: 2px;
  color: #5f6f68;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html.ul-public-home .availability-continue,
html.ul-public-home .availability-actions a,
html.ul-public-home .availability-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  border: 0;
  background: #1f6f52;
  color: #fffaf2;
  padding: 0 16px;
  font-weight: 850;
  text-decoration: none;
}

html.ul-public-home .availability-continue {
  width: 100%;
}

html.ul-public-home .availability-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

html.ul-public-home .availability-actions button {
  border: 1px solid #e5dccf;
  background: #fffaf2;
  color: #1f6f52;
}

html.ul-public-home .hiw .wrap > .rv:first-child {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

html.ul-public-home .hiw .t-body {
  max-width: 560px;
  margin: 12px auto 0;
}

html.ul-public-home .steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

html.ul-public-home .step-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 28px;
}

html.ul-public-home .step-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(142, 232, 137, 0.22);
  border-radius: 999px;
  background: rgba(142, 232, 137, 0.12);
  color: #8ee889;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

html.ul-public-home .step-num {
  display: none;
}

html.ul-public-home .step-ico {
  flex: 0 0 auto;
}

html.ul-public-home .step-card h3,
html.ul-public-home .step-card p {
  text-align: left;
}

html.ul-public-home .stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

html.ul-public-home .stat-num {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: 0;
}

html.ul-public-home .stat-lbl {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

html.ul-public-home .svc-row:focus-visible,
html.ul-public-home .btn-go:focus-visible,
html.ul-public-home .btn-vivid:focus-visible,
html.ul-public-home .btn-wh:focus-visible,
html.ul-public-home .btn-ol:focus-visible,
html.ul-public-home .availability-continue:focus-visible {
  outline: 3px solid rgba(142, 232, 137, 0.7);
  outline-offset: 3px;
}

html.ul-public-home .signin-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000 !important;
  display: grid !important;
  place-items: center !important;
  padding: 24px !important;
  background: rgba(7, 26, 20, 0.72) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  overflow-y: auto !important;
}

html.ul-public-home .signin-sheet {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1010 !important;
  display: grid !important;
  place-items: center !important;
  padding: 24px !important;
  overflow-y: auto !important;
  pointer-events: none !important;
}

html.ul-public-home .signin-overlay[hidden],
html.ul-public-home .signin-sheet[hidden] {
  display: none !important;
}

html.ul-public-home .signin-sheet-card {
  position: relative !important;
  width: min(100%, 480px) !important;
  max-width: 480px !important;
  max-height: calc(100dvh - 48px) !important;
  overflow-y: auto !important;
  margin: 0 auto !important;
  border-radius: 28px !important;
  background: #fffaf2 !important;
  border: 1px solid #e5dccf !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28) !important;
  transform: none !important;
  pointer-events: auto !important;
}

@media (max-width: 900px) {
  html.ul-public-home .hero-grid,
  html.ul-public-home .prov-grid,
  html.ul-public-home .steps-grid,
  html.ul-public-home .safety-grid {
    grid-template-columns: 1fr;
  }

  html.ul-public-home .req-card {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  html.ul-public-home .page-container,
  html.ul-public-home .hero-grid,
  html.ul-public-home .nav-row,
  html.ul-public-home .wrap,
  html.ul-public-home .stats-grid,
  html.ul-public-home .cta-inner,
  html.ul-public-home .foot-grid,
  html.ul-public-home .foot-btm {
    width: min(100% - 32px, 100%);
  }

  html.ul-public-home .hero {
    padding-top: 86px;
  }

  html.ul-public-home .svc-tabs,
  html.ul-public-home .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html.ul-public-home .stat-cell {
    padding: 28px 14px;
  }

  html.ul-public-home .cta-band {
    margin-inline: 16px;
  }

  html.ul-public-home .signin-sheet {
    padding: 16px !important;
  }

  html.ul-public-home .signin-sheet-card {
    max-height: calc(100dvh - 32px) !important;
    border-radius: 24px !important;
    padding: 22px !important;
  }
}

/* Root-cause landing layout fixes. These intentionally override older public-home
   generations above that still define flex nav rows and transformed auth sheets. */
html.ul-public-home {
  scroll-behavior: smooth;
}

html.ul-public-home,
html.ul-public-home body {
  overflow-x: clip;
}

html.ul-public-home #how-it-works,
html.ul-public-home #services,
html.ul-public-home #for-providers,
html.ul-public-home #safety,
html.ul-public-home #request,
html.ul-public-home .hero {
  scroll-margin-top: 96px;
}

html.ul-public-home .page-container,
html.ul-public-home .hero-grid,
html.ul-public-home .wrap,
html.ul-public-home .stats-grid,
html.ul-public-home .cta-inner,
html.ul-public-home .foot-grid,
html.ul-public-home .foot-btm {
  width: min(100% - 48px, 1200px);
  max-width: 1200px;
  margin-inline: auto;
}

html.ul-public-home .site-header-inner,
html.ul-public-home .nav-row.site-header-inner {
  width: min(100% - 48px, 1280px);
  max-width: 1280px;
  height: 64px;
  margin-inline: auto;
  padding-inline: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

html.ul-public-home .brand,
html.ul-public-home .nav-logo.brand {
  justify-self: start;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  min-width: 0;
}

html.ul-public-home .brand-dot,
html.ul-public-home .nav-logo .brand-dot {
  width: auto;
  height: auto;
  margin-left: 0.04em;
  border-radius: 0;
  background: transparent;
  color: var(--brand-period-color, #00d664);
  font: inherit;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  align-self: baseline;
  transform: translateY(0.045em);
  text-shadow: 0 0 0.55em var(--brand-period-glow, rgba(0, 214, 100, 0.32));
  flex: 0 0 auto;
}

html.ul-public-home .nav-logo .brand-dot::before {
  content: ".";
}

html.ul-public-home .nav-logo .brand-dot::after {
  content: none;
}

html.ul-public-home .primary-nav,
html.ul-public-home .nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 36px;
}

html.ul-public-home .header-actions,
html.ul-public-home .nav-actions.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 0;
}

html.ul-public-home .sign-in-nav-button {
  width: auto;
  min-width: 88px;
  height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(248, 244, 234, 0.28);
  background: rgba(255, 250, 242, 0.08);
  color: #f8f4ea;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex: 0 0 auto;
}

html.ul-public-home .signin-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000 !important;
  display: grid !important;
  place-items: center !important;
  padding: 24px !important;
  background: rgba(7, 26, 20, 0.72) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  transform: none !important;
}

html.ul-public-home .signin-sheet {
  position: fixed !important;
  inset: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  z-index: 1010 !important;
  display: grid !important;
  place-items: center !important;
  padding: 24px !important;
  background: transparent !important;
  border-radius: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  pointer-events: none !important;
  transform: none !important;
  translate: none !important;
  animation: none !important;
}

html.ul-public-home .signin-sheet-card {
  position: relative !important;
  width: min(100%, 480px) !important;
  max-width: 480px !important;
  max-height: calc(100dvh - 48px) !important;
  overflow-y: auto !important;
  margin: 0 auto !important;
  padding: 28px !important;
  border-radius: 28px !important;
  background: #fffaf2 !important;
  border: 1px solid #e5dccf !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28) !important;
  transform: none !important;
  pointer-events: auto !important;
}

html.ul-public-home .public-role-grid {
  margin: 20px 0 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

html.ul-public-home .public-role-btn {
  min-height: 96px;
  padding: 16px;
  border-radius: 18px;
}

html.ul-public-home .step-card {
  overflow: visible;
}

html.ul-public-home .step-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(142, 232, 137, 0.12);
  border: 1px solid rgba(142, 232, 137, 0.22);
  color: #8ee889;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

html.ul-public-home .cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

html.ul-public-home .cta-btns > * {
  min-width: min(100%, 148px);
}

@media (max-width: 1020px) {
  html.ul-public-home .site-header-inner,
  html.ul-public-home .nav-row.site-header-inner {
    grid-template-columns: auto 1fr;
  }

  html.ul-public-home .nav-links {
    display: none;
  }

  html.ul-public-home .sign-in-nav-button {
    display: none;
  }

  html.ul-public-home .mobile-menu-toggle {
    justify-self: end;
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  html.ul-public-home .page-container,
  html.ul-public-home .hero-grid,
  html.ul-public-home .wrap,
  html.ul-public-home .stats-grid,
  html.ul-public-home .cta-inner,
  html.ul-public-home .foot-grid,
  html.ul-public-home .foot-btm,
  html.ul-public-home .site-header-inner,
  html.ul-public-home .nav-row.site-header-inner {
    width: min(100% - 32px, 100%);
  }

  html.ul-public-home .signin-sheet,
  html.ul-public-home .signin-overlay {
    padding: 16px !important;
  }

  html.ul-public-home .signin-sheet-card {
    max-height: calc(100dvh - 32px) !important;
    padding: 22px !important;
    border-radius: 24px !important;
  }

  html.ul-public-home .public-role-grid {
    grid-template-columns: 1fr;
  }

  html.ul-public-home .cta-btns {
    justify-content: stretch;
  }

  html.ul-public-home .cta-btns > * {
    width: 100%;
  }
}

/* Public landing/auth neutral surfaces. Keep the dark hero treatment, but align
   light cards and form controls with the customer dashboard's clean white scale. */
html.ul-public-home .req-card {
  background: var(--landing-clean-surface) !important;
  color: var(--landing-clean-text) !important;
  border: 1px solid var(--landing-clean-border) !important;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42), 0 1px 0 rgba(255, 255, 255, 0.9) inset !important;
}

html.ul-public-home .card-lbl,
html.ul-public-home .card-note {
  color: var(--landing-clean-muted) !important;
}

html.ul-public-home .svc-tab {
  background: var(--landing-clean-surface-muted) !important;
  border-color: transparent !important;
  color: var(--landing-clean-muted) !important;
}

html.ul-public-home .svc-tab:hover {
  background: color-mix(in srgb, var(--landing-primary) 8%, var(--landing-clean-surface)) !important;
  border-color: color-mix(in srgb, var(--landing-primary) 22%, var(--landing-clean-border)) !important;
  color: var(--landing-primary) !important;
}

html.ul-public-home .svc-tab.on {
  background: color-mix(in srgb, var(--landing-primary) 10%, var(--landing-clean-surface)) !important;
  border-color: var(--landing-primary) !important;
  color: var(--landing-primary) !important;
}

html.ul-public-home .loc-wrap,
html.ul-public-home .availability-empty,
html.ul-public-home .availability-checking,
html.ul-public-home .availability-unavailable,
html.ul-public-home .availability-result {
  border-color: var(--landing-clean-border) !important;
  background: var(--landing-clean-surface) !important;
  color: var(--landing-clean-text) !important;
}

html.ul-public-home .loc-wrap:focus-within {
  border-color: var(--landing-primary) !important;
  box-shadow: 0 0 0 4px rgba(31, 111, 82, 0.12) !important;
}

html.ul-public-home .loc-wrap input {
  color: var(--landing-clean-text) !important;
}

html.ul-public-home .loc-wrap input::placeholder {
  color: var(--landing-clean-placeholder) !important;
}

html.ul-public-home .availability-empty p,
html.ul-public-home .availability-checking p,
html.ul-public-home .availability-unavailable p,
html.ul-public-home .availability-result p,
html.ul-public-home .availability-result small {
  color: var(--landing-clean-muted) !important;
}

html.ul-public-home .availability-next {
  background: var(--landing-clean-surface-muted) !important;
  border: 1px solid var(--landing-clean-border) !important;
}

html.ul-public-home .availability-next span {
  color: var(--landing-clean-muted) !important;
}

html.ul-public-home .availability-actions button {
  border-color: var(--landing-clean-border) !important;
  background: var(--landing-clean-surface) !important;
}

html.ul-public-home .signin-sheet-card {
  background: var(--landing-clean-surface) !important;
  border-color: var(--landing-clean-border) !important;
  color: var(--landing-clean-text) !important;
}

html.ul-public-home .signin-sheet .sheet-close {
  border-color: var(--landing-clean-border) !important;
  background: var(--landing-clean-surface-muted) !important;
  color: var(--landing-clean-muted) !important;
}

html.ul-public-home .signin-sheet .sheet-close:hover,
html.ul-public-home .signin-sheet .sheet-close:focus-visible {
  border-color: var(--landing-clean-border-strong) !important;
  background: var(--landing-clean-surface-subtle) !important;
  color: var(--landing-clean-text) !important;
  outline: none !important;
}

html.ul-public-home .signin-sheet .sheet-title,
html.ul-public-home .signin-sheet .sheet-field label {
  color: var(--landing-clean-text) !important;
}

html.ul-public-home .signin-sheet .sheet-sub,
html.ul-public-home .signin-sheet .sheet-divider,
html.ul-public-home .signin-sheet .ul-feedback,
html.ul-public-home .signin-sheet .sheet-footer-links p {
  color: var(--landing-clean-muted) !important;
}

html.ul-public-home .signin-sheet .sheet-divider::before,
html.ul-public-home .signin-sheet .sheet-divider::after {
  background: var(--landing-clean-border) !important;
}

html.ul-public-home .signin-sheet .sheet-google,
html.ul-public-home .public-role-btn,
html.ul-public-home .auth-input {
  border-color: var(--landing-clean-border) !important;
  background: var(--landing-clean-surface) !important;
  color: var(--landing-clean-text) !important;
}

html.ul-public-home .signin-sheet .sheet-google:hover,
html.ul-public-home .signin-sheet .sheet-google:focus-visible,
html.ul-public-home .public-role-btn:hover,
html.ul-public-home .public-role-btn:focus-visible {
  border-color: color-mix(in srgb, var(--landing-primary) 28%, var(--landing-clean-border)) !important;
  background: color-mix(in srgb, var(--landing-primary) 5%, var(--landing-clean-surface)) !important;
  box-shadow: 0 0 0 4px rgba(31, 111, 82, 0.08), 0 12px 28px rgba(15, 23, 42, 0.08) !important;
  outline: none !important;
}

html.ul-public-home .public-role-btn[aria-pressed="true"] {
  border-color: color-mix(in srgb, var(--landing-primary) 34%, var(--landing-clean-border)) !important;
  background: color-mix(in srgb, var(--landing-primary) 7%, var(--landing-clean-surface)) !important;
  box-shadow: 0 0 0 1px rgba(31, 111, 82, 0.08), 0 16px 34px rgba(15, 23, 42, 0.08) !important;
}

html.ul-public-home .ul-role-icon,
html.ul-public-home .ul-role-icon-provider {
  border-color: var(--landing-clean-border) !important;
  background: var(--landing-clean-surface-muted) !important;
}

html.ul-public-home .ul-role-label {
  color: var(--landing-clean-text) !important;
}

html.ul-public-home .ul-role-copy {
  color: var(--landing-clean-muted) !important;
}

html.ul-public-home .auth-input::placeholder {
  color: var(--landing-clean-placeholder) !important;
}

html.ul-public-home .auth-input:focus {
  background: var(--landing-clean-surface) !important;
  border-color: var(--landing-primary) !important;
  box-shadow: 0 0 0 4px rgba(31, 111, 82, 0.14) !important;
}

/* Conversion-focused public landing refinements. Scoped to /login.html only. */
html.ul-public-home .hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(740px 380px at 17% 18%, rgba(38, 196, 100, 0.17), transparent 62%),
    radial-gradient(680px 420px at 86% 28%, rgba(20, 184, 166, 0.13), transparent 60%),
    linear-gradient(135deg, #071a14 0%, #0b2217 44%, #050b08 100%) !important;
}

html.ul-public-home .hero::before,
html.ul-public-home .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

html.ul-public-home .hero::before {
  inset: 92px 8% auto auto;
  width: min(44vw, 560px);
  height: 560px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(38, 196, 100, 0.14), transparent 66%);
  filter: blur(3px);
}

html.ul-public-home .hero::after {
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 11, 8, 0.56));
}

html.ul-public-home .hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px) !important;
  gap: clamp(36px, 6vw, 78px) !important;
  align-items: center;
}

html.ul-public-home .hero-copy {
  max-width: 680px;
}

html.ul-public-home .hero-h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(3.4rem, 8.8vw, 6.25rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

html.ul-public-home .hero-h1::after {
  content: "";
  display: block;
  width: min(260px, 48vw);
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #26c464, rgba(142, 232, 137, 0.1));
  transform-origin: left;
  animation: drawline .9s .35s cubic-bezier(.22,1,.36,1) both;
}

html.ul-public-home .hero-sub {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

html.ul-public-home .trust-row {
  max-width: 620px;
}

html.ul-public-home .trust-tag {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

html.ul-public-home .hero-preview {
  position: relative;
  width: min(100%, 540px);
  min-height: 580px;
  justify-self: end;
  display: grid;
  align-items: center;
}

html.ul-public-home .hero-route {
  position: absolute;
  inset: -20px -28px auto auto;
  width: min(108%, 560px);
  height: auto;
  opacity: 0.72;
  filter: drop-shadow(0 20px 36px rgba(38, 196, 100, 0.12));
  pointer-events: none;
}

html.ul-public-home .hero-route-line {
  stroke: rgba(142, 232, 137, 0.56);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 0.04 0.035;
  animation: heroRouteFlow 8s linear infinite;
}

html.ul-public-home .hero-route-point {
  fill: #26c464;
  filter: drop-shadow(0 0 14px rgba(38, 196, 100, 0.72));
}

html.ul-public-home .hero-route-point-b {
  fill: #8ee889;
  animation: heroPointPulse 2.4s ease-in-out infinite;
}

html.ul-public-home .hero-float {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 164px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(7, 26, 20, 0.62);
  color: rgba(255, 255, 255, 0.9);
  padding: 11px 13px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: heroFloatDrift 6s ease-in-out infinite;
}

html.ul-public-home .hero-float strong,
html.ul-public-home .hero-float small {
  display: block;
}

html.ul-public-home .hero-float strong {
  font-size: 0.82rem;
  line-height: 1.15;
}

html.ul-public-home .hero-float small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

html.ul-public-home .hero-float-provider {
  top: 32px;
  left: -14px;
}

html.ul-public-home .hero-float-eta {
  top: 116px;
  right: -22px;
  animation-delay: -1.2s;
}

html.ul-public-home .hero-float-pay {
  right: 8px;
  bottom: 42px;
  animation-delay: -2.3s;
}

html.ul-public-home .hero-float-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #26c464;
  box-shadow: 0 0 0 6px rgba(38, 196, 100, 0.16);
  flex: 0 0 auto;
}

html.ul-public-home .req-card {
  position: relative;
  z-index: 2;
  justify-self: center !important;
  width: min(100%, 500px) !important;
  padding: 24px !important;
  border-radius: 28px !important;
}

html.ul-public-home .request-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}

html.ul-public-home .request-card-head strong {
  display: block;
  margin-top: 3px;
  color: var(--landing-clean-text);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.32rem;
  line-height: 1.1;
}

html.ul-public-home .request-live-row span,
html.ul-public-home .request-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  white-space: nowrap;
}

html.ul-public-home .request-live-row i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #26c464;
  box-shadow: 0 0 0 4px rgba(38, 196, 100, 0.12);
}

html.ul-public-home .request-live-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

html.ul-public-home .request-live-row span {
  min-height: 30px;
  border: 1px solid var(--landing-clean-border);
  background: var(--landing-clean-surface-muted);
  color: var(--landing-clean-muted);
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
}

html.ul-public-home .svc-tabs {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 7px !important;
}

html.ul-public-home .svc-tab {
  min-height: 76px;
  border-radius: 16px !important;
}

html.ul-public-home .request-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

html.ul-public-home .request-benefits span {
  border: 1px solid var(--landing-clean-border);
  background: var(--landing-clean-surface-muted);
  color: var(--landing-clean-muted);
  padding: 6px 9px;
  font-size: 0.7rem;
  font-weight: 800;
}

html.ul-public-home .stats-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

html.ul-public-home .ticker {
  position: relative;
}

html.ul-public-home .ticker::after,
html.ul-public-home .ticker::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 120px;
  pointer-events: none;
}

html.ul-public-home .ticker::before {
  left: 0;
  background: linear-gradient(90deg, #0b2217, transparent);
}

html.ul-public-home .ticker::after {
  right: 0;
  background: linear-gradient(270deg, #0b2217, transparent);
}

html.ul-public-home .tick-label {
  color: rgba(142, 232, 137, 0.82) !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

html.ul-public-home .svc-list {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px !important;
}

html.ul-public-home .svc-row {
  --svc-card-accent: #26c464;
  display: grid !important;
  grid-template-columns: 1fr !important;
  min-height: 100%;
  align-items: start !important;
  gap: 16px !important;
  padding: 24px !important;
  border-radius: 24px !important;
  background:
    radial-gradient(180px 120px at 18% 0%, color-mix(in srgb, var(--svc-card-accent) 18%, transparent), transparent 70%),
    #181818 !important;
  transition: border-color .25s ease, transform .25s ease, background .25s ease, box-shadow .25s ease !important;
}

html.ul-public-home .svc-row:nth-child(2) { --svc-card-accent: #38bdf8; }
html.ul-public-home .svc-row:nth-child(3) { --svc-card-accent: #f59e0b; }
html.ul-public-home .svc-row:nth-child(4) { --svc-card-accent: #a78bfa; }
html.ul-public-home .svc-row:nth-child(5) { --svc-card-accent: #26c464; }

html.ul-public-home .svc-row:hover,
html.ul-public-home .svc-row:focus-visible {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--svc-card-accent) 42%, rgba(255, 255, 255, 0.14)) !important;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

html.ul-public-home .svc-ico,
html.ul-public-home .arr {
  border-color: color-mix(in srgb, var(--svc-card-accent) 28%, rgba(255, 255, 255, 0.12)) !important;
  background: color-mix(in srgb, var(--svc-card-accent) 12%, rgba(255, 255, 255, 0.04)) !important;
  color: var(--svc-card-accent) !important;
}

html.ul-public-home .svc-tag {
  border-color: color-mix(in srgb, var(--svc-card-accent) 30%, rgba(255, 255, 255, 0.16)) !important;
  background: color-mix(in srgb, var(--svc-card-accent) 12%, transparent) !important;
  color: color-mix(in srgb, var(--svc-card-accent) 76%, white) !important;
}

html.ul-public-home .svc-right {
  width: 100%;
  margin-top: auto;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
}

html.ul-public-home .feed-card {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

@keyframes heroRouteFlow {
  to { stroke-dashoffset: -1; }
}

@keyframes heroPointPulse {
  0%, 100% { transform: scale(1); opacity: 0.78; }
  50% { transform: scale(1.55); opacity: 1; }
}

@keyframes heroFloatDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1100px) {
  html.ul-public-home .svc-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  html.ul-public-home .hero-grid {
    grid-template-columns: 1fr !important;
  }

  html.ul-public-home .hero-preview {
    justify-self: center;
    min-height: 520px;
  }

  html.ul-public-home .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  html.ul-public-home .svc-list {
    grid-template-columns: 1fr;
  }

  html.ul-public-home .svc-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html.ul-public-home .hero-preview {
    min-height: auto;
    display: block;
  }

  html.ul-public-home .hero-route,
  html.ul-public-home .hero-float {
    display: none;
  }
}

@media (max-width: 520px) {
  html.ul-public-home .stats-grid {
    grid-template-columns: 1fr !important;
  }

  html.ul-public-home .request-card-head {
    display: grid;
  }

}

@media (prefers-reduced-motion: reduce) {
  html.ul-public-home .hero-route-line,
  html.ul-public-home .hero-route-point,
  html.ul-public-home .hero-float,
  html.ul-public-home .hero-h1::after,
  html.ul-public-home .ticker-inner {
    animation: none !important;
  }
}

/* Full-page public landing mode tokens. This block intentionally sits last so
   older landing generations above cannot leave lower sections stuck in Night. */
html.ul-public-home {
  --lp-accent: var(--cd-accent-600, #1f6f52);
  --lp-accent-strong: var(--cd-accent-700, #16543f);
  --lp-accent-soft: var(--cd-accent-soft, rgba(31, 111, 82, 0.1));
  --lp-accent-border: var(--cd-accent-border, rgba(31, 111, 82, 0.2));
  --lp-focus: var(--cd-accent-border, rgba(31, 111, 82, 0.18));
  --lp-bg: #020617;
  --lp-bg-2: #07101f;
  --lp-bg-gradient:
    radial-gradient(820px 440px at 16% 8%, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.16), transparent 64%),
    linear-gradient(180deg, #07101f 0%, #020617 52%, #07101f 100%);
  --lp-section: #07101f;
  --lp-section-alt: #0b1426;
  --lp-band: #0f1a2d;
  --lp-card: rgba(15, 23, 42, 0.9);
  --lp-card-2: rgba(30, 41, 59, 0.72);
  --lp-card-muted: rgba(51, 65, 85, 0.5);
  --lp-text: #f8fafc;
  --lp-text-soft: #e2e8f0;
  --lp-muted: #a6b3c4;
  --lp-faint: #738197;
  --lp-border: rgba(148, 163, 184, 0.2);
  --lp-border-soft: rgba(148, 163, 184, 0.12);
  --lp-shadow: rgba(2, 6, 23, 0.42);
  --lp-nav-bg: rgba(7, 16, 31, 0.78);
  --lp-nav-bg-scrolled: rgba(7, 16, 31, 0.92);
  --lp-nav-text: rgba(248, 250, 252, 0.86);
  --lp-nav-muted: rgba(226, 232, 240, 0.68);
  --lp-modal-overlay: rgba(2, 6, 23, 0.66);
  --lp-cta-text: #ffffff;
}

html.ul-public-home[data-customer-effective-theme="day"] {
  --lp-bg: #f8fafc;
  --lp-bg-2: #eef7ff;
  --lp-bg-gradient:
    radial-gradient(760px 380px at 12% 0%, rgba(255, 222, 128, 0.24), transparent 66%),
    radial-gradient(720px 420px at 86% 8%, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.12), transparent 66%),
    linear-gradient(180deg, #f8fbff 0%, #f8fafc 50%, #eef5f1 100%);
  --lp-section: #f8fafc;
  --lp-section-alt: #eef5f9;
  --lp-band: #edf4f2;
  --lp-card: #ffffff;
  --lp-card-2: #f8fafc;
  --lp-card-muted: #f1f5f9;
  --lp-text: #0f172a;
  --lp-text-soft: #1f2937;
  --lp-muted: #526174;
  --lp-faint: #7a8798;
  --lp-border: #e2e8f0;
  --lp-border-soft: rgba(15, 23, 42, 0.08);
  --lp-shadow: rgba(15, 23, 42, 0.1);
  --lp-nav-bg: rgba(255, 255, 255, 0.68);
  --lp-nav-bg-scrolled: rgba(255, 255, 255, 0.9);
  --lp-nav-text: #0f172a;
  --lp-nav-muted: rgba(15, 23, 42, 0.68);
  --lp-modal-overlay: rgba(15, 23, 42, 0.42);
}

html.ul-public-home[data-customer-effective-theme="sunset"] {
  --lp-bg: #fffaf7;
  --lp-bg-2: #fff8f3;
  --lp-bg-gradient:
    radial-gradient(900px 420px at 6% -10%, rgba(251, 146, 60, 0.12), transparent 64%),
    radial-gradient(760px 360px at 98% 2%, rgba(249, 115, 22, 0.055), transparent 62%),
    linear-gradient(180deg, #fffdfb 0%, #fff8f3 100%);
  --lp-section: #fffaf7;
  --lp-section-alt: #fff8f3;
  --lp-band: #fff2e8;
  --lp-card: #fffdfb;
  --lp-card-2: #fff9f5;
  --lp-card-muted: #fff2e8;
  --lp-text: #1f2937;
  --lp-text-soft: #374151;
  --lp-muted: #6b7280;
  --lp-faint: #9ca3af;
  --lp-border: var(--cd-accent-border);
  --lp-border-soft: rgba(var(--cd-accent-rgb, 15, 118, 110), 0.14);
  --lp-shadow: rgba(15, 23, 42, 0.05);
  --lp-nav-bg: rgba(255, 253, 251, 0.72);
  --lp-nav-bg-scrolled: rgba(255, 255, 255, 0.92);
  --lp-nav-text: #1f2937;
  --lp-nav-muted: rgba(31, 41, 55, 0.66);
  --lp-modal-overlay: rgba(31, 41, 55, 0.22);
}

html.ul-public-home[data-customer-effective-theme="night"] {
  --lp-bg-gradient:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 16%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    radial-gradient(820px 440px at 16% 8%, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.16), transparent 64%),
    linear-gradient(180deg, #07101f 0%, #020617 52%, #07101f 100%);
  background-size: 360px 280px, 520px 360px, auto, auto;
}

html.ul-public-home,
html.ul-public-home body {
  background: var(--lp-bg-gradient) !important;
  color: var(--lp-text) !important;
}

html.ul-public-home .home-nav,
html.ul-public-home nav {
  background: var(--lp-nav-bg) !important;
  border-bottom-color: var(--lp-border-soft) !important;
  color: var(--lp-nav-text) !important;
}

html.ul-public-home .home-nav.is-scrolled {
  background: var(--lp-nav-bg-scrolled) !important;
  border-bottom-color: var(--lp-border) !important;
}

html.ul-public-home .nav-logo,
html.ul-public-home .brand,
html.ul-public-home .nav-logo.brand,
html.ul-public-home .nav-name {
  color: var(--lp-nav-text) !important;
}

html.ul-public-home .tick-dot,
html.ul-public-home .live-dot,
html.ul-public-home .live-pill i,
html.ul-public-home .hero-eyebrow i,
html.ul-public-home .online-dot i,
html.ul-public-home .pulse-dot,
html.ul-public-home .map-ping,
html.ul-public-home .eta-stat i {
  background: var(--lp-accent) !important;
}

html.ul-public-home .brand-period,
html.ul-public-home .brand-dot,
html.ul-public-home .nav-logo .brand-dot {
  background: transparent !important;
  color: var(--brand-period-color, #00d664) !important;
  text-shadow: 0 0 0.55em var(--brand-period-glow, rgba(0, 214, 100, 0.32));
}

html.ul-public-home .brand-period::before,
html.ul-public-home .brand-dot::before,
html.ul-public-home .nav-logo .brand-dot::before {
  color: var(--brand-period-color, #00d664) !important;
}

html.ul-public-home .nav-links a,
html.ul-public-home .sign-in-nav-button,
html.ul-public-home .mobile-menu-toggle {
  color: var(--lp-nav-muted) !important;
}

html.ul-public-home .nav-links a:hover,
html.ul-public-home .nav-links a:focus-visible,
html.ul-public-home .sign-in-nav-button:hover,
html.ul-public-home .sign-in-nav-button:focus-visible {
  color: var(--lp-nav-text) !important;
}

html.ul-public-home .sign-in-nav-button,
html.ul-public-home .mobile-menu-toggle {
  border-color: var(--lp-border) !important;
  background: color-mix(in srgb, var(--lp-card) 38%, transparent) !important;
}

html.ul-public-home .btn-go,
html.ul-public-home .btn-vivid,
html.ul-public-home .auth-submit-button,
html.ul-public-home .availability-continue {
  background: linear-gradient(180deg, var(--lp-accent) 0%, var(--lp-accent-strong) 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 34px rgba(var(--cd-accent-rgb, 15, 118, 110), 0.2) !important;
}

html.ul-public-home .btn-go:hover,
html.ul-public-home .btn-vivid:hover,
html.ul-public-home .auth-submit-button:hover,
html.ul-public-home .auth-submit-button:focus-visible {
  background: linear-gradient(180deg, color-mix(in srgb, var(--lp-accent) 86%, #fff) 0%, var(--lp-accent-strong) 100%) !important;
}

html.ul-public-home .mobile-menu {
  background: color-mix(in srgb, var(--lp-bg) 96%, #020617) !important;
  color: var(--lp-text) !important;
}

html.ul-public-home .mobile-menu a,
html.ul-public-home .mobile-menu-secondary,
html.ul-public-home .mobile-menu-close {
  border-color: var(--lp-border) !important;
  background: var(--lp-card-2) !important;
  color: var(--lp-text) !important;
}

html.ul-public-home .ticker,
html.ul-public-home .stats-sec,
html.ul-public-home footer {
  background: var(--lp-band) !important;
  border-color: var(--lp-border-soft) !important;
  color: var(--lp-text) !important;
}

html.ul-public-home .ticker::before {
  background: linear-gradient(90deg, var(--lp-band), transparent) !important;
}

html.ul-public-home .ticker::after {
  background: linear-gradient(270deg, var(--lp-band), transparent) !important;
}

html.ul-public-home .hiw,
html.ul-public-home .live-sec,
html.ul-public-home .safety-sec,
html.ul-public-home .sec,
html.ul-public-home .section,
html.ul-public-home .section-how,
html.ul-public-home .section-safety {
  background: var(--lp-section) !important;
  color: var(--lp-text) !important;
}

html.ul-public-home .svc-sec,
html.ul-public-home .prov-sec,
html.ul-public-home .section-services,
html.ul-public-home .section-roles,
html.ul-public-home .section-audience,
html.ul-public-home .section-status,
html.ul-public-home .trust-section,
html.ul-public-home .provider-section {
  background:
    radial-gradient(760px 380px at 86% 10%, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.08), transparent 68%),
    var(--lp-section-alt) !important;
  color: var(--lp-text) !important;
}

html.ul-public-home .section-eyebrow,
html.ul-public-home .section-eyebrow-light,
html.ul-public-home .provider-eyebrow,
html.ul-public-home .eyebrow,
html.ul-public-home .step-kicker,
html.ul-public-home .tick-label,
html.ul-public-home .live-pill,
html.ul-public-home .feed-live,
html.ul-public-home .online-dot,
html.ul-public-home .eta-stat {
  border-color: var(--lp-accent-border) !important;
  background: var(--lp-accent-soft) !important;
  color: var(--cd-accent-text, var(--lp-accent)) !important;
}

html.ul-public-home .hero-eyebrow,
html.ul-public-home .trust-tag svg,
html.ul-public-home .footer-logo-mark,
html.ul-public-home .footer-logo-mark svg {
  color: var(--lp-accent) !important;
}

html.ul-public-home .brand-wordmark {
  color: var(--lp-text) !important;
  font-family: var(--landing-display-font, "Manrope", "DM Sans", var(--es-font-sans), ui-sans-serif, system-ui, sans-serif);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

html.ul-public-home .h-lg,
html.ul-public-home .h-md,
html.ul-public-home .section-title,
html.ul-public-home .section-title-light,
html.ul-public-home .provider-title,
html.ul-public-home .photo-feature-title,
html.ul-public-home .stat-num,
html.ul-public-home .step-card h3,
html.ul-public-home .svc-row h3,
html.ul-public-home .act-title,
html.ul-public-home .ben-row h4,
html.ul-public-home .saf-card h4,
html.ul-public-home .safety-feature-title,
html.ul-public-home .role-title,
html.ul-public-home .footer-col-title,
html.ul-public-home .foot-col h5,
html.ul-public-home .eta-num {
  color: var(--lp-text) !important;
}

html.ul-public-home .t-body,
html.ul-public-home .t-sm,
html.ul-public-home .section-sub,
html.ul-public-home .section-body,
html.ul-public-home .section-body-light,
html.ul-public-home .provider-sub,
html.ul-public-home .step-card p,
html.ul-public-home .svc-row p,
html.ul-public-home .service-card-desc,
html.ul-public-home .trust-desc,
html.ul-public-home .act-loc,
html.ul-public-home .act-time,
html.ul-public-home .feed-hdr span,
html.ul-public-home .ben-row p,
html.ul-public-home .saf-card p,
html.ul-public-home .safety-feature-desc,
html.ul-public-home .role-desc,
html.ul-public-home .role-list li,
html.ul-public-home .foot-brand p,
html.ul-public-home .footer-brand p,
html.ul-public-home .footer-tagline,
html.ul-public-home .foot-col a,
html.ul-public-home .footer-links a,
html.ul-public-home .foot-btm,
html.ul-public-home .footer-bottom,
html.ul-public-home .stat-lbl,
html.ul-public-home .tick-item,
html.ul-public-home .eta-lbl {
  color: var(--lp-muted) !important;
}

html.ul-public-home .foot-col a:hover,
html.ul-public-home .footer-links a:hover {
  color: var(--lp-text) !important;
}

html.ul-public-home .step-card,
html.ul-public-home .svc-row,
html.ul-public-home .feed-card,
html.ul-public-home .ben-row,
html.ul-public-home .saf-card,
html.ul-public-home .safety-feature,
html.ul-public-home .status-card,
html.ul-public-home .role-panel,
html.ul-public-home .service-card,
html.ul-public-home .trust-item,
html.ul-public-home .map-box {
  background:
    radial-gradient(220px 150px at 18% 0%, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.08), transparent 72%),
    var(--lp-card) !important;
  border-color: var(--lp-border) !important;
  color: var(--lp-text) !important;
  box-shadow: 0 20px 52px var(--lp-shadow) !important;
}

html.ul-public-home .step-card:hover,
html.ul-public-home .svc-row:hover,
html.ul-public-home .svc-row:focus-visible,
html.ul-public-home .ben-row:hover,
html.ul-public-home .saf-card:hover,
html.ul-public-home .service-card:hover,
html.ul-public-home .trust-item:hover {
  border-color: var(--lp-accent-border) !important;
  background:
    radial-gradient(220px 150px at 18% 0%, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.12), transparent 72%),
    var(--lp-card) !important;
}

html.ul-public-home .step-card::before {
  background: linear-gradient(90deg, var(--lp-accent-strong), var(--lp-accent)) !important;
}

html.ul-public-home .step-ico,
html.ul-public-home .svc-ico,
html.ul-public-home .saf-ico,
html.ul-public-home .ben-ico,
html.ul-public-home .act-ico-box,
html.ul-public-home .arr,
html.ul-public-home .safety-check,
html.ul-public-home .trust-check,
html.ul-public-home .service-card-icon,
html.ul-public-home .sc-icon {
  border-color: var(--lp-accent-border) !important;
  background: var(--lp-accent-soft) !important;
  color: var(--lp-accent) !important;
}

html.ul-public-home .step-ico svg,
html.ul-public-home .svc-ico svg,
html.ul-public-home .saf-ico svg,
html.ul-public-home .ben-ico svg,
html.ul-public-home .act-ico-box svg {
  stroke: currentColor !important;
}

html.ul-public-home .svc-tag,
html.ul-public-home .service-card-tag,
html.ul-public-home .sc-badge,
html.ul-public-home .chip,
html.ul-public-home .request-live-row span,
html.ul-public-home .request-benefits span,
html.ul-public-home .availability-next {
  border-color: var(--lp-border) !important;
  background: var(--lp-card-2) !important;
  color: var(--lp-muted) !important;
}

html.ul-public-home .b-done {
  background: var(--lp-card-muted) !important;
  border-color: var(--lp-border) !important;
  color: var(--lp-muted) !important;
}

html.ul-public-home .feed-hdr,
html.ul-public-home .act-item,
html.ul-public-home .map-footer,
html.ul-public-home .foot-btm,
html.ul-public-home .footer-bottom,
html.ul-public-home .stat-cell {
  border-color: var(--lp-border-soft) !important;
}

html.ul-public-home .act-item:hover {
  background: color-mix(in srgb, var(--lp-card-2) 62%, transparent) !important;
}

html.ul-public-home .map-box,
html.ul-public-home .map-footer {
  background: color-mix(in srgb, var(--lp-card) 92%, var(--lp-bg)) !important;
}

html.ul-public-home .map-grid-bg {
  background-image:
    linear-gradient(rgba(var(--cd-accent-rgb, 15, 118, 110), 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.08) 1px, transparent 1px) !important;
}

html.ul-public-home .map-route {
  background: linear-gradient(90deg, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.28), var(--lp-accent)) !important;
}

html.ul-public-home .cta-band {
  background:
    radial-gradient(520px 220px at 86% 18%, rgba(255, 255, 255, 0.14), transparent 66%),
    linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent-strong) 100%) !important;
  color: var(--lp-cta-text) !important;
  box-shadow: 0 24px 60px rgba(var(--cd-accent-rgb, 15, 118, 110), 0.22) !important;
}

html.ul-public-home .cta-band h2,
html.ul-public-home .cta-band p,
html.ul-public-home .btn-ol {
  color: var(--lp-cta-text) !important;
}

html.ul-public-home .btn-wh {
  background: #ffffff !important;
  color: var(--lp-accent-strong) !important;
}

html.ul-public-home .btn-ol {
  border-color: rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

html.ul-public-home .req-card,
html.ul-public-home .signin-sheet-card,
html.ul-public-home .availability-empty,
html.ul-public-home .availability-checking,
html.ul-public-home .availability-unavailable,
html.ul-public-home .availability-result {
  background: var(--lp-card) !important;
  border-color: var(--lp-border) !important;
  color: var(--lp-text) !important;
  box-shadow: 0 28px 70px var(--lp-shadow) !important;
}

html.ul-public-home .card-lbl,
html.ul-public-home .card-note,
html.ul-public-home .availability-empty p,
html.ul-public-home .availability-checking p,
html.ul-public-home .availability-unavailable p,
html.ul-public-home .availability-result p,
html.ul-public-home .availability-result small {
  color: var(--lp-muted) !important;
}

html.ul-public-home .request-card-head strong,
html.ul-public-home .signin-sheet .sheet-title,
html.ul-public-home .signin-sheet .sheet-field label,
html.ul-public-home .ul-role-label {
  color: var(--lp-text) !important;
}

html.ul-public-home .loc-wrap,
html.ul-public-home .signin-sheet .sheet-google,
html.ul-public-home .public-role-btn,
html.ul-public-home .auth-input,
html.ul-public-home .signin-sheet .sheet-close,
html.ul-public-home .availability-actions button {
  border-color: var(--lp-border) !important;
  background: var(--lp-card-2) !important;
  color: var(--lp-text) !important;
}

html.ul-public-home .svc-tab {
  background: var(--lp-card-2) !important;
  border-color: var(--lp-border-soft) !important;
  color: var(--lp-muted) !important;
}

html.ul-public-home .svc-tab:hover,
html.ul-public-home .svc-tab.on,
html.ul-public-home .svc-tab[aria-pressed="true"],
html.ul-public-home .public-role-btn:hover,
html.ul-public-home .public-role-btn:focus-visible,
html.ul-public-home .public-role-btn[aria-pressed="true"],
html.ul-public-home .signin-sheet .sheet-google:hover,
html.ul-public-home .signin-sheet .sheet-google:focus-visible {
  border-color: var(--lp-accent-border) !important;
  background: color-mix(in srgb, var(--lp-accent) 8%, var(--lp-card)) !important;
  color: var(--lp-accent) !important;
  box-shadow: 0 0 0 4px var(--lp-focus) !important;
}

html.ul-public-home .loc-wrap:focus-within,
html.ul-public-home .auth-input:focus,
html.ul-public-home .svc-row:focus-visible,
html.ul-public-home .btn-go:focus-visible,
html.ul-public-home .btn-vivid:focus-visible,
html.ul-public-home .btn-wh:focus-visible,
html.ul-public-home .btn-ol:focus-visible,
html.ul-public-home .availability-continue:focus-visible,
html.ul-public-home .mobile-menu-toggle:focus-visible {
  border-color: var(--lp-accent) !important;
  outline: 3px solid var(--lp-focus) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 4px var(--lp-focus) !important;
}

html.ul-public-home .loc-wrap input,
html.ul-public-home .auth-input {
  color: var(--lp-text) !important;
}

html.ul-public-home .loc-wrap input::placeholder,
html.ul-public-home .auth-input::placeholder {
  color: var(--lp-faint) !important;
}

html.ul-public-home .signin-sheet .sheet-sub,
html.ul-public-home .signin-sheet .sheet-divider,
html.ul-public-home .signin-sheet .ul-feedback,
html.ul-public-home .signin-sheet .sheet-footer-links p,
html.ul-public-home .signin-sheet .sheet-footer-links a,
html.ul-public-home .ul-role-copy {
  color: var(--lp-muted) !important;
}

html.ul-public-home .signin-sheet .sheet-divider::before,
html.ul-public-home .signin-sheet .sheet-divider::after {
  background: var(--lp-border) !important;
}

html.ul-public-home .signin-overlay {
  background: var(--lp-modal-overlay) !important;
}

html.ul-public-home .signin-sheet .forgot,
html.ul-public-home .signin-sheet .password-toggle,
html.ul-public-home .signin-sheet .sheet-footer-links a:hover,
html.ul-public-home .availability-actions button {
  color: var(--lp-accent) !important;
}

/* Landing typography refinement. Keep this scoped to the public landing page so dashboards retain their own type systems. */
html.ul-public-home {
  --landing-display-font: "Manrope", "DM Sans", var(--es-font-sans), ui-sans-serif, system-ui, sans-serif;
  --landing-body-font: "DM Sans", var(--es-font-sans), ui-sans-serif, system-ui, sans-serif;
}

html.ul-public-home,
html.ul-public-home body {
  font-family: var(--landing-body-font) !important;
}

html.ul-public-home .hero-h1,
html.ul-public-home .h-xl,
html.ul-public-home .h-lg,
html.ul-public-home .h-md,
html.ul-public-home .section-title,
html.ul-public-home .section-title-light,
html.ul-public-home .provider-title,
html.ul-public-home .photo-feature-title,
html.ul-public-home .cta-band h2,
html.ul-public-home .signin-sheet .sheet-title,
html.ul-public-home .sheet-title {
  font-family: var(--landing-display-font) !important;
  font-weight: 800 !important;
  letter-spacing: -0.034em !important;
  text-wrap: balance;
}

html.ul-public-home .hero-h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7.2vw, 5.35rem) !important;
  line-height: 1.01 !important;
  letter-spacing: -0.038em !important;
}

html.ul-public-home .h-xl {
  font-size: clamp(2.35rem, 5vw, 4.25rem) !important;
  line-height: 1.05 !important;
}

html.ul-public-home .h-lg,
html.ul-public-home .section-title,
html.ul-public-home .section-title-light,
html.ul-public-home .provider-title,
html.ul-public-home .photo-feature-title,
html.ul-public-home .cta-band h2 {
  font-size: clamp(1.9rem, 4.1vw, 3.05rem) !important;
  line-height: 1.12 !important;
  font-weight: 700 !important;
  letter-spacing: -0.032em !important;
}

html.ul-public-home .h-md,
html.ul-public-home .signin-sheet .sheet-title,
html.ul-public-home .sheet-title {
  font-size: clamp(1.45rem, 2.3vw, 2rem) !important;
  line-height: 1.12 !important;
  font-weight: 700 !important;
  letter-spacing: -0.026em !important;
}

html.ul-public-home .step-card h3,
html.ul-public-home .svc-row h3,
html.ul-public-home .act-title,
html.ul-public-home .ben-row h4,
html.ul-public-home .saf-card h4,
html.ul-public-home .safety-feature-title,
html.ul-public-home .role-title,
html.ul-public-home .request-card-head strong,
html.ul-public-home .footer-col-title,
html.ul-public-home .foot-col h5,
html.ul-public-home .stat-num,
html.ul-public-home .eta-num {
  font-family: var(--landing-display-font) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

html.ul-public-home .step-card h3,
html.ul-public-home .svc-row h3,
html.ul-public-home .act-title,
html.ul-public-home .ben-row h4,
html.ul-public-home .saf-card h4,
html.ul-public-home .safety-feature-title,
html.ul-public-home .role-title,
html.ul-public-home .request-card-head strong {
  line-height: 1.16 !important;
}

html.ul-public-home .stat-num,
html.ul-public-home .eta-num {
  font-weight: 800 !important;
  letter-spacing: -0.028em !important;
}

@media (max-width: 640px) {
  html.ul-public-home .hero-h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.6rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.034em !important;
  }

  html.ul-public-home .h-lg,
  html.ul-public-home .section-title,
  html.ul-public-home .section-title-light,
  html.ul-public-home .provider-title,
  html.ul-public-home .photo-feature-title,
  html.ul-public-home .cta-band h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem) !important;
    line-height: 1.14 !important;
    letter-spacing: -0.028em !important;
  }
}

/* Auth brand polish shared by the public sign-in sheet and standalone customer/provider login pages. */
html.ul-public-home,
body.auth-login-page {
  --auth-bg: #f8fafc;
  --auth-bg-2: #eef5f1;
  --auth-surface: #ffffff;
  --auth-surface-2: #f8fafc;
  --auth-text: #0f172a;
  --auth-muted: #526174;
  --auth-border: #e2e8f0;
  --auth-border-soft: rgba(15, 23, 42, 0.08);
  --auth-glow: rgba(15, 118, 110, 0.12);
  --auth-shadow: rgba(15, 23, 42, 0.1);
}

html[data-customer-effective-theme="sunset"] body.auth-login-page,
html.ul-public-home[data-customer-effective-theme="sunset"] {
  --auth-bg: #fffaf7;
  --auth-bg-2: #fff8f3;
  --auth-surface: #fffdfb;
  --auth-surface-2: #fff9f5;
  --auth-text: #1f2937;
  --auth-muted: #6b7280;
  --auth-border: var(--cd-accent-border);
  --auth-border-soft: rgba(var(--cd-accent-rgb, 15, 118, 110), 0.14);
  --auth-glow: rgba(251, 146, 60, 0.12);
  --auth-shadow: rgba(15, 23, 42, 0.05);
}

html[data-customer-effective-theme="night"] body.auth-login-page,
html.ul-public-home[data-customer-effective-theme="night"] {
  --auth-bg: #020617;
  --auth-bg-2: #07101f;
  --auth-surface: #0f172a;
  --auth-surface-2: #111827;
  --auth-text: #f8fafc;
  --auth-muted: #cbd5e1;
  --auth-border: rgba(148, 163, 184, 0.22);
  --auth-border-soft: rgba(148, 163, 184, 0.12);
  --auth-glow: rgba(var(--cd-accent-rgb, 15, 118, 110), 0.18);
  --auth-shadow: rgba(0, 0, 0, 0.38);
}

body.auth-login-page > .min-h-screen.grid {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(820px 440px at 8% 8%, var(--auth-glow), transparent 64%),
    radial-gradient(720px 380px at 92% 14%, rgba(148, 163, 184, 0.12), transparent 64%),
    linear-gradient(180deg, var(--auth-bg), var(--auth-bg-2)) !important;
}

body.auth-login-page > .min-h-screen.grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.58), transparent 72%);
}

html[data-customer-effective-theme="night"] body.auth-login-page > .min-h-screen.grid::before {
  background-image:
    linear-gradient(rgba(226, 232, 240, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 232, 240, 0.04) 1px, transparent 1px);
}

body.auth-login-page > .min-h-screen.grid > * {
  position: relative;
  z-index: 1;
}

body.auth-login-page > .min-h-screen.grid > aside {
  background:
    radial-gradient(680px 320px at 14% 12%, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.2), transparent 64%),
    radial-gradient(620px 320px at 86% 54%, rgba(34, 197, 94, 0.12), transparent 64%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98)) !important;
}

body.auth-login-page > .min-h-screen.grid > aside > .absolute {
  opacity: 0 !important;
}

body.auth-login-page main .bg-white.rounded-2xl,
body.auth-login-page main .bg-white.rounded-\[1\.25rem\],
body.auth-login-page main #loginCard {
  overflow: hidden;
  border-radius: 1.75rem !important;
  border-color: var(--auth-border) !important;
  background: var(--auth-surface) !important;
  box-shadow: 0 24px 64px var(--auth-shadow) !important;
}

body.auth-login-page main,
body.auth-login-page main .text-slate-900,
body.auth-login-page main .text-slate-800,
body.auth-login-page main .text-slate-700,
body.auth-login-page main label {
  color: var(--auth-text) !important;
}

body.auth-login-page main .text-slate-600,
body.auth-login-page main .text-slate-500,
body.auth-login-page main .text-slate-400 {
  color: var(--auth-muted);
}

body.auth-login-page main .es-input,
body.auth-login-page main input,
body.auth-login-page main .es-btn-secondary,
body.auth-login-page main .bg-slate-50,
body.auth-login-page main .bg-white {
  border-color: var(--auth-border) !important;
  background-color: var(--auth-surface-2) !important;
}

body.auth-login-page main .es-input,
body.auth-login-page main input {
  color: var(--auth-text) !important;
}

body.auth-login-page main .es-input::placeholder,
body.auth-login-page main input::placeholder {
  color: color-mix(in srgb, var(--auth-muted) 72%, transparent) !important;
}

.auth-brand {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.auth-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.auth-brand-mark {
  display: inline-grid;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--brand-period-color, #00d664) 36%, rgba(255,255,255,0.24));
  border-radius: 1rem;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.34), transparent 36%),
    linear-gradient(135deg, #071a14, #0f766e 58%, #00d664);
  color: #ecfdf5;
  box-shadow: 0 18px 38px rgba(0, 214, 100, 0.2);
}

.auth-brand-mark svg {
  width: 1.45rem;
  height: 1.45rem;
}

.auth-brand-mark svg path {
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-brand-mark svg path:first-child {
  fill: rgba(255, 255, 255, 0.08);
}

.auth-brand-mark svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.auth-wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--auth-text, currentColor);
  font-family: var(--landing-display-font, "Manrope", "DM Sans", var(--es-font-sans), ui-sans-serif, system-ui, sans-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.82rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.auth-brand-period {
  color: var(--brand-period-color, #00d664) !important;
  text-shadow: 0 0 0.55em var(--brand-period-glow, rgba(0, 214, 100, 0.32));
}

.auth-tagline {
  margin: 0;
  color: var(--auth-text, currentColor);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.auth-role-subtitle {
  max-width: 30rem;
  margin: 0;
  color: var(--auth-muted, #64748b);
  font-size: 0.88rem;
  line-height: 1.45;
}

.auth-brand--hero {
  --auth-text: #ffffff;
  --auth-muted: rgba(255, 255, 255, 0.72);
}

.auth-brand--hero .auth-wordmark,
.auth-brand--hero .auth-tagline {
  color: #ffffff;
}

.auth-brand--hero .auth-role-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.auth-brand--mobile,
.auth-brand--card,
.auth-brand--sheet {
  padding: 1rem;
  border: 1px solid var(--auth-border-soft, rgba(15, 23, 42, 0.08));
  border-radius: 1.35rem;
  background:
    radial-gradient(260px 120px at 0% 0%, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.08), transparent 70%),
    var(--auth-surface, #ffffff);
}

.auth-brand--mobile {
  margin-bottom: 1.25rem;
  box-shadow: 0 16px 40px var(--auth-shadow, rgba(15, 23, 42, 0.08));
}

.auth-brand--card {
  margin-bottom: 1.35rem;
}

html.ul-public-home .signin-sheet-card {
  overflow: hidden;
}

html.ul-public-home .signin-sheet .auth-brand--sheet {
  margin-bottom: 1rem;
  background:
    radial-gradient(260px 120px at 0% 0%, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.08), transparent 70%),
    var(--lp-card, var(--auth-surface, #ffffff)) !important;
  border-color: var(--lp-border, var(--auth-border)) !important;
}

html.ul-public-home .signin-sheet .auth-brand--sheet .auth-wordmark,
html.ul-public-home .signin-sheet .auth-brand--sheet .auth-tagline,
html.ul-public-home .signin-sheet .auth-brand--sheet .auth-role-subtitle {
  color: inherit;
}

html.ul-public-home .signin-sheet .auth-brand--sheet .auth-wordmark,
html.ul-public-home .signin-sheet .auth-brand--sheet .auth-tagline {
  color: var(--lp-text, var(--auth-text)) !important;
}

html.ul-public-home .signin-sheet .auth-brand--sheet .auth-role-subtitle {
  color: var(--lp-muted, var(--auth-muted)) !important;
}

html.ul-public-home .signin-sheet .sheet-title {
  margin-top: 0.2rem !important;
}

@media (max-width: 640px) {
  .auth-brand--card,
  .auth-brand--sheet {
    padding: 0.9rem;
  }

  .auth-brand-mark {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.9rem;
  }

  .auth-wordmark {
    font-size: 1.42rem;
  }
}

/* 2026 customer auth usability fixes. */
.auth-signup-page .auth-signup-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  max-width: 100%;
  margin-top: 1.35rem;
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(248, 244, 234, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(248, 244, 234, 0.12), rgba(248, 244, 234, 0.06));
  color: rgba(248, 244, 234, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.auth-signup-page .auth-signup-scroll-cue svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  animation: authSignupCueNudge 1.8s ease-in-out infinite;
}

@keyframes authSignupCueNudge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-signup-page .auth-signup-scroll-cue svg {
    animation: none;
  }
}

@media (max-width: 899px) {
  .auth-signup-page .auth-signup-panel {
    position: relative;
  }

  .auth-signup-page .auth-signup-panel::after {
    content: "";
    position: absolute;
    right: 1rem;
    bottom: 0;
    left: 1rem;
    height: 3.5rem;
    border-radius: 0 0 1.45rem 1.45rem;
    background: linear-gradient(180deg, rgba(11, 36, 28, 0), rgba(11, 36, 28, 0.38));
    pointer-events: none;
  }

  .auth-signup-page .auth-signup-scroll-cue {
    position: relative;
    z-index: 1;
  }
}

.auth-signup-page .auth-signup-field input,
.auth-signup-page .auth-signup-field input[type="password"],
.auth-signup-page .auth-signup-field input[type="text"] {
  color: var(--signup-ink, #12231d) !important;
  -webkit-text-fill-color: var(--signup-ink, #12231d) !important;
  caret-color: var(--signup-brand, #1f6f52);
}

.auth-signup-page .auth-signup-field input::placeholder {
  color: color-mix(in srgb, var(--signup-muted, #5f6f68) 72%, transparent) !important;
  -webkit-text-fill-color: color-mix(in srgb, var(--signup-muted, #5f6f68) 72%, transparent) !important;
}

.auth-signup-page .auth-signup-field input:-webkit-autofill,
.auth-signup-page .auth-signup-field input:-webkit-autofill:hover,
.auth-signup-page .auth-signup-field input:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px #fffdf8 inset !important;
  -webkit-text-fill-color: var(--signup-ink, #12231d) !important;
  caret-color: var(--signup-brand, #1f6f52);
}

body.auth-login-page main .es-input,
body.auth-login-page main input,
html.ul-public-home .signin-sheet input,
.ul-card .ul-input {
  color: var(--auth-text, var(--lp-text, var(--ul-card-text, #0f172a))) !important;
  -webkit-text-fill-color: var(--auth-text, var(--lp-text, var(--ul-card-text, #0f172a))) !important;
  caret-color: var(--brand-period-color, var(--auth-accent, #0f766e));
}

body.auth-login-page main .es-input::placeholder,
body.auth-login-page main input::placeholder,
html.ul-public-home .signin-sheet input::placeholder,
.ul-card .ul-input::placeholder {
  color: color-mix(in srgb, var(--auth-muted, var(--lp-muted, #64748b)) 74%, transparent) !important;
  -webkit-text-fill-color: color-mix(in srgb, var(--auth-muted, var(--lp-muted, #64748b)) 74%, transparent) !important;
}

body.auth-login-page main .es-input:-webkit-autofill,
body.auth-login-page main input:-webkit-autofill,
html.ul-public-home .signin-sheet input:-webkit-autofill,
.ul-card .ul-input:-webkit-autofill {
  box-shadow: 0 0 0 1000px var(--auth-surface-2, var(--lp-card, #ffffff)) inset !important;
  -webkit-text-fill-color: var(--auth-text, var(--lp-text, var(--ul-card-text, #0f172a))) !important;
  caret-color: var(--brand-period-color, var(--auth-accent, #0f766e));
}

html.ul-public-home .signin-sheet .password-toggle,
html.ul-public-home .signin-sheet #ulPasswordToggle,
body.auth-login-page main .password-toggle,
body.auth-login-page main #ulPasswordToggle {
  color: var(--auth-muted, var(--lp-muted, #64748b)) !important;
}

html[data-customer-effective-theme="night"] body.auth-login-page main .es-input,
html[data-customer-effective-theme="night"] body.auth-login-page main input,
html[data-customer-effective-theme="night"] .ul-card .ul-input,
html.dark body.auth-login-page main .es-input,
html.dark body.auth-login-page main input,
html.dark .ul-card .ul-input {
  color: #f8fafc !important;
  -webkit-text-fill-color: #f8fafc !important;
}

/* 2026 landing auth/request polish: compact modal, safer preview layers, and one clear CTA. */
html.ul-public-home .nav-logo.brand {
  font-size: clamp(1.38rem, 2vw, 1.76rem) !important;
  letter-spacing: -0.042em !important;
}

html.ul-public-home .nav-logo .brand-dot::before,
html.ul-public-home .brand-dot::before {
  font-size: 1.18em !important;
  line-height: 0.78 !important;
  transform: translateY(0.015em) !important;
  text-shadow: 0 0 0.42em var(--brand-period-glow, rgba(0, 214, 100, 0.36)) !important;
}

html.ul-public-home .header-actions {
  gap: 0.65rem !important;
}

html.ul-public-home .trust-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, max-content)) !important;
  gap: 0.62rem !important;
  align-items: center !important;
}

html.ul-public-home .trust-tag {
  min-height: 2.28rem !important;
  padding: 0.55rem 0.78rem !important;
  line-height: 1.05 !important;
}

@media (min-width: 1180px) {
  html.ul-public-home .trust-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, max-content)) !important;
  }
}

html.ul-public-home .hero-preview {
  align-items: start !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 0.85rem !important;
  min-height: auto !important;
  padding-top: 1.1rem !important;
}

html.ul-public-home .hero-route {
  z-index: 0 !important;
  inset: -18px -18px auto auto !important;
}

html.ul-public-home .hero-float {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: fit-content !important;
  min-width: 0 !important;
  max-width: 100% !important;
  pointer-events: none !important;
  transform: none !important;
}

html.ul-public-home .hero-float-provider {
  grid-column: 1 !important;
  justify-self: start !important;
}

html.ul-public-home .hero-float-eta {
  grid-column: 2 !important;
  justify-self: end !important;
}

html.ul-public-home .hero-float-pay {
  display: none !important;
}

html.ul-public-home .req-card {
  grid-column: 1 / -1 !important;
  min-width: 0 !important;
}

html.ul-public-home .availability-preview {
  margin-top: 0.9rem !important;
}

html.ul-public-home .availability-result {
  display: grid !important;
  gap: 0.8rem !important;
  border-radius: 1.25rem !important;
}

html.ul-public-home .availability-next {
  border: 1px solid var(--lp-border-soft, var(--landing-clean-border)) !important;
  border-radius: 1rem !important;
  background: var(--lp-card-2, var(--landing-clean-surface-muted)) !important;
  padding: 0.75rem 0.85rem !important;
}

html.ul-public-home .availability-next span {
  display: block !important;
  margin-bottom: 0.18rem !important;
  color: var(--lp-muted, var(--landing-clean-muted)) !important;
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

html.ul-public-home .availability-next strong {
  color: var(--lp-text, var(--landing-clean-text)) !important;
}

html.ul-public-home .btn-go[disabled] {
  cursor: wait !important;
  opacity: 0.82 !important;
}

html.ul-public-home .btn-go[disabled][data-action="select"] {
  cursor: not-allowed !important;
}

html.ul-public-home .cta-spinner {
  width: 0.9rem !important;
  height: 0.9rem !important;
  border-width: 2px !important;
}

html.ul-public-home .signin-sheet {
  padding: 1.5rem !important;
  overflow: clip !important;
}

html.ul-public-home .signin-sheet-card {
  width: min(100%, 480px) !important;
  max-height: calc(100dvh - 48px) !important;
  padding: 1.2rem !important;
  overflow-y: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

html.ul-public-home .signin-sheet-card::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

html.ul-public-home .signin-sheet .sheet-close {
  top: 0.85rem !important;
  right: 0.85rem !important;
  width: 2.1rem !important;
  height: 2.1rem !important;
}

html.ul-public-home .signin-sheet .sheet-title {
  margin: 0 2.6rem 0.2rem 0 !important;
  font-size: clamp(1.38rem, 2.4vw, 1.72rem) !important;
  line-height: 1.08 !important;
}

html.ul-public-home .signin-sheet .sheet-sub {
  margin: 0 2.25rem 0.78rem 0 !important;
  font-size: 0.86rem !important;
  line-height: 1.34 !important;
}

html.ul-public-home .signin-sheet .public-role-grid {
  gap: 0.58rem !important;
  margin: 0 0 0.72rem !important;
}

html.ul-public-home .signin-sheet .public-role-btn {
  min-height: 4.7rem !important;
  padding: 0.72rem !important;
  border-radius: 1rem !important;
}

html.ul-public-home .signin-sheet .ul-role-label {
  font-size: 0.86rem !important;
}

html.ul-public-home .signin-sheet .ul-role-copy {
  margin-top: 0.22rem !important;
  font-size: 0.72rem !important;
  line-height: 1.25 !important;
}

html.ul-public-home .signin-sheet #ulSocialSection,
html.ul-public-home .signin-sheet .sheet-divider,
html.ul-public-home .signin-sheet .signin-form,
html.ul-public-home .signin-sheet .ul-feedback,
html.ul-public-home .signin-sheet .sheet-footer-links {
  margin-top: 0.7rem !important;
}

html.ul-public-home .signin-sheet .sheet-google,
html.ul-public-home .signin-sheet .auth-submit-button {
  min-height: 2.75rem !important;
  border-radius: 0.95rem !important;
}

html.ul-public-home .signin-sheet .sheet-divider {
  gap: 0.7rem !important;
  font-size: 0.72rem !important;
}

html.ul-public-home .signin-sheet .signin-form {
  gap: 0.68rem !important;
}

html.ul-public-home .signin-sheet .sheet-field {
  gap: 0.32rem !important;
}

html.ul-public-home .signin-sheet .sheet-field label,
html.ul-public-home .signin-sheet .forgot {
  font-size: 0.76rem !important;
}

html.ul-public-home .signin-sheet .auth-input {
  min-height: 2.68rem !important;
  border-radius: 0.9rem !important;
  padding: 0.68rem 0.78rem !important;
}

html.ul-public-home .signin-sheet .password-toggle {
  right: 0.46rem !important;
}

html.ul-public-home .signin-sheet .ul-feedback:empty {
  display: none !important;
}

html.ul-public-home .signin-sheet .sheet-footer-links {
  gap: 0.28rem !important;
  padding-top: 0.05rem !important;
}

html.ul-public-home .signin-sheet .sheet-footer-links p {
  margin: 0 !important;
  font-size: 0.76rem !important;
}

@media (max-width: 720px) {
  html.ul-public-home .trust-row {
    grid-template-columns: 1fr !important;
  }

  html.ul-public-home .trust-tag {
    justify-content: center !important;
    text-align: center !important;
  }

  html.ul-public-home .hero-preview {
    display: block !important;
    padding-top: 0 !important;
  }
}

@media (max-height: 680px) {
  html.ul-public-home .signin-sheet {
    padding: 0.85rem !important;
    overflow-y: auto !important;
  }

  html.ul-public-home .signin-sheet-card {
    max-height: calc(100dvh - 24px) !important;
    padding: 1rem !important;
  }

  html.ul-public-home .signin-sheet .public-role-btn {
    min-height: 4.2rem !important;
  }
}

/* Mobile landing and dark auth hardening. Keep this final and scoped so older
   landing/auth generations cannot reintroduce oversized phone layouts or light
   autofill surfaces in Night mode. */
@media (max-width: 720px) {
  html.ul-public-home .home-nav {
    min-height: 3.75rem !important;
  }

  html.ul-public-home .site-header-inner,
  html.ul-public-home .nav-row.site-header-inner {
    width: min(100% - 1.5rem, 100%) !important;
    height: 3.55rem !important;
    gap: 0.75rem !important;
  }

  html.ul-public-home .nav-logo.brand {
    font-size: clamp(1.25rem, 5.4vw, 1.55rem) !important;
  }

  html.ul-public-home .mobile-menu-toggle {
    width: 2.55rem !important;
    height: 2.55rem !important;
    border-radius: 0.95rem !important;
    padding: 0 !important;
    justify-content: center !important;
    gap: 0.25rem !important;
  }

  html.ul-public-home .mobile-menu-toggle span {
    width: 1.05rem !important;
    height: 2px !important;
    border-radius: 999px !important;
  }

  html.ul-public-home .hero {
    min-height: 0 !important;
    padding: 4.55rem 0 2.4rem !important;
  }

  html.ul-public-home .hero-grid,
  html.ul-public-home .page-container,
  html.ul-public-home .wrap {
    width: min(100% - 1.5rem, 100%) !important;
  }

  html.ul-public-home .hero-grid {
    gap: 1.25rem !important;
    align-items: start !important;
  }

  html.ul-public-home .hero-eyebrow {
    margin-bottom: 0.72rem !important;
    font-size: 0.72rem !important;
    line-height: 1.15 !important;
  }

  html.ul-public-home .hero-h1 {
    margin-bottom: 0.78rem !important;
    font-size: clamp(2.1rem, 10.6vw, 3rem) !important;
    line-height: 1.035 !important;
    letter-spacing: -0.032em !important;
  }

  html.ul-public-home .hero-h1::after {
    width: min(11rem, 42vw) !important;
    height: 3px !important;
    margin-top: 0.7rem !important;
  }

  html.ul-public-home .hero-sub {
    margin-bottom: 0.95rem !important;
    font-size: 0.95rem !important;
    line-height: 1.48 !important;
  }

  html.ul-public-home .trust-row {
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 0.48rem !important;
  }

  html.ul-public-home .trust-tag {
    min-width: 0 !important;
    min-height: 2.05rem !important;
    padding: 0.46rem 0.48rem !important;
    gap: 0.38rem !important;
    font-size: 0.72rem !important;
    line-height: 1.08 !important;
    white-space: normal !important;
  }

  html.ul-public-home .hero-preview {
    width: 100% !important;
    margin-top: 0.35rem !important;
  }

  html.ul-public-home .req-card {
    padding: 1rem !important;
    border-radius: 1.25rem !important;
  }

  html.ul-public-home .request-card-head,
  html.ul-public-home .request-live-row {
    gap: 0.55rem !important;
  }

  html.ul-public-home .request-live-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  html.ul-public-home .svc-tabs {
    gap: 0.5rem !important;
  }

  html.ul-public-home .svc-tab {
    min-height: 3.55rem !important;
    border-radius: 0.9rem !important;
    padding: 0.62rem 0.5rem !important;
    font-size: 0.76rem !important;
  }

  html.ul-public-home .loc-wrap {
    min-height: 3.05rem !important;
    border-radius: 1rem !important;
  }

  html.ul-public-home .btn-go,
  html.ul-public-home .availability-continue {
    min-height: 3.05rem !important;
    border-radius: 1rem !important;
  }

  html.ul-public-home .ticker,
  html.ul-public-home .stats-sec,
  html.ul-public-home .sec,
  html.ul-public-home .hiw,
  html.ul-public-home .svc-sec,
  html.ul-public-home .live-sec,
  html.ul-public-home .prov-sec,
  html.ul-public-home .safety-sec {
    padding-block: 2.65rem !important;
  }

  html.ul-public-home .h-lg,
  html.ul-public-home .section-title,
  html.ul-public-home .section-title-light,
  html.ul-public-home .provider-title,
  html.ul-public-home .photo-feature-title,
  html.ul-public-home .cta-band h2 {
    font-size: clamp(1.58rem, 7.6vw, 2.2rem) !important;
  }

  html.ul-public-home .step-card,
  html.ul-public-home .svc-row,
  html.ul-public-home .feed-card,
  html.ul-public-home .ben-row,
  html.ul-public-home .saf-card,
  html.ul-public-home .service-card,
  html.ul-public-home .trust-item {
    border-radius: 1.15rem !important;
    padding: 1rem !important;
    box-shadow: 0 14px 34px var(--lp-shadow) !important;
  }

  html.ul-public-home .step-card h3,
  html.ul-public-home .svc-row h3,
  html.ul-public-home .act-title,
  html.ul-public-home .ben-row h4,
  html.ul-public-home .saf-card h4 {
    margin-top: 0.62rem !important;
    font-size: 1rem !important;
  }

  html.ul-public-home .step-card p,
  html.ul-public-home .svc-row p,
  html.ul-public-home .ben-row p,
  html.ul-public-home .saf-card p {
    margin-top: 0.42rem !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }
}

html.ul-public-home[data-customer-effective-theme="night"] .signin-sheet,
html[data-customer-effective-theme="night"] body.auth-login-page {
  color-scheme: dark;
}

html.ul-public-home[data-customer-effective-theme="night"] .signin-sheet .auth-input,
html.ul-public-home[data-customer-effective-theme="night"] .signin-sheet .auth-input:focus,
html.ul-public-home[data-customer-effective-theme="night"] .signin-sheet .auth-input:active,
html[data-customer-effective-theme="night"] body.auth-login-page main input,
html[data-customer-effective-theme="night"] body.auth-login-page main input:focus,
html[data-customer-effective-theme="night"] body.auth-login-page main input:active {
  background-color: rgba(15, 23, 42, 0.94) !important;
  background-image: none !important;
  color: #f8fafc !important;
  -webkit-text-fill-color: #f8fafc !important;
  caret-color: var(--brand-period-color, #4ade80) !important;
  background-clip: padding-box !important;
}

html.ul-public-home[data-customer-effective-theme="night"] .signin-sheet .auth-input::placeholder,
html[data-customer-effective-theme="night"] body.auth-login-page main input::placeholder {
  color: rgba(203, 213, 225, 0.72) !important;
  -webkit-text-fill-color: rgba(203, 213, 225, 0.72) !important;
}

html.ul-public-home[data-customer-effective-theme="night"] .signin-sheet .auth-input:-webkit-autofill,
html.ul-public-home[data-customer-effective-theme="night"] .signin-sheet .auth-input:-webkit-autofill:hover,
html.ul-public-home[data-customer-effective-theme="night"] .signin-sheet .auth-input:-webkit-autofill:focus,
html.ul-public-home[data-customer-effective-theme="night"] .signin-sheet .auth-input:-webkit-autofill:active,
html[data-customer-effective-theme="night"] body.auth-login-page main input:-webkit-autofill,
html[data-customer-effective-theme="night"] body.auth-login-page main input:-webkit-autofill:hover,
html[data-customer-effective-theme="night"] body.auth-login-page main input:-webkit-autofill:focus,
html[data-customer-effective-theme="night"] body.auth-login-page main input:-webkit-autofill:active {
  -webkit-text-fill-color: #f8fafc !important;
  caret-color: var(--brand-period-color, #4ade80) !important;
  box-shadow: 0 0 0 1000px rgba(15, 23, 42, 0.97) inset !important;
  border-color: rgba(var(--cd-accent-rgb, 74, 222, 128), 0.72) !important;
  transition: background-color 9999s ease-out 0s !important;
}

/* Customer landing request form theme hardening. Keep this last so legacy public
   landing rules cannot reintroduce system input or plain-white card states. */
html.ul-public-home {
  --lp-request-radius: 1.25rem;
  --lp-request-control-radius: 1rem;
  --lp-request-field-bg: var(--lp-card-2, var(--cd-surface-2, #f8fafc));
  --lp-request-field-bg-hover: color-mix(in srgb, var(--lp-accent, var(--cd-accent-600, #0f766e)) 6%, var(--lp-request-field-bg));
  --lp-request-field-border: var(--lp-border, var(--cd-border, #e2e8f0));
  --lp-request-field-shadow: inset 0 1px 0 color-mix(in srgb, var(--lp-text, #0f172a) 5%, transparent);
  --lp-request-focus-shadow: 0 0 0 4px var(--lp-focus, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.2));
}

html.ul-public-home .loc-wrap,
html.ul-public-home .availability-empty,
html.ul-public-home .availability-checking,
html.ul-public-home .availability-unavailable,
html.ul-public-home .availability-result,
html.ul-public-home .availability-next,
html.ul-public-home .availability-service-card,
html.ul-public-home .availability-actions a,
html.ul-public-home .availability-actions button {
  border: 1px solid var(--lp-request-field-border) !important;
  color: var(--lp-text, var(--cd-text, #0f172a)) !important;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease !important;
}

html.ul-public-home .loc-wrap,
html.ul-public-home .availability-next,
html.ul-public-home .availability-service-card,
html.ul-public-home .availability-actions a,
html.ul-public-home .availability-actions button {
  border-radius: var(--lp-request-control-radius) !important;
  background: var(--lp-request-field-bg) !important;
  box-shadow: var(--lp-request-field-shadow) !important;
}

html.ul-public-home .availability-empty,
html.ul-public-home .availability-checking,
html.ul-public-home .availability-unavailable,
html.ul-public-home .availability-result {
  border-radius: var(--lp-request-radius) !important;
  background: var(--lp-card, var(--cd-surface, #ffffff)) !important;
  box-shadow: 0 20px 48px var(--lp-shadow, var(--cd-shadow, rgba(15, 23, 42, 0.1))) !important;
}

html.ul-public-home .loc-wrap:hover,
html.ul-public-home .availability-service-card:hover,
html.ul-public-home .availability-actions a:hover,
html.ul-public-home .availability-actions button:hover {
  border-color: var(--lp-accent-border, var(--cd-accent-border, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.28))) !important;
  background: var(--lp-request-field-bg-hover) !important;
}

html.ul-public-home .loc-wrap:focus-within {
  border-color: var(--lp-accent, var(--cd-accent-600, #0f766e)) !important;
  outline: 3px solid var(--lp-focus, var(--es-focus-ring, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.3))) !important;
  outline-offset: 2px !important;
  box-shadow: var(--lp-request-focus-shadow) !important;
}

html.ul-public-home .loc-wrap input,
html.ul-public-home .loc-wrap input:focus,
html.ul-public-home .loc-wrap input:active {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 1.5rem !important;
  border: 0 !important;
  border-radius: calc(var(--lp-request-control-radius) - 0.25rem) !important;
  outline: 0 !important;
  background: var(--lp-request-field-bg) !important;
  background-color: var(--lp-request-field-bg) !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--lp-text, var(--cd-text, #0f172a)) !important;
  -webkit-text-fill-color: var(--lp-text, var(--cd-text, #0f172a)) !important;
  caret-color: var(--lp-accent, var(--cd-accent-600, #0f766e)) !important;
  background-clip: padding-box !important;
  -webkit-background-clip: padding-box !important;
  -webkit-tap-highlight-color: transparent !important;
}

html.ul-public-home .loc-wrap input::placeholder {
  color: var(--lp-faint, var(--cd-text-muted, #64748b)) !important;
  -webkit-text-fill-color: var(--lp-faint, var(--cd-text-muted, #64748b)) !important;
}

html.ul-public-home .loc-wrap input:-webkit-autofill,
html.ul-public-home .loc-wrap input:-webkit-autofill:hover,
html.ul-public-home .loc-wrap input:-webkit-autofill:focus,
html.ul-public-home .loc-wrap input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--lp-text, var(--cd-text, #0f172a)) !important;
  caret-color: var(--lp-accent, var(--cd-accent-600, #0f766e)) !important;
  box-shadow: 0 0 0 1000px var(--lp-request-field-bg) inset !important;
  background-color: var(--lp-request-field-bg) !important;
  background-image: none !important;
  transition: background-color 9999s ease-out 0s !important;
}

html.ul-public-home .availability-result-head strong,
html.ul-public-home .availability-next strong,
html.ul-public-home .availability-service-card strong {
  color: var(--lp-text, var(--cd-text, #0f172a)) !important;
}

html.ul-public-home .availability-empty p,
html.ul-public-home .availability-checking p,
html.ul-public-home .availability-unavailable p,
html.ul-public-home .availability-result p,
html.ul-public-home .availability-result small,
html.ul-public-home .availability-next span,
html.ul-public-home .availability-service-card span,
html.ul-public-home .availability-service-card p,
html.ul-public-home .availability-service-card small {
  color: var(--lp-muted, var(--cd-text-muted, #475569)) !important;
}

html.ul-public-home .availability-preview .status-badge.available,
html.ul-public-home .status-badge.available {
  border: 1px solid var(--lp-accent-border, var(--cd-accent-border, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.28))) !important;
  background: var(--lp-accent-soft, var(--cd-accent-soft, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.14))) !important;
  color: var(--cd-accent-text, var(--lp-accent, var(--cd-accent-600, #0f766e))) !important;
}

html.ul-public-home .availability-actions a:focus-visible,
html.ul-public-home .availability-actions button:focus-visible {
  border-color: var(--lp-accent, var(--cd-accent-600, #0f766e)) !important;
  outline: 3px solid var(--lp-focus, var(--es-focus-ring, rgba(var(--cd-accent-rgb, 15, 118, 110), 0.3))) !important;
  outline-offset: 2px !important;
  box-shadow: var(--lp-request-focus-shadow) !important;
}
