:root {
  color-scheme: light;
  --paper: #fafaf8;
  --ink: #292c33;
  --muted: #6e727d;
  --line: #e5e5e3;
  --blue: #4568c6;
  --blue-pale: #edf1fc;
  --white: #fff;
  --radius: 14px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
::selection {
  background: #dfe6fa;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #9eb4ef;
  outline-offset: 5px;
  border-radius: 4px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #9eb4ef;
  outline-offset: 2px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
.site-wrap {
  max-width: 1280px;
  margin: auto;
  padding: 0 64px;
}
.site-header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  letter-spacing: -1px;
  font-weight: 650;
}
.brand-light {
  font-weight: 400;
}
.brand-dot {
  color: var(--blue);
}
.brand-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: white;
}
.brand-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 2;
}
.header-link {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  color: #626671;
}
.header-link svg {
  width: 16px;
  transition: transform 0.2s;
}
.header-link:hover svg {
  transform: translateX(3px);
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  z-index: 10;
}
.skip-link:focus {
  top: 16px;
}
.hero {
  position: relative;
  text-align: center;
  padding: 92px 0 76px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 -20px 15%;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 42%, #e9eefb80, transparent 62%);
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1.5;
}
.hero .eyebrow {
  color: #686e7c;
}
.hero h1 {
  font-size: clamp(52px, 6.4vw, 80px);
  font-weight: 500;
  letter-spacing: -4.5px;
  line-height: 1.08;
  margin: 25px 0 24px;
}
.hero h1 > span {
  color: #858c9b;
}
.hero-description {
  font-size: 15px;
  line-height: 1.85;
  color: #6e7480;
  letter-spacing: 0.05px;
}
.lookup-form {
  max-width: 600px;
  text-align: left;
  margin: 39px auto 0;
}
.lookup-form > label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.search-control {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  background: white;
  border: 1px solid #dcdfe7;
  border-radius: 12px;
  box-shadow:
    0 5px 10px #292c3303,
    0 12px 32px #2e385808;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.search-control:focus-within {
  border-color: #a0b2e4;
  box-shadow: 0 0 0 3px #e3e9f8;
}
.search-icon {
  display: flex;
  color: #9399a5;
  margin-left: 10px;
}
.search-icon svg {
  width: 19px;
  height: 19px;
}
.search-control input {
  min-width: 0;
  flex: 1;
  width: 100%;
  padding: 11px 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 14px;
  outline: none;
}
.search-control input::placeholder {
  color: #737986;
}
.search-control input:focus-visible {
  outline: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition:
    background 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}
.button-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 2px 3px #00000009;
}
.button-primary:hover {
  background: #424858;
  transform: translateY(-1px);
}
.button svg {
  width: 18px;
  height: 18px;
}
.button-secondary {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}
.button-secondary:hover {
  background: #f3f4f7;
}
.input-hint {
  font-size: 11px;
  color: #717682;
  margin: 12px 0 0;
}
.lookup-message {
  display: none;
}
.lookup-message.is-visible {
  display: grid;
  gap: 6px;
  border: 1px solid #dce3f3;
  border-radius: 9px;
  background: #f1f4fc;
  margin-top: 18px;
  padding: 16px 18px;
  font-size: 12px;
  line-height: 1.6;
  color: #606b82;
  animation: reveal 0.2s ease-out;
}
.lookup-message strong {
  color: #303f60;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.hero-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 37px;
  font-size: 10px;
  color: #717682;
}
.hero-footnote svg {
  width: 14px;
  height: 14px;
}
.noscript-message {
  max-width: 550px;
  margin: 20px auto;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.info-section {
  border-top: 1px solid var(--line);
  padding: 51px 0 47px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.section-intro .eyebrow {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #717682;
}
.section-intro h2 {
  font-size: 32px;
  letter-spacing: -1.3px;
  font-weight: 500;
  line-height: 1.25;
  margin: 17px 0 16px;
}
.section-intro > p {
  max-width: 300px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.steps {
  display: grid;
  gap: 25px;
  padding-top: 4px;
}
.step {
  display: flex;
  gap: 19px;
  align-items: flex-start;
}
.step-number {
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid #dfe4ef;
  border-radius: 9px;
  background: #f2f4fa;
  color: #617198;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.step h3 {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 5px;
}
.step p {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 315px;
}
.help-section {
  border-top: 1px solid var(--line);
  padding: 3px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.help-section details {
  padding: 20px 0 0;
}
.help-section summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 11px;
  color: #666c78;
  cursor: pointer;
}
.help-section summary::-webkit-details-marker {
  display: none;
}
.help-section summary > span {
  font-size: 18px;
  color: #9096a3;
  font-weight: 300;
  transition: transform 0.2s;
}
.help-section details[open] summary > span {
  transform: rotate(45deg);
}
.help-section details p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 16px;
}
.site-footer {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 28px;
  font-size: 10px;
  color: #717682;
}
.footer-dot {
  margin: 0 8px;
  color: #b8bbc1;
}
.detail-main {
  padding: 48px 0 62px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: var(--muted);
}
.back-link svg {
  width: 16px;
}
.detail-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin: 48px 0 32px;
}
.detail-heading .eyebrow {
  color: var(--blue);
  font-size: 9px;
}
.detail-heading h1 {
  font-size: 42px;
  letter-spacing: -1.8px;
  font-weight: 500;
  margin: 12px 0;
  overflow-wrap: anywhere;
}
.batch-subtitle {
  font-size: 13px;
  color: var(--muted);
}
.batch-subtitle span {
  margin-left: 7px;
  font-family: Consolas, monospace;
  font-size: 12px;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  border: 1px solid #dce3f6;
  background: var(--blue-pale);
  color: #5871ad;
  font-size: 10px;
  padding: 8px 12px;
  border-radius: 100px;
}
.status-pill svg {
  width: 14px;
  height: 14px;
}
.report-card {
  border: 1px solid #e0e2e7;
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
}
.report-metadata {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 27px 30px;
}
.report-metadata > div {
  flex: 1;
  min-width: 120px;
}
.metadata-label {
  display: block;
  color: #717682;
  font-size: 9px;
  letter-spacing: 1.1px;
  margin-bottom: 8px;
}
.report-metadata strong {
  font-weight: 500;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.report-notes {
  padding: 0 30px 25px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.pdf-toolbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fcfcfd;
  color: #6e7583;
  font-size: 10px;
}
.pdf-toolbar > span,
.pdf-toolbar > a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pdf-toolbar svg {
  width: 15px;
  height: 15px;
}
.pdf-toolbar > a {
  color: #596fa2;
}
.pdf-viewer {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: #ebeef3;
}
.pdf-fallback {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.pdf-fallback > svg {
  color: var(--blue);
  width: 30px;
  height: 30px;
}
.pdf-fallback h2 {
  font-size: 24px;
  font-weight: 500;
}
.pdf-fallback p {
  font-size: 13px;
  color: var(--muted);
}
.detail-note {
  font-size: 11px;
  color: #717682;
  line-height: 1.8;
  text-align: center;
  margin-top: 24px;
}
.not-found {
  min-height: calc(100vh - 182px);
  padding: 90px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.not-found-icon {
  background: var(--blue-pale);
  border-radius: 18px;
  padding: 20px;
  color: var(--blue);
  margin-bottom: 28px;
}
.not-found .eyebrow {
  color: var(--muted);
}
.not-found h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 500;
  letter-spacing: -2px;
  margin: 15px 0;
}
.not-found p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 14px;
  margin: 0 0 30px;
}
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1500px) {
  .site-wrap {
    max-width: 1360px;
  }
}
@media (min-width: 901px) {
  .home-page .site-wrap {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
  }
  .home-page .site-header {
    height: clamp(60px, 8svh, 88px);
    flex-shrink: 0;
  }
  .home-page main {
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  .hero {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: clamp(16px, 2svh, 32px) 0;
  }
  .hero h1 {
    font-size: clamp(44px, 7.3svh, 76px);
    letter-spacing: -3px;
    margin: clamp(12px, 1.8svh, 20px) 0;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.7;
  }
  .lookup-form {
    width: 100%;
    margin-top: clamp(18px, 2.4svh, 28px);
  }
  .hero-footnote {
    margin-top: clamp(12px, 2svh, 20px);
  }
  .info-section {
    grid-template-columns: 1fr 3fr;
    gap: 36px;
    padding: clamp(16px, 2.4svh, 28px) 0;
  }
  .section-intro .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .section-intro h2 {
    font-size: 22px;
    letter-spacing: -0.7px;
    margin: 9px 0;
  }
  .section-intro > p {
    font-size: 11px;
    line-height: 1.7;
  }
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: center;
    gap: 22px;
    padding-top: 0;
  }
  .step {
    gap: 11px;
  }
  .help-section {
    gap: 36px;
    padding: 0 0 14px;
  }
  .help-section details {
    padding-top: 14px;
  }
  .home-page .site-footer {
    flex-shrink: 0;
    padding: 16px 0;
  }
}
@media (max-width: 900px) {
  .site-wrap {
    padding: 0 36px;
  }
  .hero {
    padding: 76px 0 65px;
  }
  .hero h1 {
    letter-spacing: -3.2px;
  }
  .info-section,
  .help-section {
    gap: 40px;
  }
  .report-metadata {
    gap: 24px;
  }
  .report-metadata > .button {
    width: 100%;
  }
  .detail-heading h1 {
    font-size: 34px;
  }
  .detail-heading {
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .site-wrap {
    padding: 0 24px;
  }
  .site-header {
    height: 85px;
  }
  .brand {
    font-size: 23px;
  }
  .brand-icon {
    width: 27px;
    height: 27px;
  }
  .header-link {
    font-size: 10px;
    gap: 6px;
  }
  .header-link svg {
    width: 14px;
  }
  .hero {
    padding: 64px 0 48px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .hero h1 {
    font-size: clamp(36px, 10.7vw, 49px);
    letter-spacing: -2.8px;
    margin: 23px 0 21px;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.9;
  }
  .lookup-form {
    margin-top: 31px;
  }
  .lookup-form > label {
    font-size: 11px;
  }
  .search-control {
    flex-wrap: wrap;
    gap: 0;
    padding: 7px;
  }
  .search-icon {
    margin-left: 9px;
    margin-right: 11px;
  }
  .search-control input {
    font-size: 16px;
    padding: 13px 0;
  }
  .search-control > .button {
    width: 100%;
    margin-top: 6px;
    min-height: 44px;
  }
  .input-hint {
    font-size: 10px;
    line-height: 1.6;
  }
  .hero-footnote {
    font-size: 9px;
    margin-top: 28px;
    gap: 6px;
  }
  .info-section {
    grid-template-columns: 1fr;
    gap: 31px;
    padding: 35px 0;
  }
  .section-intro h2 {
    font-size: 29px;
    margin-top: 14px;
  }
  .section-intro h2 br {
    display: none;
  }
  .section-intro > p {
    max-width: 100%;
    font-size: 12px;
  }
  .steps {
    gap: 23px;
  }
  .step p {
    font-size: 11px;
    max-width: 100%;
  }
  .help-section {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 24px;
  }
  .help-section details {
    padding-top: 20px;
  }
  .help-section summary {
    font-size: 11px;
  }
  .site-footer {
    flex-direction: column;
    gap: 9px;
    padding: 22px 0;
    font-size: 9px;
  }
  .detail-main {
    padding: 30px 0 40px;
  }
  .detail-heading {
    margin: 30px 0 25px;
    flex-direction: column;
    gap: 18px;
  }
  .detail-heading h1 {
    font-size: 32px;
  }
  .report-metadata {
    padding: 22px;
    gap: 22px;
  }
  .report-metadata > div {
    min-width: 100%;
  }
  .report-notes {
    padding: 0 22px 22px;
  }
  .pdf-toolbar {
    padding: 14px;
    align-items: flex-start;
    font-size: 9px;
  }
  .pdf-toolbar > span {
    max-width: 150px;
  }
  .pdf-toolbar > a {
    white-space: nowrap;
    gap: 4px;
  }
  .pdf-viewer {
    height: 560px;
  }
  .detail-note {
    font-size: 10px;
  }
  .not-found {
    min-height: calc(100vh - 169px);
  }
  .not-found p {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
