:root {
  --navy-950: #071421;
  --navy-900: #0b1f33;
  --navy-800: #102e4c;
  --navy-700: #153d65;
  --ink: #14243a;
  --muted: #516579;
  --line: #d9e0e7;
  --paper: #f7f7f2;
  --warm: #f1eee7;
  --white: #ffffff;
  --emerald: #19c37d;
  --emerald-dark: #087a4c;
  --amber: #f5b94c;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 24px 70px rgba(7, 20, 33, .14);
  --shell: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-900); line-height: 1.08; letter-spacing: -.035em; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); }
h3 { font-size: 1.22rem; }
ul, ol { margin-top: 0; }

:focus-visible { outline: 3px solid var(--emerald); outline-offset: 4px; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 6px;
  color: var(--navy-950);
  background: var(--emerald);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: rgba(11, 31, 51, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { background: rgba(7, 20, 33, .98); box-shadow: 0 12px 35px rgba(0,0,0,.2); }
.nav-shell { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; text-decoration: none; }
.brand img { width: 188px; height: 40px; object-fit: contain; object-position: left center; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(16px, 2.1vw, 30px); }
.primary-nav a { color: #d9e5ef; font-size: .83rem; font-weight: 750; letter-spacing: .02em; text-decoration: none; }
.primary-nav a:hover { color: var(--emerald); }
.nav-toggle { display: none; min-width: 44px; min-height: 44px; padding: 10px; border: 0; color: #fff; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--emerald);
  border-radius: var(--radius-sm);
  color: var(--navy-950);
  background: var(--emerald);
  box-shadow: 0 10px 25px rgba(25, 195, 125, .16);
  font-size: .9rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: #28d991; border-color: #28d991; box-shadow: 0 14px 34px rgba(25,195,125,.24); }
.button-small { min-height: 42px; padding: 9px 15px; font-size: .8rem; }
.button-secondary { color: var(--navy-900); background: transparent; border-color: #9aa9b8; box-shadow: none; }
.button-secondary:hover { color: var(--navy-900); background: #e8eee9; border-color: var(--emerald-dark); box-shadow: none; }
.button-dark { color: #fff; background: var(--navy-900); border-color: var(--navy-900); box-shadow: none; }
.button-dark:hover { color: #fff; background: var(--navy-800); border-color: var(--navy-800); box-shadow: none; }
.button-light { color: var(--navy-950); background: #fff; border-color: #fff; box-shadow: none; }
.button-light:hover { background: var(--emerald); border-color: var(--emerald); box-shadow: none; }
.full-button { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy-900);
  padding: clamp(72px, 9vw, 126px) 0 88px;
}
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; right: -170px; top: -240px; border-radius: 50%; background: rgba(25,195,125,.13); filter: blur(18px); }
.hero-grid-bg { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000, transparent 82%); }
.hero-layout { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(530px, 1.1fr); gap: clamp(40px, 6vw, 90px); align-items: center; }
.kicker, .eyebrow { color: var(--emerald-dark); font-size: .75rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.kicker { display: flex; gap: 10px; align-items: center; color: #79e4b6; }
.status-dot { position: relative; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 5px rgba(25,195,125,.14); }
.hero h1 { max-width: 720px; margin-bottom: 24px; color: #fff; font-size: clamp(3.5rem, 6.4vw, 6.5rem); }
.hero h1 span { color: var(--emerald); }
.hero-lead { max-width: 640px; margin-bottom: 31px; color: #cbd8e4; font-size: clamp(1.05rem, 1.7vw, 1.26rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; }
.hero .button-secondary, .final-cta .button-secondary { color: #eef6fa; border-color: #7890a5; }
.hero .button-secondary:hover, .final-cta .button-secondary:hover { color: #fff; background: rgba(255,255,255,.08); border-color: #fff; }
.hero-note { max-width: 590px; margin: 22px 0 0; color: #91a6b9; font-size: .78rem; }

.product-window { overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius); background: #fff; box-shadow: 0 36px 100px rgba(0,0,0,.35); transform: rotate(.35deg); }
.window-bar { min-height: 45px; padding: 0 17px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #b8c8d6; background: var(--navy-950); font-size: .66rem; font-weight: 750; letter-spacing: .09em; }
.window-title { display: flex; align-items: center; gap: 8px; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(25,195,125,.15); }
.window-body { padding: 22px; color: var(--ink); }
.record-head { display: flex; align-items: start; justify-content: space-between; gap: 16px; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.overline { margin-bottom: 6px; color: var(--muted); font-size: .63rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.record-head h2 { margin: 0 0 3px; font-family: inherit; font-size: 1.25rem; font-weight: 850; letter-spacing: -.02em; }
.record-head p:last-child { margin: 0; color: var(--muted); font-size: .78rem; }
.badge { flex: 0 0 auto; padding: 6px 10px; border-radius: 999px; font-size: .65rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.badge-pass { color: #075c3b; background: #daf8ea; }
.record-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin: 17px 0; border: 1px solid var(--line); border-radius: 10px; }
.record-cell { min-width: 0; padding: 13px 14px; }
.record-cell:nth-child(odd) { border-right: 1px solid var(--line); }
.record-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.record-cell span, .record-cell small { display: block; color: var(--muted); font-size: .62rem; }
.record-cell strong { display: block; overflow: hidden; margin: 2px 0; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.record-cell .pending { color: #9a5c00; }
.verification-path { display: grid; grid-template-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr; align-items: start; padding: 14px 2px 17px; }
.path-step { min-width: 0; text-align: center; }
.path-step > span { width: 26px; height: 26px; display: grid; place-items: center; margin: 0 auto 7px; border: 1px solid #a9b7c4; border-radius: 50%; color: #566b80; font-size: .65rem; font-weight: 900; background: #fff; }
.path-step.complete > span { color: #064d32; border-color: var(--emerald); background: #d9f8e9; }
.path-step strong, .path-step small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.path-step strong { font-size: .64rem; }
.path-step small { color: var(--muted); font-size: .5rem; }
.path-line { height: 1px; margin-top: 13px; background: #bdc8d1; }
.path-line.complete { background: var(--emerald); }
.source-receipt { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border-radius: 9px; background: var(--line); }
.source-receipt > div { min-width: 0; padding: 10px; background: #edf2f5; }
.source-receipt span, .source-receipt strong { display: block; }
.source-receipt span { color: var(--muted); font-size: .51rem; text-transform: uppercase; letter-spacing: .07em; }
.source-receipt strong { margin-top: 2px; overflow: hidden; font-size: .58rem; text-overflow: ellipsis; white-space: nowrap; }

.proof-rail { position: relative; z-index: 2; color: #fff; background: var(--navy-800); border-top: 1px solid rgba(255,255,255,.08); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-stat { min-height: 135px; padding: 27px 25px; border-right: 1px solid rgba(255,255,255,.13); }
.proof-stat:first-child { border-left: 1px solid rgba(255,255,255,.13); }
.proof-stat strong { display: block; margin-bottom: 6px; color: var(--emerald); font-family: Georgia, serif; font-size: 2.05rem; font-weight: 500; letter-spacing: -.03em; }
.proof-stat span { display: block; max-width: 210px; color: #bed0df; font-size: .75rem; line-height: 1.45; }
.proof-disclosure { padding: 10px 0 13px; color: #91a8ba; font-size: .66rem; text-align: center; border-top: 1px solid rgba(255,255,255,.08); }

.answer-strip { padding: 34px 0; color: #d8e4ed; background: var(--navy-800); border-top: 1px solid rgba(255,255,255,.1); }
.answer-strip-inner { display: grid; grid-template-columns: 150px 230px 1fr; gap: 28px; align-items: center; }
.answer-strip .eyebrow { margin: 0; color: #72dfb0; }
.answer-strip h2 { margin: 0; color: #fff; font-size: clamp(1.55rem, 2.6vw, 2.25rem); }
.answer-strip p:last-child { max-width: 760px; margin: 0; color: #c7d5df; font-size: .88rem; }
.answer-strip strong { color: #fff; }
.answer-strip a { color: #8ce6bd; font-weight: 800; text-underline-offset: 3px; }

.section { padding: clamp(80px, 9vw, 126px) 0; }
.section-heading { margin-bottom: 52px; }
.section-heading h2 { max-width: 800px; margin-bottom: 0; }
.section-heading > p, .split-heading > p { color: var(--muted); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 70px; align-items: end; }
.split-heading > p { margin-bottom: 7px; }
.center-heading { max-width: 780px; margin-inline: auto; text-align: center; }
.center-heading h2 { margin-inline: auto; }
.center-heading > p:last-child { max-width: 640px; margin: 19px auto 0; }
.eyebrow { margin-bottom: 14px; }

.lifecycle { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0; list-style: none; counter-reset: item; }
.lifecycle-card { position: relative; min-height: 254px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.lifecycle-card:hover { transform: translateY(-4px); border-color: #a8b6c3; box-shadow: 0 18px 45px rgba(7,20,33,.08); }
.lifecycle-card.live { border-top: 3px solid var(--emerald); }
.lifecycle-card.pilot { border-top: 3px solid var(--amber); }
.lifecycle-card.controlled { border-top: 3px solid #65a5e3; }
.lifecycle-card.planned { border-top: 3px solid #9ba9b6; }
.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.step-number { color: #566b80; font-family: Georgia, serif; font-size: 1.15rem; }
.availability { padding: 4px 8px; border-radius: 999px; color: #38506a; background: #e7edf2; font-size: .58rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.live .availability { color: #075c3b; background: #daf8ea; }
.pilot .availability { color: #704300; background: #fff0c8; }
.controlled .availability { color: #184d7f; background: #dfefff; }
.lifecycle-card h3 { margin-bottom: 10px; font-size: 1.5rem; }
.lifecycle-card p { color: var(--muted); font-size: .88rem; }
.card-detail { position: absolute; right: 25px; bottom: 22px; left: 25px; padding-top: 12px; color: #566b80; border-top: 1px solid var(--line); font-size: .65rem; font-weight: 750; }

.dark-section { position: relative; overflow: hidden; color: #d3dfe9; background: var(--navy-900); }
.dark-section::after { content: ""; position: absolute; inset: auto -10% -55% 45%; height: 500px; background: radial-gradient(circle, rgba(25,195,125,.14), transparent 67%); pointer-events: none; }
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section .eyebrow { color: #72dfb0; }
.dark-section .section-heading > p:last-child { color: #9db0c1; }
.pillar-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pillar-card { padding: 28px 24px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.pillar-card.featured { background: rgba(25,195,125,.08); border-color: rgba(25,195,125,.38); }
.pillar-icon { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 32px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; color: var(--emerald); background: rgba(0,0,0,.16); font-size: .74rem; font-weight: 900; }
.pillar-label { color: #7eddb4; font-size: .6rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.pillar-card h3 { margin: 9px 0 13px; font-size: 1.3rem; }
.pillar-card p { min-height: 112px; color: #adbecc; font-size: .84rem; }
.pillar-card ul { padding: 17px 0 0; border-top: 1px solid rgba(255,255,255,.1); list-style: none; }
.pillar-card li { position: relative; padding: 6px 0 6px 18px; color: #d5e0e9; font-size: .75rem; }
.pillar-card li::before { content: ""; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); }

.proof-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(55px, 8vw, 105px); align-items: center; }
.proof-copy h2 { margin-bottom: 24px; }
.proof-copy > p:not(.eyebrow) { color: var(--muted); }
.check-list { padding: 10px 0 8px; list-style: none; }
.check-list li { display: flex; gap: 11px; align-items: start; padding: 7px 0; color: #30445a; font-size: .88rem; }
.check-list span { color: var(--emerald-dark); font-weight: 900; }
.text-link { display: inline-flex; gap: 8px; align-items: center; min-height: 44px; color: var(--emerald-dark); font-size: .87rem; font-weight: 900; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.audit-card { overflow: hidden; border: 1px solid #cdd6df; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.audit-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 25px; color: #fff; background: var(--navy-900); }
.audit-head .overline { color: #91a9ba; }
.audit-head strong { color: var(--emerald); font-size: 1.16rem; letter-spacing: .1em; }
.audit-seal { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(25,195,125,.45); border-radius: 50%; color: var(--navy-950); background: var(--emerald); font-size: 1.25rem; font-weight: 900; }
.funnel { display: grid; gap: 20px; padding: 29px 25px; }
.funnel-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; color: #506479; font-size: .74rem; }
.funnel-row strong { color: var(--navy-900); font-size: .82rem; }
.funnel-row i { grid-column: 1 / -1; width: var(--w); height: 11px; border-radius: 20px; background: #9aabba; }
.funnel-row.release i { background: var(--emerald); }
.audit-foot { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); background: #eef3f5; }
.audit-foot div { padding: 17px 13px; text-align: center; border-right: 1px solid var(--line); }
.audit-foot div:last-child { border-right: 0; }
.audit-foot strong, .audit-foot span { display: block; }
.audit-foot strong { color: var(--navy-900); font-size: .93rem; }
.audit-foot span { color: var(--muted); font-size: .57rem; }

.solutions-section { background: var(--warm); }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.solution-card { min-height: 470px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(30px, 4vw, 52px); border-radius: var(--radius-lg); }
.investor-card { color: var(--ink); background: #fff; border: 1px solid #d2d9df; }
.brokerage-card { color: #d6e2ec; background: var(--navy-800); border: 1px solid var(--navy-800); }
.solution-for { color: var(--emerald-dark); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.brokerage-card .solution-for { color: #72dfb0; }
.solution-card h3 { max-width: 480px; margin: 20px 0; font-family: Georgia, serif; font-size: clamp(2rem, 3.4vw, 3.1rem); font-weight: 500; }
.brokerage-card h3 { color: #fff; }
.solution-card > p { max-width: 510px; color: var(--muted); }
.brokerage-card > p { color: #b4c5d2; }
.solution-features { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 35px; }
.solution-features span { padding: 7px 10px; border: 1px solid #cbd5dd; border-radius: 999px; color: #52677a; font-size: .66rem; font-weight: 750; }
.brokerage-card .solution-features span { color: #c4d4df; border-color: rgba(255,255,255,.18); }
.solution-card .button { margin-top: auto; }
.legal-note { max-width: 960px; margin: 22px auto 0; color: #536572; font-size: .69rem; text-align: center; }

.comparison-section { background: #fff; }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 16px 45px rgba(7,20,33,.06); }
.comparison-table { width: 100%; min-width: 820px; border-collapse: collapse; font-size: .77rem; }
.comparison-table th, .comparison-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; }
.comparison-table thead th { color: #52667a; background: #edf2f5; font-size: .66rem; letter-spacing: .04em; text-transform: uppercase; }
.comparison-table tbody th { color: var(--navy-900); font-weight: 800; }
.comparison-table td { color: #566b80; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table .deal-col { color: var(--navy-900); background: #edfbf5; border-left: 1px solid #b8ead3; }
.yes { color: #087348; font-weight: 900; }
.pilot-text { color: #825100; font-weight: 850; }
.planned-text { color: #425a70; font-weight: 850; }

.trust-section { color: #d2dee8; background: var(--navy-950); }
.trust-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 110px); }
.trust-intro h2 { color: #fff; }
.trust-intro > p:not(.eyebrow) { color: #9fb0bf; }
.trust-section .eyebrow { color: #72dfb0; }
.light-link { color: #72dfb0; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 26px; }
.trust-grid article { border-top: 1px solid rgba(255,255,255,.16); padding-top: 20px; }
.trust-number { color: var(--emerald); font-family: Georgia, serif; font-size: 1.1rem; }
.trust-grid h3 { margin: 20px 0 9px; color: #fff; }
.trust-grid p { color: #9fb0bf; font-size: .82rem; }
.source-status { margin-top: 60px; display: flex; justify-content: space-between; gap: 30px; align-items: center; padding: 20px 24px; border: 1px solid rgba(245,185,76,.3); border-radius: 12px; background: rgba(245,185,76,.08); }
.source-status > div { display: flex; gap: 14px; align-items: start; }
.source-status p { margin: 0; color: #c3d0da; font-size: .76rem; }
.source-status strong { color: #ffe3a6; }
.status-icon { flex: 0 0 auto; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: #311e00; background: var(--amber); font-weight: 900; }
.source-status > a { flex: 0 0 auto; color: #ffe3a6; font-size: .73rem; font-weight: 850; }

.engagements-section { background: var(--warm); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; align-items: stretch; }
.pricing-card { display: flex; flex-direction: column; padding: 31px 28px; border: 1px solid #d1d9df; border-radius: var(--radius); background: #fff; }
.pricing-card.primary-plan { border: 2px solid var(--emerald-dark); box-shadow: 0 22px 60px rgba(7,20,33,.1); transform: translateY(-8px); }
.plan-label { align-self: flex-start; padding: 5px 9px; border-radius: 999px; color: #40556b; background: #e8edf1; font-size: .59rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.primary-plan .plan-label { color: #075c3b; background: #d9f8e9; }
.pricing-card h3 { margin: 23px 0 5px; font-size: 1.4rem; }
.price { min-height: 61px; display: flex; gap: 9px; align-items: baseline; margin-bottom: 19px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.price strong { color: var(--navy-900); font-family: Georgia, serif; font-size: 2.5rem; font-weight: 500; letter-spacing: -.04em; }
.price span { color: var(--muted); font-size: .66rem; }
.pricing-card > p:not(.price) { color: var(--muted); font-size: .82rem; }
.pricing-card ul { flex-grow: 1; padding: 12px 0 20px; list-style: none; }
.pricing-card li { position: relative; padding: 7px 0 7px 20px; color: #40546a; font-size: .75rem; }
.pricing-card li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald-dark); font-weight: 900; }

.company-section { background: #fff; }
.company-layout { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(55px, 9vw, 120px); align-items: center; }
.company-story h2 { margin-bottom: 25px; }
.company-story > p:not(.eyebrow) { color: var(--muted); }
.founder-line { display: flex; gap: 14px; align-items: center; margin-top: 30px; padding-top: 25px; border-top: 1px solid var(--line); }
.founder-mark { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--emerald); font-family: Georgia, serif; font-size: 1.35rem; }
.founder-line strong, .founder-line span, .founder-line a { display: block; }
.founder-line span, .founder-line a { color: var(--muted); font-size: .7rem; }
.founder-line a { color: var(--emerald-dark); }
.continuity-card { padding: 18px 30px 12px; border: 1px solid #cdd8df; border-radius: var(--radius-lg); background: #f0f4f5; }
.continuity-card > .overline { padding: 12px 0 22px; }
.continuity-item { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 20px 0; border-top: 1px solid #cfd9df; }
.continuity-item > span { color: var(--emerald-dark); font-family: Georgia, serif; }
.continuity-item strong { display: block; margin-bottom: 4px; color: var(--navy-900); font-size: .84rem; }
.continuity-item p { margin: 0; color: var(--muted); font-size: .72rem; }

.faq-section { background: var(--paper); border-top: 1px solid var(--line); }
.faq-layout { display: grid; grid-template-columns: .66fr 1.34fr; gap: clamp(50px, 9vw, 120px); }
.faq-list { border-top: 1px solid #bfcbd4; }
.faq-list details { border-bottom: 1px solid #bfcbd4; }
.faq-list summary { position: relative; min-height: 64px; padding: 20px 44px 20px 0; cursor: pointer; color: var(--navy-900); font-weight: 850; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 6px; top: 15px; color: var(--emerald-dark); font-size: 1.55rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 700px; padding: 0 44px 20px 0; color: var(--muted); font-size: .84rem; }

.final-cta { position: relative; overflow: hidden; padding: clamp(85px, 10vw, 132px) 0; color: #d2dee7; background: var(--navy-800); text-align: center; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(25,195,125,.22); border-radius: 50%; }
.final-cta::before { left: -280px; top: -180px; }
.final-cta::after { right: -250px; bottom: -240px; }
.final-cta-inner { position: relative; z-index: 1; max-width: 850px; }
.final-cta h2 { max-width: 800px; margin: 0 auto 18px; color: #fff; }
.final-cta p:not(.eyebrow) { max-width: 680px; margin: 0 auto 30px; color: #b5c6d3; }
.final-cta .eyebrow { color: #72dfb0; }
.centered-actions { justify-content: center; }

.site-footer { padding: 70px 0 26px; color: #9cafbf; background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 52px; }
.footer-brand p { max-width: 330px; margin: 22px 0 10px; font-size: .8rem; }
.footer-brand > a:not(.brand) { color: #71dcae; font-size: .78rem; }
.site-footer h3 { margin: 8px 0 18px; color: #fff; font-family: inherit; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer ul { padding: 0; list-style: none; }
.site-footer li { margin: 10px 0; }
.site-footer li a { color: #9cafbf; font-size: .75rem; text-decoration: none; }
.site-footer li a:hover { color: var(--emerald); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { max-width: 680px; margin: 0; color: #73899a; font-size: .65rem; }

/* Market and legal pages */
.subpage-hero { position: relative; overflow: hidden; padding: clamp(72px, 9vw, 118px) 0 76px; color: #c9d7e2; background: var(--navy-900); }
.subpage-hero::after { content: ""; position: absolute; right: -160px; top: -260px; width: 540px; height: 540px; border-radius: 50%; background: rgba(25,195,125,.12); }
.subpage-hero .shell { position: relative; z-index: 1; }
.breadcrumbs { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 24px; color: #8ea4b6; font-size: .7rem; }
.breadcrumbs a { color: #71e2b2; }
.subpage-hero h1 { max-width: 880px; margin-bottom: 22px; color: #fff; font-size: clamp(3rem, 6.2vw, 6rem); }
.subpage-hero h1 span { color: var(--emerald); }
.subpage-hero .lead { max-width: 770px; margin-bottom: 25px; color: #c2d0dc; font-size: 1.08rem; }
.status-line { display: inline-flex; align-items: center; gap: 10px; padding: 9px 13px; border: 1px solid rgba(245,185,76,.35); border-radius: 8px; color: #ffe2a8; background: rgba(245,185,76,.08); font-size: .7rem; font-weight: 750; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.metric-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.metric-card strong, .metric-card span { display: block; }
.metric-card strong { color: var(--navy-900); font-family: Georgia, serif; font-size: 2.1rem; font-weight: 500; letter-spacing: -.04em; }
.metric-card span { margin-top: 7px; color: var(--muted); font-size: .73rem; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.method-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.method-card .method-level { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 25px; border-radius: 10px; color: #075c3b; background: #d9f8e9; font-size: .76rem; font-weight: 900; }
.method-card h3 { font-size: 1.3rem; }
.method-card p { color: var(--muted); font-size: .82rem; }
.method-card ul { margin-bottom: 0; padding-left: 18px; color: #405469; font-size: .75rem; }
.receipt-card { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border: 1px solid #cad4dc; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.receipt-intro { padding: 34px; color: #d2dfea; background: var(--navy-900); }
.receipt-intro h3 { color: #fff; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.receipt-intro p { color: #a6b9c8; font-size: .82rem; }
.receipt-rows { padding: 22px 30px; }
.receipt-row { display: grid; grid-template-columns: 155px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.receipt-row:last-child { border-bottom: 0; }
.receipt-row span { color: var(--muted); font-size: .69rem; }
.receipt-row strong { overflow-wrap: anywhere; color: var(--navy-900); font-size: .75rem; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.data-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: .74rem; }
.data-table th, .data-table td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; }
.data-table thead th { color: #4d6277; background: #edf2f5; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table code { color: #075c3b; font-size: .68rem; }
.disclosure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.disclosure-card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.disclosure-card.warning { border-color: #e6c27b; background: #fff9ec; }
.disclosure-card h3 { margin-bottom: 10px; }
.disclosure-card p { margin-bottom: 0; color: var(--muted); font-size: .8rem; }
.legal-hero h1 { max-width: 760px; }
.legal-content { max-width: 880px; }
.legal-content section { margin-bottom: 56px; }
.legal-content h2 { margin-bottom: 19px; font-family: Georgia, serif; font-size: clamp(1.65rem, 3vw, 2.3rem); }
.legal-content h3 { margin: 25px 0 10px; font-size: 1rem; letter-spacing: -.01em; }
.legal-content p, .legal-content li { color: #465b70; font-size: .9rem; }
.legal-content li { margin: 8px 0; }
.legal-content a { color: var(--emerald-dark); font-weight: 750; }
.notice { padding: 20px 22px; border-left: 4px solid var(--emerald-dark); border-radius: 0 9px 9px 0; color: #314a60; background: #e8f5ef; font-size: .84rem; }

@media (max-width: 1100px) {
  .nav-shell { gap: 18px; }
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: .76rem; }
  .hero-layout { grid-template-columns: .85fr 1.15fr; gap: 35px; }
  .hero h1 { font-size: clamp(3.2rem, 6vw, 5.3rem); }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .pillar-card p { min-height: auto; }
}

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .primary-nav { position: absolute; top: 76px; left: 0; right: 0; display: none; margin: 0; padding: 14px 18px 22px; flex-direction: column; align-items: stretch; gap: 0; background: var(--navy-950); border-bottom: 1px solid rgba(255,255,255,.14); box-shadow: 0 20px 35px rgba(0,0,0,.25); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { min-height: 46px; display: flex; align-items: center; padding: 0 10px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .85rem; }
  .primary-nav a:last-child { border-bottom: 0; }
  .hero { padding-top: 75px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 730px; }
  .answer-strip-inner { grid-template-columns: 1fr; gap: 10px; }
  .product-window { max-width: 730px; transform: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-stat:nth-child(2) { border-right: 0; }
  .proof-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .split-heading, .proof-layout, .trust-layout, .company-layout, .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .split-heading { align-items: start; }
  .split-heading > p { max-width: 680px; }
  .lifecycle { grid-template-columns: 1fr 1fr; }
  .solution-card { min-height: 500px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .pricing-card.primary-plan { transform: none; }
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .receipt-card { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .hero { padding: 62px 0 64px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.9rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .window-date { display: none; }
  .verification-path { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .path-line { display: none; }
  .path-step small { display: none; }
  .source-receipt { grid-template-columns: 1fr; }
  .proof-stat { min-height: 125px; padding: 22px 18px; }
  .proof-stat strong { font-size: 1.68rem; }
  .proof-disclosure { padding-inline: 8px; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 38px; }
  .lifecycle, .pillar-grid, .solution-grid, .trust-grid { grid-template-columns: 1fr; }
  .lifecycle-card { min-height: 240px; }
  .solution-card { min-height: 440px; }
  .source-status { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .disclosure-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .brand img { width: 164px; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4rem); }
  .window-body { padding: 16px; }
  .record-head { flex-direction: column; }
  .record-grid { grid-template-columns: 1fr; }
  .record-cell:nth-child(odd) { border-right: 0; }
  .record-cell:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .record-cell:last-child { border-bottom: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-stat, .proof-stat:first-child { min-height: auto; border: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .proof-stat span { max-width: 280px; }
  .audit-foot { grid-template-columns: 1fr; }
  .audit-foot div { border-right: 0; border-bottom: 1px solid var(--line); }
  .audit-foot div:last-child { border-bottom: 0; }
  .solution-card { min-height: 0; }
  .solution-card .button { margin-top: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
  .metric-grid { grid-template-columns: 1fr; }
  .receipt-row { grid-template-columns: 1fr; gap: 4px; }
}

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