/* ═══════════════════════════════════════════════════════════════
   ArtistPulse AI — Global Stylesheet
   Brand: Electric teal + warm coral on deep navy
   Fonts: Outfit (display) + Plus Jakarta Sans (body)
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Base palette */
  --bg-base:     #050A18;
  --bg-surface:  #0A1128;
  --bg-card:     #0E1630;
  --bg-card-h:   #121D3A;
  --bg-elevated: #162040;

  /* Borders */
  --border:       rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.10);
  --border-accent:rgba(0,212,170,0.30);

  /* Primary — electric teal */
  --primary:     #00D4AA;
  --primary-l:   #00F0C8;
  --primary-dim: rgba(0,212,170,0.12);
  --primary-glow:rgba(0,212,170,0.20);
  --primary-ring:rgba(0,212,170,0.35);

  /* Accent — warm coral */
  --accent:      #FF6B4A;
  --accent-l:    #FF8F6B;
  --accent-dim:  rgba(255,107,74,0.12);

  /* Semantic */
  --green:       #10B981;
  --green-dim:   rgba(16,185,129,0.12);
  --amber:       #F59E0B;
  --amber-dim:   rgba(245,158,11,0.12);
  --red:         #EF4444;
  --red-dim:     rgba(239,68,68,0.12);

  /* Text */
  --t0: #F0F6FF;
  --t1: #C1D0E8;
  --t2: #7A8BA8;
  --t3: #3E4F6B;
  --t4: #253350;

  /* Typography */
  --f-display: 'Outfit', sans-serif;
  --f-body:    'Plus Jakarta Sans', sans-serif;
  --f-mono:    'JetBrains Mono', monospace;

  /* Radius */
  --r1: 6px;
  --r2: 10px;
  --r3: 14px;
  --r4: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 60px rgba(0,212,170,0.08);

  /* Layout */
  --max-w: 1200px;
  --nav-h: 68px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-base);
  color: var(--t1);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--t4); border-radius: 3px; }

/* ── Container ──────────────────────────────────────────────── */
.w { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.w--narrow { max-width: 800px; }
.w--wide   { max-width: 1400px; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(5,10,24,0.80);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav__logo { width: 34px; height: 34px; }
.nav__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--t0);
  letter-spacing: -0.02em;
}
.nav__name span { color: var(--primary); }
.nav__links {
  display: flex; align-items: center; gap: 6px;
}
.nav__link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t2);
  border-radius: var(--r2);
  transition: color 0.15s, background 0.15s;
}
.nav__link:hover { color: var(--t0); background: rgba(255,255,255,0.04); }
.nav__link--active { color: var(--t0); }
.nav__cta {
  margin-left: 12px;
  padding: 9px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg-base);
  background: var(--primary);
  border-radius: var(--r2);
  transition: opacity 0.15s, transform 0.15s;
}
.nav__cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Mobile nav */
.nav__burger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--t1); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__drawer {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg-surface);
  padding: 24px 28px;
  z-index: 199;
  flex-direction: column; gap: 4px;
  border-top: 1px solid var(--border);
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--t1);
  border-bottom: 1px solid var(--border);
}

@media(max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; border-radius: var(--r2);
  transition: all 0.18s cubic-bezier(0.4,0,0.2,1);
  letter-spacing: -0.01em; white-space: nowrap;
}
.btn--primary {
  padding: 13px 28px; font-size: 0.9375rem;
  background: var(--primary); color: var(--bg-base);
  box-shadow: 0 0 0 1px var(--primary-ring), 0 2px 8px rgba(0,212,170,0.20);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--primary-ring), 0 8px 24px rgba(0,212,170,0.25);
}
.btn--outline {
  padding: 12px 24px; font-size: 0.9375rem;
  background: transparent; color: var(--t0);
  border: 1px solid var(--border-light);
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn--sm {
  padding: 8px 16px; font-size: 0.8125rem;
}
.btn--lg {
  padding: 16px 32px; font-size: 1rem;
}
.btn--coral {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 8px rgba(255,107,74,0.25);
}
.btn--coral:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── Section helpers ────────────────────────────────────────── */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-surface); }
.section__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section__label::before {
  content: ''; display: block;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}
.section__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--t0);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 1.0625rem;
  color: var(--t2);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.06) 50%, transparent 90%);
}
.card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}
.card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card__icon--teal    { background: var(--primary-dim); color: var(--primary); }
.card__icon--coral   { background: var(--accent-dim);  color: var(--accent); }
.card__icon--green   { background: var(--green-dim);   color: var(--green); }
.card__icon--amber   { background: var(--amber-dim);   color: var(--amber); }
.card__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--t0);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.card__text {
  font-size: 0.9rem;
  color: var(--t2);
  line-height: 1.65;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 100px;
  overflow: hidden;
  min-height: 85vh;
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,170,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black, transparent);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--a {
  width: 400px; height: 400px;
  background: var(--primary);
  top: 10%; left: 15%;
  opacity: 0.12;
  animation-delay: 0s;
}
.hero__orb--b {
  width: 300px; height: 300px;
  background: var(--accent);
  bottom: 20%; right: 10%;
  opacity: 0.08;
  animation-delay: -3s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(15px, -20px) scale(1.05); }
  66%      { transform: translate(-10px, 10px) scale(0.95); }
}

.hero__content {
  position: relative; z-index: 1;
  max-width: 720px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 10px;
  background: var(--primary-dim);
  border: 1px solid var(--primary-ring);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary-l);
  margin-bottom: 28px;
  animation: fade-up 0.6s ease both;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--t0);
  letter-spacing: -0.05em;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fade-up 0.6s ease 0.1s both;
}
.hero__title .hl { color: var(--primary); }
.hero__sub {
  font-size: 1.125rem;
  color: var(--t2);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
  animation: fade-up 0.6s ease 0.2s both;
}
.hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fade-up 0.6s ease 0.3s both;
}
.hero__proof {
  display: flex; gap: 24px; margin-top: 48px;
  animation: fade-up 0.6s ease 0.4s both;
}
.hero__pf {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8125rem;
  color: var(--t2);
}
.hero__pf svg { color: var(--primary); flex-shrink: 0; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Score preview (hero right side) ────────────────────────── */
.hero__visual {
  position: absolute;
  right: -60px; top: 50%; transform: translateY(-50%);
  width: 440px;
  animation: fade-up 0.8s ease 0.5s both;
}
@media(max-width: 1100px) { .hero__visual { display: none; } }

.score-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r4);
  padding: 28px;
  box-shadow: var(--shadow-glow);
}
.score-preview__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.score-preview__artist {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--t0);
}
.score-preview__type {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--primary-dim);
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.score-preview__big {
  text-align: center;
  padding: 20px 0 24px;
}
.score-preview__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--primary);
  letter-spacing: -0.06em;
  line-height: 1;
}
.score-preview__label {
  font-size: 0.75rem;
  color: var(--t3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.score-preview__dims { display: flex; flex-direction: column; gap: 10px; }
.dim-row {
  display: flex; align-items: center; gap: 10px;
}
.dim-row__label {
  font-size: 0.75rem;
  color: var(--t2);
  width: 120px;
  flex-shrink: 0;
}
.dim-row__bar {
  flex: 1; height: 5px;
  background: var(--bg-base);
  border-radius: 3px;
  overflow: hidden;
}
.dim-row__fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}
.dim-row__val {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--t1);
  width: 28px;
  text-align: right;
}

/* ── Trust strip ────────────────────────────────────────────── */
.trust-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.trust-strip__inner {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-strip__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8125rem;
  color: var(--t2);
  font-weight: 500;
}
.trust-strip__item svg { color: var(--primary); opacity: 0.7; }

/* ── Feature grid ───────────────────────────────────────────── */
.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media(max-width: 900px) { .fgrid { grid-template-columns: 1fr; } }

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
@media(max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r4);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.06) 50%, transparent 90%);
}
.price-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}
.price-card--featured {
  border-color: var(--primary-ring);
  box-shadow: 0 0 60px rgba(0,212,170,0.06);
}
.price-card--featured::before {
  background: linear-gradient(90deg, transparent 5%, var(--primary-ring) 50%, transparent 95%);
}
.price-card__popular {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.65rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  background: var(--primary-dim);
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-card__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--t0);
  margin-bottom: 6px;
}
.price-card__desc {
  font-size: 0.8125rem;
  color: var(--t2);
  margin-bottom: 20px;
  line-height: 1.5;
}
.price-card__amount {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 24px;
}
.price-card__dollar {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 2.75rem;
  color: var(--t0);
  letter-spacing: -0.05em;
  line-height: 1;
}
.price-card__period {
  font-size: 0.8125rem;
  color: var(--t3);
}
.price-card__features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.price-card__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.8125rem;
  color: var(--t1);
  line-height: 1.5;
}
.price-card__features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-card__cta {
  width: 100%;
  justify-content: center;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 700px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--t0);
  text-align: left;
  cursor: pointer;
  background: none; border: none;
  font-family: var(--f-body);
}
.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--t3);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--t2);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  background: var(--bg-surface);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media(max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
.footer__brand-text {
  font-size: 0.8125rem;
  color: var(--t3);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer__col-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--t0);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.footer__link {
  display: block;
  font-size: 0.8125rem;
  color: var(--t2);
  padding: 4px 0;
  transition: color 0.15s;
}
.footer__link:hover { color: var(--primary); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--t3);
}
.footer__legal { display: flex; gap: 20px; }

/* ── Contact form ───────────────────────────────────────────── */
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: var(--f-body);
  color: var(--t0);
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--r2);
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237A8BA8' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.form-select option { background: var(--bg-card); color: var(--t0); }

/* ── Utility ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-40 { margin-top: 40px; }
.mb-60 { margin-bottom: 60px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.hidden { display: none !important; }

/* ── Animations ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ═══════════════════════════════════════════════════════════════
   PHASE 1 — Hero v2 + Stats Strip
   Append this entire block to the END of styles.css
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero v2 Container ──────────────────────────────────────── */
.h2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--nav-h) + 72px) 0 60px;
  overflow: hidden;
}

/* ── Dot grid background ────────────────────────────────────── */
.h2-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.h2-hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,212,170,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 55% 55% at 50% 38%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 55% 55% at 50% 38%, black 0%, transparent 100%);
}
.h2-hero__pulse {
  position: absolute;
  top: 28%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 70%);
  animation: h2-pulse 5s ease-in-out infinite;
}
@keyframes h2-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.7; transform: translate(-50%, -50%) scale(1.15); }
}

/* ── Hero content ───────────────────────────────────────────── */
.h2-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Headline ───────────────────────────────────────────────── */
.h2-hero__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  color: var(--t0);
  letter-spacing: -0.05em;
  line-height: 1.06;
  margin-bottom: 20px;
  animation: h2-fadeUp 0.7s ease both;
}

/* ── Subheadline ────────────────────────────────────────────── */
.h2-hero__sub {
  font-size: 1.0625rem;
  color: var(--t2);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
  animation: h2-fadeUp 0.7s ease 0.1s both;
}

/* ── CTAs ────────────────────────────────────────────────────── */
.h2-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: h2-fadeUp 0.7s ease 0.2s both;
}

/* ── Proof points ───────────────────────────────────────────── */
.h2-hero__proof {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
  animation: h2-fadeUp 0.7s ease 0.3s both;
}
.h2-hero__pf {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--t2);
}
.h2-hero__pf svg { color: var(--primary); flex-shrink: 0; }

/* ── Entrance animation ─────────────────────────────────────── */
@keyframes h2-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Product Mockup ─────────────────────────────────────────── */
.h2-mockup {
  width: 100%;
  max-width: 580px;
  margin-top: 52px;
  animation: h2-fadeUp 0.8s ease 0.4s both;
  position: relative;
}
.h2-mockup__card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,212,170,0.06),
    0 8px 40px rgba(0,0,0,0.4),
    0 0 80px rgba(0,212,170,0.04);
}
.h2-mockup__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(0,212,170,0.15) 50%, transparent 90%);
}

/* Mockup header */
.h2-mockup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.h2-mockup__artist {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--t0);
}
.h2-mockup__badge {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--primary-dim);
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Mockup body: score + dims side by side */
.h2-mockup__body {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* Score column */
.h2-mockup__score-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 100px;
}
.h2-mockup__ring {
  position: relative;
  width: 80px;
  height: 80px;
}
.h2-mockup__ring svg { width: 100%; height: 100%; }
.h2-mockup__num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--t0);
  letter-spacing: -0.05em;
}
.h2-mockup__score-label {
  font-size: 0.6875rem;
  color: var(--t3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}
.h2-mockup__potential {
  font-size: 0.75rem;
  color: var(--t2);
  margin-top: 4px;
}
.h2-mockup__potential strong { color: var(--primary); }

/* Dimension bars */
.h2-mockup__dims {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.h2-dim {
  display: flex;
  align-items: center;
  gap: 8px;
}
.h2-dim__name {
  font-size: 0.6875rem;
  color: var(--t2);
  width: 80px;
  flex-shrink: 0;
  text-align: right;
}
.h2-dim__track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  overflow: hidden;
}
.h2-dim__fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.h2-dim__fill--good { background: var(--primary); }
.h2-dim__fill--ok   { background: var(--primary); opacity: 0.7; }
.h2-dim__fill--warn { background: var(--amber); }
.h2-dim__fill--crit { background: var(--accent); }
.h2-dim__val {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--t1);
  width: 22px;
  text-align: right;
}
.h2-dim__grade {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--t2);
  width: 14px;
}
.h2-dim__grade--warn { color: var(--amber); }
.h2-dim__grade--crit { color: var(--accent); }

/* Finding cards */
.h2-mockup__findings {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.h2-finding {
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid transparent;
}
.h2-finding--crit {
  background: rgba(255,107,74,0.05);
  border-left-color: var(--accent);
}
.h2-finding--high {
  background: rgba(245,158,11,0.05);
  border-left-color: var(--amber);
}
.h2-finding__sev {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.h2-finding--crit .h2-finding__sev { color: var(--accent); }
.h2-finding--high .h2-finding__sev { color: var(--amber); }
.h2-finding__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t0);
  display: block;
}
.h2-finding__detail {
  font-size: 0.75rem;
  color: var(--t2);
  display: block;
  margin-top: 2px;
}

/* Recommendation peek */
.h2-mockup__reco { margin-bottom: 8px; }
.h2-reco {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--primary-dim);
  border: 1px solid rgba(0,212,170,0.10);
}
.h2-reco__head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.h2-reco__icon { font-size: 0.75rem; }
.h2-reco__label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}
.h2-reco__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--t0);
  display: block;
  margin-bottom: 8px;
}
.h2-reco__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.h2-reco__tag {
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.h2-reco__tag--impact {
  background: rgba(16,185,129,0.12);
  color: var(--green);
}
.h2-reco__tag--diff {
  background: rgba(255,255,255,0.05);
  color: var(--t2);
}
.h2-reco__tag--gain {
  background: rgba(0,212,170,0.12);
  color: var(--primary);
}

/* Fade overlay at bottom of mockup */
.h2-mockup__fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-card) 85%);
  pointer-events: none;
  border-radius: 0 0 16px 16px;
}

/* ── Mockup responsive ──────────────────────────────────────── */
@media (max-width: 520px) {
  .h2-mockup__body {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .h2-mockup__score-col { min-width: auto; }
  .h2-dim__name { width: 70px; font-size: 0.625rem; }
  .h2-mockup__card { padding: 18px 16px; }
}

/* ── Score ring animation ───────────────────────────────────── */
.h2-ring-fill {
  transition: stroke-dashoffset 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════════════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════════════════ */
.h2-stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 36px 0;
}
.h2-stats__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.h2-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.h2-stats__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--t0);
  letter-spacing: -0.04em;
  line-height: 1;
}
.h2-stats__label {
  font-size: 0.75rem;
  color: var(--t3);
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.h2-stats__div {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Stats responsive */
@media (max-width: 640px) {
  .h2-stats__row { flex-wrap: wrap; gap: 20px; }
  .h2-stats__div { display: none; }
  .h2-stats__item { padding: 0 20px; flex: 0 0 45%; }
}
