/* ── RESET ── */
.hmv-proto *, .hmv-proto *::before, .hmv-proto *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

/* ── DESIGN TOKENS ── */
.hmv-proto {
  --c-dark:       #091916;
  --c-green:      #1A3735;
  --c-green-mid:  #415957;
  --c-gold:       #926D1F;
  --c-gold-b:     #b49b65;
  --c-gold-pale:  #dacdb3;
  --c-gold-cream: #f6f3ec;
  --c-cream:      #fdf8f2;
  --c-white:      #ffffff;
  --c-text:       #3d4a48;
  --c-divider:    rgba(26,55,53,.08);
  --c-divider-gold: rgba(180,155,101,.18);
  --ff-serif:     'Cormorant Garamond', Georgia, serif;
  --ff-sans:      'Jost', system-ui, sans-serif;
  --fw-light:     300;
  --fw-reg:       400;
  --fw-med:       500;
  --fw-semi:      600;
  /* fluid spacing */
  --sp-xs: clamp(8px, 1.5vw, 12px);
  --sp-sm: clamp(12px, 2vw, 20px);
  --sp-md: clamp(20px, 3vw, 36px);
  --sp-lg: clamp(40px, 5.5vw, 72px);
  --sp-xl: clamp(48px, 7vw, 80px);
  font-family: var(--ff-sans);
  color: var(--c-text);
  overflow-x: hidden;
  background: var(--c-white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.hmv-proto .wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* ── FADE-IN ── */
.hmv-proto .fi { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.hmv-proto .fi.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hmv-proto .fi { opacity: 1; transform: none; transition: none; }
}

/* ── SHARED TYPOGRAPHY ── */
.hmv-proto .eyebrow {
  font-family: var(--ff-sans); font-size: 9px; font-weight: var(--fw-semi);
  letter-spacing: .3em; text-transform: uppercase; color: #7a5c18;
  margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.hmv-proto .eyebrow::before {
  content: ''; width: 16px; height: 2px; background: var(--c-gold-b); flex-shrink: 0;
}
.hmv-proto .sec-title {
  font-family: var(--ff-serif); font-size: clamp(28px, 3.8vw, 46px);
  font-weight: var(--fw-light); line-height: 1.08; color: var(--c-green); margin-bottom: 12px;
}
.hmv-proto .sec-title em { font-style: italic; color: var(--c-gold); }
.hmv-proto .sec-sub {
  font-size: clamp(13px, 1.2vw, 15px); font-weight: var(--fw-light);
  line-height: 1.85; color: var(--c-text); max-width: 600px;
}

/* ── BUTTONS ── */
.hmv-proto .btn-p, .hmv-proto .btn-g, .hmv-proto .btn-reg {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-sans); font-size: 10px; font-weight: var(--fw-semi);
  letter-spacing: .2em; text-transform: uppercase; text-decoration: none;
  white-space: nowrap; cursor: pointer; border: none;
  /* touch target */
  min-height: 48px;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.hmv-proto .btn-p { padding: 15px 28px; background: var(--c-gold-b); color: #091916; }
.hmv-proto .btn-p:hover { background: var(--c-gold); color: var(--c-gold-cream); transform: translateY(-2px); }
.hmv-proto .btn-p:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }
.hmv-proto .btn-g {
  padding: 15px 24px; background: transparent; color: var(--c-gold-pale);
  border: 1px solid rgba(180,155,101,.3);
}
.hmv-proto .btn-g:hover { border-color: var(--c-gold-b); color: var(--c-gold-b); }
.hmv-proto .btn-g:focus-visible { outline: 2px solid var(--c-gold-b); outline-offset: 3px; }
.hmv-proto .btn-reg {
  width: 100%; padding: 15px 20px; background: var(--c-gold-b); color: #091916;
  border-radius: 4px;
}
.hmv-proto .btn-reg:hover { background: var(--c-gold); color: var(--c-gold-cream); }
.hmv-proto .btn-ghost-sm {
  font-family: var(--ff-sans); font-size: 10px; font-weight: var(--fw-light);
  letter-spacing: .14em; text-transform: uppercase; color: var(--c-gold-pale);
  opacity: .55; text-decoration: none; padding: 4px 0;
  border-bottom: 1px solid rgba(180,155,101,.25); transition: opacity .2s;
  min-height: 44px; display: inline-flex; align-items: center;
}
.hmv-proto .btn-ghost-sm:hover { opacity: .9; }

/* ── BACK LINK ── */
.hmv-proto .back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-sans); font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-gold-b); opacity: .6; text-decoration: none; margin-bottom: 22px;
  transition: opacity .2s; min-height: 44px;
}
.hmv-proto .back-link:hover { opacity: 1; }
.hmv-proto .back-link svg { width: 10px; height: 10px; stroke: var(--c-gold-b); fill: none; stroke-width: 2; stroke-linecap: round; }

/* ── HERO ── */
.hmv-proto .hero { background: var(--c-dark); position: relative; overflow: hidden; }
.hmv-proto .hero-inner { display: grid; grid-template-columns: 1fr; position: relative; }
@media (min-width: 800px) {
  .hmv-proto .hero-inner { grid-template-columns: 55% 45%; min-height: clamp(420px, 48vw, 580px); }
}
.hmv-proto .hero-content {
  padding: var(--sp-lg) var(--sp-md);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2; order: 1;
}
@media (min-width: 800px) {
  .hmv-proto .hero-content { padding: clamp(44px,5vw,60px) clamp(36px,5vw,60px); }
}
.hmv-proto .hero-eyebrow {
  font-family: var(--ff-sans); font-size: 9px; letter-spacing: .36em; text-transform: uppercase;
  color: var(--c-gold-b); opacity: .65; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.hmv-proto .hero-eyebrow-line { width: 20px; height: 1px; background: var(--c-gold-b); opacity: .35; flex-shrink: 0; }
.hmv-proto .hero h1 {
  font-family: var(--ff-serif); font-size: clamp(32px, 4.5vw, 58px);
  font-weight: var(--fw-light); line-height: 1.05;
  color: var(--c-gold-cream); margin-bottom: 18px; letter-spacing: -.01em;
}
.hmv-proto .hero h1 em { font-style: italic; color: var(--c-gold-b); }
.hmv-proto .hero-tagline {
  font-size: clamp(13px, 1.1vw, 15px); font-weight: var(--fw-light);
  line-height: 1.9; color: rgba(218,205,179,.72); margin-bottom: 28px; max-width: 460px;
}
.hmv-proto .hero-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 32px; }
.hmv-proto .hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-sans); font-size: 9px; font-weight: var(--fw-med);
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-gold-pale); opacity: .7;
  background: rgba(180,155,101,.08); border: 1px solid rgba(180,155,101,.2); padding: 6px 12px;
}
.hmv-proto .hero-badge svg { width: 9px; height: 9px; stroke: var(--c-gold-b); fill: none; stroke-width: 2.5; stroke-linecap: round; flex-shrink: 0; }
.hmv-proto .hero-cta-row { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
@media (min-width: 400px) { .hmv-proto .hero-cta-row { flex-direction: row; align-items: center; flex-wrap: wrap; } }

.hmv-proto .hero-img {
  position: relative; overflow: hidden; min-height: 300px; order: 2;
}
@media (min-width: 800px) {
  .hmv-proto .hero-img { position: absolute; top: 0; right: 0; bottom: 0; width: 45%; min-height: unset; order: unset; }
}
.hmv-proto .hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hmv-proto .hero-fade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, rgba(9,25,22,.88) 0%, rgba(9,25,22,.15) 65%, transparent 100%);
}
@media (max-width: 799px) {
  .hmv-proto .hero-fade { background: linear-gradient(to top, rgba(9,25,22,.96) 0%, transparent 55%); }
}

/* ── MARQUEE ── */
.hmv-proto .marquee-band { background: var(--c-gold-b); overflow: hidden; }
.hmv-proto .marquee-inner {
  display: flex; white-space: nowrap;
  animation: hmvl-scroll 28s linear infinite; padding: 11px 0;
}
@media (prefers-reduced-motion: reduce) { .hmv-proto .marquee-inner { animation: none; } }
@keyframes hmvl-scroll { to { transform: translateX(-50%); } }
.hmv-proto .marquee-inner span {
  font-family: var(--ff-sans); font-size: 9px; font-weight: var(--fw-semi);
  letter-spacing: .22em; text-transform: uppercase; color: #091916; padding: 0 16px; flex-shrink: 0;
}
.hmv-proto .marquee-inner .dot { color: rgba(9,25,22,.3); padding: 0 2px; font-size: 6px; }

/* ── STAT BAR ── */
.hmv-proto .stat-bar { background: var(--c-white); padding: var(--sp-lg) 0; border-bottom: 1px solid var(--c-divider); }
.hmv-proto .stat-bar-inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 900px) { .hmv-proto .stat-bar-inner { grid-template-columns: repeat(4, 1fr); } }
.hmv-proto .stat-tile {
  background: var(--c-white); border: 1px solid var(--c-divider);
  border-top: 3px solid var(--c-gold-b); border-radius: 0 0 8px 8px;
  padding: clamp(16px,3vw,24px) 18px; text-align: center;
}
.hmv-proto .stat-num {
  font-family: var(--ff-serif); font-size: clamp(32px,4vw,40px);
  font-weight: var(--fw-light); color: var(--c-gold); line-height: 1; margin-bottom: 8px;
}
.hmv-proto .stat-num sup { font-size: .42em; }
.hmv-proto .stat-lbl {
  font-family: var(--ff-sans); font-size: 9px; font-weight: var(--fw-med);
  letter-spacing: .12em; text-transform: uppercase; color: var(--c-green-mid); line-height: 1.6;
}

/* ── WHO SECTION ── */
.hmv-proto .who-section { background: var(--c-cream); padding: var(--sp-xl) 0; border-bottom: 1px solid var(--c-divider-gold); }
.hmv-proto .who-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 36px; }
@media (min-width: 640px) { .hmv-proto .who-grid { grid-template-columns: repeat(2, 1fr); } }
.hmv-proto .who-item {
  background: var(--c-white); padding: clamp(16px,2.5vw,22px);
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px solid var(--c-divider-gold); border-left: 3px solid var(--c-gold-b);
  border-radius: 0 6px 6px 0;
}
.hmv-proto .who-dot { width: 7px; min-width: 7px; height: 7px; border-radius: 50%; background: var(--c-gold-b); flex-shrink: 0; margin-top: 6px; }
.hmv-proto .who-text { font-size: 14px; font-weight: var(--fw-light); line-height: 1.75; color: var(--c-text); }
.hmv-proto .who-text strong { color: var(--c-green); font-weight: var(--fw-med); display: block; margin-bottom: 2px; }

/* ── BENEFITS ── */
.hmv-proto .benefits-section { background: var(--c-cream); padding: var(--sp-xl) 0; border-bottom: 1px solid var(--c-divider-gold); }
.hmv-proto .benefits-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 36px; }
@media (min-width: 440px) { .hmv-proto .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px) { .hmv-proto .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.hmv-proto .benefit-item { background: var(--c-white); padding: clamp(18px,3vw,26px) clamp(16px,2.5vw,22px); border: 1px solid var(--c-divider); border-radius: 8px; }
.hmv-proto .benefit-icon { width: 38px; height: 38px; background: #e6f4ed; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.hmv-proto .benefit-icon svg { width: 16px; height: 16px; stroke: var(--c-green); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.hmv-proto .benefit-title { font-family: var(--ff-serif); font-size: 18px; font-weight: var(--fw-reg); color: var(--c-green); margin-bottom: 8px; line-height: 1.2; }
.hmv-proto .benefit-desc { font-size: 12.5px; font-weight: var(--fw-light); line-height: 1.8; color: var(--c-text); }

/* ── INCLUDED ── */
.hmv-proto .included-section { background: var(--c-white); padding: var(--sp-xl) 0; border-bottom: 1px solid var(--c-divider); }
.hmv-proto .included-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
@media (min-width: 540px) { .hmv-proto .included-grid { grid-template-columns: repeat(2, 1fr); } }
.hmv-proto .included-item {
  background: var(--c-cream); padding: clamp(18px,3vw,26px) clamp(16px,2.5vw,24px);
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--c-divider-gold); border-radius: 8px;
}
.hmv-proto .included-icon { width: 40px; min-width: 40px; height: 40px; background: var(--c-white); border: 1px solid rgba(180,155,101,.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.hmv-proto .included-icon svg { width: 16px; height: 16px; stroke: var(--c-green); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.hmv-proto .included-title { font-family: var(--ff-serif); font-size: 19px; font-weight: var(--fw-reg); color: var(--c-green); margin-bottom: 6px; line-height: 1.2; }
.hmv-proto .included-desc { font-size: 13px; font-weight: var(--fw-light); color: var(--c-text); line-height: 1.75; }

/* ── PRODUCTS ── */
.hmv-proto .prod-pair { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .hmv-proto .prod-pair { grid-template-columns: 1fr 1fr; } }

.hmv-proto .prod-card {
  background: var(--c-cream); border: 1px solid var(--c-divider-gold);
  border-top: 3px solid var(--c-gold-b); border-radius: 0 0 8px 8px;
  overflow: hidden; display: flex; flex-direction: column;
}
.hmv-proto .prod-card.phase2 { border-top-color: var(--c-green); }
.hmv-proto .prod-img {
  aspect-ratio: 16/9; overflow: hidden; background: #e8e4dc; position: relative;
}
.hmv-proto .prod-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.hmv-proto .prod-card:hover .prod-img img { transform: scale(1.04); }
.hmv-proto .prod-body { padding: clamp(16px,2.5vw,22px); flex: 1; display: flex; flex-direction: column; gap: 8px; }
.hmv-proto .prod-phase-label { font-family: var(--ff-sans); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--c-gold-b); }
.hmv-proto .prod-card.phase2 .prod-phase-label { color: var(--c-green); }
.hmv-proto .prod-name { font-family: var(--ff-serif); font-size: 20px; font-weight: var(--fw-reg); color: var(--c-green); line-height: 1.2; }
.hmv-proto .prod-desc { font-size: 13px; font-weight: var(--fw-light); line-height: 1.75; color: var(--c-green-mid); flex: 1; }
.hmv-proto .prod-dose {
  background: var(--c-white); border: 1px solid var(--c-divider); border-radius: 6px;
  padding: 12px 14px; display: flex; flex-direction: column; gap: 5px; margin-top: 4px;
}
.hmv-proto .prod-dose-label { font-family: var(--ff-sans); font-size: 9px; font-weight: var(--fw-semi); letter-spacing: .14em; text-transform: uppercase; color: var(--c-green-mid); }
.hmv-proto .prod-dose-val { font-size: 13px; font-weight: var(--fw-light); color: var(--c-green); }
.hmv-proto .prod-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-sans); font-size: 10px; font-weight: var(--fw-semi);
  letter-spacing: .2em; text-transform: uppercase;
  padding: 13px 20px; background: var(--c-gold-b); color: #091916; text-decoration: none;
  margin-top: 10px; min-height: 48px; transition: background .2s, transform .15s;
}
.hmv-proto .prod-cta:hover { background: var(--c-gold); color: var(--c-gold-cream); transform: translateY(-1px); }
.hmv-proto .prod-cta:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }

/* ── BUNDLE ── */
.hmv-proto .bundle-wrap { margin-top: 20px; }
.hmv-proto .bundle-box {
  background: var(--c-green); border: 1px solid rgba(180,155,101,.2);
  border-radius: 8px; padding: clamp(20px,3vw,28px);
  display: flex; flex-direction: column; gap: 20px;
}
@media (min-width: 700px) { .hmv-proto .bundle-box { flex-direction: row; align-items: center; gap: 40px; } }
.hmv-proto .bundle-content { flex: 1; }
.hmv-proto .bundle-label { font-family: var(--ff-sans); font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--c-gold-b); margin-bottom: 10px; }
.hmv-proto .bundle-title { font-family: var(--ff-serif); font-size: clamp(22px,2.5vw,26px); font-weight: var(--fw-light); color: var(--c-gold-cream); line-height: 1.15; margin-bottom: 12px; }
.hmv-proto .bundle-title em { color: var(--c-gold-b); font-style: italic; }
.hmv-proto .bundle-desc { font-size: 14px; font-weight: var(--fw-light); line-height: 1.8; color: rgba(218,205,179,.65); max-width: 520px; }
.hmv-proto .bundle-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.hmv-proto .bundle-pill { font-family: var(--ff-sans); font-size: 10px; font-weight: var(--fw-med); letter-spacing: .1em; text-transform: uppercase; color: var(--c-gold-b); background: rgba(180,155,101,.1); border: 1px solid rgba(180,155,101,.2); padding: 5px 12px; }
.hmv-proto .bundle-actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; min-width: 200px; }
.hmv-proto .bundle-cta { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--ff-sans); font-size: 10px; font-weight: var(--fw-semi); letter-spacing: .2em; text-transform: uppercase; padding: 15px 24px; background: var(--c-gold-b); color: #091916; text-decoration: none; transition: background .2s; min-height: 48px; }
.hmv-proto .bundle-cta:hover { background: var(--c-gold); color: var(--c-gold-cream); }
.hmv-proto .bundle-note { font-size: 10px; font-weight: var(--fw-light); color: rgba(218,205,179,.7); text-align: center; letter-spacing: .06em; }

/* ── REGISTER ── */
.hmv-proto .register-section { background: var(--c-white); padding: var(--sp-xl) 0; border-bottom: 1px solid var(--c-divider); }
.hmv-proto .register-inner { display: grid; grid-template-columns: 1fr; gap: clamp(28px,5vw,64px); }
@media (min-width: 800px) { .hmv-proto .register-inner { grid-template-columns: 1fr 360px; align-items: start; } }
.hmv-proto .register-title { font-family: var(--ff-serif); font-size: clamp(28px,3.5vw,44px); font-weight: var(--fw-light); line-height: 1.1; color: var(--c-green); margin-bottom: 16px; }
.hmv-proto .register-title em { font-style: italic; color: var(--c-gold); }
.hmv-proto .register-p { font-size: clamp(13px,1.1vw,14px); font-weight: var(--fw-light); line-height: 1.9; color: var(--c-text); margin-bottom: 16px; max-width: 520px; }
.hmv-proto .reg-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.hmv-proto .reg-step { display: flex; gap: 16px; align-items: flex-start; }
.hmv-proto .step-num { width: 28px; min-width: 28px; height: 28px; border: 1.5px solid var(--c-gold-b); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-serif); font-size: 15px; font-weight: var(--fw-reg); color: var(--c-gold); flex-shrink: 0; margin-top: 1px; }
.hmv-proto .step-text { font-size: 14px; font-weight: var(--fw-light); line-height: 1.7; color: var(--c-text); }
.hmv-proto .step-text strong { color: var(--c-green); font-weight: var(--fw-med); }
.hmv-proto .reg-card { background: var(--c-white); overflow: hidden; border: 1px solid var(--c-divider); border-radius: 10px; box-shadow: 0 4px 24px rgba(26,55,53,.08); }
.hmv-proto .reg-card-header { background: var(--c-green); padding: 24px 28px; border-bottom: 3px solid var(--c-gold-b); }
.hmv-proto .reg-card-eyebrow { font-family: var(--ff-sans); font-size: 10px; font-weight: var(--fw-semi); letter-spacing: .28em; text-transform: uppercase; color: var(--c-gold-b); margin-bottom: 8px; opacity: .8; }
.hmv-proto .reg-card-title { font-family: var(--ff-serif); font-size: 20px; font-weight: var(--fw-light); color: var(--c-gold-cream); line-height: 1.25; }
.hmv-proto .reg-card-body { padding: 24px 28px; background: #fffdf9; }
.hmv-proto .reg-card-label { font-family: var(--ff-sans); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 10px; opacity: .8; }
.hmv-proto .reg-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.hmv-proto .reg-list li { display: flex; gap: 10px; font-size: 13px; font-weight: var(--fw-light); color: var(--c-text); line-height: 1.6; align-items: flex-start; }
.hmv-proto .reg-list li::before { content: '✓'; color: var(--c-gold-b); font-size: 12px; flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.hmv-proto .reg-divider { border: none; border-top: 1px solid var(--c-divider); margin: 18px 0; }
.hmv-proto .reg-note { font-size: 10px; font-weight: var(--fw-light); color: var(--c-green-mid); text-align: center; margin-top: 10px; letter-spacing: .06em; }

/* ── TRIAL SECTION ── */
.hmv-proto .trial-section { background: var(--c-cream); padding: var(--sp-xl) 0; border-bottom: 1px solid var(--c-divider-gold); }
.hmv-proto .trial-inner { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }
@media (min-width: 800px) { .hmv-proto .trial-inner { grid-template-columns: 55% 1fr; gap: 52px; align-items: start; } }
.hmv-proto .trial-quote { background: var(--c-white); border: 1px solid rgba(180,155,101,.2); border-left: 4px solid var(--c-gold-b); border-radius: 0 8px 8px 0; padding: clamp(18px,3vw,28px) clamp(16px,3vw,30px); }
.hmv-proto .trial-quote p { font-family: var(--ff-serif); font-size: clamp(15px,1.6vw,18px); font-weight: var(--fw-light); font-style: italic; line-height: 1.85; color: var(--c-green); margin-bottom: 16px; }
.hmv-proto .trial-source { font-family: var(--ff-sans); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: #7a6a50; }
.hmv-proto .trial-source a { color: var(--c-gold); text-decoration: none; border-bottom: 1px solid rgba(146,109,31,.25); padding-bottom: 1px; }
.hmv-proto .trial-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hmv-proto .trial-stat { background: var(--c-white); padding: clamp(16px,2vw,22px) 16px; border-radius: 8px; border: 1px solid var(--c-divider); border-top: 3px solid var(--c-gold-b); text-align: center; }
.hmv-proto .trial-stat-num { font-family: var(--ff-serif); font-size: clamp(28px,3.5vw,34px); font-weight: var(--fw-light); color: var(--c-gold); line-height: 1; margin-bottom: 7px; }
.hmv-proto .trial-stat-num sup { font-size: .44em; }
.hmv-proto .trial-stat-lbl { font-family: var(--ff-sans); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--c-green-mid); line-height: 1.55; }

/* ── MONITORING ── */
.hmv-proto .monitoring-section { background: var(--c-white); padding: clamp(40px,5vw,56px) 0; border-bottom: 1px solid var(--c-divider); }
.hmv-proto .monitoring-box { background: var(--c-cream); border: 1px solid rgba(180,155,101,.2); border-left: 4px solid var(--c-gold-b); border-radius: 0 8px 8px 0; padding: clamp(18px,3vw,28px) clamp(18px,3vw,32px); margin-top: 24px; }
.hmv-proto .monitoring-label { font-family: var(--ff-sans); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 12px; font-weight: var(--fw-semi); }
.hmv-proto .monitoring-box p { font-size: 14px; font-weight: var(--fw-light); line-height: 1.9; color: var(--c-text); }

/* ── RELATED PROTOCOLS ── */
.hmv-proto .related-section { background: var(--c-white); padding: clamp(32px,5vw,48px) 0; border-top: 1px solid var(--c-divider); border-bottom: 1px solid var(--c-divider); }
.hmv-proto .related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 16px; }
.hmv-proto .related-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: clamp(14px,2vw,16px) 18px;
  background: #f7fcf9; border: 1px solid var(--c-divider); border-left: 3px solid var(--c-gold-b);
  border-radius: 0 6px 6px 0; text-decoration: none; transition: background .15s, transform .15s;
  /* CTA highlight — matches categories page pattern */
}
.hmv-proto .related-card:hover { background: #eef7f2; transform: translateY(-2px); }
.hmv-proto .related-card:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }
.hmv-proto .related-label { font-family: var(--ff-sans); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--c-gold-b); }
.hmv-proto .related-name { font-family: var(--ff-serif); font-size: 16px; font-weight: var(--fw-reg); color: var(--c-green); line-height: 1.3; }
.hmv-proto .related-desc { font-size: 12px; font-weight: var(--fw-light); color: var(--c-green-mid); line-height: 1.5; }
/* Read protocol CTA row on related cards */
.hmv-proto .related-cta-row {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; margin-top: 10px;
  font-family: var(--ff-sans); font-size: 9px; font-weight: var(--fw-semi);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-white); background: var(--c-green);
  border: 1px solid var(--c-green); padding: 10px 14px;
  min-height: 40px; transition: background .2s, border-color .2s;
}
.hmv-proto .related-card:hover .related-cta-row { background: var(--c-gold); border-color: var(--c-gold); }
.hmv-proto .related-cta-row svg { flex-shrink: 0; transition: transform .2s; }
.hmv-proto .related-card:hover .related-cta-row svg { transform: translateX(3px); }

/* ── CTA SECTION ── */
.hmv-proto .cta-section { background: var(--c-green); padding: var(--sp-xl) 0; text-align: center; position: relative; overflow: hidden; border-top: 3px solid var(--c-gold-b); }
.hmv-proto .cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(500px,90vw); height: 220px; background: radial-gradient(ellipse, rgba(180,155,101,.1) 0%, transparent 70%); pointer-events: none; }
.hmv-proto .cta-section .wrap { position: relative; z-index: 1; }
.hmv-proto .cta-section h2 { font-family: var(--ff-serif); font-size: clamp(28px,4.5vw,50px); font-weight: var(--fw-light); color: var(--c-gold-cream); margin-bottom: 10px; line-height: 1.08; }
.hmv-proto .cta-section h2 em { font-style: italic; color: var(--c-gold-b); }
.hmv-proto .cta-section p { font-size: clamp(13px,1.2vw,14px); font-weight: var(--fw-light); color: rgba(218,205,179,.65); max-width: 440px; margin: 0 auto 30px; line-height: 1.85; }
.hmv-proto .btn-row { display: flex; flex-direction: column; gap: 10px; align-items: center; }
@media (min-width: 480px) { .hmv-proto .btn-row { flex-direction: row; justify-content: center; flex-wrap: wrap; } }
.hmv-proto .cta-note { margin-top: 16px; font-size: 9px; letter-spacing: .16em; color: var(--c-gold-pale); opacity: .3; text-transform: uppercase; }

/* ── E-E-A-T BAR ── */
.hmv-proto .eeat-bar { background: #f5f9f7; border-top: 1px solid var(--c-divider); border-bottom: 1px solid var(--c-divider); padding: 16px 0; }
.hmv-proto .eeat-inner { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.hmv-proto .eeat-reviewer { display: flex; align-items: center; gap: 11px; }
.hmv-proto .eeat-avatar { width: 32px; min-width: 32px; height: 32px; border: 1px solid var(--c-divider); background: #e6f4ed; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.hmv-proto .eeat-avatar svg { width: 14px; height: 14px; stroke: var(--c-green-mid); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.hmv-proto .eeat-by { font-family: var(--ff-sans); font-size: 9px; font-weight: var(--fw-med); letter-spacing: .18em; text-transform: uppercase; color: var(--c-green-mid); margin-bottom: 2px; }
.hmv-proto .eeat-name { font-size: 12.5px; font-weight: var(--fw-reg); color: var(--c-green); line-height: 1.3; }
.hmv-proto .eeat-links { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hmv-proto .eeat-link { font-family: var(--ff-sans); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-gold); text-decoration: none; transition: opacity .2s; }
.hmv-proto .eeat-link:hover { opacity: .7; }

/* ── DISCLAIMER ── */
.hmv-proto .disclaimer-bar { background: #f5f9f7; border-top: 1px solid var(--c-divider); padding: 24px 0; }
.hmv-proto .disclaimer-bar p { font-size: 11px; font-weight: var(--fw-light); color: #4a5e5c; line-height: 1.9; max-width: 920px; }
.hmv-proto .disclaimer-bar strong { color: #2d4442; font-weight: var(--fw-med); }

/* ── FAQ ── */
.hmv-proto .faq-item { border-bottom: 1px solid rgba(26,55,53,.1); }
.hmv-proto .faq-item:first-of-type { border-top: 1px solid rgba(26,55,53,.1); }
.hmv-proto .faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 0; cursor: pointer; list-style: none;
  font-family: var(--ff-sans); font-size: clamp(14px,1.2vw,15px); font-weight: var(--fw-reg);
  color: var(--c-green); line-height: 1.4;
  -webkit-tap-highlight-color: transparent; min-height: 48px;
}
.hmv-proto .faq-item summary::-webkit-details-marker { display: none; }
.hmv-proto .faq-item summary:hover { color: var(--c-green-mid); }
.hmv-proto .faq-icon { width: 24px; min-width: 24px; height: 24px; border: 1px solid rgba(26,55,53,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .25s, background .25s; background: var(--c-white); }
.hmv-proto .faq-icon svg { width: 9px; height: 9px; stroke: var(--c-green); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s; }
.hmv-proto details[open].faq-item .faq-icon { background: var(--c-green); border-color: var(--c-green); }
.hmv-proto details[open].faq-item .faq-icon svg { stroke: var(--c-white); transform: rotate(45deg); }
.hmv-proto .faq-body { font-size: 14px; font-weight: var(--fw-light); line-height: 1.9; color: var(--c-green-mid); padding: 0 0 20px; max-width: 640px; }
.hmv-proto .faq-body strong { color: var(--c-green); font-weight: var(--fw-med); }

.hmv-proto .prod-img-note { font-family: var(--ff-sans); font-size: 9px; font-style: italic; font-weight: 300; color: rgba(180,155,101,.3); padding: 0 14px 10px; line-height: 1.4; }
