/* [project]/src/app/(frontend)/styles.css [app-client] (css) */
:root {
  --background: #f5f4ef;
  --ink: #161714;
  --muted: #686b64;
  --line: #d9dad3;
  --paper: #fffef9;
  --accent: #7357ff;
  --accent-dark: #5337d6;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.shell {
  width: min(1180px, 100% - 40px);
  min-height: 100vh;
  margin: 0 auto;
}

.nav {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  display: flex;
}

.brand, .navActions, .heroActions {
  align-items: center;
  display: flex;
}

.brand {
  letter-spacing: -.01em;
  gap: 11px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.brandMark {
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 14px;
  display: grid;
}

.navActions {
  gap: 18px;
}

.session {
  color: var(--muted);
  font-size: 13px;
}

.button {
  border: 1px solid #0000;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .15s;
  display: inline-flex;
}

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

.buttonPrimary {
  color: #fff;
  background: var(--accent);
}

.buttonPrimary:hover {
  background: var(--accent-dark);
}

.buttonSecondary {
  border-color: var(--line);
  background: var(--paper);
}

.buttonSecondary:hover {
  border-color: #b5b7ad;
}

.hero {
  max-width: 790px;
  padding: 96px 0 88px;
}

.eyebrow {
  color: var(--accent-dark);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  letter-spacing: -.055em;
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 78px);
  line-height: .98;
}

.lede {
  max-width: 670px;
  color: var(--muted);
  margin-bottom: 34px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

.heroActions {
  gap: 10px;
}

.workspace {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 60px #1718140f;
}

.sectionHeader {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  min-height: 104px;
  padding: 24px 28px;
  display: flex;
}

.sectionHeader .eyebrow {
  margin-bottom: 7px;
}

h2 {
  letter-spacing: -.03em;
  margin-bottom: 0;
  font-size: 26px;
}

.recordCount {
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 700;
}

.tableWrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  font-size: 14px;
}

th, td {
  border-bottom: 1px solid var(--line);
  min-width: 130px;
  padding: 16px 28px;
}

th:first-child, td:first-child {
  min-width: 250px;
}

th {
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #f9f8f3;
  font-size: 11px;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover {
  background: #faf9f4;
}

.projectLink {
  text-underline-offset: 3px;
  font-weight: 700;
  text-decoration-color: #bcbeb5;
}

.status {
  border-radius: 999px;
  align-items: center;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.status-planned {
  color: #555850;
  background: #ecece7;
}

.status-in-progress {
  color: #644408;
  background: #fff0c9;
}

.status-complete {
  color: #126540;
  background: #d9f3e5;
}

.capitalize {
  text-transform: capitalize;
}

.emptyState {
  text-align: center;
  align-content: center;
  place-items: center;
  min-height: 310px;
  padding: 44px 20px;
  display: grid;
}

.emptyIcon {
  width: 44px;
  height: 44px;
  color: var(--muted);
  border: 1px dashed #aeb0a7;
  border-radius: 11px;
  place-items: center;
  margin-bottom: 18px;
  font-size: 25px;
  display: grid;
}

.emptyState h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.emptyState p {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 14px;
}

footer {
  color: var(--muted);
  text-align: center;
  padding: 30px 0 48px;
  font-size: 13px;
}

code {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  border-radius: 5px;
  padding: 3px 6px;
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    min-height: 68px;
  }

  .session {
    display: none;
  }

  .hero {
    padding: 70px 4px 62px;
  }

  .heroActions {
    flex-direction: column;
    align-items: stretch;
  }

  .sectionHeader {
    padding: 20px;
  }

  th, td {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*# sourceMappingURL=src_app_%28frontend%29_styles_0-lpwga.css.map*/