@font-face {
  font-family: "PT Sans";
  src: url("/PTSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  src: url("/PTSans-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --red: #cc0000;
  --red-dark: #a90000;
  --blue: #28416e;
  --blue-mid: #5582a0;
  --ink: #20242a;
  --muted: #68717c;
  --line: #dfe3e7;
  --gray: #ececec;
  --paper: #ffffff;
  --bg: #f5f6f7;
  --shadow: 0 14px 35px rgba(32, 36, 42, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.55 "PT Sans", Arial, sans-serif;
}
a { color: inherit; }
.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { display: block; width: 270px; max-width: 43vw; height: auto; }
.header-links { display: flex; gap: 30px; }
.header-links a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.header-links a:hover { color: var(--red); }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(40,65,110,.055) 1px, transparent 1px),
    linear-gradient(rgba(40,65,110,.055) 1px, transparent 1px),
    #fff;
  background-size: 44px 44px;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: max(0px, calc((100vw - 1160px) / 2));
  width: 9px;
  height: 155px;
  background: var(--red);
}
.hero-grid {
  min-height: 470px;
  padding-block: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
  align-items: center;
  gap: 70px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 67px);
  line-height: 1.02;
  letter-spacing: -.025em;
}
.lead {
  max-width: 680px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 21px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 48px;
  padding: 11px 21px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease;
}
.button.primary { background: var(--red); color: #fff; }
.button.primary:hover { background: var(--red-dark); }
.button.quiet { border-color: #bfc7d0; background: #fff; color: var(--blue); }
.button.quiet:hover { border-color: var(--blue); }

.access-note {
  position: relative;
  padding: 30px;
  border-top: 5px solid var(--red);
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
}
.access-note h2 { margin-bottom: 10px; font-size: 27px; }
.access-note p { color: rgba(255,255,255,.82); }
.access-note a { font-weight: 700; text-decoration-color: rgba(255,255,255,.45); }
.note-mark {
  display: inline-block;
  margin-bottom: 18px;
  padding: 3px 8px;
  background: #fff;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.services { padding-block: 68px 76px; }
.section-heading {
  margin-bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.section-heading h2 { margin-bottom: 0; font-size: 38px; line-height: 1.08; }
.section-heading > p { max-width: 360px; margin-bottom: 2px; color: var(--muted); text-align: right; }
.section-heading.compact { margin-bottom: 26px; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.service-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue-mid);
  background: var(--paper);
  box-shadow: 0 7px 22px rgba(32,36,42,.045);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.service-card.featured { border-top-color: var(--red); }
.service-card:hover { border-color: #b7c0c9; box-shadow: var(--shadow); transform: translateY(-2px); }
.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  background: var(--gray);
  color: var(--blue);
}
.featured .icon { background: #f8e9e9; color: var(--red); }
.icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-type { margin-bottom: 5px; color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-card strong { margin-bottom: 7px; font-size: 23px; line-height: 1.15; }
.service-card > span:not(.icon):not(.service-type) { color: var(--muted); }
.service-card b { margin-top: auto; padding-top: 22px; color: var(--blue); }
.service-card i { color: var(--red); font-style: normal; }

.start-section { padding-block: 64px 74px; background: var(--gray); }
.start-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.start-card {
  position: relative;
  min-height: 215px;
  padding: 28px 30px 28px 86px;
  border-left: 4px solid var(--blue-mid);
  background: var(--paper);
}
.start-card.support { border-left-color: var(--red); }
.start-card h3 { margin-bottom: 10px; font-size: 24px; }
.start-card p, .start-card ol { margin-bottom: 12px; color: var(--muted); }
.start-card ol { padding-left: 20px; }
.step {
  position: absolute;
  top: 29px;
  left: 27px;
  color: var(--red);
  font-size: 17px;
  font-weight: 700;
}
.text-link { color: var(--blue); font-weight: 700; text-decoration-color: #b6c0cd; }
.text-link span { color: var(--red); }
code { padding: 1px 5px; background: #e2e5e8; color: var(--blue); font: inherit; font-size: .92em; }

footer { background: #20242a; color: #fff; }
.footer-inner { min-height: 120px; display: flex; align-items: center; gap: 28px; }
.footer-inner img { width: 220px; height: auto; }
.footer-inner p { margin: 0; color: #c8ccd1; }
.footer-inner a { margin-left: auto; font-weight: 700; }

@media (max-width: 900px) {
  .hero-grid { gap: 35px; }
  .service-card { grid-column: span 3; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .wrap { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 72px; }
  .brand img { width: 210px; max-width: 72vw; }
  .header-links { display: none; }
  .hero::after { width: 6px; height: 85px; right: 14px; }
  .hero-grid { min-height: auto; padding-block: 48px; grid-template-columns: 1fr; gap: 30px; }
  h1 { font-size: clamp(38px, 12vw, 52px); }
  .lead { font-size: 18px; }
  .access-note { padding: 24px; }
  .services { padding-block: 48px 55px; }
  .section-heading { display: block; }
  .section-heading h2 { font-size: 32px; }
  .section-heading > p { margin-top: 12px; text-align: left; }
  .service-grid, .start-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 235px; grid-column: auto; }
  .start-section { padding-block: 48px 55px; }
  .start-card { padding: 65px 22px 24px; }
  .step { top: 23px; left: 22px; }
  .footer-inner { padding-block: 28px; align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-inner a { margin-left: 0; }
}
