:root {
  --white: #ffffff;
  --ink: #05060a;
  --text: #202634;
  --muted: #626b79;
  --soft: #8d95a3;
  --line: #e7eaf0;
  --line-strong: #cfd5df;
  --panel: #f8fafc;
  --dark: #070a10;
  --dark-2: #111827;
  --accent: #2f55ff;
  --accent-dark: #1f36a8;
  --shadow: 0 30px 90px rgba(5, 6, 10, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.is-leaving {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 140ms ease, transform 140ms ease;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

::selection {
  background: rgba(47, 85, 255, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 0 42px;
  border-bottom: 1px solid rgba(231, 234, 240, 0.82);
  background: rgba(255, 255, 255, 0.76);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
  backdrop-filter: blur(22px) saturate(1.1);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--ink), var(--accent)) 0 0 / max(var(--scroll-progress, 0%), 0.001%) 100% no-repeat;
  content: "";
}

.site-header.is-scrolled {
  border-bottom-color: rgba(207, 213, 223, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(5, 6, 10, 0.055);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 44px;
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}

.header-actions,
.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.header-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.header-link::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}

.header-link:hover,
.header-link.is-active {
  color: var(--ink);
}

.header-link:hover::after,
.header-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.button,
.nav-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease, color 170ms ease;
}

.button::after,
.nav-cta::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.22) 48%, transparent 62% 100%);
  content: "";
  transform: translateX(-132%);
  transition: transform 560ms ease;
}

.button:hover::after,
.nav-cta:hover::after {
  transform: translateX(132%);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button-primary,
.nav-cta {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(5, 6, 10, 0.16);
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 20px 44px rgba(47, 85, 255, 0.2);
}

.button-secondary,
.button-quiet {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
  color: var(--text);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: var(--line-strong);
  box-shadow: 0 18px 48px rgba(5, 6, 10, 0.07);
}

.page-shell {
  min-height: 100vh;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: linear-gradient(180deg, var(--white), var(--panel));
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(5, 6, 10, 0.045);
}

.icon-shell svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-section {
  position: relative;
}

.section-shell {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 142px 0;
}

.capital-hero {
  position: relative;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  display: grid;
  align-content: center;
  padding: 72px 0 72px;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.028) 1px, transparent 1px) 50% 0 / 92px 92px,
    linear-gradient(180deg, #ffffff 0%, #ffffff 68%, #f8fafc 100%);
}

.capital-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.capital-field::before,
.capital-field::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 85, 255, 0.34), transparent);
  content: "";
  animation: scanLine 9s ease-in-out infinite;
}

.capital-field::before {
  top: 28%;
}

.capital-field::after {
  bottom: 18%;
  animation-delay: 1.6s;
}

.capital-field span {
  position: absolute;
  width: 1px;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(47, 85, 255, 0.22), transparent);
  animation: verticalScan 8.5s ease-in-out infinite;
}

.capital-field span:nth-child(1) {
  left: 18%;
  top: 16%;
}

.capital-field span:nth-child(2) {
  left: 50%;
  top: 33%;
  animation-delay: 1s;
}

.capital-field span:nth-child(3) {
  right: 18%;
  top: 20%;
  animation-delay: 2s;
}

.capital-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.capital-hero h1 {
  max-width: 960px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(60px, 9.5vw, 124px);
  line-height: 0.89;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.capital-hero-copy p {
  max-width: 690px;
  margin: 30px auto 0;
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.truth-instrument {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 72px));
  margin: 72px auto 0;
  padding: 26px;
  border: 1px solid rgba(207, 213, 223, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.instrument-scale {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.instrument-scale::before {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.instrument-scale::after {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 24%;
  height: 1px;
  background: var(--accent);
  content: "";
  animation: instrumentTrace 8s ease-in-out infinite;
}

.instrument-scale span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 70px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.instrument-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.instrument-panel div {
  min-height: 118px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.instrument-panel div:last-child {
  border-right: 0;
}

.instrument-panel span {
  display: block;
  color: var(--soft);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.instrument-panel strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 680;
}

.category-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 86px;
  align-items: start;
}

.category-section h2,
.integration-copy h2,
.proof-copy h2,
.operating-heading h2,
.record-copy h2,
.trust-inner h2,
.page-hero h1,
.booking-copy h2,
.section-heading h2,
.closing-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: 0.96;
  font-weight: 740;
  letter-spacing: -0.02em;
}

.category-section p,
.integration-copy > p,
.proof-copy p,
.operating-heading p,
.record-copy p,
.trust-inner p,
.page-hero p:not(.profile-line),
.booking-copy > p,
.section-heading p,
.closing-cta p {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.62;
}

.integration-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.022) 1px, transparent 1px) 50% 0 / 92px 92px,
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.integration-inner {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
  padding: 112px 0 128px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: stretch;
}

.integration-copy {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 420px);
  gap: 56px;
  align-items: end;
  justify-content: space-between;
}

.integration-copy h2 {
  max-width: 780px;
}

.integration-copy > p {
  max-width: 640px;
}

.integration-proof {
  display: grid;
  gap: 0;
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
  border-top: 1px solid var(--line-strong);
}

.integration-proof p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.integration-proof strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.integration-media {
  position: relative;
  justify-self: center;
  overflow: hidden;
  width: min(1180px, 100%);
  border: 1px solid rgba(207, 213, 223, 0.95);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.integration-media::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  content: "";
  animation: ctaTrace 9s ease-in-out infinite;
}

.integration-hub {
  position: relative;
  width: 100%;
  height: clamp(340px, 38vw, 560px);
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 85, 255, 0.12), transparent 36%),
    linear-gradient(rgba(100, 116, 139, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 116, 139, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.integration-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.integration-ring {
  fill: none;
  stroke: rgba(47, 85, 255, 0.2);
}

.integration-ring-outer {
  stroke-dasharray: 6 10;
  animation: integrationRing 14s linear infinite;
}

.integration-ring-inner {
  stroke-opacity: 0.42;
  stroke-width: 1.2;
}

.integration-line-base,
.integration-line-flow {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.integration-line-base {
  stroke: rgba(47, 85, 255, 0.25);
  stroke-width: 1.35;
}

.integration-line-flow {
  stroke: var(--accent);
  stroke-width: 2.6;
  stroke-dasharray: 18 430;
  filter: drop-shadow(0 0 8px rgba(47, 85, 255, 0.42));
  animation: integrationTransfer 2.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.flow-2 {
  animation-delay: 0.18s;
}

.flow-3 {
  animation-delay: 0.36s;
}

.flow-4 {
  animation-delay: 0.54s;
}

.flow-5 {
  animation-delay: 0.72s;
}

.flow-6 {
  animation-delay: 0.9s;
}

.flow-7 {
  animation-delay: 1.08s;
}

.integration-center,
.integration-node {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.integration-center {
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(82px, 8.5vw, 112px);
  height: clamp(82px, 8.5vw, 112px);
  border-radius: 27px;
  background: transparent;
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.24);
  animation: integrationCenterPulse 4.4s ease-in-out infinite;
}

.integration-center img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
}

.integration-node {
  display: grid;
  gap: 6px;
  justify-items: center;
  width: clamp(78px, 7.4vw, 104px);
  padding: 10px 8px 9px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(249, 251, 255, 0.92));
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: integrationFloatA 4.8s ease-in-out infinite;
}

.integration-node span {
  display: grid;
  place-items: center;
  width: clamp(28px, 4.2vw, 44px);
  height: clamp(28px, 4.2vw, 44px);
}

.integration-node img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.integration-node b {
  max-width: 100%;
  overflow: hidden;
  color: #334155;
  font-size: clamp(9px, 1.1vw, 11px);
  font-weight: 760;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.node-drive {
  top: 13%;
  left: 50%;
  animation-name: integrationFloatB;
}

.node-sharepoint {
  top: 28%;
  left: 24%;
  animation-delay: -0.65s;
}

.node-pitchbook {
  top: 28%;
  left: 76%;
  width: clamp(84px, 8vw, 110px);
  animation-name: integrationFloatC;
  animation-delay: -1.1s;
}

.node-dropbox {
  top: 50%;
  left: 13%;
  animation-name: integrationFloatB;
  animation-delay: -1.55s;
}

.node-onedrive {
  top: 50%;
  left: 87%;
  animation-delay: -2s;
}

.node-gmail {
  top: 72%;
  left: 24%;
  animation-name: integrationFloatC;
  animation-delay: -2.35s;
}

.node-outlook {
  top: 72%;
  left: 76%;
  animation-name: integrationFloatB;
  animation-delay: -2.8s;
}

@keyframes integrationTransfer {
  0% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
  12%,
  76% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -448;
    opacity: 0;
  }
}

@keyframes integrationRing {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes integrationCenterPulse {
  0%,
  100% {
    box-shadow: 0 26px 62px rgba(15, 23, 42, 0.24), 0 0 0 0 rgba(47, 85, 255, 0);
  }
  50% {
    box-shadow: 0 30px 72px rgba(15, 23, 42, 0.28), 0 0 0 8px rgba(47, 85, 255, 0.1);
  }
}

@keyframes integrationFloatA {
  0%,
  100% {
    transform: translate(-50%, -50%) translate3d(-7px, -5px, 0);
  }
  50% {
    transform: translate(-50%, -50%) translate3d(8px, 7px, 0);
  }
}

@keyframes integrationFloatB {
  0%,
  100% {
    transform: translate(-50%, -50%) translate3d(7px, -7px, 0);
  }
  50% {
    transform: translate(-50%, -50%) translate3d(-8px, 8px, 0);
  }
}

@keyframes integrationFloatC {
  0%,
  100% {
    transform: translate(-50%, -50%) translate3d(-5px, 8px, 0);
  }
  50% {
    transform: translate(-50%, -50%) translate3d(9px, -6px, 0);
  }
}

.proof-point-section {
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.026) 1px, transparent 1px) 50% 0 / 92px 92px,
    #fbfcfe;
}

.proof-point-inner {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 156px 0;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 86px;
  align-items: start;
}

.proof-copy {
  position: sticky;
  top: 110px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 720;
}

.text-link:hover {
  text-decoration: underline;
}

.artifact-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(207, 213, 223, 0.9);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  box-shadow: 0 14px 34px rgba(5, 6, 10, 0.06);
}

.artifact-frame {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(207, 213, 223, 0.95);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: memoFloat 10s ease-in-out infinite;
}

.artifact-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 44%, rgba(47, 85, 255, 0.045) 51%, transparent 58% 100%);
  content: "";
  transform: translateX(-88%);
  animation: sceneSweep 12s ease-in-out infinite;
  pointer-events: none;
}

.artifact-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.operating-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 50% 0 / 92px 92px,
    linear-gradient(135deg, var(--dark), #0d1421 62%, #121e34);
  color: var(--white);
}

.operating-inner {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 150px 0 136px;
}

.operating-heading {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 88px;
  align-items: end;
}

.operating-heading h2,
.operating-heading p {
  color: var(--white);
}

.operating-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.operating-model {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.operating-model::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 28%;
  height: 1px;
  background: var(--accent);
  content: "";
  animation: darkTrace 8.5s ease-in-out infinite;
}

.operating-model article {
  min-height: 280px;
  padding: 28px 26px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.operating-model article + article {
  padding-left: 26px;
}

.operating-model article:last-child {
  border-right: 0;
}

.operating-model span,
.sequence-grid span,
.trust-detail-card > span:not(.icon-shell) {
  display: inline-flex;
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
}

.operating-model h3 {
  margin: 44px 0 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.14;
}

.operating-model p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.68;
}

.record-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 88px;
  align-items: start;
}

.record-copy {
  position: sticky;
  top: 110px;
}

.record-ledger {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.record-row {
  display: grid;
  grid-template-columns: 0.85fr 1.5fr 0.72fr;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
}

.record-row:last-child {
  border-bottom: 0;
}

.record-row > * {
  min-width: 0;
  padding: 0 18px;
  font-size: 13px;
}

.record-row span {
  color: var(--muted);
}

.record-row strong {
  color: var(--text);
  font-weight: 730;
}

.record-row em {
  width: fit-content;
  min-width: 80px;
  padding: 6px 9px;
  border: 1px solid rgba(47, 85, 255, 0.16);
  border-radius: 999px;
  background: rgba(47, 85, 255, 0.055);
  color: var(--accent-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
  text-align: center;
  text-transform: uppercase;
}

.record-head {
  min-height: 44px;
  background: var(--panel);
}

.record-head span {
  color: var(--soft);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.trust-section {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.trust-inner {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 126px 0;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr auto;
  gap: 48px;
  align-items: center;
}

.trust-inner h2 {
  font-size: clamp(34px, 4.4vw, 58px);
}

.trust-principles {
  display: grid;
  border-top: 1px solid var(--line);
}

.trust-principles p {
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.cta-page {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 90px 0 128px;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  display: grid;
  align-content: center;
  padding: 58px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 74px 74px,
    linear-gradient(135deg, var(--dark), #101827 62%, #13213a);
  color: var(--white);
  box-shadow: 0 40px 104px rgba(5, 6, 10, 0.16);
}

.closing-cta::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  content: "";
  animation: ctaTrace 9s ease-in-out infinite;
}

.closing-cta h2,
.closing-cta p {
  position: relative;
  z-index: 1;
  max-width: 740px;
  color: var(--white);
}

.closing-cta p {
  color: rgba(255, 255, 255, 0.7);
}

.closing-cta .button {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 32px;
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--ink);
}

.page-hero {
  padding-top: 132px;
  padding-bottom: 72px;
}

.profile-line,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.06fr;
  gap: 64px;
  align-items: start;
  padding-top: 42px;
}

.prep-intro {
  color: var(--ink) !important;
  font-weight: 650;
}

.pilot-control {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.pilot-control p {
  display: grid;
  grid-template-columns: 38px 80px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 70px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.pilot-control strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.prep-list {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.prep-list p {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
}

.demo-video-panel {
  margin-top: 28px;
}

.demo-video-toggle {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.demo-video-toggle:hover {
  border-color: var(--line-strong);
  box-shadow: 0 18px 48px rgba(5, 6, 10, 0.07);
  transform: translateY(-1px);
}

.demo-video-toggle strong,
.demo-video-toggle em {
  display: block;
}

.demo-video-toggle strong {
  font-size: 15px;
}

.demo-video-toggle em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.demo-video-toggle b {
  color: var(--accent);
  font-size: 13px;
}

.demo-video-frame {
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.demo-video-frame video {
  display: block;
  width: 100%;
}

.booking-placeholder {
  position: sticky;
  top: 104px;
  min-height: 722px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-placeholder.is-active {
  animation: bookingPulse 1.6s ease;
}

.calendly-inline-widget {
  min-width: 320px;
  height: 720px;
}

.onboarding-sequence {
  padding-top: 54px;
}

.section-heading {
  max-width: 820px;
}

.sequence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.sequence-grid article {
  min-height: 250px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.sequence-grid article:last-child {
  border-right: 0;
}

.sequence-grid h3 {
  margin: 38px 0 0;
  color: var(--ink);
  font-size: 21px;
}

.sequence-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.trust-detail-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 46px;
}

.trust-detail-card {
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(5, 6, 10, 0.07);
}

.trust-detail-card .icon-shell {
  margin-bottom: 28px;
}

.trust-detail-card h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 22px;
}

.trust-detail-list {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.trust-detail-list p {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms ease, transform 640ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scanLine {
  0%,
  100% {
    transform: translateX(-42%);
    opacity: 0.28;
  }
  50% {
    transform: translateX(36%);
    opacity: 0.82;
  }
}

@keyframes verticalScan {
  0%,
  100% {
    transform: translateY(-16%);
    opacity: 0.18;
  }
  50% {
    transform: translateY(18%);
    opacity: 0.6;
  }
}

@keyframes instrumentTrace {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(238%);
  }
}

@keyframes darkTrace {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(250%);
  }
}

@keyframes ctaTrace {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(190%);
  }
}

@keyframes sceneSweep {
  0%,
  42% {
    transform: translateX(-88%);
  }
  70%,
  100% {
    transform: translateX(88%);
  }
}

@keyframes memoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes bookingPulse {
  0%,
  100% {
    box-shadow: var(--shadow);
  }
  45% {
    box-shadow: 0 0 0 6px rgba(47, 85, 255, 0.1), var(--shadow);
  }
}

@media (max-width: 1080px) {
  .site-header {
    padding: 0 28px;
  }

  .section-shell,
  .integration-inner,
  .proof-point-inner,
  .operating-inner,
  .trust-inner,
  .cta-page,
  .site-footer {
    width: min(100% - 56px, var(--max));
  }

  .category-section,
  .integration-inner,
  .proof-point-inner,
  .operating-heading,
  .record-section,
  .trust-inner,
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .integration-copy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .integration-proof {
    grid-column: auto;
    grid-row: auto;
  }

  .proof-copy,
  .record-copy,
  .booking-placeholder {
    position: relative;
    top: auto;
  }

  .trust-inner .button {
    width: fit-content;
  }

  .trust-detail-section,
  .sequence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sequence-grid article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    min-height: 68px;
    padding: 0 20px;
  }

  .brand {
    min-height: 40px;
  }

  .brand-logo {
    height: 30px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-link {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 13px;
  }

  .section-shell,
  .integration-inner,
  .proof-point-inner,
  .operating-inner,
  .trust-inner,
  .cta-page,
  .site-footer {
    width: calc(100% - 36px);
  }

  .section-shell,
  .integration-inner,
  .proof-point-inner {
    padding: 88px 0;
  }

  .capital-hero {
    min-height: calc(100svh - 68px);
    padding: 68px 0 58px;
  }

  .capital-hero-copy {
    width: calc(100% - 36px);
  }

  .capital-hero h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .capital-hero-copy p {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 330px);
    margin-right: auto;
    margin-left: auto;
  }

  .truth-instrument {
    width: calc(100% - 36px);
    margin-top: 48px;
    padding: 16px;
    border-radius: 18px;
  }

  .instrument-scale,
  .instrument-panel {
    grid-template-columns: 1fr;
  }

  .instrument-scale::before,
  .instrument-scale::after {
    display: none;
  }

  .instrument-scale span {
    min-height: 44px;
  }

  .instrument-panel div {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .instrument-panel div:last-child {
    border-bottom: 0;
  }

  .category-section h2,
  .integration-copy h2,
  .proof-copy h2,
  .operating-heading h2,
  .record-copy h2,
  .trust-inner h2,
  .page-hero h1,
  .booking-copy h2,
  .section-heading h2,
  .closing-cta h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .category-section p,
  .integration-copy > p,
  .proof-copy p,
  .operating-heading p,
  .record-copy p,
  .trust-inner p,
  .page-hero p:not(.profile-line),
  .booking-copy > p,
  .section-heading p,
  .closing-cta p {
    font-size: 16px;
  }

  .operating-inner {
    padding: 92px 0;
  }

  .integration-proof {
    margin-top: 28px;
  }

  .integration-media {
    border-radius: 14px;
  }

  .integration-center {
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  .integration-center img {
    border-radius: inherit;
  }

  .integration-node,
  .node-pitchbook {
    gap: 0;
    width: 58px;
    padding: 8px;
    border-radius: 14px;
  }

  .integration-node span {
    width: 34px;
    height: 34px;
  }

  .integration-node b {
    display: none;
  }

  .operating-model,
  .sequence-grid {
    grid-template-columns: 1fr;
  }

  .operating-model article,
  .operating-model article + article,
  .sequence-grid article {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .sequence-grid article {
    border-bottom-color: var(--line);
  }

  .operating-model h3,
  .sequence-grid h3 {
    margin-top: 28px;
  }

  .record-row {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: auto;
    padding: 18px 0;
  }

  .record-head {
    display: none;
  }

  .record-row > * {
    padding: 0 18px;
  }

  .trust-inner {
    padding: 78px 0;
  }

  .closing-cta {
    min-height: 440px;
    padding: 34px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer p:last-child {
    justify-self: start;
  }

  .page-hero {
    padding-top: 94px;
    padding-bottom: 46px;
  }

  .booking-layout {
    gap: 34px;
    padding-top: 20px;
  }

  .pilot-control p {
    grid-template-columns: 38px 1fr;
  }

  .pilot-control strong {
    grid-column: 2;
  }

  .booking-placeholder {
    min-height: 680px;
  }

  .calendly-inline-widget {
    height: 680px;
  }

  .trust-detail-section {
    grid-template-columns: 1fr;
  }

  .trust-detail-card {
    min-height: auto;
  }
}

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