@font-face {
  font-family: "Instrument Sans";
  src: url("./assets/fonts/InstrumentSans.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: dark;
  --surface-radius: 0px;
  font-family: "Instrument Sans", system-ui, sans-serif;
  background: #080b0a;
  color: #eef5f1;
}

/* Shared sharp-corner contract for the standalone privacy surface. */
:where(*, *::before, *::after) {
  border-radius: var(--surface-radius) !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgb(34 92 70 / 25%), transparent 38rem),
    #080b0a;
  color: #eef5f1;
  line-height: 1.65;
}

/* Typography is deliberately weight-neutral; hierarchy comes from other cues. */
h1,
h2,
h3,
h4,
h5,
h6,
th,
strong,
b {
  font-weight: 400;
}

a {
  color: #9fe4c6;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #d5f8e9;
}

a:focus-visible {
  outline: 3px solid #d5f8e9;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #eef5f1;
  color: #080b0a;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
main,
footer {
  width: min(100% - 32px, 920px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-bottom: 1px solid #26332e;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: #eef5f1;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.brand img {
  width: 26px;
  height: 32px;
  object-fit: contain;
}

.site-header nav,
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-header nav a,
footer nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: #bed0c8;
  text-decoration: none;
}

main {
  padding-block: 72px;
}

.page-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

.notice-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.notice-jumps a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid #2a3b34;
  border-radius: 999px;
  background: rgb(18 26 22 / 72%);
  color: #bed0c8;
  font-size: 0.86rem;
  font-weight: 400;
  text-decoration: none;
}

.notice-jumps a:hover {
  border-color: #527161;
  background: #15231d;
}

.eyebrow,
.updated {
  color: #93a89f;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 8px 0 18px;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h3 {
  margin: 0 0 8px;
  color: #d5f8e9;
  font-size: 1rem;
}

p,
li,
address {
  color: #c6d2cd;
}

address {
  padding: 18px 20px;
  border: 1px solid #2a3b34;
  border-radius: 14px;
  background: rgb(18 26 22 / 72%);
  font-style: normal;
}

section {
  padding-block: 34px;
  border-top: 1px solid #26332e;
  scroll-margin-top: 24px;
}

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

.notice-grid article {
  padding: 20px;
  border: 1px solid #26332e;
  border-radius: 14px;
  background: rgb(14 21 18 / 72%);
}

.notice-grid p {
  margin: 0;
}

li + li {
  margin-top: 8px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 28px 44px;
  border-top: 1px solid #26332e;
  font-size: 0.86rem;
}

footer p {
  margin: 0;
}

.legal-operator {
  max-width: 590px;
  color: #93a89f;
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 680px) {
  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 16px;
  }

  .site-header {
    flex-wrap: wrap;
    min-height: 72px;
    padding-block: 8px;
  }

  .site-header nav {
    justify-content: space-between;
    width: 100%;
    gap: 4px;
  }

  main {
    padding-block: 44px;
  }

  .notice-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (forced-colors: active) {
  a:focus-visible {
    outline: 3px solid Highlight;
  }

  .notice-jumps a,
  .notice-grid article,
  address {
    border: 1px solid CanvasText;
  }

  .notice-jumps a:hover {
    background: Highlight;
    color: HighlightText;
  }
}

@media print {
  :root {
    color-scheme: light;
    background: #fff;
    color: #000;
  }

  body {
    background: #fff;
    color: #000;
    font: 11pt/1.5 sans-serif;
  }

  .site-header,
  main,
  footer {
    width: 100%;
    max-width: none;
  }

  .site-header {
    min-height: auto;
  }

  .site-header nav,
  .skip-link,
  .notice-jumps,
  footer nav {
    display: none;
  }

  main {
    padding-block: 24pt;
  }

  .page-heading {
    max-width: none;
    margin-bottom: 32pt;
  }

  h1 {
    font-size: 36pt;
  }

  h2,
  h3 {
    break-after: avoid;
  }

  p,
  li,
  address,
  .legal-operator {
    color: #000;
  }

  .notice-grid {
    display: block;
  }

  .notice-grid article {
    break-inside: avoid;
    margin-bottom: 10pt;
    border-color: #777;
    background: none;
  }

  a {
    color: #000;
  }

  footer {
    display: block;
  }

  .legal-operator {
    max-width: none;
  }
}
