/* Clero marketing site */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--clero-fg-2);
  background: var(--clero-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font-family: inherit; cursor: pointer; }
a { cursor: pointer; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 32px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247,247,247,0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo img { height: 30px; width: auto; display: block; }
.logo-word {
  font-family: var(--font-brand); font-weight: 700;
  font-size: 21px; color: #111; letter-spacing: -0.3px;
}
.nav-links {
  display: flex; gap: 28px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav-links a {
  font-size: 13px; color: #555; text-decoration: none;
  transition: color 150ms var(--ease);
}
.nav-links a:hover { color: var(--clero-purple); }
.nav-right { display: flex; align-items: center; gap: 18px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 13px;
  border-radius: 999px;
  border: none; cursor: pointer;
  padding: 0 18px; height: 36px;
  transition: background 150ms var(--ease), color 150ms var(--ease), border-color 150ms var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--clero-purple);
  color: #fff;
}
.btn-primary:hover { background: var(--clero-purple-800); text-decoration: none; }
.btn-primary:active { background: var(--clero-purple-900); }
.btn-lg { height: 42px; padding: 0 22px; font-size: 13.5px; }
.btn-outline {
  background: transparent;
  color: var(--clero-purple);
  border: 1px solid var(--clero-purple);
}
.btn-outline:hover { background: var(--clero-purple-50); text-decoration: none; }
.btn-ghost {
  background: transparent; color: #1d1d1f;
  padding: 0 10px;
}
.btn-ghost:hover { color: var(--clero-purple); }

.btn .arrow {
  display: inline-block; transition: transform 150ms var(--ease);
}
.btn:hover .arrow { transform: translateX(2px); }

/* ============ HERO ============ */
.hero {
  padding: 56px 0 40px;
  text-align: center;
  position: relative;
}
.waitlist-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.09);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #1d1d1f;
  margin-bottom: 36px;
  text-decoration: none;
  transition: border-color 150ms var(--ease), transform 150ms var(--ease);
}
.waitlist-pill:hover { border-color: var(--clero-purple-200); text-decoration: none; }
.waitlist-pill .tag {
  background: var(--clero-purple-50);
  color: var(--clero-purple);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.waitlist-pill .arrow-s { color: #86868b; font-size: 12px; letter-spacing: 0; }

.hero-h1 {
  font-family: var(--font-brand);
  font-size: 62px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: #111;
  margin: 0 auto 22px;
  max-width: 900px;
  text-wrap: balance;
}
.hero-h1 em {
  font-style: normal;
  color: var(--clero-purple);
}
.hero-lede {
  font-size: 17px;
  line-height: 1.55;
  color: #555;
  max-width: 560px;
  margin: 0 auto 32px;
  text-wrap: pretty;
}
.hero-cta-row {
  display: flex; gap: 14px; justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}
.hero-meta {
  font-size: 12px; color: #86868b;
  margin-top: 4px;
}
.hero-meta .dot { color: #c8c8cc; margin: 0 8px; }

/* hero illustration */
.hero-illus-wrap {
  max-width: 1040px;
  margin: 56px auto 0;
  padding: 0 16px;
  position: relative;
}
.hero-illus-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ PROBLEM ============ */
.problem {
  padding: 80px 0 88px;
}
.problem-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}
.problem-stack {
  font-family: var(--font-brand);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: #111;
  margin: 0 0 32px;
  text-wrap: balance;
}
.problem-stack p {
  margin: 0 0 28px;
}
.problem-stack p:last-child {
  margin-bottom: 0;
}
.problem-body {
  font-size: 16px;
  line-height: 1.6;
  color: #1d1d1f;
  margin: 0 0 18px;
}
.problem-body.em {
  font-weight: 500;
  color: #111;
}
.problem-body strong {
  color: var(--clero-purple);
  font-weight: 600;
}

/* ============ HOW IT WORKS ============ */
.how-section {
  padding: 64px 0 96px;
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head h2 {
  font-family: var(--font-brand);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: #111;
  margin: 0 0 12px;
  line-height: 1.15;
}
.section-head .lede {
  font-size: 15px;
  color: #555;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.55;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.how-card {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.09);
  border-radius: 12px;
  padding: 24px 26px;
  transition: border-color 150ms var(--ease);
  position: relative;
}
.how-card:hover { border-color: var(--clero-purple-200); }
.how-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--clero-purple-50);
  color: var(--clero-purple);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 36px;
}
.how-step {
  position: absolute;
  top: 26px; right: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #aeaeb2;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.how-title {
  font-family: var(--font-brand);
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.how-desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

/* ============ KEY CAPABILITIES ============ */
.caps {
  background: var(--clero-purple);
  color: #fff;
  padding: 96px 0 104px;
  position: relative;
  overflow: hidden;
}
.caps::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(255,255,255,0.06), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(175,169,236,0.18), transparent 60%);
  pointer-events: none;
}
.caps-inner { position: relative; }
.caps-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 48px; flex-wrap: wrap;
}
.caps h2 {
  font-family: var(--font-brand);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  max-width: 520px;
  line-height: 1.1;
}
.caps-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 380px;
  line-height: 1.55;
  margin: 0;
}
.caps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cap-card {
  background: #fff;
  color: #1d1d1f;
  border-radius: 14px;
  padding: 24px 24px 26px;
  border: 0.5px solid rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
  min-height: 200px;
}
.cap-card.size-lg { grid-column: span 3; }
.cap-card.size-md { grid-column: span 3; }
.cap-card.size-sm { grid-column: span 2; }
.cap-card.size-full { grid-column: span 6; }
.cap-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.cap-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--clero-purple);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.cap-title {
  font-family: var(--font-brand);
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.cap-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.55;
  margin: 0;
}
.cap-visual {
  margin-top: auto;
  padding-top: 16px;
}

/* Cap visuals — pipeline kanban */
.mini-kanban {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px;
  background: var(--clero-surface-2);
  border-radius: 8px;
  border: 0.5px solid rgba(0,0,0,0.04);
}
.mk-col-head {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #86868b;
  margin-bottom: 6px;
  display: flex; justify-content: space-between; align-items: center;
}
.mk-col-head .ct { color: #1d1d1f; font-weight: 700; font-family: var(--font-mono); }
.mk-col { display: flex; flex-direction: column; gap: 4px; }
.mk-card {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.09);
  border-radius: 4px;
  padding: 5px 6px;
  font-size: 9px;
  border-left: 2px solid #ccc;
  color: #1d1d1f;
}
.mk-card.stage-id { border-left-color: #F59E0B; }
.mk-card.stage-act { border-left-color: #60a5fa; }
.mk-card.stage-ctr { border-left-color: var(--clero-hard-saving); }

/* Audit trail visual */
.audit-rows { display: flex; flex-direction: column; gap: 4px; }
.audit-row {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  background: var(--clero-surface-2);
  border-radius: 6px;
  font-size: 11px;
}
.audit-time { font-family: var(--font-mono); color: #86868b; font-size: 10px; flex-shrink: 0; }
.audit-who { color: #1d1d1f; font-weight: 500; }
.audit-what { color: #555; flex: 1; }
.audit-badge {
  font-size: 9px; font-weight: 600;
  padding: 2px 6px; border-radius: 4px;
  background: var(--stg-ctr-soft-bg);
  color: var(--stg-ctr-soft-fg);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* Command center AI pulse */
.cmd-alert {
  background: var(--sem-ai-bg);
  border: 0.5px solid rgba(83,74,183,0.25);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex; align-items: flex-start; gap: 10px;
}
.cmd-alert .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--clero-purple);
  margin-top: 5px; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(83,74,183,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(83,74,183,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(83,74,183,0); }
  100% { box-shadow: 0 0 0 0 rgba(83,74,183,0); }
}
.cmd-alert-body { font-size: 11px; color: var(--sem-ai-tx); line-height: 1.45; font-weight: 500; }
.cmd-alert-body b { font-weight: 700; }

/* Methodology flow */
.meth-steps { display: flex; align-items: center; gap: 4px; }
.meth-step {
  flex: 1;
  background: var(--clero-surface-2);
  border: 0.5px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 600;
  color: #1d1d1f;
  text-align: center;
}
.meth-step.active {
  background: var(--clero-purple-50);
  color: var(--clero-purple);
  border-color: var(--clero-purple-200);
}
.meth-arrow {
  color: #c8c8cc;
  font-size: 10px;
}

/* Finance report visual */
.rep-preview {
  background: var(--clero-surface-2);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 10px;
  border: 0.5px solid rgba(0,0,0,0.06);
}
.rep-row {
  display: flex; justify-content: space-between;
  padding: 4px 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
  font-variant-numeric: tabular-nums;
}
.rep-row:last-child { border-bottom: none; }
.rep-row.total { font-weight: 700; color: #111; padding-top: 7px; }
.rep-row .v { color: var(--clero-hard-saving-tx); font-weight: 600; }
.rep-row .v.total-v { color: #111; }

/* ============ VALIDATION ============ */
.validation {
  padding: 96px 0;
  background: var(--clero-page);
  border-top: 0.5px solid rgba(0,0,0,0.06);
}
.val-head {
  margin-bottom: 56px;
}
.val-head h2 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.val-head .lede {
  max-width: 720px;
}
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.val-card {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.09);
  border-radius: 14px;
  padding: 32px 28px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 150ms var(--ease);
}
.val-card:hover { border-color: var(--clero-purple-200); }
.val-mark {
  font-family: var(--font-brand);
  font-size: 56px;
  line-height: 1;
  color: var(--clero-purple);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  height: 28px;
  user-select: none;
}
.val-quote {
  font-family: var(--font-brand);
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: #111;
  font-weight: 500;
  margin: 0 0 28px;
  text-wrap: pretty;
  flex: 1;
}
.val-attr {
  border-top: 0.5px solid rgba(0,0,0,0.09);
  padding-top: 16px;
  margin-top: auto;
}
.val-role {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 2px;
}
.val-org {
  font-size: 12px;
  color: #86868b;
}

@media (max-width: 1000px) {
  .val-grid { grid-template-columns: 1fr; gap: 14px; }
  .val-card { padding: 28px 24px 24px; }
  .val-quote { font-size: 17px; }
}

/* ============ PRICING — COMING SOON ============ */
.pricing-soon { padding: 96px 0; }
.soon-card {
  max-width: 720px;
  margin: 32px auto 0;
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.09);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.soon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(83,74,183,0.05), transparent 60%);
  pointer-events: none;
}
.soon-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--clero-purple);
  background: var(--clero-purple-50);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  position: relative;
}
.soon-title {
  font-family: var(--font-brand);
  font-size: 32px; font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  position: relative;
}
.soon-body {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 28px;
  position: relative;
  text-wrap: pretty;
  text-align: center;
}
.soon-cta-row {
  display: flex; justify-content: center;
  margin-bottom: 14px;
  position: relative;
}
.soon-meta {
  font-size: 12px; color: #86868b;
  position: relative;
}

/* ============ PRICING ============ */
.pricing {
  padding: 96px 0;
  background: var(--clero-page);
}
.pricing-toggle-row {
  display: flex; justify-content: center;
  margin-top: 28px;
  margin-bottom: 44px;
}
.pricing-toggle {
  display: inline-flex;
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.09);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.pricing-toggle button {
  border: none; background: transparent;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 150ms var(--ease), color 150ms var(--ease);
}
.pricing-toggle button.active {
  background: var(--clero-purple);
  color: #fff;
}
.pricing-toggle .save-badge {
  font-size: 10px; font-weight: 700;
  background: rgba(255,255,255,0.22);
  padding: 1px 6px; border-radius: 4px;
  letter-spacing: 0.02em;
}
.pricing-toggle button:not(.active) .save-badge {
  background: var(--sem-success-bg);
  color: var(--sem-success-tx);
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1020px;
  margin: 0 auto;
}
.tier {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.09);
  border-radius: 14px;
  padding: 28px 28px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 150ms var(--ease);
}
.tier.featured {
  border: 1px solid var(--clero-purple);
}
.tier-badge {
  position: absolute;
  top: -10px; left: 28px;
  background: var(--clero-purple);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}
.tier-name {
  font-family: var(--font-brand);
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin: 0;
  letter-spacing: -0.015em;
}
.tier-price {
  display: flex; align-items: baseline;
  gap: 4px;
  margin: 6px 0 2px;
  min-height: 40px;
}
.tier-price .amt {
  font-family: var(--font-brand);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clero-purple);
  font-variant-numeric: tabular-nums;
}
.tier-price .unit {
  font-size: 13px;
  color: #86868b;
  font-weight: 500;
}
.tier-price .free {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 700;
  color: var(--clero-purple);
  letter-spacing: -0.015em;
}
.tier-who {
  font-size: 13px;
  color: #86868b;
  line-height: 1.5;
  margin: 6px 0 20px;
  min-height: 42px;
}
.tier-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column;
  gap: 10px;
  border-top: 0.5px solid rgba(0,0,0,0.08);
  padding-top: 20px;
}
.tier-features li {
  font-size: 13.5px;
  color: #1d1d1f;
  display: flex; align-items: center; gap: 10px;
}
.tier-features li.disabled { color: #aeaeb2; }
.tier-check {
  width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 50%;
  background: #1D9E75;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.tier-check.off { background: #e5e5ea; color: #aeaeb2; }
.tier-check svg { width: 10px; height: 10px; }

.tier-cta {
  width: 100%; margin-top: auto;
}
.tier-note {
  font-size: 11px; color: #86868b;
  margin-top: 10px; text-align: center;
}
.pricing-foot {
  font-size: 13px; color: #86868b;
  text-align: center;
  margin-top: 36px;
}
.pricing-foot a { color: var(--clero-purple); font-weight: 500; text-decoration: none; }
.pricing-foot a:hover { text-decoration: underline; }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 96px 0 80px;
}
.final-cta .container {
  max-width: 780px;
}
.final-cta h2 {
  font-family: var(--font-brand);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #111;
  line-height: 1.1;
  margin: 0 0 28px;
  max-width: 640px;
  text-wrap: balance;
}
.final-cta .sub {
  font-size: 15px;
  color: #555;
  margin: -18px 0 28px;
  max-width: 520px;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 0.5px solid rgba(0,0,0,0.09);
  padding: 32px 0 40px;
  background: var(--clero-page);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-size: 12px; color: #86868b;
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.footer-copy a {
  color: #86868b;
  text-decoration: none;
  transition: color 150ms var(--ease);
}
.footer-copy a:hover { color: var(--clero-purple); }
.footer-social { display: flex; gap: 18px; }
.footer-social a {
  font-size: 12px; color: #86868b;
  text-decoration: none;
}
.footer-social a:hover { color: var(--clero-purple); }

/* ============ MODAL ============ */
.modal-scrim {
  position: fixed; inset: 0;
  background: rgba(17,17,17,0.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  animation: fadeIn 150ms var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff;
  border-radius: 14px;
  border: 0.5px solid rgba(0,0,0,0.09);
  padding: 32px;
  max-width: 420px;
  width: calc(100% - 32px);
  animation: slideUp 200ms var(--ease);
}
@keyframes slideUp { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal h3 {
  font-family: var(--font-brand);
  font-size: 22px; font-weight: 700; color: #111;
  margin: 0 0 6px; letter-spacing: -0.015em;
}
.modal p { font-size: 13px; color: #555; margin: 0 0 20px; }
.modal input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 0.5px solid rgba(0,0,0,0.18);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 150ms var(--ease), box-shadow 150ms var(--ease);
}
.modal input:focus {
  border-color: var(--clero-purple);
  box-shadow: 0 0 0 3px rgba(83,74,183,0.12);
}
.modal-cta { width: 100%; height: 42px; }
.modal-note {
  font-size: 11px; color: #aeaeb2; margin: 12px 0 0; text-align: center;
}
.modal-success {
  text-align: center; padding: 16px 0;
}
.modal-success-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sem-success-bg);
  color: var(--sem-success-tx);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

/* ============ TWEAKS PANEL ============ */
.tweaks-panel {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 280px;
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  box-shadow: var(--shadow-overlay);
  padding: 18px;
  z-index: 200;
  font-size: 13px;
}
.tweaks-title {
  font-family: var(--font-brand);
  font-weight: 700; font-size: 14px;
  color: #111; margin: 0 0 14px;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -0.01em;
}
.tweaks-close {
  background: none; border: none; color: #86868b;
  cursor: pointer; font-size: 18px; padding: 0;
  line-height: 1;
}
.tweak { margin-bottom: 14px; }
.tweak:last-child { margin-bottom: 0; }
.tweak-label {
  font-size: 11px; font-weight: 600;
  color: #86868b; margin-bottom: 6px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.tweak-seg {
  display: flex;
  background: var(--clero-surface-2);
  border-radius: 8px;
  padding: 2px;
  gap: 1px;
}
.tweak-seg button {
  flex: 1; border: none; background: transparent;
  padding: 6px 8px; font-size: 11px; font-weight: 600;
  color: #555; border-radius: 6px; cursor: pointer;
  font-family: inherit;
  transition: background 150ms var(--ease), color 150ms var(--ease);
}
.tweak-seg button.on {
  background: #fff;
  color: var(--clero-purple);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* responsive */
@media (max-width: 1000px) {
  .caps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cap-card.size-lg, .cap-card.size-md { grid-column: span 1; }
  .cap-card.size-full { grid-column: span 2; }
}
@media (max-width: 720px) {
  .hero-h1 { font-size: 40px; }
  .caps h2, .section-head h2 { font-size: 28px; }
  .problem-stack { font-size: 24px; }
  .final-cta h2 { font-size: 28px; }
  .caps-grid {
    grid-template-columns: 1fr;
  }
  .cap-card.size-lg, .cap-card.size-md, .cap-card.size-sm, .cap-card.size-full { grid-column: auto !important; }
  .cap-split { grid-template-columns: 1fr !important; gap: 20px !important; }
  .tiers { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
