@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #0b0b0d;
  --ink-soft: #17171a;
  --paper: #f7f7f5;
  --white: #ffffff;
  --soft: #ededeb;
  --line: #d7d7d3;
  --muted: #66666b;
  --muted-light: #a6a6aa;
  --cyan: #73e6f4;
  --violet: #8068f5;
  --success: #147a4b;
  --danger: #b42318;
  --shell: 1220px;
  --header: 78px;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(12, 12, 14, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.is-loading {
  cursor: progress;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}
.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}
.section-light {
  background: var(--paper);
}
.section-soft {
  background: var(--soft);
}
.section-ink {
  color: var(--white);
  background: var(--ink);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}
.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(247, 247, 245, 0.86);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}
.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
}
.brand span {
  display: grid;
  line-height: 1;
}
.brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2.4px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 21px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}
.button-small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 14px;
}
.button-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}
.button-dark:hover {
  background: #27272b;
}
.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}
.button-ghost:hover {
  background: var(--soft);
}

.hero {
  min-height: min(760px, calc(100svh - 16px));
  display: flex;
  align-items: center;
  padding: calc(var(--header) + 34px) 0 10px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(430px, 0.85fr);
  align-items: center;
  gap: clamp(44px, 5vw, 72px);
}
.eyebrow,
.section-index {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow > span {
  width: 27px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.hero h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.04;
}
.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: #4e4e53;
  font-size: 21px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-actions p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.analysis-note {
  max-width: 620px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 31px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.analysis-note > span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid #b7b7b4;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.analysis-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.analysis-note strong {
  color: var(--ink);
}

.looker-panel {
  min-height: 510px;
  overflow: hidden;
  border: 1px solid #d8d8dc;
  border-radius: var(--radius);
  background: #f5f6f8;
  box-shadow: var(--shadow);
}
.looker-header {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid #dedee2;
  background: #fff;
}
.looker-header > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.looker-header strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.looker-mark {
  width: 12px;
  height: 25px;
  display: inline-block;
  border-radius: 3px;
  background: #17171a;
  box-shadow: 8px 5px 0 -2px #1f9d6a;
}
.looker-badge {
  flex: 0 0 auto;
  padding: 6px 8px;
  border: 1px solid #dadade;
  border-radius: 5px;
  color: #5a5a62;
  background: #fafafa;
  font-size: 9px;
  font-weight: 700;
}
.looker-body {
  padding: 18px;
}
.looker-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.looker-toolbar > div:last-child {
  padding: 7px 10px;
  border: 1px solid #dedee2;
  border-radius: 5px;
  background: #fff;
}
.looker-toolbar span,
.looker-toolbar strong {
  display: block;
}
.looker-toolbar span {
  color: #7a7a82;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}
.looker-toolbar strong {
  margin-top: 3px;
  font-size: 11px;
}
.looker-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.looker-metrics > div {
  min-width: 0;
  padding: 13px;
  border: 1px solid #dedee2;
  border-radius: 6px;
  background: #fff;
}
.looker-metrics span,
.looker-metrics strong,
.looker-metrics small {
  display: block;
}
.looker-metrics span {
  min-height: 29px;
  color: #71717a;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}
.looker-metrics strong {
  margin-top: 7px;
  overflow-wrap: anywhere;
  font-size: 14px;
}
.looker-metrics small {
  min-height: 26px;
  margin-top: 5px;
  color: #85858d;
  font-size: 8px;
  line-height: 1.45;
}
.looker-chart {
  padding: 16px 16px 12px;
  border: 1px solid #dedee2;
  border-radius: 6px;
  background: #fff;
}
.chart-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
.chart-title strong,
.chart-title span {
  display: block;
}
.chart-title strong {
  font-size: 12px;
}
.chart-title span {
  margin-top: 3px;
  color: #85858d;
  font-size: 9px;
}
.chart-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #686870;
  font-size: 8px;
}
.chart-legend i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #1f9d6a;
}
.bar-chart {
  height: 190px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 17px;
  padding: 0 5px;
  border-bottom: 1px solid #d9d9dd;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 46px,
    #ededf0 47px
  );
}
.bar-chart span {
  height: var(--bar);
  flex: 1;
  min-width: 8px;
  border-radius: 3px 3px 0 0;
  background: #202024;
}
.bar-chart span:nth-child(3n) {
  background: #1f9d6a;
}
.chart-axis {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  padding: 7px 5px 0;
  color: #8b8b92;
  font-size: 7px;
  text-align: center;
}
.looker-sources {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}
.looker-sources > span {
  color: #74747c;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.looker-sources > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}
.looker-sources b {
  padding: 4px 6px;
  border: 1px solid #dedee2;
  border-radius: 4px;
  color: #65656d;
  background: #fff;
  font-size: 7px;
}
.looker-disclaimer {
  margin: 10px 2px 0;
  color: #777780;
  font-size: 8px;
  line-height: 1.4;
}

.acquisition-visual {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid #cfcfcb;
  border-radius: var(--radius);
  background: #111114;
  box-shadow: var(--shadow);
}
.visual-topline,
.visual-footer {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #babac0;
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.visual-topline {
  top: 0;
  padding: 20px 22px;
  border-bottom: 1px solid #29292e;
}
.live-mark {
  display: flex;
  align-items: center;
  gap: 7px;
}
.live-mark i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.visual-footer {
  bottom: 0;
  padding: 18px 22px;
  border-top: 1px solid #29292e;
}
.signal-map {
  position: absolute;
  inset: 62px 0 53px;
  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);
  background-size: 38px 38px;
}
.signal-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(128, 104, 245, 0.13),
    transparent 43%
  );
}
.signal-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 154px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid #5a5a64;
  border-radius: 50%;
  color: var(--white);
  background: #17171b;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.025),
    0 0 0 37px rgba(255, 255, 255, 0.015);
}
.signal-core span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}
.signal-core strong {
  margin-top: 6px;
  font-size: 18px;
}
.signal-core small {
  margin-top: 5px;
  color: #8f8f98;
  font-size: 10px;
}
.signal-node {
  position: absolute;
  z-index: 3;
  width: 150px;
  padding: 12px;
  border: 1px solid #34343a;
  border-radius: 6px;
  color: var(--white);
  background: rgba(23, 23, 27, 0.92);
}
.signal-node small {
  color: var(--violet);
  font-size: 9px;
  font-weight: 700;
}
.signal-node strong,
.signal-node span {
  display: block;
}
.signal-node strong {
  margin-top: 3px;
  font-size: 13px;
}
.signal-node span {
  margin-top: 2px;
  color: #91919a;
  font-size: 9px;
}
.node-strategy {
  top: 10%;
  left: 7%;
}
.node-media {
  top: 10%;
  right: 7%;
}
.node-page {
  bottom: 9%;
  left: 7%;
}
.node-data {
  bottom: 9%;
  right: 7%;
}
.signal-line {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 56%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(115, 230, 244, 0.58),
    transparent
  );
  transform-origin: center;
}
.line-a {
  transform: translate(-50%, -50%) rotate(33deg);
}
.line-b {
  transform: translate(-50%, -50%) rotate(-33deg);
}
.line-c {
  width: 70%;
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0.4;
}

.problem-section,
.positioning,
.analysis-section,
.method,
.benefits,
.fit-section,
.proof-section,
.application-section,
.faq-section,
.final-cta {
  padding: clamp(88px, 10vw, 152px) 0;
}
.split-heading {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  padding-bottom: 64px;
}
.section-ink .section-index {
  color: #77777f;
}
.split-heading h2,
.section-heading h2,
.benefits h2,
.fit-section h2,
.application-intro h2,
.final-cta h2 {
  margin-bottom: 22px;
  font-size: 64px;
  font-weight: 550;
  line-height: 1.08;
}
.split-heading > div > p,
.section-heading > p:last-child,
.application-intro > p:last-child,
.final-cta > p {
  max-width: 750px;
  margin: 0;
  color: var(--muted-light);
  font-size: 18px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #313136;
  border-left: 1px solid #313136;
}
.problem-grid article {
  min-height: 188px;
  padding: 24px;
  border-right: 1px solid #313136;
  border-bottom: 1px solid #313136;
}
.problem-grid span {
  color: #686871;
  font-size: 11px;
}
.problem-grid p {
  margin: 42px 0 0;
  color: #e9e9eb;
  font-size: 16px;
  line-height: 1.5;
}

.positioning-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}
.sticky-copy {
  position: sticky;
  top: 130px;
}
.sticky-copy h2 {
  margin-bottom: 26px;
  font-size: 62px;
  font-weight: 550;
  line-height: 1.08;
}
.sticky-copy > p:last-child {
  color: var(--muted);
  font-size: 18px;
}
.capability-stack {
  border-top: 1px solid var(--line);
}
.capability-stack article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 18px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.capability-stack article > span {
  grid-row: 1 / span 2;
  color: var(--violet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.capability-stack h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
}
.capability-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 64px;
}
.section-heading > p:last-child {
  color: var(--muted);
}
.analysis-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #c6c6c2;
}
.analysis-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 26px 32px 26px 0;
  border-bottom: 1px solid #c6c6c2;
}
.analysis-list article:nth-child(odd) {
  border-right: 1px solid #c6c6c2;
}
.analysis-list article:nth-child(even) {
  padding-left: 32px;
}
.analysis-list b {
  color: var(--violet);
  font-size: 11px;
}
.analysis-list h3 {
  margin: 0 0 7px;
  font-size: 18px;
}
.analysis-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.method-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.method-track article {
  min-height: 280px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.method-track article:first-child {
  border-left: 1px solid var(--line);
}
.method-track span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}
.method-track h3 {
  margin: 52px 0 12px;
  font-size: 20px;
}
.method-track p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: start;
}
.benefits h2 {
  max-width: 540px;
}
.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #333338;
}
.benefit-list li {
  position: relative;
  padding: 20px 10px 20px 35px;
  border-bottom: 1px solid #333338;
  color: #ededf0;
}
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 28px;
  width: 12px;
  height: 5px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.fit-grid article {
  padding: clamp(32px, 5vw, 64px);
  background: var(--paper);
}
.fit-grid h2 {
  font-size: 46px;
}
.fit-grid ul {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}
.fit-grid li {
  position: relative;
  padding: 14px 0 14px 27px;
  border-top: 1px solid var(--line);
  color: #38383d;
}
.fit-grid li::before {
  position: absolute;
  left: 1px;
  top: 14px;
  color: var(--violet);
  font-weight: 700;
}
.fit-positive li::before {
  content: "+";
}
.fit-negative li::before {
  content: "–";
  color: #8b8b91;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(54px, 9vw, 130px);
  align-items: end;
}
.proof-grid .section-heading {
  margin-bottom: 0;
}
.proof-framework {
  border-top: 1px solid #bfbfbb;
}
.proof-label {
  margin: 0;
  padding: 18px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.proof-framework div {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 19px 0;
  border-top: 1px solid #cfcfcb;
}
.proof-framework span {
  color: var(--violet);
  font-size: 11px;
}
.proof-framework p {
  margin: 0;
  font-weight: 600;
}

.application-intro {
  max-width: 850px;
  margin-bottom: 60px;
}
.application-intro > p:last-child {
  max-width: 720px;
}
.form-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 84px);
}
.form-layout.form-layout-single {
  grid-template-columns: minmax(0, 856px);
  justify-content: center;
}
.form-aside {
  position: sticky;
  top: 122px;
}
.form-aside > p {
  color: #8f8f96;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.form-aside ol {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.form-aside li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #2c2c31;
  color: #d2d2d6;
  font-size: 13px;
}
.form-aside li span {
  color: var(--cyan);
  font-size: 10px;
}
.form-aside small {
  display: block;
  color: #77777f;
  font-size: 11px;
  line-height: 1.6;
}
.application-form {
  min-height: 650px;
  padding: clamp(26px, 5vw, 58px);
  color: var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.24);
}
.form-progress {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: end;
  gap: 25px;
  margin-bottom: 50px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.form-progress > div:first-child {
  display: grid;
}
.form-progress span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.form-progress strong {
  margin-top: 4px;
  font-size: 15px;
}
.progress-track {
  height: 4px;
  overflow: hidden;
  background: #e4e4e1;
}
.progress-track span {
  width: 20%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transition: width 240ms ease;
}
.form-step[hidden] {
  display: none;
}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  margin-bottom: 10px;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
}
.field-intro {
  margin-bottom: 32px;
  color: var(--muted);
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field-grid.two-columns {
  grid-template-columns: 1fr 1fr;
}
.field-wide {
  grid-column: 1 / -1;
}
.field {
  min-width: 0;
  display: grid;
  gap: 8px;
}
.field > span {
  font-size: 12px;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #c9c9c6;
  border-radius: 5px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fafaf9;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(128, 104, 245, 0.13);
}
.field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.09);
}
.field small {
  justify-self: end;
  color: var(--muted);
  font-size: 10px;
}
.check-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  color: #414146;
  font-size: 13px;
  cursor: pointer;
}
.check-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--ink);
}
.check-field a {
  font-weight: 700;
}
.check-field:has(input[aria-invalid="true"]) {
  color: var(--danger);
}
.application-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 28px 0 30px;
  border: 1px solid var(--line);
  background: var(--line);
}
.application-summary div {
  padding: 15px;
  background: var(--paper);
}
.application-summary small,
.application-summary strong {
  display: block;
}
.application-summary small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}
.application-summary strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: 13px;
}
.form-error {
  min-height: 24px;
  margin-top: 24px;
  color: var(--danger);
  font-size: 13px;
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}
.form-actions [hidden] {
  display: none;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 9vw, 130px);
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 22px;
  font-size: 22px;
  font-weight: 400;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  max-width: 760px;
  margin: -6px 0 24px;
  color: var(--muted);
}

.final-cta-inner {
  max-width: 900px;
  text-align: center;
}
.final-cta .eyebrow {
  justify-content: center;
}
.final-cta h2 {
  max-width: 900px;
}
.final-cta > .shell > p {
  margin-inline: auto;
  color: var(--muted);
}
.final-cta .button {
  margin-top: 30px;
}

.site-footer {
  padding: 64px 0 24px;
  color: var(--white);
  background: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
}
.brand-light strong {
  color: var(--white);
}
.brand-light small {
  color: #8c8c93;
}
.footer-grid > div:first-child > p {
  max-width: 330px;
  margin: 18px 0 0;
  color: #85858c;
  font-size: 13px;
}
.footer-contact,
.footer-links {
  display: grid;
  gap: 8px;
  font-size: 13px;
}
.footer-contact span {
  color: #77777f;
  font-size: 10px;
  text-transform: uppercase;
}
.footer-contact a,
.footer-links a {
  color: #d6d6da;
  text-decoration: none;
}
.footer-contact a:hover,
.footer-links a:hover {
  color: var(--cyan);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid #2c2c31;
  color: #6f6f76;
  font-size: 10px;
}

.legal-page {
  min-height: 100vh;
  padding-top: var(--header);
  background: var(--paper);
}
.legal-hero {
  padding: 82px 0 54px;
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 72px;
  line-height: 1.05;
}
.legal-content {
  max-width: 850px;
  padding: 64px 0 100px;
}
.legal-content h2 {
  margin: 42px 0 12px;
  font-size: 24px;
}
.legal-content p,
.legal-content li {
  color: var(--muted);
}
.legal-content a {
  font-weight: 700;
}

.success-page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--white);
  background: var(--ink);
}
.success-page .site-header {
  position: static;
  border-color: #2d2d32;
  background: var(--ink);
}
.success-page .brand strong {
  color: var(--white);
}
.success-page .brand small {
  color: #77777f;
}
.success-main {
  display: grid;
  place-items: center;
  padding: 70px 0;
}
.success-panel {
  width: min(820px, calc(100% - 40px));
}
.success-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid #48484f;
  border-radius: 50%;
}
.success-mark::before {
  content: "";
  width: 22px;
  height: 10px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg) translateY(-2px);
}
.success-panel h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 74px;
  font-weight: 550;
  line-height: 1.04;
}
.success-panel > p {
  max-width: 690px;
  color: #b2b2b8;
  font-size: 18px;
}
.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-top: 1px solid #333338;
  border-left: 1px solid #333338;
}
.next-steps article {
  padding: 23px;
  border-right: 1px solid #333338;
  border-bottom: 1px solid #333338;
}
.next-steps span {
  color: var(--violet);
  font-size: 10px;
}
.next-steps p {
  margin: 30px 0 0;
  color: #dedee1;
  font-size: 14px;
}
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.success-actions .button-dark {
  color: var(--ink);
  background: var(--white);
}
.success-actions .button-ghost {
  color: var(--white);
  border-color: #45454c;
}
.success-note {
  margin-top: 20px;
  color: #77777f !important;
  font-size: 12px !important;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 850px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .acquisition-visual {
    min-height: 520px;
  }
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .positioning-grid {
    grid-template-columns: 1fr;
  }
  .sticky-copy {
    position: static;
    max-width: 800px;
  }
  .capability-stack {
    max-width: none;
  }
  .method-track {
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid var(--line);
  }
  .method-track article {
    border-bottom: 1px solid var(--line);
  }
  .method-track article:first-child {
    border-left: 0;
  }
  .form-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --header: 70px;
  }
  .shell {
    width: min(100% - 30px, var(--shell));
  }
  .hero {
    padding-top: calc(var(--header) + 26px);
  }
  .hero h1 {
    font-size: 54px;
  }
  .split-heading h2,
  .section-heading h2,
  .benefits h2,
  .application-intro h2,
  .final-cta h2,
  .sticky-copy h2 {
    font-size: 50px;
  }
  .fit-grid h2 {
    font-size: 40px;
  }
  .legal-hero h1,
  .success-panel h1 {
    font-size: 58px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .acquisition-visual {
    min-height: 500px;
  }
  .visual-footer {
    gap: 10px;
    flex-wrap: wrap;
  }
  .split-heading,
  .benefits-grid,
  .fit-grid,
  .proof-grid,
  .faq-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }
  .split-heading {
    gap: 8px;
  }
  .benefits-grid,
  .proof-grid,
  .faq-grid {
    gap: 50px;
  }
  .analysis-list {
    grid-template-columns: 1fr;
  }
  .analysis-list article:nth-child(odd) {
    border-right: 0;
  }
  .analysis-list article:nth-child(even) {
    padding-left: 0;
  }
  .method-track {
    grid-template-columns: 1fr 1fr;
  }
  .form-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .form-aside > p,
  .form-aside small {
    grid-column: 1 / -1;
  }
  .application-form {
    min-height: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .header-inner {
    gap: 12px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .brand strong {
    font-size: 13px;
  }
  .brand small {
    font-size: 7px;
    letter-spacing: 1.8px;
  }
  .button-small {
    min-height: 39px;
    padding: 8px 12px;
    font-size: 12px;
  }
  .hero {
    padding-bottom: 54px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-lead {
    font-size: 17px;
  }
  .looker-panel {
    min-height: 0;
  }
  .looker-header {
    padding-inline: 14px;
  }
  .looker-header strong {
    font-size: 10px;
  }
  .looker-body {
    padding: 12px;
  }
  .looker-metrics {
    gap: 6px;
  }
  .looker-metrics > div {
    padding: 9px 7px;
  }
  .looker-metrics span {
    min-height: 32px;
    font-size: 7px;
  }
  .looker-metrics strong {
    font-size: 11px;
  }
  .looker-metrics small {
    display: none;
  }
  .looker-chart {
    padding-inline: 10px;
  }
  .bar-chart {
    height: 160px;
    gap: 5px;
  }
  .split-heading h2,
  .section-heading h2,
  .benefits h2,
  .application-intro h2,
  .final-cta h2,
  .sticky-copy h2 {
    font-size: 38px;
  }
  .fit-grid h2 {
    font-size: 34px;
  }
  legend {
    font-size: 30px;
  }
  .legal-hero h1,
  .success-panel h1 {
    font-size: 46px;
  }
  .acquisition-visual {
    min-height: 420px;
  }
  .signal-map {
    inset-block: 62px 67px;
  }
  .signal-core {
    width: 120px;
  }
  .signal-node {
    width: 118px;
    padding: 9px;
  }
  .signal-node span {
    display: none;
  }
  .node-strategy,
  .node-page {
    left: 4%;
  }
  .node-media,
  .node-data {
    right: 4%;
  }
  .visual-topline {
    padding-inline: 15px;
    font-size: 8px;
  }
  .visual-footer {
    padding: 13px 15px;
    font-size: 8px;
  }
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .problem-grid article {
    min-height: 180px;
  }
  .problem-grid p {
    margin-top: 25px;
  }
  .capability-stack article {
    grid-template-columns: 70px 1fr;
  }
  .analysis-list article {
    grid-template-columns: 38px 1fr;
  }
  .method-track {
    grid-template-columns: 1fr;
  }
  .method-track article {
    min-height: 220px;
  }
  .method-track h3 {
    margin-top: 35px;
  }
  .fit-grid article {
    padding: 32px 24px;
  }
  .form-aside {
    display: block;
  }
  .application-form {
    padding: 24px 18px;
  }
  .form-progress {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 36px;
  }
  .field-grid,
  .field-grid.two-columns {
    grid-template-columns: 1fr;
  }
  .field-wide {
    grid-column: auto;
  }
  .application-summary {
    grid-template-columns: 1fr;
  }
  .form-actions {
    flex-direction: column-reverse;
  }
  .form-actions .button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .next-steps {
    grid-template-columns: 1fr;
  }
  .success-actions {
    flex-direction: column;
  }
  .success-actions .button {
    width: 100%;
  }
}

@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
