/* Financial Statement Suite — bustem-style system */

:root {
  --ink: #0a0a0a;
  --body: #374151;
  --muted: #6b7280;
  --faint: #9ca3af;
  --line: #e5e5e5;
  --line-soft: #f3f4f6;
  --card: #f9fafb;
  --page: #ffffff;
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --blue-soft: #eff6ff;
  --blue-line: #bfdbfe;
  --red: #dc2626;
  --red-deep: #991b1b;
  --red-soft: #fef2f2;
  --red-line: #fecaca;
  --green: #16a34a;
  --green-deep: #15803d;
  --green-soft: #ecfdf5;
  --green-line: #bbf7d0;
  --amber-deep: #92400e;
  --amber-soft: #fffbeb;
  --amber-line: #fde68a;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue-soft); color: var(--blue-deep); }

h1, h2, h3 { color: var(--ink); }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 14px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.45);
}

.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.55);
}

.btn--nav { padding: 10px 20px; font-size: 14px; }

.btn--big { padding: 16px 30px; font-size: 16px; font-weight: 700; }

/* ---------- Fixed head: pill nav + announcement bar ---------- */

.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 0;
  pointer-events: none;
}
.site-head > * { pointer-events: auto; }

.nav-pill {
  display: flex;
  align-items: center;
  gap: 26px;
  width: min(100%, 880px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 7px 7px 22px;
  box-shadow: 0 10px 34px -10px rgba(0, 0, 0, 0.14);
}

.wordmark {
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.by-lido { font-weight: 500; color: var(--muted); font-size: 12.5px; margin-left: 2px; }

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }

.annbar {
  width: min(100%, 720px);
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 7px 22px;
  font-size: 13px;
  text-align: center;
  line-height: 1.45;
  box-shadow: 0 10px 30px -12px rgba(37, 99, 235, 0.55);
}
.annbar strong { font-weight: 700; }
.annbar-bolt { margin-right: 2px; }
.annbar-link {
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
  margin-left: 6px;
}

/* ---------- Hero ---------- */

.hero { padding: 132px 0 36px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.badge-pill {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid var(--blue-line);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 900;
  letter-spacing: -0.033em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hl-box {
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 12px;
  padding: 1px 11px 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.4;
  color: #1f2937;
}
.hb-icon {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
.hb-icon svg { width: 14px; height: 14px; }

.hero-ctas { margin-bottom: 16px; }
.cta-micro { font-size: 13px; color: var(--muted); margin-top: 10px; }

.trust-line {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.trust-line strong { color: var(--ink); font-weight: 700; }

/* ---------- Mock window ---------- */

.mock-window {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px -18px rgba(0, 0, 0, 0.22);
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
.mock-dots { display: inline-flex; gap: 6px; }
.mock-dots i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
}
.mock-title {
  flex: 1;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green-deep);
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  border-radius: 999px;
  padding: 4px 11px;
  white-space: nowrap;
}
.mock-live {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}
.mock-pill.is-running {
  color: var(--blue);
  background: var(--blue-soft);
  border-color: var(--blue-line);
}
.mock-pill.is-running .mock-live {
  background: var(--blue);
  animation: pulse 1.1s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.mock-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
}
.mt-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  color: #374151;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 5px 9px;
  white-space: nowrap;
}
.mt-pill b { font-weight: 700; margin-left: 1px; }
.mt-pill--active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.mt-download {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  background: var(--ink);
  border-radius: 9px;
  padding: 5px 11px;
  white-space: nowrap;
}

.mock-rows {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px 4px;
}
.mock-row {
  display: block;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.mock-row.is-shown { opacity: 1; transform: none; }
.mock-card {
  background: var(--card);
  border-radius: 10px;
  border-left: 4px solid transparent;
  padding: 8px 12px;
}
.mock-card--error { border-left-color: var(--red); }
.mock-card--round { border-left-color: #f59e0b; }
.mc-title {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1px;
}
.mc-detail {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
}
.mock-eq {
  background: #0b1220;
  border-radius: 10px;
  padding: 9px 12px;
}
.eq-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  margin-bottom: 5px;
}
.eq-num {
  background: rgba(255, 255, 255, 0.12);
  color: #f9fafb;
  border-radius: 6px;
  padding: 2px 7px;
  font-weight: 600;
}
.eq-op { color: #94a3b8; }
.eq-num--bad { background: rgba(220, 38, 38, 0.32); color: #fca5a5; font-weight: 700; }
.eq-note {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  color: #f87171;
}

.mock-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px 12px;
  font-size: 12.5px;
  color: var(--muted);
}
.mock-foot svg { width: 15px; height: 15px; }

/* ---------- Promise pills ---------- */

.promise-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 44px;
}
.promise-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--body);
  white-space: nowrap;
}
.promise-pill svg { width: 16px; height: 16px; color: var(--blue); flex: none; }
.promise-pill:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 50%;
  width: 28px;
  border-top: 2px dashed #d1d5db;
}

/* ---------- Section headings ---------- */

.display {
  font-size: clamp(33px, 4.6vw, 54px);
  font-weight: 900;
  letter-spacing: -0.033em;
  line-height: 1.06;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.display-sub {
  font-size: 17.5px;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin: 16px auto 0;
}

/* ---------- Vignettes (fake-UI cards) ---------- */

.vg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.vg-flag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--red-soft);
  color: var(--red-deep);
  border-radius: 8px;
  padding: 7px 10px;
  margin-bottom: 6px;
}
.vg-x { color: var(--red); font-weight: 700; }
.vg-flag-more {
  color: var(--red);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 10px 0;
}
.vg-flag-note {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  margin-top: 10px;
  padding-top: 10px;
}

.vg-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 2px;
}
.vg-hours-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding: 10px 2px 0;
  font-weight: 600;
  color: var(--ink);
}
.vg-red { color: var(--red); font-weight: 700; }

.vg-issued { position: relative; padding-top: 40px; }
.vg-issued-stamp {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 4px;
  transform: rotate(8deg);
  opacity: 0.9;
}
.vg-issued-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 6px 2px;
}
.vg-circle {
  border: 2px solid var(--red);
  border-radius: 999px;
  padding: 1px 9px;
  color: var(--ink);
}
.vg-dim { opacity: 0.55; }

.vg-sched-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 2px;
}
.vg-sched-total {
  border-top: 1px solid var(--ink);
  font-weight: 600;
  color: var(--ink);
}
.vg-formula {
  margin-top: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 600;
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.vg-formula-tag {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--blue-line);
  border-radius: 999px;
  padding: 2px 9px;
}

.vg-math-row { padding: 5px 2px; }
.vg-math-result { font-weight: 600; color: var(--ink); }
.vg-check {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-deep);
  margin-left: 8px;
}
.vg-xtag {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  margin-left: 8px;
}

.vg-rule {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--body);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.vg-rule--reject {
  background: var(--red-soft);
  border-color: var(--red-line);
  color: var(--red-deep);
}
.vg-rule-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  padding: 2px 7px;
  margin-right: 7px;
}
.vg-rule-tag--red { background: var(--red); }

.vg-buckets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vg-bucket {
  flex: 1;
  min-width: 72px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 6px;
}
.vg-bucket b {
  display: block;
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
}
.vg-bucket--error { background: var(--red-soft); border-color: var(--red-line); color: #b91c1c; }
.vg-bucket--round { background: var(--amber-soft); border-color: var(--amber-line); color: var(--amber-deep); }
.vg-bucket--pass { background: var(--green-soft); border-color: var(--green-line); color: var(--green-deep); }
.vg-bucket-btn {
  width: 100%;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 9px;
  margin-top: 2px;
}

/* ---------- Pain section ---------- */

.pain { padding-top: 100px; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.pain-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}
.pain-card h3 {
  margin-top: auto;
  font-size: 19.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.pain-card p { font-size: 15px; line-height: 1.6; }
.pain-card p strong, .cell p strong { color: var(--ink); font-weight: 700; }

.quote-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin: 60px 0 20px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote-grid--two {
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 48px auto 0;
}
.quote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.quote-card blockquote {
  font-size: 16px;
  line-height: 1.55;
  color: #1f2937;
  font-weight: 500;
}
.quote-card blockquote::before { content: "\201C"; }
.quote-card blockquote::after { content: "\201D"; }
.quote-card figcaption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.quote-card--accent {
  background: var(--blue-soft);
  border-color: var(--blue-line);
}
.quote-card--accent blockquote { color: var(--blue-deep); font-weight: 600; }
.quote-card--accent figcaption { color: var(--blue); }
.quote-card--tall { align-self: center; }

/* ---------- How it works ---------- */

.cell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}
.cell {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
}
.cell h3 {
  margin-top: auto;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.cell p { font-size: 15.5px; line-height: 1.6; }

.how-note {
  text-align: center;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 560px;
  margin: 32px auto 0;
}

/* ---------- Stats ---------- */

.stats { padding: 96px 0; }
.stats-kicker {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 44px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-size: clamp(64px, 9vw, 104px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
}
.stat-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 10px 0 8px;
}
.stat p {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 260px;
  margin: 0 auto;
}
.stats-caption {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 44px;
}

/* ---------- Comparison matrix ---------- */

.matrix {
  border: 1px solid var(--line);
  border-radius: 20px;
  margin-top: 52px;
  overflow-x: auto;
  background: #fff;
}
.matrix-head, .matrix-row {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  align-items: center;
  min-width: 680px;
}
.matrix-head {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.matrix-head > div {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--body);
  text-align: center;
  padding: 16px 12px;
  line-height: 1.35;
}
.matrix-head > div:first-child { text-align: left; padding-left: 24px; }
.matrix-row { border-bottom: 1px solid var(--line); }
.matrix-row:last-child { border-bottom: none; }
.matrix-row > div { padding: 22px 12px; }
.matrix-row > div:not(.matrix-who) {
  display: flex;
  justify-content: center;
}
.matrix-who { padding-left: 24px !important; }
.matrix-row--us { background: var(--blue-soft); }
.matrix-name {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.matrix-desc {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}
.matrix-row--us .matrix-desc { color: var(--blue-deep); }
.mk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}
.mk--yes { background: var(--green); color: #fff; }
.mk--no { background: var(--line-soft); color: var(--faint); }

/* ---------- Consistency + rounds (2-col copy blocks) ---------- */

.consistency-grid, .rounds-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}
.consistency-copy h2, .rounds-grid h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 18px;
}
.consistency-copy p, .rounds-grid p {
  font-size: 16.5px;
  line-height: 1.65;
}
.consistency-copy p + p { margin-top: 14px; }
.rounds-grid .quote-card p { font-size: inherit; }

/* ---------- Formats chips ---------- */

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 780px;
  margin: 44px auto 0;
}
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 10px 19px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--body);
  white-space: nowrap;
}
.chip-more {
  text-align: center;
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 20px;
}

/* ---------- Security ---------- */

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.sec-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.sec-card h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.sec-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.security-note {
  text-align: center;
  font-size: 15px;
  color: var(--body);
  margin-top: 32px;
}

/* ---------- Path ---------- */

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.path-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
}
.path-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}
.path-card h3 {
  font-size: 17.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.path-card p { font-size: 14.5px; line-height: 1.6; }
.path-cta { text-align: center; margin-top: 48px; }

/* ---------- Try / embed placeholder ---------- */

.embed-placeholder {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
  border: 2px dashed #d1d5db;
  border-radius: 24px;
  background: var(--card);
  padding: 64px 32px;
}
.embed-placeholder svg {
  width: 44px;
  height: 44px;
  color: var(--faint);
}
.ep-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 16px 0 8px;
}
.ep-note {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 24px;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  padding: 20px 56px 20px 24px;
  line-height: 1.4;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { font-size: 15.5px; line-height: 1.65; }

/* ---------- Bottom CTA ---------- */

.bottom-cta { padding: 20px 0 96px; }
.bottom-cta .container {
  background: var(--ink);
  border-radius: 28px;
  text-align: center;
  padding: 84px 48px;
  max-width: 1072px;
}
.bottom-cta h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 720px;
  margin: 0 auto;
}
.bottom-cta p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 620px;
  margin: 20px auto 32px;
}
.bottom-sub {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin: 18px auto 0 !important;
}

/* ---------- Footer ---------- */

footer { padding: 0 0 40px; }
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: var(--muted);
}
.footer-inner a { color: inherit; }

/* ---------- Floating book button ---------- */

.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 34px -8px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease;
}
.fab:hover { transform: scale(1.06); }
.fab svg { width: 24px; height: 24px; }

/* ---------- Sticky mobile CTA ---------- */

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}
.sticky-cta.visible { transform: none; }
.sticky-cta .btn { width: 100%; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  section { padding: 68px 0; }
  .hero { padding: 150px 0 32px; }
  .pain { padding-top: 76px; }

  .nav-links { display: none; }
  .nav-pill { gap: 12px; }
  .wordmark { margin-right: auto; }

  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }

  .promise-row { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 48px; }
  .promise-pill { white-space: normal; justify-content: flex-start; }
  .promise-pill:not(:first-child)::before { display: none; }

  .pain-grid, .cell-grid, .quote-grid { grid-template-columns: 1fr; }
  .quote-grid--two { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr; gap: 44px; }

  .consistency-grid, .rounds-grid { grid-template-columns: 1fr; gap: 32px; }

  .security-grid { grid-template-columns: 1fr 1fr; }
  .path-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .fab { display: none; }
  .sticky-cta { display: block; }
  footer { padding-bottom: 96px; }
}

@media (max-width: 560px) {
  section { padding: 56px 0; }
  .hero { padding: 156px 0 28px; }
  .pain { padding-top: 64px; }
  .container { padding: 0 18px; }

  .by-lido { display: none; }
  .annbar { font-size: 12.5px; border-radius: 18px; }
  .annbar-link { font-size: 12.5px; }

  .btn--big { width: 100%; padding: 17px 24px; font-size: 15.5px; }

  .security-grid, .path-grid { grid-template-columns: 1fr; }

  .bottom-cta .container { border-radius: 20px; padding: 56px 24px; }

  .mock-toolbar { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
