:root {
  color: #151b3b;
  background: #fff8ef;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  --orange: #f56600;
  --orange-dark: #d94700;
  --navy: #141b43;
  --cream: #fff1df;
}

* { box-sizing: border-box; }

html { min-width: 320px; background: white; }

body {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, var(--navy) 0 430px, #fff8ef 430px);
}

a { color: inherit; }

.site-header {
  min-height: 76px;
  padding: 12px max(22px, calc((100vw - 960px) / 2));
  display: flex;
  align-items: center;
  background: white;
  border-bottom: 1px solid #f1dfcf;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.brand strong { color: var(--orange); }

.brand-mark {
  width: 42px;
  height: 46px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 94% 18%, 86% 82%, 50% 100%, 14% 82%, 6% 18%);
  background: var(--orange);
  color: white;
  font-size: 24px;
  font-weight: 900;
}

main {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: 354px;
  padding: 70px 0 50px;
  color: white;
}

.eyebrow {
  margin: 0 0 10px;
  color: #ff9e59;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}

h1, h2, p { overflow-wrap: anywhere; }

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(50px, 9vw, 86px);
  line-height: .95;
  letter-spacing: -.04em;
}

.intro {
  max-width: 680px;
  margin: 22px 0 0;
  color: #dce1f6;
  font-size: 18px;
  line-height: 1.65;
}

.card-grid {
  margin-top: -45px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  min-height: 250px;
  padding: 28px;
  border-radius: 22px;
  background: white;
  box-shadow: 0 16px 40px rgba(20, 27, 67, .13);
  text-decoration: none;
}

.card > span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
}

.card h2 {
  margin: 14px 0 12px;
  font-size: 29px;
}

.card p, .notice p {
  color: #5b6174;
  line-height: 1.65;
}

.card strong { color: var(--orange-dark); }

.notice {
  margin: 36px 0 70px;
  padding: 27px 30px;
  border-left: 5px solid var(--orange);
  border-radius: 0 15px 15px 0;
  background: var(--cream);
}

.notice h2 { margin: 0; }
.notice p { margin-bottom: 0; }

.document {
  margin-top: 55px;
  margin-bottom: 75px;
  padding: 50px;
  border-radius: 25px;
  background: white;
  box-shadow: 0 18px 50px rgba(20, 27, 67, .13);
}

.document h1 {
  color: var(--navy);
  font-size: clamp(44px, 8vw, 72px);
}

.document .updated {
  margin: 14px 0 40px;
  color: #6b7081;
}

.document section {
  padding: 24px 0;
  border-top: 1px solid #ece4db;
}

.document section:first-of-type { border-top: 0; }

.document h2 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 25px;
}

.document section p {
  margin: 0;
  color: #545a6e;
  font-size: 16px;
  line-height: 1.7;
}

.document section a:not(.button) {
  color: var(--orange-dark);
  font-weight: 700;
}

.button {
  margin-top: 20px;
  padding: 14px 18px;
  display: inline-flex;
  border-radius: 12px;
  background: var(--orange);
  color: white;
  box-shadow: 0 5px 0 var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
}

footer {
  min-height: 90px;
  padding: 24px max(22px, calc((100vw - 960px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: white;
  color: #606578;
}

footer nav { display: flex; gap: 18px; }
footer a { color: var(--orange-dark); font-weight: 700; }

@media (max-width: 640px) {
  body { background: linear-gradient(180deg, var(--navy) 0 400px, #fff8ef 400px); }
  .site-header { min-height: 66px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 36px; height: 40px; font-size: 21px; }
  .hero { min-height: 330px; padding-top: 56px; }
  .intro { font-size: 16px; }
  .card-grid { grid-template-columns: 1fr; }
  .card { min-height: 220px; padding: 24px; }
  .document { width: min(100% - 24px, 960px); margin-top: 26px; padding: 30px 22px; }
  footer { align-items: flex-start; flex-direction: column; }
}
