/* [project]/apps/web/src/app/auth/_kerno/kerno-auth.css [app-client] (css) */
.kerno-auth {
  --paper: #fff;
  --ink-950: #0b0f18;
  --ink-900: #111827;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #5c687f;
  --ink-400: #7c8aa0;
  --ink-300: #b8c2d1;
  --ink-200: #e4e8ec;
  --ink-100: #f1f5f9;
  --ink-50: #f8fafc;
  --cream: #fcfaf6;
  --yellow: #facc14;
  --yellow-soft: #fef9c3;
  --yellow-deep: #ca8a04;
  --green: #249057;
  --green-deep: #005928;
  --green-bg: #daf7e3;
  --green-soft: #c6f1d3;
  --green-dark-mode: #4ec983;
  --shadow-lg: 0 24px 48px -12px #0f172a1f, 0 8px 16px -8px #0f172a14;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-sans: var(--font-inter), "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: var(--font-onest), var(--font-inter-tight), "Inter", sans-serif;
  --font-brand: var(--font-onest), var(--font-inter-tight), "Inter", sans-serif;
  --font-mono: var(--font-jb-mono), "JetBrains Mono", "SF Mono", Menlo, monospace;
  font-family: var(--font-sans);
  color: var(--ink-900);
  text-rendering: optimizeLegibility;
  background: var(--cream);
  isolation: isolate;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
}

@supports (color: lab(0% 0 0)) {
  .kerno-auth {
    --cream: lab(98.2912% -.012666 2.29008);
    --green: lab(52.9621% -41.6164 21.4815);
    --green-deep: lab(32.3948% -53.6027 28.1436);
    --green-bg: lab(94.7394% -12.4067 6.35767);
    --green-soft: lab(91.5248% -18.6727 9.57469);
    --green-dark-mode: lab(72.9512% -47.7824 24.6311);
  }
}

.kerno-auth *, .kerno-auth :before, .kerno-auth :after {
  box-sizing: border-box;
}

.kerno-auth:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 18% 22%, #facc151a, #0000 50%), radial-gradient(circle at 82% 78%, #0f172a0a, #0000 55%);
  position: absolute;
  inset: 0;
}

.kerno-auth .auth-form-col {
  z-index: 1;
  background: none;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 560px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  position: relative;
}

.kerno-auth .auth-form-head {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  display: flex;
}

.kerno-auth .auth-brand {
  color: var(--ink-950);
  align-items: center;
  gap: 10px;
  text-decoration: none;
  display: inline-flex;
}

.kerno-auth .auth-brand-mark {
  background: var(--yellow);
  width: 32px;
  height: 32px;
  color: var(--ink-950);
  font-family: var(--font-display);
  letter-spacing: -.02em;
  border-radius: 8px;
  place-items: center;
  font-size: 17px;
  font-weight: 800;
  display: grid;
}

.kerno-auth .auth-brand-name {
  font-family: var(--font-brand);
  letter-spacing: -.02em;
  align-items: baseline;
  gap: 5px;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
}

.kerno-auth .auth-brand-name .brand-tag {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: lowercase;
  color: var(--yellow-deep);
  font-size: 10px;
  font-weight: 500;
}

.kerno-auth .auth-form-meta {
  color: var(--ink-600);
  font-size: 13px;
}

.kerno-auth .auth-form-meta a {
  color: var(--ink-950);
  cursor: pointer;
  margin-left: 4px;
  font-weight: 600;
  text-decoration: none;
}

.kerno-auth .auth-form-meta a:hover {
  text-decoration: underline;
}

.kerno-auth .auth-form-body {
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding: 8px 0 24px;
  display: flex;
}

.kerno-auth .auth-card {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  padding: 36px 36px 32px;
}

.kerno-auth .auth-form-foot {
  color: var(--ink-500);
  width: 100%;
  max-width: 500px;
  font-size: 11.5px;
  font-family: var(--font-mono);
  letter-spacing: .04em;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 20px 0 32px;
  display: flex;
}

.kerno-auth .auth-form-foot a {
  color: var(--ink-700);
  margin-left: 14px;
  text-decoration: none;
}

.kerno-auth .auth-form-foot a:hover {
  text-decoration: underline;
}

.kerno-auth .auth-eyebrow {
  font-family: var(--font-mono);
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
}

.kerno-auth .auth-eyebrow .dot {
  background: var(--green);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.kerno-auth .auth-title {
  font-family: var(--font-display);
  letter-spacing: -.025em;
  color: var(--ink-950);
  text-wrap: pretty;
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.kerno-auth .auth-sub {
  color: var(--ink-600);
  text-wrap: pretty;
  margin: 0 0 28px;
  font-size: 14.5px;
  line-height: 1.5;
}

.kerno-auth .auth-closed-copy a {
  color: var(--ink-950);
  text-decoration: underline;
  -webkit-text-decoration-color: var(--ink-300);
  text-decoration-color: var(--ink-300);
  text-underline-offset: 2px;
  font-weight: 600;
}

.kerno-auth .auth-field {
  margin-bottom: 14px;
  display: block;
}

.kerno-auth .auth-field-label {
  color: var(--ink-700);
  font-size: 12.5px;
  font-weight: 500;
  font-family: var(--font-sans);
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
  display: flex;
}

.kerno-auth .auth-field-label a {
  color: var(--ink-700);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.kerno-auth .auth-field-label a:hover {
  color: var(--ink-950);
  text-decoration: underline;
}

.kerno-auth .auth-input {
  border: 1px solid var(--ink-200);
  background: var(--paper);
  width: 100%;
  height: 44px;
  color: var(--ink-950);
  font-family: var(--font-sans);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  transition: border-color .12s, box-shadow .12s;
}

.kerno-auth .auth-input::placeholder {
  color: var(--ink-400);
}

.kerno-auth .auth-input:hover {
  border-color: var(--ink-300);
}

.kerno-auth .auth-input:focus {
  border-color: var(--ink-950);
  outline: none;
  box-shadow: 0 0 0 3px #0f172a14;
}

.kerno-auth .auth-input.has-error {
  background: snow;
  background: lab(98.7483% 3.05599 1.64272);
  border-color: #de3b3d;
  border-color: lab(51.5803% 63.2457 38.9399);
}

.kerno-auth .auth-input-group {
  position: relative;
}

.kerno-auth .auth-input-group .auth-input {
  padding-right: 44px;
}

.kerno-auth .auth-input-affix {
  height: 36px;
  color: var(--ink-500);
  font-size: 12px;
  font-family: var(--font-sans);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 7px;
  align-items: center;
  padding: 0 10px;
  display: inline-flex;
  position: absolute;
  top: 4px;
  right: 4px;
}

.kerno-auth .auth-input-affix:hover {
  color: var(--ink-950);
  background: var(--ink-50);
}

.kerno-auth .auth-help {
  color: var(--ink-500);
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
}

.kerno-auth .auth-help.error {
  color: #a40015;
  color: lab(34.1199% 63.7074 45.541);
  align-items: flex-start;
  gap: 6px;
  display: flex;
}

.kerno-auth .auth-strength {
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  display: flex;
}

.kerno-auth .auth-strength-bar {
  background: var(--ink-100);
  border-radius: 2px;
  flex: 1;
  height: 4px;
  overflow: hidden;
}

.kerno-auth .auth-strength-bar > span {
  border-radius: 2px;
  height: 100%;
  transition: width .2s, background .2s;
  display: block;
}

.kerno-auth .auth-strength-label {
  font-family: var(--font-mono);
  color: var(--ink-500);
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .06em;
  min-width: 60px;
  font-size: 10.5px;
}

.kerno-auth .auth-strength.weak .auth-strength-bar > span {
  background: #de3b3d;
  background: lab(51.5803% 63.2457 38.9399);
  width: 25%;
}

.kerno-auth .auth-strength.fair .auth-strength-bar > span {
  background: var(--yellow-deep);
  width: 50%;
}

.kerno-auth .auth-strength.strong .auth-strength-bar > span {
  background: var(--green);
  width: 80%;
}

.kerno-auth .auth-strength.excellent .auth-strength-bar > span {
  background: var(--green-deep);
  width: 100%;
}

.kerno-auth .auth-strength.weak .auth-strength-label {
  color: #a40015;
  color: lab(34.1199% 63.7074 45.541);
}

.kerno-auth .auth-strength.fair .auth-strength-label {
  color: var(--yellow-deep);
}

.kerno-auth .auth-strength.strong .auth-strength-label, .kerno-auth .auth-strength.excellent .auth-strength-label {
  color: var(--green-deep);
}

.kerno-auth .auth-btn {
  width: 100%;
  height: 46px;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  transition: background .12s, border-color .12s, transform 80ms;
  display: inline-flex;
}

.kerno-auth .auth-btn:active {
  transform: translateY(1px);
}

.kerno-auth .auth-btn.primary {
  background: var(--yellow);
  color: var(--ink-950);
  border-color: color-mix(in oklch, var(--yellow), black 8%);
  box-shadow: inset 0 -2px #0000000f;
}

.kerno-auth .auth-btn.primary:hover {
  background: #fde047;
}

.kerno-auth .auth-btn.ghost {
  background: var(--paper);
  color: var(--ink-900);
  border-color: var(--ink-200);
}

.kerno-auth .auth-btn.ghost:hover {
  background: var(--ink-50);
  border-color: var(--ink-300);
}

.kerno-auth .auth-btn[disabled] {
  opacity: .55;
  cursor: not-allowed;
}

.kerno-auth .auth-btn .spin, .kerno-auth .spin {
  border: 2px solid;
  border-right-color: #0000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: .72s linear infinite kerno-auth-spin;
  display: inline-block;
}

@keyframes kerno-auth-spin {
  to {
    transform: rotate(360deg);
  }
}

.kerno-auth .auth-submit-row {
  margin-top: 18px;
}

.kerno-auth .auth-divider {
  color: var(--ink-500);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  align-items: center;
  gap: 12px;
  margin: 26px 0;
  font-size: 10.5px;
  display: flex;
}

.kerno-auth .auth-divider:before, .kerno-auth .auth-divider:after {
  content: "";
  background: var(--ink-200);
  flex: 1;
  height: 1px;
}

.kerno-auth .auth-oauth {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
  display: grid;
}

.kerno-auth .auth-oauth.full {
  grid-template-columns: minmax(0, 1fr);
}

.kerno-auth .oauth-btn {
  border: 1px solid var(--ink-200);
  background: var(--paper);
  height: 46px;
  font-family: var(--font-sans);
  white-space: nowrap;
  color: var(--ink-900);
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 500;
  transition: background .12s, border-color .12s;
  display: inline-flex;
  position: relative;
}

.kerno-auth .oauth-btn:hover {
  background: var(--ink-50);
  border-color: var(--ink-300);
}

.kerno-auth .oauth-btn[disabled] {
  opacity: .6;
  cursor: not-allowed;
}

.kerno-auth .oauth-btn .oauth-glyph {
  place-items: center;
  width: 18px;
  height: 18px;
  display: grid;
}

.kerno-auth .oauth-btn .oauth-glyph svg {
  width: 18px;
  height: 18px;
}

.kerno-auth .oauth-btn.is-last-used {
  border-color: var(--ink-950);
  box-shadow: 0 0 0 1px var(--ink-950);
}

.kerno-auth .auth-consent {
  color: var(--ink-500);
  text-wrap: pretty;
  margin-top: 24px;
  font-size: 11.5px;
  line-height: 1.5;
}

.kerno-auth .auth-consent--oauth {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 4px;
}

.kerno-auth .auth-consent a {
  color: var(--ink-700);
  text-decoration: underline;
  -webkit-text-decoration-color: var(--ink-300);
  text-decoration-color: var(--ink-300);
  text-underline-offset: 2px;
}

.kerno-auth .auth-consent a:hover {
  color: var(--ink-950);
}

.kerno-auth .auth-checkbox-row {
  color: var(--ink-700);
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  font-size: 13px;
  display: flex;
}

.kerno-auth .auth-checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--ink-950);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.kerno-auth .auth-checkbox-row label[for] {
  cursor: pointer;
}

.kerno-auth .auth-checkbox-row a {
  color: var(--ink-950);
  text-decoration: underline;
}

.kerno-auth .auth-banner {
  border-radius: 10px;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  display: flex;
}

.kerno-auth .auth-banner.error {
  color: #8f000a;
  color: lab(28.2903% 63.9034 47.1652);
  background: #fff1f0;
  background: lab(96.3359% 6.12152 3.29586);
  border: 1px solid #ffb8b1;
  border: 1px solid lab(81.6511% 30.9962 17.0515);
}

.kerno-auth .auth-banner.warn {
  background: var(--yellow-soft);
  border: 1px solid color-mix(in oklch, var(--yellow), black 12%);
  color: #473900;
  color: lab(24.8189% 3.50672 47.492);
}

.kerno-auth .auth-alt-row {
  border-top: 1px dashed var(--ink-200);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  display: flex;
}

.kerno-auth .auth-alt-link {
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  color: var(--ink-800);
  cursor: pointer;
  background: none;
  border: 0;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  font-size: 12.5px;
  font-weight: 500;
  transition: background .12s, color .12s;
  display: inline-flex;
}

.kerno-auth .auth-alt-link:hover {
  background: var(--ink-100);
  color: var(--ink-950);
}

.kerno-auth .auth-alt-link:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.kerno-auth .auth-alt-link svg {
  color: var(--ink-600);
}

.kerno-auth .auth-alt-link:hover svg {
  color: var(--ink-950);
}

.kerno-auth .auth-alt-link.auth-alt-link-muted {
  color: var(--ink-600);
  font-weight: 500;
}

.kerno-auth .last-used-pill {
  background: var(--yellow);
  color: var(--ink-950);
  font-family: var(--font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.2;
  display: inline-flex;
}

.kerno-auth .oauth-btn .last-used-pill {
  margin-left: 0;
  position: absolute;
  top: -7px;
  right: 8px;
  box-shadow: 0 1px #0000000a;
}

@media (max-width: 560px) {
  .kerno-auth .auth-form-col {
    padding: 0 16px;
  }

  .kerno-auth .auth-card {
    border-radius: var(--radius-lg);
    padding: 28px 22px 24px;
  }

  .kerno-auth .auth-oauth {
    grid-template-columns: 1fr;
  }
}

/* [next]/internal/font/google/inter_fd9a5980.module.css [app-client] (css) */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/2c55a0e60120577a-s.2a48534a.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: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/9c72aa0f40e4eef8-s.18a48cbc.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/ad66f9afd8947f86-s.7a40eb73.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/5476f68d60460930-s.c995e352.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: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/2bbe8d2671613f1f-s.76dcb0b2.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: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/1bffadaabf893a1e-s.7cd81963.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: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/83afe278b6a6bb3c-s.p.3a6ba036.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: Inter Fallback;
  src: local(Arial);
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0.0%;
  size-adjust: 107.12%;
}

.inter_fd9a5980-module___WqgWG__className {
  font-family: Inter, Inter Fallback;
  font-style: normal;
}

.inter_fd9a5980-module___WqgWG__variable {
  --font-inter: "Inter", "Inter Fallback";
}

/* [next]/internal/font/google/onest_2121997c.module.css [app-client] (css) */
@font-face {
  font-family: Onest;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/4084ce120da2621a-s.a1b3e919.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: Onest;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/16d91c780434f2ce-s.f22a44f6.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Onest;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/ef79401ea952b7f0-s.7264fe40.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: Onest;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/8800dfc60902df36-s.p.e22d03ab.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: Onest Fallback;
  src: local(Arial);
  ascent-override: 92.2%;
  descent-override: 28.99%;
  line-gap-override: 0.0%;
  size-adjust: 105.2%;
}

.onest_2121997c-module__4H-NuW__className {
  font-family: Onest, Onest Fallback;
  font-style: normal;
}

.onest_2121997c-module__4H-NuW__variable {
  --font-onest: "Onest", "Onest Fallback";
}

/* [next]/internal/font/google/inter_tight_b4d698f2.module.css [app-client] (css) */
@font-face {
  font-family: Inter Tight;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/13ae3e01af63c0ce-s.3ec27879.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: Inter Tight;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/0ee4b8f05dcd9fee-s.45e2741a.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter Tight;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/9eba4caf7edd2921-s.57f6a4a3.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter Tight;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/f6752bd2263820da-s.95b8f539.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: Inter Tight;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/f285987c35230861-s.b3721d2b.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: Inter Tight;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/b8d1f0a88dfecec3-s.cf53ec14.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: Inter Tight;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/ab57efd000576a30-s.p.37015d44.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: Inter Tight Fallback;
  src: local(Arial);
  ascent-override: 100.51%;
  descent-override: 25.03%;
  line-gap-override: 0.0%;
  size-adjust: 96.39%;
}

.inter_tight_b4d698f2-module__cS2OdW__className {
  font-family: Inter Tight, Inter Tight Fallback;
  font-style: normal;
}

.inter_tight_b4d698f2-module__cS2OdW__variable {
  --font-inter-tight: "Inter Tight", "Inter Tight Fallback";
}

/* [next]/internal/font/google/jetbrains_mono_84713e71.module.css [app-client] (css) */
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("../media/13bf9871fe164e7f-s.f2220059.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: 100 800;
  font-display: swap;
  src: url("../media/cc545e633e20c56d-s.f6f1950f.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: 100 800;
  font-display: swap;
  src: url("../media/71b036adf157cdcf-s.bd5f4d11.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: 100 800;
  font-display: swap;
  src: url("../media/89b21bb081cb7469-s.51c18f09.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: 100 800;
  font-display: swap;
  src: url("../media/3fe682a82f50d426-s.23358719.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: 100 800;
  font-display: swap;
  src: url("../media/70bc3e132a0a741e-s.p.15008bfb.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_84713e71-module__wOQt5a__className {
  font-family: JetBrains Mono, JetBrains Mono Fallback;
  font-style: normal;
}

.jetbrains_mono_84713e71-module__wOQt5a__variable {
  --font-jb-mono: "JetBrains Mono", "JetBrains Mono Fallback";
}

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