/* The Not-Hard Kit — self-hosted styles (no CDN dependency) */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: #fafafa;
  color: #18181b;
  line-height: 1.6;
}

.heading {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: -0.02em;
  margin: 0;
}

a { color: inherit; }

/* Layout */
.container { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
.container-xl { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* Header */
.site-header {
  border-bottom: 1px solid #e4e4e7;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand-title { font-weight: 700; font-size: 1.125rem; color: #18181b; }
.brand-sub { font-size: 0.75rem; color: #71717a; margin-left: 0.5rem; }
.skip-link { font-size: 0.875rem; color: #be123c; font-weight: 600; text-decoration: none; }
.skip-link:hover { color: #881337; }

/* Sections */
.section { padding: 3.5rem 0; }
.section-hero { padding: 3rem 0 4rem; border-bottom: 1px solid #e4e4e7; background: #fff; }
.section-dark { background: #18181b; color: #fafafa; }
.section-muted { background: #fafafa; }
.section-rose { background: #fff1f2; border-top: 1px solid #fecdd3; border-bottom: 1px solid #fecdd3; }
.section-white { background: #fff; border-bottom: 1px solid #e4e4e7; }
.section-white-top { background: #fff; border-top: 1px solid #e4e4e7; }

/* Type */
.eyebrow {
  color: #be123c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.eyebrow-dark { color: #fecdd3; letter-spacing: 0.15em; }
.hero-title {
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 1.5rem;
  color: #09090b;
}
.hero-title span { color: #52525b; }
.lead { font-size: 1.125rem; color: #3f3f46; margin: 0 0 1rem; }
.lead-strong { font-size: 1.125rem; font-weight: 600; color: #18181b; margin: 0 0 2rem; }
.lead-strong .price { color: #9f1239; }
.section-title { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; margin: 0 0 1rem; }
.section-title-lg { font-size: clamp(1.75rem, 4vw, 2.25rem); }
.section-title-center { text-align: center; margin-bottom: 0.75rem; }
.subhead { text-align: center; color: #52525b; max-width: 42rem; margin: 0 auto 2rem; }

/* Dark section text */
.section-dark .section-title { color: #f4f4f5; }
.section-dark .lead,
.section-dark p { color: #d4d4d8; }
.section-dark .pull-quote {
  color: #f4f4f5;
  font-size: 1.125rem;
  font-weight: 500;
  border-left: 4px solid #be123c;
  padding-left: 1.25rem;
  margin: 2rem 0;
}
.section-dark .offer-title { color: #fafafa; }
.section-dark .offer-sub { color: #d4d4d8; max-width: 36rem; margin: 0 auto 2rem; }
.section-dark .fine { color: #a1a1aa; font-size: 0.875rem; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #9f1239 0%, #be123c 100%);
  box-shadow: 0 4px 24px rgba(190, 18, 60, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(190, 18, 60, 0.35);
}
.cta-block { text-align: center; }
.cta-note { font-size: 0.875rem; color: #71717a; margin-top: 0.75rem; }

/* Cards */
.card {
  background: #fff;
  border: 1px solid #e4e4e7;
  color: #18181b;
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.card-lg { padding: 2rem; border-radius: 0.75rem; }
.card-shadow { box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.card-bad { border-color: #fecaca; background: rgba(254, 242, 242, 0.6); }
.card-good { border-color: #a1a1aa; background: #fafafa; }
.card-rose { border-color: #fb7185; background: #fff; }
.bump-card {
  background: #fff1f2;
  border: 2px solid #fda4af;
  color: #18181b;
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.bump-card-lg { padding: 2rem; max-width: 42rem; margin: 0 auto 2rem; text-align: left; }
.bump-card-sm { max-width: 28rem; margin: 0 auto 1.5rem; padding: 1.25rem; text-align: left; }

.label-xs {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}
.label-bad { color: #991b1b; }
.label-good { color: #3f3f46; }
.label-muted { color: #52525b; }
.label-rose { color: #9f1239; }

/* Grids */
.stack { display: grid; gap: 1.5rem; }
.stack-sm { gap: 0.75rem; }
.grid-2 { display: grid; gap: 0.75rem; }
.grid-2-wide { display: grid; gap: 1.5rem; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .grid-2-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-lg { padding: 2rem; }
  .bump-card-lg { padding: 2rem; }
}

.grid-4 {
  display: grid;
  gap: 0.75rem;
  max-width: 56rem;
  margin: 0 auto;
  font-size: 0.875rem;
  color: #27272a;
}
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Proof strip */
.proof-strip {
  max-width: 36rem;
  margin: 0 auto 2rem;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(9, 9, 11, 0.06);
}
.proof-strip figure { margin: 0; position: relative; background: #f4f4f5; }
.proof-strip img {
  display: block;
  width: 100%;
  height: auto;
  filter: blur(2.5px) saturate(0.92);
  transform: scale(1.03);
}
.proof-strip figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.55));
  pointer-events: none;
}
.proof-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9f1239;
  background: rgba(255,255,255,.92);
  border: 1px solid #fda4af;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
}
.proof-line {
  margin: 0;
  padding: 1rem 1.15rem 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #52525b;
  border-top: 1px solid #f4f4f5;
  background: #fafafa;
}
.proof-line em { font-style: normal; color: #18181b; font-weight: 600; }

/* Bump checkbox */
.bump-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}
.bump-label input { margin-top: 0.25rem; width: 1.25rem; height: 1.25rem; accent-color: #be123c; flex-shrink: 0; }
.bump-label-sm { gap: 0.75rem; }
.bump-label-sm input { width: 1.125rem; height: 1.125rem; }

/* Lists */
.check-list { margin: 1rem 0 0; padding: 0; list-style: none; font-size: 0.875rem; color: #3f3f46; }
.check-list li { margin-bottom: 0.5rem; }
.fine-print { font-size: 0.75rem; color: #9f1239; font-weight: 600; margin-top: 1rem; }

/* Objections */
.objection-title { font-weight: 700; color: #18181b; margin: 0 0 0.25rem; }
.objection-body { font-size: 0.875rem; color: #52525b; margin: 0; }

/* Footer */
.site-footer {
  border-top: 1px solid #e4e4e7;
  padding: 2rem 0;
  font-size: 0.875rem;
  color: #71717a;
  background: #fafafa;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.footer-nav a { color: #52525b; text-decoration: none; }
.footer-nav a:hover { color: #18181b; text-decoration: underline; }

/* Utilities */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.text-rose { color: #9f1239; }
.text-2xl { font-size: 1.5rem; font-weight: 700; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }