:root {
  --ink: #101112;
  --ink-soft: #34383c;
  --muted: #697078;
  --line: #dfe4e8;
  --paper: #ffffff;
  --panel: #f5f7f8;
  --panel-strong: #e9edf0;
  --silver: #9aa2aa;
  --market: #167c58;
  --market-dark: #0f5f43;
  --alert: #b7791f;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(16, 17, 18, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 228, 232, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1160px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img,
.h5-brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(16, 17, 18, 0.12);
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  font-size: 1.05rem;
}

.brand-note {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--panel);
  color: var(--ink);
}

.nav-cta,
.button-primary,
.button-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-weight: 800;
}

.nav-cta {
  padding: 11px 16px;
  background: var(--ink);
  color: var(--paper);
}

.button-primary {
  padding: 13px 18px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 12px 26px rgba(16, 17, 18, 0.18);
}

.button-secondary {
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(90deg, rgba(16, 17, 18, 0.84), rgba(16, 17, 18, 0.48), rgba(16, 17, 18, 0.1)), var(--hero-image);
  background-position: center;
  background-size: cover;
  color: var(--paper);
}

.hero-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0 78px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

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

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--panel);
}

.section.dark {
  background: var(--ink);
  color: var(--paper);
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--market);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dark .section-kicker {
  color: #8de0bc;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
}

.dark .lede,
.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.metric,
.policy-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.card {
  padding: 24px;
}

.card p:last-child,
.policy-box p:last-child,
.feature-row p:last-child {
  margin-bottom: 0;
}

.card-index {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.metric {
  min-height: 148px;
  padding: 26px;
  border-width: 0 1px 0 0;
  border-radius: 0;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--market);
  box-shadow: 0 0 0 6px rgba(22, 124, 88, 0.12);
}

.dark .feature-list li {
  color: rgba(255, 255, 255, 0.78);
}

.dark .feature-list li::before {
  background: #8de0bc;
}

.callout {
  border-left: 4px solid var(--market);
  padding: 18px 22px;
  background: var(--panel);
  color: var(--ink-soft);
}

.dark .callout {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.feature-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.feature-row:first-child {
  border-top: 0;
}

.feature-row strong {
  font-size: 1.05rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.dark .pill {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.policy-meta {
  position: sticky;
  top: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.policy-meta p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.policy-box {
  padding: 28px;
  margin-bottom: 18px;
}

.policy-box h2 {
  font-size: 1.55rem;
}

.page-hero {
  padding: 82px 0 56px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.page-hero.no-image .wrap {
  display: block;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 4.9rem);
}

.page-hero p {
  max-width: 720px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(140px, 0.5fr));
  gap: 30px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid a {
  display: block;
  margin: 7px 0;
}

.footer-grid a:hover {
  color: var(--paper);
}

.footer-title {
  margin-bottom: 12px;
  color: var(--paper);
  font-weight: 900;
}

.legal-note {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.h5-page {
  background: var(--paper);
}

.h5-shell {
  width: min(760px, calc(100% - 28px));
  margin: 0 auto;
}

.h5-header {
  padding: 20px 0 12px;
}

.h5-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.h5-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.h5-title {
  margin: 18px 0 12px;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1;
}

@media (max-width: 860px) {
  .nav-shell {
    width: min(100% - 28px, 760px);
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a,
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: 720px;
    background-position: 58% center;
  }

  .hero-inner {
    width: min(100% - 28px, 760px);
    padding: 94px 0 52px;
  }

  .wrap,
  .footer-grid {
    width: min(100% - 28px, 760px);
  }

  .section {
    padding: 54px 0;
  }

  .grid.three,
  .grid.two,
  .split,
  .split.reverse,
  .page-hero .wrap,
  .policy-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .policy-meta {
    position: static;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand-note {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .metric-band {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .metric:first-child {
    border-top: 0;
  }

  .card,
  .policy-box {
    padding: 20px;
  }
}
