/* Homepage v2 — conversion-focused layout */

.page-home-v2 .container--narrow {
  max-width: 900px;
}

.preview-banner {
  background: rgba(14, 165, 233, 0.12);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 16px;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.preview-banner a {
  color: var(--accent);
  font-weight: 600;
  transition: color var(--transition-interactive);
}
.preview-banner a:hover { color: var(--accent-light); text-decoration: underline; text-underline-offset: 2px; }
.preview-banner a:active { transform: scale(0.98); display: inline-block; }

.hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

/* Secondary CTA — green hover/click like primary */
.page-home-v2 .btn-ghost--green:hover {
  background: var(--cta-bg-hover);
  border-color: var(--cta-bg-hover);
  color: var(--cta-text);
  transform: translateY(-2px);
  box-shadow: var(--cta-glow-hover);
}
.page-home-v2 .btn-ghost--green:active {
  transform: translateY(0) scale(0.98);
  background: var(--cta-bg-active);
  border-color: var(--cta-bg-active);
  color: var(--cta-text);
}

/* Problem cards — full-width grid to match section below */
.problem-cards-row {
  margin-top: var(--space-4);
}

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: deliverable;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.deliverables-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  counter-increment: deliverable;
}
.deliverables-list li::before {
  content: counter(deliverable) ".";
  flex-shrink: 0;
  min-width: 1.75rem;
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-primary);
  line-height: 1;
}
.deliverables-list__box {
  flex: 0 1 auto;
  max-width: calc(100% - 200px);
  width: calc(100% - 200px);
  background: var(--bg-base);
  border: var(--border-width-card) solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2) var(--space-3);
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: var(--text-sm);
  transition: border-color var(--transition-interactive),
              background-color var(--transition-interactive);
}
.deliverables-list li:hover .deliverables-list__box {
  border-color: var(--border-hover);
  background: var(--interactive-card-hover-bg);
}

@media (max-width: 640px) {
  .deliverables-list__box {
    width: 100%;
    max-width: 100%;
  }
}

.offer-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  margin: var(--space-4) 0;
}
.offer-table th,
.offer-table td {
  border: var(--border-width-rule) solid var(--border-subtle);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.offer-table th {
  width: 34%;
  background: var(--bg-raised);
  color: var(--text-primary);
  font-weight: 600;
}
.offer-table td {
  color: var(--text-secondary);
}

.reassurance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.reassurance-pill {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-glow);
  border: var(--border-width-card) solid rgba(14, 165, 233, 0.25);
  border-radius: var(--radius-full);
  padding: 6px 12px;
}

@keyframes reassurance-pill-highlight {
  0%, 16%, 100% {
    border-color: rgba(14, 165, 233, 0.25);
    background: var(--accent-glow);
    color: var(--accent-light);
    box-shadow: none;
  }
  2%, 12% {
    border-color: var(--cta-bg-hover);
    background: rgba(0, 255, 0, 0.14);
    color: var(--text-primary);
    box-shadow: 0 0 18px rgba(0, 255, 0, 0.32);
  }
}

.reassurance-strip--sequence .reassurance-pill {
  animation: reassurance-pill-highlight 4.5s ease-in-out infinite;
}
.reassurance-strip--sequence .reassurance-pill:nth-child(1) { animation-delay: 0s; }
.reassurance-strip--sequence .reassurance-pill:nth-child(2) { animation-delay: 1.5s; }
.reassurance-strip--sequence .reassurance-pill:nth-child(3) { animation-delay: 3s; }

.credibility-band {
  background: var(--bg-surface);
  border: var(--border-width-card) solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: border-color var(--transition-interactive),
              background-color var(--transition-interactive);
}
.credibility-band:hover {
  border-color: var(--border-hover);
  background: var(--interactive-card-hover-bg);
}
.credibility-band p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.cta-checklist li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.cta-checklist li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.evidence-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

@keyframes evidence-chain-step-highlight {
  0%, 16%, 100% {
    border-color: var(--border-subtle);
    background: var(--bg-raised);
    color: var(--text-secondary);
    box-shadow: none;
  }
  2%, 12% {
    border-color: var(--cta-bg-hover);
    background: rgba(0, 255, 0, 0.14);
    color: var(--text-primary);
    box-shadow: 0 0 18px rgba(0, 255, 0, 0.32);
  }
}

.evidence-chain__step {
  background: var(--bg-raised);
  border: var(--border-width-card) solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 6px 10px;
  color: var(--text-secondary);
  animation: evidence-chain-step-highlight 7.5s ease-in-out infinite;
}

.evidence-chain__step:nth-child(1) { animation-delay: 0s; }
.evidence-chain__step:nth-child(3) { animation-delay: 1.5s; }
.evidence-chain__step:nth-child(5) { animation-delay: 3s; }
.evidence-chain__step:nth-child(7) { animation-delay: 4.5s; }
.evidence-chain__step:nth-child(9) { animation-delay: 6s; }

@media (prefers-reduced-motion: reduce) {
  .evidence-chain__step,
  .reassurance-strip--sequence .reassurance-pill {
    animation: none;
  }
}

.evidence-chain__arrow {
  color: var(--accent);
}

.roles-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--space-2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 2px;
}
.role-tag {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: var(--border-width-card) solid var(--border-card);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  transition: border-color var(--transition-interactive),
              background-color var(--transition-interactive);
}
.role-tag:hover {
  border-color: var(--border-hover);
  background: var(--interactive-card-hover-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
}
.process-step {
  background: var(--bg-surface);
  border: var(--border-width-card) solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: border-color var(--transition-interactive),
              background-color var(--transition-interactive),
              transform var(--transition-interactive);
}
.process-step:hover {
  border-color: var(--border-hover);
  background: var(--interactive-card-hover-bg);
  transform: translateY(-2px);
}
.process-step:active { transform: translateY(0) scale(0.98); }
.process-step__num {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}
.process-step__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.process-step__body {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-3);
}
