/* ================================================================
   home-v2.css — Conversion homepage
   One job above the fold: start the test. Below it, demonstration
   rather than explanation. Mobile-first throughout.
   ================================================================ */

/* ── HERO ─────────────────────────────────────────────────────── */

.hv-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 78px 20px 34px;
  overflow: hidden;
}
.hv-hero::before {
  content: '';
  position: absolute;
  top: 34%; left: 50%;
  width: min(760px, 160vw); height: min(760px, 160vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(100,212,255,0.11) 0%, transparent 66%);
  pointer-events: none;
}
.hv-hero > * { position: relative; z-index: 1; max-width: 100%; }

.hv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hv-eyebrow::before, .hv-eyebrow::after {
  content: ''; width: 20px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,211,126,0.5));
}
.hv-eyebrow::after { background: linear-gradient(90deg, rgba(244,211,126,0.5), transparent); }

.hv-title {
  font-size: clamp(1.75rem, 6.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.14;
  color: var(--ink);
  margin: 0 0 14px;
  max-width: 620px;
}
.hv-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hv-sub {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(234,242,255,0.55);
  max-width: 430px;
  margin: 0 auto 26px;
}

/* ── Archetype grid — the hero visual ─────────────────────────── */

/* All 24 tiles stay in the DOM for crawlers; the wrapper clips to roughly
   three rows and fades out, which keeps the CTA above the fold on mobile and
   reads as "and more" rather than a truncated list. */
.hv-grid-wrap {
  width: 100%;
  max-width: 620px;
  max-height: 218px;
  overflow: hidden;
  margin: 0 auto 22px;
  -webkit-mask-image: linear-gradient(180deg, #000 58%, transparent 96%);
  mask-image: linear-gradient(180deg, #000 58%, transparent 96%);
}
.hv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.hv-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 11px 5px 9px;
  border-radius: 13px;
  background: rgba(14,26,58,0.62);
  border: 1px solid rgba(100,212,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
  opacity: 0;
  /* Two-stage: a spring entrance, then a slow continuous breath so the grid
     stays alive instead of freezing the moment it lands. The breath is
     staggered per tile via --i so the motion ripples rather than pulsing in
     unison. */
  animation:
    hvTileIn 0.62s cubic-bezier(0.22,1.1,0.36,1) forwards,
    hvBreathe 6.5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 26ms), calc(1s + var(--i) * 140ms);
}
@keyframes hvTileIn {
  from { opacity: 0; transform: translateY(14px) scale(0.9); }
  to   { opacity: 1; transform: none; }
}
@keyframes hvBreathe {
  0%, 100% { border-color: rgba(100,212,255,0.1);  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035); }
  50%      { border-color: rgba(100,212,255,0.26); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 0 16px rgba(100,212,255,0.09); }
}
.hv-tile img {
  width: 34px; height: 34px;
  object-fit: contain;
  opacity: 0.9;
  animation: hvFloat 7s ease-in-out infinite;
  animation-delay: calc(var(--i) * 160ms);
}
@keyframes hvFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2.5px); }
}
.hv-tile span {
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  color: rgba(234,242,255,0.5);
  min-height: 2.4em;
}

/* ── Reassurances + CTA ───────────────────────────────────────── */

.hv-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 22px;
}
.hv-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(234,242,255,0.62);
}
.hv-meta-item svg { flex-shrink: 0; opacity: 0.75; }
.hv-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(234,242,255,0.22); }

.hv-cta {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 17px 30px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent), #8BE3FF);
  color: #04070F;
  border: none;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 34px rgba(100,212,255,0.26);
  transition: transform 0.18s ease, box-shadow 0.25s ease;
}
.hv-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(100,212,255,0.4); }
.hv-cta:active { transform: translateY(0); }
.hv-cta-note {
  font-size: 0.76rem;
  color: rgba(234,242,255,0.36);
  margin: 12px 0 0;
}

/* ── Section chrome ───────────────────────────────────────────── */

.hv-section { padding: 68px 20px; }
.hv-inner { max-width: 620px; margin: 0 auto; }
.hv-sec-head { text-align: center; margin-bottom: 30px; }
.hv-kicker {
  display: inline-block;
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 10px;
}
.hv-kicker--free { color: var(--accent); }
.hv-kicker--paid { color: var(--gold); }
.hv-sec-title {
  font-size: clamp(1.4rem, 5.4vw, 1.9rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.24;
  color: var(--ink); margin: 0 0 10px;
}
.hv-sec-sub {
  font-size: 0.93rem; line-height: 1.66;
  color: rgba(234,242,255,0.5);
  max-width: 440px; margin: 0 auto;
}

/* ── Phone frame ──────────────────────────────────────────────── */

.hv-phone {
  position: relative;
  width: 274px;
  height: 560px;
  margin: 0 auto;
  border-radius: 34px;
  padding: 9px;
  background: linear-gradient(160deg, #1d2740, #0b1226);
  box-shadow:
    0 0 0 1px rgba(100,212,255,0.14),
    0 30px 70px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
.hv-phone::before {   /* notch */
  content: '';
  position: absolute;
  top: 15px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 5px; border-radius: 4px;
  background: rgba(0,0,0,0.55);
  z-index: 3;
}
.hv-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: var(--bg-1);
}
.hv-scroll {
  position: absolute;
  inset: 0;
  will-change: transform;
}
/* Auto-scroll only once the frame is on screen, so it is not mid-way
   through its loop by the time the reader arrives. */
.hv-phone.is-live .hv-scroll { animation: hvScroll var(--dur, 26s) cubic-bezier(0.5,0,0.5,1) infinite; }
@keyframes hvScroll {
  0%, 7%    { transform: translateY(0); }
  93%, 100% { transform: translateY(calc(-100% + 542px)); }
}
.hv-screen::after {   /* top+bottom fade so the loop seam is invisible */
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7,11,26,0.85), transparent 9%),
    linear-gradient(0deg, rgba(7,11,26,0.85), transparent 9%);
}

/* ── Faux screen content ──────────────────────────────────────── */

.fx { padding: 26px 16px 22px; }
.fx-lbl {
  font-size: 0.5rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(234,242,255,0.34);
  text-align: center; margin-bottom: 12px;
}
.fx-icon {
  width: 74px; height: 74px; margin: 0 auto 12px; display: block;
  filter: drop-shadow(0 0 18px rgba(196,110,138,0.4));
}
.fx-name {
  font-size: 1.3rem; font-weight: 900; letter-spacing: -0.03em;
  text-align: center; line-height: 1.1; margin-bottom: 9px;
  background: linear-gradient(135deg, var(--gold), #C46E8A);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fx-quote {
  font-size: 0.62rem; line-height: 1.6; font-style: italic;
  color: rgba(234,242,255,0.6); text-align: center; margin-bottom: 12px;
}
.fx-chips { display: flex; gap: 5px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.fx-chip {
  font-size: 0.52rem; font-weight: 700; padding: 3px 9px; border-radius: 20px;
  color: #C46E8A; background: rgba(196,110,138,0.12); border: 1px solid rgba(196,110,138,0.26);
}
.fx-card {
  background: rgba(14,26,58,0.6);
  border: 1px solid rgba(100,212,255,0.1);
  border-radius: 11px; padding: 12px 13px; margin-bottom: 9px;
}
.fx-h {
  font-size: 0.53rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(234,242,255,0.45); margin-bottom: 9px;
}
.fx-li {
  position: relative; padding-left: 13px; font-size: 0.6rem; line-height: 1.55;
  color: rgba(234,242,255,0.72); margin-bottom: 6px;
}
.fx-li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: 0.6;
}
.fx-li--g::before { background: var(--gold); }

/* bars / meters / donuts inside the faux report */
.fx-row { margin-bottom: 11px; }
.fx-row-top {
  display: flex; justify-content: space-between;
  font-size: 0.55rem; font-weight: 600; color: rgba(234,242,255,0.62); margin-bottom: 5px;
}
.fx-track { height: 5px; border-radius: 3px; background: rgba(100,212,255,0.09); overflow: hidden; }
.fx-fill { height: 100%; border-radius: 3px; }
.fx-meter {
  position: relative; height: 5px; border-radius: 3px;
  background: linear-gradient(90deg, rgba(255,107,107,0.2), rgba(100,212,255,0.2));
}
.fx-thumb {
  position: absolute; top: 50%; width: 10px; height: 10px; border-radius: 50%;
  transform: translate(-50%,-50%); background: var(--accent);
  box-shadow: 0 0 8px rgba(100,212,255,0.6);
}
.fx-ends { display: flex; justify-content: space-between; font-size: 0.47rem; color: rgba(234,242,255,0.3); margin-top: 3px; }
.fx-donuts { display: flex; justify-content: space-around; margin: 4px 0 2px; }
.fx-donut { text-align: center; }
.fx-donut svg { display: block; margin: 0 auto 4px; }
.fx-donut span { font-size: 0.46rem; color: rgba(234,242,255,0.45); }
.fx-badge {
  display: inline-block; font-size: 0.46rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 2px 6px; border-radius: 20px; border: 1px solid;
}
.fx-quoteblock {
  border-left: 2px solid var(--gold); background: rgba(244,211,126,0.05);
  border-radius: 0 8px 8px 0; padding: 9px 11px; margin-bottom: 9px;
  font-size: 0.58rem; line-height: 1.6; font-style: italic; color: rgba(234,242,255,0.72);
}
.fx-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 15px; height: 15px; border-radius: 50%; margin-right: 7px; flex-shrink: 0;
  background: rgba(244,211,126,0.14); border: 1px solid rgba(244,211,126,0.3);
  color: var(--gold); font-size: 0.46rem; font-weight: 800;
}
.fx-step { display: flex; align-items: flex-start; font-size: 0.6rem; line-height: 1.5; color: rgba(234,242,255,0.7); margin-bottom: 7px; }
.fx-blur { filter: blur(3px); opacity: 0.6; }

/* lock ribbon on the paid frame */
.hv-lock {
  position: absolute; z-index: 4;
  left: 50%; bottom: 22px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px; border-radius: 20px; white-space: nowrap;
  background: rgba(7,11,26,0.9); border: 1px solid rgba(244,211,126,0.34);
  color: var(--gold); font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}

/* ── Value list under the paid preview ───────────────────────── */

.hv-includes { list-style: none; margin: 26px auto 0; padding: 0; max-width: 380px; }
.hv-includes li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; line-height: 1.55; color: rgba(234,242,255,0.72);
}
.hv-includes li + li { margin-top: 9px; }
.hv-includes svg { flex-shrink: 0; margin-top: 3px; }

.hv-price {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  margin: 24px 0 16px;
}
.hv-price-amt { font-size: 2.3rem; font-weight: 900; letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
.hv-price-amt sup { font-size: 1.05rem; font-weight: 700; top: -0.85em; }
.hv-price-note { font-size: 0.8rem; color: rgba(234,242,255,0.42); }

.hv-cta--gold {
  background: linear-gradient(135deg, var(--gold), #FFE9B0);
  color: #1A1204;
  box-shadow: 0 10px 34px rgba(244,211,126,0.24);
}
.hv-cta--gold:hover { box-shadow: 0 14px 44px rgba(244,211,126,0.36); }

/* ── Closing explainer (crawler body text) ───────────────────── */

.hv-about { padding: 62px 20px 74px; border-top: 1px solid rgba(100,212,255,0.08); }
.hv-about h2 {
  font-size: 1.18rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 14px;
}
.hv-about h3 {
  font-size: 0.94rem; font-weight: 700; color: rgba(234,242,255,0.86);
  margin: 22px 0 8px;
}
.hv-about p {
  font-size: 0.9rem; line-height: 1.75; color: rgba(234,242,255,0.55); margin-bottom: 12px;
}
.hv-about a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.hv-about strong { color: rgba(234,242,255,0.85); font-weight: 700; }

/* ── Scroll reveal ────────────────────────────────────────────── */

.hv-in { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(0.22,0.9,0.36,1); }
.hv-in.hv-seen { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────────────── */

@media (min-width: 560px) {
  .hv-grid { grid-template-columns: repeat(6, 1fr); }
  .hv-grid-wrap { max-height: 300px; }
  .hv-tile img { width: 36px; height: 36px; }
  .hv-tile span { font-size: 0.53rem; }
}
@media (max-width: 400px) {
  .hv-tile { padding: 9px 3px 8px; border-radius: 11px; }
  .hv-tile img { width: 29px; height: 29px; }
  .hv-tile span { font-size: 0.46rem; }
  .hv-meta { gap: 5px 9px; }
  .hv-meta-item { font-size: 0.73rem; }
}
@media (max-height: 760px) {
  .hv-hero { padding-top: 64px; padding-bottom: 24px; }
  .hv-grid-wrap { max-height: 150px; margin-bottom: 16px; }
  .hv-sub { margin-bottom: 16px; font-size: 0.92rem; }
  .hv-eyebrow { margin-bottom: 12px; }
  .hv-meta { margin-bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .hv-tile, .hv-tile img { animation: none; opacity: 1; transform: none; }
  .hv-phone.is-live .hv-scroll { animation: none; }
  .hv-in { transition: none; opacity: 1; transform: none; }
}
