/* [project]/src/features/app-badge/tokens.css [app-client] (css) */
:root {
  --tbab-red: #ab0013;
  --tbab-red-hover: #d4001a;
  --tbab-dark-bg: #0a0a0a;
  --tbab-dark-mark-bg: #161616;
  --tbab-dark-text: #f5f5f5;
  --tbab-dark-text-muted: #9a9a9a;
  --tbab-dark-close: #777;
  --tbab-light-bg: #fff;
  --tbab-light-mark-bg: #f1f1f1;
  --tbab-light-text: #0a0a0a;
  --tbab-light-text-muted: #5a5a5a;
  --tbab-light-close: #999;
  --tbab-light-border: #00000014;
  --tbab-radius: 16px;
  --tbab-radius-mark: 10px;
  --tbab-radius-cta: 999px;
  --tbab-shadow: 0 12px 32px -8px #00000073;
  --tbab-shadow-light: 0 8px 24px -6px #0000002e;
}

/* [project]/src/features/app-badge/primitives.css [app-client] (css) */
.tb-app-badge {
  border-radius: var(--tbab-radius);
  isolation: isolate;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 520px;
  padding: 12px 14px;
  font-family: inherit;
  animation: .22s cubic-bezier(.22, 1, .36, 1) both tb-app-badge-in;
  display: flex;
  position: relative;
}

.tb-app-badge--dark {
  background: var(--tbab-dark-bg);
  color: var(--tbab-dark-text);
  box-shadow: var(--tbab-shadow);
}

.tb-app-badge--light {
  background: var(--tbab-light-bg);
  color: var(--tbab-light-text);
  border: 1px solid var(--tbab-light-border);
  box-shadow: var(--tbab-shadow-light);
}

.tb-app-badge__mark {
  border-radius: var(--tbab-radius-mark);
  background: #000;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: inline-flex;
}

.tb-app-badge__copy {
  flex-direction: column;
  flex: auto;
  gap: 2px;
  min-width: 0;
  line-height: 1.2;
  display: flex;
}

.tb-app-badge__title {
  letter-spacing: -.01em;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
}

.tb-app-badge__sub {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 400;
  overflow: hidden;
}

.tb-app-badge--dark .tb-app-badge__sub {
  color: var(--tbab-dark-text-muted);
}

.tb-app-badge--light .tb-app-badge__sub {
  color: var(--tbab-light-text-muted);
}

.tb-app-badge__cta {
  border-radius: var(--tbab-radius-cta);
  background: var(--tbab-red);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  border: 0;
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  transition: background .14s;
  display: inline-flex;
}

.tb-app-badge__cta:hover {
  background: var(--tbab-red-hover);
}

.tb-app-badge__cta:focus-visible {
  outline: 2px solid var(--tbab-red-hover);
  outline-offset: 2px;
}

.tb-app-badge__close {
  cursor: pointer;
  z-index: 1;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  transition: transform .14s;
  display: inline-flex;
  position: absolute;
  top: -9px;
  right: -9px;
  box-shadow: 0 2px 8px #0000004d;
}

.tb-app-badge--dark .tb-app-badge__close {
  background: var(--tbab-dark-mark-bg);
  color: var(--tbab-dark-text);
}

.tb-app-badge--light .tb-app-badge__close {
  background: var(--tbab-light-bg);
  color: var(--tbab-light-text);
  border: 1px solid var(--tbab-light-border);
}

.tb-app-badge__close:hover {
  transform: scale(1.06);
}

.tb-app-badge__close:focus-visible {
  outline-offset: 2px;
  outline: 2px solid;
}

@keyframes tb-app-badge-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tb-app-badge {
    animation: none;
  }

  .tb-app-badge__cta, .tb-app-badge__close {
    transition: none;
  }
}

/* [project]/src/features/location-prompt/tokens.css [app-client] (css) */
.tlp-layer {
  --tlp-red: #ab0013;
  --tlp-red-hover: #d4001a;
  --tlp-red-fg: #e0212f;
  --tlp-surface: #100c0dfa;
  --tlp-surface-2: #ffffff0d;
  --tlp-border: #ffffff1a;
  --tlp-text: #f6f4f4;
  --tlp-text-2: #ffffffa3;
  --tlp-text-3: #ffffff6b;
  --tlp-radius: 16px;
  --tlp-radius-pill: 999px;
  --tlp-shadow: 0 16px 48px #0000008c, 0 4px 16px #00000059;
  --tlp-blur: blur(20px);
  pointer-events: none;
  z-index: 40;
  font-family: var(--font-figtree), system-ui, sans-serif;
  position: fixed;
  inset: 0;
}

.tlp-layer > * {
  pointer-events: auto;
}

.tlp-layer[data-tone="light"] {
  --tlp-red-fg: #ab0013;
  --tlp-surface: #fcfafaf5;
  --tlp-surface-2: #0000000d;
  --tlp-border: #0000001a;
  --tlp-text: #18120f;
  --tlp-text-2: #180e10a8;
  --tlp-text-3: #180e1070;
  --tlp-shadow: 0 16px 48px #00000080, 0 4px 16px #0000004d;
}

.tlp-btn {
  border-radius: var(--tlp-radius-pill);
  letter-spacing: .005em;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 18px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  transition: background .15s, color .15s, transform .1s;
  display: inline-flex;
}

.tlp-btn:active:not(:disabled) {
  transform: scale(.97);
}

.tlp-btn:disabled {
  opacity: .65;
  cursor: default;
}

.tlp-btn--primary {
  background: var(--tlp-red);
  color: #fff;
}

.tlp-btn--primary:hover:not(:disabled) {
  background: var(--tlp-red-hover);
}

.tlp-btn--ghost {
  color: var(--tlp-text-2);
  background: none;
}

.tlp-btn--ghost:hover:not(:disabled) {
  background: var(--tlp-surface-2);
  color: var(--tlp-text);
}

.tlp-btn--block {
  width: 100%;
}

.tlp-iconbtn {
  width: 26px;
  height: 26px;
  color: var(--tlp-text-3);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: background .15s, color .15s;
  display: inline-flex;
}

.tlp-iconbtn:hover {
  background: var(--tlp-surface-2);
  color: var(--tlp-text);
}

.tlp-spinner {
  border: 2px solid #ab001340;
  border-top-color: var(--tlp-red-fg);
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.tlp-btn--primary .tlp-spinner {
  border-color: #fff #ffffff4d #ffffff4d;
}

@media (prefers-reduced-motion: no-preference) {
  .tlp-spinner {
    animation: .7s linear infinite tlp-spin;
  }
}

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

.tlp-microcopy {
  letter-spacing: .04em;
  color: var(--tlp-text-3);
  text-align: center;
  font-size: 10.5px;
}

.tlp-coin__pulse {
  opacity: 0;
  border: 1.5px solid #fff;
  border-radius: 50%;
  position: absolute;
  inset: -5px;
}

@media (prefers-reduced-motion: no-preference) {
  .tlp-coin__pulse {
    animation: 1.6s ease-out infinite tlp-pulse;
  }
}

@keyframes tlp-pulse {
  0% {
    opacity: .9;
    transform: scale(.75);
  }

  70% {
    opacity: 0;
    transform: scale(1.35);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .tlp-anim-side {
    animation: .45s cubic-bezier(.2, .7, .2, 1) tlp-side;
  }
}

@keyframes tlp-side {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tlp-sheet {
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  background: var(--tlp-surface);
  width: 372px;
  -webkit-backdrop-filter: var(--tlp-blur);
  border: 1px solid var(--tlp-border);
  box-shadow: var(--tlp-shadow);
  border-radius: 20px;
  flex-direction: column;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.tlp-sheet__close {
  z-index: 2;
  color: #fffc;
  background: #00000059;
  position: absolute;
  top: 12px;
  right: 12px;
}

.tlp-sheet__close:hover {
  color: #fff;
  background: #0000008c;
}

.tlp-sheet__visual {
  flex-shrink: 0;
  height: 148px;
  position: relative;
}

.tlp-sheet__globeimg {
  background: url("/location-globe.webp") 50% 30% / 165% no-repeat, #0c0809;
  position: absolute;
  inset: 0;
}

.tlp-sheet__visual:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg,
    #0000001a 0%,
    transparent 40%,
    var(--tlp-surface) 100%);
  position: absolute;
  inset: 0;
}

.tlp-sheet__pin {
  z-index: 1;
  color: #fff;
  background: var(--tlp-red);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  transition: background .25s;
  display: inline-flex;
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px #ab001340, 0 0 28px #d4001a80;
}

.tlp-sheet__pin--on {
  background: var(--tlp-red);
}

.tlp-sheet__body {
  z-index: 1;
  flex-direction: column;
  gap: 10px;
  padding: 14px 18px 16px;
  display: flex;
  position: relative;
}

.tlp-sheet__title {
  color: var(--tlp-text);
  letter-spacing: -.01em;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.tlp-sheet__sub {
  color: var(--tlp-text-2);
  text-wrap: pretty;
  font-size: 13px;
  line-height: 1.45;
}

.tlp-sheet__privacy {
  background: var(--tlp-surface-2);
  color: var(--tlp-text-3);
  border-radius: 10px;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 11px;
  font-size: 11.5px;
  line-height: 1.4;
  display: flex;
}

.tlp-sheet__privacy svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.tlp-sheet__actions {
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
  display: flex;
}

@media (max-width: 640px) {
  .tlp-sheet {
    width: auto;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 20px 20px 0 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  @media (prefers-reduced-motion: no-preference) {
    .tlp-anim-side {
      animation: .45s cubic-bezier(.2, .7, .2, 1) tlp-sheet-up;
    }
  }
}

@keyframes tlp-sheet-up {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=src_features_0217xrq._.css.map*/