/* Page-specific styles for /merchant-center-audit/ that ride on top of design-system.css */

/* Override topbar to use accent gradient like the rest of the site */
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  font-size: var(--fs-sm);
  text-align: center;
  padding: 9px 16px;
}

/* Brand mark — apply same square logo treatment */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(7, 9, 15, 0.86); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid var(--border); max-width: none; padding: 0; display: block; }
.nav > * { max-width: var(--max); }
.nav { display: flex; justify-content: center; }
.nav .brand, .nav .nav-links { padding: 0; }

/* Hero — give it the same gradient backdrop */
.hero {
  position: relative;
  overflow: hidden;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px 48px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 35% at 30% 20%, rgba(245, 165, 36, 0.14), transparent 60%),
    radial-gradient(ellipse 45% 30% at 80% 60%, rgba(96, 165, 250, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* Badge → pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  color: #fcd34d;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Hero title and lead spacing */
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  font-weight: 800;
}
.lead {
  font-size: var(--fs-lg);
  color: var(--text-2);
  max-width: 640px;
  margin-bottom: 22px;
}

/* Trust strip pills */
.trust-strip { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.trust-pill {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  color: var(--text-2);
  font-weight: 600;
}

/* Hero card — match design system card with stronger accent */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 28px;
}
.hero-card h2 { font-size: 1.1rem; margin-bottom: 14px; }
.hero-card .checklist li { color: var(--text-2); }

/* Hero layout — make 2 columns on desktop */
.hero { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 36px; align-items: start; }
@media (max-width: 920px) { .hero { grid-template-columns: 1fr; padding: 56px 20px 32px; } }

/* CTA row */
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.subnote { color: var(--muted); font-size: var(--fs-sm); margin-bottom: 6px; }

/* Buttons already inherit from design-system */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a0f00;
  box-shadow: var(--shadow-glow);
}
.btn-secondary { background: var(--surface-2); color: var(--text); border-color: var(--border-strong); }
.btn-ghost { background: transparent; color: var(--text-2); border-color: var(--border); }

/* Section structure */
.section { margin-top: 64px; }
.section h2 { font-size: var(--fs-3xl); margin-bottom: 12px; }
.intro, .section-intro { color: var(--muted); margin-bottom: 22px; max-width: 720px; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 920px) { .grid-3, .grid.grid-3 { grid-template-columns: 1fr; } .grid.grid-2 { grid-template-columns: 1fr; } }

/* Card override — match design system */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.card p { color: var(--muted); font-size: var(--fs-sm); }

/* Pricing card */
.price-card {
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 520px;
  margin: 0 auto;
}
.label { font-size: var(--fs-xs); color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.price { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin: 12px 0 6px; }
.pricing-list { list-style: none; display: grid; gap: 10px; margin: 18px 0; }
.pricing-list li { color: var(--text-2); font-size: var(--fs-sm); padding-left: 24px; position: relative; }
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

/* Sample callout */
.sample-callout {
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

/* Gumroad note */
.gumroad-note { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; color: var(--text-2); font-size: var(--fs-sm); }

/* Warning */
.warning {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: var(--radius);
  padding: 18px;
  color: #fecaca;
  font-size: var(--fs-sm);
}

/* FAQ */
.faq h3 { font-size: 1.05rem; margin-bottom: 8px; }
.faq p { color: var(--muted); font-size: var(--fs-sm); margin-bottom: 16px; }

/* Container/footer use design system */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px 80px; }
.footer { border-top: 1px solid var(--border); padding: 32px 24px; text-align: center; color: var(--muted); font-size: var(--fs-sm); margin-top: 56px; background: var(--bg-2); }
