/* ============================================================
   HOME.CSS — Homepage-specific interactive styles
   Loaded only on index.html
   ============================================================ */

/* ── HERO VIDEO BACKGROUND ────────────────────────────────── */
.h-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  /* Slight desaturate so it reads dark/premium rather than colorful */
  filter: saturate(0.7) brightness(0.85);
}

/* Overlay — strong left gradient for full-bleed copy readability */
.h-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(8,8,8,0.88) 0%,
      rgba(8,8,8,0.65) 40%,
      rgba(8,8,8,0.20) 70%,
      rgba(8,8,8,0.05) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8,8,8,0.55) 0%,
      rgba(8,8,8,0.0) 45%,
      rgba(8,8,8,0.60) 100%
    );
  z-index: 2;
}

/* ── ORB BACKGROUNDS ──────────────────────────────────────── */
.h-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  /* will-change: transform kept for JS mousemove parallax */
  will-change: transform;
  z-index: 3;
}
.h-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.09) 0%, transparent 70%);
  top: -80px; left: -200px;
  /* CSS translate + scale animate independently from JS transform property */
  animation: orb-breathe-a 8s ease-in-out infinite alternate,
             orb-drift-a 22s ease-in-out infinite alternate;
}
.h-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(14,165,233,0.055) 0%, transparent 70%);
  top: 10%; right: -80px;
  animation: orb-breathe-b 10s ease-in-out infinite alternate,
             orb-drift-b 18s ease-in-out infinite alternate;
}
.h-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  bottom: 10%; left: 35%;
  animation: orb-breathe-c 12s ease-in-out infinite alternate,
             orb-drift-c 26s ease-in-out infinite alternate;
}

/* Breathing — uses scale property (composites with JS transform) */
@keyframes orb-breathe-a {
  from { scale: 1;    opacity: 0.55; }
  to   { scale: 1.3;  opacity: 1;    }
}
@keyframes orb-breathe-b {
  from { scale: 0.8;  opacity: 0.35; }
  to   { scale: 1.2;  opacity: 0.9;  }
}
@keyframes orb-breathe-c {
  from { scale: 1;    opacity: 0.45; }
  to   { scale: 1.4;  opacity: 1;    }
}

/* Slow floating — uses translate property (composites with JS transform) */
@keyframes orb-drift-a {
  from { translate: 0 0; }
  to   { translate: 50px 40px; }
}
@keyframes orb-drift-b {
  from { translate: 0 0; }
  to   { translate: -40px 50px; }
}
@keyframes orb-drift-c {
  from { translate: 0 0; }
  to   { translate: 25px -22px; }
}

/* ── GRID OVERLAY ─────────────────────────────────────────── */
.h-grid {
  position: absolute;
  inset: 0;
  z-index: 4;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 75%, transparent 100%);
  mask-image:         linear-gradient(180deg, transparent 0%, black 20%, black 75%, transparent 100%);
  pointer-events: none;
}

/* ── HERO SECTION ─────────────────────────────────────────── */
.h-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
  background: var(--bg-primary);
}

/* Hero content — full-bleed, no glass, text sits directly on video */
.h-glass-card {
  max-width: 680px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Eyebrow pill */
.h-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border: 1px solid rgba(201,168,76,0.22);
  background: rgba(201,168,76,0.06);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
.h-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Headline */
.h-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 1.5rem;
}

.h-accent { color: var(--accent); }

/* Subtitle */
.h-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

/* CTA row */
.h-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.h-link-secondary {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.h-link-secondary:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.4);
}

/* Mini trust bar */
.h-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.h-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Scroll indicator */
.h-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  animation: scroll-bounce 2.2s ease-in-out infinite;
}
.h-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
}
.h-scroll-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── HEADLINE LINE REVEAL ─────────────────────────────────── */
/* .hl elements start hidden and are revealed by JS */
.hl {
  display: block;
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.75s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
}
/* h-sub and h-trust are inline/flex, not block */
.h-sub.hl, .h-trust.hl { display: flex; }
.h-sub.hl { display: block; }
.h-actions.hl { display: flex; }
.h-pill { display: inline-flex; }

.hl.hl-on {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays by class */
.hl-0 { transition-delay: 0.05s; }
.hl-1 { transition-delay: 0.22s; }
.hl-2 { transition-delay: 0.39s; }
.hl-3 { transition-delay: 0.60s; }
.hl-4 { transition-delay: 0.78s; }
.hl-5 { transition-delay: 0.96s; }
.hl-6 { transition-delay: 1.14s; }

/* ── PROBLEM BAR ──────────────────────────────────────────── */
.h-problem {
  padding: 5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.h-prob-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  justify-content: center;
  align-items: baseline;
}
.pw { color: var(--text-primary); }
.pw.dim { color: var(--text-muted); }
.pw.accent { color: var(--accent); }

/* ── GUIDE SECTION ────────────────────────────────────────── */
.h-guide {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}
.h-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.h-guide-left h2 { margin: 0.75rem 0 1rem; }
.h-guide-left p  { margin-bottom: 2rem; max-width: 420px; }

.h-guide-right {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.h-gcard {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.h-gcard:hover {
  border-color: var(--border-accent);
  transform: translateX(8px);
  box-shadow: -4px 0 24px rgba(201,168,76,0.08);
}
.h-gcard-icon {
  font-size: 1.3rem;
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, box-shadow 0.25s;
}
.h-gcard:hover .h-gcard-icon {
  background: rgba(201,168,76,0.16);
  box-shadow: 0 0 16px rgba(201,168,76,0.18);
}
.h-gcard h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.h-gcard p  { font-size: 0.875rem; color: var(--text-secondary); margin: 0; }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.h-steps {
  padding: var(--space-xl) 0 var(--space-3xl) 0;
}
.h-steps-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 0;
}
.h-step {
  text-align: center;
  padding: 0 1.5rem;
}
.h-step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.25rem;
  /* colour/stroke overridden by metallic treatment in styles.css */
  -webkit-text-stroke: 0px transparent;
  transition: none;
}
.h-step:hover .h-step-num {
  -webkit-text-stroke: 0px transparent;
}
.h-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.h-step p  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

.h-step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.h-step:hover .h-step-icon {
  transform: scale(1.1);
  background: rgba(201, 168, 76, 0.13);
}
.h-step-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.h-step-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,0.6), rgba(201,168,76,0.15));
  align-self: start;
  margin-top: 3rem;
  position: relative;
}
.h-step-divider::after {
  content: '';
  position: absolute;
  right: -3px; top: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
}

/* ── DIFFERENTIATOR TABS ──────────────────────────────────── */
.h-diff {
  padding: var(--space-3xl) 0 var(--space-xl) 0;
}
.h-diff-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.h-diff-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.h-dtab {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  text-align: left;
  transition: all 0.25s;
  width: 100%;
}
.h-dtab-icon {
  font-size: 1rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.h-dtab:hover {
  border-color: var(--border-accent);
  color: var(--text-primary);
  background: rgba(201,168,76,0.03);
}
.h-dtab.active {
  background: rgba(201,168,76,0.06);
  border-color: var(--accent);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(201,168,76,0.08);
}
.h-dtab.active .h-dtab-icon {
  background: rgba(201,168,76,0.14);
  border-color: rgba(201,168,76,0.3);
}
.h-diff-panels { position: relative; }
.h-dpanel {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.h-dpanel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(201,168,76,0.2), transparent);
}
.h-dpanel.active {
  display: block;
  animation: panel-in 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.h-dpanel-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(7rem, 12vw, 11rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(201,168,76,0.12);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.h-dpanel h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}
.h-dpanel > p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 520px;
}
.h-dpanel-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.h-dpanel-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.h-dpanel-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(201,168,76,0.5);
}

/* Keep tabs and panel card dark on the light-background diff section */
.section-light .h-dtab {
  background: #141414;
  border-color: rgba(255,255,255,0.08);
  color: #a0a0a0;
}
.section-light .h-dtab:hover {
  background: #1e1e1e;
  border-color: rgba(201,168,76,0.35);
  color: #ffffff;
}
.section-light .h-dtab.active {
  background: #0f1a1f;
  border-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(201,168,76,0.12);
}
.section-light .h-dtab-icon {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.15);
}
.section-light .h-dtab.active .h-dtab-icon {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.35);
}
.section-light .h-dpanel {
  background: #141414;
  border-color: rgba(255,255,255,0.07);
  color: #ffffff;
}
.section-light .h-dpanel h3 {
  color: #ffffff;
}
.section-light .h-dpanel > p {
  color: #a0a0a0;
}
.section-light .h-dpanel-list li {
  color: #a0a0a0;
}

/* Two-column layout inside each panel: text + image */
.h-dpanel-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: center;
}
.h-dpanel-text {
  position: relative;
  z-index: 1;
}
.h-dpanel-img {
  height: 280px;
  min-height: unset;
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Wide image above the How It Works steps */
.h-steps-img {
  height: 340px;
  margin-bottom: 3.5rem;
  border-radius: var(--radius-xl);
  min-height: unset;
}

/* Lifestyle banner above memberships */
.h-member-img {
  height: 300px;
  margin-bottom: 3.5rem;
  border-radius: var(--radius-xl);
  min-height: unset;
}

/* ── SERVICE CARD icon animation ──────────────────────────── */
.service-icon {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              background 0.25s, box-shadow 0.25s;
}
.service-card:hover .service-icon {
  transform: scale(1.18) rotate(-6deg);
}

/* ── TESTIMONIAL MARQUEE ──────────────────────────────────── */
.h-mq-section {
  padding-top: var(--space-3xl);
  overflow: hidden;
}
.h-mq-outer {
  position: relative;
  overflow: hidden;
  padding-bottom: var(--space-3xl);
}
/* Fade edges */
.h-mq-outer::before,
.h-mq-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.h-mq-outer::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-secondary), transparent);
}
.h-mq-outer::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-secondary), transparent);
}
.h-mq-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: mq-scroll 38s linear infinite;
}
.h-mq-track:hover { animation-play-state: paused; }
@keyframes mq-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.h-mq-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.25s;
}
.h-mq-card:hover { border-color: var(--border-accent); }
.h-mq-quote {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0.75rem 0 1.25rem;
}

/* ── STAKES SECTION ───────────────────────────────────────── */
.h-stakes {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  /* background controlled by section-light or default */
}
.h-stakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.h-stakes-side {
  position: relative;
  padding: 3rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.h-stakes-side.bad {
  background: linear-gradient(135deg, #120a0a 0%, #1a0e0e 100%);
  border-right: 1px solid var(--border);
}
.h-stakes-side.good {
  background: linear-gradient(135deg, #0d110a 0%, #111a0c 100%);
}
.h-stakes-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  display: inline-block;
  width: fit-content;
}
.h-stakes-side.bad .h-stakes-label {
  background: rgba(200, 50, 50, 0.15);
  color: #e07070;
  border: 1px solid rgba(200, 50, 50, 0.25);
}
.h-stakes-side.good .h-stakes-label {
  background: rgba(201, 168, 76, 0.12);
  color: var(--accent);
  border: 1px solid rgba(201, 168, 76, 0.25);
}
.h-stakes-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.h-stakes-side.bad .h-stakes-headline { color: #e07070; }
.h-stakes-side.good .h-stakes-headline { color: var(--accent); }
.h-stakes-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 380px;
}
.h-stakes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.h-stakes-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.h-stakes-side.bad .h-stakes-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e07070;
  flex-shrink: 0;
}
.h-stakes-side.good .h-stakes-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.h-stakes-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ── MEMBERSHIP BADGE ─────────────────────────────────────── */
.membership-wrapper {
  position: relative;
}
.membership-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text-inverse);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

/* ── MAGNETIC BUTTON ──────────────────────────────────────── */
.mag {
  transition:
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    background var(--transition),
    box-shadow var(--transition);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .h-dpanel-inner {
    grid-template-columns: 1fr;
  }
  .h-dpanel-img { height: 200px; }

  .h-diff-layout {
    grid-template-columns: 1fr;
  }
  .h-diff-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .h-dtab {
    flex: 1 1 calc(50% - 0.25rem);
    justify-content: flex-start;
  }

  .h-guide-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .h-guide-left p { max-width: 100%; }

  .h-steps-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
  }
  .h-step-divider {
    height: 40px;
    width: 1px;
    background: linear-gradient(180deg, rgba(201,168,76,0.3), transparent);
    margin: 0 auto;
    margin-top: 0;
  }
  .h-step-divider::after { display: none; }
  .h-step { padding: 0; }
}

@media (max-width: 768px) {
  .h-glass-card {
    max-width: 100%;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .h-stakes-grid {
    grid-template-columns: 1fr;
  }
  .h-stakes-side.bad {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .h-stakes-divider { display: none; }
}

@media (max-width: 600px) {
  .h-headline { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .h-actions { flex-direction: column; align-items: flex-start; }
  .h-trust { gap: 0.75rem; font-size: 0.72rem; }
  .h-prob-text { font-size: 1.3rem; gap: 0.3rem 0.75rem; }
  .h-stakes-side { padding: 2rem 1.5rem; }
}

/* ── MEMBER SPOTLIGHT ─────────────────────────────────────── */
.h-spotlight {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.h-spotlight-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: center;
}
.h-spotlight-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.h-spotlight-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  filter: saturate(0.85);
}
.h-spotlight-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--gold-metal);
  color: var(--text-inverse);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.h-spotlight-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
  border: none;
  padding: 0;
}
.h-spotlight-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.h-spotlight-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ── CTA FOUNDER NOTE ─────────────────────────────────────── */
.cta-founder-note {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── SPOTLIGHT RESPONSIVE ─────────────────────────────────── */
@media (max-width: 860px) {
  .h-spotlight-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .h-spotlight-img {
    aspect-ratio: 16 / 9;
    max-height: 340px;
  }
}

/* ── DEAL BANNER ──────────────────────────────────────────── */
.h-deal-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-primary);
}
.h-deal-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 0 60px rgba(201,168,76,0.07), var(--shadow-elevated);
}

/* Left panel */
.h-deal-left {
  background: var(--bg-elevated);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.h-deal-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.018) 18px,
    rgba(255,255,255,0.018) 19px
  );
  pointer-events: none;
}
.h-deal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.h-deal-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.h-deal-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.h-deal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.h-deal-pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.07);
  color: var(--accent);
}
.h-deal-btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1.5px solid rgba(255,255,255,0.15);
  font-size: 0.8rem;
  padding: 0.75rem 1.75rem;
}
.h-deal-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}

/* Right panel */
.h-deal-right {
  background: var(--bg-secondary);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-left: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
}
.h-deal-right::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  bottom: -150px; right: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.h-deal-offer-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.08);
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
}
.h-deal-offer {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.h-deal-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}
.h-deal-price {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gold-metal-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(201,168,76,0.25));
}
.h-deal-then {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.55;
}
.h-deal-then strong { color: var(--text-secondary); font-weight: 600; }
.h-deal-cta { position: relative; z-index: 1; }

/* Responsive */
@media (max-width: 768px) {
  .h-deal-card { grid-template-columns: 1fr; }
  .h-deal-left, .h-deal-right { padding: 2.5rem 2rem; }
  .h-deal-right { border-left: none; border-top: 1px solid rgba(201,168,76,0.15); }
}

/* ── FEATURE GRID ─────────────────────────────────────────── */
.h-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.h-feat-item {
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid rgba(0,0,0,0.1);
  position: relative;
  cursor: default;
  transition: background 0.3s ease;
}
.h-feat-item:last-child { border-right: none; padding-right: 0; }
.h-feat-item + .h-feat-item { padding-left: 2rem; }
.h-feat-item:first-child { padding-left: 0; }

/* Gold top-border sweep on hover */
.h-feat-item::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-metal);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.h-feat-item:hover::before { width: 100%; }
.h-feat-item:hover { background: rgba(201,168,76,0.04); }

.h-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
  transition: background 0.25s, transform 0.3s cubic-bezier(0.23,1,0.32,1);
}
.h-feat-item:hover .h-feat-icon {
  background: rgba(201,168,76,0.15);
  transform: scale(1.08);
}
.h-feat-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.h-feat-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color 0.25s;
}
.h-feat-item:hover .h-feat-desc { color: var(--text-primary); }

/* ── TEXT COMPARISON ──────────────────────────────────────── */
.h-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.h-compare-divider {
  width: 1px;
  background: rgba(0,0,0,0.1);
  margin: 0 2.5rem;
  align-self: stretch;
}
.h-compare-col { padding: 0 2rem; }
.h-compare-col:first-child { padding-left: 0; }
.h-compare-col:last-child  { padding-right: 0; }
.h-compare-label {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.h-compare-label.bad {
  background: rgba(200,50,50,0.1);
  color: #b03030;
  border: 1px solid rgba(200,50,50,0.2);
}
.h-compare-label.good {
  background: rgba(201,168,76,0.12);
  color: #8a6a10;
  border: 1px solid rgba(201,168,76,0.25);
}
.h-compare-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.h-compare-col.bad  .h-compare-headline { color: #b03030; }
.h-compare-col.good .h-compare-headline { color: #8a6a10; }
.h-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.h-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.h-compare-x  { font-weight: 800; color: #b03030; flex-shrink: 0; font-size: 0.8rem; }
.h-compare-ck { font-weight: 800; color: #8a6a10; flex-shrink: 0; font-size: 0.8rem; }

/* Responsive */
@media (max-width: 860px) {
  .h-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .h-feat-item:nth-child(2) { border-right: none; }
  .h-feat-item:nth-child(3) { border-right: 1px solid rgba(0,0,0,0.1); border-top: 1px solid rgba(0,0,0,0.1); }
  .h-feat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(0,0,0,0.1); padding-right: 0; }
  .h-feat-item:nth-child(n+3) { padding-top: 2rem; }
}
@media (max-width: 540px) {
  .h-feat-grid { grid-template-columns: 1fr; }
  .h-feat-item { border-right: none !important; border-top: 1px solid rgba(0,0,0,0.08) !important; padding: 1.5rem 0 !important; }
  .h-feat-grid { border-top: none; }
  .h-compare { grid-template-columns: 1fr; }
  .h-compare-divider { width: 100%; height: 1px; margin: 2rem 0; }
  .h-compare-col { padding: 0; }
}

/* ── FEATURE ACCORDION ────────────────────────────────────── */
.h-accord {
  display: flex;
  height: 480px;
  gap: 3px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.h-accord-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
.h-accord-panel.active { flex: 3.5; }

.h-accord-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1),
              filter 0.4s ease;
  filter: saturate(0.6) brightness(0.5);
}
.h-accord-panel.active .h-accord-bg {
  transform: scale(1.04);
  filter: saturate(0.85) brightness(0.65);
}

/* Uniform heavy overlay — consistent across all panels */
.h-accord-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8,8,8,0.97) 0%,
    rgba(8,8,8,0.72) 45%,
    rgba(8,8,8,0.48) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  gap: 0;
}

/* Number — top-left, always visible, same position always */
.h-accord-num {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.3);
  transition: color 0.35s;
}
.h-accord-panel.active .h-accord-num { color: var(--accent); }

/* Body always at bottom */
.h-accord-body { overflow: hidden; }

/* Title — hidden on collapsed, revealed on active */
.h-accord-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin-bottom: 0;
}
.h-accord-panel.active .h-accord-title {
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 0.625rem;
}

.h-accord-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 340px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.12s ease,
              transform 0.3s 0.12s ease;
}
.h-accord-panel.active .h-accord-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Gold left border on active */
.h-accord-panel::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold-metal);
  opacity: 0;
  transition: opacity 0.4s;
}
.h-accord-panel.active::after { opacity: 1; }

@media (max-width: 768px) {
  .h-accord {
    flex-direction: column;
    height: auto;
  }
  .h-accord-panel { flex: none; height: 80px; }
  .h-accord-panel.active { height: 340px; }
  .h-accord-title { white-space: normal; font-size: 1rem; }
  .h-accord-panel.active .h-accord-title { font-size: 1.2rem; }
  .h-accord-panel::after {
    left: 0; right: 0; top: 0; bottom: auto;
    width: 100%; height: 3px;
  }
}
