/* AIWEB Calls — Instagram/TikTok-style conversation center */

.calls-inbox {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  background: #fff;
  color: #0a0a0a;
}

.calls-inbox__head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 48px;
  padding: 8px 12px;
  border-bottom: 1px solid #f0f0f0;
}

.calls-inbox__title {
  margin: 0;
  font: 700 17px/1.2 system-ui, -apple-system, sans-serif;
  letter-spacing: -0.02em;
}

.calls-inbox__head-right {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.calls-inbox__search-wrap {
  padding: 8px 12px 4px;
}

.calls-inbox__search {
  width: 100%;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: #efefef;
  padding: 0 12px;
  font: 400 14px/1 system-ui, sans-serif;
  color: #0a0a0a;
}

.calls-inbox__search::-moz-placeholder {
  color: #8e8e8e;
}

.calls-inbox__search::placeholder {
  color: #8e8e8e;
}

.calls-inbox__tabs {
  display: flex;
  gap: 8px;
  padding: 8px 12px 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.calls-inbox__tabs::-webkit-scrollbar {
  display: none;
}

.calls-inbox__tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #efefef;
  color: #0a0a0a;
  font: 600 13px/1 system-ui, sans-serif;
}

.calls-inbox__tab.is-on {
  background: #0a0a0a;
  color: #fff;
}

.calls-inbox__tab-badge {
  display: inline-flex;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fe2c55;
  color: #fff;
  font: 700 10px/1 system-ui, sans-serif;
}

.calls-inbox__tab.is-on .calls-inbox__tab-badge {
  background: #fff;
  color: #fe2c55;
}

.calls-inbox__list {
  list-style: none;
  margin: 0;
  padding: 0 0 12px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.calls-inbox__row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.calls-inbox__row:active,
.calls-inbox__row.is-active {
  background: #f7f7f7;
}

.calls-inbox__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calls-inbox__line1 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.calls-inbox__name {
  font: 600 15px/1.25 system-ui, sans-serif;
  color: #0a0a0a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calls-inbox__row.is-unread .calls-inbox__name {
  font-weight: 700;
}

.calls-inbox__time {
  flex-shrink: 0;
  font: 400 12px/1.2 system-ui, sans-serif;
  color: #8e8e8e;
}

.calls-inbox__sub {
  font: 400 12px/1.25 system-ui, sans-serif;
  color: #8e8e8e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calls-inbox__preview {
  font: 400 13px/1.3 system-ui, sans-serif;
  color: #737373;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calls-inbox__row.is-unread .calls-inbox__preview {
  color: #0a0a0a;
  font-weight: 500;
}

.calls-inbox__unread-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0095f6;
  flex-shrink: 0;
}

.calls-inbox__empty {
  margin: 48px 16px;
  text-align: center;
  font: 400 14px/1.4 system-ui, sans-serif;
  color: #8e8e8e;
}

.call-avatar {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 999px;
  overflow: visible;
  background: #e8e8e8;
}

.call-avatar__img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.call-avatar__initials {
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  font-family: system-ui, sans-serif;
}

.call-avatar__badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: #fff;
  -o-object-fit: contain;
     object-fit: contain;
}

.call-avatar__dot {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #22c55e;
  border: 2px solid #fff;
}

.call-status-chip {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f0f0f0;
  font: 600 11px/1 system-ui, sans-serif;
  color: #525252;
}

.calls-shell {
  display: flex;
  min-height: min(70vh, 640px);
  height: min(78vh, 720px);
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.calls-shell--fullscreen {
  min-height: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

.calls-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.calls-fullscreen .calls-shell {
  flex: 1;
  min-height: 0;
  height: 100%;
}

.calls-inbox__back {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #0a0a0a;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
}

.calls-inbox__back:hover {
  background: #f5f5f5;
}

.calls-shell__list {
  width: 100%;
  min-width: 0;
  border-right: 0;
  display: flex;
  flex-direction: column;
}

.calls-shell__thread {
  display: none;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  background: #fafafa;
}

.calls-shell.is-thread-open .calls-shell__list {
  display: none;
}

.calls-shell.is-thread-open .calls-shell__thread {
  display: flex;
}

@media (min-width: 768px) {
  .calls-shell__list {
    width: 36%;
    max-width: 380px;
    border-right: 1px solid #eee;
    display: flex !important;
  }

  .calls-shell__thread {
    display: flex;
  }

  .calls-shell.is-thread-open .calls-shell__list {
    display: flex !important;
  }
}

.call-thread-pane {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.call-thread-pane__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.call-thread-pane__back {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #0a0a0a;
  cursor: pointer;
}

@media (min-width: 768px) {
  .call-thread-pane__back {
    display: none;
  }
}

.call-thread-pane__identity {
  flex: 1;
  min-width: 0;
}

.call-thread-pane__name {
  margin: 0;
  font: 700 15px/1.2 system-ui, sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.call-thread-pane__sub {
  margin: 2px 0 0;
  font: 400 12px/1.2 system-ui, sans-serif;
  color: #8e8e8e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.call-thread-pane__body {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.call-thread-pane__compose {
  border-top: 1px solid #eee;
  background: #fff;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
}

.call-thread {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-thread__empty {
  margin: auto;
  color: #8e8e8e;
  font: 400 14px/1.4 system-ui, sans-serif;
}

.call-thread__row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.call-thread__row.is-mine {
  justify-content: flex-end;
}

.call-thread__spacer {
  width: 28px;
  flex-shrink: 0;
}

.call-thread__bubble {
  max-width: min(78%, 420px);
  padding: 8px 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e8e8e8;
  color: #0a0a0a;
}

.call-thread__bubble.is-mine {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

.call-thread__meta {
  margin: 0 0 4px;
  font: 400 10px/1.3 system-ui, sans-serif;
  opacity: 0.65;
}

.call-thread__who {
  font-weight: 700;
  opacity: 1;
}

.call-thread__text {
  margin: 0;
  white-space: pre-wrap;
  font: 400 14px/1.35 system-ui, sans-serif;
}

.call-thread__answers {
  margin: 4px 0 0;
  padding-left: 1.1rem;
  font: 400 12px/1.35 system-ui, sans-serif;
  opacity: 0.9;
}

.call-thread__schedule {
  margin: 4px 0 0;
  font: 400 12px/1.3 system-ui, sans-serif;
  opacity: 0.85;
}

.call-thread__media {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.call-thread__media img {
  width: 72px;
  height: 72px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  display: block;
}

.call-thread__media video {
  width: 120px;
  height: 72px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.call-thread-pane__empty {
  margin: auto;
  padding: 24px;
  text-align: center;
  color: #8e8e8e;
  font: 400 14px/1.4 system-ui, sans-serif;
}
.disc-paper-editor {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  color: #202124;
}

/* Keep scroll; hide chrome scrollbars (paper / format sheet) */
.disc-paper-editor,
.disc-paper-surface-wrap,
.disc-format-sheet,
.disc-format-sheet-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.disc-paper-editor::-webkit-scrollbar,
.disc-paper-surface-wrap::-webkit-scrollbar,
.disc-format-sheet::-webkit-scrollbar,
.disc-format-sheet-scroll::-webkit-scrollbar,
.disc-paper-editor *::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.disc-paper-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  min-height: 48px;
  padding: max(0.35rem, env(safe-area-inset-top)) 0.5rem 0.35rem;
  background: #fff;
  border-bottom: 1px solid #e8eaed;
}

.disc-paper-topbar-leading,
.disc-paper-topbar-trailing {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.disc-paper-topbar-leading > button:not(.disc-burn-btn),
.disc-paper-topbar-trailing > button:not(.disc-burn-btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  color: #3c4043;
  background: transparent;
}

.disc-paper-topbar-leading > button:not(.disc-burn-btn):hover,
.disc-paper-topbar-trailing > button:not(.disc-burn-btn):hover {
  background: #f1f3f4;
}

.disc-paper-topbar-leading > button:disabled,
.disc-paper-topbar-trailing > button:disabled {
  opacity: 0.35;
}

.disc-paper-topbar-trailing > button[aria-pressed="true"] {
  color: #0b57d0;
  background: #e8f0fe;
}

.disc-paper-save {
  font-size: 11px;
  color: #80868b;
  white-space: nowrap;
  margin-left: 0.35rem;
  animation: disc-save-in 160ms ease-out;
}

@keyframes disc-save-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.disc-paper-title--bar {
  width: min(16rem, 28vw);
  min-width: 6rem;
  margin: 0 0.15rem 0 0;
  padding: 0 0.35rem;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

/* Desktop: format controls live in the topbar */
.disc-format-desktop {
  display: none;
}

@media (min-width: 768px) {
  .disc-paper-format-trigger {
    display: none !important;
  }

  .disc-format-desktop {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 0.1rem;
    min-width: 0;
    overflow-x: auto;
    padding: 0 0.35rem;
  }

  .disc-fmt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 6px;
    font-size: 13px;
    color: #3c4043;
    background: transparent;
  }

  .disc-fmt-btn:hover {
    background: #f1f3f4;
  }

  .disc-fmt-btn.is-active,
  .disc-fmt-btn[aria-pressed="true"] {
    color: #0b57d0;
    background: #e8f0fe;
  }

  .disc-fmt-sep {
    display: inline-block;
    width: 1px;
    height: 20px;
    margin: 0 0.25rem;
    flex-shrink: 0;
    background: #e8eaed;
  }

  .disc-fmt-select {
    flex-shrink: 0;
    height: 32px;
    max-width: 7.5rem;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 0 0.35rem;
    font-size: 12px;
    color: #202124;
    background: #fff;
    cursor: pointer;
  }

  .disc-fmt-select:hover,
  .disc-fmt-select:focus {
    border-color: #dadce0;
    outline: none;
    background: #f8f9fa;
  }

  .disc-fmt-select--style {
    max-width: 6.75rem;
  }

  .disc-fmt-select--font {
    max-width: 7rem;
  }

  .disc-fmt-select--size {
    max-width: 3.25rem;
  }

  .disc-fmt-select--spacing {
    max-width: 3.5rem;
  }

  .disc-fmt-popover {
    position: fixed;
    z-index: 80;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    width: 10rem;
    padding: 0.55rem;
    border-radius: 0.65rem;
    border: 1px solid #dadce0;
    background: #fff;
    box-shadow: 0 4px 16px rgba(60, 64, 67, 0.2);
  }
  .disc-format-sheet {
    display: none !important;
  }
}

.disc-paper-surface-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.disc-paper-surface {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 8rem;
  min-height: calc(100dvh - 3.25rem);
}

@media (min-width: 768px) {
  .disc-paper-surface {
    padding: 2.5rem 2rem 6rem;
  }
}

/* Full-paper media layer — clicks pass through to text except on items */
.disc-media-stage--overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  margin: 0;
  pointer-events: none;
}

.disc-media-stage--overlay .disc-media-item {
  pointer-events: auto;
}

.disc-paper-title {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 400;
  color: #202124;
  margin-bottom: 0.75rem;
}

.disc-paper-title::-moz-placeholder {
  color: #9aa0a6;
}

.disc-paper-title::placeholder {
  color: #9aa0a6;
}

.disc-paper-topbar .disc-paper-title {
  width: min(16rem, 32vw);
  min-width: 7rem;
  margin: 0;
  padding: 0 0.4rem;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.disc-paper-prose {
  position: relative;
}

.disc-text-wrap {
  float: left;
  shape-margin: 16px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.disc-paper-prose,
.disc-paper-prose > div,
.disc-paper-prose .ProseMirror {
  min-height: calc(100dvh - 4.5rem);
}

.disc-paper-prose .ProseMirror {
  outline: none;
  font-size: 16px;
  line-height: 1.6;
  color: #202124;
}

.disc-paper-prose .ProseMirror p.is-editor-empty:first-child::before {
  color: #9aa0a6;
  content: attr(data-placeholder);
  float: left;
  height: 0;
  pointer-events: none;
}

.disc-paper-prose .ProseMirror h1 {
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0.75rem 0;
}

.disc-paper-prose .ProseMirror h2 {
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0.65rem 0;
}

.disc-paper-prose .ProseMirror h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0.5rem 0;
}

.disc-paper-prose .ProseMirror ul,
.disc-paper-prose .ProseMirror ol {
  padding-left: 1.35rem;
  margin: 0.4rem 0;
}

.disc-paper-prose .ProseMirror a {
  color: #0b57d0;
  text-decoration: underline;
}

.disc-paper-readonly {
  font-size: 16px;
  line-height: 1.6;
  color: #202124;
}

.disc-paper-readonly h1 {
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0.75rem 0;
}

.disc-paper-readonly h2 {
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0.65rem 0;
}

.disc-paper-readonly h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0.5rem 0;
}

.disc-paper-readonly ul,
.disc-paper-readonly ol {
  padding-left: 1.35rem;
  margin: 0.4rem 0;
}

.disc-paper-readonly a {
  color: #0b57d0;
  text-decoration: underline;
}

.disc-paper-readonly p {
  margin: 0.4rem 0;
}

.disc-add-menu {
  position: absolute;
  right: 0.5rem;
  top: 3.25rem;
  z-index: 40;
  min-width: 11rem;
  border-radius: 0.75rem;
  border: 1px solid #dadce0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(60, 64, 67, 0.2);
  overflow: hidden;
}

.disc-add-menu button {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  padding: 0 1rem;
  text-align: left;
  font-size: 14px;
  color: #202124;
}

.disc-add-menu button:hover {
  background: #f1f3f4;
}

.disc-add-menu button:disabled {
  color: #9aa0a6;
}

.disc-media-tool {
  display: inline-flex;
  height: 1.75rem;
  min-width: 1.75rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  border-radius: 0.25rem;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
}

.disc-media-tool:hover {
  background: rgba(255, 255, 255, 0.15);
}

button.disc-burn-btn {
  display: inline-flex;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  flex-shrink: 0;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 5px;
  border: 1px solid #4a4a4a;
  border-radius: 3px;
  background: linear-gradient(#3c3c3c, #1b1b1b);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 1px 2px rgba(0, 0, 0, 0.35);
}

button.disc-burn-btn:hover:not(:disabled) {
  background: linear-gradient(#4a4a4a, #242424);
}

button.disc-burn-btn:disabled {
  opacity: 0.55;
}

.disc-flame-wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 16px;
  gap: 2px;
}

.disc-flame-wave > span {
  width: 3px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, #ffe08a, #ff7a18 40%, #e10600);
  animation: disc-flame-wave 1s ease-in-out infinite;
  transform-origin: bottom;
}

.disc-burn-btn .disc-flame-wave > span {
  animation: none;
}

.disc-burn-btn .disc-flame-wave > span:nth-child(1) {
  height: 7px;
}

.disc-burn-btn .disc-flame-wave > span:nth-child(2) {
  height: 14px;
}

.disc-burn-btn .disc-flame-wave > span:nth-child(3) {
  height: 10px;
}

.disc-burn-btn .disc-flame-wave > span:nth-child(4) {
  height: 5px;
}

.disc-flame-wave > span:nth-child(2) {
  animation-delay: 0.1s;
}

.disc-flame-wave > span:nth-child(3) {
  animation-delay: 0.2s;
}

.disc-flame-wave > span:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes disc-flame-wave {
  0%,
  100% {
    height: 4px;
  }
  50% {
    height: 15px;
  }
}

/* Phone: the bar must stay inside the screen. Title shrinks; flame stays. */
@media (max-width: 767px) {
  .disc-paper-topbar {
    gap: 0;
    padding-left: max(0.1rem, env(safe-area-inset-left));
    padding-right: max(0.1rem, env(safe-area-inset-right));
  }

  .disc-paper-topbar-leading {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .disc-paper-topbar .disc-paper-title {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .disc-paper-topbar-leading > button:not(.disc-burn-btn),
  .disc-paper-topbar-trailing > button:not(.disc-burn-btn) {
    min-width: 34px;
    min-height: 40px;
  }

  .disc-paper-topbar-trailing > button.disc-claim-btn {
    flex-shrink: 0;
  }
}

.disc-paper-topbar-trailing > button.disc-burn-btn {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  border-radius: 3px;
  background: linear-gradient(#3c3c3c, #1b1b1b);
}

.disc-claim-btn {
  display: inline-flex;
  height: 32px;
  align-items: center;
  padding: 0 0.85rem;
  border: 0;
  border-radius: 6px;
  background: #0b57d0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.disc-claim-btn:hover {
  background: #0842a0;
}

.disc-paper-editor.is-locked .disc-paper-topbar-leading > button,
.disc-paper-editor.is-locked .disc-paper-title,
.disc-paper-editor.is-locked .disc-format-desktop,
.disc-paper-editor.is-locked .disc-paper-surface-wrap,
.disc-paper-editor.is-locked .disc-paper-topbar-trailing > button:not(.disc-claim-btn) {
  pointer-events: none;
}

.disc-claim-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  background: rgba(32, 33, 36, 0.28);
}

.disc-claim-card {
  width: min(100%, 26rem);
  margin-bottom: max(0.5rem, env(safe-area-inset-bottom));
  padding: 1.1rem 1.15rem 1rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.disc-claim-card h2 {
  font-size: 18px;
  font-weight: 600;
  color: #202124;
}

.disc-claim-card p {
  margin-top: 0.35rem;
  font-size: 13px;
  line-height: 1.45;
  color: #5f6368;
}

.disc-claim-card label {
  display: block;
  margin-top: 0.9rem;
}

.disc-claim-card label span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 12px;
  font-weight: 600;
  color: #5f6368;
}

.disc-claim-error {
  margin-top: 0.6rem;
  font-size: 13px;
  color: #b42318;
}

.disc-claim-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.9rem;
}

.disc-claim-cancel {
  font-size: 13px;
  color: #5f6368;
}

@media (min-width: 768px) {
  .disc-claim-overlay {
    align-items: center;
  }

  .disc-claim-card {
    margin-bottom: 0;
  }
}

.disc-burn-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
}

.disc-burn-window {
  width: min(22rem, calc(100vw - 2rem));
  padding: 1rem 1rem 0.85rem;
  border: 1px solid #111;
  border-radius: 4px;
  background: #2b2b2b;
  color: #ececec;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.disc-burn-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.disc-burn-stage {
  display: flex;
  justify-content: center;
  padding: 1.1rem 0 0.85rem;
}

.disc-burn-mark {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
}

.disc-burn-logo {
  width: 7.5rem;
  height: 7.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.disc-burn-mark .disc-flame-wave {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  height: 46px;
  gap: 5px;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 8px rgba(255, 90, 0, 0.75));
}

.disc-burn-mark .disc-flame-wave > span {
  width: 8px;
  border-radius: 6px;
  animation-name: disc-flame-wave-lg;
}

@keyframes disc-flame-wave-lg {
  0%,
  100% {
    height: 10px;
  }
  50% {
    height: 46px;
  }
}

.disc-burn-status {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
  color: #f4f4f4;
}

.disc-burn-pct {
  margin: 0;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 12px;
  color: #c8c8c8;
  margin-top: 0.35rem;
  text-align: right;
}

.disc-burn-error {
  margin: 0.55rem 0 0;
  font-size: 12px;
  color: #ffb4a8;
}

.disc-burn-close {
  margin-top: 0.85rem;
  width: 100%;
  border: 1px solid #4a4a4a;
  border-radius: 3px;
  background: #2a2a2a;
  color: #f4f4f4;
  font-size: 13px;
  padding: 0.45rem 0.75rem;
}

.disc-issue {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.disc-issue-kicker {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9aa0a6;
}

.disc-issue-link {
  margin-top: 0.45rem;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0;
  color: #f4f4f4;
  word-break: break-all;
}

.disc-issue-url,
.disc-issue-sleeve,
.disc-issue-note {
  margin-top: 0.75rem;
  font-size: 12px;
  line-height: 1.4;
  color: #b0b0b0;
}

.disc-issue-sleeve span {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  letter-spacing: 0.06em;
  color: #f4f4f4;
}

.disc-issue-copy {
  margin-top: 0.55rem;
  border: 0;
  border-radius: 4px;
  background: #f4f4f4;
  color: #1b1b1b;
  font-size: 12px;
  font-weight: 650;
  padding: 0.35rem 0.7rem;
}

.disc-issue-copy--quiet {
  background: transparent;
  color: #d0d0d0;
  text-decoration: underline;
  padding: 0;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

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

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.visible {
  visibility: visible;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0px;
}

.inset-\[10\%\] {
  inset: 10%;
}

.inset-\[12\%\] {
  inset: 12%;
}

.inset-\[2\%\] {
  inset: 2%;
}

.inset-\[5\.5\%\] {
  inset: 5.5%;
}

.inset-\[6\%\] {
  inset: 6%;
}

.inset-\[8\%\] {
  inset: 8%;
}

.inset-x-0 {
  left: 0px;
  right: 0px;
}

.inset-x-5 {
  left: 1.25rem;
  right: 1.25rem;
}

.inset-x-\[10\%\] {
  left: 10%;
  right: 10%;
}

.inset-y-0 {
  top: 0px;
  bottom: 0px;
}

.inset-y-\[22\%\] {
  top: 22%;
  bottom: 22%;
}

.-left-\[9999px\] {
  left: -9999px;
}

.-right-0\.5 {
  right: -0.125rem;
}

.-top-0\.5 {
  top: -0.125rem;
}

.-top-9 {
  top: -2.25rem;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-1\.5 {
  bottom: 0.375rem;
}

.bottom-2 {
  bottom: 0.5rem;
}

.bottom-\[14\%\] {
  bottom: 14%;
}

.bottom-\[5\%\] {
  bottom: 5%;
}

.left-0 {
  left: 0px;
}

.left-1\/2 {
  left: 50%;
}

.left-3 {
  left: 0.75rem;
}

.right-0 {
  right: 0px;
}

.right-1\.5 {
  right: 0.375rem;
}

.right-2 {
  right: 0.5rem;
}

.top-0 {
  top: 0px;
}

.top-1\/2 {
  top: 50%;
}

.top-12 {
  top: 3rem;
}

.top-2 {
  top: 0.5rem;
}

.top-\[10\%\] {
  top: 10%;
}

.top-\[12\%\] {
  top: 12%;
}

.top-\[8\%\] {
  top: 8%;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-\[1\] {
  z-index: 1;
}

.z-\[60\] {
  z-index: 60;
}

.mx-0\.5 {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-1\.5 {
  margin-left: 0.375rem;
  margin-right: 0.375rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.-mb-px {
  margin-bottom: -1px;
}

.-mt-10 {
  margin-top: -2.5rem;
}

.-mt-8 {
  margin-top: -2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-1\.5 {
  margin-left: 0.375rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-auto {
  margin-left: auto;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mt-0 {
  margin-top: 0px;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-1\.5 {
  margin-top: 0.375rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-2\.5 {
  margin-top: 0.625rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.aspect-\[2\/1\] {
  aspect-ratio: 2/1;
}

.aspect-\[3\/1\] {
  aspect-ratio: 3/1;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.h-0 {
  height: 0px;
}

.h-0\.5 {
  height: 0.125rem;
}

.h-1 {
  height: 0.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-11 {
  height: 2.75rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-16 {
  height: 4rem;
}

.h-2 {
  height: 0.5rem;
}

.h-20 {
  height: 5rem;
}

.h-24 {
  height: 6rem;
}

.h-3\.5 {
  height: 0.875rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-7 {
  height: 1.75rem;
}

.h-8 {
  height: 2rem;
}

.h-9 {
  height: 2.25rem;
}

.h-\[14\%\] {
  height: 14%;
}

.h-\[15px\] {
  height: 15px;
}

.h-\[260px\] {
  height: 260px;
}

.h-\[280px\] {
  height: 280px;
}

.h-\[5\.5rem\] {
  height: 5.5rem;
}

.h-\[calc\(100svh-3rem\)\] {
  height: calc(100svh - 3rem);
}

.h-\[min\(48dvh\2c 320px\)\] {
  height: min(48dvh, 320px);
}

.h-\[min\(52dvh\2c 420px\)\] {
  height: min(52dvh, 420px);
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-px {
  height: 1px;
}

.max-h-12 {
  max-height: 3rem;
}

.max-h-14 {
  max-height: 3.5rem;
}

.max-h-\[55\%\] {
  max-height: 55%;
}

.max-h-\[92dvh\] {
  max-height: 92dvh;
}

.max-h-full {
  max-height: 100%;
}

.min-h-0 {
  min-height: 0px;
}

.min-h-11 {
  min-height: 2.75rem;
}

.min-h-12 {
  min-height: 3rem;
}

.min-h-\[110px\] {
  min-height: 110px;
}

.min-h-\[200px\] {
  min-height: 200px;
}

.min-h-\[280px\] {
  min-height: 280px;
}

.min-h-\[40vh\] {
  min-height: 40vh;
}

.min-h-\[50vh\] {
  min-height: 50vh;
}

.min-h-\[70vh\] {
  min-height: 70vh;
}

.min-h-\[min\(52dvh\2c 420px\)\] {
  min-height: min(52dvh, 420px);
}

.min-h-full {
  min-height: 100%;
}

.min-h-svh {
  min-height: 100svh;
}

.w-0 {
  width: 0px;
}

.w-1 {
  width: 0.25rem;
}

.w-10 {
  width: 2.5rem;
}

.w-11 {
  width: 2.75rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-2 {
  width: 0.5rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-3\.5 {
  width: 0.875rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-7 {
  width: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.w-9 {
  width: 2.25rem;
}

.w-\[14\%\] {
  width: 14%;
}

.w-\[280px\] {
  width: 280px;
}

.w-\[38vw\] {
  width: 38vw;
}

.w-\[42vw\] {
  width: 42vw;
}

.w-\[5\.5rem\] {
  width: 5.5rem;
}

.w-\[min\(100\%\2c 20rem\)\] {
  width: min(100%, 20rem);
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-px {
  width: 1px;
}

.min-w-0 {
  min-width: 0px;
}

.min-w-11 {
  min-width: 2.75rem;
}

.min-w-\[15px\] {
  min-width: 15px;
}

.min-w-\[3rem\] {
  min-width: 3rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-\[140px\] {
  max-width: 140px;
}

.max-w-\[168px\] {
  max-width: 168px;
}

.max-w-\[260px\] {
  max-width: 260px;
}

.max-w-\[9\.5rem\] {
  max-width: 9.5rem;
}

.max-w-\[min\(100\%\2c 320px\)\] {
  max-width: min(100%, 320px);
}

.max-w-\[min\(100\%\2c 340px\)\] {
  max-width: min(100%, 340px);
}

.max-w-\[min\(100\%\2c 480px\)\] {
  max-width: min(100%, 480px);
}

.max-w-\[min\(100\%\2c 520px\)\] {
  max-width: min(100%, 520px);
}

.max-w-\[min\(100\%\2c 560px\)\] {
  max-width: min(100%, 560px);
}

.max-w-\[min\(100vw\2c 22rem\)\] {
  max-width: min(100vw, 22rem);
}

.max-w-full {
  max-width: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-none {
  max-width: none;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-xs {
  max-width: 20rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-\[1\.35\] {
  flex: 1.35;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.origin-top-right {
  transform-origin: top right;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-x-full {
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-2 {
  --tw-translate-y: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-1\/3 {
  --tw-translate-x: 33.333333%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-1\/3 {
  --tw-translate-y: 33.333333%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-2 {
  --tw-translate-y: 0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-full {
  --tw-translate-y: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-rotate-45 {
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes pulse {

  50% {
    opacity: .5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cursor-crosshair {
  cursor: crosshair;
}

.cursor-grab {
  cursor: grab;
}

.cursor-move {
  cursor: move;
}

.cursor-nwse-resize {
  cursor: nwse-resize;
}

.cursor-pointer {
  cursor: pointer;
}

.touch-none {
  touch-action: none;
}

.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.resize-none {
  resize: none;
}

.resize-y {
  resize: vertical;
}

.resize {
  resize: both;
}

.snap-x {
  scroll-snap-type: x var(--tw-scroll-snap-strictness);
}

.snap-mandatory {
  --tw-scroll-snap-strictness: mandatory;
}

.snap-start {
  scroll-snap-align: start;
}

.scroll-mt-20 {
  scroll-margin-top: 5rem;
}

.scroll-mt-24 {
  scroll-margin-top: 6rem;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-\[1fr_auto_1fr\] {
  grid-template-columns: 1fr auto 1fr;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.place-items-center {
  place-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-0\.5 {
  gap: 0.125rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-1\.5 {
  gap: 0.375rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-x-5 {
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.gap-y-10 {
  row-gap: 2.5rem;
}

.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}

.space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.self-end {
  align-self: flex-end;
}

.justify-self-start {
  justify-self: start;
}

.justify-self-end {
  justify-self: end;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-clip {
  overflow-x: clip;
}

.overscroll-contain {
  overscroll-behavior: contain;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.whitespace-pre-wrap {
  white-space: pre-wrap;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-\[1\.35rem\] {
  border-radius: 1.35rem;
}

.rounded-\[10px\] {
  border-radius: 10px;
}

.rounded-\[2\%\] {
  border-radius: 2%;
}

.rounded-\[20\%\] {
  border-radius: 20%;
}

.rounded-\[22\%\] {
  border-radius: 22%;
}

.rounded-\[2px\] {
  border-radius: 2px;
}

.rounded-\[3\%\] {
  border-radius: 3%;
}

.rounded-\[3px\] {
  border-radius: 3px;
}

.rounded-\[5\%\] {
  border-radius: 5%;
}

.rounded-\[50\%\] {
  border-radius: 50%;
}

.rounded-\[8\%\] {
  border-radius: 8%;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-t-2xl {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.border {
  border-width: 1px;
}

.border-0 {
  border-width: 0px;
}

.border-2 {
  border-width: 2px;
}

.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-r {
  border-right-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-t-0 {
  border-top-width: 0px;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-dashed {
  border-style: dashed;
}

.border-\[\#0066cc\] {
  --tw-border-opacity: 1;
  border-color: rgb(0 102 204 / var(--tw-border-opacity, 1));
}

.border-\[\#1d1d1f\] {
  --tw-border-opacity: 1;
  border-color: rgb(29 29 31 / var(--tw-border-opacity, 1));
}

.border-\[\#b3261e\] {
  --tw-border-opacity: 1;
  border-color: rgb(179 38 30 / var(--tw-border-opacity, 1));
}

.border-\[\#c7c7cc\] {
  --tw-border-opacity: 1;
  border-color: rgb(199 199 204 / var(--tw-border-opacity, 1));
}

.border-\[\#d2d2d7\] {
  --tw-border-opacity: 1;
  border-color: rgb(210 210 215 / var(--tw-border-opacity, 1));
}

.border-\[\#dadce0\] {
  --tw-border-opacity: 1;
  border-color: rgb(218 220 224 / var(--tw-border-opacity, 1));
}

.border-\[\#e5e5e5\] {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}

.border-\[\#e8eaed\] {
  --tw-border-opacity: 1;
  border-color: rgb(232 234 237 / var(--tw-border-opacity, 1));
}

.border-\[\#edf2fa\] {
  --tw-border-opacity: 1;
  border-color: rgb(237 242 250 / var(--tw-border-opacity, 1));
}

.border-\[\#f0f0f0\] {
  --tw-border-opacity: 1;
  border-color: rgb(240 240 240 / var(--tw-border-opacity, 1));
}

.border-\[\#ff2d55\]\/85 {
  border-color: rgb(255 45 85 / 0.85);
}

.border-black\/40 {
  border-color: rgb(0 0 0 / 0.4);
}

.border-current {
  border-color: currentColor;
}

.border-transparent {
  border-color: transparent;
}

.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}

.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}

.border-white\/30 {
  border-color: rgb(255 255 255 / 0.3);
}

.border-t-white {
  --tw-border-opacity: 1;
  border-top-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.bg-\[\#0a0a0a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
}

.bg-\[\#0b0b0d\] {
  --tw-bg-opacity: 1;
  background-color: rgb(11 11 13 / var(--tw-bg-opacity, 1));
}

.bg-\[\#0b57d0\] {
  --tw-bg-opacity: 1;
  background-color: rgb(11 87 208 / var(--tw-bg-opacity, 1));
}

.bg-\[\#0d652d\] {
  --tw-bg-opacity: 1;
  background-color: rgb(13 101 45 / var(--tw-bg-opacity, 1));
}

.bg-\[\#1a1a1c\] {
  --tw-bg-opacity: 1;
  background-color: rgb(26 26 28 / var(--tw-bg-opacity, 1));
}

.bg-\[\#1d1d1f\] {
  --tw-bg-opacity: 1;
  background-color: rgb(29 29 31 / var(--tw-bg-opacity, 1));
}

.bg-\[\#202124\] {
  --tw-bg-opacity: 1;
  background-color: rgb(32 33 36 / var(--tw-bg-opacity, 1));
}

.bg-\[\#2c2c2e\] {
  --tw-bg-opacity: 1;
  background-color: rgb(44 44 46 / var(--tw-bg-opacity, 1));
}

.bg-\[\#3a3a3c\] {
  --tw-bg-opacity: 1;
  background-color: rgb(58 58 60 / var(--tw-bg-opacity, 1));
}

.bg-\[\#c7c7cc\] {
  --tw-bg-opacity: 1;
  background-color: rgb(199 199 204 / var(--tw-bg-opacity, 1));
}

.bg-\[\#d2d2d7\] {
  --tw-bg-opacity: 1;
  background-color: rgb(210 210 215 / var(--tw-bg-opacity, 1));
}

.bg-\[\#d3e3fd\] {
  --tw-bg-opacity: 1;
  background-color: rgb(211 227 253 / var(--tw-bg-opacity, 1));
}

.bg-\[\#ddd\] {
  --tw-bg-opacity: 1;
  background-color: rgb(221 221 221 / var(--tw-bg-opacity, 1));
}

.bg-\[\#e0e0e0\] {
  --tw-bg-opacity: 1;
  background-color: rgb(224 224 224 / var(--tw-bg-opacity, 1));
}

.bg-\[\#e5e5e5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}

.bg-\[\#e8e8e8\] {
  --tw-bg-opacity: 1;
  background-color: rgb(232 232 232 / var(--tw-bg-opacity, 1));
}

.bg-\[\#e8e8ed\] {
  --tw-bg-opacity: 1;
  background-color: rgb(232 232 237 / var(--tw-bg-opacity, 1));
}

.bg-\[\#ebebeb\] {
  --tw-bg-opacity: 1;
  background-color: rgb(235 235 235 / var(--tw-bg-opacity, 1));
}

.bg-\[\#ececec\] {
  --tw-bg-opacity: 1;
  background-color: rgb(236 236 236 / var(--tw-bg-opacity, 1));
}

.bg-\[\#efeae0\] {
  --tw-bg-opacity: 1;
  background-color: rgb(239 234 224 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f0fdf4\] {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f5f5f7\] {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 247 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f8f9fa\] {
  --tw-bg-opacity: 1;
  background-color: rgb(248 249 250 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fafafa\] {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fef08a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
}

.bg-\[\#ff3b30\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 59 48 / var(--tw-bg-opacity, 1));
}

.bg-black\/0 {
  background-color: rgb(0 0 0 / 0);
}

.bg-black\/10 {
  background-color: rgb(0 0 0 / 0.1);
}

.bg-black\/40 {
  background-color: rgb(0 0 0 / 0.4);
}

.bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5);
}

.bg-black\/65 {
  background-color: rgb(0 0 0 / 0.65);
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}

.bg-white\/25 {
  background-color: rgb(255 255 255 / 0.25);
}

.bg-white\/45 {
  background-color: rgb(255 255 255 / 0.45);
}

.bg-white\/80 {
  background-color: rgb(255 255 255 / 0.8);
}

.bg-white\/85 {
  background-color: rgb(255 255 255 / 0.85);
}

.bg-white\/90 {
  background-color: rgb(255 255 255 / 0.9);
}

.bg-white\/95 {
  background-color: rgb(255 255 255 / 0.95);
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}

.from-\[\#2c2c2e\] {
  --tw-gradient-from: #2c2c2e var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(44 44 46 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-black\/25 {
  --tw-gradient-from: rgb(0 0 0 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-\[\#1a1a1c\] {
  --tw-gradient-to: #1a1a1c var(--tw-gradient-to-position);
}

.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}

.fill-current {
  fill: currentColor;
}

.fill-none {
  fill: none;
}

.stroke-\[\#8e8e93\] {
  stroke: #8e8e93;
}

.stroke-current {
  stroke: currentColor;
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center {
  -o-object-position: center;
     object-position: center;
}

.p-0 {
  padding: 0px;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-7 {
  padding: 1.75rem;
}

.px-0\.5 {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pb-0\.5 {
  padding-bottom: 0.125rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-\[max\(0\.5rem\2c env\(safe-area-inset-bottom\)\)\] {
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
}

.pb-\[max\(1rem\2c env\(safe-area-inset-bottom\)\)\] {
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-7 {
  padding-left: 1.75rem;
}

.pl-9 {
  padding-left: 2.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-12 {
  padding-right: 3rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pt-0 {
  padding-top: 0px;
}

.pt-0\.5 {
  padding-top: 0.125rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-8 {
  padding-top: 2rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-\[10px\] {
  font-size: 10px;
}

.text-\[11px\] {
  font-size: 11px;
}

.text-\[12px\] {
  font-size: 12px;
}

.text-\[13px\] {
  font-size: 13px;
}

.text-\[14px\] {
  font-size: 14px;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-\[16px\] {
  font-size: 16px;
}

.text-\[17px\] {
  font-size: 17px;
}

.text-\[18px\] {
  font-size: 18px;
}

.text-\[19px\] {
  font-size: 19px;
}

.text-\[20px\] {
  font-size: 20px;
}

.text-\[22px\] {
  font-size: 22px;
}

.text-\[24px\] {
  font-size: 24px;
}

.text-\[26px\] {
  font-size: 26px;
}

.text-\[28px\] {
  font-size: 28px;
}

.text-\[32px\] {
  font-size: 32px;
}

.text-\[36px\] {
  font-size: 36px;
}

.text-\[40px\] {
  font-size: 40px;
}

.text-\[72px\] {
  font-size: 72px;
}

.text-\[8px\] {
  font-size: 8px;
}

.text-\[9px\] {
  font-size: 9px;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.tabular-nums {
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}

.leading-\[1\.7\] {
  line-height: 1.7;
}

.leading-none {
  line-height: 1;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-snug {
  line-height: 1.375;
}

.leading-tight {
  line-height: 1.25;
}

.tracking-\[-0\.01em\] {
  letter-spacing: -0.01em;
}

.tracking-\[-0\.02em\] {
  letter-spacing: -0.02em;
}

.tracking-\[-0\.03em\] {
  letter-spacing: -0.03em;
}

.tracking-\[0\.01em\] {
  letter-spacing: 0.01em;
}

.tracking-\[0\.06em\] {
  letter-spacing: 0.06em;
}

.tracking-\[0\.08em\] {
  letter-spacing: 0.08em;
}

.tracking-\[0\.14em\] {
  letter-spacing: 0.14em;
}

.tracking-\[0\.16em\] {
  letter-spacing: 0.16em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.text-\[\#0066cc\] {
  --tw-text-opacity: 1;
  color: rgb(0 102 204 / var(--tw-text-opacity, 1));
}

.text-\[\#0b57d0\] {
  --tw-text-opacity: 1;
  color: rgb(11 87 208 / var(--tw-text-opacity, 1));
}

.text-\[\#166534\] {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}

.text-\[\#1a1a1a\] {
  --tw-text-opacity: 1;
  color: rgb(26 26 26 / var(--tw-text-opacity, 1));
}

.text-\[\#1d1d1f\] {
  --tw-text-opacity: 1;
  color: rgb(29 29 31 / var(--tw-text-opacity, 1));
}

.text-\[\#1f7a3f\] {
  --tw-text-opacity: 1;
  color: rgb(31 122 63 / var(--tw-text-opacity, 1));
}

.text-\[\#202124\] {
  --tw-text-opacity: 1;
  color: rgb(32 33 36 / var(--tw-text-opacity, 1));
}

.text-\[\#3c4043\] {
  --tw-text-opacity: 1;
  color: rgb(60 64 67 / var(--tw-text-opacity, 1));
}

.text-\[\#444746\] {
  --tw-text-opacity: 1;
  color: rgb(68 71 70 / var(--tw-text-opacity, 1));
}

.text-\[\#5f6368\] {
  --tw-text-opacity: 1;
  color: rgb(95 99 104 / var(--tw-text-opacity, 1));
}

.text-\[\#6e6e73\] {
  --tw-text-opacity: 1;
  color: rgb(110 110 115 / var(--tw-text-opacity, 1));
}

.text-\[\#80868b\] {
  --tw-text-opacity: 1;
  color: rgb(128 134 139 / var(--tw-text-opacity, 1));
}

.text-\[\#86868b\] {
  --tw-text-opacity: 1;
  color: rgb(134 134 139 / var(--tw-text-opacity, 1));
}

.text-\[\#8e8e93\] {
  --tw-text-opacity: 1;
  color: rgb(142 142 147 / var(--tw-text-opacity, 1));
}

.text-\[\#9aa0a6\] {
  --tw-text-opacity: 1;
  color: rgb(154 160 166 / var(--tw-text-opacity, 1));
}

.text-\[\#b3261e\] {
  --tw-text-opacity: 1;
  color: rgb(179 38 30 / var(--tw-text-opacity, 1));
}

.text-\[\#b42318\] {
  --tw-text-opacity: 1;
  color: rgb(180 35 24 / var(--tw-text-opacity, 1));
}

.text-\[\#c7c7cc\] {
  --tw-text-opacity: 1;
  color: rgb(199 199 204 / var(--tw-text-opacity, 1));
}

.text-\[\#d1d1d6\] {
  --tw-text-opacity: 1;
  color: rgb(209 209 214 / var(--tw-text-opacity, 1));
}

.text-\[\#ff3b30\] {
  --tw-text-opacity: 1;
  color: rgb(255 59 48 / var(--tw-text-opacity, 1));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-white\/50 {
  color: rgb(255 255 255 / 0.5);
}

.text-white\/65 {
  color: rgb(255 255 255 / 0.65);
}

.text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}

.underline {
  text-decoration-line: underline;
}

.line-through {
  text-decoration-line: line-through;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.accent-\[\#1d1d1f\] {
  accent-color: #1d1d1f;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-90 {
  opacity: 0.9;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_-12px_40px_rgba\(0\2c 0\2c 0\2c 0\.18\)\] {
  --tw-shadow: 0 -12px 40px rgba(0,0,0,0.18);
  --tw-shadow-colored: 0 -12px 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_-8px_24px_rgba\(60\2c 64\2c 67\2c 0\.18\)\] {
  --tw-shadow: 0 -8px 24px rgba(60,64,67,0.18);
  --tw-shadow-colored: 0 -8px 24px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_0_0_1px_\#1d1d1f\] {
  --tw-shadow: 0 0 0 1px #1d1d1f;
  --tw-shadow-colored: 0 0 0 1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_10px_28px_rgba\(0\2c 0\2c 0\2c 0\.28\)\] {
  --tw-shadow: 0 10px 28px rgba(0,0,0,0.28);
  --tw-shadow-colored: 0 10px 28px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_12px_28px_rgba\(0\2c 0\2c 0\2c 0\.16\)\] {
  --tw-shadow: 0 12px 28px rgba(0,0,0,0.16);
  --tw-shadow-colored: 0 12px 28px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_12px_28px_rgba\(80\2c 40\2c 120\2c 0\.18\)\] {
  --tw-shadow: 0 12px 28px rgba(80,40,120,0.18);
  --tw-shadow-colored: 0 12px 28px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_12px_32px_rgba\(0\2c 0\2c 0\2c 0\.18\)\] {
  --tw-shadow: 0 12px 32px rgba(0,0,0,0.18);
  --tw-shadow-colored: 0 12px 32px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_14px_32px_rgba\(0\2c 0\2c 0\2c 0\.18\)\] {
  --tw-shadow: 0 14px 32px rgba(0,0,0,0.18);
  --tw-shadow-colored: 0 14px 32px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_16px_40px_rgba\(0\2c 0\2c 0\2c 0\.22\)\] {
  --tw-shadow: 0 16px 40px rgba(0,0,0,0.22);
  --tw-shadow-colored: 0 16px 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_1px_2px_rgba\(0\2c 0\2c 0\2c 0\.04\)\] {
  --tw-shadow: 0 1px 2px rgba(0,0,0,0.04);
  --tw-shadow-colored: 0 1px 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_4px_16px_rgba\(0\2c 0\2c 0\2c 0\.18\)\] {
  --tw-shadow: 0 4px 16px rgba(0,0,0,0.18);
  --tw-shadow-colored: 0 4px 16px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_8px_24px_rgba\(0\2c 0\2c 0\2c 0\.12\)\] {
  --tw-shadow: 0 8px 24px rgba(0,0,0,0.12);
  --tw-shadow-colored: 0 8px 24px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[12px_0_40px_rgba\(0\2c 0\2c 0\2c 0\.35\)\] {
  --tw-shadow: 12px 0 40px rgba(0,0,0,0.35);
  --tw-shadow-colored: 12px 0 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-inset {
  --tw-ring-inset: inset;
}

.ring-\[\#0b57d0\] {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(11 87 208 / var(--tw-ring-opacity, 1));
}

.ring-\[\#1d1d1f\] {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(29 29 31 / var(--tw-ring-opacity, 1));
}

.ring-\[\#d2d2d7\] {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(210 210 215 / var(--tw-ring-opacity, 1));
}

.ring-black\/10 {
  --tw-ring-color: rgb(0 0 0 / 0.1);
}

.ring-black\/20 {
  --tw-ring-color: rgb(0 0 0 / 0.2);
}

.ring-black\/25 {
  --tw-ring-color: rgb(0 0 0 / 0.25);
}

.ring-white\/15 {
  --tw-ring-color: rgb(255 255 255 / 0.15);
}

.ring-offset-1 {
  --tw-ring-offset-width: 1px;
}

.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur-md {
  --tw-blur: blur(12px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.ease-\[cubic-bezier\(0\.22\2c 1\2c 0\.36\2c 1\)\] {
  transition-timing-function: cubic-bezier(0.22,1,0.36,1);
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.\[-ms-overflow-style\:none\] {
  -ms-overflow-style: none;
}

.\[scrollbar-width\:none\] {
  scrollbar-width: none;
}

:root {
  --paper: #ffffff;
  --paper-deep: #f5f5f7;
  --ink: #1d1d1f;
  --ink-muted: #6e6e73;
  --signal: #0066cc;
  --signal-soft: #e8f1fc;
  --void: #1d1d1f;
  --background: #ffffff;
  --foreground: #1d1d1f;
  --font-apple:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-apple);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

#root {
  min-height: 100%;
}

::-moz-selection {
  background: #0071e3;
  color: white;
}

::selection {
  background: #0071e3;
  color: white;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #1d1d1f;
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #000;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid #d2d2d7;
  color: #1d1d1f;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.btn-ghost:hover {
  background: #f5f5f7;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6e6e73;
}

/* Digital paper — publish pulse */
@keyframes disc-publish-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes disc-publish-pop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@keyframes disc-publish-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.disc-publish-spin {
  animation: disc-publish-spin 0.85s linear infinite;
}
.disc-publish-pop {
  animation: disc-publish-pop 0.45s ease-out both;
}
.disc-publish-busy {
  background: linear-gradient(110deg, #1d1d1f 0%, #3a3a3c 45%, #1d1d1f 90%);
  background-size: 200% 100%;
  animation: disc-publish-shimmer 1.2s ease-in-out infinite;
}
.placeholder\:text-\[\#8e8e93\]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(142 142 147 / var(--tw-text-opacity, 1));
}
.placeholder\:text-\[\#8e8e93\]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(142 142 147 / var(--tw-text-opacity, 1));
}
.placeholder\:text-\[\#9a958c\]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(154 149 140 / var(--tw-text-opacity, 1));
}
.placeholder\:text-\[\#9a958c\]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(154 149 140 / var(--tw-text-opacity, 1));
}
.placeholder\:text-\[\#9aa0a6\]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(154 160 166 / var(--tw-text-opacity, 1));
}
.placeholder\:text-\[\#9aa0a6\]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(154 160 166 / var(--tw-text-opacity, 1));
}
.placeholder\:text-\[\#aeaeb2\]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(174 174 178 / var(--tw-text-opacity, 1));
}
.placeholder\:text-\[\#aeaeb2\]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(174 174 178 / var(--tw-text-opacity, 1));
}
.placeholder\:text-\[\#c7c7cc\]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(199 199 204 / var(--tw-text-opacity, 1));
}
.placeholder\:text-\[\#c7c7cc\]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(199 199 204 / var(--tw-text-opacity, 1));
}
.read-only\:text-\[\#6e6e73\]:-moz-read-only {
  --tw-text-opacity: 1;
  color: rgb(110 110 115 / var(--tw-text-opacity, 1));
}
.read-only\:text-\[\#6e6e73\]:read-only {
  --tw-text-opacity: 1;
  color: rgb(110 110 115 / var(--tw-text-opacity, 1));
}
.hover\:border-\[\#1d1d1f\]:hover {
  --tw-border-opacity: 1;
  border-color: rgb(29 29 31 / var(--tw-border-opacity, 1));
}
.hover\:border-\[\#d2d2d7\]:hover {
  --tw-border-opacity: 1;
  border-color: rgb(210 210 215 / var(--tw-border-opacity, 1));
}
.hover\:bg-\[\#0842a0\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(8 66 160 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#e0e0e0\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(224 224 224 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#ebebeb\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(235 235 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#ececec\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(236 236 236 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#f1f3f4\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(241 243 244 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#f5f5f7\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 247 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#fafafa\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#ff3b30\]\/10:hover {
  background-color: rgb(255 59 48 / 0.1);
}
.hover\:bg-black:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hover\:text-\[\#0066cc\]:hover {
  --tw-text-opacity: 1;
  color: rgb(0 102 204 / var(--tw-text-opacity, 1));
}
.hover\:text-\[\#1d1d1f\]:hover {
  --tw-text-opacity: 1;
  color: rgb(29 29 31 / var(--tw-text-opacity, 1));
}
.hover\:text-\[\#912018\]:hover {
  --tw-text-opacity: 1;
  color: rgb(145 32 24 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:opacity-100:hover {
  opacity: 1;
}
.focus\:border-\[\#1d1d1f\]:focus {
  --tw-border-opacity: 1;
  border-color: rgb(29 29 31 / var(--tw-border-opacity, 1));
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-\[\#1d1d1f\]:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(29 29 31 / var(--tw-ring-opacity, 1));
}
.focus\:ring-\[\#1d1d1f\]\/20:focus {
  --tw-ring-color: rgb(29 29 31 / 0.2);
}
.focus-visible\:ring-2:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-\[\#0066cc\]:focus-visible {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 102 204 / var(--tw-ring-opacity, 1));
}
.focus-visible\:ring-offset-2:focus-visible {
  --tw-ring-offset-width: 2px;
}
.active\:cursor-grabbing:active {
  cursor: grabbing;
}
.disabled\:opacity-40:disabled {
  opacity: 0.4;
}
.disabled\:opacity-60:disabled {
  opacity: 0.6;
}
.disabled\:opacity-70:disabled {
  opacity: 0.7;
}
.disabled\:opacity-90:disabled {
  opacity: 0.9;
}
.group:hover .group-hover\:scale-\[1\.02\] {
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:scale-\[1\.03\] {
  --tw-scale-x: 1.03;
  --tw-scale-y: 1.03;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:bg-\[\#1d1d1f\] {
  --tw-bg-opacity: 1;
  background-color: rgb(29 29 31 / var(--tw-bg-opacity, 1));
}
.group:hover .group-hover\:bg-black\/35 {
  background-color: rgb(0 0 0 / 0.35);
}
.group:hover .group-hover\:bg-black\/40 {
  background-color: rgb(0 0 0 / 0.4);
}
.group:hover .group-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:shadow-\[0_8px_24px_rgba\(0\2c 0\2c 0\2c 0\.08\)\] {
  --tw-shadow: 0 8px 24px rgba(0,0,0,0.08);
  --tw-shadow-colored: 0 8px 24px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group:active .group-active\:bg-black\/25 {
  background-color: rgb(0 0 0 / 0.25);
}
.group:active .group-active\:bg-black\/30 {
  background-color: rgb(0 0 0 / 0.3);
}
@media (min-width: 640px) {

  .sm\:bottom-auto {
    bottom: auto;
  }

  .sm\:left-1\/2 {
    left: 50%;
  }

  .sm\:right-auto {
    right: auto;
  }

  .sm\:top-1\/2 {
    top: 50%;
  }

  .sm\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sm\:-mt-12 {
    margin-top: -3rem;
  }

  .sm\:mt-1 {
    margin-top: 0.25rem;
  }

  .sm\:mt-4 {
    margin-top: 1rem;
  }

  .sm\:block {
    display: block;
  }

  .sm\:h-10 {
    height: 2.5rem;
  }

  .sm\:h-28 {
    height: 7rem;
  }

  .sm\:h-32 {
    height: 8rem;
  }

  .sm\:h-9 {
    height: 2.25rem;
  }

  .sm\:max-h-16 {
    max-height: 4rem;
  }

  .sm\:min-h-\[min\(100svh-3rem\2c 820px\)\] {
    min-height: min(100svh - 3rem, 820px);
  }

  .sm\:w-10 {
    width: 2.5rem;
  }

  .sm\:w-28 {
    width: 7rem;
  }

  .sm\:w-32 {
    width: 8rem;
  }

  .sm\:w-9 {
    width: 2.25rem;
  }

  .sm\:w-\[130px\] {
    width: 130px;
  }

  .sm\:w-\[150px\] {
    width: 150px;
  }

  .sm\:max-w-\[14rem\] {
    max-width: 14rem;
  }

  .sm\:max-w-\[380px\] {
    max-width: 380px;
  }

  .sm\:-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:items-stretch {
    align-items: stretch;
  }

  .sm\:gap-4 {
    gap: 1rem;
  }

  .sm\:gap-6 {
    gap: 1.5rem;
  }

  .sm\:rounded-2xl {
    border-radius: 1rem;
  }

  .sm\:p-3 {
    padding: 0.75rem;
  }

  .sm\:p-4 {
    padding: 1rem;
  }

  .sm\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:pt-12 {
    padding-top: 3rem;
  }

  .sm\:text-\[12px\] {
    font-size: 12px;
  }

  .sm\:text-\[13px\] {
    font-size: 13px;
  }

  .sm\:text-\[14px\] {
    font-size: 14px;
  }

  .sm\:text-\[15px\] {
    font-size: 15px;
  }

  .sm\:text-\[18px\] {
    font-size: 18px;
  }

  .sm\:text-\[22px\] {
    font-size: 22px;
  }

  .sm\:text-\[32px\] {
    font-size: 32px;
  }

  .sm\:text-\[34px\] {
    font-size: 34px;
  }

  .sm\:text-\[36px\] {
    font-size: 36px;
  }

  .sm\:opacity-0 {
    opacity: 0;
  }

  .sm\:shadow-\[0_1px_3px_rgba\(60\2c 64\2c 67\2c 0\.15\)\] {
    --tw-shadow: 0 1px 3px rgba(60,64,67,0.15);
    --tw-shadow-colored: 0 1px 3px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .sm\:transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .group:hover .sm\:group-hover\:opacity-100 {
    opacity: 1;
  }
}
@media (min-width: 768px) {

  .md\:inset-x-8 {
    left: 2rem;
    right: 2rem;
  }

  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:ml-2 {
    margin-left: 0.5rem;
  }

  .md\:mt-14 {
    margin-top: 3.5rem;
  }

  .md\:mt-3\.5 {
    margin-top: 0.875rem;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:aspect-\[6\/1\] {
    aspect-ratio: 6/1;
  }

  .md\:h-12 {
    height: 3rem;
  }

  .md\:h-4 {
    height: 1rem;
  }

  .md\:h-9 {
    height: 2.25rem;
  }

  .md\:h-\[calc\(100svh-3\.5rem\)\] {
    height: calc(100svh - 3.5rem);
  }

  .md\:w-4 {
    width: 1rem;
  }

  .md\:w-\[140px\] {
    width: 140px;
  }

  .md\:w-\[168px\] {
    width: 168px;
  }

  .md\:max-w-\[420px\] {
    max-width: 420px;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-\[minmax\(0\2c 1fr\)_minmax\(0\2c 0\.95fr\)\] {
    grid-template-columns: minmax(0,1fr) minmax(0,0.95fr);
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:gap-14 {
    gap: 3.5rem;
  }

  .md\:gap-16 {
    gap: 4rem;
  }

  .md\:gap-2 {
    gap: 0.5rem;
  }

  .md\:gap-4 {
    gap: 1rem;
  }

  .md\:gap-5 {
    gap: 1.25rem;
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:px-3\.5 {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .md\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:pb-20 {
    padding-bottom: 5rem;
  }

  .md\:pb-28 {
    padding-bottom: 7rem;
  }

  .md\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .md\:pl-4 {
    padding-left: 1rem;
  }

  .md\:pr-1\.5 {
    padding-right: 0.375rem;
  }

  .md\:pt-16 {
    padding-top: 4rem;
  }

  .md\:pt-\[4\.5rem\] {
    padding-top: 4.5rem;
  }

  .md\:text-\[13px\] {
    font-size: 13px;
  }

  .md\:text-\[14px\] {
    font-size: 14px;
  }

  .md\:text-\[15px\] {
    font-size: 15px;
  }

  .md\:text-\[16px\] {
    font-size: 16px;
  }

  .md\:text-\[32px\] {
    font-size: 32px;
  }

  .md\:text-\[44px\] {
    font-size: 44px;
  }

  .md\:text-\[48px\] {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {

  .lg\:inline {
    display: inline;
  }
}
.\[\&\:\:-webkit-scrollbar\]\:hidden::-webkit-scrollbar {
  display: none;
}
