/* =============================================================================
   styles-marketing.css — DentBooks marketing site stylesheet
   =============================================================================
   Used by: index.html (landing) + about.html + pricing.html + blog.html +
   contact.html. Self-contained — no dependency on the PWA's styles.css.
   Green palette matches signup.html / verify.html / onboarding.html
   per #270 (brand cohesion across the conversion funnel).

   Layout philosophy:
     - Light-only (no dark theme on marketing pages)
     - Mobile-first; breakpoints at 768px / 1024px
     - Canonical spacing scale 4 / 8 / 12 / 16 / 20 / 24 / 32 / 48 / 64 / 96
     - Apple HIG touch targets ≥44×44px
     - WCAG AA body-text contrast
============================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Green palette (from #270 auth pages) */
  --mkt-bg-dark:            #0e1d18;
  --mkt-bg-light:           #f0ebe2;
  --mkt-bg-cream:           #faf7f1;
  --mkt-card-dark:          #142823;
  --mkt-card-light:         #ffffff;
  --mkt-accent:             #34d680;
  --mkt-accent-strong:      #29b86b;
  --mkt-accent-soft:        rgba(52, 214, 128, 0.12);
  --mkt-accent-fg:          #0e1d18;
  --mkt-text-on-dark:       #f6f3ee;
  --mkt-text-on-light:      #0e1d18;
  --mkt-ink-2-on-dark:      #a4ada8;
  --mkt-ink-3-on-dark:      #7a847f;
  --mkt-ink-2-on-light:     #3e4d47;
  --mkt-ink-3-on-light:     #6a7570;
  --mkt-border-dark:        rgba(255, 255, 255, 0.08);
  --mkt-border-strong-dark: rgba(255, 255, 255, 0.14);
  --mkt-border-light:       rgba(14, 29, 24, 0.10);
  --mkt-shadow-soft:        0 1px 2px rgba(14, 29, 24, 0.04), 0 4px 12px rgba(14, 29, 24, 0.05);
  --mkt-shadow-card:        0 10px 30px -12px rgba(14, 29, 24, 0.18);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--mkt-bg-cream);
  color: var(--mkt-text-on-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--mkt-accent-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; letter-spacing: -0.02em; }
p { margin: 0; }

/* ---------- Layout primitives ---------- */
.mkt-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.mkt-container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.mkt-section {
  padding: 64px 0;
}
.mkt-section-dark {
  background: var(--mkt-bg-dark);
  color: var(--mkt-text-on-dark);
}
.mkt-section-cream {
  background: var(--mkt-bg-light);
}
@media (min-width: 768px) {
  .mkt-section { padding: 96px 0; }
}

/* ---------- Navbar ---------- */
.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--mkt-bg-dark);
  border-bottom: 1px solid var(--mkt-border-dark);
  backdrop-filter: saturate(160%);
}
.mkt-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mkt-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mkt-text-on-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.mkt-brand:hover { text-decoration: none; }
.mkt-brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--mkt-accent);
  color: var(--mkt-accent-fg);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.mkt-nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
.mkt-nav-links a {
  color: var(--mkt-ink-2-on-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease-out;
}
.mkt-nav-links a:hover,
.mkt-nav-links a.active {
  color: var(--mkt-text-on-dark);
}
.mkt-nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mkt-nav-signin {
  color: var(--mkt-ink-2-on-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.mkt-nav-signin:hover {
  color: var(--mkt-text-on-dark);
  text-decoration: none;
}
@media (min-width: 768px) {
  .mkt-nav-links { display: flex; }
}

/* ---------- Buttons ---------- */
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 160ms ease-out, border-color 160ms ease-out, transform 100ms ease-out;
  cursor: pointer;
  white-space: nowrap;
}
.mkt-btn:hover { text-decoration: none; }
.mkt-btn:active { transform: translateY(1px); }

.mkt-btn-primary {
  background: var(--mkt-accent);
  color: var(--mkt-accent-fg);
  border-color: var(--mkt-accent);
}
.mkt-btn-primary:hover {
  background: var(--mkt-accent-strong);
  border-color: var(--mkt-accent-strong);
}
.mkt-btn-secondary {
  background: transparent;
  color: var(--mkt-text-on-dark);
  border-color: var(--mkt-border-strong-dark);
}
.mkt-btn-secondary:hover {
  background: var(--mkt-border-dark);
  border-color: var(--mkt-text-on-dark);
}
.mkt-btn-secondary-light {
  background: transparent;
  color: var(--mkt-text-on-light);
  border-color: var(--mkt-border-light);
}
.mkt-btn-secondary-light:hover {
  background: var(--mkt-accent-soft);
  border-color: var(--mkt-accent);
}
.mkt-btn-lg {
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
}

/* ---------- Hero ---------- */
.mkt-hero {
  background: var(--mkt-bg-dark);
  color: var(--mkt-text-on-dark);
  padding: 80px 0 96px;
  text-align: center;
}
@media (min-width: 768px) {
  .mkt-hero { padding: 120px 0 144px; }
}
.mkt-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-accent);
  margin-bottom: 16px;
}
.mkt-hero-h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  max-width: 820px;
  margin: 0 auto 20px;
  color: var(--mkt-text-on-dark);
}
@media (min-width: 768px) {
  .mkt-hero-h1 { font-size: 56px; }
}
.mkt-hero-sub {
  font-size: 17px;
  color: var(--mkt-ink-2-on-dark);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .mkt-hero-sub { font-size: 19px; }
}
.mkt-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 480px) {
  .mkt-hero-ctas { flex-direction: row; justify-content: center; }
}
.mkt-hero-visual {
  margin: 56px auto 0;
  max-width: 760px;
  border-radius: var(--radius-lg);
  background: var(--mkt-card-dark);
  border: 1px solid var(--mkt-border-dark);
  padding: 24px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}
.mkt-hero-visual-placeholder {
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(52, 214, 128, 0.04),
      rgba(52, 214, 128, 0.04) 12px,
      transparent 12px,
      transparent 24px
    ),
    var(--mkt-bg-dark);
  border: 1px dashed var(--mkt-border-strong-dark);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--mkt-ink-3-on-dark);
  font-size: 13px;
  text-align: center;
  padding: 24px;
}

/* ---------- Section headings ---------- */
.mkt-section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-accent-strong);
  margin-bottom: 12px;
}
.mkt-section-eyebrow-on-dark { color: var(--mkt-accent); }
.mkt-section-h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 720px;
}
@media (min-width: 768px) {
  .mkt-section-h2 { font-size: 40px; }
}
.mkt-section-lede {
  font-size: 17px;
  color: var(--mkt-ink-2-on-light);
  max-width: 640px;
  line-height: 1.6;
}
.mkt-section-dark .mkt-section-lede { color: var(--mkt-ink-2-on-dark); }
.mkt-section-h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Value-prop alternating sections ---------- */
.mkt-value {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.mkt-value + .mkt-value { margin-top: 64px; }
@media (min-width: 768px) {
  .mkt-value { grid-template-columns: 1fr 1fr; gap: 64px; }
  .mkt-value + .mkt-value { margin-top: 96px; }
  .mkt-value-reverse .mkt-value-text { order: 2; }
}
.mkt-value-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-accent-strong);
  margin-bottom: 12px;
}
.mkt-value h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .mkt-value h3 { font-size: 32px; }
}
.mkt-value-body {
  font-size: 16px;
  color: var(--mkt-ink-2-on-light);
  margin-bottom: 20px;
  line-height: 1.7;
}
.mkt-value-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.mkt-value-bullets li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--mkt-text-on-light);
}
.mkt-value-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--mkt-accent-soft);
  border-radius: 50%;
  background-image:
    radial-gradient(circle, var(--mkt-accent-strong) 0 4px, transparent 5px);
}
.mkt-value-visual {
  aspect-ratio: 4 / 3;
  background: var(--mkt-card-light);
  border: 1px solid var(--mkt-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--mkt-shadow-card);
  display: grid;
  place-items: center;
  color: var(--mkt-ink-3-on-light);
  font-size: 13px;
  text-align: center;
  padding: 32px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(52, 214, 128, 0.04),
      rgba(52, 214, 128, 0.04) 14px,
      transparent 14px,
      transparent 28px
    ),
    var(--mkt-card-light);
}

/* Day 35 — product screenshot wrapper for the 5 real mobile-viewport
   captures shipped post-Tier-A. The original .mkt-value-visual placeholder
   used a 4:3 dashed card; real screenshots are portrait phone captures,
   so this variant clears the placeholder chrome and centers the image
   at a max-width that reads as "phone showing the dashboard" on desktop
   (340px) without stretching full-width. Maintains the section column
   layout from .mkt-value's grid. */
.mkt-value-visual-image {
  aspect-ratio: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mkt-product-shot {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 22px 56px -22px rgba(14, 29, 24, 0.28);
}
/* Hero visual hosts the screenshot inside the existing dark card frame —
   no chrome reset needed, just constrain image width so the dark card
   reads as device bezel around a phone screenshot. */
.mkt-hero-visual .mkt-product-shot {
  max-width: 320px;
  margin: 0 auto;
}

/* ---------- Testimonial ---------- */
.mkt-testimonial {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px;
}
.mkt-testimonial-quote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--mkt-text-on-light);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .mkt-testimonial-quote { font-size: 28px; }
}
.mkt-testimonial-result {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--mkt-accent-soft);
  color: var(--mkt-accent-strong);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.mkt-testimonial-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mkt-testimonial-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mkt-bg-light);
  border: 1px dashed var(--mkt-border-light);
  display: grid;
  place-items: center;
  color: var(--mkt-ink-3-on-light);
  font-size: 11px;
  margin-bottom: 8px;
}
.mkt-testimonial-name {
  font-weight: 700;
  font-size: 15px;
}
.mkt-testimonial-meta {
  font-size: 13px;
  color: var(--mkt-ink-2-on-light);
}
.mkt-testimonial-placeholder {
  color: var(--mkt-ink-3-on-light);
  font-style: italic;
}

/* ---------- How it works (numbered steps) ---------- */
.mkt-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .mkt-steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.mkt-step {
  background: var(--mkt-card-light);
  border: 1px solid var(--mkt-border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--mkt-shadow-soft);
}
.mkt-step-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mkt-accent-soft);
  color: var(--mkt-accent-strong);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}
.mkt-step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.mkt-step p {
  font-size: 14px;
  color: var(--mkt-ink-2-on-light);
  line-height: 1.6;
}

/* ---------- Pricing teaser cards (on dark) ---------- */
.mkt-pricing-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .mkt-pricing-teaser { grid-template-columns: repeat(3, 1fr); }
}
.mkt-pricing-card {
  background: var(--mkt-card-dark);
  border: 1px solid var(--mkt-border-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--mkt-text-on-dark);
  display: flex;
  flex-direction: column;
}
.mkt-pricing-card-featured {
  border-color: var(--mkt-accent);
  background: linear-gradient(180deg, var(--mkt-card-dark) 0%, rgba(52, 214, 128, 0.05) 100%);
}
.mkt-pricing-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-accent);
  margin-bottom: 8px;
}
.mkt-pricing-price {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}
.mkt-pricing-period {
  font-size: 13px;
  color: var(--mkt-ink-2-on-dark);
  margin-bottom: 20px;
}
.mkt-pricing-fit {
  font-size: 14px;
  color: var(--mkt-ink-2-on-dark);
  margin-bottom: 20px;
  line-height: 1.5;
}
.mkt-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.mkt-pricing-features li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 14px;
  color: var(--mkt-text-on-dark);
  line-height: 1.5;
}
.mkt-pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--mkt-accent);
  font-weight: 700;
}
.mkt-pricing-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mkt-accent);
  color: var(--mkt-accent-fg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ---------- Final CTA banner ---------- */
.mkt-final-cta {
  background: var(--mkt-bg-dark);
  color: var(--mkt-text-on-dark);
  padding: 80px 0;
  text-align: center;
}
.mkt-final-cta h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--mkt-text-on-dark);
}
@media (min-width: 768px) {
  .mkt-final-cta h2 { font-size: 44px; }
}
.mkt-final-cta-sub {
  font-size: 17px;
  color: var(--mkt-ink-2-on-dark);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
/* Final-CTA section gets a 2-button row (Get started + Book a
   walkthrough) instead of a single button. Stack vertically below
   480px; row at desktop. */
.mkt-final-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 480px) {
  .mkt-final-cta-row { flex-direction: row; justify-content: center; }
}

/* ---------- Footer ---------- */
.mkt-footer {
  background: var(--mkt-bg-dark);
  color: var(--mkt-ink-2-on-dark);
  border-top: 1px solid var(--mkt-border-dark);
  padding: 56px 0 32px;
  font-size: 14px;
}
.mkt-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .mkt-footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 48px; }
}
.mkt-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mkt-text-on-dark);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}
.mkt-footer-tag {
  color: var(--mkt-ink-3-on-dark);
  font-size: 13px;
  line-height: 1.55;
  max-width: 320px;
}
.mkt-footer-col h5 {
  color: var(--mkt-text-on-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.mkt-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mkt-footer-col li { margin-bottom: 10px; }
.mkt-footer-col a {
  color: var(--mkt-ink-2-on-dark);
  font-size: 13px;
  text-decoration: none;
  transition: color 160ms ease-out;
}
.mkt-footer-col a:hover {
  color: var(--mkt-accent);
  text-decoration: none;
}
.mkt-footer-newsletter input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  background: var(--mkt-card-dark);
  border: 1px solid var(--mkt-border-strong-dark);
  border-radius: 8px;
  color: var(--mkt-text-on-dark);
  font-size: 14px;
  margin-bottom: 10px;
}
.mkt-footer-newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--mkt-accent);
}
.mkt-footer-newsletter button {
  width: 100%;
}
.mkt-footer-bottom {
  border-top: 1px solid var(--mkt-border-dark);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--mkt-ink-3-on-dark);
}
.mkt-footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.mkt-footer-bottom-links a {
  color: var(--mkt-ink-3-on-dark);
  text-decoration: none;
  font-size: 12px;
}
.mkt-footer-bottom-links a:hover {
  color: var(--mkt-text-on-dark);
}

/* ---------- About page bits ---------- */
.mkt-about-mission {
  font-size: 20px;
  font-weight: 500;
  color: var(--mkt-text-on-light);
  line-height: 1.55;
  max-width: 720px;
}
@media (min-width: 768px) {
  .mkt-about-mission { font-size: 24px; }
}
.mkt-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .mkt-stats { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.mkt-stat {
  background: var(--mkt-card-light);
  border: 1px solid var(--mkt-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--mkt-shadow-soft);
}
.mkt-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--mkt-text-on-light);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.mkt-stat-label {
  font-size: 13px;
  color: var(--mkt-ink-2-on-light);
}
.mkt-founder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  background: var(--mkt-card-light);
  border: 1px solid var(--mkt-border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--mkt-shadow-soft);
  margin-top: 40px;
}
@media (min-width: 640px) {
  .mkt-founder { grid-template-columns: 160px 1fr; gap: 32px; }
}
.mkt-founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--mkt-bg-light);
  border: 1px dashed var(--mkt-border-light);
  display: grid;
  place-items: center;
  color: var(--mkt-ink-3-on-light);
  font-size: 12px;
  text-align: center;
  padding: 16px;
}
.mkt-founder h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.mkt-founder-title {
  font-size: 14px;
  color: var(--mkt-accent-strong);
  font-weight: 600;
  margin-bottom: 12px;
}
.mkt-founder-bio {
  font-size: 15px;
  color: var(--mkt-ink-2-on-light);
  line-height: 1.7;
  margin-bottom: 12px;
}
.mkt-founder-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--mkt-accent-strong);
}
.mkt-integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.mkt-integration-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--mkt-card-light);
  border: 1px solid var(--mkt-border-light);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mkt-text-on-light);
}

/* ---------- FAQ ---------- */
.mkt-faq {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mkt-faq details {
  background: var(--mkt-card-light);
  border: 1px solid var(--mkt-border-light);
  border-radius: var(--radius-md);
  padding: 0 20px;
  transition: background 160ms ease-out;
}
.mkt-faq details[open] { background: var(--mkt-accent-soft); border-color: var(--mkt-accent); }
.mkt-faq summary {
  padding: 18px 0;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--mkt-text-on-light);
}
.mkt-faq summary::-webkit-details-marker { display: none; }
.mkt-faq summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--mkt-accent-strong);
  transition: transform 160ms ease-out;
}
.mkt-faq details[open] summary::after { content: "−"; }
.mkt-faq-body {
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--mkt-ink-2-on-light);
  line-height: 1.65;
}

/* ---------- Contact page ---------- */
.mkt-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .mkt-contact-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.mkt-contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mkt-contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mkt-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-ink-3-on-light);
}
.mkt-contact-value {
  font-size: 16px;
  color: var(--mkt-text-on-light);
}
.mkt-contact-form {
  background: var(--mkt-card-light);
  border: 1px solid var(--mkt-border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--mkt-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mkt-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mkt-form-row label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mkt-ink-3-on-light);
}
.mkt-form-row input,
.mkt-form-row select,
.mkt-form-row textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--mkt-border-light);
  background: var(--mkt-bg-cream);
  color: var(--mkt-text-on-light);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 160ms ease-out;
}
.mkt-form-row input:focus,
.mkt-form-row select:focus,
.mkt-form-row textarea:focus {
  outline: none;
  border-color: var(--mkt-accent);
  background: var(--mkt-card-light);
}
.mkt-form-row textarea {
  min-height: 120px;
  resize: vertical;
}
.mkt-form-error,
.mkt-form-success {
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 8px;
}
.mkt-form-error {
  background: rgba(176, 0, 32, 0.08);
  border: 1px solid rgba(176, 0, 32, 0.2);
  color: #b00020;
}
.mkt-form-success {
  background: var(--mkt-accent-soft);
  border: 1px solid var(--mkt-accent);
  color: var(--mkt-accent-strong);
}

/* ---------- Calendly placeholder (contact.html#book-demo) ---------- */
.mkt-calendly-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.mkt-calendly-placeholder {
  background: var(--mkt-card-light);
  border: 1px solid var(--mkt-border-light);
  border-left: 4px solid var(--mkt-accent);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--mkt-shadow-soft);
}

/* ---------- Blog scaffold ---------- */
.mkt-blog-empty {
  max-width: 560px;
  margin: 64px auto 0;
  padding: 56px 32px;
  text-align: center;
  background: var(--mkt-card-light);
  border: 1px solid var(--mkt-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--mkt-shadow-soft);
}
.mkt-blog-empty-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.mkt-blog-empty-body {
  font-size: 15px;
  color: var(--mkt-ink-2-on-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.mkt-newsletter-inline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .mkt-newsletter-inline { flex-direction: row; }
  .mkt-newsletter-inline input { flex: 1; }
}
.mkt-newsletter-inline input[type="email"] {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--mkt-border-light);
  background: var(--mkt-bg-cream);
  font-size: 14px;
  font-family: inherit;
}
.mkt-newsletter-inline input[type="email"]:focus {
  outline: none;
  border-color: var(--mkt-accent);
}

/* ---------- Pricing page (full) ---------- */
.mkt-pricing-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .mkt-pricing-full { grid-template-columns: repeat(3, 1fr); }
}
.mkt-pricing-card-light {
  background: var(--mkt-card-light);
  border: 1px solid var(--mkt-border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--mkt-shadow-soft);
}
.mkt-pricing-card-light.mkt-pricing-featured-light {
  border-color: var(--mkt-accent);
  box-shadow: 0 20px 50px -20px rgba(52, 214, 128, 0.35);
  transform: none;
}
@media (min-width: 1024px) {
  .mkt-pricing-card-light.mkt-pricing-featured-light { transform: scale(1.02); }
}
.mkt-pricing-card-light .mkt-pricing-tier { color: var(--mkt-accent-strong); }
.mkt-pricing-card-light .mkt-pricing-price { color: var(--mkt-text-on-light); }
.mkt-pricing-card-light .mkt-pricing-period { color: var(--mkt-ink-2-on-light); }
.mkt-pricing-card-light .mkt-pricing-fit { color: var(--mkt-ink-2-on-light); }
.mkt-pricing-card-light .mkt-pricing-features li { color: var(--mkt-text-on-light); }
.mkt-pricing-card-light .mkt-pricing-features li::before { color: var(--mkt-accent-strong); }
/* Tertiary "Or schedule a walkthrough" text-link below each tier's
   primary trial CTA. Demo-led evaluation track (#122). Visually
   subordinate to the main CTA but still tappable. */
.mkt-pricing-walkthrough-link {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--mkt-accent-strong);
  text-decoration: none;
  padding: 4px 0;
}
.mkt-pricing-walkthrough-link:hover {
  text-decoration: underline;
}
.mkt-pricing-disclaimer {
  max-width: 720px;
  margin: 40px auto 0;
  font-size: 13px;
  color: var(--mkt-ink-3-on-light);
  text-align: center;
  line-height: 1.6;
}

/* ---------- Utility ---------- */
.mkt-text-center { text-align: center; }
.mkt-mt-0 { margin-top: 0; }
.mkt-mb-0 { margin-bottom: 0; }

/* ---------- Cross-page guide subnav ---------- */
/* Sits between the main marketing nav and the hero on /getting-started.html
   and /signup-guide.html. Light cream background so it visually parts from
   the forest-green main nav above. Active tab carries a lime underline; the
   PMS + Bank tabs are disabled-look until those guides ship. Horizontal
   overflow at narrow viewports so 4 tabs scroll horizontally if they don't
   fit (rare; tabs are short labels).
   STICKY — sits directly below the main marketing nav and stays pinned to
   the top of the viewport while the user scrolls. `top: 64px` matches the
   main nav's rendered height (16px top padding + 32px content + 16px bottom
   padding). z-index 49 sits one below the main nav (50) so main-nav-relative
   shadows / focus rings can stack correctly even though the two never
   visually overlap. */
.mkt-subnav {
  position: sticky;
  top: 64px;
  z-index: 49;
  background: var(--mkt-bg-cream, #faf7f1);
  border-bottom: 1px solid rgba(14, 29, 24, 0.08);
}
/* Right-edge fade gradient — defensive overflow indicator for narrow
   viewports where the 5 tabs scroll horizontally. Sticky parent acts as
   the containing block for this absolute pseudo. Cream-to-transparent
   fade sits flush right; invisible when content fits (blends with bg),
   visible as a soft fade when scrollable content hides under it. */
.mkt-subnav::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 1px; /* spare the border-bottom underline */
  width: 28px;
  background: linear-gradient(to right, rgba(250, 247, 241, 0), rgba(250, 247, 241, 1));
  pointer-events: none;
  z-index: 1;
}
.mkt-subnav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mkt-subnav-inner::-webkit-scrollbar { display: none; }
.mkt-subnav a,
.mkt-subnav span.mkt-subnav-disabled {
  display: inline-flex;
  align-items: center;
  padding: 14px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #2c3a36;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease-out, border-color 160ms ease-out;
}
.mkt-subnav a:hover { color: #0e1d18; text-decoration: none; }
.mkt-subnav a.active {
  color: #0e1d18;
  border-bottom-color: var(--mkt-accent, #34d680);
  font-weight: 600;
}
.mkt-subnav span.mkt-subnav-disabled {
  color: rgba(14, 29, 24, 0.32);
  cursor: not-allowed;
}
.mkt-subnav-soon {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(14, 29, 24, 0.5);
  background: rgba(14, 29, 24, 0.06);
  border-radius: 999px;
}

/* ====================================================================
   Policy pages — admin_items #599 (2026-06-19)
   Privacy / Terms / Disclaimer / Acceptable Use are statically rendered
   post-Termly Pro migration. The chrome reuses .mkt-nav + .mkt-footer +
   .mkt-section-cream (which uses --mkt-bg-light #f0ebe2 — the dark cream
   variant) from above; .mkt-container-narrow (720px max-width) provides
   the reading-column width.

   --mkt-policy-link: WCAG-AA-passing link color (#136a3a) — darker than
   --mkt-accent-strong (#29b86b) which only hits 2.17:1 on cream and
   2.57:1 on white. The new token clears 6.5:1 on cream and 7.5:1 on
   white, comfortably above the 4.5:1 body-text floor. Used by
   .mkt-policy-body a + .mkt-policy-toc a:hover. The original
   --mkt-accent-strong is kept for decorative usage only (eyebrow,
   in-short border).
   ==================================================================== */
:root {
  --mkt-policy-link: #136a3a;
}
.mkt-policy-hero {
  background: var(--mkt-bg-dark);
  color: var(--mkt-text-on-dark);
  padding: 64px 0 48px;
  text-align: center;
}
.mkt-policy-hero h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--mkt-text-on-dark);
  margin: 0 0 12px;
}
.mkt-policy-effective {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mkt-ink-2-on-dark, rgba(246, 243, 238, 0.7));
}
.mkt-policy-meta-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--mkt-ink-3-on-dark, rgba(246, 243, 238, 0.5));
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .mkt-policy-hero { padding: 96px 0 64px; }
  .mkt-policy-hero h1 { font-size: 44px; }
}
.mkt-policy-toc {
  background: var(--mkt-card-light, #ffffff);
  border: 1px solid var(--mkt-border-light, rgba(14, 29, 24, 0.10));
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0 0 48px;
  box-shadow: 0 1px 3px rgba(14, 29, 24, 0.04);
}
.mkt-policy-toc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-accent-strong, #29b86b);
  margin-bottom: 12px;
}
.mkt-policy-toc ol {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 2px;
  font-size: 14px;
  line-height: 1.5;
}
/* Round-1 MAJOR fix: TOC link touch target was ~27px (text height + 6px gap),
   below Apple HIG 44px minimum. Privacy TOC = 13 entries, Terms TOC = 28 —
   primary in-page navigation needs proper tap targets on mobile. Display
   block + 12px vertical padding = ~45px effective row height. Gap reduced
   to 2px to compensate for the now-larger per-row padding. */
.mkt-policy-toc a {
  display: block;
  padding: 12px 0;
  color: var(--mkt-text-on-light);
  text-decoration: none;
}
/* Round-1 BLOCKER fix: TOC hover color was --mkt-accent-strong (#29b86b)
   which hits 2.57:1 contrast on TOC white card — fails WCAG AA. Switched
   to --mkt-policy-link (#136a3a) below for 7.5:1+ on white. */
.mkt-policy-toc a:hover { color: var(--mkt-policy-link, #136a3a); text-decoration: underline; }

.mkt-policy-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mkt-text-on-light);
}
.mkt-policy-body h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 48px 0 12px;
  scroll-margin-top: 84px;
}
.mkt-policy-body h2:first-child { margin-top: 0; }
.mkt-policy-body h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 28px 0 8px;
  scroll-margin-top: 84px;
}
.mkt-policy-body h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 6px;
}
.mkt-policy-body p { margin: 0 0 14px; }
.mkt-policy-body ul,
.mkt-policy-body ol { margin: 0 0 18px; padding-left: 22px; }
.mkt-policy-body li { margin-bottom: 8px; }
.mkt-policy-body li > ul,
.mkt-policy-body li > ol { margin-top: 8px; }
/* Round-1 BLOCKER fix: --mkt-accent-strong (#29b86b) on cream backgrounds
   hits 2.17:1 (--mkt-bg-light) / 2.57:1 (white TOC card) — fails WCAG AA
   (4.5:1 minimum). Defined a darker link token --mkt-policy-link (#136a3a)
   that hits ~7.5:1 on white, ~6.5:1 on cream — passes AA for both body
   text and large text. Used on .mkt-policy-body a + .mkt-policy-toc a:hover.
   Keep --mkt-accent-strong for the eyebrow + .policy-inshort border (those
   are decorative, not text legibility). */
.mkt-policy-body a {
  color: var(--mkt-policy-link, #136a3a);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}
.mkt-policy-body a:hover { text-decoration: none; }
.mkt-policy-body strong { font-weight: 700; }
.mkt-policy-body em { font-style: italic; }
.mkt-policy-body .policy-inshort {
  display: block;
  padding: 12px 16px;
  margin: 8px 0 18px;
  background: var(--mkt-accent-soft, rgba(52, 214, 128, 0.10));
  border-left: 3px solid var(--mkt-accent-strong, #29b86b);
  border-radius: 6px;
  font-size: 14px;
  font-style: italic;
  color: var(--mkt-ink-2-on-light, #3e4d47);
}
.mkt-policy-body .policy-table-wrap {
  overflow-x: auto;
  margin: 0 0 18px;
}
.mkt-policy-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.5;
}
.mkt-policy-body th,
.mkt-policy-body td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border-bottom: 1px solid var(--mkt-border-light, rgba(14, 29, 24, 0.10));
}
/* Round-1 MAJOR fix: th background was --mkt-bg-light (#f0ebe2), the EXACT
   same color as .mkt-section-cream's section background — header row was
   visually indistinguishable from body cells in the 12-row California
   category table (privacy section 10). Switched to a darker rgba ink-tint
   so the header reads as a header against both the white card AND the
   cream section background. */
.mkt-policy-body th {
  font-weight: 700;
  background: rgba(14, 29, 24, 0.08);
  color: var(--mkt-text-on-light);
  border-bottom: 2px solid var(--mkt-border-light, rgba(14, 29, 24, 0.18));
}
.mkt-policy-body td.policy-cell-collected { font-weight: 600; }
.mkt-policy-body hr {
  border: 0;
  border-top: 1px solid var(--mkt-border-light, rgba(14, 29, 24, 0.10));
  margin: 40px 0;
}
.mkt-policy-body .policy-contact-block {
  margin: 0 0 14px;
  padding: 16px 18px;
  background: var(--mkt-card-light, #ffffff);
  border: 1px solid var(--mkt-border-light, rgba(14, 29, 24, 0.10));
  border-radius: 8px;
  font-size: 14px;
}
.mkt-policy-body .policy-contact-block p { margin: 0; }
.mkt-policy-body .policy-contact-block p + p { margin-top: 4px; }
@media (min-width: 768px) {
  .mkt-policy-body { font-size: 16px; }
  .mkt-policy-body h2 { font-size: 26px; margin-top: 56px; }
  .mkt-policy-body h3 { font-size: 19px; }
}
