:root {
  --ink: #121722;
  --muted: #626a78;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --line: #ded8ca;
  --navy: #172235;
  --rust: #b6402d;
  --rust-dark: #7e2b1d;
  --gold: #d7a53b;
  --white: #ffffff;
  --shadow: 0 24px 58px rgba(18, 23, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(18, 23, 34, 0.16);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: var(--navy);
  background: var(--gold);
  font-size: 12px;
  letter-spacing: 0;
}

.main-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.main-nav {
  color: rgba(255, 255, 255, 0.78);
}

.main-nav a,
.site-footer nav a {
  text-decoration: none;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 82px max(24px, calc((100vw - 1180px) / 2)) 110px;
  color: var(--white);
  isolation: isolate;
}

.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 23, 34, 0.88) 0%, rgba(18, 23, 34, 0.68) 34%, rgba(18, 23, 34, 0.18) 70%),
    linear-gradient(0deg, rgba(18, 23, 34, 0.35), rgba(18, 23, 34, 0.08));
}

.hero-content {
  max-width: 660px;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--rust);
  box-shadow: 0 14px 32px rgba(126, 43, 29, 0.28);
}

.button.primary:hover {
  background: var(--rust-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.summary-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: -54px auto 0;
  position: relative;
  z-index: 4;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.summary-rail div {
  min-height: 148px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.summary-rail div:last-child {
  border-right: 0;
}

.summary-rail span {
  display: block;
  margin-bottom: 18px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 800;
}

.summary-rail strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.summary-rail p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 104px 24px;
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: end;
}

.editorial-copy p,
.checklist > div:first-child p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 17px;
}

.editorial-note {
  padding: 30px;
  border-left: 6px solid var(--gold);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.editorial-note strong {
  display: block;
  margin-bottom: 14px;
}

.editorial-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.process-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 48px;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--rust-dark);
}

.process-intro p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.process-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.process-list article {
  display: grid;
  grid-template-columns: 96px minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  background: var(--rust-dark);
}

.process-list span {
  color: #f2cf84;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-list h3 {
  color: var(--white);
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.checklist {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 70px;
}

.checklist-lines {
  border-top: 1px solid var(--line);
}

.checklist-lines div {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.checklist-lines p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.disclosure-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0;
  padding: 64px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--ink);
}

.disclosure-band div {
  max-width: 780px;
}

.disclosure-band p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.disclosure-band p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  color: var(--muted);
}

.legal-hero {
  padding: 76px 24px 46px;
  color: var(--white);
  background: var(--navy);
}

.legal-hero > div,
.legal-content {
  max-width: 880px;
  margin: 0 auto;
}

.legal-hero p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.legal-content {
  padding: 58px 24px 92px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal-content ul {
  padding-left: 22px;
}

.contact-card {
  border: 1px solid var(--line);
  border-left: 6px solid var(--rust);
  padding: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

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

  .hero {
    min-height: 720px;
  }

  .hero-backdrop {
    object-position: 62% center;
  }

  .summary-rail,
  .editorial,
  .process-board,
  .checklist {
    grid-template-columns: 1fr;
  }

  .summary-rail {
    margin-top: 0;
  }

  .summary-rail div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary-rail div:last-child {
    border-bottom: 0;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .disclosure-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .legal-hero,
  .legal-content,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand span:last-child {
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: 700px;
    padding-top: 70px;
    padding-bottom: 84px;
  }

  .hero-backdrop {
    object-position: 70% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 23, 34, 0.92) 0%, rgba(18, 23, 34, 0.7) 100%),
      linear-gradient(0deg, rgba(18, 23, 34, 0.22), rgba(18, 23, 34, 0.08));
  }

  h1 {
    font-size: 40px;
  }

  .main-nav {
    gap: 12px 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .summary-rail div {
    min-height: auto;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }
}
