:root {
  --primary: #075985;
  --primary-dark: #083344;
  --accent: #13a77f;
  --accent-light: #8df0d5;
  --warm: #d69232;
  --ink: #10202d;
  --ink-soft: #405369;
  --mute: #6b7a8c;
  --bg-soft: #f6fafb;
  --line: #d9e7ea;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  text-underline-offset: 4px;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 231, 234, 0.86);
  backdrop-filter: saturate(140%) blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

.brand-logo {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(8, 51, 68, 0.08));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a:not(.btn) {
  color: #31475a;
  font-size: 15px;
  font-weight: 650;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #0d7f91);
  box-shadow: 0 14px 28px rgba(7, 89, 133, 0.22);
}

.btn-primary:hover {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
  color: var(--primary-dark);
  background: #fff;
  text-decoration: none;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 92px 0;
  background:
    linear-gradient(90deg, rgba(4, 30, 43, 0.94) 0%, rgba(4, 30, 43, 0.78) 48%, rgba(4, 30, 43, 0.38) 100%),
    linear-gradient(180deg, rgba(4, 30, 43, 0.2) 0%, rgba(4, 30, 43, 0.6) 100%),
    url("assets/hbs-hero-bg.jpg") center right / cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.page-hero-copy {
  max-width: 800px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #d8fff3;
  background: rgba(255, 255, 255, 0.11);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

h1 .accent {
  color: var(--accent-light);
}

.hero-sub {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

section {
  padding: 78px 0;
}

.intro-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 44px;
  align-items: start;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.12;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 20px;
  line-height: 1.2;
}

p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 17px;
}

.lede {
  font-size: 19px;
  color: #31475a;
}

.panel,
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 51, 68, 0.08);
}

.panel {
  padding: 30px;
}

.stat-list {
  display: grid;
  gap: 14px;
}

.stat-list div {
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbfb 0%, #edf7f7 100%);
  border: 1px solid var(--line);
}

.stat-list strong {
  display: block;
  color: var(--primary);
  font-size: 28px;
  line-height: 1;
}

.stat-list span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.content-band {
  background: linear-gradient(180deg, #f6fbfb 0%, #eef7f7 100%);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--warm));
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 16px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.link-card {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 800;
}

.link-card span {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}

.link-card:hover {
  border-color: rgba(19, 167, 127, 0.55);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(8, 51, 68, 0.08);
}

.cta-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 89, 133, 0.98), rgba(8, 51, 68, 1)),
    linear-gradient(90deg, rgba(214, 146, 50, 0.16), transparent);
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.88);
}

footer {
  padding: 44px 0 26px;
  color: #c4d0dc;
  background: linear-gradient(180deg, #10202d 0%, #071722 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer-logo {
  width: 180px;
  height: auto;
  border-radius: 8px;
  background: #fff;
}

footer h4 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer a {
  display: block;
  padding: 4px 0;
  color: #a3b4c6;
  font-size: 14px;
}

.footer-about {
  margin-top: 12px;
  color: #a3b4c6;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #7b8a9c;
  font-size: 13px;
}

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

  .nav-links {
    flex-wrap: wrap;
  }

  .page-hero {
    min-height: auto;
    padding: 64px 0;
  }

  .intro-grid,
  .split-grid,
  .cards,
  .footer-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }
}
