@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,500;8..60,600;8..60,700&display=swap');

:root {
  /* Ink — deeper, richer near-black navy. Dominant surface, not just an accent band. */
  --ink: #0a1424;
  --ink-800: #101f36;
  --ink-700: #1a2f4d;

  /* Cool neutrals — paired with white rather than a warm beige cast */
  --n-700: #38414d;
  --n-500: #616b78;
  --n-400: #88919c;
  --n-300: #d6dae0;
  --n-200: #e6e9ee;
  --n-100: #f1f3f6;
  --n-50: #f8f9fb;
  --white: #ffffff;
  --cream: #faf9f6;

  /* Gold — restrained, used as a signal, not a fill color */
  --gold-900: #503c14;
  --gold-700: #7d5f22;
  --gold-600: #93712a;
  --gold-500: #a9843c;
  --gold-100: #f0e6cd;
  --gold-50: #f8f3e6;

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --max: 1120px;
  --max-narrow: 760px;

  --shadow-sm: 0 1px 2px rgba(10, 20, 36, 0.05), 0 1px 1px rgba(10, 20, 36, 0.03);
  --shadow-md: 0 6px 20px rgba(10, 20, 36, 0.08), 0 1px 3px rgba(10, 20, 36, 0.05);
  --shadow-lg: 0 16px 48px rgba(10, 20, 36, 0.14), 0 2px 8px rgba(10, 20, 36, 0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
}
h3 {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold-100); color: var(--ink); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 24px; }

/* Header */
header.site {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--n-200);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(160%) blur(8px);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--gold-500);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
}
nav.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
nav.site-nav a.nav-link {
  color: var(--n-500);
  transition: color 0.15s;
}
nav.site-nav a.nav-link:hover { color: var(--ink); }
.header-right a.nav-link {
  color: var(--n-500);
  font-size: 14px;
  transition: color 0.15s;
}
.header-right a.nav-link:hover { color: var(--ink); }
.btn {
  display: inline-block;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #000; box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-secondary {
  background: var(--white);
  color: var(--ink-700);
  border-color: var(--n-300);
}
.btn-secondary:hover { background: var(--n-50); border-color: var(--n-400); }
.btn-gold {
  background: transparent;
  color: var(--gold-700);
  border-color: var(--gold-500);
}
.btn-gold:hover { background: var(--gold-50); border-color: var(--gold-600); }
.btn-lg { padding: 14px 30px; font-size: 15px; border-radius: 6px; }

/* Hero */
.hero {
  padding: 96px 0 76px;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--n-200);
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 50px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 auto 22px;
  max-width: 880px;
  font-weight: 400;
}
.hero-highlight { color: var(--gold-700); font-style: italic; }
.hero-copy h1 {
  font-size: clamp(28px, 3vw, 38px);
}
/* Two-line headline: first line (the actual product category) intentionally
   larger than the second (the payoff line), so the short line and the
   longer line occupy roughly the same visual width. */
.headline-emphasis, .headline-sub {
  display: block;
}
.headline-emphasis {
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 600;
}
.headline-sub {
  font-size: clamp(1.3rem, 3.2vw, 1.7rem);
  margin-top: 4px;
  color: var(--n-500);
  font-weight: 400;
}
.hero p.sub {
  font-size: 18px;
  color: var(--n-500);
  max-width: 620px;
  margin: 0 auto 34px;
  text-align: left;
}
.hero .cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero .fineprint {
  margin-top: 18px;
  font-size: 12px;
  color: var(--n-400);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-50);
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 26px;
}
.eyebrow.amber { color: var(--gold-700); background: var(--gold-50); border-color: var(--gold-500); }

/* Hero — two-column with app mockup visual */
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; margin-bottom: 12px; }
  .hero-copy .cta-row { justify-content: center; }
  .hero-copy .fineprint { text-align: center; }
}
.hero-copy .cta-row { justify-content: flex-start; }
.hero-copy .fineprint { text-align: left; }
.hero-copy h1, .hero-copy p.sub { margin-left: 0; margin-right: 0; }
@media (max-width: 900px) {
  .hero-copy h1, .hero-copy p.sub { margin-left: auto; margin-right: auto; }
}

.hero-visual { position: relative; padding: 30px 18px 18px 30px; }
.hero-visual::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--gold-100) 0%, rgba(240, 230, 205, 0) 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-float-card {
  position: absolute;
  bottom: -22px;
  left: -4px;
  z-index: 2;
  background: var(--ink);
  color: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 240px;
}
.hero-float-card .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-card strong { display: block; font-size: 12px; }
.hero-float-card span { font-size: 11px; color: rgba(255, 255, 255, 0.55); }
@media (max-width: 900px) {
  .hero-visual { padding: 20px 8px 34px 8px; }
  .hero-visual::before { width: 280px; height: 280px; top: -40px; right: -40px; }
}
.app-mock {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--n-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.app-mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--n-50);
  border-bottom: 1px solid var(--n-200);
}
.app-mock-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--n-300); }
.app-mock-url {
  margin-left: 10px;
  font-size: 11px;
  color: var(--n-400);
  background: var(--white);
  border: 1px solid var(--n-200);
  border-radius: 6px;
  padding: 3px 10px;
}
.app-mock-body { display: flex; min-height: 300px; }
.app-mock-sidebar {
  width: 120px;
  background: var(--ink);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.app-mock-side-item {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  padding: 8px 10px;
  border-radius: 6px;
}
.app-mock-side-item.active { background: rgba(255, 255, 255, 0.1); color: var(--white); font-weight: 600; }
.app-mock-main { flex: 1; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.app-mock-toast {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--gold-50);
  border: 1px solid var(--gold-100);
  border-radius: 8px;
  padding: 12px 14px;
}
.app-mock-toast-icon { font-size: 15px; }
.app-mock-toast strong { display: block; font-size: 12px; color: var(--ink); margin-bottom: 2px; }
.app-mock-toast p { margin: 0; font-size: 11px; color: var(--n-500); }
.app-mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--n-200);
  border-radius: 8px;
  background: var(--n-50);
}
.app-mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.app-mock-row-text { flex: 1; min-width: 0; }
.app-mock-row-text strong { display: block; font-size: 12px; color: var(--ink); }
.app-mock-row-text span { font-size: 11px; color: var(--n-500); }
.app-mock-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--n-200);
  color: var(--n-700);
  white-space: nowrap;
}
.app-mock-badge.amber { background: var(--gold-100); color: var(--gold-700); }
.app-mock-badge.green { background: #dcf3e4; color: #1f7a45; }

/* Dark section (founder note / trust stats) */
section.dark { background: var(--ink); color: var(--white); }
.founder-note { max-width: 760px; margin: 0 auto; text-align: center; }
.founder-note blockquote {
  font-family: var(--serif);
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.5;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 28px;
  letter-spacing: -0.005em;
}
.founder-note-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.founder-note-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold-500);
  font-size: 13px;
  flex-shrink: 0;
}
.founder-note-attr-text { text-align: left; }
.founder-note-attr-text strong { display: block; font-size: 14px; }
.founder-note-attr-text span { font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 32px;
}
@media (max-width: 640px) { .trust-stats { grid-template-columns: 1fr; gap: 20px; } }
.trust-stat { text-align: center; }
.trust-stat .num { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--gold-500); margin-bottom: 4px; }
.trust-stat .label { font-size: 12px; color: rgba(255, 255, 255, 0.6); }

/* Section */
section { padding: 76px 0; }
section.tinted { background: var(--n-50); border-top: 1px solid var(--n-200); border-bottom: 1px solid var(--n-200); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-head h2 {
  font-size: clamp(27px, 3vw, 34px);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.section-head p {
  color: var(--n-500);
  font-size: 16px;
  margin: 0;
  text-align: left;
}

/* Proof cards */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-card {
  border: 1px solid var(--n-200);
  border-radius: 12px;
  padding: 34px;
  background: var(--white);
  transition: border-color 0.2s;
}
.proof-card:hover { border-color: var(--n-300); }
.proof-card .tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 16px;
}
.proof-card h3 {
  font-size: 21px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.proof-card p {
  color: var(--n-500);
  font-size: 15px;
  margin: 0 0 18px;
}
.mock {
  border-radius: 8px;
  background: var(--n-50);
  border: 1px solid var(--n-200);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--n-700);
}
.mock .mock-input {
  background: var(--white);
  border: 1px solid var(--n-300);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 10px;
  color: var(--ink);
}
.mock .mock-output {
  color: var(--n-500);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--n-200);
  border: 1px solid var(--n-200);
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 860px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  padding: 28px 26px 30px;
  background: var(--white);
  border-top: 2px solid transparent;
  transition: border-color 0.2s;
}
.feature-card:hover { border-top-color: var(--gold-500); }
.feature-card .tag {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 12px;
}
.feature-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--n-500);
  margin: 0 0 16px;
}
.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-card li {
  font-size: 13px;
  color: var(--n-700);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
}
.feature-card li:last-child { margin-bottom: 0; }
.feature-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-600);
  font-weight: 700;
  font-size: 12px;
}

/* Check-list — reusable bullet style (checkmark, gold) for any card that
   needs a scannable list of items, e.g. roadmap.html's two columns. */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  font-size: 14.5px;
  color: var(--n-700);
  padding-left: 24px;
  position: relative;
  margin-bottom: 14px;
  line-height: 1.55;
}
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold-600);
  font-weight: 700;
  font-size: 13px;
}
.check-list li strong { color: var(--ink); }
.check-list.building li::before {
  content: "→";
  color: var(--gold-500);
}

/* Pricing */
.pricing-box {
  border: 1px solid var(--n-200);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.pricing-box .price {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 10px 0 4px;
}
.pricing-box .price span {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--n-500);
}
.pricing-box ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  text-align: left;
  display: inline-block;
}
.pricing-box li {
  font-size: 14px;
  color: var(--n-700);
  margin-bottom: 11px;
  padding-left: 24px;
  position: relative;
}
.pricing-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-600);
  font-weight: 700;
}
.scarcity-note {
  font-size: 13px;
  color: var(--n-500);
  margin-top: 16px;
}

/* Pricing grid (three plans) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  border: 1px solid var(--n-200);
  border-radius: 12px;
  padding: 30px 26px;
  text-align: center;
  background: var(--white);
}
.pricing-card-featured {
  border: 1px solid var(--gold-500);
  background: linear-gradient(180deg, var(--gold-50) 0%, var(--white) 140px);
  position: relative;
}
.pricing-card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--n-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.pricing-card-featured .pricing-card-label { color: var(--gold-700); }
.pricing-card-price {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.pricing-card-price span {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--n-500);
}
.pricing-card-note {
  font-size: 13px;
  color: var(--n-500);
  margin: 0 0 22px;
  min-height: 34px;
}
.pricing-card .btn { width: 100%; }

/* Product/features page: two-column layout with a sticky vertical
   table-of-contents sidebar, replacing the old horizontal sticky sub-nav
   pill bar. There is now only ONE sticky bar on the page (the site header),
   so the double-sticky-bar scroll-anchor bug (a thin sliver of the previous
   section peeking out between two stacked sticky bars) is structurally
   impossible here — not just patched with a pixel offset. */
.feature-layout {
  padding: 48px 0 72px;
}
.feature-layout-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.feature-toc {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid var(--n-200);
}
.feature-toc a {
  padding: 9px 0 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--n-500);
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition: color 0.15s, border-color 0.15s;
}
.feature-toc a:hover { color: var(--ink); }
.feature-toc a.active {
  color: var(--gold-700);
  border-left-color: var(--gold-500);
}
.feature-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-block {
  padding: 40px 0;
  border-bottom: 1px solid var(--n-200);
  scroll-margin-top: 90px;
}
.feature-block:first-child { padding-top: 4px; }
.feature-block:last-child { border-bottom: none; padding-bottom: 4px; }

@media (max-width: 900px) {
  .feature-layout-inner { grid-template-columns: 1fr; gap: 0; }
  .feature-toc {
    position: sticky;
    top: 65px;
    z-index: 30;
    flex-direction: row;
    overflow-x: auto;
    gap: 22px;
    border-left: none;
    border-bottom: 1px solid var(--n-200);
    background: rgba(250, 249, 246, 0.94);
    backdrop-filter: saturate(160%) blur(8px);
    padding: 14px 4px;
    margin-bottom: 8px;
  }
  .feature-toc a {
    padding: 0;
    white-space: nowrap;
    border-left: none;
    border-bottom: 2px solid transparent;
    margin-left: 0;
  }
  .feature-toc a.active { border-bottom-color: var(--gold-500); }
  .feature-block { scroll-margin-top: 115px; }
}

/* Comparison table (vs Financial Cents) */
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--n-200);
  border-radius: 12px;
  margin-top: 32px;
  background: var(--white);
  position: relative;
}
table.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
table.compare-table th:first-child,
table.compare-table td:first-child {
  width: 170px;
  min-width: 170px;
}
table.compare-table th:nth-child(2),
table.compare-table td:nth-child(2) {
  width: 130px;
  min-width: 130px;
}
table.compare-table th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--n-400);
  padding: 16px 18px;
  border-bottom: 1px solid var(--n-200);
  background: var(--n-50);
}
table.compare-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--n-100);
  color: var(--n-700);
}
table.compare-table tr:last-child td { border-bottom: none; }
table.compare-table td.yes { color: var(--ink); font-weight: 600; }
table.compare-table td.yes::before { content: "●"; color: var(--gold-700); font-size: 15px; margin-right: 7px; vertical-align: -1px; display: inline-block; }
table.compare-table td.no { color: var(--n-400); }

/* First two columns (row labels + FirmLync) stay pinned in place;
   every competitor column scrolls underneath them. */
table.compare-table th:first-child,
table.compare-table td:first-child {
  position: sticky;
  left: 0;
  background: var(--n-50);
  z-index: 2;
  border-right: 1px solid var(--n-200);
}
table.compare-table td:first-child { background: var(--white); }
table.compare-table th:nth-child(2),
table.compare-table td:nth-child(2) {
  position: sticky;
  left: 170px;
  z-index: 1;
  background: var(--gold-50);
  border-right: 1px solid var(--gold-100);
  box-shadow: 6px 0 10px -6px rgba(10, 20, 36, 0.14);
}
table.compare-table th:nth-child(2) { color: var(--gold-700); font-weight: 700; }
table.compare-table td:nth-child(2).yes { color: var(--ink); }
.compare-scroll-hint {
  display: block;
  font-size: 12px;
  color: var(--n-400);
  margin-top: 10px;
  text-align: right;
}

/* Blog list */
.blog-list { padding: 24px 0 64px; display: flex; flex-direction: column; gap: 16px; }
.blog-card {
  display: block;
  border: 1px solid var(--n-200);
  border-radius: 12px;
  padding: 26px;
  background: var(--white);
  transition: border-color 0.2s;
}
.blog-card:hover { border-color: var(--gold-500); }
.blog-card-date {
  font-size: 12px;
  color: var(--gold-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.blog-card h2 { font-family: var(--serif); font-weight: 500; font-size: 21px; margin: 10px 0 8px; letter-spacing: -0.01em; }
.blog-card p { font-size: 14px; color: var(--n-500); margin: 0; }

/* Blog article body */
.blog-body { padding-bottom: 64px; font-size: 16px; line-height: 1.75; color: var(--n-700); }
.blog-body h2 {
  font-size: 23px;
  color: var(--ink);
  margin: 42px 0 14px;
  letter-spacing: -0.01em;
}
.blog-body p { margin: 0 0 16px; }
.blog-body ul { margin: 0 0 16px; padding-left: 20px; }
.blog-body li { margin-bottom: 8px; }
.blog-body strong { color: var(--ink); }
.blog-cta {
  margin-top: 44px;
  padding: 30px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
}
.blog-cta p { font-size: 15px; margin-bottom: 18px; color: rgba(255,255,255,0.85); }
.blog-cta .btn-primary { background: var(--white); color: var(--ink); }
.blog-cta .btn-primary:hover { background: var(--gold-50); }
/* Bug fix (2026-09-05): .blog-body strong { color: var(--ink) } was bleeding
   into every dark box nested inside a post (blog-cta, dark callouts, the
   banner), rendering navy-on-navy invisible text. Higher-specificity
   overrides below force white/gold text inside dark containers regardless
   of the generic blog-body strong rule. */
.blog-body .blog-cta strong,
.blog-body .blog-banner strong,
.blog-body .callout.dark strong { color: var(--white); }

/* Lead magnet */
.lead-magnet {
  border: 1px solid var(--n-200);
  border-radius: 12px;
  padding: 30px 28px;
  margin: 40px 0;
  background: var(--n-50);
}
.lead-magnet-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-700);
  margin-bottom: 10px;
}
.lead-magnet h3 {
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.lead-magnet p.lm-sub {
  font-size: 14px;
  color: var(--n-500);
  margin: 0 0 20px;
}
.lead-magnet-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lead-magnet-form input[type="email"] {
  flex: 1 1 200px;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--n-300);
  font-size: 14px;
  font-family: inherit;
}
.lead-magnet-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold-500);
}
.lead-magnet-fine {
  font-size: 12px;
  color: var(--n-400);
  margin: 12px 0 0;
}
.lead-magnet.is-unlocked .lead-magnet-form-wrap { display: none; }
.lead-magnet-unlocked { display: none; }
.lead-magnet-unlocked.show {
  display: block;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--n-200);
}
.lead-magnet-unlocked ul { margin: 0; padding-left: 20px; }
.lead-magnet-unlocked li { margin-bottom: 8px; font-size: 14px; }
.lead-magnet-unlocked p { font-size: 14px; margin: 0 0 10px; }

/* FAQ */
.faq-list { max-width: var(--max-narrow); margin: 0 auto; }
details.faq-item {
  border-bottom: 1px solid var(--n-200);
  padding: 20px 0;
}
details.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-weight: 400;
  color: var(--gold-600);
  font-size: 20px;
  margin-left: 12px;
}
details.faq-item[open] summary::after { content: "−"; }
details.faq-item p {
  color: var(--n-500);
  font-size: 14px;
  margin: 12px 0 0;
  max-width: 640px;
}

/* Claim section (asymmetric, replaces spec-table on homepage) */
.claim-section {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
}
.claim-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .claim-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}
.claim-number {
  font-family: var(--serif);
  font-size: clamp(70px, 9vw, 128px);
  font-weight: 500;
  line-height: 0.9;
  color: var(--gold-500);
  letter-spacing: -0.02em;
}
.claim-number-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  max-width: 260px;
}
@media (max-width: 860px) { .claim-number-label { margin-left: auto; margin-right: auto; } }
.claim-copy h2 {
  color: var(--white);
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.claim-copy p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  margin: 0 0 28px;
  max-width: 520px;
}
@media (max-width: 860px) { .claim-copy p { margin-left: auto; margin-right: auto; } }
.claim-copy .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.claim-copy .btn-secondary:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.5); }

/* Bottom CTA */
.bottom-cta {
  text-align: center;
  padding: 76px 0 84px;
  background: var(--ink);
  color: var(--white);
}
.bottom-cta h2 {
  font-size: clamp(27px, 3vw, 36px);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.bottom-cta p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 30px;
}
.bottom-cta .btn-primary { background: var(--white); color: var(--ink); }
.bottom-cta .btn-primary:hover { background: var(--gold-50); }

/* Footer */
footer.site {
  border-top: 1px solid var(--n-200);
  padding: 36px 0;
  background: var(--ink);
}
.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer-inner .footer-links {
  display: flex;
  gap: 20px;
}
.site-footer-inner a:hover { color: var(--gold-500); }

/* Founding page specific */
.founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-50);
  color: var(--gold-700);
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 26px;
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 760px) { .perks-grid { grid-template-columns: 1fr; } }
.perk {
  text-align: center;
  padding: 10px;
}
.perk .num {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--gold-600);
  margin-bottom: 10px;
}
.perk h3 { font-size: 16px; margin: 0 0 6px; }
.perk p { font-size: 14px; color: var(--n-500); margin: 0; }

/* ---------------------------------------------------------------------
   Inner-page components, structurally inspired by the Introx template
   (dotted-grid hero, numbered step list, flat multi-card pricing) —
   kept in the site's own navy/gold/serif palette rather than Introx's
   monochrome black/white, per the 2026-08-21 redesign pass.
   --------------------------------------------------------------------- */

/* Dark, dotted-grid hero for inner pages — matches the homepage's dark
   hero band so the whole site reads as one design instead of a light
   cream hero followed by dark homepage sections. */
.hero-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 88px 0 68px;
}
.hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(169, 132, 60, 0.35) 1px, transparent 1px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 30%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 55% at 50% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero-dark .wrap { position: relative; }
.hero-dark h1, .hero-dark h2 { color: var(--white); }
.hero-dark .sub { color: rgba(255, 255, 255, 0.65); max-width: 620px; margin: 0 auto 30px; font-size: 18px; text-align: left; }
.hero-dark .eyebrow, .hero-dark .founding-badge {
  background: rgba(169, 132, 60, 0.12);
  color: var(--gold-500);
  border-color: rgba(169, 132, 60, 0.35);
}
.hero-dark .fineprint { color: rgba(255, 255, 255, 0.4); }
.hero-dark .btn-secondary { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.hero-dark .btn-secondary:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.5); }

/* Numbered step list — "1. Quick setup" style, left-aligned across a row */
.step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 44px;
}
@media (max-width: 860px) { .step-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .step-list { grid-template-columns: 1fr; } }
.step-list .step .num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold-500);
  margin-bottom: 10px;
}
.step-list .step h3 { font-size: 16px; margin: 0 0 6px; }
.step-list .step p { font-size: 14px; color: var(--n-500); margin: 0; }

/* Flat, monochrome-leaning pricing card row (Introx's pricing page),
   used where three parallel price points need equal visual weight
   instead of the single boxed .pricing-box. */
.pricing-cards-flat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}
@media (max-width: 760px) { .pricing-cards-flat { grid-template-columns: 1fr; } }
.pricing-cards-flat .price-card {
  border: 1px solid var(--n-200);
  border-radius: 14px;
  padding: 32px;
  background: var(--white);
}
.pricing-cards-flat .price-card.featured {
  background: var(--ink);
  border-color: var(--gold-500);
  color: var(--white);
}
.pricing-cards-flat .price-card .plan-label { font-size: 14px; font-weight: 600; color: var(--n-500); }
.pricing-cards-flat .price-card.featured .plan-label { color: rgba(255, 255, 255, 0.65); }
.pricing-cards-flat .price-card .plan-price { font-family: var(--serif); font-size: 36px; font-weight: 500; margin: 14px 0 4px; }
.pricing-cards-flat .price-card .plan-price span { font-size: 14px; font-weight: 400; color: var(--n-400); }
.pricing-cards-flat .price-card.featured .plan-price { color: var(--gold-500); }
.pricing-cards-flat .price-card .plan-note { font-size: 13px; color: var(--n-500); margin: 0 0 22px; }
.pricing-cards-flat .price-card.featured .plan-note { color: rgba(255, 255, 255, 0.5); }

/* ---------------------------------------------------------------------
   Blog visual system — reusable, CSS-only "premium" components so long
   posts aren't a wall of plain text. Built entirely from the existing
   navy/gold/serif/cream palette above; no external images required.
   --------------------------------------------------------------------- */

/* Dark banner that sits under the H1 on every post, with a big serif
   glyph/icon and a soft gold glow, echoing .hero-dark. Gives every post
   an immediate visual anchor instead of starting straight into text. */
.blog-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: 16px;
  padding: 44px 40px;
  margin: 8px 0 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.blog-banner::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(169, 132, 60, 0.32) 0%, rgba(169, 132, 60, 0) 70%);
  pointer-events: none;
}
.blog-banner-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(169, 132, 60, 0.14);
  border: 1px solid rgba(169, 132, 60, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.blog-banner-copy { position: relative; z-index: 1; }
.blog-banner-copy .eyebrow { margin-bottom: 10px; }
.blog-banner-copy p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}
@media (max-width: 640px) {
  .blog-banner { flex-direction: column; text-align: center; padding: 34px 26px; }
  .blog-banner-copy p { max-width: none; }
}

/* Small gold icon chip placed before an H2, turning section breaks into
   a scannable visual rhythm instead of plain serif text repeating down
   the page. Usage: <h2><span class="h2-icon">01</span>Heading text</h2> */
.h2-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--gold-50);
  border: 1px solid var(--gold-100);
  color: var(--gold-700);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

/* Stat row — 2 or 3 big-number cards, for pulling a data point out of
   the paragraph text and giving the page visual weight/contrast. */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.stat-row.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .stat-row, .stat-row.two { grid-template-columns: 1fr; } }
.stat-box {
  border: 1px solid var(--n-200);
  border-radius: 12px;
  padding: 22px 20px;
  background: var(--n-50);
  text-align: center;
}
.stat-box .stat-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--gold-700);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-box .stat-label {
  font-size: 13px;
  color: var(--n-500);
  line-height: 1.4;
}

/* Pull quote — large italic serif statement in gold, used to break up
   long text sections with a visual/emotional beat. */
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.5;
  color: var(--gold-700);
  border-left: 3px solid var(--gold-500);
  padding: 4px 0 4px 26px;
  margin: 40px 0;
}

/* Callout / info box — gold-accented card for a tip, warning, or aside
   that should stand apart from body copy. */
.callout {
  border: 1px solid var(--gold-100);
  background: var(--gold-50);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 32px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.callout .callout-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.callout .callout-body strong { display: block; color: var(--ink); font-size: 14.5px; margin-bottom: 3px; }
.callout .callout-body p { margin: 0; font-size: 14px; color: var(--n-700); }
.callout.dark {
  background: var(--ink);
  border-color: var(--ink);
}
.callout.dark .callout-icon { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.callout.dark .callout-body strong { color: var(--white); }
.callout.dark .callout-body p { color: rgba(255,255,255,0.7); }

/* Mini comparison card — two side-by-side boxes (e.g. "before/after" or
   "Option A vs Option B") for posts comparing tools, models, or approaches. */
.compare-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}
@media (max-width: 640px) { .compare-mini { grid-template-columns: 1fr; } }
.compare-mini-card {
  border: 1px solid var(--n-200);
  border-radius: 12px;
  padding: 22px;
  background: var(--white);
}
.compare-mini-card.highlight { border-color: var(--gold-500); background: var(--gold-50); }
.compare-mini-card .cm-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--n-400);
  margin-bottom: 10px;
}
.compare-mini-card.highlight .cm-label { color: var(--gold-700); }
.compare-mini-card ul { margin: 0; padding-left: 18px; }
.compare-mini-card li { font-size: 14px; margin-bottom: 8px; color: var(--n-700); }

/* Horizontal bar "chart" built from CSS widths — for showing rough
   proportions (e.g. time spent, cost breakdown) without a real image. */
.bar-chart { margin: 36px 0; display: flex; flex-direction: column; gap: 14px; }
.bar-chart .bar-row .bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--n-700);
  margin-bottom: 6px;
}
.bar-chart .bar-row .bar-label strong { color: var(--ink); }
.bar-chart .bar-track {
  height: 10px;
  border-radius: 999px;
  background: var(--n-100);
  overflow: hidden;
}
.bar-chart .bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-500));
}

/* Numbered circle used inline in step-by-step lists within blog body
   copy (distinct from the homepage .step-list, sized for narrow body). */
.mini-steps { margin: 36px 0; display: flex; flex-direction: column; gap: 18px; }
.mini-step { display: flex; gap: 16px; align-items: flex-start; }
.mini-step .mini-step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-500);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-step-body strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 2px; }
.mini-step-body p { margin: 0; font-size: 14px; color: var(--n-500); }

/* Contextual illustration panel — wraps a hand-built, on-brand SVG scene
   (not a stock photo, not a plain colored box) that depicts the specific
   situation the surrounding paragraph describes, with a caption tying it
   back to the text. */
.blog-illustration {
  margin: 36px 0;
  border: 1px solid var(--n-200);
  border-radius: 14px;
  overflow: hidden;
  background: var(--n-50);
}
.blog-illustration svg { display: block; width: 100%; height: auto; }
.blog-illustration figcaption {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--n-500);
  border-top: 1px solid var(--n-200);
  background: var(--white);
}

/* Divider — small centered gold rule used to break long sections instead
   of relying on whitespace alone. */
.blog-divider {
  width: 48px;
  height: 2px;
  background: var(--gold-500);
  border: none;
  margin: 48px auto;
  border-radius: 2px;
}
