/* Landing page additions \u2014 loaded after styles.css, reuses the same
   tokens (--ink, --amber, --steel, etc.) defined there. */

.m-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 64px;
  border-bottom: 3px solid var(--amber);
}

.m-hero-inner { max-width: 640px; }

.m-hero .eyebrow { color: var(--amber); }

.m-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.0;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.m-hero .lead {
  font-size: 16.5px;
  color: var(--steel-light);
  margin: 0 0 28px;
  max-width: 52ch;
}

.m-cta-row { display: flex; gap: 12px; margin-bottom: 18px; }

.m-hero .btn.ghost {
  color: var(--paper);
  border-color: var(--steel-light);
}
.m-hero .btn.ghost:hover { background: rgba(237,234,225,0.08); }

.m-hero-meta {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--steel-light);
  margin: 0;
}

.m-section { padding: 56px 0; border-bottom: 1px solid var(--line); }
.m-section-alt { background: var(--paper-dim); }
.m-section-sub {
  font-size: 14.5px;
  color: var(--steel);
  margin: -10px 0 24px;
  max-width: 60ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 20px;
}

.feature-card i { font-size: 22px; color: var(--amber-dark); }

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  margin: 10px 0 8px;
}

.feature-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* module grid reuses .tag-grid / .tag-card from styles.css, non-clickable here */
#landing-module-grid .tag-card { cursor: default; }
#landing-module-grid .tag-card:hover { transform: none; }

.m-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.m-audience-grid h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  margin: 0 0 8px;
}

.m-audience-grid p { font-size: 14px; color: var(--ink-soft); margin: 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.m-pricing-note {
  font-size: 12.5px;
  color: var(--steel);
  margin: 16px 0 0;
  max-width: 60ch;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--amber);
  box-shadow: 0 4px 0 rgba(232,163,61,0.25);
}

.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  margin: 6px 0 10px;
}

.price-desc { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 14px; }

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--ink-soft);
}

.price-card li { padding: 5px 0; border-top: 1px solid var(--line); }
.price-card li:first-child { border-top: none; }

.price-card .btn { margin-top: auto; }

.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 720px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 18px;
}

.faq-item summary {
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.faq-item p { font-size: 14px; color: var(--ink-soft); margin: 10px 0 0; }

.m-cta-band {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 56px 0;
}

.m-cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  margin: 0 0 20px;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .m-hero h1 { font-size: 34px; }
  .feature-grid, .m-audience-grid, .pricing-grid { grid-template-columns: 1fr; }
  .m-cta-row { flex-direction: column; }
}
