/* [project]/apps/web/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
}

:root {
  --ui-bg: #0c0c0e;
  --ui-surface: #121216e6;
  --ui-surface-strong: #18181cf5;
  --ui-border: #6db7ff40;
  --ui-border-soft: #ffffff14;
  --ui-text: #f7f6ef;
  --ui-muted: #b5b3a8;
  --ui-accent: #6db7ff;
  --ui-accent-ink: #0b1420;
  --ui-danger: #ff7a7a;
  --ui-shadow: none;
}

html, body {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: var(--ui-bg);
  color: var(--ui-text);
  font-family: var(--font-ui), "DM Sans", sans-serif;
  font-size: 14px;
}

button, input, textarea, select, label {
  font: inherit;
}

button, .btn {
  color: var(--ui-text);
  border: 1px solid var(--ui-border-soft);
  cursor: pointer;
  background: #ffffff0d;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, background .15s, border-color .15s, box-shadow .15s;
  display: inline-flex;
}

button:disabled, .btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

button:not(:disabled):hover, .btn:not(:disabled):hover {
  border-color: var(--ui-border);
  background: #ffffff17;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ui-accent);
  color: var(--ui-accent-ink);
  box-shadow: none;
  border-color: #6db7ffcc;
}

.btn-primary:not(:disabled):hover {
  background: #5aaaff;
}

.btn-secondary {
  background: #ffffff0f;
}

.btn-secondary:disabled {
  color: #f7f6ef99;
  background: #ffffff08;
  border-color: #ffffff14;
}

.btn-ghost {
  background: none;
  border-color: #ffffff29;
}

.btn-danger {
  color: var(--ui-danger);
  box-shadow: none;
  background: #ff7a7a1f;
  border-color: #ff7a7a4d;
}

.btn-small {
  padding: 5px 8px;
  font-size: 11px;
}

input, textarea, select {
  color: var(--ui-text);
  background: #060608cc;
  border: 1px solid #ffffff1f;
  border-radius: 8px;
  width: 100%;
  padding: 7px 9px;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--ui-accent);
  box-shadow: none;
  outline: none;
}

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

main {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 32px;
  display: flex;
}

.board-root {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.board-canvas {
  touch-action: none;
  background: #0c0c0e;
  width: 100%;
  height: 100%;
  position: relative;
}

.board-canvas:focus, .board-canvas:focus-visible {
  outline: none;
}

.board-canvas:before, .board-canvas:after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.board-canvas:before {
  opacity: .6;
  background-image: radial-gradient(#fff3 1px, #0000 1.1px);
  background-size: 24px 24px;
}

.board-canvas:after {
  opacity: .36;
  background-image: radial-gradient(#ffffff24 1.4px, #0000 1.6px);
  background-size: 150px 150px;
}

.board-canvas .konvajs-content {
  z-index: 1;
  position: relative;
}

.minimap {
  z-index: 3;
  pointer-events: none;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-radius: 16px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.minimap-zoom {
  color: #ffffffb3;
  pointer-events: none;
  background: #08080ab3;
  border: 1px solid #ffffff1f;
  border-radius: 10px;
  padding: 4px 8px;
  font-size: 11px;
  position: absolute;
  bottom: 10px;
  left: 12px;
}

.group-color-panel {
  z-index: 4;
  box-shadow: none;
  pointer-events: auto;
  background: #08080ad9;
  border: 1px solid #ffffff1f;
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  display: flex;
  position: absolute;
}

.group-color-label {
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ui-muted);
  font-size: 9px;
}

.group-color-swatches {
  align-items: center;
  gap: 6px;
  display: flex;
}

.group-color-swatch {
  cursor: pointer;
  background: none;
  border: 1px solid #ffffff40;
  border-radius: 999px;
  width: 16px;
  height: 16px;
  padding: 0;
}

.group-color-panel input[type="color"] {
  background: none;
  border: 0;
  width: 18px;
  height: 18px;
  padding: 0;
}

.crop-controls {
  z-index: 5;
  box-shadow: none;
  pointer-events: auto;
  background: #08080ad9;
  border: 1px solid #ffffff1f;
  border-radius: 12px;
  gap: 6px;
  padding: 6px;
  display: flex;
  position: absolute;
}

.minimap svg {
  border-radius: 16px;
  display: block;
}

.sidebar {
  z-index: 11;
  background: var(--ui-surface);
  border: 1px solid var(--ui-border-soft);
  width: 210px;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-radius: 16px;
  flex-direction: column;
  gap: 18px;
  max-height: calc(100vh - 40px);
  padding: 14px;
  transition: width .18s, padding .18s;
  animation: .35s ease-out both panel-in;
  display: flex;
  position: absolute;
  top: 20px;
  left: 20px;
  overflow: auto;
}

.sidebar-brand {
  flex-direction: column;
  gap: 6px;
  display: flex;
  position: relative;
}

.sidebar-title {
  letter-spacing: -.02em;
  font-size: 18px;
  font-weight: 700;
}

.sidebar-toggle {
  width: 28px;
  height: 28px;
  color: var(--ui-text);
  cursor: pointer;
  background: #0a0a0c8c;
  border: 1px solid #ffffff1f;
  border-radius: 10px;
  font-weight: 600;
  position: absolute;
  top: 0;
  right: 0;
}

.sidebar-collapsed {
  width: 56px;
  padding: 12px;
  overflow: hidden;
}

.sidebar-collapsed .sidebar-section {
  display: none;
}

.sidebar-collapsed .sidebar-title, .sidebar-collapsed .sidebar-subtitle {
  opacity: 0;
  pointer-events: none;
}

.sidebar-subtitle {
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ui-muted);
  font-size: 9px;
}

.sidebar-section {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.sidebar-section-header {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  display: flex;
}

.sidebar-collapse {
  width: 20px;
  height: 20px;
  color: var(--ui-text);
  cursor: pointer;
  background: #0a0a0c8c;
  border: 1px solid #ffffff26;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1;
}

.sidebar-label {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ui-muted);
  font-size: 10px;
}

.sidebar-item {
  color: var(--ui-text);
  font-size: 12px;
}

.share-link-row {
  align-items: center;
  gap: 6px;
  display: flex;
}

.share-link-row input {
  flex: 1;
  min-width: 0;
}

.share-invite, .member-list {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.member-row {
  background: #0c0c0e99;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  display: flex;
}

.member-info {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.member-email {
  font-size: 11px;
}

.member-role {
  color: var(--ui-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 9px;
}

.member-row select {
  width: 100%;
}

.toolbar-stack {
  z-index: 12;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 600px);
  display: flex;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.toolbar {
  background: var(--ui-surface);
  border: 1px solid var(--ui-border-soft);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-radius: 999px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 12px;
  display: flex;
  position: relative;
}

.toolbar-group {
  align-items: center;
  gap: 8px;
  display: flex;
}

.toolbar-divider {
  background: var(--ui-border-soft);
  width: 1px;
  height: 22px;
}

.toolbar-meta {
  color: var(--ui-muted);
  white-space: nowrap;
  padding: 0 6px;
  font-size: 11px;
}

.status-toast {
  z-index: 12;
  flex-direction: column;
  gap: 8px;
  max-width: 260px;
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.boards-page {
  flex-direction: column;
  gap: 18px;
  width: min(960px, 94vw);
  display: flex;
}

.boards-header {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.boards-header h1 {
  margin: 0;
  font-size: 32px;
}

.boards-actions {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

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

.board-card {
  background: #0c0c0ecc;
  border: 1px solid #ffffff1f;
  border-radius: 16px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  min-height: 92px;
  padding: 16px;
  transition: transform .15s, border-color .15s, box-shadow .15s;
  display: flex;
}

.board-card:hover {
  border-color: #6db7ff99;
  transform: translateY(-2px);
}

.board-title {
  margin-bottom: 6px;
  font-weight: 600;
}

.board-meta {
  color: var(--ui-muted);
  font-size: 12px;
}

.board-open {
  color: var(--ui-accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.board-card--skeleton {
  background: #ffffff08;
  border-style: dashed;
  border-color: #ffffff14;
}

.panel {
  z-index: 10;
  background: var(--ui-surface);
  border: 1px solid var(--ui-border-soft);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-radius: 14px;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  animation: .35s ease-out both panel-in;
  display: flex;
  position: absolute;
}

.panel-right {
  width: 300px;
  max-height: calc(100vh - 40px);
  animation-delay: 50ms;
  top: 20px;
  right: 20px;
  overflow: auto;
}

.panel-title {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ui-muted);
  margin: 0;
  font-size: 10px;
}

.panel-label {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ui-muted);
  font-size: 10px;
}

.panel-muted {
  color: var(--ui-muted);
}

.panel-message {
  color: var(--ui-danger);
}

.panel-divider {
  background: var(--ui-border-soft);
  width: 100%;
  height: 1px;
}

.panel-block {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.text-style-controls {
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  display: flex;
}

.text-style-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.text-style-row input[type="number"] {
  border: 1px solid var(--ui-border-soft);
  width: 80px;
  color: var(--ui-text);
  background: #0c0c0e99;
  border-radius: 10px;
  padding: 6px 8px;
}

.text-style-row input[type="color"] {
  border: 1px solid var(--ui-border-soft);
  cursor: pointer;
  background: none;
  border-radius: 8px;
  width: 42px;
  height: 32px;
  padding: 0;
}

.text-style-divider {
  background: var(--ui-border-soft);
  width: 1px;
  height: 20px;
}

.btn-toggle {
  min-width: 30px;
  padding: 6px 8px;
  font-weight: 700;
}

.btn-toggle.is-active {
  color: var(--ui-text);
  background: #6db7ff38;
  border-color: #6db7ff80;
}

.panel-list {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.modal-backdrop {
  z-index: 12;
  background: #05050699;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.modal-card {
  background: var(--ui-surface);
  border: 1px solid var(--ui-border-soft);
  width: 320px;
  box-shadow: none;
  border-radius: 16px;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  display: flex;
}

.modal-title {
  color: var(--ui-text);
  font-size: 14px;
  font-weight: 600;
}

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

.modal-grid label {
  color: var(--ui-muted);
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  display: flex;
}

.modal-grid input {
  border: 1px solid var(--ui-border-soft);
  width: 100%;
  color: var(--ui-text);
  background: #0c0c0e99;
  border-radius: 10px;
  padding: 6px 8px;
}

.modal-actions {
  justify-content: flex-end;
  gap: 10px;
  display: flex;
}

.comment-item {
  background: #ffffff08;
  border: 1px solid #ffffff0f;
  border-radius: 10px;
  padding: 8px;
}

.comment-meta {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ui-muted);
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  font-size: 9px;
  display: flex;
}

.comment-dot {
  border: 1px solid #fff3;
  border-radius: 999px;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
}

.comment-user {
  font-weight: 600;
}

.comment-time {
  letter-spacing: .1em;
  opacity: .7;
  font-size: 9px;
}

.comment-color-row {
  align-items: center;
  gap: 6px;
  display: flex;
}

.comment-color-swatch {
  cursor: pointer;
  background: none;
  border: 1px solid #ffffff40;
  border-radius: 999px;
  width: 16px;
  height: 16px;
  padding: 0;
}

.comment-color-swatch.is-active {
  border-color: #4aa3ffd9;
}

.comment-color-row input[type="color"] {
  background: none;
  border: 0;
  width: 18px;
  height: 18px;
  padding: 0;
}

.file-input {
  display: none;
}

.context-menu {
  z-index: 30;
  background: var(--ui-surface-strong);
  border: 1px solid var(--ui-border-soft);
  min-width: 200px;
  box-shadow: none;
  border-radius: 10px;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  animation: .12s ease-out both menu-in;
  display: flex;
  position: absolute;
}

.context-menu button {
  text-align: left;
  background: none;
  border: none;
  border-radius: 7px;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 6px 8px;
  font-weight: 500;
  display: flex;
}

.context-menu .menu-icon {
  width: 16px;
  height: 16px;
  color: var(--ui-muted);
  opacity: .8;
  flex: 0 0 16px;
}

.context-menu button:not(:disabled):hover .menu-icon {
  color: var(--ui-text);
  opacity: 1;
}

.context-menu .danger {
  color: var(--ui-danger);
}

.context-menu button:not(:disabled):hover {
  background: #6db7ff29;
  border-color: #0000;
}

.inline-text-editor {
  z-index: 40;
  background: var(--ui-surface-strong);
  color: var(--ui-text);
  border: 1px solid var(--ui-border);
  resize: none;
  transform-origin: 0 0;
  box-shadow: none;
  border-radius: 8px;
  outline: none;
  padding: 6px 8px;
  line-height: 1.2;
  position: fixed;
}

.auth-card {
  background: var(--ui-surface);
  border: 1px solid var(--ui-border-soft);
  width: min(440px, 92vw);
  box-shadow: none;
  border-radius: 18px;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  display: flex;
}

.auth-card h1 {
  letter-spacing: -.02em;
  margin: 0;
  font-size: 28px;
}

.share-gate {
  background: #050506;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 32px;
  display: flex;
}

.share-gate-card {
  width: min(420px, 92vw);
  box-shadow: none;
  background: #0a0a0ce6;
  border: 1px solid #ffffff1f;
  border-radius: 18px;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  display: flex;
}

.share-gate-title {
  letter-spacing: -.02em;
  font-size: 18px;
  font-weight: 700;
}

.auth-stack {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.auth-actions {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.auth-actions .btn {
  flex: 120px;
}

@media (max-width: 1100px) {
  .toolbar-stack {
    max-width: calc(100vw - 360px);
    left: 320px;
    transform: none;
  }
}

@media (max-width: 960px) {
  .boards-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sidebar {
    width: auto;
    position: absolute;
    inset: 12px 12px auto;
  }

  .toolbar-stack {
    align-items: center;
    max-width: none;
    inset: auto 12px 12px;
    transform: none;
  }

  .toolbar {
    border-radius: 18px;
    justify-content: center;
    max-width: none;
  }

  .panel-right {
    width: auto;
    max-height: 40vh;
    inset: auto 12px 88px;
  }
}

@media (max-width: 720px), (max-height: 720px) {
  .sidebar {
    gap: 10px;
    max-height: min(26vh, 220px);
    padding: 10px;
    overflow: auto;
  }

  .sidebar-section {
    gap: 6px;
  }

  .sidebar-title {
    font-size: 16px;
  }

  .sidebar-subtitle {
    font-size: 8px;
  }

  .toolbar {
    gap: 6px;
    padding: 6px 10px;
  }

  .toolbar-group {
    gap: 6px;
  }

  .toolbar-meta {
    font-size: 10px;
  }

  .panel {
    gap: 8px;
    padding: 10px;
  }

  .panel-right {
    max-height: min(34vh, 260px);
  }

  .panel-list {
    max-height: 140px;
    overflow: auto;
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(4px)scale(.98);
  }

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

/* [next]/internal/font/google/dm_sans_d142b8f8.module.css [app-client] (css) */
@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/c3cb240f9c892514-s.d8e4bce2.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/5c285b27cdda1fe8-s.p.a62025f2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/c3cb240f9c892514-s.d8e4bce2.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/5c285b27cdda1fe8-s.p.a62025f2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/c3cb240f9c892514-s.d8e4bce2.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/5c285b27cdda1fe8-s.p.a62025f2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/c3cb240f9c892514-s.d8e4bce2.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/5c285b27cdda1fe8-s.p.a62025f2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: DM Sans Fallback;
  src: local(Arial);
  ascent-override: 94.9%;
  descent-override: 29.66%;
  line-gap-override: 0.0%;
  size-adjust: 104.53%;
}

.dm_sans_d142b8f8-module__6awHIW__className {
  font-family: DM Sans, DM Sans Fallback;
  font-style: normal;
}

.dm_sans_d142b8f8-module__6awHIW__variable {
  --font-ui: "DM Sans", "DM Sans Fallback";
}

/* [next]/internal/font/google/space_grotesk_54f8fd2b.module.css [app-client] (css) */
@font-face {
  font-family: Space Grotesk;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/32687112bd2dd8db-s.cfdd66c2.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Space Grotesk;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/28868e710e86be81-s.c30238d4.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Space Grotesk;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/0c89a48fa5027cee-s.p.4564287c.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Space Grotesk;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/32687112bd2dd8db-s.cfdd66c2.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Space Grotesk;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/28868e710e86be81-s.c30238d4.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Space Grotesk;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/0c89a48fa5027cee-s.p.4564287c.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Space Grotesk;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/32687112bd2dd8db-s.cfdd66c2.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Space Grotesk;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/28868e710e86be81-s.c30238d4.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Space Grotesk;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/0c89a48fa5027cee-s.p.4564287c.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Space Grotesk;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/32687112bd2dd8db-s.cfdd66c2.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Space Grotesk;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/28868e710e86be81-s.c30238d4.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Space Grotesk;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/0c89a48fa5027cee-s.p.4564287c.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Space Grotesk Fallback;
  src: local(Arial);
  ascent-override: 89.71%;
  descent-override: 26.62%;
  line-gap-override: 0.0%;
  size-adjust: 109.69%;
}

.space_grotesk_54f8fd2b-module__cnZXiW__className {
  font-family: Space Grotesk, Space Grotesk Fallback;
  font-style: normal;
}

.space_grotesk_54f8fd2b-module__cnZXiW__variable {
  --font-space: "Space Grotesk", "Space Grotesk Fallback";
}

/* [next]/internal/font/google/fraunces_c626f2b0.module.css [app-client] (css) */
@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/1e219c03c996efbd-s.ba7d7329.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/b35b0dbffda7f2c4-s.0c27b1b4.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/03bda585a99c6450-s.p.ad37b9d9.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/1e219c03c996efbd-s.ba7d7329.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/b35b0dbffda7f2c4-s.0c27b1b4.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/03bda585a99c6450-s.p.ad37b9d9.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/1e219c03c996efbd-s.ba7d7329.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/b35b0dbffda7f2c4-s.0c27b1b4.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/03bda585a99c6450-s.p.ad37b9d9.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Fraunces Fallback;
  src: local(Times New Roman);
  ascent-override: 84.71%;
  descent-override: 22.09%;
  line-gap-override: 0.0%;
  size-adjust: 115.45%;
}

.fraunces_c626f2b0-module__9j3YoG__className {
  font-family: Fraunces, Fraunces Fallback;
  font-style: normal;
}

.fraunces_c626f2b0-module__9j3YoG__variable {
  --font-serif: "Fraunces", "Fraunces Fallback";
}

/* [next]/internal/font/google/jetbrains_mono_b92acd2c.module.css [app-client] (css) */
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/04c5164763c40239-s.690580e8.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/26f284dcc38c84c0-s.303a03d6.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/7e7f32a39836f228-s.0b4edfe7.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/fa39153a3fc630ba-s.bff0868b.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/6a5386fd6038edbe-s.719084df.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/051742360c26797e-s.p.102b7f24.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/04c5164763c40239-s.690580e8.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/26f284dcc38c84c0-s.303a03d6.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/7e7f32a39836f228-s.0b4edfe7.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/fa39153a3fc630ba-s.bff0868b.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/6a5386fd6038edbe-s.719084df.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/051742360c26797e-s.p.102b7f24.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: JetBrains Mono Fallback;
  src: local(Arial);
  ascent-override: 75.79%;
  descent-override: 22.29%;
  line-gap-override: 0.0%;
  size-adjust: 134.59%;
}

.jetbrains_mono_b92acd2c-module__iOpzaW__className {
  font-family: JetBrains Mono, JetBrains Mono Fallback;
  font-style: normal;
}

.jetbrains_mono_b92acd2c-module__iOpzaW__variable {
  --font-mono: "JetBrains Mono", "JetBrains Mono Fallback";
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__5cde8560._.css.map*/