/* [project]/src/app/globals.css [app-client] (css) */
@layer theme {
  :root, :host {
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
      "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
      "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

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

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring:where(:not(iframe)) {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .visible {
    visibility: visible;
  }

  .sr-only {
    clip-path: inset(50%);
    white-space: nowrap;
    border-width: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
  }

  .block {
    display: block;
  }

  .hidden {
    display: none;
  }

  .table {
    display: table;
  }
}

:root {
  --navy: #063b78;
  --navy2: #0756a0;
  --orange: #f7c600;
  --ink: #102a43;
  --muted: #60758a;
  --line: #d6e1ec;
  --paper: #f2f7fb;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
}

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

button, input, select {
  font: inherit;
}

button, select {
  cursor: pointer;
}

.sr-only {
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.site-header {
  background: var(--navy);
  color: #fff;
  z-index: 20;
  border-bottom: 1px solid #ffffff14;
  height: 76px;
  position: relative;
}

.header-inner {
  align-items: center;
  gap: 34px;
  width: min(1240px, 100% - 48px);
  height: 100%;
  margin: auto;
  display: flex;
}

.brand {
  flex: none;
  align-items: center;
  display: inline-flex;
}

.brand-logo {
  object-fit: contain;
  border-radius: 6px;
  width: 78px;
  height: 52px;
  display: block;
}

.brand-mark {
  background: var(--orange);
  clip-path: polygon(0 0, 82% 0, 100% 18%, 100% 100%, 18% 100%, 0 82%);
  place-items: center;
  width: 38px;
  height: 38px;
  display: grid;
  transform: rotate(45deg);
  box-shadow: 0 6px 18px #f7c60040;
}

.brand-mark span {
  color: #063b78;
  font-size: 20px;
  font-style: italic;
  font-weight: 900;
  transform: rotate(-45deg);
}

.brand-name {
  letter-spacing: .08em;
  font-size: 17px;
  font-weight: 850;
}

.brand-name span {
  color: #b9c5d7;
  font-weight: 550;
}

.header-nav {
  margin-right: auto;
  padding-left: 18px;
}

.nav-link {
  color: #c6d0df;
  font-size: 14px;
  font-weight: 650;
}

.nav-link:hover {
  color: #fff;
}

.header-actions {
  align-items: center;
  gap: 8px;
  min-height: 40px;
  display: flex;
}

.language-select {
  color: #d5deeb;
  border-right: 1px solid #ffffff24;
  align-items: center;
  gap: 5px;
  height: 40px;
  margin-right: 6px;
  padding: 0 9px;
  display: flex;
}

.language-select svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6px;
  width: 17px;
}

.language-select select {
  color: inherit;
  background: none;
  border: 0;
  outline: 0;
  font-size: 12px;
  font-weight: 800;
}

.language-select option {
  color: var(--ink);
}

.button {
  border: 1px solid #0000;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 750;
  transition: all .2s;
  display: inline-flex;
}

.button-ghost {
  color: #e6ebf3;
  background: none;
}

.button-ghost:hover {
  background: #ffffff14;
}

.button-light {
  color: var(--navy);
  background: #fff;
}

.button-light:hover {
  background: #eef2f7;
  transform: translateY(-1px);
}

.profile-link {
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.avatar {
  background: var(--orange);
  color: #063b78;
  border-radius: 50%;
  place-items: center;
  width: 28px;
  height: 28px;
  display: grid;
}

.auth-page {
  background: #fff;
  grid-template-columns: minmax(420px, .96fr) minmax(500px, 1.04fr);
  min-height: calc(100vh - 76px);
  display: grid;
}

.auth-visual {
  color: #fff;
  isolation: isolate;
  background: linear-gradient(145deg, #0d1a2e, #182e4e 65%, #11233d);
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.visual-grid {
  opacity: .18;
  background-image: linear-gradient(#ffffff17 1px, #0000 1px), linear-gradient(90deg, #ffffff17 1px, #0000 1px);
  background-size: 48px 48px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(to bottom right, #000, #0000 75%);
  mask-image: linear-gradient(to bottom right, #000, #0000 75%);
}

.visual-orbit {
  border: 1px solid #ffffff1f;
  border-radius: 50%;
  position: absolute;
}

.orbit-one {
  width: 480px;
  height: 480px;
  bottom: -120px;
  right: -210px;
}

.orbit-two {
  border-color: #f7c60059;
  width: 300px;
  height: 300px;
  bottom: -10px;
  right: -70px;
}

.visual-content {
  z-index: 2;
  position: absolute;
  bottom: 96px;
  left: clamp(42px, 7vw, 100px);
  right: clamp(42px, 7vw, 95px);
}

.visual-kicker {
  color: #f7c600;
  text-transform: uppercase;
  letter-spacing: .16em;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
}

.visual-kicker:before {
  content: "";
  background: var(--orange);
  width: 26px;
  height: 2px;
}

.visual-content h2 {
  letter-spacing: -.05em;
  max-width: 590px;
  margin: 24px 0 20px;
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 820;
  line-height: 1.04;
}

.visual-content p {
  color: #b8c5d8;
  max-width: 510px;
  font-size: 16px;
  line-height: 1.7;
}

.visual-points {
  color: #e5ebf3;
  gap: 26px;
  margin-top: 30px;
  font-size: 13px;
  font-weight: 650;
  display: flex;
}

.visual-points span {
  align-items: center;
  gap: 8px;
  display: flex;
}

.visual-points i {
  color: #f7c600;
  background: #f7c60029;
  border-radius: 50%;
  place-items: center;
  width: 23px;
  height: 23px;
  font-style: normal;
  display: grid;
}

.score-card {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 2;
  background: #ffffff13;
  border: 1px solid #ffffff24;
  border-radius: 12px;
  width: 176px;
  padding: 18px 20px;
  position: absolute;
  top: 58px;
  right: 52px;
  transform: rotate(2deg);
  box-shadow: 0 22px 55px #0003;
}

.score-card span {
  color: #f7c600;
  letter-spacing: .18em;
  font-size: 9px;
  font-weight: 900;
}

.score-card strong {
  margin: 8px 0 2px;
  font-size: 32px;
  display: block;
}

.score-card em {
  color: #6f819b;
  padding: 0 4px;
  font-style: normal;
}

.score-card small {
  color: #aab8cc;
  font-size: 10px;
}

.auth-form-side {
  background: #fff;
  justify-content: center;
  align-items: center;
  padding: 64px 56px;
  display: flex;
}

.auth-form-wrap {
  width: min(440px, 100%);
}

.eyebrow {
  color: #9a7400;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 11px;
  font-weight: 850;
  display: block;
}

.auth-form-wrap h1 {
  letter-spacing: -.045em;
  color: #142037;
  margin: 14px 0 10px;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.12;
}

.form-subtitle {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.login-form {
  gap: 21px;
  margin-top: 34px;
  display: grid;
}

.login-form label > span:not(.label-row) {
  color: #2b3547;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 750;
  display: block;
}

.label-row {
  color: #2b3547;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 750;
  display: flex;
}

.text-button {
  color: #9a7400;
  background: none;
  border: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
}

.input-wrap {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 7px;
  align-items: center;
  height: 52px;
  padding: 0 14px;
  transition: all .2s;
  display: flex;
}

.input-wrap:focus-within {
  border-color: #8795a9;
  box-shadow: 0 0 0 3px #1420370f;
}

.input-wrap > svg {
  fill: none;
  stroke: #8994a5;
  stroke-width: 1.7px;
  flex: none;
  width: 20px;
}

.input-wrap input {
  min-width: 0;
  height: 100%;
  color: var(--ink);
  background: none;
  border: 0;
  outline: 0;
  flex: 1;
  padding: 0 12px;
  font-size: 14px;
}

.input-wrap input::placeholder {
  color: #a4acb8;
}

.eye-button {
  color: #8994a5;
  background: none;
  border: 0;
  width: 32px;
  height: 32px;
  padding: 6px;
}

.eye-button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6px;
  width: 100%;
}

.form-error {
  color: #a52f2f;
  background: #fff3f3;
  border-left: 3px solid #d74848;
  padding: 11px 13px;
  font-size: 13px;
}

.submit-button {
  background: var(--orange);
  color: #063b78;
  border: 0;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  gap: 13px;
  height: 52px;
  font-size: 14px;
  font-weight: 800;
  transition: all .2s;
  display: flex;
  box-shadow: 0 10px 24px #f7c60033;
}

.submit-button:hover:not(:disabled) {
  background: #e5b600;
  transform: translateY(-1px);
}

.submit-button:disabled {
  opacity: .65;
}

.submit-button span {
  font-size: 20px;
}

.register-prompt {
  text-align: center;
  color: #7a8494;
  margin: 25px 0 0;
  font-size: 13px;
}

.register-prompt a {
  color: var(--navy);
  font-weight: 800;
}

.home-shell, .simple-page {
  background: radial-gradient(circle at 80% 20%,#f7c60017,transparent 32%),var(--paper);
  place-items: center;
  min-height: calc(100vh - 76px);
  padding: 48px 24px;
  display: grid;
}

.home-card, .notice-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  width: min(760px, 100%);
  padding: clamp(36px, 6vw, 72px);
  box-shadow: 0 18px 55px #131f3314;
}

.home-card h1, .notice-card h1 {
  letter-spacing: -.05em;
  margin: 16px 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.home-card p, .notice-card p {
  color: var(--muted);
  line-height: 1.7;
}

.primary-action {
  background: var(--navy);
  color: #fff;
  border-radius: 7px;
  align-items: center;
  gap: 15px;
  width: fit-content;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
}

.profile-card {
  text-align: center;
}

.large-avatar {
  background: var(--orange);
  color: #063b78;
  border-radius: 50%;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  font-size: 30px;
  font-weight: 850;
  display: grid;
}

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

  .auth-visual {
    min-height: 410px;
  }

  .visual-content {
    bottom: 48px;
  }

  .visual-content h2 {
    font-size: 40px;
  }

  .visual-content p, .visual-points {
    display: none;
  }

  .score-card {
    top: 38px;
    right: 34px;
  }

  .header-nav {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 68px;
  }

  .header-inner {
    gap: 12px;
    width: calc(100% - 28px);
  }

  .brand-logo {
    width: 58px;
    height: 42px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .button {
    padding: 0 10px;
    font-size: 12px;
  }

  .language-select {
    margin-right: 0;
    padding: 0 5px;
  }

  .profile-link {
    font-size: 0;
  }

  .auth-page {
    min-height: calc(100vh - 68px);
  }

  .auth-visual {
    display: none;
  }

  .auth-form-side {
    align-items: start;
    padding: 54px 24px;
  }

  .auth-form-wrap h1 {
    font-size: 34px;
  }
}

body.print-view {
  background: #fff;
}

.print-view .site-header, .print-view nav, .print-view a, .print-view button {
  display: none !important;
}

.print-view main {
  background: #fff !important;
  min-height: auto !important;
  padding: 8px !important;
}

.print-view main > div {
  width: 100% !important;
  max-width: none !important;
}

.print-view h1 {
  display: none !important;
}

.print-view .eyebrow {
  color: #000 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  margin: 0 0 10px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  display: block !important;
}

.print-view input {
  box-shadow: none !important;
  color: #000 !important;
  background: none !important;
  border: 0 !important;
}

.print-view section {
  box-shadow: none !important;
}

.print-view * {
  max-width: none;
}

.print-view table {
  page-break-inside: auto;
}

.print-view thead {
  display: table-header-group;
}

.print-view tr {
  page-break-inside: avoid;
}

@media print {
  body {
    background: #fff !important;
  }

  .site-header, nav, a, button {
    display: none !important;
  }

  main {
    background: #fff !important;
    min-height: auto !important;
    padding: 0 !important;
  }

  section {
    box-shadow: none !important;
  }

  html, body {
    overflow: visible !important;
  }

  table {
    page-break-inside: auto;
  }

  thead {
    display: table-header-group;
  }

  tr {
    page-break-inside: avoid;
  }

  input {
    box-shadow: none !important;
    border: 0 !important;
  }
}

.header-nav {
  align-items: center;
  gap: 22px;
  display: flex;
}

/* [project]/src/components/login-modal.module.css [app-client] (css) */
.login-modal-module__8UFIaa__backdrop {
  z-index: 1000;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #071222b8;
  place-items: center;
  padding: 24px;
  animation: .16s ease-out login-modal-module__8UFIaa__fadeIn;
  display: grid;
  position: fixed;
  inset: 0;
}

.login-modal-module__8UFIaa__modal {
  background: #fff;
  border: 1px solid #ffffff8c;
  border-radius: 14px;
  width: min(460px, 100%);
  max-height: calc(100vh - 48px);
  padding: 38px 40px 34px;
  animation: .2s ease-out login-modal-module__8UFIaa__riseIn;
  position: relative;
  overflow: auto;
  box-shadow: 0 28px 90px #00000059;
}

.login-modal-module__8UFIaa__modal h1 {
  color: #142037;
  letter-spacing: -.04em;
  margin: 12px 38px 9px 0;
  font-size: 36px;
  line-height: 1.12;
}

.login-modal-module__8UFIaa__close {
  color: #526074;
  background: #f1f3f6;
  border: 0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 26px;
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 18px;
}

.login-modal-module__8UFIaa__close:hover:not(:disabled) {
  color: #172033;
  background: #e5e9ef;
}

.login-modal-module__8UFIaa__close:disabled {
  opacity: .5;
}

@keyframes login-modal-module__8UFIaa__fadeIn {
  from {
    opacity: 0;
  }
}

@keyframes login-modal-module__8UFIaa__riseIn {
  from {
    opacity: 0;
    transform: translateY(12px)scale(.985);
  }
}

@media (max-width: 560px) {
  .login-modal-module__8UFIaa__backdrop {
    padding: 12px;
  }

  .login-modal-module__8UFIaa__modal {
    max-height: calc(100vh - 24px);
    padding: 32px 22px 26px;
  }

  .login-modal-module__8UFIaa__modal h1 {
    font-size: 31px;
  }
}

/* [project]/src/components/header.module.css [app-client] (css) */
.header-module__3iWRfG__menu {
  position: relative;
}

.header-module__3iWRfG__trigger {
  color: #c6d0df;
  background: none;
  border: 0;
  align-items: center;
  gap: 7px;
  padding: 12px 4px;
  font-size: 14px;
  font-weight: 650;
  display: flex;
}

.header-module__3iWRfG__trigger:hover, .header-module__3iWRfG__trigger:focus-visible {
  color: #fff;
}

.header-module__3iWRfG__chevron {
  border-bottom: 1.5px solid;
  border-right: 1.5px solid;
  width: 8px;
  height: 8px;
  transform: rotate(45deg)translateY(-2px);
}

.header-module__3iWRfG__dropdown {
  color: #172033;
  background: #fff;
  border: 1px solid #dfe4eb;
  border-radius: 9px;
  min-width: 210px;
  padding: 7px;
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -14px;
  box-shadow: 0 18px 42px #050f1e33;
}

.header-module__3iWRfG__menu:hover .header-module__3iWRfG__dropdown, .header-module__3iWRfG__menu:focus-within .header-module__3iWRfG__dropdown {
  display: block;
}

.header-module__3iWRfG__item {
  border-radius: 6px;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 700;
  display: block;
}

.header-module__3iWRfG__item:hover, .header-module__3iWRfG__item:focus-visible {
  color: #9a7400;
  background: #f2f4f7;
}

@media (max-width: 900px) {
  .header-module__3iWRfG__menu {
    display: none;
  }
}

/*# sourceMappingURL=src_1uxm-z0._.css.map*/