:root {
  --white: #FFFFFF;
  --line: #E5E5E5;
  --body: #666666;
  --heading: #333333;
  --cyan: #22B1DC;
  --steel: #668AA6;
  --blue: #005B8E;
  --soft: #EEEEEE;
  --surface: #f5fafd;
}

* { box-sizing: border-box; }

body {
  background: var(--white);
  color: var(--body);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4, h5 {
  color: var(--heading);
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 { font-size: 2.6rem; line-height: 1.18; margin: 0 0 24px; }
h2 { font-size: 2rem; margin: 34px 0 18px; }
h3 { font-size: 1.45rem; margin: 28px 0 14px; }

img { max-width: 100%; height: auto; }

.container { width: min(1180px, 92%); }

.site-header nav {
  border-bottom: 1px solid var(--line);
  height: 76px;
  line-height: 76px;
}

.brand-logo {
  display: flex !important;
  align-items: center;
  height: 76px;
}

.brand-logo img { height: 42px; width: auto; }

.site-nav > li > a {
  color: var(--heading);
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.site-nav > li > a:hover,
.site-dropdown li > a:hover {
  color: var(--cyan);
  background: transparent;
}

.site-nav .call-link {
  background: var(--blue);
  color: var(--white);
  height: 36px;
  line-height: 36px;
  margin-top: 20px;
  padding: 0 18px;
}

.site-dropdown {
  min-width: 230px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 35px rgba(0, 91, 142, .14);
}

.site-dropdown li > a {
  color: var(--heading);
  font-size: 14px;
}

.menu-mark { color: var(--blue); font-size: 14px; font-weight: 700; }

.hero-section {
  background: linear-gradient(180deg, var(--surface), var(--white));
  border-bottom: 1px solid var(--line);
  padding: 80px 0 70px;
}

.hero-section .row { margin-bottom: 0; }

.eyebrow {
  color: var(--blue);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-copy {
  color: var(--body);
  font-size: 18px;
  max-width: 620px;
}

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

.cyan-btn {
  background: var(--cyan);
  color: var(--white);
  box-shadow: none;
  border-radius: 2px;
}

.cyan-btn:hover { background: var(--blue); }

.outline-btn {
  border: 1px solid var(--steel);
  color: var(--blue);
  height: 36px;
  line-height: 34px;
}

.hero-media {
  text-align: right;
}

.hero-media img {
  filter: drop-shadow(0 24px 30px rgba(0, 91, 142, .16));
  max-height: 360px;
  object-fit: contain;
}

.page-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 46px 0 38px;
}

.page-band p {
  max-width: 760px;
  color: var(--body);
}

.content-section { padding: 58px 0; }

.site-prose {
  max-width: 980px;
}

.compact-page { max-width: 900px; }
.long-form-page { max-width: 1040px; }

.site-prose p { margin: 0 0 18px; }

.site-prose a,
.listing-panel a,
.content-card-grid a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(34, 177, 220, .45);
}

.site-prose a:hover,
.listing-panel a:hover,
.content-card-grid a:hover {
  color: var(--cyan);
  text-decoration-color: var(--cyan);
}

.partner-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 30px 0;
}

.partner-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  min-height: 132px;
  padding: 22px;
  text-align: center;
}

.partner-card img {
  max-height: 78px;
  object-fit: contain;
}

.partner-card figcaption {
  color: var(--body);
  font-size: 13px;
  margin-top: 12px;
}

.site-figure {
  border: 1px solid var(--line);
  margin: 24px 0;
  padding: 16px;
}

.site-figure figcaption {
  color: var(--body);
  font-size: 13px;
  margin-top: 10px;
}

.table-wrap {
  margin: 26px 0;
  overflow-x: auto;
}

.table-wrap table {
  border: 1px solid var(--line);
}

.table-wrap th {
  color: var(--heading);
  font-weight: 700;
}

.table-wrap td,
.table-wrap th {
  border-bottom: 1px solid var(--line);
  padding: 13px 16px;
}

.category-intro {
  margin-bottom: 34px;
}

.category-intro h2 {
  color: var(--heading);
  font-weight: 700;
}

.collection-item {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.breadcrumb-wrap {
  background: var(--steel);
  height: auto;
  line-height: 1.4;
  padding: 12px 0;
}

.breadcrumb-wrap .breadcrumb {
  color: var(--soft);
  font-size: 13px;
}

.article-shell {
  max-width: 900px;
}

.lead {
  border-left: 4px solid var(--cyan);
  color: var(--heading);
  font-size: 18px;
  padding-left: 18px;
}

.main-image {
  float: right;
  margin: 0 0 22px 28px;
  max-width: 34%;
}

.toc-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  height: auto;
  line-height: 1.4;
  margin: 24px 0;
  padding: 14px 16px;
}

.toc-panel,
.toc-panel a {
  color: var(--blue);
}

.article-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: none;
}

.article-card .card-title {
  color: var(--heading);
  font-size: 20px;
  font-weight: 600;
}

.site-footer {
  background: #dfe8ee;
  border-top: 1px solid var(--line);
  color: var(--body);
  padding: 46px 0 22px;
}

.site-footer h4 {
  color: var(--heading);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.footer-logo { height: 40px; margin-bottom: 18px; width: auto; }

.footer-list {
  margin: 0;
}

.footer-list.two-col {
  columns: 2;
}

.footer-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.footer-list a,
.footer-call {
  color: var(--blue);
}

.footer-list a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 91, 142, .14);
  color: var(--body);
  font-size: 12px;
  margin-top: 28px;
  padding-top: 18px;
  text-align: center;
}

@media (max-width: 992px) {
  h1 { font-size: 2.1rem; }
  .hero-section { padding: 48px 0; }
  .hero-media { margin-top: 34px; text-align: left; }
  .main-image { float: none; max-width: 100%; margin: 0 0 22px; }
}

@media print {
  .site-header,
  .site-footer,
  .breadcrumb-wrap { display: none; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}
