*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: #fafaf8;
  color: #0a0a0a;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
[hidden] { display: none !important; }

/* Container per spec — max-width 1200px, centered, padding sides */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Headings */
h1, h2, h3 { font-family: 'Unbounded', sans-serif; font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; }

/* Lime accent on dark badge (used in hero etc.) */
.accent {
  background: #0a0a0a;
  color: #ccff00;
  padding: 1px 12px;
  border-radius: 6px;
  white-space: nowrap;
  display: inline-block;
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #0a0a0a;
  border-radius: 999px;
  font-family: 'Onest', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ccff00;
}

/* CTA buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: #0a0a0a;
  color: #fff;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover { background: #1a1a1a; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 25px;
  background: #fff;
  color: #0a0a0a;
  border: 1px solid #d0d0d0;
  font-family: 'Onest', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 999px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.btn-secondary:hover { border-color: #0a0a0a; transform: translateY(-1px); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  margin: 24px 0 20px;
  max-width: 600px;
}
.hero-lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: #555;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-visual img {
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  width: 100%;
}

@media (max-width: 900px) {
  .hero { padding: 56px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; }
}

/* ── General section style ────────────────────────────────── */
section { padding: 80px 0; }
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  margin: 16px 0 40px;
  max-width: 720px;
}

/* ── Problem ──────────────────────────────────────────────── */
.problem { background: #fff; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem-item {
  padding: 32px;
  background: #fafaf8;
  border-radius: 16px;
  border: 1px solid #ececec;
}
.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #0a0a0a;
  color: #ccff00;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 18px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.problem-item h3 { font-size: 20px; margin-bottom: 8px; }
.problem-item p { color: #555; font-size: 15px; line-height: 1.5; }

/* ── Features ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-item {
  padding: 24px;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fff;
}
.feature-item h3 { font-size: 18px; margin-bottom: 8px; }
.feature-item p { color: #555; font-size: 14px; line-height: 1.5; }

@media (max-width: 900px) {
  section { padding: 56px 0; }
  .problem-grid, .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .problem-item { padding: 24px; }
}

/* ── Steps ────────────────────────────────────────────────── */
.steps { background: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  padding: 28px;
  background: #fafaf8;
  border-radius: 16px;
  position: relative;
}
.step-number {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #ccff00;
  -webkit-text-stroke: 1px #0a0a0a;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: #555; font-size: 14px; line-height: 1.5; }

/* ── Demo ─────────────────────────────────────────────────── */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.demo-shot {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  overflow: hidden;
}
.demo-shot img {
  width: 100%;
  display: block;
}
.demo-shot figcaption {
  padding: 16px 20px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ececec;
}
.demo-cta {
  text-align: center;
}
.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
}
.demo-note {
  margin-top: 16px;
  font-size: 13px;
  color: #696969; /* darkened from #888 for WCAG 4.5:1 contrast on #fafaf8 bg */
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .demo-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing { background: #fff; }
.pricing-card {
  max-width: 720px;
  padding: 48px;
  background: #fafaf8;
  border: 1px solid #ececec;
  border-radius: 24px;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.pricing-from { font-size: 20px; color: #696969; } /* darkened from #888 for WCAG 4.5:1 contrast */
.pricing-number {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 56px;
  color: #0a0a0a;
}
.pricing-meta { font-size: 15px; color: #555; }
.pricing-includes {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-includes li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid #ececec;
  font-size: 15px;
  position: relative;
}
.pricing-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ccff00;
  background: #0a0a0a;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  top: 50%;
  transform: translateY(-50%);
}
.pricing-note {
  font-size: 13px;
  color: #696969; /* darkened from #888 for WCAG 4.5:1 contrast */
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ── Final CTA ────────────────────────────────────────────── */
.final-cta {
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}
.cta-title {
  font-size: clamp(32px, 4vw, 56px);
  color: #fff;
  margin-bottom: 16px;
}
.cta-title .accent { background: #ccff00; color: #0a0a0a; }
.cta-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}
.final-cta .btn-primary { background: #ccff00; color: #0a0a0a; }
.final-cta .btn-primary:hover { background: #d8ff33; }
.final-cta .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.final-cta .btn-secondary:hover { border-color: #fff; }
.cta-email {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.cta-email a { color: #ccff00; }

@media (max-width: 600px) {
  .pricing-card { padding: 28px; }
  .pricing-number { font-size: 40px; }
  .final-cta { padding: 64px 0; }
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ececec;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.header-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #555;
}
.header-nav a:hover { color: #0a0a0a; }
.header-cta {
  padding: 10px 20px;
  font-size: 14px;
}

@media (max-width: 800px) {
  .header-nav { display: none; }
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.5; }
.footer-col h3 { font-family: 'Onest', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col a { display: block; padding: 4px 0; color: rgba(255,255,255,0.85); font-size: 14px; }
.footer-col a:hover { color: #ccff00; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.6); /* boosted from 0.4 for WCAG 4.5:1 contrast on #0a0a0a bg */
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ── Modal ────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(4px);
}
.modal-content {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: #f5f5f3;
  border-radius: 50%;
  font-size: 20px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content h2 { font-size: 24px; margin-bottom: 8px; }
.modal-lede { color: #555; font-size: 14px; margin-bottom: 24px; }
#lead-form label {
  display: block;
  margin-bottom: 16px;
}
#lead-form label span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #0a0a0a;
}
#lead-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.15s ease;
}
#lead-form input:focus {
  outline: none;
  border-color: #0a0a0a;
}
.honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }
#lead-form button[type="submit"] { width: 100%; margin-top: 8px; }
.form-status { margin-top: 16px; font-size: 13px; min-height: 18px; }
.form-status.success { color: #2a9b3a; }
.form-status.error { color: #c12d3a; }

body.modal-open { overflow: hidden; }

@media (max-width: 600px) {
  .modal-content { padding: 28px 24px; }
}
