:root {
  --paper: #f2f1ec;
  --paper-soft: #e8e8e2;
  --paper-bright: #fafaf7;
  --ink: #10131a;
  --ink-soft: #50555f;
  --ink-faint: #626771;
  --night: #090b10;
  --night-soft: #11151d;
  --night-card: #151a24;
  --light: #f5f6f7;
  --light-soft: #b7bdc8;
  --line: rgba(16, 19, 26, 0.14);
  --line-dark: rgba(255, 255, 255, 0.13);
  --cobalt: #3155f5;
  --cobalt-deep: #213fd1;
  --cobalt-pale: #a9baff;
  --electric: #79a4ff;
  --mint: #6fe3a2;
  --amber: #f1bd69;
  --display: "Source Serif 4", Georgia, serif;
  --body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", "Roboto Mono", Consolas, monospace;
  --shadow: 0 28px 80px rgba(8, 11, 19, 0.14);
  --radius: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font-family: var(--body);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

[id] {
  scroll-margin-top: 82px;
}

#snapshot {
  scroll-margin-top: 70px;
}

::selection {
  background: var(--cobalt);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--electric);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 150ms ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  position: relative;
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 118px 0;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.99;
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 6.15vw, 5.45rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
}

h3 {
  margin-bottom: 12px;
  font-family: var(--body);
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

p {
  margin-bottom: 1em;
}

.flow-label,
.lane-label,
.best-for,
.timeline-time,
.timeline-number {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.demo-topline,
.sample-stamp,
.report-wordmark,
.term {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--cobalt-pale);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.eyebrow.dark-ink {
  color: var(--cobalt-deep);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(111, 227, 162, 0.12);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

.button-primary {
  background: var(--cobalt);
  color: #fff;
  box-shadow: 0 10px 26px rgba(49, 85, 245, 0.28);
}

.button-primary:hover {
  background: #4164ff;
}

.button-light {
  background: #fff;
  color: var(--night);
}

.button-light:hover {
  background: var(--cobalt-pale);
}

.button-ink {
  background: var(--ink);
  color: #fff;
}

.button-ink:hover {
  background: var(--cobalt-deep);
}

.button-outline {
  border-color: var(--line);
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--cobalt);
  color: var(--cobalt-deep);
}

.button-small {
  min-height: 39px;
  padding: 9px 15px;
  font-size: 0.82rem;
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 2px;
  color: var(--light);
  font-size: 0.94rem;
  font-weight: 650;
  text-underline-offset: 5px;
}

.text-link span {
  color: var(--electric);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

.section-intro {
  max-width: 820px;
  margin-bottom: 62px;
}

.split-intro {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: end;
  gap: clamp(42px, 8vw, 110px);
}

.split-intro h2 {
  margin-bottom: 0;
}

.section-lede {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.62;
}

.section-lede.narrow {
  max-width: 580px;
}

html.js .reveal {
  opacity: 0;
}

html.js .reveal.is-visible {
  opacity: 1;
  animation: reveal-in 620ms ease both;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1;
    animation: none;
  }
}

@keyframes reveal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(9, 11, 16, 0.72);
  color: var(--light);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 11, 16, 0.94);
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.2);
}

.nav-shell {
  display: flex;
  width: min(1320px, calc(100% - 40px));
  min-height: 70px;
  margin-inline: auto;
  align-items: center;
  gap: 22px;
}

.wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--electric);
  text-decoration: none;
}

.wordmark > span {
  color: var(--light);
  font-family: var(--display);
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.bloom-mark {
  overflow: visible;
}

.nav-place {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
}

.site-header nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 140ms ease;
}

.site-header nav > a:not(.button):hover {
  color: #fff;
}

/* Hero */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 870px;
  overflow: hidden;
  padding-top: 70px;
  background: var(--night);
  color: var(--light);
}

.hero-signal,
.signal-backdrop,
.snapshot-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-signal {
  object-position: 58% 50%;
  opacity: 0.86;
  transform: scale(1.015);
  transform-origin: 72% 48%;
  animation: signal-breathe 18s ease-in-out infinite alternate;
}

@keyframes signal-breathe {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-0.45%, -0.25%, 0); }
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 11, 16, 0.99) 0%, rgba(9, 11, 16, 0.94) 34%, rgba(9, 11, 16, 0.46) 72%, rgba(9, 11, 16, 0.7) 100%),
    linear-gradient(0deg, rgba(9, 11, 16, 0.92) 0%, transparent 34%);
}

.hero-grid {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 6.5vw, 96px);
  padding-top: 72px;
  padding-bottom: 118px;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;
}

.hero h1 em {
  color: var(--cobalt-pale);
  font-style: normal;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(245, 246, 247, 0.75);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}

.hero-promises {
  display: flex;
  flex-wrap: wrap;
  margin: 32px 0 0;
  padding: 0;
  gap: 8px 24px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}

.hero-promises li {
  position: relative;
  padding-left: 15px;
}

.hero-promises li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.discovery-demo {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(11, 14, 21, 0.88);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(103, 138, 255, 0.06) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.demo-topline {
  display: flex;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.48);
}

.demo-badge {
  padding: 5px 8px;
  border: 1px solid rgba(121, 164, 255, 0.34);
  border-radius: 100px;
  color: var(--cobalt-pale);
  font-size: 0.62rem;
}

.demo-query {
  display: flex;
  min-height: 73px;
  align-items: center;
  gap: 12px;
  margin: 16px 16px 0;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 550;
  line-height: 1.4;
}

.demo-query svg {
  flex: 0 0 auto;
  color: var(--electric);
}

.demo-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 12px 16px 0;
  gap: 6px;
}

.demo-tab {
  min-width: 0;
  padding: 9px 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.49);
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.demo-tab:hover,
.demo-tab.is-active {
  background: rgba(121, 164, 255, 0.13);
  color: #fff;
}

.demo-stage {
  min-height: 356px;
  padding: 18px 16px 12px;
}

.demo-panel {
  animation: panel-in 300ms ease both;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.answer-intro {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.provider {
  display: grid;
  min-height: 71px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.provider.featured {
  border-color: rgba(121, 164, 255, 0.44);
  background: linear-gradient(110deg, rgba(49, 85, 245, 0.18), rgba(49, 85, 245, 0.05));
  box-shadow: 0 10px 30px rgba(16, 43, 158, 0.13);
}

.provider-number {
  color: var(--electric);
  font-family: var(--mono);
  font-size: 0.66rem;
}

.provider strong,
.provider div > span {
  display: block;
}

.provider strong {
  overflow: hidden;
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.provider div > span {
  margin-top: 2px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.69rem;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signal-pill {
  padding: 5px 7px;
  border-radius: 100px;
  background: rgba(111, 227, 162, 0.12);
  color: var(--mint) !important;
  font-family: var(--mono);
  font-size: 0.57rem !important;
  letter-spacing: 0.06em;
  white-space: nowrap !important;
  text-transform: uppercase;
}

.map-preview {
  position: relative;
  min-height: 305px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background-color: #171d25;
  background-image:
    linear-gradient(31deg, transparent 0 47%, rgba(255, 255, 255, 0.055) 48% 49%, transparent 50%),
    linear-gradient(124deg, transparent 0 46%, rgba(255, 255, 255, 0.045) 47% 48%, transparent 49%),
    radial-gradient(circle at 70% 20%, rgba(49, 85, 245, 0.18), transparent 45%);
  background-size: 90px 90px, 120px 120px, auto;
}

.road {
  position: absolute;
  height: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 0;
  border-left: 0;
  transform-origin: left center;
}

.road-one { top: 44px; left: -20px; width: 125%; transform: rotate(14deg); }
.road-two { top: 178px; left: -40px; width: 125%; transform: rotate(-18deg); }
.road-three { top: 24px; left: 54%; width: 98%; transform: rotate(81deg); }

.map-pin {
  position: absolute;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 50% 50% 50% 7px;
  background: var(--cobalt);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  transform: rotate(-45deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.map-pin i {
  display: block;
  font-style: normal;
  line-height: 1;
  transform: rotate(45deg);
}
.pin-one { top: 54px; left: 65%; background: var(--cobalt); }
.pin-two { top: 109px; left: 28%; background: #4c5667; }
.pin-three { top: 143px; left: 77%; background: #4c5667; }

.map-result {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid rgba(121, 164, 255, 0.35);
  border-radius: 10px;
  background: rgba(9, 12, 18, 0.92);
  backdrop-filter: blur(12px);
}

.map-result-rank {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--cobalt);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.7rem;
}

.map-result strong,
.map-result span {
  display: block;
}

.map-result strong {
  color: #fff;
  font-size: 0.82rem;
}

.map-result div span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.proof-grid > div {
  min-height: 112px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.proof-grid span,
.proof-grid small,
.proof-grid strong {
  display: block;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.proof-grid strong {
  margin: 4px 0 0;
  color: #fff;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.proof-grid small {
  margin-top: 10px;
  color: var(--electric);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.proof-line {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding: 11px 12px;
  border-radius: 8px;
  background: rgba(111, 227, 162, 0.09);
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.demo-disclaimer {
  margin: 0;
  padding: 0 16px 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.69rem;
  line-height: 1.45;
}

.query-ribbon {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 6, 10, 0.84);
}

.query-track {
  display: flex;
  width: max-content;
  min-height: 52px;
  align-items: center;
  animation: ribbon 44s linear infinite;
}

.query-track span {
  position: relative;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.query-track span::after {
  position: absolute;
  top: 50%;
  right: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cobalt);
  content: "";
  transform: translateY(-50%);
}

@keyframes ribbon {
  to { transform: translateX(-42%); }
}

/* Platform strip */

.channel-strip {
  padding: 29px 0 25px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.channel-inner {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 12px 32px;
}

.channel-inner > p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.channel-inner ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.channel-inner li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 650;
}

.channel-inner small {
  grid-column: 2;
  color: var(--ink-faint);
  font-size: 0.72rem;
}

/* Decision shift */

.shift {
  background: var(--paper);
}

.decision-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  margin-top: 12px;
}

.decision-flow article {
  position: relative;
  min-width: 0;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.flow-label {
  color: var(--cobalt-deep);
}

.flow-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 42px 0 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 650;
}

.source-icon {
  background: var(--cobalt);
}

.choose-icon {
  background: var(--mint);
  color: var(--ink);
}

.decision-flow article p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.flow-arrow {
  display: grid;
  width: clamp(34px, 5vw, 70px);
  place-items: center;
  color: var(--cobalt);
  font-size: 1.7rem;
}

.plain-truth {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: start;
  gap: 26px 36px;
  margin-top: 28px;
  padding: 26px 28px;
  border-left: 4px solid var(--cobalt);
  background: var(--paper-soft);
}

.plain-truth > strong {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.25;
}

.plain-truth p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.evidence-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.evidence-links a {
  color: var(--cobalt-deep);
  font-size: 0.75rem;
  font-weight: 700;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* Signal system */

.signal-system {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 136px 0;
  background: var(--night);
  color: var(--light);
}

.signal-backdrop {
  object-position: 58% 50%;
  opacity: 0.72;
}

.signal-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 11, 16, 0.99) 0%, rgba(9, 11, 16, 0.83) 45%, rgba(9, 11, 16, 0.38) 78%, rgba(9, 11, 16, 0.7) 100%),
    linear-gradient(0deg, rgba(9, 11, 16, 0.92), transparent 40%);
}

.signal-copy {
  max-width: 660px;
}

.signal-copy p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--light-soft);
  font-size: 1.08rem;
}

.signal-cards {
  display: grid;
  max-width: 1040px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 70px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(9, 12, 18, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.signal-cards article {
  min-width: 0;
  min-height: 245px;
  padding: 24px 20px;
  border-right: 1px solid var(--line-dark);
  transition: background 180ms ease, transform 180ms ease;
}

.signal-cards article:last-child {
  border-right: 0;
}

.signal-cards article > span {
  color: var(--electric);
  font-family: var(--mono);
  font-size: 0.67rem;
}

.signal-cards h3 {
  margin-top: 62px;
  font-size: 1.18rem;
}

.signal-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Report */

.sample-section {
  background: var(--paper-soft);
}

.sample-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.sample-grid > * {
  min-width: 0;
}

.sample-report {
  overflow: hidden;
  border: 1px solid rgba(16, 19, 26, 0.18);
  border-radius: 14px;
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.report-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 24px;
  border-bottom: 1px solid var(--line);
}

.report-header div span,
.report-header div strong {
  display: block;
}

.report-wordmark {
  margin-bottom: 8px;
  color: var(--cobalt-deep);
}

.report-header strong {
  font-family: var(--display);
  font-size: 1.38rem;
  line-height: 1.2;
}

.sample-stamp {
  flex: 0 0 auto;
  padding: 6px 8px;
  border-radius: 6px;
  background: #e1e5f4;
  color: var(--cobalt-deep);
}

.report-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.report-meta span {
  padding: 12px 16px;
  border-right: 1px solid var(--line);
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.report-meta span:last-child {
  border-right: 0;
}

.report-meta b {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 0.68rem;
}

.report-summary {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 25px 24px;
  border-bottom: 1px solid var(--line);
}

.report-donut {
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--cobalt) calc(var(--value) * 1%), #dfe1e1 0);
}

.report-donut::before {
  grid-area: 1 / 1;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--paper-bright);
  content: "";
}

.report-donut > div {
  z-index: 1;
  grid-area: 1 / 1;
  text-align: center;
}

.report-donut strong,
.report-donut span {
  display: block;
}

.report-donut strong {
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
}

.report-donut span {
  margin-top: 5px;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.59rem;
  text-transform: uppercase;
}

.report-bars > div {
  display: grid;
  grid-template-columns: 108px minmax(60px, 1fr) 34px;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}

.report-bars > div:last-child {
  margin-bottom: 0;
}

.report-bars span,
.report-bars em {
  font-size: 0.69rem;
}

.report-bars span {
  color: var(--ink-soft);
}

.report-bars em {
  color: var(--ink-faint);
  font-family: var(--mono);
  font-style: normal;
  text-transform: uppercase;
}

.report-bars i {
  position: relative;
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 100px;
  background: #dcdedc;
}

.report-bars i b {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: var(--cobalt);
}

.query-table {
  width: 100%;
  border-bottom: 1px solid var(--line);
  border-collapse: collapse;
  table-layout: fixed;
}

.query-row {
  min-height: 47px;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

.query-table tbody .query-row:last-child {
  border-bottom: 0;
}

.query-row th,
.query-row td {
  height: 47px;
  padding: 8px 24px;
  text-align: left;
  vertical-align: middle;
}

.query-row th:last-child,
.query-row td:last-child {
  width: 128px;
  padding-left: 0;
}

.query-head {
  min-height: 35px;
  background: #eeefeb;
  color: #515660;
  font-family: var(--mono);
  font-size: 0.57rem;
  text-transform: uppercase;
}

.query-head th {
  height: 35px;
  font-weight: 500;
}

.query-row b {
  justify-self: start;
  padding: 4px 7px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.status-good { background: rgba(31, 154, 88, 0.1); color: #11743f; }
.status-miss { background: rgba(185, 72, 72, 0.1); color: #9b3434; }
.status-warn { background: rgba(222, 150, 49, 0.13); color: #925b0f; }

.report-next {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 24px;
}

.report-next > span {
  color: var(--cobalt-deep);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.report-next ol {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.report-foot {
  margin: 0;
  padding: 10px 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--mono);
  font-size: 0.57rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.sample-copy h2 {
  font-size: clamp(2.35rem, 4.2vw, 3.75rem);
}

.check-list {
  margin: 33px 0 35px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.check-list li span {
  color: var(--cobalt-deep);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.microcopy {
  max-width: 370px;
  margin: 15px 0 0;
  color: var(--ink-faint);
  font-size: 0.73rem;
}

/* Method */

.method-section {
  background: var(--paper-bright);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline article {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 370px;
  flex-direction: column;
  padding: 25px 24px 23px;
  border-right: 1px solid var(--line);
}

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

.timeline-time {
  color: var(--cobalt-deep);
}

.timeline-number {
  margin: 56px 0 25px;
  color: #6d727c;
  font-size: 2.8rem;
  letter-spacing: -0.08em;
}

.timeline article h3 {
  font-size: 1.28rem;
}

.timeline article p {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.timeline article small {
  margin-top: auto;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.59rem;
  text-transform: uppercase;
}

/* Work lanes */

.work-section {
  padding: 124px 0;
  background: var(--night);
  color: var(--light);
}

.work-section .section-lede {
  color: var(--light-soft);
}

.work-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.work-lane {
  position: relative;
  min-width: 0;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.visibility-lane {
  padding: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(82, 119, 255, 0.35), transparent 35%),
    linear-gradient(145deg, #172347, #111621 62%);
}

.web-lane {
  padding: 34px;
  background-color: #16191f;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 80% 16%, rgba(143, 176, 255, 0.2), transparent 36%);
  background-size: 30px 30px, 30px 30px, auto;
}

.lane-label {
  color: var(--cobalt-pale);
}

.work-lane h3 {
  max-width: 540px;
  margin: 62px 0 18px;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.work-lane p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
}

.work-lane ul {
  display: grid;
  max-width: 600px;
  grid-template-columns: 1fr;
  margin: 38px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.work-lane li {
  position: relative;
  padding: 11px 13px 11px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.work-lane li::before {
  position: absolute;
  top: 1.02em;
  left: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cobalt-pale);
  content: "";
}

.film-image,
.film-scrim {
  position: absolute;
  inset: 0;
}

.film-image {
  background: url("/img/camera.jpg") 56% center / cover no-repeat;
  transform: scale(1.01);
}

.film-scrim {
  background: linear-gradient(0deg, rgba(5, 8, 13, 0.97) 3%, rgba(5, 8, 13, 0.67) 64%, rgba(5, 8, 13, 0.14));
}

.film-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 30px;
}

.film-content h3 {
  margin: 16px 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.film-content ul {
  margin-top: 25px;
}

/* Pricing */

.pricing-section {
  background: var(--paper);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 665px;
  flex-direction: column;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .discovery-demo:hover {
    border-color: rgba(121, 164, 255, 0.36);
    box-shadow: 0 42px 110px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(103, 138, 255, 0.11) inset;
    transform: translateY(-3px);
  }

  .decision-flow article:hover {
    border-color: rgba(49, 85, 245, 0.38);
    background: rgba(255, 255, 255, 0.64);
    transform: translateY(-4px);
  }

  .signal-cards article:hover {
    background: rgba(49, 85, 245, 0.12);
    transform: translateY(-4px);
  }

  .price-card:hover {
    border-color: rgba(49, 85, 245, 0.4);
    box-shadow: 0 22px 55px rgba(35, 61, 180, 0.11);
    transform: translateY(-5px);
  }
}

.featured-price {
  border-color: var(--cobalt);
  background: var(--paper-bright);
  box-shadow: 0 25px 65px rgba(35, 61, 180, 0.13);
}

.featured-ribbon {
  margin: -31px -31px 27px;
  padding: 9px 12px;
  background: var(--cobalt);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.best-for {
  display: block;
  margin-bottom: 22px;
  color: var(--cobalt-deep);
  font-size: 0.62rem;
}

.price-head h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.price-head p {
  min-height: 89px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.price {
  display: flex;
  min-height: 67px;
  align-items: flex-end;
  gap: 9px;
  margin: 22px 0 6px;
}

.price strong {
  font-family: var(--display);
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.price span {
  max-width: 90px;
  padding-bottom: 4px;
  color: var(--ink-faint);
  font-size: 0.68rem;
  line-height: 1.25;
}

.term {
  color: var(--ink-faint);
  font-size: 0.61rem;
}

.price-card ul {
  margin: 29px 0 32px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.79rem;
}

.price-card li::before {
  position: absolute;
  top: 1.2em;
  left: 1px;
  color: var(--cobalt);
  content: "✓";
  font-weight: 700;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.project-prices {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-bright);
}

.project-prices > div {
  display: flex;
  min-height: 96px;
  flex-direction: column;
  justify-content: center;
  padding: 17px;
  border-right: 1px solid var(--line);
}

.project-prices > div:last-child {
  border-right: 0;
}

.project-prices span,
.project-prices b,
.project-prices small {
  display: block;
}

.project-prices span {
  font-size: 0.78rem;
  font-weight: 650;
}

.project-prices b {
  margin-top: 9px;
  color: var(--cobalt-deep);
  font-family: var(--mono);
  font-size: 0.67rem;
}

.project-prices .project-title {
  background: var(--ink);
  color: #fff;
}

.project-title small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.64rem;
  line-height: 1.4;
}

/* Integrity */

.integrity-section {
  padding: 105px 0;
  background: var(--cobalt-deep);
  color: #fff;
}

.integrity-head {
  max-width: 720px;
}

.integrity-head .eyebrow {
  color: #d4dcff;
}

.integrity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.integrity-grid article {
  min-width: 0;
  min-height: 270px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

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

.integrity-grid article > span {
  color: #d4dcff;
  font-family: var(--mono);
  font-size: 0.67rem;
}

.integrity-grid h3 {
  margin-top: 68px;
  font-size: 1.28rem;
}

.integrity-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.81rem;
}

/* About */

.about-section {
  background: var(--paper-bright);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(54px, 10vw, 145px);
}

.about-mark {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50% 50% 22px 22px;
  background:
    radial-gradient(circle at 50% 45%, rgba(49, 85, 245, 0.18), transparent 42%),
    var(--paper-soft);
  color: var(--cobalt);
}

.about-mark svg {
  overflow: visible;
}

.about-mark span {
  margin-top: 25px;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 770px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 710px;
  color: var(--ink-soft);
}

.about-facts {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 8px;
}

.about-facts span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.61rem;
  text-transform: uppercase;
}

/* FAQ */

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 9vw, 138px);
}

.faq-intro {
  position: sticky;
  top: 108px;
}

.faq-intro h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.faq-intro > p:last-child {
  max-width: 390px;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 86px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.17rem;
  font-weight: 650;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cobalt);
  font-family: var(--body);
  font-size: 1.22rem;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--cobalt);
  color: #fff;
  transform: rotate(45deg);
}

.faq-list details > div {
  padding: 0 58px 24px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.faq-list details p {
  margin: 0;
}

/* Snapshot form */

.snapshot-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 124px 0;
  background: var(--night);
  color: var(--light);
}

.snapshot-image {
  object-position: 62% 45%;
  opacity: 0.62;
}

.snapshot-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(9, 11, 16, 0.99) 0%, rgba(9, 11, 16, 0.83) 49%, rgba(9, 11, 16, 0.72) 100%);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.snapshot-copy h2 {
  max-width: 740px;
}

.snapshot-copy > p:last-of-type {
  max-width: 640px;
  color: var(--light-soft);
  font-size: 1.05rem;
}

.contact-direct {
  display: grid;
  max-width: 540px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-direct > a,
.contact-direct > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-direct span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.contact-direct strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 550;
}

.contact-direct a:hover strong {
  color: var(--cobalt-pale);
}

.snapshot-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(14, 18, 27, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field {
  margin-bottom: 17px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.76rem;
  font-weight: 650;
}

.form-field label span {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 450;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 53px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-family: var(--body);
  font-size: 1rem;
}

.form-field select {
  color-scheme: dark;
}

.form-field textarea {
  min-height: 112px;
  line-height: 1.45;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--electric);
}

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

.form-optional {
  margin: -2px 0 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.form-optional summary {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.79rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.form-optional summary::-webkit-details-marker {
  display: none;
}

.form-optional summary::after {
  color: rgba(255, 255, 255, 0.55);
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
}

.form-optional[open] summary::after {
  content: "−";
}

.form-optional summary span {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 450;
}

.form-optional-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 14px;
  padding: 4px 0 17px;
}

.form-optional-grid .form-field {
  margin-bottom: 0;
}

.turnstile-slot:not(:empty) {
  min-height: 65px;
  margin: 4px 0 15px;
}

.snapshot-form .button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-note,
.form-status {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.68rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1em;
  color: rgba(255, 255, 255, 0.72);
}

.form-status[data-state="success"] { color: #aee8c6; }
.form-status[data-state="error"] { color: #ffd0c9; }
.form-status[data-state="pending"] { color: #cbd4ff; }

.form-note a,
.form-fallback {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-fallback {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 650;
}

.form-fallback[hidden] {
  display: none;
}

.snapshot-form noscript p {
  color: var(--light-soft);
  font-size: 0.78rem;
}

/* Footer */

.site-footer {
  padding: 64px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #05070a;
  color: var(--light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr 0.7fr 1fr;
  gap: 42px;
  padding-bottom: 56px;
}

.footer-wordmark {
  margin-bottom: 14px;
}

.footer-grid > div:first-child p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.83rem;
}

.footer-services,
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-services > strong,
.footer-links > strong,
.footer-contact > strong {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
  font-weight: 600;
}

.footer-services a,
.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
  text-underline-offset: 3px;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.68rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Privacy notice */

.legal-page {
  background: var(--paper-bright);
  color: var(--ink);
}

.legal-page .site-header {
  background: rgba(9, 11, 16, 0.96);
}

.legal-main {
  padding: 170px 0 110px;
}

.legal-shell {
  width: min(100% - 40px, 820px);
  margin: 0 auto;
}

.legal-shell h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: 0.96;
}

.legal-updated {
  color: var(--ink-faint);
  font-size: 0.82rem;
}

.legal-intro {
  margin: 34px 0 58px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.legal-shell section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-shell section h2 {
  margin-bottom: 12px;
  font-family: var(--body);
  font-size: 1.18rem;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.legal-shell section p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 21px;
}

.legal-contact a,
.legal-contact span {
  color: var(--cobalt-deep);
  font-size: 0.86rem;
  font-weight: 650;
}

.legal-footer {
  padding-top: 0;
}

/* Responsive */

@media (max-width: 1120px) {
  .nav-place { display: none; }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.88fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 6vw, 4.8rem);
  }

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

  .signal-cards article {
    min-height: 210px;
    border-bottom: 1px solid var(--line-dark);
  }

  .signal-cards article:nth-child(3) {
    border-right: 0;
  }

  .signal-cards article:nth-child(4),
  .signal-cards article:nth-child(5) {
    border-bottom: 0;
  }

  .signal-cards h3 {
    margin-top: 44px;
  }

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

  .project-prices .project-title {
    grid-column: 1 / -1;
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 940px) {
  .site-header nav > a:not(.button) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 102px;
    padding-bottom: 115px;
  }

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

  .hero-signal {
    object-position: 72% 45%;
    opacity: 0.58;
  }

  .hero-wash {
    background: linear-gradient(0deg, rgba(9, 11, 16, 0.98) 5%, rgba(9, 11, 16, 0.78) 57%, rgba(9, 11, 16, 0.55));
  }

  .discovery-demo {
    max-width: 640px;
  }

  .split-intro,
  .sample-grid,
  .about-grid,
  .faq-grid,
  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .split-intro {
    gap: 25px;
  }

  .decision-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .decision-flow article {
    display: grid;
    min-height: 0;
    grid-template-columns: 60px minmax(0, 1fr);
    align-items: center;
    gap: 4px 18px;
  }

  .flow-label {
    grid-column: 1 / -1;
    margin-bottom: 18px;
  }

  .flow-icon {
    grid-row: 2 / span 2;
    width: 56px;
    height: 56px;
    margin: 0;
  }

  .decision-flow article h3,
  .decision-flow article p {
    grid-column: 2;
  }

  .decision-flow article h3 {
    margin: 0 0 5px;
  }

  .flow-arrow {
    width: 100%;
    height: 24px;
    transform: rotate(90deg);
  }

  .plain-truth {
    grid-template-columns: 1fr;
  }

  .evidence-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 22px;
  }

  .sample-report {
    max-width: 700px;
  }

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

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

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

  .timeline article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .work-lanes,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .work-lane {
    min-height: 520px;
  }

  .price-card {
    min-height: 0;
  }

  .price-head p {
    min-height: 0;
  }

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

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

  .integrity-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .about-mark {
    max-width: 520px;
    min-height: 360px;
  }

  .faq-intro {
    position: static;
    max-width: 720px;
  }

  .snapshot-form {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  #snapshot {
    scroll-margin-top: 62px;
  }

  .shell {
    width: min(100% - 32px, 1220px);
  }

  .section,
  .work-section,
  .snapshot-section {
    padding: 82px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-optional-grid {
    grid-template-columns: 1fr;
  }

  .signal-system {
    padding: 88px 0;
  }

  .nav-shell {
    width: calc(100% - 28px);
    min-height: 62px;
  }

  .site-header nav {
    gap: 0;
  }

  .site-header nav .button {
    min-height: 37px;
    padding: 8px 12px;
    font-size: 0.74rem;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid {
    padding-top: 74px;
    padding-bottom: 102px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .hero-lede {
    font-size: 1.03rem;
  }

  .channel-inner {
    grid-template-columns: 1fr;
  }

  .channel-inner small {
    grid-column: 1;
  }

  .signal-cards {
    grid-template-columns: 1fr;
  }

  .signal-cards article,
  .signal-cards article:nth-child(3),
  .signal-cards article:nth-child(4) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .signal-cards article:last-child {
    border-bottom: 0;
  }

  .signal-cards h3 {
    margin-top: 30px;
  }

  .report-header,
  .report-summary,
  .report-next {
    padding-right: 18px;
    padding-left: 18px;
  }

  .query-row th,
  .query-row td {
    padding-right: 18px;
    padding-left: 18px;
  }

  .report-summary {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
  }

  .report-donut {
    width: 104px;
    height: 104px;
  }

  .report-donut::before {
    width: 76px;
    height: 76px;
  }

  .report-donut strong {
    font-size: 1.3rem;
  }

  .report-bars > div {
    grid-template-columns: 92px minmax(45px, 1fr);
  }

  .report-bars em {
    display: none;
  }

  .work-lane {
    min-height: 560px;
  }

  .work-lane ul {
    grid-template-columns: 1fr;
  }

  .visibility-lane {
    padding: 30px;
  }

  .work-lane h3 {
    margin-top: 55px;
  }

  .project-prices {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-prices .project-title {
    grid-column: 1 / -1;
  }

  .project-prices > div:nth-last-child(odd) {
    border-right: 0;
  }

  .integrity-section {
    padding: 82px 0;
  }

  .integrity-grid {
    grid-template-columns: 1fr;
  }

  .integrity-grid article,
  .integrity-grid article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .integrity-grid article:last-child {
    border-bottom: 0;
  }

  .integrity-grid h3 {
    margin-top: 36px;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .wordmark > span {
    font-size: 1.2rem;
  }

  .wordmark svg {
    width: 27px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.45rem);
    line-height: 1.01;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-promises {
    display: grid;
    gap: 8px;
  }

  .demo-topline {
    padding-inline: 13px;
  }

  .demo-query,
  .demo-tabs {
    margin-right: 11px;
    margin-left: 11px;
  }

  .demo-query {
    min-height: 68px;
    padding: 12px;
    font-size: 0.82rem;
  }

  .demo-stage {
    min-height: 352px;
    padding: 13px 11px 9px;
  }

  .provider {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .provider .signal-pill {
    display: none;
  }

  .provider strong {
    font-size: 0.79rem;
  }

  .provider div > span {
    font-size: 0.62rem;
  }

  .demo-disclaimer {
    padding-inline: 11px;
    font-size: 0.61rem;
  }

  .proof-grid > div {
    min-height: 101px;
  }

  .proof-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .section-intro {
    margin-bottom: 42px;
  }

  .plain-truth {
    padding: 23px 20px;
  }

  .report-header {
    flex-direction: column;
  }

  .report-meta {
    grid-template-columns: 1fr;
  }

  .report-meta span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .report-meta span:last-child {
    border-bottom: 0;
  }

  .report-summary {
    grid-template-columns: 1fr;
  }

  .query-row th:last-child,
  .query-row td:last-child {
    width: 96px;
    padding-left: 0;
  }

  .report-next {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline article,
  .timeline article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .timeline-number {
    margin: 38px 0 18px;
  }

  .work-lane {
    min-height: 590px;
  }

  .film-content {
    padding: 27px;
  }

  .price-card {
    padding: 25px;
  }

  .featured-ribbon {
    margin: -25px -25px 25px;
  }

  .project-prices {
    grid-template-columns: 1fr;
  }

  .project-prices > div,
  .project-prices > div:nth-last-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-prices > div:last-child {
    border-bottom: 0;
  }

  .about-mark {
    min-height: 310px;
  }

  .about-mark svg {
    width: 205px;
  }

  .faq-list summary {
    min-height: 80px;
    font-size: 1.05rem;
  }

  .faq-list details > div {
    padding-right: 0;
  }

  .snapshot-form {
    padding: 21px;
  }

  .contact-direct > a,
  .contact-direct > div {
    align-items: center;
    flex-direction: row;
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 7px 16px;
  }

  .legal-main {
    padding: 132px 0 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .query-track {
    flex-wrap: wrap;
    width: auto;
    padding: 12px 0;
  }
}

/* Editorial hero recut */

.wordmark,
.wordmark > span {
  font-family: var(--body);
  letter-spacing: -0.04em;
}

.hero-recut {
  min-height: calc(100svh + 8px);
  padding-top: 70px;
  background: #0a0b0e;
}

.hero-recut::before {
  display: none;
}

.hero-film-texture {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.hero-film-texture::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.9), rgba(10, 11, 14, 0.68) 46%, #0a0b0e 100%);
  content: "";
}

.hero-film-texture img {
  position: absolute;
  top: -18%;
  right: -8%;
  width: min(94vw, 1540px);
  max-width: none;
  height: 124%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  filter: grayscale(0.45) contrast(1.05);
  transform: translate3d(var(--film-x, 0px), var(--film-y, 0px), 0) scale(1.08);
  transition: opacity 800ms ease, transform 1000ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-recut[data-scene="2"] .hero-film-texture img,
.hero-recut[data-scene="3"] .hero-film-texture img {
  opacity: 0.2;
}

.hero-recut .hero-grid {
  display: block;
  width: min(1600px, calc(100vw - 48px));
  max-width: none;
  min-height: calc(100svh - 70px);
  padding-top: 22px;
  padding-bottom: 18px;
}

.hero-recut .hero-copy {
  max-width: 600px;
}

.hero-eyebrow {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-recut h1 {
  max-width: 660px;
  margin-bottom: 27px;
  font-size: clamp(3.7rem, 5.7vw, 6.15rem);
  font-weight: 570;
  letter-spacing: -0.052em;
  line-height: 0.93;
}

.hero-recut h1 em {
  color: #b8c5fb;
  font-style: italic;
  font-weight: 520;
}

.hero-recut .hero-lede {
  max-width: 550px;
  margin-bottom: 31px;
  color: rgba(245, 243, 236, 0.73);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

.hero-recut .hero-actions {
  display: block;
}

.hero-recut .button-primary {
  min-height: 53px;
  padding-inline: 24px;
  border-color: rgba(255,255,255,0.1);
  background: #f3f0e8;
  box-shadow: none;
  color: #0b0c0f;
}

.hero-recut .button-primary:hover {
  background: #fff;
}

.story-film {
  position: relative;
  display: flex;
  min-width: 0;
  height: calc(100svh - 110px);
  min-height: 610px;
  flex-direction: column;
  margin: 0;
  padding: 44px 0 0;
  border: 0;
  color: #f6f3eb;
}

.film-chapters {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  gap: 7px;
}

.film-chapters .chap {
  display: flex;
  flex: 1;
  align-items: center;
  margin: 0;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.film-chapters .rail {
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.film-chapters .fill {
  display: block;
  width: 100%;
  height: 100%;
  background: #aec0ff;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.film-chapters .chap:hover .rail,
.film-chapters .chap:focus-visible .rail {
  background: rgba(255, 255, 255, 0.32);
}

.film-chapters .chap:focus-visible {
  outline: 1px solid rgba(174, 192, 255, 0.75);
  outline-offset: 1px;
}

/* ---- simulated AI chat ---- */

.chat-frame {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #0d0d0d;
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.48);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  transition: opacity 350ms ease;
}

.chat-sim.resetting .chat-frame {
  opacity: 0;
}

.chat-head {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: space-between;
  padding: 14px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: #0d0d0d;
}

.chat-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 550;
}

.chat-title svg { color: rgba(255, 255, 255, 0.92); }

.chat-tag {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.71rem;
}

.chat-scroll {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  overflow: hidden;
  padding: clamp(22px, 3.2vh, 38px) max(24px, calc((100% - 860px) / 2));
}

.msg { max-width: 92%; }

html.js .chat-sim .msg { display: none; }
html.js .chat-sim .msg.shown { display: block; }

.msg.user {
  align-self: flex-end;
  padding: 10px 15px;
  border-radius: 20px 20px 5px 20px;
  background: #303030;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.msg.user p { margin: 0; }

.msg.think {
  position: relative;
  align-self: flex-start;
  align-items: center;
  padding: 12px 0 12px 40px;
  background: transparent;
}

.msg.think::before,
.msg.ai::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: grid;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: #161616;
  color: rgba(255, 255, 255, 0.9);
  content: "✦";
  font-size: 0.68rem;
  place-items: center;
}

.chat-sim .msg.think.shown,
html.js .chat-sim .msg.think.shown { display: inline-flex; gap: 5px; }

.think-label {
  margin-right: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.83rem;
}

.msg.think i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.msg.ai {
  position: relative;
  width: 100%;
  max-width: 100%;
  align-self: flex-start;
  padding: 6px 0 6px 40px;
  background: transparent;
}

.ai-intro {
  max-width: 720px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.93rem;
  line-height: 1.4;
}

.ai-sample-note {
  margin: 0 0 7px;
  color: #b8c5fb;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.chat-opening-cue {
  display: none;
  align-self: flex-start;
  margin: 4px 0 auto 40px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.chat-opening-cue.shown {
  display: block;
}

.ai-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rank;
}

.ai-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 27px;
  padding: 3px 0;
  color: rgba(255, 255, 255, 0.85);
  counter-increment: rank;
  font-size: 0.91rem;
}

html.js .chat-sim .ai-list li { display: none; }
html.js .chat-sim .ai-list li.shown { display: flex; }

.ai-list li::before {
  display: grid;
  flex: none;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.46);
  content: counter(rank);
  font-size: 0.64rem;
  font-variant-numeric: tabular-nums;
  place-items: center;
}

.ai-list li span {
  overflow: hidden;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-list li.is-you {
  position: relative;
  overflow: hidden;
  margin-inline: -8px;
  padding-inline: 8px;
  border: 1px solid rgba(184, 197, 251, 0.48);
  background: rgba(184, 197, 251, 0.1);
  color: #fff;
  font-weight: 620;
}

.ai-list li.is-you::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  background-size: 200% 100%;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.ai-list.dimmed li:not(.is-you) {
  opacity: 0.26;
  filter: grayscale(0.9);
  transition: opacity 300ms ease, filter 300ms ease;
}

.ai-list li.is-you::before {
  color: #c4cffb;
}

.ai-list li.is-you em {
  color: #aec0ff;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 650;
  white-space: nowrap;
}

.ai-close {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.81rem;
}

html.js .chat-sim .ai-close { display: none; }
html.js .chat-sim .ai-close.shown { display: block; }

.ai-miss {
  display: none;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(232, 159, 151, 0.24);
  border-radius: 8px;
  background: rgba(137, 61, 57, 0.11);
}

.ai-miss.shown { display: block; }

.ai-miss p {
  margin: 0 0 3px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.93rem;
}

.ai-miss strong {
  color: #f0c4be;
  font-weight: 650;
}

.ai-miss span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
}

.work-takeover {
  position: absolute;
  inset: 49px 0 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 35%, rgba(120, 144, 245, 0.15), transparent 34%),
    #111217;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 450ms ease, visibility 450ms ease;
}

.work-takeover.shown {
  opacity: 1;
  visibility: visible;
}

.work-bloom {
  width: 78px;
  margin-bottom: 13px;
  color: #b8c5fb;
}

.work-bloom svg {
  display: block;
  width: 100%;
}

.work-kicker {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-takeover-title {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1;
  text-align: center;
}

.work-takeover-copy {
  margin: 13px 0 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
  text-align: center;
}

.work-takeover-steps {
  width: min(100%, 500px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.work-takeover-steps p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.93rem;
  opacity: 0.42;
  transform: translateY(8px);
  transition: color 300ms ease, opacity 300ms ease, transform 300ms ease;
}

.work-takeover-steps p.done {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  transform: none;
}

.work-takeover-steps p::before {
  color: #aec0ff;
  content: "✓";
  font-weight: 700;
}

.chat-divider {
  align-self: center;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
}

.chat-inputbar {
  display: flex;
  flex: none;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  width: min(920px, calc(100% - 40px));
  align-self: center;
  margin: 0 auto 12px;
  padding: 7px 8px 7px 13px;
  border: 0;
  border-radius: 100px;
  background: #212121;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.chat-plus,
.chat-mic {
  display: grid;
  flex: none;
  color: rgba(255, 255, 255, 0.68);
  place-items: center;
}

.chat-plus {
  width: 22px;
  height: 22px;
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1;
}

.chat-mic {
  width: 24px;
  height: 24px;
}

.chat-input {
  display: flex;
  overflow: hidden;
  flex: 1;
  align-items: center;
  min-height: 1.3em;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  white-space: nowrap;
}

.chat-inputbar.idle .chat-input::before {
  color: rgba(255, 255, 255, 0.45);
  content: "Ask who to hire nearby";
}

.chat-caret {
  width: 1px;
  height: 1.15em;
  margin-left: 2px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  opacity: 0;
}

.chat-sim.is-playing .chat-caret.on {
  animation: chat-cursor 1s infinite;
}

@keyframes chat-cursor {
  0%, 70%, 100% { opacity: 1; }
  20%, 50% { opacity: 0; }
}

.chat-send {
  display: grid;
  flex: none;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #f4f4f4;
  color: #111;
  opacity: 0.38;
  place-items: center;
  transform: scale(0.94);
  transition: opacity 220ms ease, transform 220ms ease;
}

.chat-send.ready {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .chat-sim .msg.user.shown,
  .chat-sim .msg.think.shown {
    animation: msg-in 540ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .chat-sim .msg.ai.shown,
  .chat-sim .ai-miss.shown,
  .chat-sim .chat-divider.shown {
    animation: ai-in 420ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .chat-sim .work-takeover.shown .work-bloom,
  .chat-sim .work-takeover.shown .work-takeover-title,
  .chat-sim .work-takeover.shown .work-takeover-copy {
    animation: work-rise 650ms cubic-bezier(0.23, 1, 0.32, 1) both;
  }

  .chat-sim .work-takeover.shown .work-takeover-title { animation-delay: 100ms; }
  .chat-sim .work-takeover.shown .work-takeover-copy { animation-delay: 180ms; }

  .chat-sim .ai-list li.shown {
    animation: row-in 460ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .chat-sim .ai-list li.shown::before {
    animation: rank-in 380ms cubic-bezier(0.23, 1, 0.32, 1) both;
  }

  .chat-sim .ai-list li.is-you.shown {
    animation: you-in 560ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .chat-sim .ai-list li.is-you.shown::after {
    animation: glint 1.1s ease-out 1;
    animation-delay: 500ms;
  }

  .chat-sim .ai-list li.is-you.shown em {
    animation: msg-in 400ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 380ms;
  }

  .chat-sim .msg.think.shown i {
    animation: think-bounce 1.4s ease-in-out infinite;
  }

  .chat-sim .msg.think.shown i:nth-child(2) { animation-delay: 200ms; }
  .chat-sim .msg.think.shown i:nth-child(3) { animation-delay: 400ms; }

  .chat-send.sent {
    animation: send-pop 150ms ease;
  }
}

@keyframes msg-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(6px);
  }
}

@keyframes ai-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes work-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes row-in {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(2px);
  }
}

@keyframes rank-in {
  from {
    opacity: 0.35;
    transform: translateX(10px);
  }
}

@keyframes you-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    box-shadow: none;
  }
}

@keyframes glint {
  0% {
    opacity: 0;
    background-position: 150% 0;
  }
  50% {
    opacity: 1;
    background-position: 0 0;
  }
  100% {
    opacity: 0;
    background-position: -50% 0;
  }
}

@keyframes think-bounce {
  0%, 60%, 100% {
    opacity: 0.4;
    transform: none;
  }
  30% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes send-pop {
  50% { transform: scale(0.9); }
}

.chat-divider { display: none; }
.chat-divider.shown { display: block; }

.film-footer {
  display: flex;
  min-height: 34px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 13px;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.film-footer > span {
  color: rgba(255,255,255,0.58);
  font-size: 0.69rem;
  line-height: 1.35;
}

.film-control {
  position: absolute;
  top: 44px;
  right: 17px;
  z-index: 6;
  display: flex;
  min-width: 56px;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 0.73rem;
  font-weight: 600;
  cursor: pointer;
}

.film-control:hover {
  border-bottom-color: #fff;
  color: #fff;
}

.chat-tag { margin-right: 74px; }

.clarity-section {
  padding: 104px 0 94px;
  border-bottom: 1px solid var(--line);
  background: #f5f3ed;
}

.clarity-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: 70px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.clarity-heading h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 560;
}

.clarity-heading p {
  max-width: 440px;
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.58;
}

.clarity-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.clarity-steps li {
  min-height: 280px;
  padding: 36px 34px 28px 0;
  border-right: 1px solid var(--line);
}

.clarity-steps li + li {
  padding-left: 34px;
}

.clarity-steps li:last-child {
  border-right: 0;
}

.clarity-steps li > span {
  display: block;
  margin-bottom: 58px;
  color: var(--cobalt);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
}

.clarity-steps h3 {
  max-width: 280px;
  margin-bottom: 13px;
  font-size: 1.45rem;
}

.clarity-steps p {
  max-width: 330px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.56;
}

@media (hover: hover) and (pointer: fine) {
  .story-film:hover .film-chapters .rail {
    background: rgba(255,255,255,0.23);
  }
}

@media (max-width: 1040px) {
  .hero-recut .hero-grid {
    width: min(100% - 32px, 1200px);
  }
}

@media (max-width: 880px) {
  .hero-recut {
    min-height: max(calc(100svh + 8px), 760px);
  }

  .hero-recut::before {
    mask-image: linear-gradient(0deg, #000, transparent 76%);
  }

  .hero-film-texture::after {
    background: linear-gradient(0deg, rgba(10,11,14,0.72), #0a0b0e 82%);
  }

  .hero-film-texture img {
    top: 30%;
    right: -30%;
    width: 138vw;
    height: 78%;
    opacity: 0.14;
  }

  .hero-recut[data-scene="2"] .hero-film-texture img,
  .hero-recut[data-scene="3"] .hero-film-texture img {
    opacity: 0.24;
  }

  .hero-recut .hero-grid {
    min-height: calc(max(100svh, 760px) - 70px);
    padding-top: 18px;
    padding-bottom: 14px;
  }

  .story-film {
    height: calc(100svh - 102px);
    min-height: 658px;
    padding-top: 44px;
  }

  .clarity-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 700px) {
  .clarity-section {
    padding: 78px 0 68px;
  }

  .clarity-steps {
    grid-template-columns: 1fr;
  }

  .clarity-steps li,
  .clarity-steps li + li {
    display: grid;
    min-height: 0;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 7px 18px;
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .clarity-steps li:last-child {
    border-bottom: 0;
  }

  .clarity-steps li > span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .clarity-steps h3,
  .clarity-steps p {
    grid-column: 2;
  }

  .clarity-steps h3 {
    margin: 0;
  }
}

@media (max-width: 520px) {
  .hero-recut {
    min-height: max(calc(100svh + 8px), 762px);
    padding-top: 62px;
  }

  .hero-recut .hero-grid {
    width: calc(100% - 20px);
    min-height: calc(max(100svh, 762px) - 62px);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .story-film {
    height: calc(100svh - 82px);
    min-height: 680px;
    padding-top: 44px;
  }

  .chat-frame {
    min-height: 600px;
    border-radius: 8px;
  }

  .chat-scroll {
    gap: 10px;
    padding: 12px 11px;
  }

  .ai-list li {
    gap: 8px;
    min-height: 24px;
    padding: 2px 5px;
    font-size: 0.78rem;
  }

  .ai-list li::before {
    width: 17px;
    height: 17px;
    font-size: 0.58rem;
  }

  .msg.user {
    max-width: 95%;
    font-size: 0.82rem;
  }

  .ai-intro {
    margin-bottom: 6px;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .ai-sample-note {
    font-size: 0.62rem;
  }

  .ai-close {
    margin-top: 6px;
    font-size: 0.72rem;
  }

  .ai-miss {
    margin-top: 8px;
    padding: 10px 11px;
  }

  .ai-miss p {
    font-size: 0.8rem;
  }

  .ai-miss span {
    font-size: 0.7rem;
  }

  .chat-inputbar {
    width: calc(100% - 20px);
    min-height: 42px;
    margin: 0 10px 10px;
  }

  .chat-input {
    font-size: 0.78rem;
  }

  .work-takeover {
    padding: 20px;
  }

  .work-bloom {
    width: 58px;
  }

  .work-takeover-title {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .work-takeover-copy {
    margin: 10px 0 20px;
    font-size: 0.82rem;
  }

  .work-takeover-steps p {
    padding: 10px 2px;
    font-size: 0.8rem;
  }

  .film-footer {
    gap: 12px;
  }

  .film-footer > span {
    max-width: calc(100% - 12px);
    font-size: 0.58rem;
  }

  .film-control {
    top: 44px;
    right: 13px;
  }

  .chat-tag {
    margin-right: 61px;
    font-size: 0.62rem;
  }

  .clarity-heading h2 {
    font-size: clamp(2.8rem, 12vw, 3.65rem);
  }
}

@media (max-height: 719px) and (min-width: 521px) {
  .hero-recut {
    min-height: 720px;
  }

  .hero-recut .hero-grid {
    min-height: 650px;
  }

  .story-film {
    height: 610px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-film-texture img {
    transform: none;
  }

  .story-film .film-control {
    display: none;
  }

  .story-film .chat-caret {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Vloom-first landing and framed walkthrough — August 21, 2026
   -------------------------------------------------------------------------- */

.hero-recut {
  position: relative;
  min-height: max(100svh, 700px);
  overflow: hidden;
  padding-top: 70px;
  background: #0a0b0e;
  color: #f6f3eb;
}

.hero-recut .hero-film-texture {
  z-index: 0;
}

.hero-recut .hero-film-texture::after {
  background:
    linear-gradient(90deg, #0a0b0e 0%, rgba(10, 11, 14, 0.95) 38%, rgba(10, 11, 14, 0.44) 76%, rgba(10, 11, 14, 0.8) 100%),
    linear-gradient(0deg, #0a0b0e 0%, transparent 42%);
}

.hero-recut .hero-film-texture img {
  top: 0;
  right: -8%;
  width: min(82vw, 1320px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.34;
  filter: grayscale(0.18) contrast(1.05);
}

.hero-recut .hero-grid {
  z-index: 1;
  display: flex;
  width: min(1320px, calc(100% - 64px));
  min-height: calc(100svh - 70px);
  align-items: center;
  padding: clamp(70px, 10vh, 112px) 0 76px;
}

.hero-recut .hero-copy {
  width: min(760px, 68vw);
  max-width: none;
}

.hero-kicker {
  margin-bottom: 24px;
  color: #b8c5fb;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.hero-recut h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(4.25rem, 7.4vw, 7.35rem);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.hero-recut h1 em {
  display: block;
  color: #b8c5fb;
  font-style: italic;
  font-weight: 510;
}

.hero-recut .hero-lede {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(246, 243, 235, 0.76);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.55;
}

.hero-recut .hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-recut .hero-primary {
  min-height: 54px;
  padding-inline: 24px;
  background: #f4f1e9;
  color: #0a0b0e;
}

.hero-recut .hero-primary:hover {
  background: #fff;
}

.hero-watch {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 6px;
}

.hero-watch span {
  color: #b8c5fb;
  font-size: 0.76rem;
}

.hero-trust {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.77rem;
}

.hero-brand-note {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.hero-brand-note i {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.demo-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 104px;
  border-bottom: 1px solid var(--line);
  background: #eeece5;
}

.demo-shell {
  width: min(1320px, calc(100% - 64px));
}

.demo-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
  margin-bottom: 54px;
}

.demo-intro h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.demo-intro-copy p {
  margin: 0 0 17px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.demo-jump {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 680;
  text-decoration-color: rgba(16, 19, 26, 0.28);
  text-underline-offset: 5px;
}

.demo-jump span {
  color: var(--cobalt);
  font-size: 0.7rem;
}

.device-scene {
  position: relative;
  padding: 25px clamp(24px, 4vw, 58px) 43px;
  border: 1px solid rgba(16, 19, 26, 0.14);
  border-radius: 8px;
  background: #d9d6cd;
  box-shadow: 0 34px 90px rgba(16, 19, 26, 0.14);
}

.device-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 21px;
  color: rgba(16, 19, 26, 0.62);
  font-size: 0.77rem;
  font-weight: 620;
}

.device-laptop {
  position: relative;
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: 17px 17px 19px;
  border: 1px solid #35383e;
  border-radius: 18px 18px 8px 8px;
  background: #1b1d21;
  box-shadow: 0 32px 70px rgba(16, 19, 26, 0.28);
}

.device-camera {
  position: absolute;
  z-index: 12;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #050608;
  box-shadow: 0 0 0 1px #41454d;
  transform: translateX(-50%);
}

.device-base {
  position: relative;
  width: min(1180px, calc(100% + 38px));
  height: 15px;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(#b8bbc0, #757980);
  clip-path: polygon(2% 0, 98% 0, 100% 62%, 94% 100%, 6% 100%, 0 62%);
}

.device-base span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 14%;
  height: 4px;
  border-radius: 0 0 7px 7px;
  background: #8c9096;
  transform: translateX(-50%);
}

.device-caption {
  max-width: 720px;
  margin: 23px auto 0;
  color: rgba(16, 19, 26, 0.58);
  font-size: 0.74rem;
  line-height: 1.5;
  text-align: center;
}

.demo-section .story-film {
  position: relative;
  display: flex;
  width: 100%;
  height: 620px;
  min-height: 620px;
  flex-direction: column;
  margin: 0;
  padding: 0;
  color: #f6f3eb;
}

.demo-section .chat-frame {
  min-height: 0;
  border: 0;
  border-radius: 7px;
  box-shadow: none;
}

.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b8c5fb;
  box-shadow: 0 0 0 4px rgba(184, 197, 251, 0.1);
}

.demo-section .chat-tag {
  margin-right: 0;
}

.film-progress {
  position: absolute;
  z-index: 14;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  border-radius: 7px 7px 0 0;
  background: rgba(255, 255, 255, 0.12);
}

.film-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: #aec0ff;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.demo-cover {
  position: absolute;
  z-index: 20;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 48px;
  background:
    linear-gradient(90deg, rgba(12, 13, 16, 0.98), rgba(12, 13, 16, 0.82)),
    url("/img/vloom-signal.webp") center / cover;
  text-align: center;
}

html.js .demo-cover {
  display: flex;
}

.demo-cover > span {
  margin-bottom: 17px;
  color: #b8c5fb;
  font-size: 0.78rem;
  font-weight: 650;
}

.demo-cover h3 {
  max-width: 640px;
  margin-bottom: 14px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  font-weight: 540;
  line-height: 0.98;
}

.demo-cover p {
  max-width: 560px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
}

.demo-start {
  min-height: 52px;
  padding-inline: 22px;
}

.demo-section .film-footer {
  min-height: 38px;
  align-items: center;
  padding-top: 8px;
  border-top: 0;
}

.demo-section .film-footer > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.69rem;
}

.demo-section .film-control {
  position: static;
  min-width: 68px;
  min-height: 32px;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
}

.demo-section .film-control:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

.demo-section .work-takeover {
  inset: 49px 0 52px;
  align-items: flex-start;
  padding: clamp(35px, 6vw, 78px);
  background:
    linear-gradient(115deg, rgba(49, 85, 245, 0.13), transparent 56%),
    #111217;
}

.demo-section .work-kicker {
  margin-bottom: 14px;
  color: #b8c5fb;
  letter-spacing: 0;
  text-transform: none;
}

.demo-section .work-takeover-title {
  max-width: 760px;
  font-size: clamp(2.6rem, 5.3vw, 5.2rem);
  text-align: left;
}

.demo-section .work-takeover-copy {
  max-width: 660px;
  margin: 17px 0 28px;
  font-size: 1rem;
  line-height: 1.55;
  text-align: left;
}

.demo-section .work-takeover-steps {
  width: min(100%, 660px);
}

.demo-section .work-takeover-steps p {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  color: rgba(255, 255, 255, 0.36);
}

.demo-section .work-takeover-steps p.shown {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  transform: none;
}

.demo-section .work-takeover-steps p::before {
  display: none;
}

.demo-section .work-takeover-steps p span {
  color: #b8c5fb;
  font-size: 0.74rem;
  font-weight: 650;
}

.demo-section .work-takeover small {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.7rem;
}

.demo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.demo-cta p {
  margin: 0;
  color: var(--ink-soft);
}

.demo-cta p strong {
  color: var(--ink);
}

.report-baseline {
  margin: 18px 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 19, 26, 0.14);
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.process-intro h2 {
  margin-bottom: 20px;
}

.process-intro > p:last-child {
  max-width: 570px;
  margin: 0;
  color: var(--ink-soft);
}

.process-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.process-steps li > span {
  color: var(--cobalt-deep);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 650;
}

.process-steps h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.process-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.time-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  margin-top: 50px;
  padding: 27px 30px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
}

.time-note strong {
  font-family: var(--display);
  font-size: 1.38rem;
  font-weight: 560;
  line-height: 1.1;
}

.time-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.content-lane {
  background:
    linear-gradient(135deg, rgba(49, 85, 245, 0.18), transparent 56%),
    #151a24;
}

.project-prices {
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
}

.pricing-boundary {
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-align: center;
}

.pricing-boundary strong {
  color: var(--ink);
}

.founder-strip {
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--night);
  color: #fff;
}

.founder-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.founder-strip p {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.founder-strip p strong {
  color: #fff;
}

.founder-strip a {
  flex: none;
  color: #b8c5fb;
  font-weight: 650;
  text-underline-offset: 5px;
}

.faq-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.footer-grid-compact {
  grid-template-columns: minmax(280px, 1.25fr) auto minmax(230px, 0.7fr);
}

.footer-links-compact {
  display: grid;
  align-content: start;
  gap: 8px;
}

@media (max-width: 900px) {
  .hero-recut .hero-grid,
  .demo-shell {
    width: min(100% - 40px, 1220px);
  }

  .hero-recut .hero-copy {
    width: min(720px, 88vw);
  }

  .hero-brand-note {
    display: none;
  }

  .demo-intro,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .demo-intro-copy {
    max-width: 680px;
  }

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

  .project-prices .project-title {
    grid-column: 1 / -1;
  }

  .footer-grid-compact {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  [id] {
    scroll-margin-top: 62px;
  }

  .hero-recut {
    min-height: max(100svh, 690px);
    padding-top: 62px;
  }

  .hero-recut .hero-film-texture::after {
    background: linear-gradient(0deg, #0a0b0e 0%, rgba(10, 11, 14, 0.76) 62%, rgba(10, 11, 14, 0.9) 100%);
  }

  .hero-recut .hero-film-texture img {
    top: 34%;
    right: -48%;
    width: 160vw;
    height: 68%;
    opacity: 0.28;
  }

  .hero-recut .hero-grid {
    width: calc(100% - 32px);
    min-height: calc(100svh - 62px);
    align-items: flex-start;
    padding: 64px 0 46px;
  }

  .hero-recut .hero-copy {
    width: 100%;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 0.78rem;
  }

  .hero-recut h1 {
    max-width: 520px;
    margin-bottom: 24px;
    font-size: clamp(3.3rem, 16vw, 4.45rem);
  }

  .hero-recut .hero-lede {
    margin-bottom: 29px;
    font-size: 1rem;
  }

  .hero-recut .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-watch {
    min-height: 38px;
  }

  .hero-trust {
    max-width: 330px;
    margin-top: 19px;
    line-height: 1.5;
  }

  .demo-section {
    padding: 76px 0 72px;
  }

  .demo-shell {
    width: calc(100% - 20px);
  }

  .demo-intro {
    margin-bottom: 34px;
    padding-inline: 6px;
  }

  .demo-intro h2 {
    font-size: clamp(2.65rem, 13vw, 3.45rem);
  }

  .demo-intro-copy p {
    font-size: 0.94rem;
  }

  .device-scene {
    padding: 16px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .device-meta {
    padding-inline: 8px;
  }

  .device-laptop {
    width: min(100%, 390px);
    padding: 11px 8px 9px;
    border-radius: 31px;
  }

  .device-camera {
    top: 4px;
    width: 34px;
    height: 4px;
    border-radius: 10px;
    background: #090a0c;
    box-shadow: none;
  }

  .device-base {
    display: none;
  }

  .demo-section .story-film {
    height: 650px;
    min-height: 650px;
    padding: 0;
  }

  .demo-section .chat-frame {
    min-height: 0;
    border-radius: 22px;
  }

  .demo-cover {
    padding: 30px 20px;
    border-radius: 22px;
  }

  .demo-cover h3 {
    font-size: clamp(2.45rem, 12vw, 3.3rem);
  }

  .demo-start {
    width: 100%;
    max-width: 300px;
    padding-inline: 16px;
    font-size: 0.88rem;
  }

  .demo-section .work-takeover {
    inset: 46px 0 49px;
    padding: 24px 20px;
  }

  .demo-section .work-takeover-title {
    font-size: clamp(2.3rem, 11vw, 3rem);
  }

  .demo-section .work-takeover-copy {
    margin: 12px 0 17px;
    font-size: 0.83rem;
  }

  .demo-section .work-takeover-steps p {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
    font-size: 0.76rem;
  }

  .demo-section .work-takeover small {
    margin-top: 14px;
    font-size: 0.62rem;
  }

  .device-caption {
    padding-inline: 18px;
  }

  .demo-cta,
  .founder-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-cta .button {
    width: 100%;
  }

  .process-grid {
    gap: 36px;
  }

  .time-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 21px;
  }

  .project-prices,
  .footer-grid-compact {
    grid-template-columns: 1fr;
  }

  .project-prices .project-title,
  .footer-brand {
    grid-column: auto;
  }

  .footer-links-compact {
    padding-top: 7px;
    border-top: 1px solid var(--line-dark);
  }
}

@media (max-height: 719px) and (min-width: 621px) {
  .hero-recut {
    min-height: 720px;
  }

  .hero-recut .hero-grid {
    min-height: 650px;
  }

  .demo-section .story-film {
    height: 600px;
    min-height: 600px;
  }
}
