:root {
  color-scheme: light;
  --ink: #121418;
  --muted: #5b6470;
  --soft: #eef2f4;
  --line: #d8dee5;
  --paper: #ffffff;
  --night: #10141b;
  --steel: #243242;
  --red: #a8323e;
  --green: #1b7f6d;
  --gold: #bb8138;
  --shadow: 0 16px 42px rgba(22, 29, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 16px 56px;
  background: rgba(16, 20, 27, 0.96);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  color: var(--night);
  font-size: 0.78rem;
  font-weight: 900;
}

.brand-text {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 88px 56px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 15, 20, 0.92), rgba(12, 15, 20, 0.6) 52%, rgba(12, 15, 20, 0.22)),
    linear-gradient(0deg, rgba(12, 15, 20, 0.72), rgba(12, 15, 20, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 780px;
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  max-width: 760px;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.record-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: 46px;
  align-items: start;
  padding: 56px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.record-grid div {
  min-height: 104px;
  padding: 20px;
  background: #ffffff;
}

dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

dd a {
  color: var(--red);
}

.section {
  padding: 88px 56px;
}

.section-kicker {
  margin-bottom: 36px;
}

.operations {
  background: #f7f8f9;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-list article {
  position: relative;
  min-height: 280px;
  border-left: 4px solid var(--steel);
  border-radius: 0 8px 8px 0;
  padding: 26px 24px 24px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(18, 20, 24, 0.04);
}

.process-list span {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--red);
  font-weight: 900;
}

.process-list p,
.standard-grid p,
.desk-table span,
.contact p {
  color: var(--muted);
}

.release-desk {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(460px, 1.28fr);
  gap: 54px;
  background: #ffffff;
}

.desk-table {
  border-top: 2px solid var(--night);
}

.desk-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.desk-table strong {
  color: var(--night);
}

.standards {
  background: var(--night);
  color: #ffffff;
}

.standards h2 {
  color: #ffffff;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.standard-grid article {
  min-height: 230px;
  padding: 24px;
  background: #171d26;
}

.standard-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.policy-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(420px, 1.25fr);
  gap: 46px;
  padding: 70px 56px;
  background: #f2f0eb;
  border-bottom: 1px solid #ddd6cb;
}

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

.policy-links a {
  display: grid;
  gap: 10px;
  min-height: 132px;
  border: 1px solid #d8cec1;
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
}

.policy-links span {
  color: var(--red);
  font-weight: 900;
}

.policy-links small {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(420px, 1.3fr);
  gap: 54px;
  background: #ffffff;
}

.contact-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-card p {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.contact-card p:last-child {
  border-bottom: 0;
}

.contact-card strong {
  color: var(--ink);
}

.contact-card a {
  color: var(--red);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 56px;
  background: var(--night);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 22px;
}

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

.policy-page {
  background: #ffffff;
}

.policy-header {
  padding: 24px 56px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.policy-header .brand {
  color: var(--ink);
}

.policy-header .brand-mark {
  background: var(--night);
  color: #ffffff;
}

.policy-content {
  max-width: 920px;
  padding: 70px 56px;
}

.policy-content h1 {
  color: var(--ink);
  font-size: 3.4rem;
  line-height: 1;
}

.policy-content h2 {
  margin: 38px 0 14px;
  font-size: 1.35rem;
  line-height: 1.22;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 1rem;
}

.policy-content a {
  color: var(--red);
  font-weight: 800;
}

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

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .section,
  .record-panel,
  .policy-band,
  .contact,
  .policy-content {
    padding-left: 28px;
    padding-right: 28px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .record-panel,
  .release-desk,
  .policy-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .process-list,
  .standard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 82vh;
    padding-top: 64px;
    padding-bottom: 50px;
  }

  h1 {
    font-size: 3rem;
  }

  h2,
  .policy-content h1 {
    font-size: 2.15rem;
  }

  .hero-meta,
  .site-footer,
  .site-footer div {
    align-items: flex-start;
    flex-direction: column;
  }

  .record-grid,
  .process-list,
  .standard-grid,
  .policy-links,
  .desk-table div,
  .contact-card p {
    grid-template-columns: 1fr;
  }

  .process-list article,
  .standard-grid article {
    min-height: auto;
  }

  .process-list span {
    margin-bottom: 28px;
  }
}

.site-footer {
  align-items: flex-start;
}

.site-footer .footer-main {
  display: grid;
  gap: 7px;
}

.site-footer .footer-contact {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 680px) {
  .site-footer .footer-links {
    justify-content: flex-start;
  }
}
