:root {
  color-scheme: light;
  --ink: #142033;
  --muted: #5d6878;
  --line: #d7dde6;
  --soft: #eef3f7;
  --panel: #ffffff;
  --blue: #1763a6;
  --green: #32786a;
  --gold: #b7852c;
  --shadow: 0 18px 45px rgba(20, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #f8fafc;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(215, 221, 230, 0.8);
  background: rgba(248, 250, 252, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #9fb3c9;
  background: #ffffff;
  color: var(--blue);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: #344255;
  font-size: 14px;
}

nav a {
  padding: 8px 0;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  min-height: calc(78vh - 72px);
  padding: 40px clamp(20px, 5vw, 72px) 44px;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0.82)),
    repeating-linear-gradient(0deg, rgba(20, 32, 51, 0.06), rgba(20, 32, 51, 0.06) 1px, transparent 1px, transparent 42px),
    repeating-linear-gradient(90deg, rgba(20, 32, 51, 0.04), rgba(20, 32, 51, 0.04) 1px, transparent 1px, transparent 42px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 19px;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  color: #3f4b5d;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  font-weight: 750;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: var(--ink);
}

.hero-visual {
  overflow: hidden;
  border: 1px solid #c9d3df;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.notice {
  margin: 0 clamp(20px, 5vw, 72px);
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(20, 32, 51, 0.08);
  color: #344255;
  line-height: 1.65;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 88px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.compact-heading {
  margin-bottom: 20px;
}

.compact-heading h3 {
  margin-bottom: 0;
  font-size: 26px;
}

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

.material-grid article,
.document-grid a,
.document-grid div,
.regulatory-grid div,
.contact-card {
  border: 1px solid var(--line);
  background: var(--panel);
}

.material-grid article {
  min-height: 300px;
  padding: 24px;
}

.material-grid ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.material-grid li + li {
  margin-top: 8px;
}

.research-note {
  max-width: 980px;
  margin: 24px 0 0;
  padding: 16px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  line-height: 1.65;
}

.research-note strong {
  color: var(--ink);
}

.status-block {
  margin-top: 54px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: #ffffff;
}

table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

th {
  background: #eef3f7;
  color: #344255;
  font-size: 12px;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td:first-child {
  color: var(--ink);
  font-weight: 750;
}

.status {
  display: inline-block;
  padding: 4px 8px;
  border-left: 3px solid var(--blue);
  background: #eef5fb;
  color: #215887;
  font-weight: 750;
}

.status.under-review {
  border-left-color: var(--gold);
  background: #fbf6e9;
  color: #765716;
}

.status-footnote {
  max-width: 930px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.material-grid p,
.support-list p,
.document-grid span,
.regulatory-grid span,
.contact p,
.contact-card span {
  color: var(--muted);
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--soft);
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-list div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid #cbd5df;
}

.support-list span {
  color: var(--blue);
  font-weight: 850;
}

.document-section {
  background: #ffffff;
}

.quality {
  background: #ffffff;
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.certificate-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.certificate-summary div {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.certificate-summary div:nth-child(even) {
  border-right: 0;
}

.certificate-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.certificate-summary strong {
  line-height: 1.45;
}

.certificate-scope {
  padding: 4px 0 4px 28px;
  border-left: 4px solid var(--green);
}

.certificate-scope p {
  color: #344255;
  line-height: 1.7;
}

.certificate-scope .scope-note {
  color: var(--muted);
  font-size: 14px;
}

.certificate-scope .button {
  margin-top: 8px;
}

.regulatory {
  background: #f8fafc;
  border-top: 1px solid rgba(215, 221, 230, 0.85);
  border-bottom: 1px solid rgba(215, 221, 230, 0.85);
}

.regulatory-grid div {
  display: grid;
  gap: 10px;
  padding: 24px;
  min-height: 170px;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.document-grid a,
.document-grid div {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 24px;
}

.document-grid a {
  transition: border-color 160ms ease, transform 160ms ease;
}

.document-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #ffffff;
  scroll-margin-top: 88px;
}

.contact p {
  color: #d5dce6;
}

.contact-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 28px;
  color: var(--ink);
}

.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-card a {
  color: var(--blue);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-primary {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
}

.contact-secondary {
  border-color: #718096;
  color: #ffffff;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  background: #0f1928;
  color: #d5dce6;
  font-size: 14px;
}

.site-footer span:first-child {
  color: #ffffff;
  font-weight: 800;
}

.site-footer a {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .quality-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .material-grid,
  .regulatory-grid,
  .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 981px) {
  .hero-visual {
    height: min(560px, calc(100vh - 150px));
  }

  .hero-visual img {
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
}

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

  nav {
    justify-content: flex-start;
  }

  .hero {
    gap: 22px;
    padding: 28px 20px 20px;
  }

  .section,
  .contact {
    scroll-margin-top: 188px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-visual {
    height: 120px;
  }

  .hero-visual img {
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  .material-grid,
  .regulatory-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  table,
  tbody,
  tr,
  td {
    display: block;
    width: 100%;
  }

  table {
    min-width: 0;
  }

  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  tbody tr {
    margin-bottom: 16px;
    border: 1px solid var(--line);
    background: #ffffff;
  }

  tbody tr:last-child {
    margin-bottom: 0;
  }

  td {
    display: grid;
    grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
    gap: 14px;
    padding: 14px 16px;
  }

  td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  td:first-child {
    background: #eef3f7;
  }

  td:last-child {
    border-bottom: 0;
  }

  .certificate-summary {
    grid-template-columns: 1fr;
  }

  .certificate-summary div {
    min-height: auto;
    border-right: 0;
  }

  .certificate-scope {
    padding-left: 20px;
  }

  .notice {
    margin-top: 0;
  }
}
