:root {
  --navy-950: #061225;
  --navy-900: #0a1a33;
  --navy-800: #10294d;
  --blue: #1e5fae;
  --blue-soft: #e8f0fb;
  --gold: #d6a348;
  --gold-bright: #f1c76f;
  --gold-soft: #fbf2de;
  --ink: #152238;
  --muted: #68758a;
  --line: #dfe5ed;
  --surface: #f6f8fb;
  --white: #ffffff;
  --green: #25a879;
  --red: #e35f64;
  --shadow: 0 24px 70px rgba(6, 18, 37, 0.12);
  --shadow-sm: 0 10px 30px rgba(6, 18, 37, 0.08);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

button, input, select, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 229, 237, 0.82);
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; }
.brand img { width: 50px; height: 50px; object-fit: cover; border-radius: 10px; box-shadow: 0 6px 18px rgba(9, 27, 53, 0.18); }
.brand-name { font-size: 1.1rem; }
.brand-mark { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 9px 14px; color: #4c5a70; font-weight: 650; font-size: 0.94rem; border-radius: 10px; transition: 0.25s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy-900); background: var(--blue-soft); }
.nav-links .nav-cta { margin-left: 8px; color: var(--white); background: var(--navy-900); }
.nav-links .nav-cta:hover { color: var(--navy-900); background: var(--gold-bright); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 9px; background: var(--navy-900); transition: 0.25s ease; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-950); line-height: 1.08; letter-spacing: -0.045em; }
h1 { font-size: clamp(3rem, 6vw, 5.65rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.25rem, 4.2vw, 3.75rem); }
h3 { margin-bottom: 12px; font-size: 1.35rem; letter-spacing: -0.025em; }
p { color: var(--muted); }

.lead { max-width: 680px; font-size: clamp(1.08rem, 2vw, 1.28rem); }
.section-copy { max-width: 640px; margin-bottom: 44px; font-size: 1.05rem; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.section-head p { max-width: 520px; margin-bottom: 4px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 780;
  cursor: pointer;
  transition: 0.25s ease;
}
.btn-primary { color: var(--navy-950); background: var(--gold-bright); box-shadow: 0 10px 28px rgba(214, 163, 72, 0.25); }
.btn-primary:hover { background: #ffda8d; transform: translateY(-2px); }
.btn-secondary { color: var(--navy-900); border-color: #cbd5e2; background: var(--white); }
.btn-secondary:hover { border-color: var(--navy-900); transform: translateY(-2px); }

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(214, 163, 72, 0.17), transparent 30%),
    linear-gradient(135deg, #f7faff 0%, #fff 45%, #fbf5e8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(rgba(30,95,174,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(30,95,174,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr 0.96fr; align-items: center; gap: 64px; padding-block: 84px 92px; }
.hero-copy h1 span { color: var(--blue); }
.hero-copy .lead { margin-bottom: 0; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: #506078; font-size: 0.88rem; font-weight: 700; }
.hero-trust span::before { content: "●"; margin-right: 8px; color: var(--gold); }

.market-visual { position: relative; min-height: 520px; }
.market-photo { position: absolute; inset: 0 28px 48px 0; width: calc(100% - 28px); height: calc(100% - 48px); object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); filter: saturate(.78) contrast(1.05); }
.market-photo-shade { position: absolute; inset: 0 28px 48px 0; border-radius: 30px; background: linear-gradient(150deg, rgba(6,18,37,.05), rgba(6,18,37,.55)); }
.pulse-card { position: absolute; right: 0; bottom: 0; width: min(350px, 78%); padding: 22px; color: var(--white); border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(6,18,37,.93); box-shadow: var(--shadow); }
.pulse-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 18px; }
.pulse-top strong { font-size: 0.82rem; letter-spacing: .08em; text-transform: uppercase; }
.live-dot { color: #8cf1c9; font-size: .76rem; font-weight: 800; }
.live-dot::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #36d89d; box-shadow: 0 0 0 5px rgba(54,216,157,.12); }
.breadth { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.metric { padding: 12px; border-radius: 12px; background: rgba(255,255,255,.08); }
.metric span { display: block; color: #9ba9bd; font-size: .72rem; }
.metric b { font-size: 1.25rem; }
.metric .up { color: #77e1b9; }
.metric .down { color: #ff9195; }

.ticker { overflow: hidden; color: var(--white); background: var(--navy-950); }
.ticker-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; min-height: 70px; }
.ticker-label { flex: 0 0 auto; color: var(--gold-bright); font-size: .76rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.ticker-items { display: flex; width: 100%; justify-content: space-around; gap: 20px; }
.ticker-item { display: flex; align-items: center; gap: 9px; white-space: nowrap; font-size: .9rem; }
.ticker-item small { color: #8fa0ba; }
.positive { color: #77e1b9; }
.negative { color: #ff9195; }

.section { padding-block: 108px; }
.section-soft { background: var(--surface); }
.section-dark { color: var(--white); background: var(--navy-950); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: #a8b6ca; }

.feature-story { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: center; }
.dashboard-shell { position: relative; padding: 22px; border-radius: 30px; background: var(--navy-900); box-shadow: var(--shadow); }
.dashboard-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; color: #dfe8f5; font-size: .78rem; }
.dashboard-top i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 16px 0 0 #386ba6, 32px 0 0 #395270; }
.chart-box { min-height: 250px; padding: 24px; overflow: hidden; border-radius: 18px; background: linear-gradient(180deg, #102d55, #0b1f3b); }
.chart-head { display: flex; justify-content: space-between; align-items: start; color: var(--white); }
.chart-head span { color: #8da1bc; font-size: .78rem; }
.chart-head b { display: block; font-size: 1.6rem; }
.css-chart { position: relative; height: 130px; margin-top: 30px; border-bottom: 1px solid #2a496e; background: repeating-linear-gradient(to top, transparent 0 31px, rgba(255,255,255,.05) 32px); }
.css-chart::before { content: ""; position: absolute; inset: 10px 0 15px; background: linear-gradient(135deg, transparent 0 8%, #4a84c9 8.4% 9%, transparent 9.4% 18%, #4a84c9 18.4% 19%, transparent 19.4% 29%, #4a84c9 29.4% 30%, transparent 30.4% 37%, var(--gold) 37.4% 38%, transparent 38.4% 48%, var(--gold) 48.4% 49%, transparent 49.4% 58%, var(--gold) 58.4% 59%, transparent 59.4% 71%, #6edbb2 71.4% 72%, transparent 72.4% 83%, #6edbb2 83.4% 84%, transparent 84.4%); opacity: .95; transform: skewY(-8deg); }
.asset-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.asset-mini { padding: 12px; border-radius: 12px; background: rgba(255,255,255,.07); color: var(--white); }
.asset-mini span { display: block; color: #8295b0; font-size: .7rem; }

.feature-list { display: grid; gap: 5px; }
.feature-item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.feature-item:last-child { border-bottom: 0; }
.icon-box { display: grid; place-items: center; width: 44px; height: 44px; color: var(--navy-900); border-radius: 12px; background: var(--gold-soft); font-weight: 900; }
.feature-item p { margin-bottom: 0; }

.learn-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 26px; }
.learn-main, .learn-side { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.term { display: inline-flex; padding: 7px 11px; margin-bottom: 34px; color: var(--blue); border-radius: 100px; background: var(--blue-soft); font-size: .75rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.learn-main h3 { max-width: 620px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.mini-bars { display: flex; align-items: flex-end; gap: 9px; height: 112px; margin-top: 26px; }
.mini-bars i { flex: 1; min-width: 12px; border-radius: 6px 6px 2px 2px; background: #c7d9f0; }
.mini-bars i:nth-child(2n) { background: var(--gold-bright); }
.learn-side { display: flex; flex-direction: column; justify-content: space-between; background: var(--navy-900); }
.learn-side h3 { color: var(--white); }
.learn-side p { color: #b4c0d2; }
.source-check { display: flex; align-items: center; gap: 14px; margin-top: 40px; color: var(--white); font-weight: 750; }
.source-check .icon-box { flex: 0 0 auto; color: var(--navy-950); background: var(--gold-bright); }

.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid #243853; border-radius: var(--radius); overflow: hidden; background: #243853; }
.step { counter-increment: steps; padding: 38px 32px 42px; background: var(--navy-900); }
.step::before { content: "0" counter(steps); display: block; margin-bottom: 62px; color: var(--gold-bright); font-size: .8rem; font-weight: 850; letter-spacing: .12em; }
.step p { margin-bottom: 0; }

.privacy-banner { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; margin-top: 48px; padding: 28px; color: var(--navy-950); border-radius: 20px; background: var(--gold-bright); }
.privacy-banner .icon-large { display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid rgba(6,18,37,.2); border-radius: 18px; font-size: 1.4rem; }
.privacy-banner p { margin: 2px 0 0; color: #4a3c25; }

.cta-band { position: relative; overflow: hidden; padding-block: 92px; background: linear-gradient(125deg, #e8f0fb, #fbf2de); }
.cta-band::after { content: ""; position: absolute; width: 320px; height: 320px; top: -170px; right: 5%; border: 70px solid rgba(30,95,174,.08); transform: rotate(45deg); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner h2 { max-width: 740px; margin-bottom: 0; }

.page-hero { position: relative; overflow: hidden; padding-block: 102px 88px; background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.page-hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: -100px; top: -180px; border: 80px solid rgba(214,163,72,.14); transform: rotate(45deg); }
.page-hero h1 { max-width: 890px; margin-bottom: 24px; color: var(--white); font-size: clamp(2.9rem, 5.2vw, 5rem); }
.page-hero .lead { margin-bottom: 0; color: #b9c6d9; }
.page-hero .eyebrow { color: var(--gold-bright); }

.about-intro { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 78px; }
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; height: 580px; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); filter: saturate(.82); }
.photo-note { position: absolute; left: -30px; bottom: 32px; max-width: 260px; padding: 22px; color: var(--white); border-radius: 18px; background: var(--navy-900); box-shadow: var(--shadow-sm); }
.photo-note strong { display: block; margin-bottom: 6px; color: var(--gold-bright); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.photo-note p { margin: 0; color: #c1cbd9; font-size: .9rem; }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.principle { min-height: 280px; padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.principle .number { display: block; margin-bottom: 70px; color: var(--gold); font-weight: 850; }
.principle p { margin-bottom: 0; }

.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.editorial-card { padding: 34px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.06); }
.editorial-card p { margin-bottom: 0; }

.policy-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 72px; align-items: start; }
.policy-nav { position: sticky; top: 110px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.policy-nav strong { display: block; margin-bottom: 14px; }
.policy-nav a { display: block; padding: 8px 10px; color: var(--muted); border-radius: 8px; font-size: .9rem; }
.policy-nav a:hover { color: var(--navy-900); background: var(--blue-soft); }
.policy-content section { padding-bottom: 44px; margin-bottom: 44px; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.policy-content section:last-child { border-bottom: 0; }
.policy-content h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
.policy-content h3 { margin-top: 30px; }
.policy-content li { margin-bottom: 8px; color: var(--muted); }
.data-promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 62px; }
.promise { padding: 24px; border: 1px solid #d7e1ef; border-radius: 16px; background: var(--blue-soft); }
.promise b { display: block; margin-bottom: 6px; color: var(--navy-900); }
.promise p { margin: 0; font-size: .9rem; }
.policy-callout { padding: 26px; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; background: var(--gold-soft); }
.policy-callout p { margin: 0; color: #504632; }

.contact-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
.form-card { padding: 42px; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--navy-900); font-size: .9rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cdd6e2; border-radius: 12px; outline: none; background: #fbfcfe; transition: .2s ease; }
.field input, .field select { height: 50px; padding: 0 14px; }
.field textarea { min-height: 150px; padding: 13px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30,95,174,.1); background: var(--white); }
.field input[type="file"] { padding: 12px; height: auto; border-style: dashed; }
.field-error { min-height: 18px; color: #bb3942; font-size: .78rem; }
.check-field { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: .88rem; }
.check-field input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--blue); }
.check-field a { color: var(--blue); text-decoration: underline; }
.form-status { display: none; padding: 14px 16px; border-radius: 11px; font-size: .9rem; font-weight: 700; }
.form-status.success { display: block; color: #0f6648; background: #def7ed; }
.form-status.error { display: block; color: #962f35; background: #fde8e9; }

.contact-side { display: grid; gap: 18px; }
.contact-panel { padding: 30px; color: var(--white); border-radius: 22px; background: var(--navy-900); }
.contact-panel.gold { color: var(--navy-950); background: var(--gold-bright); }
.contact-panel h3 { color: inherit; }
.contact-panel p { color: #b8c5d7; }
.contact-panel.gold p { color: #574728; }
.contact-panel a { font-weight: 800; text-decoration: underline; text-decoration-color: rgba(255,255,255,.28); text-underline-offset: 4px; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding: 8px 12px; color: #146746; border-radius: 100px; background: #e1f7ee; font-size: .8rem; font-weight: 800; }
.status-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

.site-footer { padding-block: 64px 28px; color: #a8b6ca; background: var(--navy-950); }
.footer-top { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; padding-bottom: 50px; }
.footer-brand .brand { margin-bottom: 18px; color: var(--white); }
.footer-brand p { max-width: 460px; margin-bottom: 0; color: #8fa0b8; }
.footer-links { display: flex; justify-content: flex-end; flex-wrap: wrap; align-content: start; gap: 12px 24px; }
.footer-links a { color: #c4cfdd; font-weight: 650; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; border-top: 1px solid #1c304c; font-size: .84rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links { position: fixed; inset: 77px 0 auto; display: grid; gap: 4px; padding: 20px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: var(--shadow-sm); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: .3s ease; }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links a { padding: 13px 14px; }
  .nav-links .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid, .feature-story, .about-intro, .contact-wrap { grid-template-columns: 1fr; }
  .hero-grid { gap: 44px; padding-block: 60px 70px; }
  .hero-copy { max-width: 710px; }
  .market-visual { min-height: 480px; }
  .learn-grid { grid-template-columns: 1fr; }
  .steps, .principles { grid-template-columns: 1fr; }
  .step::before, .principle .number { margin-bottom: 30px; }
  .about-photo-wrap { max-width: 720px; }
  .policy-layout { grid-template-columns: 1fr; gap: 40px; }
  .policy-nav { position: static; display: none; }
  .data-promise { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand-name { display: none; }
  .section { padding-block: 72px; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .market-visual { min-height: 410px; }
  .market-photo { inset: 0 12px 55px 0; width: calc(100% - 12px); height: calc(100% - 55px); border-radius: 22px; }
  .market-photo-shade { inset: 0 12px 55px 0; border-radius: 22px; }
  .pulse-card { width: 90%; padding: 17px; }
  .ticker-inner { align-items: flex-start; padding-block: 18px; }
  .ticker-items { justify-content: flex-start; overflow: hidden; }
  .ticker-item:nth-child(n+3) { display: none; }
  .feature-story { gap: 48px; }
  .dashboard-shell { padding: 13px; border-radius: 22px; }
  .chart-box { min-height: 220px; padding: 18px; }
  .asset-row { grid-template-columns: 1fr; }
  .asset-mini:nth-child(n+2) { display: none; }
  .learn-main, .learn-side, .form-card { padding: 26px; }
  .steps { border-radius: 18px; }
  .step { padding: 28px 24px; }
  .privacy-banner { grid-template-columns: 1fr; }
  .cta-inner { display: block; }
  .cta-inner .btn { margin-top: 28px; }
  .page-hero { padding-block: 72px 64px; }
  .about-photo { height: 420px; border-radius: 22px; }
  .photo-note { position: relative; left: 14px; bottom: auto; width: calc(100% - 28px); max-width: none; margin-top: -58px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

/* The standalone About H5 page intentionally has no links, buttons, or menu. */
.h5-page { background: var(--surface); }
.h5-brandbar { padding: 18px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.h5-brand { display: flex; align-items: center; gap: 12px; font-weight: 850; }
.h5-brand img { width: 50px; height: 50px; object-fit: cover; border-radius: 10px; }
.h5-main { max-width: 680px; margin: 0 auto; padding: 44px 18px 70px; }
.h5-main .page-hero { margin: -44px -18px 44px; padding: 70px 18px 58px; }
.h5-block { padding: 26px; margin-bottom: 18px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.h5-block h2 { font-size: 1.8rem; }
.h5-stat { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.h5-stat + .h5-stat { padding-top: 20px; margin-top: 20px; border-top: 1px solid var(--line); }
.h5-footer { padding: 30px 18px; text-align: center; color: #9aabc1; background: var(--navy-950); font-size: .84rem; }
