.vhd-frontpage .site-content,
.vhd-frontpage .entry-content,
.vhd-home .entry-content {
  margin-top: 0;
}

.vhd-trust-strip {
  background: var(--vhd-dark-3);
  color: var(--vhd-white);
  padding: 12px 0;
}

.vhd-trust-strip .vhd-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}

.vhd-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.vhd-trust-strip span::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--vhd-yellow);
  border-radius: 50%;
}

.vhd-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  background:
    linear-gradient(90deg, rgba(7, 28, 36, 0.96), rgba(7, 28, 36, 0.9)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
  color: var(--vhd-white);
}

.vhd-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 10px;
  background: var(--vhd-yellow);
}

.vhd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  gap: 38px;
  align-items: start;
}

.vhd-hero-copy {
  display: grid;
  gap: 20px;
}

.vhd-hero-copy .vhd-lead {
  color: #eaf0f3;
}

.vhd-search-shell {
  display: grid;
  gap: 10px;
  max-width: 850px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--vhd-radius-lg);
  background: rgba(255, 255, 255, 0.08);
}

.vhd-search-shell-label {
  color: #dce5e9;
  font-size: 13px;
  font-weight: 800;
}

.vhd-hero .vhd-searchbar::before,
.vhd-search-shell .vhd-searchbar::before {
  background: var(--vhd-dark);
  color: #dce5e9;
}

.vhd-hero-visual {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--vhd-radius-lg);
  background: rgba(11, 33, 40, 0.86);
  box-shadow: var(--vhd-shadow);
}

.vhd-visual-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--vhd-white);
}

.vhd-visual-header strong {
  color: var(--vhd-white);
  font-size: 19px;
}

.vhd-visual-header span {
  color: var(--vhd-yellow);
  font-weight: 900;
}

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

.vhd-visual-tile {
  min-height: 124px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--vhd-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    var(--vhd-steel);
}

.vhd-visual-tile b {
  display: block;
  margin-bottom: 8px;
  color: var(--vhd-white);
  font-size: 18px;
}

.vhd-visual-tile span {
  color: #dce5e9;
  font-size: 13px;
  line-height: 1.4;
}

.vhd-quicklinks {
  display: grid;
  gap: 10px;
}

.vhd-quicklinks a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border-left: 5px solid var(--vhd-yellow);
  border-radius: var(--vhd-radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--vhd-white);
  font-weight: 900;
}

.vhd-quicklinks a::after {
  content: ">";
  color: var(--vhd-yellow);
}

.vhd-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.vhd-metric {
  padding: 14px;
  border-radius: var(--vhd-radius);
  background: var(--vhd-white);
  color: var(--vhd-dark);
}

.vhd-metric strong {
  display: block;
  margin-bottom: 5px;
  color: var(--vhd-dark);
  font-size: 18px;
  line-height: 1.1;
}

.vhd-metric span {
  color: var(--vhd-muted);
  font-size: 12px;
  font-weight: 800;
}

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

.vhd-category-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--vhd-border);
  border-radius: var(--vhd-radius-lg);
  background: var(--vhd-white);
  box-shadow: var(--vhd-shadow-sm);
}

.vhd-category-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 8px;
  background: var(--vhd-yellow);
}

.vhd-category-card .vhd-badge {
  width: fit-content;
}

.vhd-category-card h3 {
  font-size: 27px;
}

.vhd-category-card p {
  color: var(--vhd-muted);
  font-size: 15px;
  line-height: 1.5;
}

.vhd-category-card a {
  align-self: end;
  color: var(--vhd-dark);
  font-weight: 900;
}

.vhd-category-card a::after {
  content: " >";
  color: var(--vhd-muted);
}

.vhd-feature {
  display: grid;
  gap: 9px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--vhd-border);
  border-radius: var(--vhd-radius-lg);
  background: var(--vhd-white);
}

.vhd-feature h3 {
  font-size: 21px;
}

.vhd-feature p {
  color: var(--vhd-muted);
  font-size: 15px;
  line-height: 1.5;
}

.vhd-feature-dark {
  background: var(--vhd-dark-2);
  border-color: rgba(255, 255, 255, 0.12);
}

.vhd-feature-dark h3,
.vhd-feature-dark p {
  color: var(--vhd-white);
}

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

.vhd-step {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--vhd-border);
  border-radius: var(--vhd-radius-lg);
  background: var(--vhd-white);
}

.vhd-step .vhd-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--vhd-radius-sm);
  background: var(--vhd-yellow);
  color: #091820;
  font-weight: 900;
}

.vhd-step strong {
  color: var(--vhd-dark);
  font-size: 18px;
}

.vhd-step p {
  color: var(--vhd-muted);
  font-size: 15px;
  line-height: 1.5;
}

.vhd-founder-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--vhd-border);
  border-radius: var(--vhd-radius-lg);
  background: var(--vhd-white);
  box-shadow: var(--vhd-shadow-sm);
}

.vhd-founder-mark {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(7, 28, 36, 0.18), rgba(7, 28, 36, 0.9)),
    repeating-linear-gradient(135deg, #253640 0 2px, #1a2c35 2px 18px);
  color: var(--vhd-white);
}

.vhd-founder-mark strong {
  display: block;
  color: var(--vhd-white);
  font-size: 28px;
  line-height: 1.1;
}

.vhd-founder-content {
  display: grid;
  gap: 16px;
  padding: 32px;
}

.vhd-founder-content p {
  color: var(--vhd-muted);
  font-size: 16px;
  line-height: 1.55;
}

.vhd-quote {
  padding: 18px;
  border-left: 5px solid var(--vhd-yellow);
  background: var(--vhd-light);
  color: var(--vhd-dark);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
}

.vhd-newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: var(--vhd-radius-lg);
  background: var(--vhd-dark-2);
  color: var(--vhd-white);
}

.vhd-newsletter-band h2,
.vhd-newsletter-band p {
  color: var(--vhd-white);
}

.vhd-newsletter-band .vhd-shortcode-panel {
  box-shadow: none;
}

.vhd-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}
