/* [project]/apps/web/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  --bg: #0f1317;
  --bg-accent: #1b232c;
  --panel: #12181fe0;
  --panel-strong: #0d1218f2;
  --line: #b1c0cc29;
  --ink: #ecf2f8;
  --muted: #93a1af;
  --accent: #e82127;
  --accent-strong: #b91419;
  --good: #6de2a4;
  --warn: #ffca7a;
  --bad: #ff8c8c;
  --shadow: 0 24px 80px #00000059;
}

* {
  box-sizing: border-box;
}

html, body {
  background: radial-gradient(circle at top, #e8212729, transparent 32%),
    linear-gradient(180deg, #131920 0%, var(--bg) 100%);
  min-height: 100%;
  color: var(--ink);
  margin: 0;
  font-family: IBM Plex Sans, Segoe UI, sans-serif;
}

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

button {
  font: inherit;
  color: inherit;
}

.shell {
  min-height: 100vh;
  padding: 24px;
}

.shell-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.topbar {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  display: flex;
}

.brand {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.brand-eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  font-size: .76rem;
}

.brand-title {
  letter-spacing: -.04em;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
}

.topbar-actions {
  align-items: center;
  gap: 12px;
  display: flex;
}

.session-chip, .button, .ghost-button, .tab, .pill {
  border: 1px solid var(--line);
  border-radius: 999px;
}

.session-chip {
  color: var(--muted);
  background: #ffffff0a;
  padding: 10px 14px;
}

.button, .ghost-button {
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  transition: all .18s;
  display: inline-flex;
}

.button {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff5f5;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.button:hover {
  filter: brightness(1.08);
}

.ghost-button {
  color: var(--ink);
  background: #ffffff08;
}

.nav {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  display: flex;
}

.nav-link {
  color: var(--muted);
  border: 1px solid #0000;
  border-radius: 999px;
  padding: 10px 14px;
}

.nav-link.active {
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff0a;
}

.page-grid {
  gap: 18px;
  display: grid;
}

.hero, .panel, .stat-card, .diff-card, .loading-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.hero {
  padding: 28px;
}

.hero h1, .hero h2, .panel h2, .panel h3 {
  letter-spacing: -.04em;
  margin: 0;
}

.hero p, .panel p, .muted {
  color: var(--muted);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  display: grid;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  display: grid;
}

.panel {
  padding: 22px;
}

.stats {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  display: grid;
}

.stat-card {
  padding: 20px;
}

.stat-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .84rem;
}

.stat-value {
  letter-spacing: -.05em;
  margin-top: 12px;
  font-size: 2rem;
  font-weight: 700;
}

.app-grid, .release-list, .entry-list {
  gap: 14px;
  display: grid;
}

.diff-card {
  padding: 20px;
}

.loading-panel, .loading-card {
  overflow: hidden;
}

.loading-card {
  padding: 22px;
}

.loading-card.tall {
  min-height: 260px;
}

.loading-line, .loading-pill {
  background: #ffffff0f;
  position: relative;
  overflow: hidden;
}

.loading-line:after, .loading-pill:after {
  content: "";
  background: linear-gradient(90deg, #0000 0%, #ffffff24 50%, #0000 100%);
  animation: 1.15s ease-in-out infinite loading-shimmer;
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
}

.loading-line {
  border-radius: 999px;
  height: 14px;
  margin-bottom: 14px;
}

.loading-line.short {
  width: 24%;
}

.loading-line.medium {
  width: 48%;
}

.loading-line.long {
  width: 100%;
}

.loading-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 110px;
  height: 38px;
}

.diff-card header, .release-row header {
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  display: flex;
}

.release-row, .entry-row {
  border: 1px solid var(--line);
  background: #ffffff05;
  border-radius: 20px;
}

.release-row {
  padding: 18px;
}

.release-meta, .entry-meta {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  display: flex;
}

.pill {
  color: var(--muted);
  background: #ffffff08;
  padding: 6px 10px;
  font-size: .84rem;
}

.pill.added {
  color: var(--good);
}

.pill.removed {
  color: var(--bad);
}

.pill.changed {
  color: var(--warn);
}

.pill.favorite {
  color: #66f0c2;
}

.pill.archived {
  color: #b1a6c8;
}

.tab-row {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.subtab-row {
  margin-bottom: 18px;
}

.tab {
  color: var(--muted);
  background: #ffffff08;
  padding: 10px 14px;
}

.tab-button {
  cursor: pointer;
}

.subtab {
  text-transform: capitalize;
}

.mini-button {
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  background: #ffffff08;
  border-radius: 999px;
  padding: 6px 10px;
}

.mini-button:disabled {
  cursor: progress;
  opacity: .6;
}

.tab.active {
  color: var(--ink);
  background: #7ad2ff1a;
  border-color: #7ad2ff59;
}

.entry-row {
  padding: 16px;
}

.entry-actions {
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
  display: flex;
}

.english-entry-row {
  gap: 12px;
  display: grid;
}

.english-entry-meta {
  margin-top: 0;
  margin-bottom: 0;
}

.entry-value, .entry-key {
  white-space: pre-wrap;
  word-break: break-word;
  font-family: IBM Plex Mono, SFMono-Regular, monospace;
}

.entry-key {
  color: #d3d3d3;
  margin-bottom: 8px;
  font-size: .9rem;
}

.english-entry-key {
  margin-bottom: 0;
}

.entry-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

.artifact-list {
  gap: 12px;
  display: grid;
}

.artifact-link {
  border: 1px solid var(--line);
  background: #ffffff08;
  border-radius: 18px;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  display: flex;
}

.section-heading {
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  display: flex;
}

.empty {
  text-align: center;
  border: 1px dashed var(--line);
  color: var(--muted);
  border-radius: 20px;
  padding: 28px;
}

.filter-loading {
  min-height: 120px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  display: flex;
}

.loading-dot {
  background: var(--accent);
  border-radius: 999px;
  width: 10px;
  height: 10px;
  animation: 1.1s ease-in-out infinite loading-pulse;
  box-shadow: 0 0 #e8212773;
}

.pagination {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  display: flex;
}

.login-card {
  text-align: center;
  gap: 30px;
  max-width: 620px;
  margin: 0 auto;
  padding: 32px;
  display: grid;
}

.login-card h1 {
  margin: 0;
}

.login-shell-inner {
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 48px);
  display: flex;
}

.login-card .button, .login-card .ghost-button {
  margin-inline: auto;
}

@keyframes loading-shimmer {
  100% {
    transform: translateX(100%);
  }
}

@keyframes loading-pulse {
  0%, 100% {
    transform: scale(.9);
    box-shadow: 0 0 #e8212733;
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px #e8212700;
  }
}

@media (max-width: 900px) {
  .grid-2, .grid-3, .entry-columns {
    grid-template-columns: 1fr;
  }

  .shell {
    padding: 16px;
  }

  .topbar {
    flex-direction: column;
    align-items: start;
  }
}

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