/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --navy-900: #06122e;
  --navy-800: #0a1b3d;
  --navy-700: #132b59;
  --navy-600: #204173;
  --slate-700: #344158;
  --slate-600: #48566f;
  --slate-500: #6b7890;
  --gray-500: #8d99ad;
  --gray-400: #aeb9cc;
  --gray-300: #c7d0df;
  --gray-200: #dce3ed;
  --gray-100: #edf1f7;
  --gray-050: #f7f9fc;
  --white: #fff;
  --teal-700: #087b6c;
  --teal-600: #0e9e88;
  --teal-500: #12b48c;
  --teal-100: #c9eee8;
  --teal-050: #eaf6f4;
  --cyan-500: #12acc6;
  --cyan-400: #22c7de;
  --blue-600: #1559aa;
  --blue-500: #1e6fd0;
  --blue-050: #edf5ff;
  --amber-700: #8a5a12;
  --amber-100: #f7e8c7;
  --amber-050: #fff8e9;
  --danger-600: #c2414e;
  --danger-050: #fff0f1;
  --border-subtle: #0a1b3d17;
  --border-default: #0a1b3d26;
  --gradient-brand: linear-gradient(100deg, #0e9e88 0%, #22c7de 52%, #1e6fd0 100%);
  --gradient-brand-diag: linear-gradient(135deg, #0d8f7d 0%, #12adc3 50%, #1e6fd0 100%);
  --shadow-xs: 0 2px 8px #0a1b3d0d;
  --shadow-sm: 0 6px 18px #0a1b3d12;
  --shadow-md: 0 12px 30px #0a1b3d1c;
  --shadow-lg: 0 22px 60px #0a1b3d29;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --content-width: 520px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--gray-050);
  color: var(--navy-800);
}

body {
  background: radial-gradient(circle at 93% -5%, #22c7de1a, transparent 26rem),
    var(--gray-050);
  min-height: 100vh;
  color: var(--navy-800);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: Plus Jakarta Sans, Avenir Next, Segoe UI, sans-serif;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--teal-100);
  color: var(--navy-800);
}

.boot-screen {
  min-height: 100vh;
  color: var(--slate-500);
  place-content: center;
  justify-items: center;
  gap: 18px;
  font-size: 14px;
  display: grid;
}

.logo-mark {
  object-fit: contain;
}

.logo {
  align-items: center;
  gap: 10px;
  display: flex;
}

.logo > span {
  flex-direction: column;
  line-height: 1.05;
  display: flex;
}

.logo b {
  letter-spacing: -.03em;
  font-size: 17px;
}

.logo small {
  color: var(--teal-600);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 3px;
  font-size: 10px;
  font-weight: 750;
}

.app-layout, .app-main {
  min-height: 100vh;
}

.app-main--nav {
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

.page {
  width: min(100%, var(--content-width));
  padding: max(26px, env(safe-area-inset-top)) 20px 42px;
  margin: 0 auto;
}

.page--flush {
  padding-left: 0;
  padding-right: 0;
}

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

.page-header__top {
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  margin-bottom: 14px;
  display: flex;
}

.page-header h1 {
  letter-spacing: -.045em;
  margin: 3px 0 0;
  font-size: clamp(28px, 8vw, 36px);
  line-height: 1.08;
}

.eyebrow, .section-label {
  color: var(--slate-500);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
}

.section-heading {
  justify-content: space-between;
  align-items: baseline;
  margin: 24px 0 10px;
  display: flex;
}

.section-heading a, .text-link {
  color: var(--teal-600);
  font-size: 13px;
  font-weight: 700;
}

.muted {
  color: var(--slate-500);
}

.icon-button {
  border: 1px solid var(--border-subtle);
  background: var(--white);
  width: 42px;
  height: 42px;
  color: var(--navy-700);
  box-shadow: var(--shadow-xs);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .16s;
  display: inline-flex;
}

.icon-button:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

.icon-button--dark {
  color: #fff;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: none;
  background: #06122e99;
  border-color: #ffffff2e;
}

.button {
  letter-spacing: -.01em;
  border: 0;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 700;
  transition: transform .14s, background .16s, box-shadow .16s;
  display: inline-flex;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:active:not(:disabled) {
  transform: scale(.985);
}

.button:disabled {
  opacity: .52;
  cursor: not-allowed;
}

.button--sm {
  border-radius: 11px;
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}

.button--md {
  min-height: 48px;
}

.button--lg {
  border-radius: 16px;
  min-height: 58px;
  font-size: 16px;
}

.button--full {
  width: 100%;
}

.button--primary {
  color: #fff;
  background: var(--navy-800);
  box-shadow: var(--shadow-sm);
}

.button--primary:hover:not(:disabled) {
  background: var(--navy-700);
  box-shadow: var(--shadow-md);
}

.button--gradient {
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-md);
}

.button--secondary {
  color: var(--navy-800);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-xs);
  background: #fff;
}

.button--ghost {
  color: var(--teal-700);
  background: none;
}

.button--danger {
  color: var(--danger-600);
  background: var(--danger-050);
}

.spinner {
  border: 2px solid #0e9e8833;
  border-top-color: var(--teal-600);
  border-radius: 50%;
  animation: .76s linear infinite spin;
  display: inline-block;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
  border-radius: 20px;
}

.card--padded {
  padding: 18px;
}

.card--tint {
  background: var(--teal-050);
  border-color: var(--teal-100);
}

.stack {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.cluster {
  align-items: center;
  gap: 10px;
  display: flex;
}

.field {
  flex-direction: column;
  gap: 7px;
  display: flex;
}

.field label {
  color: var(--slate-600);
  font-size: 12px;
  font-weight: 700;
}

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  color: var(--navy-800);
  border: 1px solid var(--border-default);
  background: #fff;
  border-radius: 13px;
  outline: none;
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
}

.field textarea {
  resize: vertical;
  min-height: 84px;
  line-height: 1.45;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px #0e9e881f;
}

.field-hint {
  color: var(--slate-500);
  font-size: 11px;
  line-height: 1.45;
}

.form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px 12px;
  display: grid;
}

.form-grid .field--wide {
  grid-column: 1 / -1;
}

.alert {
  border-radius: 13px;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  font-size: 13px;
  line-height: 1.45;
  display: flex;
}

.alert--error {
  color: var(--danger-600);
  background: var(--danger-050);
  border: 1px solid #c2414e26;
}

.alert--warning {
  color: var(--amber-700);
  background: var(--amber-050);
  border: 1px solid var(--amber-100);
}

.alert--info {
  color: var(--teal-700);
  background: var(--teal-050);
  border: 1px solid var(--teal-100);
}

.bottom-nav {
  z-index: 40;
  height: calc(76px + env(safe-area-inset-bottom));
  padding: 8px 18px env(safe-area-inset-bottom);
  border-top: 1px solid var(--border-subtle);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  background: #ffffffe0;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.bottom-nav > a {
  width: 67px;
  color: var(--gray-500);
  flex-direction: column;
  align-items: center;
  gap: 4px;
  display: flex;
}

.bottom-nav > a > span {
  border-radius: 12px;
  place-content: center;
  width: 38px;
  height: 32px;
  display: grid;
}

.bottom-nav small {
  font-size: 10px;
  font-weight: 700;
}

.bottom-nav a.is-active {
  color: var(--teal-600);
}

.bottom-nav__capture {
  transform: translateY(-17px);
  color: var(--navy-800) !important;
}

.bottom-nav__capture > span {
  color: #fff;
  background: var(--gradient-brand);
  border: 4px solid var(--gray-050);
  box-shadow: var(--shadow-md);
  border-radius: 18px !important;
  width: 54px !important;
  height: 54px !important;
}

.bottom-nav__capture small {
  margin-top: 2px;
}

.desktop-sidebar {
  display: none;
}

.claim-list {
  overflow: hidden;
}

.claim-row {
  border-top: 1px solid var(--gray-100);
  align-items: center;
  gap: 11px;
  min-height: 70px;
  padding: 13px 14px;
  transition: background .15s;
  display: flex;
}

.claim-row:first-child {
  border-top: 0;
}

.claim-row:hover {
  background: var(--gray-050);
}

.claim-row--compact {
  min-height: 67px;
}

.merchant-avatar {
  background: var(--gray-050);
  border: 1px solid var(--border-subtle);
  width: 39px;
  height: 39px;
  color: var(--navy-700);
  border-radius: 12px;
  flex: none;
  place-content: center;
  font-size: 14px;
  font-weight: 800;
  display: grid;
}

.claim-row__copy {
  flex-direction: column;
  flex: 1;
  gap: 3px;
  min-width: 0;
  display: flex;
}

.claim-row__copy strong {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  overflow: hidden;
}

.claim-row__copy small, .claim-row__amount small {
  color: var(--slate-500);
  font-size: 11px;
}

.claim-row__amount {
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  display: flex;
}

.claim-row__amount > strong {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
}

.status {
  align-items: center;
  gap: 3px;
  font-weight: 700;
  display: inline-flex;
}

.status--success {
  color: var(--teal-600) !important;
}

.status--warning {
  color: var(--amber-700) !important;
}

.claim-row__chevron {
  color: var(--gray-400);
  flex: none;
}

.empty-state {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  min-height: 48vh;
  padding: 36px 18px;
  display: flex;
}

.empty-state__icon {
  width: 82px;
  height: 82px;
  color: var(--teal-600);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  background: #fff;
  border-radius: 50%;
  place-content: center;
  display: grid;
}

.empty-state h2 {
  letter-spacing: -.035em;
  margin: 0;
  font-size: 22px;
}

.empty-state p {
  max-width: 300px;
  color: var(--slate-600);
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

@media (min-width: 900px) {
  .app-layout:not(.app-layout--focused) {
    grid-template-columns: 250px minmax(0, 1fr);
    display: grid;
  }

  .desktop-sidebar {
    border-right: 1px solid var(--border-subtle);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    background: #ffffffc7;
    flex-direction: column;
    height: 100vh;
    padding: 28px 22px;
    display: flex;
    position: sticky;
    top: 0;
  }

  .desktop-sidebar nav {
    flex-direction: column;
    gap: 6px;
    margin-top: 42px;
    display: flex;
  }

  .desktop-sidebar nav a {
    min-height: 48px;
    color: var(--slate-600);
    border-radius: 13px;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 650;
    display: flex;
  }

  .desktop-sidebar nav a:hover {
    background: var(--gray-050);
  }

  .desktop-sidebar nav a.is-active {
    color: var(--teal-700);
    background: var(--teal-050);
  }

  .sidebar-capture {
    color: #fff;
    background: var(--navy-800);
    min-height: 50px;
    box-shadow: var(--shadow-sm);
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
  }

  .sidebar-note {
    color: var(--gray-500);
    margin-top: auto;
    font-size: 11px;
    font-weight: 650;
  }

  .bottom-nav {
    display: none;
  }

  .app-main--nav {
    padding-bottom: 0;
  }

  .page {
    padding-top: 46px;
    padding-bottom: 70px;
  }
}

@media (max-width: 380px) {
  .page {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .form-grid .field--wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.login-page {
  min-height: 100vh;
  padding: max(30px, env(safe-area-inset-top)) 22px max(28px, env(safe-area-inset-bottom));
  background: #fff;
  align-items: center;
  display: grid;
  position: relative;
  overflow: hidden;
}

.login-art {
  opacity: .65;
  width: 580px;
  height: 580px;
  position: absolute;
  top: -330px;
  right: -280px;
}

.login-art span {
  inset: calc(var(--ring, 0) * 44px);
  border: 1px solid #0a1b3d14;
  border-radius: 50%;
  position: absolute;
}

.login-art span:nth-child(2) {
  --ring: 1;
  border-color: #22c7de80;
}

.login-art span:nth-child(3) {
  --ring: 2;
}

.login-art span:nth-child(4) {
  --ring: 3;
}

.login-intro, .login-panel {
  z-index: 1;
  width: min(100%, 430px);
  margin: 0 auto;
  position: relative;
}

.login-intro {
  flex-direction: column;
  align-self: end;
  gap: 70px;
  padding-top: 30px;
  display: flex;
}

.login-intro h1 {
  letter-spacing: -.06em;
  margin: 8px 0 14px;
  font-size: clamp(46px, 14vw, 66px);
  line-height: .94;
}

.login-intro h1 em {
  color: #0000;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.login-intro > div > p:last-child {
  max-width: 390px;
  color: var(--slate-600);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.login-panel {
  align-self: start;
  margin-top: 44px;
  padding-bottom: 20px;
}

.login-panel__heading {
  margin-bottom: 22px;
}

.login-panel__heading h2 {
  letter-spacing: -.035em;
  margin: 0 0 5px;
  font-size: 24px;
}

.login-panel__heading p {
  color: var(--slate-500);
  margin: 0;
  font-size: 13px;
}

.login-field > span {
  align-items: center;
  display: flex;
  position: relative;
}

.login-field > span > svg {
  z-index: 1;
  color: var(--gray-500);
  position: absolute;
  left: 14px;
}

.login-field input {
  padding-left: 43px;
  padding-right: 44px;
}

.login-field button {
  width: 36px;
  height: 36px;
  color: var(--gray-500);
  background: none;
  border: 0;
  place-content: center;
  display: grid;
  position: absolute;
  right: 7px;
}

.demo-entry {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  display: flex;
}

.demo-entry > span {
  width: 100%;
  color: var(--gray-400);
  align-items: center;
  gap: 12px;
  font-size: 11px;
  display: flex;
}

.demo-entry > span:before, .demo-entry > span:after {
  content: "";
  background: var(--gray-200);
  flex: 1;
  height: 1px;
}

.demo-entry p {
  color: var(--gray-500);
  text-align: center;
  margin: 0;
  font-size: 11px;
}

.home-page {
  padding-top: max(24px, env(safe-area-inset-top));
}

.home-header {
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  display: flex;
}

.profile-avatar {
  color: #fff;
  background: var(--navy-800);
  border-radius: 50%;
  flex: none;
  place-content: center;
  width: 43px;
  height: 43px;
  font-size: 13px;
  font-weight: 800;
  display: grid;
}

.home-header > div {
  flex: 1;
  min-width: 0;
}

.home-header h1 {
  letter-spacing: -.03em;
  margin: 0;
  font-size: 19px;
}

.home-header p {
  color: var(--slate-500);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 3px 0 0;
  font-size: 12px;
  overflow: hidden;
}

.monthly-hero {
  color: #fff;
  background: var(--gradient-brand-diag);
  min-height: 164px;
  box-shadow: var(--shadow-md);
  border-radius: 24px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.monthly-hero__rings {
  border: 1px solid #fff3;
  border-radius: 50%;
  width: 270px;
  height: 270px;
  position: absolute;
  top: -100px;
  right: -75px;
  box-shadow: 0 0 0 18px #ffffff0f, 0 0 0 42px #ffffff0d, 0 0 0 70px #ffffff0a;
}

.monthly-hero > p {
  color: #ffffffd6;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 800;
  position: relative;
}

.monthly-hero__amount {
  letter-spacing: -.055em;
  font-variant-numeric: tabular-nums;
  font-size: clamp(38px, 11vw, 48px);
  font-weight: 800;
  line-height: 1;
  position: relative;
}

.monthly-hero__meta {
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
  display: flex;
  position: relative;
}

.monthly-hero__meta span {
  background: #ffffff2b;
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.home-capture {
  color: #fff;
  background: var(--navy-800);
  min-height: 59px;
  box-shadow: var(--shadow-md);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 750;
  transition: all .16s;
  display: flex;
}

.home-capture:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
}

.automation-cards {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 13px;
  display: grid;
}

.automation-cards .card {
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 12px;
  display: flex;
}

.automation-cards .card > span {
  width: 31px;
  height: 31px;
  color: var(--teal-600);
  background: var(--teal-050);
  border-radius: 50%;
  flex: none;
  place-content: center;
  display: grid;
}

.automation-cards .card:nth-child(2) > span {
  color: var(--blue-600);
  background: var(--blue-050);
}

.automation-cards .card > div {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.automation-cards strong {
  font-size: 12px;
}

.automation-cards small {
  color: var(--slate-500);
  white-space: nowrap;
  font-size: 10px;
}

.loading-card {
  min-height: 92px;
  color: var(--slate-500);
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  display: flex;
}

.home-empty {
  color: var(--teal-600);
  align-items: center;
  gap: 13px;
  padding: 18px;
  display: flex;
}

.home-empty div {
  color: var(--navy-800);
  flex-direction: column;
  gap: 3px;
  display: flex;
}

.home-empty strong {
  font-size: 14px;
}

.home-empty span {
  color: var(--slate-500);
  font-size: 11px;
}

.ready-card {
  border: 1px solid var(--teal-100);
  color: var(--teal-600);
  background: var(--teal-050);
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
  padding: 16px 17px;
  display: flex;
}

.ready-card div {
  flex-direction: column;
  gap: 3px;
  display: flex;
}

.ready-card strong {
  color: var(--navy-800);
  font-size: 14px;
}

.ready-card span {
  color: var(--teal-700);
  font-size: 11px;
}

.home-page .alert button {
  color: inherit;
  background: none;
  border: 0;
  margin-left: auto;
  font-size: 12px;
  font-weight: 800;
}

@media (min-width: 760px) {
  .login-page {
    background: linear-gradient(110deg, white 0 54%, var(--gray-050) 54% 100%);
    grid-template-columns: minmax(320px, 560px) minmax(360px, 450px);
    justify-content: center;
    gap: 8vw;
    padding: 46px;
  }

  .login-intro {
    align-self: center;
    gap: 110px;
  }

  .login-panel {
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    background: #ffffffe0;
    border-radius: 24px;
    align-self: center;
    margin: 0;
    padding: 34px;
  }
}

.capture-page {
  z-index: 20;
  width: 100%;
  height: 100dvh;
  min-height: 0;
  padding: max(12px, env(safe-area-inset-top)) 16px max(10px, env(safe-area-inset-bottom));
  color: #fff;
  background: var(--navy-900);
  flex-direction: column;
  display: flex;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.capture-header {
  flex: 0 0 52px;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  display: flex;
}

.capture-header strong {
  font-size: 15px;
}

.capture-header .icon-button {
  width: 39px;
  height: 39px;
}

.capture-header .icon-button:disabled {
  cursor: default;
  opacity: .34;
}

.capture-header .icon-button.is-active {
  color: #ffe28b;
  background: #ffe28b1f;
  border-color: #ffe28b7a;
}

.camera-viewport {
  background: linear-gradient(160deg, #173363, #06122e);
  border-radius: 24px;
  flex: 1 1 0;
  min-height: 0;
  margin: 6px 0 8px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #ffffff17;
}

.camera-viewport video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.camera-shade {
  pointer-events: none;
  background: radial-gradient(#0000 30%, #040c1f1f 67%, #040c1f80 100%);
  position: absolute;
  inset: 0;
}

.document-outline {
  pointer-events: none;
  border: 1px solid #12b48cb3;
  border-radius: 12px;
  position: absolute;
  inset: 8% 9% 16%;
  box-shadow: 0 0 25px #22c7de1f;
}

.document-outline i {
  filter: drop-shadow(0 0 5px #22c7de80);
  border-style: solid;
  border-color: #2ac7a6;
  width: 34px;
  height: 34px;
  position: absolute;
}

.document-outline i:first-child {
  border-width: 3px 0 0 3px;
  border-radius: 9px 0 0;
  top: -2px;
  left: -2px;
}

.document-outline i:nth-child(2) {
  border-width: 3px 3px 0 0;
  border-radius: 0 9px 0 0;
  top: -2px;
  right: -2px;
}

.document-outline i:nth-child(3) {
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 9px;
  bottom: -2px;
  left: -2px;
}

.document-outline i:nth-child(4) {
  border-width: 0 3px 3px 0;
  border-radius: 0 0 9px;
  bottom: -2px;
  right: -2px;
}

.detected-document {
  z-index: 2;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.detected-document polygon {
  fill: #12b48c14;
  stroke: #26d3ac;
  stroke-width: 5px;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 6px #26d3aca8);
  transition: all .18s;
}

.detected-document circle {
  fill: #fff;
  stroke: #12b48c;
  stroke-width: 4px;
  vector-effect: non-scaling-stroke;
}

.detected-document.is-stable polygon {
  fill: #26d3ac2b;
  stroke: #61f2ce;
}

.camera-guidance {
  z-index: 4;
  color: #fffffff0;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #06122eb8;
  border: 1px solid #ffffff29;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  width: max-content;
  max-width: calc(100% - 24px);
  min-height: 34px;
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  position: absolute;
  bottom: 18px;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
}

.camera-guidance.has-document {
  border-color: #26d3ac80;
}

.camera-guidance > span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.camera-guidance > i {
  width: var(--scan-progress);
  background: #34e4bd;
  height: 2px;
  transition: width .18s linear;
  position: absolute;
  bottom: 0;
  left: 0;
}

.camera-loading {
  color: #fffc;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  display: flex;
  position: absolute;
  inset: 0;
}

.camera-loading .spinner {
  border-color: #fff #ffffff40 #ffffff40;
  width: 26px;
  height: 26px;
}

.camera-capturing {
  z-index: 6;
  color: #fff;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: #06122e94;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  font-weight: 750;
  display: flex;
  position: absolute;
  inset: 0;
}

.camera-capturing .spinner {
  border-color: #fff #ffffff3d #ffffff3d;
  width: 30px;
  height: 30px;
}

.camera-viewport--unavailable {
  background: linear-gradient(155deg, #10244d, #06122e);
  place-content: center;
  display: grid;
}

.camera-fallback {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 290px;
  padding: 24px;
  display: flex;
}

.camera-fallback > span {
  background: #ffffff14;
  border-radius: 50%;
  place-content: center;
  width: 68px;
  height: 68px;
  display: grid;
}

.camera-fallback h1 {
  margin: 7px 0 0;
  font-size: 21px;
}

.camera-fallback p {
  color: #ffffffa6;
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.55;
}

.capture-controls {
  flex: 0 0 78px;
  grid-template-columns: 1fr 90px 1fr;
  place-items: center;
  height: 78px;
  display: grid;
}

.capture-option {
  color: #ffffffb8;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  display: flex;
}

.capture-option input {
  opacity: 0;
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

.capture-option > span {
  background: #ffffff14;
  border-radius: 11px;
  place-content: center;
  width: 39px;
  height: 35px;
  display: grid;
}

.capture-option small {
  font-size: 10px;
  font-weight: 700;
}

.shutter {
  background: none;
  border: 3px solid #fff;
  border-radius: 50%;
  place-content: center;
  width: 71px;
  height: 71px;
  padding: 5px;
  display: grid;
}

.shutter span {
  background: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  transition: all .12s;
}

.shutter:active span {
  transform: scale(.88);
}

.shutter:disabled {
  opacity: .32;
}

.capture-note {
  color: #ffffff7a;
  text-align: center;
  flex: none;
  max-width: 370px;
  margin: 2px auto 0;
  font-size: 9px;
  line-height: 1.35;
}

.capture-error {
  color: #ffd9dd;
  background: #c2414e2e;
  border: 1px solid #ffffff1f;
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 11px;
}

@media (max-height: 700px) and (max-width: 699px) {
  .capture-page {
    padding-top: max(6px, env(safe-area-inset-top));
    padding-bottom: max(6px, env(safe-area-inset-bottom));
  }

  .capture-header {
    flex-basis: 46px;
    min-height: 46px;
  }

  .camera-viewport {
    border-radius: 20px;
    margin-top: 3px;
  }

  .capture-controls {
    flex-basis: 70px;
    height: 70px;
  }

  .shutter {
    width: 64px;
    height: 64px;
  }

  .shutter span {
    width: 49px;
    height: 49px;
  }

  .camera-guidance {
    bottom: 12px;
  }

  .capture-note {
    display: none;
  }
}

.processing-page {
  width: min(100%, 480px);
  min-height: 100svh;
  padding: max(70px, env(safe-area-inset-top)) 25px max(36px, env(safe-area-inset-bottom));
  background: #fff;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  display: flex;
}

.processing-visual {
  width: 198px;
  height: 232px;
  color: var(--teal-600);
  place-content: center;
  margin-top: 18px;
  display: grid;
  position: relative;
}

.processing-visual > img {
  object-fit: cover;
  width: 134px;
  height: 184px;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  border-radius: 8px;
  transform: rotate(-1.5deg);
}

.processing-orbit {
  animation: processingPulse 2.4s var(--ease) infinite;
  border: 1px solid #0e9e882e;
  border-radius: 50%;
  position: absolute;
  inset: 18px 0;
}

.processing-orbit--two {
  border-color: #22c7de1a;
  animation-delay: .35s;
  inset: 2px -18px;
}

.processing-scan {
  z-index: 2;
  border-bottom: 2px solid var(--cyan-400);
  background: linear-gradient(#0000, #22c7de36);
  height: 45px;
  animation: 1.9s ease-in-out infinite scanReceipt;
  position: absolute;
  top: 37px;
  left: 25px;
  right: 25px;
  box-shadow: 0 7px 20px #22c7de59;
}

@keyframes scanReceipt {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(132px);
  }
}

@keyframes processingPulse {
  50% {
    opacity: .45;
    transform: scale(1.04);
  }
}

.processing-copy {
  text-align: center;
  margin-top: 34px;
}

.processing-copy h1 {
  letter-spacing: -.045em;
  margin: 8px 0 7px;
  font-size: 29px;
}

.processing-copy > p:last-child {
  color: var(--slate-600);
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.processing-steps {
  border: 1px solid var(--border-subtle);
  background: var(--gray-050);
  border-radius: 18px;
  width: 100%;
  margin-top: 34px;
  padding: 6px 18px;
}

.processing-steps > div {
  min-height: 51px;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-200);
  align-items: center;
  gap: 12px;
  display: flex;
}

.processing-steps > div:first-child {
  border: 0;
}

.processing-steps > div > span {
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  place-content: center;
  width: 25px;
  height: 25px;
  font-size: 10px;
  font-weight: 800;
  display: grid;
}

.processing-steps strong {
  font-size: 12px;
}

.processing-steps .is-complete {
  color: var(--teal-700);
}

.processing-steps .is-complete > span {
  color: #fff;
  background: var(--teal-600);
  border-color: var(--teal-600);
}

.processing-steps .is-current {
  color: var(--navy-800);
}

.processing-steps .is-current > span {
  border-color: var(--teal-500);
}

.processing-steps .spinner {
  width: 13px;
  height: 13px;
}

.processing-actions {
  width: 100%;
  margin-top: 34px;
}

.processing-actions p {
  color: var(--slate-500);
  text-align: center;
  margin: 4px 20px 0;
  font-size: 10px;
  line-height: 1.5;
}

@media (min-width: 700px) {
  .capture-page {
    width: 440px;
    height: min(900px, 100dvh - 42px);
    min-height: 0;
    box-shadow: var(--shadow-lg);
    border-radius: 38px;
    margin: 21px auto;
    position: relative;
    inset: auto;
  }

  .app-layout--focused {
    background: #e8edf5;
    place-content: center;
    display: grid;
  }

  .app-layout--focused .app-main {
    width: 100vw;
  }

  .processing-page {
    min-height: min(820px, 100vh - 42px);
    box-shadow: var(--shadow-lg);
    border-radius: 32px;
    margin: 21px auto;
  }
}

.month-total {
  color: #fff;
  background: var(--navy-800);
  box-shadow: var(--shadow-md);
  border-radius: 22px;
  padding: 23px 21px;
  position: relative;
  overflow: hidden;
}

.month-total:after {
  content: "";
  border: 1px solid #22c7de59;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  position: absolute;
  top: -80px;
  right: -65px;
  box-shadow: 0 0 0 22px #ffffff08, 0 0 0 48px #ffffff05;
}

.month-total > p {
  z-index: 1;
  color: #ffffff9e;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 5px;
  font-size: 10px;
  font-weight: 800;
  position: relative;
}

.month-total > strong {
  z-index: 1;
  letter-spacing: -.05em;
  font-size: 39px;
  display: block;
  position: relative;
}

.month-total > div {
  z-index: 1;
  gap: 8px;
  margin-top: 14px;
  display: flex;
  position: relative;
}

.month-total > div span {
  background: #ffffff1c;
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}

.month-section {
  margin-top: 15px;
}

.month-section__heading {
  margin: 0 0 16px;
}

.month-section__heading > span {
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 700;
}

.category-bars {
  flex-direction: column;
  gap: 17px;
  display: flex;
}

.category-bars > div > div {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}

.category-bars span {
  color: var(--slate-700);
  font-size: 12px;
  font-weight: 650;
}

.category-bars strong {
  font-size: 12px;
}

.category-bars i {
  background: var(--gray-100);
  border-radius: 999px;
  height: 6px;
  margin-top: 7px;
  display: block;
  overflow: hidden;
}

.category-bars b {
  border-radius: inherit;
  height: 100%;
  display: block;
}

.category-bars small {
  color: var(--gray-500);
  margin-top: 4px;
  font-size: 9px;
  display: block;
}

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

.receipt-strip a {
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 0;
  display: flex;
}

.receipt-strip a > span {
  aspect-ratio: .8;
  border: 1px solid var(--border-subtle);
  width: 100%;
  color: var(--navy-700);
  background: linear-gradient(150deg, white, var(--gray-100));
  box-shadow: var(--shadow-xs);
  border-radius: 8px;
  place-content: center;
  font-size: 16px;
  font-weight: 800;
  display: grid;
}

.receipt-strip small {
  width: 100%;
  color: var(--slate-500);
  white-space: nowrap;
  text-align: center;
  text-overflow: ellipsis;
  font-size: 8px;
  overflow: hidden;
}

.month-actions {
  flex-direction: column;
  gap: 10px;
  margin-top: 19px;
  display: flex;
}

.print-action {
  min-height: 38px;
  color: var(--slate-500);
  background: none;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.settings-header {
  padding: 19px 0 17px;
}

.settings-header h1 {
  letter-spacing: -.05em;
  margin: 6px 0 0;
  font-size: 35px;
}

.profile-card {
  align-items: center;
  gap: 12px;
  padding: 16px;
  display: flex;
}

.profile-card > span {
  color: #fff;
  background: var(--navy-800);
  border-radius: 50%;
  place-content: center;
  width: 48px;
  height: 48px;
  font-size: 14px;
  font-weight: 800;
  display: grid;
}

.profile-card > div {
  flex-direction: column;
  flex: 1;
  gap: 3px;
  min-width: 0;
  display: flex;
}

.profile-card strong {
  font-size: 15px;
}

.profile-card small {
  color: var(--slate-500);
  text-overflow: ellipsis;
  font-size: 11px;
  overflow: hidden;
}

.profile-card > i {
  color: var(--teal-700);
  background: var(--teal-050);
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.settings-label {
  color: var(--slate-500);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 22px 4px 7px;
  font-size: 10px;
  font-weight: 800;
}

.settings-group {
  overflow: hidden;
}

.settings-row {
  border-top: 1px solid var(--gray-100);
  align-items: center;
  gap: 11px;
  min-height: 66px;
  padding: 12px 14px;
  display: flex;
}

.settings-row:first-child {
  border: 0;
}

.settings-icon {
  width: 34px;
  height: 34px;
  color: var(--navy-600);
  background: var(--gray-100);
  border-radius: 10px;
  flex: none;
  place-content: center;
  display: grid;
}

.settings-icon--teal {
  color: var(--teal-600);
  background: var(--teal-050);
}

.settings-icon--blue {
  color: var(--blue-600);
  background: var(--blue-050);
}

.settings-row > div {
  flex-direction: column;
  flex: 1;
  gap: 3px;
  min-width: 0;
  display: flex;
}

.settings-row strong {
  font-size: 12px;
}

.settings-row small {
  color: var(--slate-500);
  font-size: 9px;
  line-height: 1.4;
}

.settings-row > b {
  max-width: 120px;
  color: var(--slate-600);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 10px;
  overflow: hidden;
}

.settings-row > select {
  border: 1px solid var(--border-default);
  background: #fff;
  border-radius: 10px;
  max-width: 125px;
  min-height: 36px;
  font-size: 10px;
}

.settings-row > svg {
  color: var(--gray-400);
}

.settings-row .settings-ok {
  color: var(--teal-600);
}

.settings-connected {
  color: var(--teal-600);
  font-size: 9px;
  font-weight: 800;
}

.settings-page > .button {
  margin-top: 24px;
}

.settings-footnote {
  color: var(--gray-500);
  text-align: center;
  margin: 15px 24px 0;
  font-size: 9px;
  line-height: 1.5;
}

.coa-intro {
  color: var(--slate-600);
  margin: -4px 0 17px;
  font-size: 12px;
  line-height: 1.55;
}

.coa-page > .alert {
  margin-bottom: 13px;
}

.coa-search {
  border: 1px solid var(--border-default);
  min-height: 44px;
  color: var(--gray-500);
  background: #fff;
  border-radius: 13px;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  padding: 0 13px;
  display: flex;
}

.coa-search input {
  min-width: 0;
  color: var(--navy-800);
  background: none;
  border: 0;
  outline: 0;
  flex: 1;
  font-size: 12px;
}

.coa-list {
  overflow: hidden;
}

.coa-row {
  border-top: 1px solid var(--gray-100);
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 11px 12px;
  display: flex;
}

.coa-row:first-child {
  border: 0;
}

.coa-row.is-disabled {
  opacity: .55;
}

.coa-status {
  color: #fff;
  background: var(--teal-600);
  border-radius: 50%;
  flex: none;
  place-content: center;
  width: 26px;
  height: 26px;
  display: grid;
}

.coa-row.is-disabled .coa-status {
  background: var(--gray-200);
}

.coa-row > div {
  flex-direction: column;
  flex: 1;
  gap: 4px;
  min-width: 0;
  display: flex;
}

.coa-row strong {
  font-size: 12px;
}

.coa-row small {
  color: var(--slate-500);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 9px;
  line-height: 1.35;
  overflow: hidden;
}

.coa-toggle {
  background: var(--teal-600);
  border: 0;
  border-radius: 999px;
  flex: none;
  width: 37px;
  height: 22px;
  padding: 2px;
  position: relative;
}

.coa-toggle i {
  background: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  margin-left: 15px;
  transition: all .15s;
  display: block;
  box-shadow: 0 1px 4px #0003;
}

.coa-row.is-disabled .coa-toggle {
  background: var(--gray-300);
}

.coa-row.is-disabled .coa-toggle i {
  margin-left: 0;
}

.coa-edit {
  width: 34px;
  height: 34px;
  color: var(--slate-500);
  background: none;
  border: 0;
  flex: none;
  place-content: center;
  padding: 0;
  display: grid;
}

.coa-empty {
  color: var(--slate-500);
  text-align: center;
  padding: 30px 18px;
  font-size: 11px;
}

.sheet-backdrop {
  z-index: 60;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #06122e70;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: fixed;
  inset: 0;
}

.editor-sheet {
  width: min(100%, 540px);
  max-height: 92svh;
  padding: 21px 20px max(22px, env(safe-area-inset-bottom));
  box-shadow: var(--shadow-lg);
  animation: sheetUp .28s var(--ease);
  background: #fff;
  border-radius: 26px 26px 0 0;
  overflow-y: auto;
}

.editor-sheet header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.editor-sheet h2 {
  letter-spacing: -.035em;
  margin: 5px 0 0;
  font-size: 21px;
}

.editor-sheet > .button {
  margin-top: 20px;
}

.switch-row {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 57px;
  display: flex;
}

.switch-row > span {
  flex-direction: column;
  gap: 3px;
  display: flex;
}

.switch-row strong {
  font-size: 12px;
}

.switch-row small {
  color: var(--slate-500);
  font-size: 9px;
}

.switch-row input {
  opacity: 0;
  position: absolute;
}

.switch-row > i {
  background: var(--gray-300);
  border-radius: 999px;
  width: 43px;
  height: 25px;
  padding: 3px;
}

.switch-row > i:after {
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 19px;
  height: 19px;
  transition: all .15s;
  display: block;
  box-shadow: 0 1px 4px #0000002e;
}

.switch-row input:checked + i {
  background: var(--teal-600);
}

.switch-row input:checked + i:after {
  transform: translateX(18px);
}

@keyframes sheetUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
}

@media print {
  .desktop-sidebar, .bottom-nav, .month-actions, .page-header__top {
    display: none !important;
  }

  .app-layout {
    display: block !important;
  }

  .page {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .card, .month-total {
    box-shadow: none;
    break-inside: avoid;
  }
}

@media (min-width: 700px) {
  .editor-sheet {
    border-radius: 26px;
    margin-bottom: 28px;
  }
}

.detail-loading {
  min-height: 100svh;
  color: var(--slate-500);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  display: flex;
}

.claim-detail--review {
  padding-bottom: 140px;
}

.duplicate-alert > div {
  flex-direction: column;
  gap: 3px;
  display: flex;
}

.duplicate-alert strong {
  font-size: 13px;
}

.duplicate-alert span {
  font-size: 11px;
}

.receipt-preview {
  background: linear-gradient(155deg, #eef2f8, #dce5f0);
  place-content: center;
  height: 220px;
  margin-bottom: 15px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.receipt-preview > img, .receipt-preview > iframe {
  object-fit: contain;
  border: 0;
  width: 100%;
  height: 100%;
}

.receipt-preview > div {
  color: var(--slate-500);
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  display: flex;
}

.ai-badge {
  min-height: 28px;
  color: var(--teal-700);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xs);
  background: #ffffffe0;
  border: 1px solid #fff9;
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.review-card {
  padding: 18px;
}

.money-input {
  align-items: center;
  display: flex;
  position: relative;
}

.money-input > span {
  z-index: 1;
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 800;
  position: absolute;
  left: 13px;
}

.money-input input {
  font-variant-numeric: tabular-nums;
  padding-left: 48px;
}

.review-required {
  color: var(--amber-700);
  background: var(--amber-050);
  border-radius: 11px;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 10px 12px;
  font-size: 11px;
  display: flex;
}

.sticky-action {
  z-index: 20;
  padding: 13px max(20px, calc((100vw - var(--content-width)) / 2)) max(15px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border-subtle);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: #ffffffe6;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.claim-facts {
  overflow: hidden;
}

.claim-facts > div {
  border-top: 1px solid var(--gray-100);
  grid-template-columns: 105px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 15px;
  display: grid;
}

.claim-facts > div:first-child {
  border-top: 0;
}

.claim-facts span {
  color: var(--slate-500);
  font-size: 11px;
  font-weight: 650;
}

.claim-facts strong {
  text-align: right;
  justify-self: end;
  font-size: 13px;
}

.confirmed-text {
  color: var(--teal-600);
  align-items: center;
  gap: 5px;
  display: inline-flex;
}

.success-page {
  width: min(100%, 480px);
  min-height: 100svh;
  padding: max(76px, env(safe-area-inset-top)) 24px max(28px, env(safe-area-inset-bottom));
  background: #fff;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  display: flex;
}

.success-mark {
  color: #fff;
  background: var(--gradient-brand);
  border-radius: 50%;
  place-content: center;
  width: 92px;
  height: 92px;
  display: grid;
  position: relative;
  box-shadow: 0 14px 36px #0e9e883d;
}

.success-mark:after {
  content: "";
  border: 1px solid var(--teal-100);
  border-radius: 50%;
  position: absolute;
  inset: -12px;
}

.success-copy {
  text-align: center;
  margin-top: 34px;
}

.success-copy h1 {
  letter-spacing: -.055em;
  margin: 8px 0;
  font-size: 43px;
}

.success-copy > p:last-child {
  color: var(--slate-600);
  margin: 0;
  font-size: 14px;
}

.success-work {
  width: 100%;
  margin-top: 34px;
  padding: 7px 16px;
}

.success-work > div {
  border-top: 1px solid var(--gray-100);
  align-items: center;
  gap: 11px;
  min-height: 54px;
  display: flex;
}

.success-work > div:first-child {
  border: 0;
}

.success-work > div > span {
  width: 31px;
  height: 31px;
  color: var(--teal-600);
  background: var(--teal-050);
  border-radius: 50%;
  place-content: center;
  display: grid;
}

.success-work strong {
  flex: 1;
  font-size: 12px;
}

.success-work > div > svg {
  color: var(--teal-600);
}

.success-actions {
  width: 100%;
  margin-top: auto;
  padding-top: 36px;
}

.claims-header {
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px 0 21px;
  display: flex;
}

.claims-header h1 {
  letter-spacing: -.05em;
  margin: 6px 0 0;
  font-size: 35px;
}

.claims-header > span {
  border: 1px solid var(--border-subtle);
  width: 41px;
  height: 41px;
  color: var(--navy-600);
  background: #fff;
  border-radius: 50%;
  place-content: center;
  display: grid;
}

.claim-filters {
  scrollbar-width: none;
  gap: 8px;
  margin: 0 -20px;
  padding: 0 20px 5px;
  display: flex;
  overflow-x: auto;
}

.claim-filters::-webkit-scrollbar {
  display: none;
}

.claim-filters select {
  border: 1px solid var(--border-default);
  max-width: 155px;
  min-height: 38px;
  color: var(--slate-700);
  background: #fff;
  border-radius: 11px;
  outline: none;
  padding: 0 30px 0 12px;
  font-size: 11px;
  font-weight: 650;
}

.claims-count {
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  justify-content: space-between;
  align-items: center;
  margin: 15px 2px 9px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
}

.claims-count span:last-child {
  color: var(--teal-600);
}

.claims-list-full .claim-row {
  min-height: 77px;
}

@media (min-width: 700px) {
  .success-page {
    min-height: min(820px, 100vh - 42px);
    box-shadow: var(--shadow-lg);
    border-radius: 32px;
    margin: 21px auto;
  }

  .sticky-action {
    width: var(--content-width);
    border: 1px solid var(--border-subtle);
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

/*# sourceMappingURL=src_app_globals_162hn9o.css.map*/