/* [project]/apps/web/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  --bg: #121313;
  --panel: #ffffff0d;
  --panel-strong: #ffffff14;
  --border: #ffffff14;
  --text: #f4f1eb;
  --muted: #b7b0a5;
  --accent: #ff6f61;
  --accent-soft: #ff6f6124;
  --shadow: 0 30px 80px #00000059;
  font-family: SF Pro Text, SF Pro Display, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  color: var(--text);
  background: radial-gradient(circle at top, #ff6f6129, #0000 30%), linear-gradient(#191919 0%, #0d0d0e 100%);
  margin: 0;
}

body {
  min-height: 100vh;
}

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

button, input, textarea {
  font: inherit;
}

.page {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
  padding: 32px 0 48px;
}

.shell {
  grid-template-columns: 260px 1fr;
  gap: 24px;
  display: grid;
}

.sidebar, .panel, .note-card, .segment-card, .surface {
  border: 1px solid var(--border);
  background: var(--panel);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.sidebar {
  height: fit-content;
  padding: 24px;
  position: sticky;
  top: 24px;
}

.nav {
  gap: 12px;
  margin-top: 28px;
  display: grid;
}

.nav a {
  background: var(--panel-strong);
  border-radius: 14px;
  padding: 12px 14px;
}

.content {
  gap: 16px;
  display: grid;
}

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

.hero, .panel, .surface {
  padding: 24px;
}

.hero {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #ff6f612e, #ffffff0a);
  border-radius: 28px;
  gap: 12px;
  display: grid;
}

.hero-actions, .card-grid, .field-grid, .status-row {
  gap: 16px;
  display: grid;
}

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

.note-card, .segment-card {
  gap: 10px;
  padding: 20px;
  display: grid;
}

.note-meta, .status-row, .field-label {
  color: var(--muted);
  font-size: .92rem;
}

.status-pill {
  background: var(--accent-soft);
  width: fit-content;
  color: var(--accent);
  border: 1px solid #ff6f613d;
  border-radius: 999px;
  padding: 6px 10px;
}

.field-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.input, .textarea {
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text);
  background: #ffffff0a;
  border-radius: 16px;
  margin-top: 8px;
  padding: 14px 16px;
}

.textarea {
  resize: vertical;
  min-height: 120px;
}

.button-row {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.button {
  background: var(--accent);
  color: #170d0b;
  border: 1px solid #0000;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  font-weight: 700;
  display: inline-flex;
}

.button.secondary {
  color: var(--text);
  border-color: var(--border);
  background: #ffffff0f;
}

@media (max-width: 900px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

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