:root {
  --hsv2-bg: #fbf8f2;
  --hsv2-surface: #ffffff;
  --hsv2-soft: #f4efe6;
  --hsv2-soft-2: #ece5d6;
  --hsv2-ink: #14241c;
  --hsv2-ink-2: #3b584b;
  --hsv2-muted: #587466;
  --hsv2-line: rgba(20, 36, 28, .12);
  --hsv2-line-strong: rgba(20, 36, 28, .22);
  --hsv2-brand: #1f8a5b;
  --hsv2-brand-dark: #155f40;
  --hsv2-brand-soft: #dcefe5;
  --hsv2-amber: #b8881f;
  --hsv2-klei: #8e4c32;
  --hsv2-dark: #0f2a1f;
  --hsv2-dark-soft: #193529;
  --hsv2-radius: 12px;
  --hsv2-radius-lg: 20px;
  --hsv2-shadow: 0 24px 70px rgba(12, 56, 38, .14);
  --hsv2-shadow-soft: 0 10px 30px rgba(20, 36, 28, .08);
  --hsv2-serif: "Fraunces", Georgia, serif;
  --hsv2-sans: "Manrope", Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--hsv2-bg);
  color: var(--hsv2-ink);
  font-family: var(--hsv2-sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.hsv2-loading {
  min-height: 60vh;
  display: grid;
  place-items: center;
  color: var(--hsv2-muted);
}

.hsv2-container {
  width: min(100% - 64px, 1160px);
  margin-inline: auto;
}

.hsv2-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--hsv2-line);
  background: rgba(251, 248, 242, .9);
  backdrop-filter: blur(12px);
}

.hsv2-nav-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hsv2-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: var(--hsv2-serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.hsv2-brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hsv2-ink);
  border-radius: 10px;
  font-family: var(--hsv2-sans);
  font-size: 17px;
}

.hsv2-brand em {
  color: var(--hsv2-brand);
  font-style: normal;
}

.hsv2-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  font-weight: 500;
}

.hsv2-nav-links a,
.hsv2-nav-more-button,
.hsv2-login,
.hsv2-language a {
  text-decoration: none;
}

.hsv2-nav-links > a,
.hsv2-nav-more-button,
.hsv2-login {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--hsv2-ink-2);
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.hsv2-nav-links > a:hover,
.hsv2-nav-more-button:hover,
.hsv2-login:hover {
  color: var(--hsv2-ink);
  background: rgba(20, 36, 28, .045);
}

.hsv2-nav-more {
  position: relative;
}

.hsv2-nav-more-button {
  gap: 8px;
  padding: 0;
  font-weight: 600;
}

.hsv2-nav-more-button span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--hsv2-line);
  border-radius: 999px;
  color: var(--hsv2-brand-dark);
  font-size: 14px;
  line-height: 1;
  transition: transform .18s ease;
}

.hsv2-nav-more.is-open .hsv2-nav-more-button span {
  transform: rotate(45deg);
}

.hsv2-nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: -18px;
  width: 330px;
  padding: 10px;
  border: 1px solid var(--hsv2-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--hsv2-shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease;
}

.hsv2-nav-more.is-open .hsv2-nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hsv2-nav-menu a {
  display: grid;
  gap: 2px;
  padding: 12px 13px;
  border-radius: 11px;
  color: var(--hsv2-ink);
}

.hsv2-nav-menu a:hover,
.hsv2-nav-menu a:focus-visible {
  background: var(--hsv2-soft);
}

.hsv2-nav-menu span {
  font-weight: 700;
  font-size: 14px;
}

.hsv2-nav-menu small {
  color: var(--hsv2-muted);
  font-size: 12px;
}

.hsv2-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hsv2-language {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--hsv2-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
}

.hsv2-language a {
  display: inline-grid;
  min-width: 34px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: var(--hsv2-muted);
  font-size: 12px;
  font-weight: 800;
}

.hsv2-language a.is-active {
  background: var(--hsv2-ink);
  color: var(--hsv2-bg);
}

.hsv2-login {
  padding: 0 2px;
  font-size: 14px;
  font-weight: 650;
}

.hsv2-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--hsv2-line);
  border-radius: 12px;
  background: rgba(255,255,255,.56);
  color: var(--hsv2-ink);
  cursor: pointer;
}

.hsv2-mobile-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.hsv2-mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hsv2-mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.hsv2-mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hsv2-mobile-menu {
  display: none;
  border-top: 1px solid var(--hsv2-line);
  background: rgba(251, 248, 242, .98);
}

.hsv2-mobile-menu .hsv2-container {
  display: grid;
  gap: 6px;
  padding-block: 14px 18px;
}

.hsv2-mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 11px;
  color: var(--hsv2-ink);
  font-weight: 650;
  text-decoration: none;
}

.hsv2-mobile-menu a:hover {
  background: var(--hsv2-soft);
}

.hsv2-mobile-menu span {
  margin-top: 10px;
  padding: 0 12px;
  color: var(--hsv2-amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hsv2-mobile-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--hsv2-line);
}

.hsv2-mobile-meta .hsv2-login {
  min-height: 36px;
  padding: 0 12px;
}

.hsv2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--hsv2-line-strong);
  border-radius: var(--hsv2-radius);
  background: transparent;
  color: var(--hsv2-ink);
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.hsv2-button:hover,
.hsv2-button:focus-visible {
  border-color: var(--hsv2-ink);
  background: rgba(20, 36, 28, .03);
}

.hsv2-button-primary {
  border-color: var(--hsv2-brand);
  background: var(--hsv2-brand);
  color: #fbf8f2;
  box-shadow: 0 1px 2px rgba(20, 36, 28, .14);
}

.hsv2-button-primary:hover,
.hsv2-button-primary:focus-visible {
  border-color: var(--hsv2-brand-dark);
  background: var(--hsv2-brand-dark);
  box-shadow: 0 10px 26px rgba(12, 56, 38, .22);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 11px 18px;
  border-radius: 10px;
  background: var(--hsv2-dark);
  color: #f4efe6;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--hsv2-shadow);
  transform: translateY(-160%);
  opacity: 0;
  transition: transform .16s ease, opacity .16s ease;
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  outline: 2px solid #b8dfca;
  outline-offset: 2px;
}

.hsv2-section {
  padding: clamp(78px, 8vw, 112px) 0;
}

.hsv2-section-white {
  background: var(--hsv2-surface);
}

.hsv2-section-soft {
  background: var(--hsv2-bg);
}

.hsv2-section-dark {
  background: var(--hsv2-dark);
  color: #f4efe6;
}

.hsv2-section-head {
  max-width: 720px;
  margin-bottom: 46px;
}

.hsv2-section-head-center {
  margin-inline: auto;
  text-align: center;
}

.hsv2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--hsv2-amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hsv2-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.hsv2-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(31, 138, 91, .18);
  border-radius: 999px;
  background: rgba(31, 138, 91, .08);
  color: var(--hsv2-brand-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.hsv2-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: .72;
}

h1,
h2 {
  margin: 0;
  font-family: var(--hsv2-serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .98;
  text-wrap: balance;
}

h1 {
  max-width: 650px;
  font-size: clamp(42px, 5.1vw, 66px);
  font-variation-settings: "opsz" 110;
}

h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.25vw, 44px);
  font-variation-settings: "opsz" 96;
}

h1 em,
h2 em {
  color: var(--hsv2-brand-dark);
  font-style: italic;
  font-weight: 500;
}

.hsv2-section-dark h1 em,
.hsv2-section-dark h2 em,
.hsv2-prefooter h1 em,
.hsv2-prefooter h2 em {
  color: #b8dfca;
}

p {
  color: var(--hsv2-ink-2);
}

.hsv2-section-dark p {
  color: rgba(244, 239, 230, .78);
}

.hsv2-hero {
  padding: 88px 0 98px;
  background:
    radial-gradient(circle at 78% 28%, rgba(31, 138, 91, .08), transparent 24%),
    linear-gradient(180deg, #fcfaf5, var(--hsv2-bg));
}

.hsv2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(64px, 8vw, 104px);
}

.hsv2-hero-copy > p {
  max-width: 43ch;
  margin: 28px 0 0;
  color: var(--hsv2-muted);
  font-size: 18.5px;
  line-height: 1.65;
}

.hsv2-hero-copy > .hsv2-pill {
  max-width: fit-content;
  align-items: center;
  border-radius: 999px;
  line-height: 1.2;
}

.hsv2-hero-copy > .hsv2-pill::before {
  margin-top: 0;
}

.hsv2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hsv2-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--hsv2-muted);
  font-size: 14px;
}

.hsv2-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hsv2-proof-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: var(--hsv2-brand);
}

.hsv2-hero-note {
  max-width: 46ch;
  margin-top: 16px;
  color: var(--hsv2-ink-2);
  font-size: 13.5px;
  font-weight: 650;
}

.hsv2-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 420px;
}

.hsv2-hero-photo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2vw;
  aspect-ratio: 1 / 1;
}

.hsv2-hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Reusable marketing photo — muted, warm treatment so photos read as part of
   the cream/green system rather than dropped-in framed images. */
.hsv2-figure {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--hsv2-soft-2);
  box-shadow: 0 1px 2px rgba(20, 36, 28, .05), 0 34px 64px -40px rgba(20, 36, 28, .34);
  aspect-ratio: 16 / 10;
}

.hsv2-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.8) contrast(.96) brightness(1.02);
}

/* barely-there brand wash + soft bottom depth, blends the photo into the page */
.hsv2-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(208deg, rgba(220, 239, 229, .12), rgba(20, 36, 28, 0) 42%, rgba(20, 36, 28, .07));
  pointer-events: none;
}

.hsv2-media-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
}

.hsv2-media-split.is-reverse .hsv2-figure { order: -1; }
.hsv2-media-split .hsv2-figure { aspect-ratio: 4 / 3; }
/* let the photo bleed a touch past the text column for an editorial feel */
.hsv2-media-split .hsv2-figure { margin-block: 4px; }

@media (max-width: 820px) {
  .hsv2-media-split { grid-template-columns: 1fr; gap: 26px; }
  .hsv2-media-split.is-reverse .hsv2-figure { order: 0; }
  .hsv2-media-split .hsv2-figure { aspect-ratio: 16 / 10; }
}

.hsv2-insight-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(334px, 80%);
  padding: 20px 20px 18px;
  border: 1px solid var(--hsv2-line);
  border-radius: 18px;
  background: var(--hsv2-surface);
  box-shadow: var(--hsv2-shadow);
}

.hsv2-insight-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--hsv2-muted);
  font-size: 12px;
}

.hsv2-insight-top strong {
  color: var(--hsv2-brand-dark);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hsv2-insight-intro,
.hsv2-insight-footnote {
  margin: 0 0 16px;
  color: var(--hsv2-muted);
  font-size: 12px;
  line-height: 1.45;
}

.hsv2-insight-footnote {
  margin: 15px 0 0;
  padding-top: 13px;
  border-top: 1px solid var(--hsv2-line);
  color: var(--hsv2-ink-2);
  font-weight: 650;
}

.hsv2-bars {
  display: grid;
  gap: 13px;
}

.hsv2-bar-row {
  display: grid;
  gap: 6px;
}

.hsv2-bar-label {
  display: flex;
  justify-content: space-between;
  color: var(--hsv2-ink-2);
  font-size: 13px;
}

.hsv2-bar-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--hsv2-soft-2);
}

.hsv2-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--hsv2-brand);
  transform-origin: left;
  animation: hsv2-grow .9s ease both;
}

.hsv2-bar-78 {
  width: 78%;
}

.hsv2-bar-31 {
  width: 31%;
  background: var(--hsv2-amber);
}

.hsv2-bar-19 {
  width: 19%;
  background: var(--hsv2-klei);
}

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

.hsv2-card,
.hsv2-problem-card {
  position: relative;
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-bg);
}

.hsv2-problem-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,0)),
    var(--hsv2-bg);
  box-shadow: 0 1px 0 rgba(20, 36, 28, .04);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.hsv2-problem-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 36, 28, .2);
  box-shadow: var(--hsv2-shadow-soft);
}

.hsv2-card-icon,
.hsv2-flow-icon,
.hsv2-stat-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  place-content: center;
  flex: 0 0 42px;
  border-radius: 10px;
  background: var(--hsv2-brand-soft);
  color: var(--hsv2-brand-dark);
  line-height: 1;
}

.hsv2-card-icon svg,
.hsv2-flow-icon svg,
.hsv2-stat-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.hsv2-card h3 {
  margin: 44px 0 0;
  font-size: 16px;
  line-height: 1.35;
}

.hsv2-problem-card h3 {
  max-width: 20ch;
  margin: 24px 0 0;
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.12;
}

.hsv2-problem-card p {
  margin: 16px 0 0;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.6;
}

.hsv2-problem-card small {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--hsv2-muted);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.45;
}

.hsv2-problem-card small::before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin-bottom: 14px;
  background: var(--hsv2-line-strong);
}

.hsv2-positioning {
  position: relative;
}

.hsv2-positioning h2 {
  max-width: 760px;
}

body.hsv2-body .hsv2-positioning-payoff {
  max-width: 720px;
  margin: 34px auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
}

.hsv2-spectrum-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

.hsv2-spectrum-card {
  padding: 30px 18px;
  border: 1px solid rgba(244, 239, 230, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
  text-align: center;
}

.hsv2-spectrum-card.is-active {
  background: var(--hsv2-brand);
  border-color: var(--hsv2-brand);
  box-shadow: 0 20px 42px -18px rgba(0, 0, 0, .55);
}

.hsv2-spectrum-card strong {
  display: block;
  color: #f4efe6;
  font-size: 16px;
}

.hsv2-spectrum-card span {
  display: block;
  margin-top: 5px;
  color: rgba(244, 239, 230, .66);
  font-size: 12px;
}

.hsv2-flow {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: 32px;
  align-items: stretch;
}

.hsv2-flow-tabs {
  display: grid;
  gap: 12px;
}

.hsv2-flow-tab {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid transparent;
  border-radius: var(--hsv2-radius);
  background: transparent;
  color: var(--hsv2-ink);
  text-align: left;
  cursor: pointer;
}

.hsv2-flow-tab.is-active {
  border-color: var(--hsv2-line);
  background: var(--hsv2-surface);
  box-shadow: var(--hsv2-shadow-soft);
}

.hsv2-flow-tab strong,
.hsv2-flow-tab span {
  display: block;
}

.hsv2-flow-tab span {
  margin-top: 4px;
  color: var(--hsv2-muted);
  font-size: 12px;
}

.hsv2-flow-meter {
  height: 3px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--hsv2-soft-2);
}

.hsv2-flow-meter i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--hsv2-brand);
}

.hsv2-flow-tab.is-active .hsv2-flow-meter i {
  animation: hsv2-meter 4.6s linear both;
}

.hsv2-flow-panel {
  min-height: 352px;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 42px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-surface);
  box-shadow: var(--hsv2-shadow-soft);
}

.hsv2-flow-panel h3 {
  margin: 0;
  color: var(--hsv2-brand-dark);
  font-size: 24px;
}

.hsv2-flow-panel p {
  max-width: 54ch;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.hsv2-privacy-wrap {
  display: grid;
  gap: 24px;
}

.hsv2-privacy-card {
  padding: 20px;
  border-radius: var(--hsv2-radius-lg);
  background: #0f241a;
  box-shadow: var(--hsv2-shadow);
}

.hsv2-privacy-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.hsv2-lock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(244, 239, 230, .86);
  font-size: 12px;
  font-weight: 650;
}

.hsv2-lock-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #b8dfca;
}

.hsv2-lock-icon svg {
  display: block;
  width: 17px;
  height: 17px;
}

.hsv2-segment {
  display: flex;
  gap: 4px;
  padding: 3px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .09);
}

.hsv2-segment button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(244, 239, 230, .7);
  font-size: 12px;
  font-weight: 650;
  padding: 8px 12px;
  cursor: pointer;
}

.hsv2-segment button.is-active {
  background: #fff;
  color: var(--hsv2-ink);
}

.hsv2-privacy-visual {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.hsv2-privacy-canvas {
  display: block;
  width: 100%;
  height: 360px;
  border-radius: 14px;
  background: #10261c;
}

.hsv2-privacy-scores {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.hsv2-privacy-card[data-mode="group"] .hsv2-privacy-scores {
  display: grid;
}

.hsv2-score-card {
  padding: 14px;
  border: 1px solid rgba(244, 239, 230, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
}

.hsv2-score-card strong {
  display: block;
  color: #f4efe6;
  font-family: var(--hsv2-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.hsv2-score-card span {
  display: block;
  margin-top: 6px;
  color: rgba(244, 239, 230, .68);
  font-size: 12px;
}

.hsv2-privacy-caption {
  margin: 12px 6px 0;
  color: rgba(244, 239, 230, .72);
  font-size: 13px;
  line-height: 1.55;
}

.hsv2-privacy-caption strong {
  color: #fff;
}

.hsv2-privacy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hsv2-list-card {
  padding: 24px;
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-brand-soft);
}

.hsv2-list-card.is-muted {
  border: 1px solid var(--hsv2-line);
  background: var(--hsv2-bg);
}

.hsv2-list-card h3 {
  margin: 0 0 16px;
  font-size: 15px;
}

.hsv2-list-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--hsv2-ink-2);
  font-size: 14px;
}

.hsv2-list-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}

.hsv2-list-card li::before {
  content: "+";
  color: var(--hsv2-brand-dark);
  font-weight: 700;
}

.hsv2-list-card.is-muted li::before {
  content: "x";
  color: var(--hsv2-klei);
}

.hsv2-privacy-footnote {
  max-width: 68ch;
  margin: 18px 0 0;
  color: var(--hsv2-muted);
  font-size: 13px;
  line-height: 1.55;
}

.hsv2-stats {
  border-top: 1px solid var(--hsv2-line);
  border-bottom: 1px solid var(--hsv2-line);
  background: var(--hsv2-soft);
}

.hsv2-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 34px 0;
}

.hsv2-stat {
  display: flex;
  align-items: center;
  gap: 13px;
}

.hsv2-stat strong {
  display: block;
  font-family: var(--hsv2-serif);
  font-size: 26px;
  font-weight: 500;
}

.hsv2-stat > span:not(.hsv2-stat-icon) {
  display: block;
  color: var(--hsv2-muted);
  font-size: 12px;
}

.hsv2-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: center;
  gap: 34px;
  padding: clamp(34px, 5.5vw, 58px);
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: linear-gradient(150deg, var(--hsv2-brand-soft), #fcfaf5);
}

.hsv2-depth-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.55;
}

.hsv2-depth-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
}

.hsv2-depth-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .55em;
  border-radius: 999px;
  background: var(--hsv2-brand);
}

.hsv2-document {
  justify-self: center;
  width: 110px;
  height: 142px;
  padding: 16px;
  border: 1px solid var(--hsv2-line-strong);
  border-radius: 10px;
  background: var(--hsv2-surface);
  box-shadow: var(--hsv2-shadow-soft);
}

.hsv2-document i {
  display: block;
  height: 6px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--hsv2-brand);
}

.hsv2-document i:nth-child(2) {
  width: 70%;
}

.hsv2-document i:nth-child(3) {
  width: 86%;
  background: var(--hsv2-soft-2);
}

.hsv2-document-chart {
  height: 42px;
  margin-top: 18px;
  border-left: 2px solid var(--hsv2-line-strong);
  border-bottom: 2px solid var(--hsv2-line-strong);
  background: linear-gradient(135deg, transparent 45%, rgba(184, 136, 31, .35) 46% 52%, transparent 53%);
}

.hsv2-prefooter {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: var(--hsv2-dark);
  color: #f4efe6;
  text-align: center;
}

.hsv2-prefooter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 138, 91, .18), transparent 58%),
    radial-gradient(circle at 50% 0%, rgba(76, 195, 138, .20), transparent 42%);
  pointer-events: none;
}

.hsv2-prefooter .hsv2-container {
  position: relative;
  z-index: 1;
}

.hsv2-prefooter h2 {
  max-width: 760px;
  margin-inline: auto;
  color: #f4efe6;
}

.hsv2-prefooter p {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(244, 239, 230, .76);
}

.hsv2-prefooter .hsv2-pill {
  margin-bottom: 22px;
  background: #fff;
  color: var(--hsv2-brand-dark);
}

.hsv2-prefooter .hsv2-button-primary {
  border-color: #fff;
  background: #fff;
  color: var(--hsv2-brand-dark);
}

.hsv2-prefooter .hsv2-button:not(.hsv2-button-primary) {
  border-color: rgba(244, 239, 230, .44);
  color: #f4efe6;
}

.hsv2-footer {
  padding: 64px 0 34px;
  background: #0c1512;
  color: rgba(229, 231, 235, .78);
}

.hsv2-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, .95fr));
  gap: 38px;
}

.hsv2-footer h3,
.hsv2-footer h4 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--hsv2-sans);
  font-size: 16px;
}

.hsv2-footer p,
.hsv2-footer a,
.hsv2-footer li {
  color: rgba(229, 231, 235, .68);
  font-size: 14px;
  line-height: 1.65;
  text-decoration: none;
}

.hsv2-footer a:hover {
  color: #fff;
}

.hsv2-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hsv2-footer-brand {
  display: inline-flex;
  margin-bottom: 14px;
  color: #fff;
}

.hsv2-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid rgba(229, 231, 235, .12);
}

.hsv2-trust-item {
  text-align: center;
}

.hsv2-trust-item .hsv2-stat-icon {
  margin: 0 auto 10px;
  background: rgba(31, 138, 91, .18);
  color: #4cc38a;
}

.hsv2-trust-item .hsv2-stat-icon svg {
  margin: 0;
}

.hsv2-trust-item strong,
.hsv2-trust-item span {
  display: block;
  font-size: 12px;
}

.hsv2-trust-item strong {
  color: rgba(229, 231, 235, .84);
}

.hsv2-trust-item span {
  color: rgba(229, 231, 235, .48);
}

.hsv2-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(229, 231, 235, .12);
  font-size: 12px;
}

.hsv2-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@keyframes hsv2-grow {
  from {
    transform: scaleX(0);
  }
}

@keyframes hsv2-meter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

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

@media (max-width: 900px) {
  .hsv2-container {
    width: min(100% - 28px, 1160px);
  }

  .hsv2-nav-inner {
    min-height: 62px;
    height: 66px;
    padding: 0;
  }

  .hsv2-nav-links {
    display: none;
  }

  .hsv2-nav-actions {
    gap: 9px;
  }

  .hsv2-nav-actions > .hsv2-language,
  .hsv2-nav-actions > .hsv2-login {
    display: none;
  }

  .hsv2-mobile-toggle {
    display: inline-flex;
  }

  .hsv2-mobile-menu.is-open {
    display: block;
  }

  .hsv2-nav .hsv2-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hsv2-hero {
    padding: 48px 0 62px;
  }

  .hsv2-hero-grid,
  .hsv2-flow,
  .hsv2-privacy-columns,
  .hsv2-cta-card {
    grid-template-columns: 1fr;
  }

  .hsv2-hero-copy > p {
    font-size: 17px;
  }

.hsv2-actions .hsv2-button {
  width: 100%;
}

  .hsv2-actions-center .hsv2-button {
    width: auto;
  }

  .hsv2-hero-visual {
    min-height: 0;
  }

  .hsv2-hero-photo {
    display: none;
  }

  .hsv2-insight-card {
    position: static;
    width: auto;
  }

  .hsv2-grid-3,
  .hsv2-spectrum-cards,
  .hsv2-stats-grid,
  .hsv2-privacy-scores,
  .hsv2-footer-grid,
  .hsv2-trust-row {
    grid-template-columns: 1fr;
  }

  .hsv2-flow-panel {
    min-height: 280px;
    padding: 26px;
  }

  .hsv2-privacy-visual {
    min-height: 300px;
  }

  .hsv2-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hsv2-brand {
    font-size: 22px;
  }

  .hsv2-brand-mark {
    width: 34px;
    height: 34px;
  }

  .hsv2-nav-actions > .hsv2-button {
    display: none;
  }

  .hsv2-mobile-menu .hsv2-button {
    justify-content: center;
    margin-top: 6px;
  }
}

.hsv2-actions-center {
  justify-content: center;
}


.hsv2-page-hero {
  padding: clamp(72px, 8vw, 108px) 0 clamp(62px, 7vw, 92px);
  background:
    radial-gradient(circle at 78% 18%, rgba(31, 138, 91, .09), transparent 26%),
    linear-gradient(180deg, #fcfaf5, var(--hsv2-bg));
}

.hsv2-nav-links > a.is-active {
  color: var(--hsv2-ink);
  background: rgba(20, 36, 28, .055);
}

.hsv2-logo-brand {
  min-width: 156px;
}

.hsv2-logo-img {
  display: block;
  width: 156px;
  height: auto;
}

.hsv2-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .72fr);
  align-items: end;
  gap: clamp(42px, 6vw, 78px);
}

.hsv2-page-hero h1 {
  max-width: 760px;
  margin-top: 24px;
}

.hsv2-page-hero p {
  max-width: 58ch;
  margin: 26px 0 0;
  color: var(--hsv2-muted);
  font-size: 18px;
  line-height: 1.65;
}

.hsv2-page-rail {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: rgba(255,255,255,.58);
  box-shadow: var(--hsv2-shadow-soft);
}

.hsv2-hero-report {
  display: grid;
  gap: 10px;
}

.hsv2-hero-report div {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--hsv2-line);
  border-radius: 13px;
  background: rgba(255,255,255,.62);
}

.hsv2-hero-report strong {
  color: var(--hsv2-brand-dark);
  font-family: var(--hsv2-serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.hsv2-hero-report span {
  color: var(--hsv2-ink-2);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.hsv2-hero-report.is-words div {
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 15px 18px;
}

.hsv2-hero-report.is-words strong {
  font-size: 25px;
}

.hsv2-hero-report.is-words span {
  font-size: 12px;
}

.hsv2-page-rail > p {
  margin: 2px 0 0;
  color: var(--hsv2-muted);
  font-size: 13px;
  line-height: 1.5;
}

.hsv2-page-rail strong {
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.hsv2-page-rail span {
  color: var(--hsv2-muted);
  font-size: 13px;
  line-height: 1.5;
}

.hsv2-page-section {
  padding: clamp(70px, 7vw, 102px) 0;
  background: var(--hsv2-surface);
}

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

.hsv2-page-section.is-soft {
  background: var(--hsv2-bg);
}

.hsv2-page-section.is-dark {
  background: var(--hsv2-dark);
  color: #f4efe6;
}

.hsv2-page-section.is-dark p,
.hsv2-page-section.is-dark li,
.hsv2-page-section.is-dark span {
  color: rgba(244,239,230,.76);
}

.hsv2-page-section.is-dark .hsv2-card-icon {
  background: #b8dfca;
  color: var(--hsv2-dark);
}

.hsv2-page-section.is-dark .hsv2-card-icon svg {
  color: inherit;
}

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

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

.hsv2-v2-card {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-bg);
}

.hsv2-v2-card.is-white {
  background: var(--hsv2-surface);
}

.hsv2-v2-card.is-dark {
  border-color: rgba(244,239,230,.14);
  background: rgba(255,255,255,.06);
}

.hsv2-v2-card h3 {
  margin: 22px 0 0;
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.hsv2-v2-card.is-dark h3 {
  color: #f4efe6;
}

.hsv2-v2-card p {
  margin: 16px 0 0;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.62;
}

.hsv2-v2-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.5;
}

.hsv2-v2-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}

.hsv2-v2-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .52em;
  border-radius: 999px;
  background: var(--hsv2-brand);
}

.hsv2-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--hsv2-brand-soft);
  color: var(--hsv2-brand-dark);
  font-weight: 800;
}

.hsv2-price {
  margin-top: 18px;
  color: var(--hsv2-brand-dark);
  font-family: var(--hsv2-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.hsv2-faq-list {
  display: grid;
  gap: 12px;
}

.hsv2-faq-item {
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-surface);
  overflow: hidden;
}

.hsv2-faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--hsv2-ink);
  font-weight: 750;
  list-style: none;
}

.hsv2-faq-item summary::-webkit-details-marker {
  display: none;
}

.hsv2-faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--hsv2-muted);
  font-size: 14px;
  line-height: 1.65;
}

.hsv2-page-note {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-brand-soft);
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.6;
}

.hsv2-page-section.is-dark .hsv2-page-note-dark {
  border-color: rgba(184, 223, 202, .45);
  background: #b8dfca;
  color: var(--hsv2-dark);
  font-weight: 700;
}

.hsv2-method-rail {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hsv2-method-rail li {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 0 0 18px;
}

.hsv2-method-rail li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 38px;
  bottom: 0;
  width: 1px;
  background: var(--hsv2-line-strong);
}

.hsv2-method-rail li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--hsv2-brand-soft);
  color: var(--hsv2-brand-dark);
  font-weight: 800;
}

.hsv2-method-rail strong {
  display: block;
  color: var(--hsv2-ink);
  font-size: 14px;
}

.hsv2-method-rail small {
  display: block;
  margin-top: 2px;
  color: var(--hsv2-muted);
  font-size: 12px;
}

.hsv2-method-board {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: linear-gradient(180deg, rgba(220,239,229,.75), rgba(251,248,242,.96));
}

.hsv2-method-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: rgba(255,255,255,.72);
}

.hsv2-method-step > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  background: var(--hsv2-dark);
  color: #f4efe6;
  font-family: var(--hsv2-serif);
  font-size: 26px;
}

.hsv2-method-step small {
  display: inline-block;
  color: var(--hsv2-amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hsv2-method-step h3 {
  margin: 4px 0 0;
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 25px;
  font-weight: 500;
}

.hsv2-method-step ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.55;
}

.hsv2-method-step li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}

.hsv2-method-step li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .55em;
  border-radius: 999px;
  background: var(--hsv2-brand);
}

.hsv2-method-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.hsv2-method-outcome {
  padding: 30px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-surface);
  box-shadow: var(--hsv2-shadow-soft);
}

.hsv2-method-outcome h3 {
  margin: 24px 0 0;
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
}

.hsv2-method-outcome p {
  color: var(--hsv2-ink-2);
  line-height: 1.7;
}

.hsv2-principle-cloud {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 12px;
  padding: 30px;
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-dark);
}

.hsv2-principle-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(184,223,202,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #b8dfca;
  font-size: 13px;
  font-weight: 800;
}

.hsv2-solution-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  gap: 22px;
  align-items: stretch;
}

.hsv2-domain-map {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-bg);
}

.hsv2-domain-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(20,36,28,.08);
  border-radius: 13px;
  background: rgba(255,255,255,.62);
}

.hsv2-domain-row strong {
  display: block;
  color: var(--hsv2-ink);
  font-size: 14px;
}

.hsv2-domain-row span {
  display: block;
  margin-top: 4px;
  color: var(--hsv2-muted);
  font-size: 12px;
  line-height: 1.4;
}

.hsv2-domain-row b {
  color: var(--hsv2-brand-dark);
  font-family: var(--hsv2-serif);
  font-size: 28px;
  font-weight: 500;
  text-align: right;
}

.hsv2-domain-row i {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--hsv2-soft-2);
}

.hsv2-domain-row i::before {
  content: "";
  display: block;
  width: 70%;
  height: 100%;
  border-radius: inherit;
  background: var(--hsv2-brand);
}

.hsv2-domain-row .is-78::before { width: 78%; }
.hsv2-domain-row .is-74::before { width: 74%; }
.hsv2-domain-row .is-72::before { width: 72%; }
.hsv2-domain-row .is-69::before { width: 69%; }
.hsv2-domain-row .is-66::before { width: 66%; }
.hsv2-domain-row .is-61::before { width: 61%; }

.hsv2-board-note {
  padding: 28px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-dark);
  color: #f4efe6;
}

.hsv2-board-note h3 {
  margin: 24px 0 0;
  color: #f4efe6;
  font-family: var(--hsv2-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.hsv2-board-note p {
  color: rgba(244,239,230,.76);
  line-height: 1.65;
}

.hsv2-decision-mini {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.hsv2-decision-mini span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--hsv2-brand-soft);
  color: var(--hsv2-brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.hsv2-decision-mini i {
  height: 1px;
  background: var(--hsv2-line-strong);
}

.hsv2-decision-map {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 64px;
}

.hsv2-decision-map article {
  padding: 24px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-bg);
}

.hsv2-decision-map article:first-child {
  background: var(--hsv2-brand-soft);
}

.hsv2-decision-map span {
  color: var(--hsv2-amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hsv2-decision-map h3 {
  margin: 14px 0 0;
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 26px;
  font-weight: 500;
}

.hsv2-decision-map p {
  margin: 14px 0 0;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.6;
}

.hsv2-boundary-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hsv2-boundary-flow article {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 176px;
  padding: 22px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-bg);
}

.hsv2-boundary-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -15px;
  z-index: 2;
  width: 16px;
  height: 1px;
  background: var(--hsv2-line-strong);
}

.hsv2-boundary-flow span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: var(--hsv2-brand-soft);
  color: var(--hsv2-brand-dark);
  font-weight: 800;
}

.hsv2-boundary-flow strong {
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.08;
}

.hsv2-boundary-flow p {
  margin: 0;
  color: var(--hsv2-ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.hsv2-checkin-board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 18px;
  align-items: stretch;
}

.hsv2-checkin-core,
.hsv2-checkin-boundary {
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
}

.hsv2-checkin-core {
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(180deg, rgba(220,239,229,.82), rgba(251,248,242,.96));
}

.hsv2-checkin-boundary {
  display: grid;
  align-content: start;
  padding: 28px;
  background: var(--hsv2-dark);
  color: #f4efe6;
}

.hsv2-checkin-core h2 {
  margin: 24px 0 0;
}

.hsv2-checkin-boundary h3 {
  margin: 22px 0 0;
  color: #f4efe6;
  font-family: var(--hsv2-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
}

.hsv2-checkin-core ul,
.hsv2-checkin-boundary ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hsv2-checkin-core li,
.hsv2-checkin-boundary li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font-size: 14px;
  line-height: 1.58;
}

.hsv2-checkin-core li {
  color: var(--hsv2-ink-2);
}

.hsv2-checkin-boundary li {
  color: rgba(244,239,230,.78);
}

.hsv2-checkin-core li::before,
.hsv2-checkin-boundary li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .58em;
  border-radius: 999px;
}

.hsv2-checkin-core li::before {
  background: var(--hsv2-brand);
}

.hsv2-checkin-boundary li::before {
  background: #b8dfca;
}

.hsv2-checkin-boundary .hsv2-card-icon {
  background: #b8dfca;
  color: var(--hsv2-dark);
}

.hsv2-offer-ladder {
  display: grid;
  gap: 12px;
}

.hsv2-offer-ladder article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, .72fr) minmax(240px, .9fr);
  gap: 22px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-bg);
}

.hsv2-offer-ladder article:first-child {
  background: var(--hsv2-brand-soft);
}

.hsv2-offer-ladder article > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
}

.hsv2-offer-ladder span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--hsv2-dark);
  color: #f4efe6;
  font-weight: 800;
}

.hsv2-offer-ladder h3 {
  margin: 0;
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.08;
}

.hsv2-offer-ladder p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--hsv2-ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.hsv2-offer-ladder strong {
  color: var(--hsv2-brand-dark);
  font-family: var(--hsv2-serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.12;
  text-wrap: balance;
}

.hsv2-offer-ladder ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--hsv2-ink-2);
  font-size: 13px;
  line-height: 1.45;
}

.hsv2-offer-ladder li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
}

.hsv2-offer-ladder li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: .55em;
  border-radius: 999px;
  background: var(--hsv2-brand);
}

.hsv2-index-board {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: stretch;
}

.hsv2-index-core,
.hsv2-index-limits,
.hsv2-index-signals article {
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
}

.hsv2-index-core {
  display: grid;
  align-content: start;
  padding: 28px;
  background: var(--hsv2-dark);
  color: #f4efe6;
}

.hsv2-index-core .hsv2-card-icon {
  background: #b8dfca;
  color: var(--hsv2-dark);
}

.hsv2-index-core > span,
.hsv2-index-limits > span {
  margin-top: 20px;
  color: var(--hsv2-amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hsv2-index-core h3 {
  margin: 16px 0 0;
  color: #f4efe6;
  font-family: var(--hsv2-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
}

.hsv2-index-core ul,
.hsv2-index-limits ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.55;
}

.hsv2-index-core li,
.hsv2-index-limits li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
}

.hsv2-index-core li {
  color: rgba(244,239,230,.78);
}

.hsv2-index-core li::before,
.hsv2-index-limits li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .58em;
  border-radius: 999px;
}

.hsv2-index-core li::before {
  background: #b8dfca;
}

.hsv2-index-signals {
  display: grid;
  gap: 12px;
}

.hsv2-index-signals article {
  padding: 21px 22px;
  background: var(--hsv2-surface);
  box-shadow: var(--hsv2-shadow-soft);
}

.hsv2-index-signals strong {
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.hsv2-index-signals p {
  margin: 10px 0 0;
  color: var(--hsv2-ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.hsv2-index-limits {
  grid-column: 1 / -1;
  padding: 24px;
  background: var(--hsv2-brand-soft);
}

.hsv2-index-limits > span {
  margin-top: 0;
  color: var(--hsv2-brand-dark);
}

.hsv2-index-limits ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hsv2-index-limits li {
  color: var(--hsv2-ink-2);
}

.hsv2-index-limits li::before {
  background: var(--hsv2-brand);
}

.hsv2-validation-board,
.hsv2-role-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hsv2-validation-board article,
.hsv2-role-board article {
  padding: 24px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-bg);
}

.hsv2-validation-board article:first-child {
  background: var(--hsv2-brand-soft);
}

.hsv2-validation-board.is-timeline article:first-child {
  background: var(--hsv2-dark);
}

.hsv2-validation-board.is-timeline article:first-child strong,
.hsv2-validation-board.is-timeline article:first-child p {
  color: #f4efe6;
}

.hsv2-validation-board span,
.hsv2-role-board span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--hsv2-brand-soft);
  color: var(--hsv2-brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.hsv2-validation-board.is-timeline article:first-child span {
  background: rgba(184,223,202,.12);
  color: #b8dfca;
}

.hsv2-validation-board strong,
.hsv2-role-board strong {
  display: block;
  margin-top: 18px;
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.08;
}

.hsv2-validation-board p,
.hsv2-role-board p {
  margin: 12px 0 0;
  color: var(--hsv2-ink-2);
  font-size: 13px;
  line-height: 1.58;
}

.hsv2-role-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.hsv2-faq-router {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 34px;
}

.hsv2-faq-router article {
  padding: 22px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-bg);
}

.hsv2-faq-router div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hsv2-faq-router strong {
  color: var(--hsv2-brand-dark);
  font-family: var(--hsv2-serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.hsv2-faq-router span {
  color: var(--hsv2-ink);
  font-size: 13px;
  font-weight: 800;
}

.hsv2-faq-router p {
  min-height: 42px;
  margin: 12px 0 18px;
  color: var(--hsv2-ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.hsv2-faq-router ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--hsv2-muted);
  font-size: 12px;
  line-height: 1.4;
}

.hsv2-faq-router li {
  padding-top: 9px;
  border-top: 1px solid var(--hsv2-line);
}

.hsv2-operating-model {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: stretch;
  margin-bottom: 24px;
}

.hsv2-operating-model > div:first-child {
  padding: 32px;
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-dark);
  color: #f4efe6;
}

.hsv2-operating-model h2 {
  margin: 16px 0 0;
  color: #f4efe6;
  font-family: var(--hsv2-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.02;
}

.hsv2-operating-model h2 em {
  color: #b8dfca;
  font-style: normal;
}

.hsv2-operating-model > div:first-child p {
  margin: 20px 0 0;
  color: rgba(244,239,230,.78);
  line-height: 1.7;
}

.hsv2-operating-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hsv2-operating-steps article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-bg);
}

.hsv2-operating-steps span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: var(--hsv2-brand-soft);
  color: var(--hsv2-brand-dark);
  font-weight: 800;
}

.hsv2-operating-steps strong {
  margin-top: 18px;
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 24px;
  font-weight: 500;
}

.hsv2-operating-steps p {
  margin: 10px 0 0;
  color: var(--hsv2-ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.hsv2-pilot-fit-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.hsv2-pilot-fit-board article {
  padding: 22px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-bg);
}

.hsv2-pilot-fit-board strong {
  display: block;
  color: var(--hsv2-brand-dark);
  font-family: var(--hsv2-serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.hsv2-pilot-fit-board span {
  display: block;
  margin-top: 12px;
  color: var(--hsv2-ink);
  font-size: 13px;
  font-weight: 800;
}

.hsv2-pilot-fit-board p {
  margin: 10px 0 0;
  color: var(--hsv2-ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.hsv2-data-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.hsv2-data-flow article {
  position: relative;
  padding: 22px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-bg);
}

.hsv2-data-flow article i {
  position: absolute;
  top: 34px;
  right: -14px;
  z-index: 2;
  width: 16px;
  height: 1px;
  background: var(--hsv2-line-strong);
}

.hsv2-data-flow span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--hsv2-brand-soft);
  color: var(--hsv2-brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.hsv2-data-flow strong {
  display: block;
  margin-top: 18px;
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 24px;
  font-weight: 500;
}

.hsv2-data-flow p {
  margin: 10px 0 0;
  color: var(--hsv2-ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.hsv2-maturity-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.hsv2-maturity-board article {
  padding: 24px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-bg);
}

.hsv2-maturity-board article:nth-child(2) {
  background: var(--hsv2-brand-soft);
}

.hsv2-maturity-board span {
  color: var(--hsv2-amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hsv2-maturity-board p {
  margin: 14px 0 18px;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.6;
}

.hsv2-maturity-board ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--hsv2-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.hsv2-maturity-board li {
  padding: 11px 0 0;
  border-top: 1px solid var(--hsv2-line);
}

.hsv2-report-boundary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hsv2-report-boundary article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px 24px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-bg);
}

.hsv2-report-boundary .hsv2-boundary-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--hsv2-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
}

.hsv2-report-boundary .hsv2-boundary-tag::before {
  font-weight: 800;
}

.hsv2-report-boundary .is-visible .hsv2-boundary-tag {
  background: var(--hsv2-brand-soft);
  color: var(--hsv2-brand-dark);
}

.hsv2-report-boundary .is-visible .hsv2-boundary-tag::before {
  content: "✓";
}

.hsv2-report-boundary .is-hidden .hsv2-boundary-tag {
  background: rgba(200, 116, 90, .14);
  color: var(--hsv2-klei);
}

.hsv2-report-boundary .is-hidden .hsv2-boundary-tag::before {
  content: "✕";
}

.hsv2-report-boundary .is-threshold .hsv2-boundary-tag {
  background: rgba(20, 36, 28, .07);
  color: var(--hsv2-ink);
}

.hsv2-report-boundary .is-threshold .hsv2-boundary-tag::before {
  content: "≥";
}

.hsv2-report-boundary p {
  margin: 0;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.55;
}

.hsv2-privacy-stack {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.hsv2-privacy-stack article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) minmax(86px, auto);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-bg);
}

.hsv2-privacy-stack span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--hsv2-brand-soft);
  color: var(--hsv2-brand-dark);
  font-weight: 800;
}

.hsv2-privacy-stack strong {
  display: block;
  color: var(--hsv2-ink);
  font-size: 14px;
}

.hsv2-privacy-stack p {
  margin: 5px 0 0;
  color: var(--hsv2-ink-2);
  font-size: 13px;
  line-height: 1.5;
}

.hsv2-privacy-stack b {
  justify-self: end;
  padding: 9px 11px;
  border-radius: 999px;
  background: var(--hsv2-dark);
  color: #b8dfca;
  font-size: 12px;
  text-transform: uppercase;
}

.hsv2-legal-layout {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.hsv2-legal-summary {
  position: sticky;
  top: 96px;
  padding: 30px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-dark);
  color: #f4efe6;
}

.hsv2-legal-summary h2 {
  margin: 16px 0 0;
  color: #f4efe6;
  font-family: var(--hsv2-serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.04;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hsv2-legal-summary h2 em {
  color: #b8dfca;
  font-style: normal;
}

.hsv2-legal-summary p {
  margin: 18px 0 0;
  color: rgba(244,239,230,.76);
  font-size: 14px;
  line-height: 1.65;
}

.hsv2-legal-proof {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.hsv2-legal-proof article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(184,223,202,.2);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}

.hsv2-legal-proof article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: #b8dfca;
  color: var(--hsv2-dark);
}

.hsv2-legal-proof strong {
  display: block;
  color: #f4efe6;
  font-size: 13px;
}

.hsv2-legal-proof p {
  grid-column: 2;
  margin: -4px 0 0;
  font-size: 12px;
  line-height: 1.45;
}

.hsv2-legal-sections {
  display: grid;
  gap: 14px;
}

.hsv2-legal-sections article {
  padding: 24px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-surface);
}

.hsv2-legal-sections h3 {
  margin: 0;
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.12;
}

.hsv2-legal-sections p {
  margin: 14px 0 0;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.7;
}

.hsv2-legal-sections ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.55;
}

.hsv2-legal-sections li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}

.hsv2-legal-sections li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .55em;
  border-radius: 999px;
  background: var(--hsv2-brand);
}

.hsv2-legal-toc {
  display: grid;
  gap: 1px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(184, 223, 202, .22);
}

.hsv2-legal-toc-label {
  margin-bottom: 6px;
  color: rgba(244, 239, 230, .5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hsv2-legal-toc a {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  padding: 7px 9px;
  border-radius: 8px;
  color: rgba(244, 239, 230, .76);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}

.hsv2-legal-toc a::before {
  content: "";
  align-self: center;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(184, 223, 202, .5);
  transition: background .15s ease, transform .15s ease;
}

.hsv2-legal-toc a:hover {
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.hsv2-legal-toc a:hover::before {
  background: #b8dfca;
  transform: scale(1.4);
}

.hsv2-legal-sections article {
  scroll-margin-top: 104px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

.hsv2-cookie-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hsv2-cookie-examples span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--hsv2-brand-soft);
  color: var(--hsv2-brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.hsv2-card-meta {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--hsv2-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.hsv2-story-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hsv2-story-strip article {
  padding: 28px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-bg);
}

.hsv2-story-strip p {
  margin: 24px 0 0;
  color: var(--hsv2-ink-2);
  font-size: 15px;
  line-height: 1.7;
}

.hsv2-contact-grid,
.hsv2-report-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .66fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.hsv2-mini-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-bg);
}

.hsv2-mini-card span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: var(--hsv2-brand-soft);
  color: var(--hsv2-brand-dark);
  font-weight: 800;
}

.hsv2-mini-card p {
  margin: 0;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.55;
}

.hsv2-form-preview {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-surface);
  box-shadow: var(--hsv2-shadow-soft);
}

.hsv2-form-preview label {
  display: grid;
  gap: 7px;
  color: var(--hsv2-ink);
  font-size: 13px;
  font-weight: 800;
}

.hsv2-form-preview input,
.hsv2-form-preview textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--hsv2-line);
  border-radius: 10px;
  background: var(--hsv2-bg);
  color: var(--hsv2-ink);
  font: inherit;
}

.hsv2-form-preview textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.hsv2-form-preview p {
  margin: 0;
  color: var(--hsv2-muted);
  font-size: 12px;
  line-height: 1.5;
}

.hsv2-auth-wrap {
  max-width: 440px;
  margin-inline: auto;
  display: grid;
  gap: 22px;
}

.hsv2-auth-intro {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.hsv2-auth-intro h1 {
  margin: 0;
  line-height: 1.05;
}

body.hsv2-body main .hsv2-auth-intro h1 {
  font-size: clamp(32px, 4vw, 40px);
}

.hsv2-auth-intro p {
  margin: 0;
  color: var(--hsv2-ink-2);
  font-size: 15px;
}

.hsv2-auth-password {
  position: relative;
  display: block;
}

.hsv2-auth-form .hsv2-auth-password input {
  padding-right: 48px;
}

.hsv2-auth-password button {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--hsv2-muted);
  cursor: pointer;
  transition: color .15s ease, background .15s ease;
}

.hsv2-auth-password button:hover,
.hsv2-auth-password button.is-on {
  color: var(--hsv2-brand-dark);
  background: var(--hsv2-brand-soft);
}

.hsv2-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hsv2-auth-form .hsv2-auth-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  font-weight: 650;
  color: var(--hsv2-ink);
  cursor: pointer;
}

.hsv2-auth-form .hsv2-auth-check input {
  width: 16px;
  height: 16px;
  min-height: 0;
  padding: 0;
  accent-color: var(--hsv2-brand);
}

.hsv2-auth-row > a {
  color: var(--hsv2-brand-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.hsv2-auth-row > a:hover {
  text-decoration: underline;
}

.hsv2-auth-form .hsv2-button-primary {
  width: 100%;
  margin-top: 4px;
  justify-content: center;
}

.hsv2-auth-help {
  margin: 0;
  text-align: center;
  color: var(--hsv2-muted);
  font-size: 13px;
}

.hsv2-auth-help a {
  color: var(--hsv2-brand-dark);
  font-weight: 700;
}

.hsv2-form-error {
  margin: -4px 0 0;
  color: var(--hsv2-klei);
  font-size: 12px;
  font-weight: 650;
}

.hsv2-auth-form input.is-invalid {
  border-color: var(--hsv2-klei);
}

.hsv2-auth-resend {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 20px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-surface);
  text-align: center;
}

.hsv2-auth-resend p {
  margin: 0;
  color: var(--hsv2-ink-2);
  font-size: 13px;
}

.hsv2-privacy-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.hsv2-privacy-matrix article {
  padding: 26px;
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-brand-soft);
}

.hsv2-privacy-matrix article.is-muted {
  border: 1px solid var(--hsv2-line);
  background: var(--hsv2-surface);
}

.hsv2-privacy-matrix h3 {
  margin: 0 0 16px;
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 26px;
  font-weight: 500;
}

.hsv2-privacy-matrix ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.55;
}

.hsv2-privacy-matrix li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}

.hsv2-privacy-matrix li::before {
  content: "+";
  color: var(--hsv2-brand-dark);
  font-weight: 800;
}

.hsv2-privacy-matrix .is-muted li::before {
  content: "x";
  color: var(--hsv2-klei);
}

.hsv2-quote-card {
  margin: 30px 0 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-dark);
  color: #f4efe6;
  font-family: var(--hsv2-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.15;
}

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

.hsv2-objection-grid article {
  padding: 24px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius);
  background: var(--hsv2-surface);
}

.hsv2-objection-grid h3 {
  margin: 0;
  color: var(--hsv2-ink);
  font-size: 17px;
  line-height: 1.3;
}

.hsv2-objection-grid p {
  margin: 14px 0 0;
  color: var(--hsv2-ink-2);
  font-size: 14px;
  line-height: 1.6;
}

.hsv2-objection-grid div {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.hsv2-objection-grid span {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--hsv2-bg);
  color: var(--hsv2-muted);
  font-size: 12px;
  line-height: 1.45;
}

.hsv2-report-mock {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: var(--hsv2-surface);
  box-shadow: var(--hsv2-shadow);
}

.hsv2-report-mock header {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hsv2-line);
}

.hsv2-report-mock header span {
  color: var(--hsv2-amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hsv2-report-mock header strong {
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 26px;
  font-weight: 500;
}

.hsv2-report-mock div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: var(--hsv2-bg);
}

.hsv2-report-mock b {
  color: var(--hsv2-brand-dark);
  font-family: var(--hsv2-serif);
  font-size: 32px;
  font-weight: 500;
}

.hsv2-report-mock span {
  color: var(--hsv2-ink-2);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hsv2-page-hero-grid,
  .hsv2-v2-grid,
  .hsv2-v2-grid.is-two,
  .hsv2-method-split,
  .hsv2-solution-board,
  .hsv2-decision-map,
  .hsv2-boundary-flow,
  .hsv2-checkin-board,
  .hsv2-index-board,
  .hsv2-index-limits ul,
  .hsv2-validation-board,
  .hsv2-role-board,
  .hsv2-offer-ladder article,
  .hsv2-faq-router,
  .hsv2-operating-model,
  .hsv2-operating-steps,
  .hsv2-pilot-fit-board,
  .hsv2-data-flow,
  .hsv2-maturity-board,
  .hsv2-report-boundary,
  .hsv2-legal-layout,
  .hsv2-story-strip,
  .hsv2-contact-grid,
  .hsv2-report-preview-grid,
  .hsv2-privacy-matrix,
  .hsv2-objection-grid {
    grid-template-columns: 1fr;
  }

  .hsv2-page-rail {
    max-width: 520px;
  }

  .hsv2-data-flow article i {
    display: none;
  }

  .hsv2-boundary-flow article:not(:last-child)::after {
    display: none;
  }

  .hsv2-offer-ladder article > div {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .hsv2-offer-ladder p {
    grid-column: 2;
  }

  .hsv2-privacy-stack article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .hsv2-privacy-stack b {
    grid-column: 2;
    justify-self: start;
  }

  .hsv2-legal-summary {
    position: static;
  }
}

body.hsv2-body {
  min-height: 100vh;
  background: var(--hsv2-bg);
  color: var(--hsv2-ink);
  font-family: var(--hsv2-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html,
body.hsv2-body {
  overflow-x: hidden;
}

body.hsv2-body main :where(h1, h2),
body.hsv2-body .hsv2-prefooter h2 {
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

body.hsv2-body main :where(h1) {
  font-size: clamp(42px, 5.1vw, 66px);
}

body.hsv2-body main :where(h2),
body.hsv2-body .hsv2-prefooter h2 {
  font-size: clamp(28px, 3.25vw, 44px);
}

body.hsv2-body main .hsv2-legal-summary h2 {
  font-size: clamp(24px, 2.5vw, 32px);
}

body.hsv2-body main :where(h3, h4, h5, h6) {
  color: var(--hsv2-ink);
  font-family: var(--hsv2-sans);
  letter-spacing: 0;
}

body.hsv2-body main :where(p, li, span, small, label) {
  font-family: var(--hsv2-sans);
  letter-spacing: 0;
}

body.hsv2-body main :where(h1, h2) em {
  color: var(--hsv2-brand);
  font-style: normal;
}

body.hsv2-body main :where(.hsv2-section-dark, .hsv2-page-section.is-dark) :where(h1, h2, h3) {
  color: #f4efe6;
}

body.hsv2-body main :where(.hsv2-section-dark, .hsv2-page-section.is-dark) :where(h1, h2) em {
  color: #b8dfca;
}

body.hsv2-body .hsv2-section-dark .hsv2-section-head p,
body.hsv2-body .hsv2-page-section.is-dark .hsv2-section-head p {
  color: rgba(244, 239, 230, .76);
}

body.hsv2-body .hsv2-card-icon,
body.hsv2-body .hsv2-flow-icon,
body.hsv2-body .hsv2-stat-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
}

body.hsv2-body .hsv2-card-icon svg,
body.hsv2-body .hsv2-flow-icon svg,
body.hsv2-body .hsv2-stat-icon svg {
  display: block;
  margin: 0;
}

body.hsv2-body .hsv2-spectrum-cards {
  gap: 16px;
}

body.hsv2-body .hsv2-spectrum-card {
  display: grid;
  min-height: 156px;
  align-content: center;
  justify-items: center;
  padding: 28px 22px;
  border-color: rgba(244, 239, 230, .18);
  background: rgba(255, 255, 255, .07);
  text-align: center;
}

body.hsv2-body .hsv2-spectrum-card strong {
  display: block;
  max-width: 11ch;
  color: #f4efe6;
  font-family: var(--hsv2-serif);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.06;
}

body.hsv2-body .hsv2-spectrum-card span {
  display: block;
  max-width: 21ch;
  margin-top: 12px;
  color: rgba(244, 239, 230, .68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.hsv2-body .hsv2-spectrum-card.is-active {
  border-color: #b8dfca;
  background: #f4efe6;
  box-shadow: 0 20px 42px -18px rgba(0, 0, 0, .55);
}

body.hsv2-body .hsv2-spectrum-card.is-active strong {
  color: var(--hsv2-dark);
}

body.hsv2-body .hsv2-spectrum-card.is-active span {
  color: var(--hsv2-brand-dark);
}

body.hsv2-body .hs-cookie-panel {
  overflow: hidden;
  border: 1px solid var(--hsv2-line);
  border-radius: var(--hsv2-radius-lg);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--hsv2-shadow);
  backdrop-filter: blur(12px);
}

body.hsv2-body .hs-cookie-panel h2 {
  margin: 0;
  color: var(--hsv2-ink);
  font-family: var(--hsv2-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

body.hsv2-body .hs-cookie-panel p,
body.hsv2-body .hs-cookie-panel span {
  color: var(--hsv2-ink-2);
}

body.hsv2-body .hs-cookie-link {
  color: var(--hsv2-brand-dark);
}

body.hsv2-body .hs-cookie-icon,
body.hsv2-body .hs-cookie-settings {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(31, 138, 91, .22);
  border-radius: 10px;
  background: var(--hsv2-brand);
  color: #fff;
  box-shadow: var(--hsv2-shadow-soft);
}

body.hsv2-body .hs-cookie-icon svg,
body.hsv2-body .hs-cookie-settings svg {
  color: currentColor;
}

body.hsv2-body .hs-cookie-option {
  border: 1px solid var(--hsv2-line);
  border-radius: 12px;
  background: var(--hsv2-bg);
}

body.hsv2-body .hs-cookie-toggle {
  position: relative;
  width: 48px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 36, 28, .18);
  cursor: pointer;
}

body.hsv2-body .hs-cookie-toggle.is-on {
  background: var(--hsv2-brand);
}

body.hsv2-body .hs-cookie-toggle-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(20, 36, 28, .2);
  transition: transform .18s ease;
}

body.hsv2-body .hs-cookie-toggle.is-on .hs-cookie-toggle-knob {
  transform: translateX(20px);
}

@media (max-width: 720px) {
  body.hsv2-body main :where(h1) {
    font-size: clamp(38px, 10.8vw, 46px);
  }

  body.hsv2-body main :where(h2),
  body.hsv2-body .hsv2-prefooter h2 {
    font-size: clamp(28px, 8.4vw, 38px);
  }
}

body.hsv2-body .hsv2-prefooter,
body.hsv2-body main .hsv2-quote-card,
body.hsv2-body main .hsv2-board-note,
body.hsv2-body main .hsv2-legal-summary,
body.hsv2-body main .hsv2-operating-model > div:first-child {
  color: #f4efe6;
}

body.hsv2-body .hsv2-prefooter h2,
body.hsv2-body main .hsv2-quote-card h2,
body.hsv2-body main .hsv2-quote-card h3,
body.hsv2-body main .hsv2-board-note h3,
body.hsv2-body main .hsv2-legal-summary h2,
body.hsv2-body main .hsv2-legal-proof strong {
  color: #f4efe6;
  font-family: var(--hsv2-serif);
  font-weight: 500;
  letter-spacing: 0;
}

body.hsv2-body .hsv2-prefooter p,
body.hsv2-body main .hsv2-quote-card p,
body.hsv2-body main .hsv2-quote-card blockquote,
body.hsv2-body main .hsv2-board-note p,
body.hsv2-body main .hsv2-legal-summary p,
body.hsv2-body main .hsv2-legal-proof p,
body.hsv2-body main .hsv2-operating-model > div:first-child p {
  color: #f4efe6;
}

body.hsv2-body main .hsv2-operating-model > div:first-child h2 {
  color: #f4efe6;
  font-family: var(--hsv2-serif);
}

body.hsv2-body main .hsv2-legal-summary p,
body.hsv2-body main .hsv2-legal-proof p {
  color: rgba(244, 239, 230, .76);
}

body.hsv2-body main .hsv2-legal-proof article {
  border-color: rgba(244, 239, 230, .16);
  background: rgba(255, 255, 255, .06);
}

body.hsv2-body .hsv2-prefooter p,
body.hsv2-body main .hsv2-quote-card p,
body.hsv2-body main .hsv2-board-note p,
body.hsv2-body main .hsv2-operating-model > div:first-child p {
  color: rgba(244, 239, 230, .78);
  font-family: var(--hsv2-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.62;
}

body.hsv2-body .hsv2-prefooter .hsv2-pill,
body.hsv2-body main .hsv2-quote-card .hsv2-pill {
  border-color: rgba(184, 223, 202, .3);
  background: rgba(184, 223, 202, .12);
  color: #b8dfca;
}

body.hsv2-body .hsv2-pill {
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(31, 138, 91, .18);
  background: rgba(31, 138, 91, .08);
  color: var(--hsv2-brand-dark);
  font-family: var(--hsv2-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

body.hsv2-body main :where(.hsv2-section-dark, .hsv2-page-section.is-dark, .hsv2-quote-card, .hsv2-board-note, .hsv2-legal-summary) .hsv2-pill,
body.hsv2-body .hsv2-prefooter .hsv2-pill {
  border-color: rgba(184, 223, 202, .28);
  background: rgba(184, 223, 202, .11);
  color: #b8dfca;
}

body.hsv2-body .hsv2-prefooter .hsv2-button-primary,
body.hsv2-body main .hsv2-quote-card .hsv2-button-primary {
  border-color: #fff;
  background: #fff;
  color: var(--hsv2-brand-dark);
}

body.hsv2-body .hsv2-prefooter .hsv2-button:not(.hsv2-button-primary),
body.hsv2-body main .hsv2-quote-card .hsv2-button:not(.hsv2-button-primary) {
  border-color: rgba(244, 239, 230, .44);
  background: transparent;
  color: #f4efe6;
}

body.hsv2-body .hsv2-prefooter .hsv2-button,
body.hsv2-body main .hsv2-quote-card .hsv2-button {
  font-family: var(--hsv2-sans);
  font-size: 16px;
}

body.hsv2-body main :where(
  .hsv2-v2-card,
  .hsv2-problem-card,
  .hsv2-list-card,
  .hsv2-score-card,
  .hsv2-domain-row,
  .hsv2-board-note,
  .hsv2-decision-map,
  .hsv2-boundary-flow,
  .hsv2-checkin-board,
  .hsv2-offer-ladder,
  .hsv2-index-board,
  .hsv2-index-signals,
  .hsv2-index-limits,
  .hsv2-validation-board,
  .hsv2-role-board,
  .hsv2-faq-router,
  .hsv2-operating-steps,
  .hsv2-pilot-fit-board,
  .hsv2-data-flow,
  .hsv2-maturity-board,
  .hsv2-report-boundary,
  .hsv2-method-step,
  .hsv2-method-outcome,
  .hsv2-privacy-matrix,
  .hsv2-objection-grid,
  .hsv2-report-mock,
  .hsv2-legal-sections
) :where(h3, strong, b) {
  font-family: var(--hsv2-serif);
  font-weight: 500;
  letter-spacing: 0;
}

body.hsv2-body main :where(.hsv2-page-section.is-dark, .hsv2-section-dark) .hsv2-v2-card {
  border-color: rgba(244, 239, 230, .14);
  background: rgba(255, 255, 255, .065);
}

body.hsv2-body main :where(.hsv2-page-section.is-dark, .hsv2-section-dark) .hsv2-v2-card h3,
body.hsv2-body main :where(.hsv2-page-section.is-dark, .hsv2-section-dark) .hsv2-v2-card p,
body.hsv2-body main :where(.hsv2-page-section.is-dark, .hsv2-section-dark) .hsv2-v2-card li,
body.hsv2-body main :where(.hsv2-page-section.is-dark, .hsv2-section-dark) .hsv2-v2-card ul {
  color: #f4efe6;
}

body.hsv2-body main :where(.hsv2-page-section.is-dark, .hsv2-section-dark) .hsv2-v2-card p,
body.hsv2-body main :where(.hsv2-page-section.is-dark, .hsv2-section-dark) .hsv2-v2-card li,
body.hsv2-body main :where(.hsv2-page-section.is-dark, .hsv2-section-dark) .hsv2-v2-card ul {
  color: rgba(244, 239, 230, .76);
}

body.hsv2-body main .hsv2-checkin-board h3,
body.hsv2-body main .hsv2-checkin-board h2,
body.hsv2-body main .hsv2-offer-ladder h3,
body.hsv2-body main .hsv2-maturity-board span,
body.hsv2-body main .hsv2-boundary-flow strong {
  font-family: var(--hsv2-serif);
  font-weight: 500;
  letter-spacing: 0;
}

body.hsv2-body main .hsv2-checkin-boundary h3 {
  color: #f4efe6;
}

body.hsv2-body main .hsv2-checkin-boundary li {
  color: rgba(244, 239, 230, .78);
}

body.hsv2-body main .hsv2-index-core h3 {
  color: #f4efe6;
}

body.hsv2-body main .hsv2-index-core li {
  color: rgba(244, 239, 230, .78);
}
