:root {
  --bg: #ffffff;
  --bg-soft: #f6f6f4;
  --bg-soft-2: #f1f1ee;
  --ink: #0d0d0f;
  --ink-2: #1a1a1d;
  --muted: #6b6b72;
  --muted-2: #93939a;
  --line: #e8e8e4;
  --line-2: #dedeDA;
  --accent: #c94a3b;        /* coral/red used in status-quo */
  --accent-2: #b9261a;
  --dark: #0a0a12;           /* deep navy/black */
  --dark-2: #101024;
  --dark-3: #0e0e1f;
  --green: #2fc27a;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1200px;
  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section.tight { padding: 80px 0; }

/* typography */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.display {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-size: clamp(44px, 6.2vw, 84px);
  margin: 0;
}
.display em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--muted-2);
  letter-spacing: -0.02em;
}
.h2 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.028em;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.08;
  margin: 0;
}
.h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--muted-2);
}
.h3 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
}
.lede {
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: #0a0a0c;
  color: #fff;
}
.btn-dark:hover { background: #1a1a1f; }
.btn-light {
  background: #fff;
  color: #0a0a0c;
  border-color: var(--line);
}
.btn-light:hover { background: #fafaf8; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 14.5px;
}
.btn-link:hover { color: var(--muted); border-color: var(--muted); }

/* pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-2);
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(47,194,122,0.18);
}
.pill.on-dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}

/* logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: #0a0a0c;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1;
}
.logo-wordmark {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* nav */
.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-links {
  display: flex; gap: 34px;
  font-size: 14px;
  color: #3a3a3f;
}
.nav-links a:hover { color: var(--ink); }

/* hero */
.hero {
  text-align: center;
  padding: 110px 0 140px;
}
.hero .display { max-width: 14ch; margin: 24px auto 22px; }
.hero .lede { margin: 0 auto 36px; text-align: center; }
.hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* stats strip */
.stats {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

/* testimonials */
.tcards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 260px;
}
.tcard .quote-mark {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 0.6;
  color: var(--line-2);
  margin-bottom: 4px;
}
.tcard-num {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.tcard-num small { color: var(--muted); font-size: 13.5px; font-weight: 500; letter-spacing: 0; margin-left: 6px; }
.tcard-body {
  color: #444;
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}
.tcard-who {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tcard-who strong { font-weight: 600; font-size: 14px; display: block; }
.tcard-who span { font-size: 12.5px; color: var(--muted); }

/* dark section (status quo) */
.dark {
  background: radial-gradient(1200px 500px at 10% 0%, #1a1835 0%, #0a0a14 40%, #05050c 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.7;
}
.dark::after {
  content: "";
  position: absolute;
  right: -200px; top: 20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 55, 180, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.dark .eyebrow { color: rgba(255,255,255,0.55); }
.dark .lede { color: rgba(255,255,255,0.55); }
.costs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  margin-top: 56px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cost-card {
  padding: 32px 30px 34px;
  background: rgba(10,10,20,0.85);
  position: relative;
  min-height: 220px;
}
.cost-head {
  display: flex; justify-content: space-between; align-items: center;
  color: var(--accent);
}
.cost-ico {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid rgba(201,74,59,0.35);
  border-radius: 8px;
  color: var(--accent);
}
.cost-idx { font-size: 11px; letter-spacing: 0.16em; color: rgba(255,255,255,0.3); }
.cost-num {
  font-size: 46px; font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin: 22px 0 14px;
  line-height: 1;
}
.cost-title { font-size: 15px; font-weight: 600; margin-bottom: 10px; color: #fff; }
.cost-body { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* systems */
.system-intro {
  text-align: left;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 96px;
}
.system-intro .h2 { max-width: 18ch; margin-bottom: 24px; }
.system-intro .lede { max-width: 58ch; color: var(--muted); }

.system {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center;
  margin-bottom: 120px;
}
.system.reverse .system-text { order: 2; }
.system-text .eyebrow { margin-bottom: 18px; display: block; }
.system-text .h3 { margin-bottom: 18px; max-width: 14ch; }
.system-text .lede { margin-bottom: 24px; }
.bullets { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink-2);
}
.bullet-check {
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%;
  background: #0a0a0c;
  color: #fff;
  display: grid; place-items: center;
}
.result {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 28px;
}
.result-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.result ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.result li {
  display: flex; gap: 10px;
  font-size: 14px;
  color: #2a2a30;
}
.result li::before {
  content: ""; width: 16px; height: 1px; background: var(--muted-2); margin-top: 10px;
}

/* system media */
.system-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #e9e7e0;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.18);
}
.system-media.wide { aspect-ratio: 5 / 4; }
.system-media .ph {
  position: absolute; inset: 0;
}
.system-media .tag {
  position: absolute;
  left: 18px; bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.15);
  font-size: 12px;
}
.system-media .tag .logo-mark { width: 24px; height: 24px; font-size: 14px; border-radius: 6px; }
.system-media .tag .eyebrow { font-size: 9.5px; }
.system-media .tag strong { display: block; font-size: 13px; font-weight: 600; }

/* photo placeholders */
.photo-ph {
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0)),
    repeating-linear-gradient(45deg, #e6e3db 0 6px, #ece9e1 6px 12px);
  position: relative;
}
.photo-ph::after {
  content: attr(data-label);
  position: absolute;
  top: 18px; left: 18px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 4px 8px; border-radius: 4px;
}

/* Paul demo card */
.demo-card {
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(90, 60, 180, 0.35) 0%, transparent 60%),
    linear-gradient(180deg, #141429 0%, #0a0a18 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 52px 56px;
  color: #fff;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.demo-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.demo-card > * { position: relative; z-index: 1; }
.demo-card .h2 {
  color: #fff;
  margin: 22px 0 16px;
  max-width: 14ch;
  font-size: 52px;
}
.demo-card .h2 em { color: rgba(255,255,255,0.45); }
.demo-card .lede { color: rgba(255,255,255,0.6); margin-bottom: 30px; }
.demo-call {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 26px;
}
.demo-call-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.demo-call-ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(47,194,122,0.18);
  color: var(--green);
  display: grid; place-items: center;
}
.demo-call-head .eyebrow { color: rgba(255,255,255,0.55); }
.demo-call-head strong { display: block; font-size: 13px; margin-top: 2px; font-weight: 500; color: rgba(255,255,255,0.85); }
.demo-num {
  font-size: 30px; font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.demo-meta { display: grid; gap: 10px; }
.demo-meta-row {
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.demo-meta-row:last-child { border-bottom: 0; }
.demo-meta-row span:last-child { color: rgba(255,255,255,0.9); }

/* capabilities grid */
.cap-intro { max-width: 28ch; margin-bottom: 48px; }
.cap-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cap {
  padding: 32px 28px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: #fff;
}
.cap:nth-child(4n) { border-right: 0; }
.cap:nth-last-child(-n+4) { border-bottom: 0; }
.cap-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  color: var(--muted-2);
}
.cap-ico {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--ink-2);
}
.cap-idx { font-size: 11px; letter-spacing: 0.14em; }
.cap-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* integrations */
.ints-head { text-align: center; margin-bottom: 40px; }
.ints-head .eyebrow { display: block; margin-bottom: 12px; }
.ints-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.int-cell {
  padding: 34px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
}
.int-cell:nth-child(4n) { border-right: 0; }
.int-cell:nth-last-child(-n+4) { border-bottom: 0; }
.int-ico { width: 34px; height: 34px; color: var(--ink-2); display: grid; place-items: center; }
.int-lbl { font-size: 13px; font-weight: 500; color: var(--ink); }

/* process */
.process-head { margin-bottom: 60px; }
.process-head .h2 { max-width: 18ch; }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute; left: 28px; right: 28px; top: 18px;
  height: 1px; background: var(--line);
}
.step { position: relative; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: #2a2a30; color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 500;
  margin-bottom: 22px;
  position: relative;
  box-shadow: 0 0 0 8px var(--bg);
}
.step-title { font-weight: 600; font-size: 16px; margin-bottom: 10px; letter-spacing: -0.01em; }
.step-body { font-size: 13.5px; color: var(--muted); max-width: 36ch; line-height: 1.6; }

/* promise */
.promise {
  max-width: 680px;
  margin: 60px auto 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  text-align: center;
}
.promise-ico {
  width: 40px; height: 40px; border-radius: 50%;
  background: #0a0a0c; color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.promise .eyebrow { display: block; margin-bottom: 14px; }
.promise-text {
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--ink);
}
.promise-text em { font-family: var(--serif); font-style: italic; color: var(--muted-2); font-weight: 400; }

/* final CTA */
.final-cta {
  background:
    radial-gradient(900px 400px at 80% 50%, rgba(90, 60, 180, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a14 0%, #05050c 100%);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.final-cta > .wrap { position: relative; z-index: 1; }
.final-cta .eyebrow { color: rgba(255,255,255,0.5); }
.final-cta .h2 { color: #fff; max-width: 14ch; margin: 18px 0 20px; }
.final-cta .h2 em { color: rgba(255,255,255,0.45); }
.final-cta .lede { color: rgba(255,255,255,0.6); margin-bottom: 26px; }
.cta-benefits {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-bottom: 34px;
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
}
.cta-benefits span { display: inline-flex; align-items: center; gap: 8px; }
.cta-benefits svg { color: var(--green); }

/* FAQ */
.faq-wrap {
  display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 80px;
  align-items: start;
}
.faq-side .h2 { margin: 8px 0 18px; }
.faq-side .lede { margin-bottom: 28px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  font-size: 15px; font-weight: 500;
  text-align: left;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq-q:hover { color: var(--muted); }
.faq-chev { transition: transform 0.25s ease; color: var(--muted); }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 22px; }

/* footer */
.foot {
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.6fr; gap: 40px;
}
.foot-col .eyebrow { display: block; margin-bottom: 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a { font-size: 14px; color: var(--ink-2); }
.foot-col a:hover { color: var(--muted); }
.foot-about { font-size: 13.5px; color: var(--muted); margin-top: 18px; max-width: 36ch; line-height: 1.6; }
.foot-contact { display: grid; gap: 12px; font-size: 14px; }
.foot-contact a { display: flex; align-items: center; gap: 10px; }
.foot-contact svg { color: var(--muted); }
.foot-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted);
}
.foot-bottom a:hover { color: var(--ink); }
.foot-legal { display: flex; gap: 28px; }

/* mobile */
@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: 0; }
  .tcards { grid-template-columns: 1fr; }
  .costs-grid { grid-template-columns: 1fr; }
  .system { grid-template-columns: 1fr; gap: 32px; margin-bottom: 72px; }
  .system.reverse .system-text { order: 0; }
  .demo-card { grid-template-columns: 1fr; padding: 36px 28px; }
  .demo-card .h2 { font-size: 38px; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .cap:nth-child(4n) { border-right: 1px solid var(--line); }
  .cap:nth-child(2n) { border-right: 0; }
  .cap:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .cap:nth-last-child(-n+2) { border-bottom: 0; }
  .ints-grid { grid-template-columns: repeat(2, 1fr); }
  .int-cell:nth-child(4n) { border-right: 1px solid var(--line); }
  .int-cell:nth-child(2n) { border-right: 0; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero { padding: 60px 0 80px; }
}
