/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

:root {
  --page: #f6f7f4;
  --surface: #ffffff;
  --surface-subtle: #eef2f7;
  --graphite: #101418;
  --muted: #586271;
  --border: #d9e0e8;
  --accent: #275cff;
  --accent-dark: #163bb8;
  --teal: #0f766e;
  --amber: #9a5b00;
  --violet: #6d28d9;
  --shadow: 0 22px 70px rgba(16, 20, 24, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--graphite);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(39, 92, 255, 0.45);
  outline-offset: 4px;
}

.public-home {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 224, 232, 0.82);
  background: rgba(246, 247, 244, 0.94);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-brand {
  display: grid;
  gap: 2px;
}

.site-identity {
  color: var(--graphite);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
}

.site-mechanism {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.site-nav a {
  padding: 4px 0;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--accent-dark);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  display: flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--graphite);
}

.mobile-nav summary span + span {
  margin-top: 0;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 8px;
}

.mobile-nav nav a {
  border-radius: 6px;
  color: var(--graphite);
  font-weight: 800;
  padding: 10px 12px;
  text-decoration: none;
}

.mobile-nav nav a:hover,
.mobile-nav nav a:focus-visible {
  background: var(--surface-subtle);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  display: flex;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer__brand {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.site-footer__brand p {
  margin: 0;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.site-footer__link {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section {
  padding: 64px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(39, 92, 255, 0.12), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--page) 100%);
}

.hero-grid,
.split-layout {
  display: grid;
  gap: 32px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.report-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 8vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.2;
}

h4 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.hero-lede,
.section-heading p,
.prose-block p,
.final-cta p,
.request-panel p,
.stage-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-support {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(39, 92, 255, 0.22);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: #ffffff;
  border-color: var(--border);
  color: var(--graphite);
}

.button-secondary:hover {
  border-color: #aeb8c5;
}

.stage-note {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.95rem;
}

.summary-grid {
  display: grid;
  gap: 12px;
  margin: 0;
}

.summary-grid div {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-subtle);
  padding: 14px;
}

.summary-grid dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.summary-grid dd {
  margin: 0;
  color: var(--graphite);
  font-size: 1rem;
  font-weight: 850;
}

.summary-definition {
  margin: 16px 0 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.sample-report-link {
  font-size: 0.95rem;
  font-weight: 800;
}

.sample-report-link a {
  color: var(--accent-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.sample-report-link a:hover {
  color: var(--accent);
}

.sample-report-panel {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.sample-report-panel h3,
.sample-report-panel p {
  margin-bottom: 0;
}

.sample-report-panel .button {
  justify-self: start;
}

.sample-report-boundary {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.report-preview,
.proof-board,
.stage-card,
.final-cta,
.request-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.report-preview {
  padding: 20px;
}

.investor-snapshot h2 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.investor-snapshot p {
  color: var(--muted);
}

.snapshot-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.snapshot-stack span {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-subtle);
  color: var(--graphite);
  font-weight: 850;
  padding: 12px 14px;
}

.report-header,
.proof-board-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.report-header h2,
.proof-board-header h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.report-pill {
  border: 1px solid #b8c6ff;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.maturity-panel {
  margin-bottom: 18px;
  border-radius: 8px;
  background: #111827;
  color: #f8fafc;
  padding: 18px;
}

.maturity-panel p {
  margin-bottom: 0;
  color: #cbd5e1;
}

.maturity-label {
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.status-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.status {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  border-radius: 999px;
  border: 1px solid currentColor;
  padding: 4px 8px;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.status-label {
  display: grid;
  width: fit-content;
  max-width: 100%;
  gap: 4px;
}

.machine-state {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.7rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.observed {
  color: var(--teal);
  background: #ecfdf5;
}

.missing {
  color: #9f1239;
  background: #fff1f2;
}

.configure {
  color: var(--accent-dark);
  background: #eef2ff;
}

.apply {
  color: var(--violet);
  background: #f5f3ff;
}

.not-claimed {
  color: var(--amber);
  background: #fffbeb;
}

.content-section {
  padding: 52px 0;
}

.investor-page .content-section {
  padding: 44px 0;
}

.content-section.compact-section {
  padding: 40px 0;
}

.investor-page .content-section.compact-section {
  padding: 36px 0;
}

.problem-section,
.process-section,
.final-cta-section {
  background: #ffffff;
}

.founder-proof-section {
  background: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.compact-heading {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.info-card,
.proof-card,
.process-steps article,
.boundary-list div {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.info-card p,
.proof-card p,
.process-steps p,
.boundary-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-marker {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.preview-section {
  background: #eef2f7;
}

.proof-board {
  padding: 18px;
}

.proof-grid {
  display: grid;
  gap: 12px;
}

.proof-card p {
  display: grid;
  gap: 8px;
}

.next-step-panel {
  margin-top: 14px;
  border-radius: 8px;
  background: #111827;
  color: #f8fafc;
  padding: 18px;
}

.next-step-panel ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #dbeafe;
}

.audience-section {
  background: var(--page);
}

.process-steps {
  display: grid;
  gap: 16px;
}

.confirmation-summary p {
  margin-bottom: 0;
  color: var(--muted);
}

.confirmation-steps {
  display: grid;
  gap: 16px;
}

.confirmation-step-card,
.context-mode-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.confirmation-step-card {
  gap: 12px;
}

.confirmation-step-card h3,
.context-mode-card h3 {
  margin-bottom: 0;
}

.confirmation-step-card p,
.context-mode-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.step-badge {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
}

.context-mode-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 8px;
}

.context-mode-card {
  gap: 14px;
}

.context-mode-pill {
  display: inline-flex;
  max-width: 100%;
  align-self: flex-start;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--accent-dark);
  padding: 5px 9px;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
}

.confirmation-boundary-note {
  border: 1px solid #facc15;
  border-radius: 8px;
  background: #fffbeb;
  color: #713f12;
  padding: 16px;
}

.confirmation-actions {
  align-items: center;
}

.flow-track {
  display: grid;
  gap: 12px;
}

.flow-step {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.flow-step h3 {
  margin-bottom: 6px;
}

.flow-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.journey-timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.journey-step h3 {
  margin: 8px 0 6px;
}

.journey-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.journey-marker {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 3px solid var(--border);
  border-radius: 50%;
  background: #ffffff;
}

.journey-step-complete .journey-marker,
.journey-step-current .journey-marker {
  border-color: var(--accent);
}

.journey-step-current {
  border-color: #9db2ff;
  box-shadow: 0 16px 40px rgba(39, 92, 255, 0.12);
}

.process-steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
}

.proof-section {
  background: #111827;
  color: #f8fafc;
}

.proof-section .eyebrow {
  color: #93c5fd;
}

.proof-section h2 {
  color: #ffffff;
}

.boundary-list {
  display: grid;
  gap: 12px;
}

.boundary-list div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.boundary-list p {
  color: #cbd5e1;
}

.live-proof-section {
  background: #ffffff;
}

.proof-point-card::before {
  content: none;
  display: none;
}

.maturity-section {
  background: #ffffff;
}

.maturity-ladder {
  display: grid;
  gap: 12px;
}

.maturity-level {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.maturity-level span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.maturity-level h3 {
  margin-bottom: 6px;
}

.maturity-level p {
  margin-bottom: 0;
  color: var(--muted);
}

.maturity-level-current {
  border-color: #9db2ff;
  background: #eef2ff;
}

.maturity-level-target {
  border-color: #99f6e4;
  background: #ecfdf5;
}

.maturity-level-goal {
  border-color: #ddd6fe;
  background: #f5f3ff;
}

.boundary-note {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.stage-card {
  display: grid;
  gap: 24px;
  padding: 24px;
}

.boundary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: center;
  align-items: center;
  margin: 0;
}

.boundary-actions .button {
  flex: 0 0 auto;
  width: auto;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #ffffff;
}

.final-cta,
.request-panel {
  padding: 32px 24px;
}

.final-cta {
  text-align: center;
}

.final-cta h2,
.final-cta p,
.request-success h3,
.request-success p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.request-layout {
  display: grid;
  gap: 20px;
}

.request-copy {
  text-align: left;
}

.request-copy h2,
.request-copy p {
  margin-left: 0;
  margin-right: 0;
}

.request-panel {
  background: #ffffff;
}

.assessment-request-form {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label,
.consent-field label {
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--graphite);
  font: inherit;
  padding: 12px 14px;
}

.form-field input:focus,
.form-field textarea:focus,
.consent-field input:focus-visible {
  outline: 3px solid rgba(39, 92, 255, 0.28);
  outline-offset: 2px;
}

.form-field textarea {
  resize: vertical;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.privacy-note {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-errors {
  border: 1px solid #fecdd3;
  border-radius: 8px;
  background: #fff1f2;
  color: #9f1239;
  padding: 14px;
}

.form-errors h3 {
  font-size: 1rem;
}

.form-errors ul {
  margin: 0;
  padding-left: 20px;
}

.request-success {
  display: grid;
  min-height: 100%;
  align-content: center;
  gap: 8px;
}

.request-success h3 {
  font-size: 1.35rem;
}

.centered-actions {
  justify-content: center;
}

.material-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.material-link {
  color: var(--accent-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.material-link:hover {
  color: var(--accent);
}

.founder-hero .hero-lede {
  max-width: 700px;
}

.founder-proof-card h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.founder-proof-card p {
  color: var(--muted);
}

.founder-link-note {
  margin: 16px 0 0;
}

.founder-callout {
  margin: 18px 0;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #eef2ff;
  padding: 16px 18px;
}

.founder-callout p {
  margin-bottom: 0;
  color: var(--graphite);
  font-weight: 850;
}

.founder-path-stack,
.founder-link-grid {
  margin-top: 18px;
}

.founder-section-actions {
  margin-top: 18px;
}

.founder-proof-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.founder-proof-grid h3 {
  margin-bottom: 0;
}

@media (min-width: 720px) {
  .section-shell {
    width: min(1120px, calc(100% - 56px));
  }

  .hero-section {
    padding: 88px 0 72px;
  }

  .three-up,
  .two-up,
  .audience-grid,
  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .confirmation-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .flow-step {
    padding: 16px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .context-mode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey-step {
    grid-template-columns: minmax(0, 1fr);
  }

  .maturity-ladder {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .status-list li {
    grid-template-columns: minmax(130px, 0.4fr) minmax(0, 1fr);
    align-items: center;
  }

  .content-section {
    padding: 52px 0;
  }

  .investor-page .content-section {
    padding: 48px 0;
  }

  .content-section.compact-section {
    padding: 40px 0;
  }

  .investor-page .content-section.compact-section {
    padding: 34px 0;
  }

  .final-cta-section {
    padding-top: 40px;
  }
}

@media (min-width: 900px) {
  .status {
    white-space: nowrap;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
  }

  .split-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .wide-preview {
    grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1.44fr);
    align-items: center;
  }

  .stage-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
    padding: 36px;
  }

  .confirmation-actions {
    justify-content: flex-start;
  }

  .confirmation-actions .button {
    flex: 0 0 auto;
  }

  .confirmation-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .request-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .site-header-inner {
    align-items: center;
    gap: 10px;
  }

  .site-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-section {
    padding: 44px 0 40px;
  }

  .content-section {
    padding: 48px 0;
  }

  .investor-page .content-section {
    padding: 44px 0;
  }

  .content-section.compact-section,
  .investor-page .content-section.compact-section {
    padding: 36px 0;
  }

  .hero-grid,
  .split-layout {
    gap: 24px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .hero-lede {
    margin-bottom: 18px;
  }

  .hero-actions,
  .centered-actions {
    display: grid;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .process-steps,
  .boundary-list,
  .proof-grid,
  .journey-timeline,
  .maturity-ladder {
    gap: 12px;
  }

  .card-marker {
    margin-bottom: 20px;
  }

  .report-header,
  .proof-board-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .maturity-panel {
    margin-bottom: 14px;
  }

  .process-steps span {
    margin-bottom: 14px;
  }

  .stage-card {
    gap: 18px;
  }

  .report-preview,
  .proof-board,
  .stage-card,
  .final-cta,
  .info-card,
  .proof-card,
  .process-steps article,
  .boundary-list div {
    padding: 16px;
  }
}
