.dashboard-shell {
  background: #f9fafb;
}

/* Offset anchor scroll for the sticky landing header (~72px) */
html:has(.landing-header) {
  scroll-padding-top: 80px;
}

[x-cloak] {
  display: none !important;
}

.homepage-body {
  background: #f9fafb;
  color: #101828;
}


.homepage-body .homepage-flash {
  position: fixed;
  top: 5rem;
  left: 50%;
  z-index: 70;
  width: min(42rem, calc(100% - 2rem));
  transform: translateX(-50%);
}

.homepage-body.dark,
:root.dark .homepage-body {
  background: #0c111d;
  color: #ffffff;
}

.homepage-body .landing-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 15%, rgba(70, 95, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 92% 8%, rgba(53, 189, 255, 0.13), transparent 28rem),
    linear-gradient(180deg, #f9fafb 0%, #ffffff 42%, #f9fafb 100%);
  color: #101828;
}

:root.dark .homepage-body .landing-page {
  background:
    radial-gradient(circle at 8% 15%, rgba(70, 95, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 92% 8%, rgba(53, 189, 255, 0.11), transparent 28rem),
    linear-gradient(180deg, #0c111d 0%, #101828 48%, #0c111d 100%);
  color: #ffffff;
}

.landing-header,
.landing-footer,
.landing-main {
  width: 100%;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid #e4e7ec;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem clamp(1rem, 4vw, 4rem);
  backdrop-filter: blur(18px);
}

/* Kill the standalone margin-bottom when brand is inside the header */
.landing-header .landing-brand {
  margin-bottom: 0;
}

/* Pin both header buttons to the same explicit height — min-height alone lets
   emoji line-height push .landing-theme taller than the SVG-only sign-in btn */
.landing-header__actions .landing-theme,
.landing-header__actions .landing-signin-btn {
  height: 2.75rem;
}

:root.dark .landing-header {
  border-color: #1f2937;
  background: rgba(16, 24, 40, 0.88);
}

.landing-brand,
.landing-header__actions,
.landing-nav,
.landing-actions,
.landing-metrics,
.landing-board__header,
.landing-route,
.landing-footer,
.landing-footer nav {
  display: flex;
  align-items: center;
}

.landing-brand {
  gap: 0.8rem;
  min-width: max-content;
}

.landing-brand__mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.9rem;
  background: #465fff;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(70, 95, 255, 0.28);
}

.landing-brand strong {
  display: block;
  color: #101828;
  font-size: 1.1rem;
}

.landing-brand small,
.landing-board__header span,
.landing-route span,
.landing-footer span,
.landing-footer p,
.landing-steps span {
  color: #667085;
}

:root.dark .landing-brand strong {
  color: #ffffff;
}

:root.dark .landing-brand small,
:root.dark .landing-board__header span,
:root.dark .landing-route span,
:root.dark .landing-footer span,
:root.dark .landing-footer p,
:root.dark .landing-steps span {
  color: #98a2b3;
}

.landing-nav {
  justify-content: center;
  gap: 2rem;
  color: #475467;
  font-size: 0.92rem;
  font-weight: 600;
}

.landing-nav a:hover,
.landing-link:hover,
.landing-footer a:hover,
.landing-card--role a:hover {
  color: #465fff;
}


.landing-lang-switcher {
  position: relative;
}

.landing-lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
}

.landing-lang-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 10rem;
  border: 1px solid #e4e7ec;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
  overflow: hidden;
  z-index: 100;
}

:root.dark .landing-lang-menu {
  border-color: #1f2937;
  background: #1a2332;
}

.landing-lang-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: #101828;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.landing-lang-option:hover {
  background: #f9fafb;
}

.landing-lang-option--active {
  font-weight: 700;
  color: #465fff;
}

:root.dark .landing-lang-option {
  color: #f9fafb;
}

:root.dark .landing-lang-option:hover {
  background: #1f2937;
}

:root.dark .landing-lang-option--active {
  color: #818cf8;
}

.landing-lang-option + .landing-lang-option {
  border-top: 1px solid #e4e7ec;
}

:root.dark .landing-lang-option + .landing-lang-option {
  border-color: #1f2937;
}

.landing-signin-dropdown {
  position: relative;
}

.landing-signin-dropdown .landing-button {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}

.landing-signin-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 17rem;
  border: 1px solid #e4e7ec;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
  overflow: hidden;
  z-index: 100;
}

:root.dark .landing-signin-menu {
  border-color: #1f2937;
  background: #1a2332;
}

.landing-signin-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  color: #101828;
  transition: background 0.15s;
}

.landing-signin-option:hover {
  background: #f9fafb;
}

:root.dark .landing-signin-option {
  color: #f9fafb;
}

:root.dark .landing-signin-option:hover {
  background: #1f2937;
}

.landing-signin-option + .landing-signin-option {
  border-top: 1px solid #e4e7ec;
}

:root.dark .landing-signin-option + .landing-signin-option {
  border-color: #1f2937;
}

.landing-signin-option__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.6rem;
  background: #eef4ff;
  color: #465fff;
  flex-shrink: 0;
}

:root.dark .landing-signin-option__icon {
  background: rgba(70, 95, 255, 0.15);
}

.landing-signin-option strong {
  display: block;
  font-size: 0.9rem;
  color: #101828;
}

:root.dark .landing-signin-option strong {
  color: #ffffff;
}

.landing-signin-option small {
  display: block;
  font-size: 0.78rem;
  color: #667085;
}

.landing-header__actions {
  justify-content: flex-end;
  gap: 0.65rem;
}

.landing-header__actions form,
.landing-actions form {
  margin: 0;
}

.landing-link {
  color: #475467;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.65rem 0.85rem;
}

:root.dark .landing-nav,
:root.dark .landing-link {
  color: #d0d5dd;
}

.landing-theme,
.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  border-radius: 0.75rem;
  border: 1px solid #d0d5dd;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  transition: 160ms ease;
}

.landing-theme,
.landing-button--secondary {
  background: #ffffff;
  color: #344054;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.landing-theme:hover,
.landing-button--secondary:hover {
  background: #f2f4f7;
}

.landing-button--primary {
  border-color: #465fff;
  background: #465fff;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(70, 95, 255, 0.24);
}

.landing-button--primary:hover {
  background: #3641f5;
}

:root.dark .landing-theme,
:root.dark .landing-button--secondary {
  border-color: #344054;
  background: #101828;
  color: #f2f4f7;
}

:root.dark .landing-theme:hover,
:root.dark .landing-button--secondary:hover {
  background: #1d2939;
}

.landing-main {
  overflow: hidden;
}

.landing-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - 5rem);
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
  justify-content: center;
}

.landing-hero__content {
  max-width: 72rem;
  width: 100%;
}

.landing-kicker {
  display: inline-flex;
  width: fit-content;
  border: 1px solid #c7d7fe;
  border-radius: 999px;
  background: #eef4ff;
  color: #465fff;
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

:root.dark .landing-kicker {
  border-color: rgba(70, 95, 255, 0.3);
  background: rgba(70, 95, 255, 0.12);
  color: #9eb5ff;
}

.landing-hero h1 {
  max-width: 22ch;
  margin: 1.35rem auto 1.35rem;
  color: #101828;
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

:root.dark .landing-hero h1,
:root.dark .landing-section h2,
:root.dark .landing-steps strong,
:root.dark .landing-board h2,
:root.dark .landing-route strong,
:root.dark .landing-footer strong {
  color: #ffffff;
}

.landing-hero__content > p {
  max-width: 45rem;
  margin: 0 auto 2rem;
  color: #667085;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.7;
}

:root.dark .landing-hero__content > p {
  color: #98a2b3;
}

.landing-actions {
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.landing-metrics {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
  justify-content: center;
}

.landing-metrics div {
  min-width: 9.5rem;
  border: 1px solid #e4e7ec;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.74);
  padding: 1rem;
}

:root.dark .landing-metrics div {
  border-color: #1f2937;
  background: rgba(255, 255, 255, 0.04);
}

.landing-metrics strong {
  display: block;
  color: #101828;
  font-size: 1.45rem;
}

:root.dark .landing-metrics strong {
  color: #ffffff;
}

.landing-metrics span {
  color: #667085;
  font-size: 0.86rem;
}

:root.dark .landing-metrics span {
  color: #98a2b3;
}

.landing-board,
.landing-steps div {
  border: 1px solid #e4e7ec;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.08);
}

.landing-board {
  position: relative;
  border-radius: 1.75rem;
  padding: 1.25rem;
}

.landing-board::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(70, 95, 255, 0.35), rgba(53, 189, 255, 0.08), transparent);
  content: "";
}

:root.dark .landing-board,
:root.dark .landing-steps div {
  border-color: #1f2937;
  background: rgba(16, 24, 40, 0.86);
  box-shadow: none;
}

.landing-board__header {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.landing-board h2 {
  margin: 0.3rem 0 0;
  color: #101828;
  font-size: 1.25rem;
}

.landing-route {
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #e4e7ec;
  border-radius: 1.1rem;
  padding: 1rem;
}

.landing-route + .landing-route {
  margin-top: 0.85rem;
}

.landing-route--active {
  background: #f9fafb;
}

:root.dark .landing-route {
  border-color: #263244;
}

:root.dark .landing-route--active {
  background: rgba(70, 95, 255, 0.1);
}

.landing-route strong {
  display: block;
  color: #101828;
  margin-bottom: 0.3rem;
}

.landing-board__footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  border-radius: 1rem;
  background: #f2f4f7;
  padding: 1rem;
  color: #475467;
}

:root.dark .landing-board__footer {
  background: rgba(255, 255, 255, 0.04);
  color: #d0d5dd;
}

.landing-section {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.landing-section__heading {
  max-width: 45rem;
  margin-bottom: 2rem;
}

.landing-section h2 {
  margin: 1rem 0 0;
  color: #101828;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}


.landing-section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 2rem;
  border-top: 1px solid #e4e7ec;
  border-bottom: 1px solid #e4e7ec;
  background: rgba(255, 255, 255, 0.72);
}

:root.dark .landing-section--split {
  border-color: #1f2937;
  background: rgba(16, 24, 40, 0.55);
}

.landing-steps {
  display: grid;
  gap: 1rem;
}

.landing-steps div {
  border-radius: 1.2rem;
  padding: 1.25rem;
}

.landing-steps strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #101828;
  font-size: 1.05rem;
}

.landing-card--role a {
  display: inline-flex;
  margin-top: 1.25rem;
  color: #465fff;
  font-weight: 700;
}

/* ── Workflow swim-lane redesign ─────────────────────────────── */
.landing-workflow {
  border-top: 1px solid #e4e7ec;
  border-bottom: 1px solid #e4e7ec;
  background: rgba(255, 255, 255, 0.72);
}

:root.dark .landing-workflow {
  border-color: #1f2937;
  background: #0e1623;
}

.landing-workflow__tracks {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 0.5rem;
}

.landing-workflow__divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, #e4e7ec 20%, #e4e7ec 80%, transparent);
  margin: 0.5rem 0;
}

:root.dark .landing-workflow__divider {
  background: linear-gradient(to bottom, transparent, #1f2937 20%, #1f2937 80%, transparent);
}

.landing-track {
  border: 1px solid #e4e7ec;
  border-radius: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(16, 24, 40, 0.04);
}

:root.dark .landing-track {
  border-color: #1f2937;
  background: #111827;
  box-shadow: none;
}

.landing-track__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid #f2f4f7;
}

:root.dark .landing-track__header {
  border-color: #1f2937;
}

.landing-track__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #eef4ff;
  color: #465fff;
}

.landing-track--driver .landing-track__icon {
  background: #ecfdf5;
  color: #059669;
}

:root.dark .landing-track__icon {
  background: rgba(70, 95, 255, 0.15);
  color: #9eb5ff;
}

:root.dark .landing-track--driver .landing-track__icon {
  background: rgba(5, 150, 105, 0.15);
  color: #34d399;
}

.landing-track__header > strong {
  font-size: 1rem;
  font-weight: 700;
  color: #101828;
  letter-spacing: -0.01em;
}

:root.dark .landing-track__header > strong {
  color: #f9fafb;
}

.landing-track__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
}

/* Vertical connector line running through all step numbers */
.landing-track__steps::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.65rem;
  bottom: 1.65rem;
  width: 2px;
  border-radius: 1px;
  background: linear-gradient(to bottom, #c7d7fe, rgba(199, 215, 254, 0.15));
}

.landing-track--driver .landing-track__steps::before {
  background: linear-gradient(to bottom, #a7f3d0, rgba(167, 243, 208, 0.15));
}

:root.dark .landing-track__steps::before {
  background: linear-gradient(to bottom, rgba(70, 95, 255, 0.4), rgba(70, 95, 255, 0.04));
}

:root.dark .landing-track--driver .landing-track__steps::before {
  background: linear-gradient(to bottom, rgba(5, 150, 105, 0.4), rgba(5, 150, 105, 0.04));
}

.landing-track__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0.75rem;
  border-radius: 0.85rem;
  transition: background 0.16s ease, translate 0.16s ease;
  cursor: default;
}

.landing-track__step:hover {
  background: #f5f7ff;
  translate: 4px 0;
}

.landing-track--driver .landing-track__step:hover {
  background: #f0fdf4;
}

:root.dark .landing-track__step:hover {
  background: rgba(70, 95, 255, 0.07);
}

:root.dark .landing-track--driver .landing-track__step:hover {
  background: rgba(5, 150, 105, 0.07);
}

.landing-track__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: #eef4ff;
  color: #465fff;
  font-size: 0.8rem;
  font-weight: 800;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #c7d7fe;
}

.landing-track--driver .landing-track__step-num {
  background: #d1fae5;
  color: #059669;
  box-shadow: 0 0 0 2px #a7f3d0;
}

:root.dark .landing-track__step-num {
  background: #1a2a4a;
  color: #9eb5ff;
  border-color: #111827;
  box-shadow: 0 0 0 2px rgba(70, 95, 255, 0.35);
}

:root.dark .landing-track--driver .landing-track__step-num {
  background: #0c2318;
  color: #34d399;
  border-color: #111827;
  box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.35);
}

.landing-track__step div strong {
  display: block;
  color: #101828;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

:root.dark .landing-track__step div strong {
  color: #f9fafb;
}

.landing-track__step div span {
  color: #667085;
  font-size: 0.845rem;
  line-height: 1.55;
}

:root.dark .landing-track__step div span {
  color: #98a2b3;
}

/* ── Workflow scroll-in animations ───────────────────────────── */
@keyframes wf-slide-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.landing-workflow .landing-section__heading,
.landing-workflow .landing-track,
.landing-workflow .landing-track__step {
  opacity: 0;
}

.landing-workflow.in-view .landing-section__heading {
  animation: wf-slide-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.landing-workflow.in-view .landing-track--customer {
  animation: wf-slide-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.landing-workflow.in-view .landing-track--driver {
  animation: wf-slide-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.landing-workflow.in-view .landing-track--customer .landing-track__step:nth-child(1) {
  animation: wf-slide-up 0.4s ease 0.35s forwards;
}
.landing-workflow.in-view .landing-track--customer .landing-track__step:nth-child(2) {
  animation: wf-slide-up 0.4s ease 0.45s forwards;
}
.landing-workflow.in-view .landing-track--customer .landing-track__step:nth-child(3) {
  animation: wf-slide-up 0.4s ease 0.55s forwards;
}
.landing-workflow.in-view .landing-track--customer .landing-track__step:nth-child(4) {
  animation: wf-slide-up 0.4s ease 0.65s forwards;
}

.landing-workflow.in-view .landing-track--driver .landing-track__step:nth-child(1) {
  animation: wf-slide-up 0.4s ease 0.5s forwards;
}
.landing-workflow.in-view .landing-track--driver .landing-track__step:nth-child(2) {
  animation: wf-slide-up 0.4s ease 0.6s forwards;
}
.landing-workflow.in-view .landing-track--driver .landing-track__step:nth-child(3) {
  animation: wf-slide-up 0.4s ease 0.7s forwards;
}
.landing-workflow.in-view .landing-track--driver .landing-track__step:nth-child(4) {
  animation: wf-slide-up 0.4s ease 0.8s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .landing-workflow .landing-section__heading,
  .landing-workflow .landing-track,
  .landing-workflow .landing-track__step {
    opacity: 1;
    animation: none !important;
  }
}


/* ── Feature sections (tracking + ratings) ──────────────────── */
.landing-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  border-top: 1px solid #e4e7ec;
}

:root.dark .landing-feature {
  border-color: #1f2937;
}

.landing-feature--ratings {
  background: rgba(255, 255, 255, 0.5);
}

:root.dark .landing-feature--ratings {
  background: rgba(16, 24, 40, 0.4);
}

.landing-feature__copy h2 {
  margin: 0.75rem 0 1rem;
  color: #101828;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

:root.dark .landing-feature__copy h2 {
  color: #ffffff;
}

.landing-feature__copy > p {
  color: #667085;
  font-size: 1.2rem;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

:root.dark .landing-feature__copy > p {
  color: #98a2b3;
}

.landing-feature__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.landing-feature__details li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #475467;
  font-size: 1.05rem;
  line-height: 1.5;
  opacity: 0;
  translate: 0 12px;
  transition: opacity 0.4s ease calc(var(--i, 0) * 0.12s + 0.55s),
              translate 0.4s ease calc(var(--i, 0) * 0.12s + 0.55s);
}

.landing-feature.in-view .landing-feature__details li {
  opacity: 1;
  translate: 0 0;
}

:root.dark .landing-feature__details li {
  color: #98a2b3;
}

.landing-feature__details li::before {
  content: "";
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: #465fff;
}

.landing-feature--ratings .landing-feature__details li::before {
  background: #059669;
}

/* ── Map mockup ────────────────────────────────────────────── */
.landing-feature__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-map-mock {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 3 / 2;
  border-radius: 1.5rem;
  border: 1px solid #e4e7ec;
  background: #f0f4ff;
  overflow: hidden;
}

:root.dark .landing-map-mock {
  border-color: #1f2937;
  background: #0e1623;
}

.landing-map-mock__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #d0d9f0;
}

:root.dark .landing-map-mock__grid {
  color: #1a2540;
}

.landing-map-mock__route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-map-mock__path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
}

.landing-feature--tracking.in-view .landing-map-mock__path {
  animation: map-draw 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

@keyframes map-draw {
  to { stroke-dashoffset: 0; }
}

.landing-map-mock__pin {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(16, 24, 40, 0.2);
}

.landing-map-mock__pin--pickup {
  bottom: 19%;
  left: 10%;
  background: #465fff;
  color: #ffffff;
}

.landing-map-mock__pin--dropoff {
  top: 12%;
  right: 10%;
  background: #ffffff;
  color: #465fff;
  border-color: #465fff;
}

:root.dark .landing-map-mock__pin--dropoff {
  background: #111827;
  border-color: #9eb5ff;
  color: #9eb5ff;
}

.landing-map-mock__driver {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid #465fff;
  box-shadow: 0 4px 16px rgba(70, 95, 255, 0.3);
  color: #465fff;
  left: 14.3%;
  top: 77.3%;
  translate: -50% -50%;
  z-index: 2;
}

:root.dark .landing-map-mock__driver {
  background: #111827;
  border-color: #9eb5ff;
  color: #9eb5ff;
}

.landing-feature--tracking.in-view .landing-map-mock__driver {
  animation: driver-move 4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s infinite;
}

@keyframes driver-move {
  0%   { left: 14.3%; top: 77.3%; }
  35%  { left: 42.9%; top: 48%; }
  70%  { left: 86.9%; top: 16.7%; }
  100% { left: 86.9%; top: 16.7%; }
}

.landing-map-mock__pulse {
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(70, 95, 255, 0.2);
  left: 14.3%;
  top: 77.3%;
  translate: -50% -50%;
  z-index: 1;
}

.landing-feature--tracking.in-view .landing-map-mock__pulse {
  animation: driver-move 4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s infinite,
             pulse-ring 4s ease-in-out 0.6s infinite;
}

@keyframes pulse-ring {
  0%, 70%  { transform: scale(1); opacity: 0.6; }
  35%      { transform: scale(2); opacity: 0; }
  100%     { transform: scale(1); opacity: 0.6; }
}

.landing-map-mock__card {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 0.75rem;
  padding: 0.6rem 0.9rem;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.1);
  font-size: 0.78rem;
}

:root.dark .landing-map-mock__card {
  background: #111827;
  border-color: #1f2937;
}

.landing-map-mock__card-label {
  color: #667085;
}

:root.dark .landing-map-mock__card-label {
  color: #98a2b3;
}

.landing-map-mock__card-eta {
  color: #101828;
}

:root.dark .landing-map-mock__card-eta {
  color: #f9fafb;
}

.landing-map-mock__card-eta strong {
  color: #465fff;
}

:root.dark .landing-map-mock__card-eta strong {
  color: #9eb5ff;
}

/* ── Payments section ──────────────────────────────────────── */
.landing-feature--payments .landing-kicker {
  background: rgba(99, 91, 255, 0.08);
  color: #635bff;
}

:root.dark .landing-feature--payments .landing-kicker {
  background: rgba(99, 91, 255, 0.15);
  color: #a09aff;
}

.landing-feature--payments .landing-feature__details li::before {
  background: #635bff;
}

.landing-payment-mock {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.landing-payment-card {
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(16, 24, 40, 0.10);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

:root.dark .landing-payment-card {
  background: #111827;
  border-color: #1f2937;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.landing-payment-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-payment-card__secure {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475467;
}

:root.dark .landing-payment-card__secure {
  color: #98a2b3;
}

.landing-stripe-word {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #635bff;
}

.landing-payment-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid #f2f4f7;
  padding-top: 1rem;
}

:root.dark .landing-payment-card__meta {
  border-color: #1f2937;
}

.landing-payment-card__meta span:first-child {
  font-size: 0.78rem;
  font-weight: 600;
  color: #101828;
}

:root.dark .landing-payment-card__meta span:first-child {
  color: #f9fafb;
}

.landing-payment-card__meta span:last-child {
  font-size: 0.75rem;
  color: #98a2b3;
}

.landing-payment-card__amount {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #101828;
  text-align: center;
  padding: 0.25rem 0;
}

:root.dark .landing-payment-card__amount {
  color: #f9fafb;
}

.landing-payment-card__field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f9fafb;
  border: 1px solid #e4e7ec;
  border-radius: 0.6rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  color: #667085;
}

:root.dark .landing-payment-card__field {
  background: #0d1525;
  border-color: #1f2937;
  color: #98a2b3;
}

.landing-payment-card__expiry {
  margin-left: auto;
  font-size: 0.78rem;
}

.landing-payment-card__btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.6rem;
  background: #635bff;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: default;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(99, 91, 255, 0.35);
}

.landing-payment-card__methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding-top: 0.25rem;
}

.landing-pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.6rem;
  padding: 0 0.5rem;
  border-radius: 0.3rem;
  border: 1px solid #e4e7ec;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

:root.dark .landing-pay-badge {
  border-color: #2d3748;
}

.landing-pay-badge--visa {
  color: #1a1f71;
  background: #f7f8ff;
  font-style: italic;
  font-size: 0.72rem;
}

:root.dark .landing-pay-badge--visa {
  background: #0d1525;
  color: #a0aec0;
}

.landing-pay-badge--mc {
  gap: 0;
  padding: 0 0.35rem;
  background: #f9fafb;
}

:root.dark .landing-pay-badge--mc {
  background: #0d1525;
}

.landing-pay-badge--mc span {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  display: block;
}

.landing-pay-badge--mc span:first-child {
  background: #eb001b;
  margin-right: -0.3rem;
}

.landing-pay-badge--mc span:last-child {
  background: #f79e1b;
  opacity: 0.9;
}

.landing-pay-badge--amex {
  background: #016fcb;
  color: #ffffff;
  border-color: #016fcb;
}

.landing-pay-badge--gpay {
  color: #5f6368;
  background: #f9fafb;
  font-size: 0.68rem;
}

:root.dark .landing-pay-badge--gpay {
  background: #0d1525;
  color: #98a2b3;
}

/* ── Payment success overlay ─── */
.landing-payment-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.25rem;
  opacity: 0;
  pointer-events: none;
}

:root.dark .landing-payment-success {
  background: rgba(17, 24, 39, 0.96);
}

.landing-feature--payments.in-view .landing-payment-success {
  animation: payment-reveal 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

@keyframes payment-reveal {
  0%   { opacity: 0; translate: 0 8px; }
  100% { opacity: 1; translate: 0 0; }
}

.landing-payment-success__ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.1);
  border: 2px solid rgba(5, 150, 105, 0.3);
}

.landing-payment-success strong {
  font-size: 1.05rem;
  color: #101828;
}

:root.dark .landing-payment-success strong {
  color: #f9fafb;
}

.landing-payment-success span {
  font-size: 0.82rem;
  color: #667085;
}

/* ── Ratings mockup ────────────────────────────────────────── */
.landing-ratings-mock {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 420px;
}

.landing-rating-card {
  border: 1px solid #e4e7ec;
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(16, 24, 40, 0.05);
}

:root.dark .landing-rating-card {
  border-color: #1f2937;
  background: #111827;
  box-shadow: none;
}

.landing-rating-card__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #667085;
  margin-bottom: 0.75rem;
}

:root.dark .landing-rating-card__label {
  color: #6b7280;
}

.landing-rating-card--customer .landing-rating-card__label {
  color: #465fff;
}

:root.dark .landing-rating-card--customer .landing-rating-card__label {
  color: #9eb5ff;
}

.landing-rating-card--driver .landing-rating-card__label {
  color: #059669;
}

:root.dark .landing-rating-card--driver .landing-rating-card__label {
  color: #34d399;
}

.landing-rating-card__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.landing-star {
  font-size: 1.4rem;
  color: #e4e7ec;
  opacity: 0;
}

:root.dark .landing-star {
  color: #1f2937;
}

.landing-feature--ratings.in-view .landing-star {
  animation: star-fill 0.25s ease calc(0.3s + var(--i) * 0.1s) forwards;
}

@keyframes star-fill {
  to { color: #f59e0b; opacity: 1; }
}

.landing-rating-card__comment {
  margin: 0;
  color: #667085;
  font-size: 0.88rem;
  line-height: 1.6;
  font-style: italic;
}

:root.dark .landing-rating-card__comment {
  color: #6b7280;
}

/* ── Feature section scroll animations ──────────────────────── */
.landing-feature .landing-feature__copy,
.landing-feature .landing-feature__visual {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-feature .landing-feature__visual {
  transition-delay: 0.15s;
}

.landing-feature.in-view .landing-feature__copy,
.landing-feature.in-view .landing-feature__visual {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .landing-feature .landing-feature__copy,
  .landing-feature .landing-feature__visual {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .landing-map-mock__path,
  .landing-map-mock__driver,
  .landing-map-mock__pulse,
  .landing-star {
    animation: none !important;
    stroke-dashoffset: 0;
    offset-distance: 100%;
    opacity: 1;
    color: #f59e0b;
  }
}

/* ── Feature section responsive ─────────────────────────────── */

.landing-footer {
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #e4e7ec;
  background: #ffffff;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  color: #667085;
}

:root.dark .landing-footer {
  border-color: #1f2937;
  background: #101828;
}

.landing-footer strong {
  display: block;
  color: #101828;
}

.landing-footer nav {
  gap: 1.25rem;
  font-weight: 600;
}

.tailadmin-auth {
  display: flex;
  flex-direction: column;
  /* dvh recalculates when scrollbar appears — no overflow loop, works on mobile */
  min-height: 100dvh;
  background:
    radial-gradient(circle at 12% 15%, rgba(70, 95, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(53, 189, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  padding: 1rem clamp(1rem, 4vw, 3rem);
}

:root.dark .tailadmin-auth {
  background:
    radial-gradient(circle at 12% 15%, rgba(70, 95, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(53, 189, 255, 0.1), transparent 26rem),
    linear-gradient(180deg, #0c111d 0%, #101828 100%);
}

.tailadmin-auth__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto 1.25rem;
}

/* Kill the 2rem bottom margin landing-brand carries when inside the auth bar */
.tailadmin-auth__brand .landing-brand {
  margin-bottom: 0;
}

.tailadmin-auth__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  width: min(1180px, 100%);
  flex: 1;
  margin: 0 auto;
}

.tailadmin-auth__panel h1 {
  max-width: 44rem;
  margin: 1.2rem 0 1rem;
  color: #101828;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.tailadmin-auth__panel p {
  max-width: 36rem;
  margin: 0;
  color: #667085;
  font-size: 1.1rem;
  line-height: 1.7;
}

:root.dark .tailadmin-auth__panel h1 {
  color: #ffffff;
}

:root.dark .tailadmin-auth__panel p {
  color: #98a2b3;
}

.tailadmin-auth__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.tailadmin-auth__stats div {
  min-width: 9rem;
  border: 1px solid #e4e7ec;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
}

:root.dark .tailadmin-auth__stats div {
  border-color: #1f2937;
  background: rgba(255, 255, 255, 0.04);
}

.tailadmin-auth__stats strong {
  display: block;
  color: #101828;
  font-size: 1.3rem;
}

.tailadmin-auth__stats span {
  color: #667085;
  font-size: 0.85rem;
}

:root.dark .tailadmin-auth__stats strong {
  color: #ffffff;
}

:root.dark .tailadmin-auth__stats span {
  color: #98a2b3;
}

.tailadmin-auth__card {
  border: 1px solid #e4e7ec;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.1);
  padding: clamp(1.25rem, 3vw, 2rem);
}

:root.dark .tailadmin-auth__card {
  border-color: #1f2937;
  background: rgba(16, 24, 40, 0.9);
  box-shadow: none;
}

.tailadmin-auth__heading {
  margin-bottom: 1.5rem;
}

.tailadmin-auth__heading p {
  margin: 0 0 0.4rem;
  color: #465fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tailadmin-auth__heading h2 {
  margin: 0;
  color: #101828;
  font-size: 1.55rem;
}

:root.dark .tailadmin-auth__heading h2 {
  color: #ffffff;
}

.tailadmin-auth__form {
  display: grid;
  gap: 1rem;
}

.tailadmin-auth__field {
  display: grid;
  gap: 0.5rem;
}

.tailadmin-auth__field label,
.tailadmin-auth__field-header label {
  color: #344054;
  font-size: 0.9rem;
  font-weight: 700;
}

.tailadmin-auth__field-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tailadmin-auth__field-header span {
  color: #667085;
  font-size: 0.8rem;
}

.tailadmin-auth__field input {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 0.75rem;
  background: #ffffff;
  color: #101828;
  font: inherit;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: 160ms ease;
}

.tailadmin-auth__field input:focus {
  border-color: #465fff;
  box-shadow: 0 0 0 4px rgba(70, 95, 255, 0.12);
}

.tailadmin-auth__field input::placeholder {
  color: #98a2b3;
}

:root.dark .tailadmin-auth__field label,
:root.dark .tailadmin-auth__field-header label {
  color: #f2f4f7;
}

:root.dark .tailadmin-auth__field-header span {
  color: #98a2b3;
}

:root.dark .tailadmin-auth__field input {
  border-color: #344054;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
}

.tailadmin-auth__checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #475467;
  font-size: 0.9rem;
  font-weight: 600;
}

:root.dark .tailadmin-auth__checkbox {
  color: #d0d5dd;
}

.tailadmin-auth__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.tailadmin-auth .auth-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
  text-align: center;
}

.tailadmin-auth .auth-links a,
.tailadmin-auth .auth-links .auth-link-btn,
.tailadmin-auth .auth-links .auth-link-btn button {
  color: #465fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.tailadmin-auth .auth-links .auth-link-btn {
  all: unset;
  display: contents;
}

.tailadmin-auth .auth-links .auth-link-btn button {
  all: unset;
  cursor: pointer;
}

.tailadmin-auth .error-messages {
  border: 1px solid #fecaca;
  border-radius: 0.9rem;
  background: #fef3f2;
  color: #b42318;
  padding: 0.9rem 1rem;
}

.tailadmin-auth .error-messages ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

:root.dark .tailadmin-auth .error-messages {
  border-color: rgba(240, 68, 56, 0.35);
  background: rgba(240, 68, 56, 0.12);
  color: #f97066;
}

@media (max-width: 1100px) {
  .landing-nav {
    display: none;
  }

  .landing-section--split,
  .tailadmin-auth__layout {
    grid-template-columns: 1fr;
  }

  .landing-workflow__tracks {
    grid-template-columns: 1fr;
  }

  .landing-workflow__divider {
    display: none;
  }

  .landing-feature {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  /* Tighter header on mobile */
  .landing-header {
    align-items: center;
    gap: 0.5rem;
    padding-inline: 1rem;
  }

  /* Brand — icon mark only on mobile, hide all text (standard mobile nav pattern) */
  .landing-header .landing-brand > span:not(.landing-brand__mark) {
    display: none;
  }

  /* Theme toggle — icon only on mobile, hide the text label */
  .landing-theme [data-theme-target="label"] {
    display: none;
  }

  /* Sign in button — hide text only, keep icon + chevron */
  .landing-signin-btn__label {
    display: none;
  }

  /* Language switcher — globe icon only, same pattern as theme toggle */
  .landing-lang-btn span,
  .landing-lang-btn svg:last-child {
    display: none;
  }
  .landing-lang-btn {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  /* Dropdown anchors to right edge so it doesn't overflow screen */
  .landing-signin-menu {
    min-width: 15rem;
  }

  /* Cancel the global button lift on mobile — sign-in sits in the header and the jump is disruptive */
  .landing-signin-btn:hover {
    transform: none;
  }

  /* Prevent brand from overflowing on narrow screens */
  .tailadmin-auth__brand,
  .landing-header {
    flex-wrap: nowrap;
  }

  .tailadmin-auth__brand .landing-brand,
  .landing-header .landing-brand {
    min-width: 0;
  }

  .landing-link--optional {
    display: none;
  }

  .landing-hero {
    min-height: auto;
  }

  .landing-hero h1 {
    font-size: 3rem;
  }

  .landing-board {
    padding: 1rem;
  }

  .landing-route,
  .landing-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .tailadmin-auth {
    padding: 1rem;
  }

  .tailadmin-auth__brand {
    align-items: center;
    margin-bottom: 1rem;
  }

  .tailadmin-auth__layout {
    min-height: auto;
  }

  .tailadmin-auth__panel h1 {
    font-size: 3rem;
  }
}

.dashboard-shell.dark {
  background: #101828;
}

.dashboard-shell main {
  background: transparent;
}

.dashboard-shell .tailadmin-page-header,
.dashboard-shell .panel > .eyebrow,
.dashboard-shell .panel > h1,
.dashboard-shell .panel > .panel-copy,
.dashboard-shell .section-header > div,
.dashboard-shell .table-card__header {
  display: none;
}

.dashboard-shell .section-header {
  justify-content: flex-end;
  margin-bottom: 1.4rem;
}

.dashboard-shell .flash-stack {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.dashboard-shell .flash {
  margin: 0;
  border-radius: 16px;
  border: 1px solid #e4e7ec;
  background: #ffffff;
  padding: 0.9rem 1rem;
  color: #344054;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
}

.dashboard-shell.dark .flash {
  border-color: #1f2937;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
}

.dashboard-shell .flash--notice {
  border-color: #b7e4c7;
}

.dashboard-shell .flash--alert {
  border-color: #fecaca;
}

.dashboard-shell .admin-grid,
.dashboard-shell .page-content {
  display: block;
}

.dashboard-shell .panel,
.dashboard-shell .dashboard-widget {
  border: 1px solid #e4e7ec;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.dashboard-shell.dark .panel,
.dashboard-shell.dark .dashboard-widget {
  border-color: #1f2937;
  background: #182131;
  box-shadow: none;
}

.dashboard-shell .panel {
  padding: 1.5rem;
}

.dashboard-shell .section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dashboard-shell .eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #667085;
}

.dashboard-shell.dark .eyebrow {
  color: #98a2b3;
}

.dashboard-shell h1,
.dashboard-shell .panel-title,
.dashboard-shell .sidebar-title {
  color: #101828;
}

.dashboard-shell.dark h1,
.dashboard-shell.dark .panel-title,
.dashboard-shell.dark .sidebar-title {
  color: rgba(255, 255, 255, 0.92);
}

.dashboard-shell .panel-copy,
.dashboard-shell .sidebar-copy {
  color: #667085;
}

.dashboard-shell.dark .panel-copy,
.dashboard-shell.dark .sidebar-copy {
  color: #98a2b3;
}

.dashboard-shell .tailadmin-search {
  min-width: 18rem;
}

.dashboard-shell .tailadmin-search::placeholder {
  color: #98a2b3;
}

.dashboard-shell.dark .tailadmin-search {
  color: rgba(255, 255, 255, 0.9);
}

.dashboard-shell .tailadmin-profile-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  color: #344054;
  cursor: pointer;
  padding: 0;
}

.dashboard-shell .tailadmin-profile-trigger__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: #465fff;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.dashboard-shell .tailadmin-profile-trigger__text {
  display: grid;
  min-width: 7rem;
  text-align: left;
}

.dashboard-shell .tailadmin-profile-trigger__text strong {
  color: #344054;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.dashboard-shell .tailadmin-profile-trigger__text small {
  color: #667085;
  font-size: 0.78rem;
  line-height: 1.3;
}

.dashboard-shell .tailadmin-profile-trigger__chevron {
  color: #667085;
  transition: transform 160ms ease;
}

.dashboard-shell .tailadmin-profile-menu {
  position: absolute;
  top: calc(100% + 0.95rem);
  right: 0;
  z-index: 999999;
  width: 16.25rem;
  overflow: hidden;
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.12);
}

.dashboard-shell .tailadmin-profile-menu__identity {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1rem 0.85rem;
}

.dashboard-shell .tailadmin-profile-menu__identity strong {
  color: #344054;
  font-size: 0.92rem;
}

.dashboard-shell .tailadmin-profile-menu__identity span {
  color: #667085;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.dashboard-shell .tailadmin-profile-menu__list,
.dashboard-shell .tailadmin-profile-menu__footer {
  border-top: 1px solid #f2f4f7;
  padding: 0.55rem;
}

.dashboard-shell .tailadmin-profile-menu__item,
.dashboard-shell .tailadmin-profile-menu__signout {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #667085;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.72rem 0.8rem;
  text-align: left;
  transition: 160ms ease;
}

.dashboard-shell .tailadmin-profile-menu__item:hover,
.dashboard-shell .tailadmin-profile-menu__signout:hover {
  background: #f9fafb;
  color: #344054;
}

.dashboard-shell .tailadmin-profile-menu__footer form,
.dashboard-shell .tailadmin-profile-menu__footer .button_to {
  margin: 0;
}

.dashboard-shell.dark .tailadmin-profile-trigger,
.dashboard-shell.dark .tailadmin-profile-trigger__text strong {
  color: rgba(255, 255, 255, 0.9);
}

.dashboard-shell.dark .tailadmin-profile-trigger__text small,
.dashboard-shell.dark .tailadmin-profile-trigger__chevron {
  color: #98a2b3;
}

.dashboard-shell.dark .tailadmin-profile-menu {
  border-color: #1f2937;
  background: #1d2738;
  box-shadow: none;
}

.dashboard-shell.dark .tailadmin-profile-menu__identity strong {
  color: rgba(255, 255, 255, 0.92);
}

.dashboard-shell.dark .tailadmin-profile-menu__identity span,
.dashboard-shell.dark .tailadmin-profile-menu__item,
.dashboard-shell.dark .tailadmin-profile-menu__signout {
  color: #98a2b3;
}

.dashboard-shell.dark .tailadmin-profile-menu__list,
.dashboard-shell.dark .tailadmin-profile-menu__footer {
  border-color: #344054;
}

.dashboard-shell.dark .tailadmin-profile-menu__item:hover,
.dashboard-shell.dark .tailadmin-profile-menu__signout:hover {
  background: #243041;
  color: rgba(255, 255, 255, 0.9);
}

.dashboard-shell .profile-page {
  display: grid;
}

.dashboard-shell .profile-shell {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}

.dashboard-shell .profile-card {
  border: 1px solid #e4e7ec;
  border-radius: 20px;
  background: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.dashboard-shell .profile-card--hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-shell .profile-identity {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.dashboard-shell .profile-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #465fff, #7a5af8);
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(70, 95, 255, 0.28);
}

.dashboard-shell .profile-identity h2,
.dashboard-shell .profile-card__header h3 {
  margin: 0;
  color: #101828;
  font-weight: 700;
}

.dashboard-shell .profile-identity h2 {
  font-size: 1.15rem;
}

.dashboard-shell .profile-identity p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 0.5rem 0 0;
  color: #667085;
  font-size: 0.92rem;
}

.dashboard-shell .profile-identity p span {
  width: 1px;
  height: 0.85rem;
  background: #d0d5dd;
}

.dashboard-shell .profile-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  border: 1px solid #e4e7ec;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 700;
  background: #f9fafb;
}

.dashboard-shell .profile-form {
  display: grid;
  gap: 1.5rem;
}

.dashboard-shell .profile-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.dashboard-shell .profile-card__header h3 {
  font-size: 1rem;
}

.dashboard-shell .profile-edit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid #d0d5dd;
  border-radius: 999px;
  background: #ffffff;
  color: #344054;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  transition: 160ms ease;
}

.dashboard-shell .profile-edit-button:hover {
  background: #f9fafb;
  border-color: #98a2b3;
}

.dashboard-shell .profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 3rem;
  max-width: 58rem;
}

.dashboard-shell .profile-grid .field {
  display: grid;
  gap: 0.5rem;
}

.dashboard-shell .profile-grid label,
.dashboard-shell .profile-readonly span {
  color: #667085;
  font-size: 0.82rem;
  font-weight: 600;
}

.dashboard-shell .profile-grid input {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  background: #ffffff;
  color: #101828;
  font: inherit;
  min-height: 2.9rem;
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: 160ms ease;
}

.dashboard-shell .profile-grid input:focus {
  border-color: #465fff;
  box-shadow: 0 0 0 4px rgba(70, 95, 255, 0.12);
}

.dashboard-shell .profile-grid .field--error label,
.dashboard-shell .profile-grid .field--error .field-error {
  color: #b42318;
}

.dashboard-shell .profile-grid .field--error input {
  border-color: #f04438;
  background: #fffbfa;
}

.dashboard-shell .profile-grid .field--error input:focus {
  border-color: #f04438;
  box-shadow: 0 0 0 4px rgba(240, 68, 56, 0.14);
}

.dashboard-shell .profile-readonly {
  display: grid;
  gap: 0.5rem;
}

.dashboard-shell .profile-readonly strong {
  color: #101828;
  font-size: 0.92rem;
}

.dashboard-shell .profile-errors {
  border-color: #fecdca;
  background: #fffbfa;
}

.dashboard-shell .profile-errors h3 {
  margin: 0 0 0.75rem;
  color: #b42318;
  font-size: 1rem;
}

.dashboard-shell .profile-errors ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #b42318;
  font-size: 0.9rem;
}

.dashboard-shell.dark .profile-card {
  border-color: #1f2937;
  background: #171f2f;
  box-shadow: none;
}

.dashboard-shell.dark .profile-identity h2,
.dashboard-shell.dark .profile-card__header h3,
.dashboard-shell.dark .profile-readonly strong {
  color: rgba(255, 255, 255, 0.92);
}

.dashboard-shell.dark .profile-identity p,
.dashboard-shell.dark .profile-grid label,
.dashboard-shell.dark .profile-readonly span {
  color: #98a2b3;
}

.dashboard-shell.dark .profile-identity p span {
  background: #344054;
}

.dashboard-shell.dark .profile-status,
.dashboard-shell.dark .profile-edit-button {
  border-color: #344054;
  background: #202b3d;
  color: rgba(255, 255, 255, 0.9);
}

.dashboard-shell.dark .profile-edit-button:hover {
  background: #263348;
  border-color: #475467;
}

.dashboard-shell.dark .profile-grid input {
  border-color: #344054;
  background: #111827;
  color: rgba(255, 255, 255, 0.92);
}

.dashboard-shell.dark .profile-grid input::placeholder {
  color: #667085;
}

.dashboard-shell.dark .profile-grid .field--error label,
.dashboard-shell.dark .profile-grid .field--error .field-error {
  color: #f97066;
}

.dashboard-shell.dark .profile-grid .field--error input {
  border-color: #f97066;
  background: rgba(127, 29, 29, 0.22);
}

.dashboard-shell.dark .profile-errors {
  border-color: rgba(240, 68, 56, 0.35);
  background: rgba(240, 68, 56, 0.08);
}

.dashboard-shell.dark .profile-errors h3,
.dashboard-shell.dark .profile-errors ul {
  color: #f97066;
}

@media (max-width: 767px) {
  .dashboard-shell .profile-card,
  .dashboard-shell .profile-card--hero {
    padding: 1rem;
  }

  .dashboard-shell .profile-card--hero,
  .dashboard-shell .profile-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-shell .profile-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .dashboard-shell .profile-avatar {
    width: 4rem;
    height: 4rem;
    font-size: 1.35rem;
  }
}

.status-page {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: #0f172a;
  color: #f8fafc;
  padding: 2rem;
}

.status-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(70, 95, 255, 0.14), transparent 34rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0), #0f172a 70%);
  pointer-events: none;
}

.status-page__grid {
  position: absolute;
  width: min(28rem, 36vw);
  aspect-ratio: 1;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.14) 1px, transparent 1px);
  background-size: 3.25rem 3.25rem;
  mask-image: linear-gradient(135deg, transparent 0%, #000 38%, #000 70%, transparent 100%);
}

.status-page__grid::after {
  content: "";
  position: absolute;
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(148, 163, 184, 0.12);
  box-shadow: 3.25rem 3.25rem 0 rgba(148, 163, 184, 0.08);
}

.status-page__grid--top {
  top: 0;
  right: 0;
}

.status-page__grid--top::after {
  top: 3.25rem;
  right: 3.25rem;
}

.status-page__grid--bottom {
  left: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.status-page__grid--bottom::after {
  bottom: 3.25rem;
  left: 3.25rem;
}

.status-page__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100%, 42rem);
  text-align: center;
}

.status-page__eyebrow {
  margin: 0 0 1rem;
  color: #f8fafc;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.status-page__code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1vw, 0.9rem);
  color: #7a74ff;
  font-size: clamp(5.5rem, 13vw, 10rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.status-page__code--failure,
.status-page__code--warning {
  color: #7a74ff;
}

.status-page__face {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: clamp(6rem, 14vw, 10rem);
  aspect-ratio: 1;
  border: clamp(0.8rem, 1.7vw, 1.4rem) solid currentColor;
  border-radius: 24%;
}

.status-page__face i {
  align-self: start;
  justify-self: center;
  width: 0.55em;
  height: 0.32em;
  margin-top: 0.22em;
  border-radius: 0.07em;
  background: currentColor;
}

.status-page__face b {
  position: absolute;
  left: 50%;
  bottom: 20%;
  width: 38%;
  height: 24%;
  border: 0.16em solid currentColor;
  border-bottom: 0;
  transform: translateX(-50%) rotate(180deg);
}

.status-page__content h1 {
  margin: 1.4rem 0 0;
  color: #f8fafc;
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.status-page__message {
  max-width: 36rem;
  margin: 1.45rem 0 0;
  color: #b4c0d5;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 600;
  line-height: 1.6;
}

.status-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  margin-top: 1.7rem;
  padding: 0 1.35rem;
  border: 1px solid #344054;
  border-radius: 8px;
  background: #1d2939;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: 160ms ease;
}

.status-page__button:hover {
  border-color: #465fff;
  background: #263448;
  color: #ffffff;
}

.status-page__mark {
  width: clamp(6rem, 10vw, 9rem);
  color: #7a74ff;
}

.status-page__mark svg {
  display: block;
  width: 100%;
  height: auto;
}

.status-page__mark--failure {
  color: #f97066;
}

.status-page__footer {
  position: absolute;
  z-index: 1;
  bottom: 1.75rem;
  left: 50%;
  color: #9aa7bd;
  font-size: 0.9rem;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .status-page {
    padding: 1.5rem;
  }

  .status-page__grid {
    width: 16rem;
    background-size: 2.5rem 2.5rem;
  }

  .status-page__footer {
    bottom: 1rem;
  }
}

.dashboard-shell .table-card__body {
  padding: 0;
}

.dashboard-shell .table-card {
  border-radius: 20px;
  border: 1px solid #e4e7ec;
  background: #ffffff;
  overflow: visible;
  box-shadow: none;
}

.dashboard-shell .admin-table,
.dashboard-shell .admin-table tbody,
.dashboard-shell .admin-table tr,
.dashboard-shell .admin-table td {
  overflow: visible;
}

.dashboard-shell.dark .table-card {
  border-color: #1f2937;
  background: #182131;
}

.dashboard-shell .table-card__header {
  padding: 1.25rem 1.5rem;
}

.dashboard-shell.dark .table-card__header {
  border-bottom-color: #1f2937;
}

.dashboard-shell .empty-state {
  border: 1px dashed #d0d5dd;
  border-radius: 20px;
  padding: 1.5rem;
  background: #f9fafb;
}

.dashboard-shell.dark .empty-state {
  border-color: #344054;
  background: #182131;
}

.dashboard-shell .button,
.dashboard-shell input[type="submit"],
.dashboard-shell button[type="submit"] {
  border-radius: 12px;
}

.tailadmin-sort-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
}

.tailadmin-sort-link--active {
  color: #465fff;
}

.tailadmin-sort-link__icon {
  font-size: 0.75rem;
  opacity: 0.75;
}

.tailadmin-actions {
  position: relative;
  display: inline-flex;
}

.tailadmin-actions summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.17rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  background: #ffffff;
  color: #667085;
  cursor: pointer;
  list-style: none;
}

.tailadmin-actions summary::-webkit-details-marker {
  display: none;
}

.tailadmin-actions summary span {
  width: 0.26rem;
  height: 0.26rem;
  border-radius: 999px;
  background: currentColor;
}

.tailadmin-actions__menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 50;
  display: grid;
  min-width: 10rem;
  padding: 0.55rem;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);
}

.admin-table tbody tr:last-child .tailadmin-actions__menu {
  top: auto;
  bottom: calc(100% + 0.45rem);
}

.tailadmin-actions:not([open]) .tailadmin-actions__menu {
  display: none;
}

.tailadmin-actions__item,
.tailadmin-actions__menu .button_to,
.tailadmin-actions__menu .button_to button {
  width: 100%;
}

.tailadmin-actions__item,
.tailadmin-actions__menu .button_to button {
  display: flex;
  justify-content: flex-start;
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 0.65rem 0.75rem;
  color: #344054;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: none;
}

.tailadmin-actions__item:hover,
.tailadmin-actions__menu .button_to button:hover {
  background: #f2f4f7;
}

.tailadmin-actions__item--danger,
.tailadmin-actions__menu .tailadmin-actions__item--danger {
  color: #d92d20;
}

.tailadmin-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
}

.tailadmin-pagination__meta {
  color: #667085;
  font-size: 0.9rem;
}

.tailadmin-pagination__controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.tailadmin-pagination__button,
.tailadmin-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  background: #ffffff;
  color: #344054;
  font-weight: 600;
}

.tailadmin-pagination__button {
  padding: 0 0.85rem;
}

.tailadmin-pagination__page--active {
  border-color: #465fff;
  background: #465fff;
  color: #ffffff;
}

.tailadmin-pagination__button--disabled {
  opacity: 0.45;
}

.tailadmin-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.tailadmin-badge--success {
  background: #ecfdf3;
  color: #039855;
}

.tailadmin-badge--warning {
  background: #fffaeb;
  color: #dc6803;
}

.tailadmin-badge--danger {
  background: #fef3f2;
  color: #d92d20;
}

.tailadmin-badge--muted {
  background: #f2f4f7;
  color: #667085;
}

.tailadmin-table-title {
  margin: 0 0 1.1rem;
  color: #101828;
  font-size: 1.05rem;
  font-weight: 700;
}

.dashboard-shell .feature-list div,
.dashboard-shell .stats div {
  background: #ffffff;
}

.dashboard-shell.dark .feature-list div,
.dashboard-shell.dark .stats div {
  border-color: #1f2937;
  background: #182131;
  color: rgba(255, 255, 255, 0.88);
}

.dashboard-shell.dark .admin-table,
.dashboard-shell.dark .admin-table th,
.dashboard-shell.dark .admin-table td {
  border-color: #243041;
  background: #182131;
  color: rgba(255, 255, 255, 0.88);
}

.dashboard-shell.dark .admin-table thead th {
  background: #1d2738;
  color: #98a2b3;
}

.dashboard-shell.dark .admin-table tbody tr:hover td {
  background: #1f2b3d;
}

.dashboard-shell.dark .table-person__content span,
.dashboard-shell.dark .panel-copy,
.dashboard-shell.dark .empty-state p {
  color: #98a2b3;
}

.dashboard-shell.dark .empty-state h2,
.dashboard-shell.dark .feature-list strong,
.dashboard-shell.dark .stats strong {
  color: rgba(255, 255, 255, 0.92);
}

.dashboard-shell.dark .pill--success {
  background: rgba(18, 183, 106, 0.16);
  color: #4ade80;
}

.dashboard-shell.dark .pill--danger {
  background: rgba(240, 68, 56, 0.18);
  color: #f87171;
}

.dashboard-shell.dark .pill--muted,
.dashboard-shell.dark .pill {
  color: #cbd5e1;
}

.dashboard-shell.dark .tailadmin-actions summary,
.dashboard-shell.dark .tailadmin-actions__menu,
.dashboard-shell.dark .tailadmin-pagination__button,
.dashboard-shell.dark .tailadmin-pagination__page {
  border-color: #344054;
  background: #1d2738;
  color: #cbd5e1;
}

.dashboard-shell.dark .tailadmin-actions__item,
.dashboard-shell.dark .tailadmin-actions__menu .button_to button {
  color: #d0d5dd;
}

.dashboard-shell.dark .tailadmin-actions__item:hover,
.dashboard-shell.dark .tailadmin-actions__menu .button_to button:hover {
  background: #243041;
}

.dashboard-shell.dark .tailadmin-actions__item--danger,
.dashboard-shell.dark .tailadmin-actions__menu .tailadmin-actions__item--danger {
  color: #f97066;
}

.dashboard-shell.dark .tailadmin-pagination__meta {
  color: #98a2b3;
}

.dashboard-shell.dark .tailadmin-pagination__page--active {
  border-color: #465fff;
  background: #465fff;
  color: #ffffff;
}

.dashboard-shell.dark .tailadmin-badge--success {
  background: rgba(3, 152, 85, 0.16);
  color: #32d583;
}

.dashboard-shell.dark .tailadmin-badge--warning {
  background: rgba(220, 104, 3, 0.16);
  color: #fdb022;
}

.dashboard-shell.dark .tailadmin-badge--danger {
  background: rgba(217, 45, 32, 0.18);
  color: #f97066;
}

.dashboard-shell.dark .tailadmin-badge--muted {
  background: rgba(152, 162, 179, 0.12);
  color: #cbd5e1;
}

.dashboard-shell.dark .tailadmin-table-title {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1024px) {
  .dashboard-shell .tailadmin-search {
    min-width: 0;
    width: 100%;
  }

  .dashboard-shell .section-header {
    flex-direction: column;
  }
}
