:root {
  --navy: #062a45;
  --navy-deep: #041f34;
  --ink: #17384c;
  --muted: #526a79;
  --orange: #f47716;
  --orange-dark: #ad4300;
  --paper: #ffffff;
  --soft: #f3f7f9;
  --line: #dce5ea;
  --shadow: 0 16px 40px rgba(6, 42, 69, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16.5px/1.65 "Segoe UI", Arial, Helvetica, sans-serif;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}
.wrap { width: min(1200px, calc(100% - 64px)); margin-inline: auto; }
.skip {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 50;
  background: #fff;
  padding: 10px 16px;
}
.skip:focus { top: 12px; }
.topbar {
  background: var(--navy-deep);
  color: #dbe8ef;
  font-size: 13px;
  letter-spacing: .015em;
  padding: 8px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 24px; }
header { background: #fff; border-bottom: 1px solid var(--line); }
.nav {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: block;
  width: 210px;
  height: 82px;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand img {
  display: block;
  width: 210px;
  height: 105px;
  object-fit: contain;
  transform: translateY(-12px);
}
nav { display: flex; align-items: center; gap: 27px; }
nav a { font-size: 15px; font-weight: 650; text-decoration: none; }
nav a:hover, .footer-grid a:hover, .breadcrumb a:hover { color: var(--orange-dark); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.button:hover { background: #ff963d; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(4,31,52,.12); }
.button.outline { background: #fff; border-color: #adbbc4; color: var(--navy); }
.button.outline:hover { background: var(--soft); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: .015em;
}
h1, h2, h3 { color: var(--navy); }
h1 {
  max-width: 800px;
  margin: 0 0 24px;
  font-size: clamp(43px, 5vw, 70px);
  font-weight: 750;
  letter-spacing: -.04em;
  line-height: 1.07;
}
h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 3.4vw, 45px);
  font-weight: 730;
  letter-spacing: -.035em;
  line-height: 1.15;
}
h3 { margin: 12px 0; font-size: 23px; font-weight: 720; letter-spacing: -.02em; line-height: 1.25; }
.hero { overflow: hidden; background: var(--navy); color: #fff; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  min-height: 600px;
  align-items: stretch;
}
.hero-copy { align-self: center; padding: 72px 44px 72px 0; position: relative; z-index: 1; }
.hero .eyebrow { color: #ffad6a; }
.hero h1 { color: #fff; max-width: 660px; }
.hero h1 em { color: #ff8d35; font-style: normal; }
.hero-copy > p:not(.eyebrow) { max-width: 540px; color: #dce8ef; font-size: 19px; line-height: 1.6; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 28px; }
.text-link { text-underline-offset: 5px; font-weight: 650; }
.hero .text-link { color: #fff; }
.hero-foot { margin-top: 36px; color: #b8cfdb; font-size: 13px; letter-spacing: .015em; }
.hero-art { min-height: 600px; position: relative; background: #284d62; }
.hero-art img {
  position: absolute;
  inset: 0;
  width: calc(100% + 120px);
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}
.hero-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy), transparent 18%); }
.image-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 5px 11px;
  border-radius: 5px;
  background: rgba(4,31,52,.78);
  color: #fff;
  font-size: 12px;
}
.ribbon { border-bottom: 1px solid var(--line); background: #edf3f6; }
.ribbon .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 21px 0; }
.ribbon span { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 650; }
.check { color: var(--orange-dark); font-size: 21px; line-height: 1; }
.section { padding: 86px 0; }
.section.gray { background: var(--soft); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 36px; }
.section-head p { max-width: 440px; margin: 0; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(6,42,69,.03);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.card:hover { border-color: #f0a56b; transform: translateY(-3px); box-shadow: var(--shadow); }
.card .number { color: var(--orange-dark); font-size: 13px; font-weight: 750; letter-spacing: .015em; }
.card h3 { margin: 17px 0 8px; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.55; }
.card .more { display: block; margin-top: auto; padding-top: 23px; color: var(--navy); font-size: 14px; font-weight: 750; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 72px; }
.steps { border-bottom: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 24px 0; border-top: 1px solid var(--line); }
.step > span { color: var(--orange-dark); font-size: 14px; font-weight: 750; }
.step h3 { margin: 0 0 8px; font-size: 21px; }
.step p { margin: 0; color: var(--muted); font-size: 15.5px; }
.area-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.area-box { padding: 23px 0; border-top: 3px solid var(--orange); }
.area-box h3 { margin: 0 0 15px; font-size: 21px; }
.area-links { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.area-links a { font-size: 15px; text-underline-offset: 4px; }
.pill { display: inline-block; border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; color: var(--muted); font-size: 13px; white-space: nowrap; }
.area-section + .area-section { margin-top: 68px; }
.area-group-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.area-group-head h2 { margin-bottom: 17px; }
.area-group-head .eyebrow { margin-bottom: 8px; }
.area-group-head .pill { margin-bottom: 19px; }
.cta-band { padding: 64px 0; border-top: 4px solid var(--orange); background: var(--navy); color: #fff; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta-band h2 { max-width: 700px; margin-bottom: 12px; color: #fff; }
.cta-band p { margin: 0; color: #d3e0e8; }
footer { padding: 58px 0 26px; background: #f5f8fa; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-grid strong { color: var(--navy); }
.footer-grid p { max-width: 360px; color: var(--muted); font-size: 15px; }
.footer-grid a { display: block; margin: 9px 0; font-size: 15px; text-decoration: none; }
.footer-title { font-size: 15px; }
.copyright { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.breadcrumb { padding: 22px 0; color: var(--muted); font-size: 14px; }
.breadcrumb a { text-underline-offset: 3px; }
.page-hero { padding: 54px 0 61px; border-bottom: 1px solid var(--line); background: var(--soft); }
.page-hero h1 { max-width: 920px; font-size: clamp(39px, 4.7vw, 62px); }
.page-hero p:last-child { max-width: 790px; margin: 0; color: var(--muted); font-size: 18px; }
.article-grid { display: grid; grid-template-columns: minmax(0,2fr) minmax(270px,1fr); gap: 68px; }
.prose { max-width: 800px; font-size: 17px; }
.prose h2 { margin: 42px 0 13px; font-size: 30px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 27px; font-size: 21px; }
.prose p, .prose li { color: #3e5869; }
.prose p { margin: 0 0 18px; }
.prose li { margin: 8px 0; }
.prose a { color: #a84100; text-underline-offset: 3px; }
.sidebar { align-self: start; padding: 29px; border-top: 4px solid var(--orange); border-radius: 0 0 10px 10px; background: var(--soft); }
.sidebar h3 { margin: 0 0 12px; }
.sidebar p { color: var(--muted); font-size: 15px; }
.sidebar a:not(.button) { display: block; margin: 11px 0; font-size: 15px; text-underline-offset: 3px; }
.sidebar-subheading { margin-top: 30px !important; }
details { padding: 21px 0; border-bottom: 1px solid var(--line); }
summary { font-weight: 700; cursor: pointer; }
details p { max-width: 850px; color: var(--muted); }
.notice { padding: 16px 20px; border-left: 4px solid var(--orange); border-radius: 0 7px 7px 0; background: #fff2e6; font-size: 15px; }
.field { display: block; margin-bottom: 20px; }
.field span { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 700; }
input, select, textarea { width: 100%; padding: 12px 14px; border: 1px solid #9fb2be; border-radius: 7px; background: #fff; color: var(--ink); }
textarea { min-height: 130px; resize: vertical; }
.search { max-width: 520px; margin-bottom: 26px; }
.status { padding: 14px 0; color: var(--muted); font-size: 15px; }
.request-output { overflow-wrap: anywhere; white-space: pre-wrap; padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--soft); font: 15px/1.6 "Segoe UI", Arial, sans-serif; }
.hidden, [hidden] { display: none !important; }
@media (max-width: 1050px) {
  .wrap { width: min(100% - 44px, 1200px); }
  .nav { gap: 16px; }
  nav { gap: 16px; }
  .brand, .brand img { width: 180px; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; }
  .hero-copy { padding-right: 22px; }
  .cards, .area-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split { gap: 38px; }
  .article-grid { gap: 34px; }
}
@media (max-width: 740px) {
  .wrap { width: calc(100% - 36px); }
  .topbar .wrap span:last-child { display: none; }
  .nav { min-height: 82px; flex-wrap: wrap; }
  .brand { height: 73px; }
  .brand img { transform: translateY(-17px); }
  .menu-toggle { display: block; }
  nav { display: none; width: 100%; padding: 0 0 20px; flex-direction: column; align-items: stretch; gap: 16px; }
  nav.open { display: flex; }
  nav .button { align-self: stretch; }
  .hero-grid { display: flex; flex-direction: column; min-height: 0; }
  .hero-copy { width: 100%; padding: 44px 0 28px; }
  .hero h1 { font-size: clamp(38px, 10vw, 50px); }
  .hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .hero-foot { margin-top: 24px; }
  .hero-art { width: calc(100% + 36px); min-height: 285px; }
  .hero-art img { width: 100%; object-position: center 58%; }
  .hero-art::after { background: linear-gradient(180deg, var(--navy), transparent 19%); }
  .ribbon .wrap { grid-template-columns: 1fr; gap: 12px; padding: 19px 0; }
  .section { padding: 58px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .cards, .area-grid, .split, .article-grid, .footer-grid { grid-template-columns: 1fr; }
  .card { min-height: 0; padding: 24px; }
  .split, .article-grid { gap: 32px; }
  .area-section + .area-section { margin-top: 48px; }
  .cta-band { padding: 51px 0; }
  .cta-band .wrap { display: block; }
  .cta-band .button { margin-top: 23px; }
  .footer-grid { gap: 20px; }
  .page-hero { padding: 37px 0 43px; }
  .page-hero h1 { font-size: clamp(36px, 9vw, 48px); }
  .page-hero p:last-child { font-size: 17px; }
  .prose h2 { font-size: 27px; }
  .actions .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .card { transition: none; }
}
