@font-face {
  font-family: "Inter";
  src: url("assets/inter-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #101319;
  --ink-soft: #303744;
  --muted: #5b6275;
  --line: #dce3ec;
  --paper: #ffffff;
  --mist: #f2f8fb;
  --blue-soft: #e8f0ff;
  --blue: #1e5bc6;
  --blue-deep: #143f8e;
  --cyan: #00a7c7;
  --green: #1f8a5b;
  --green-soft: #e7f6ef;
  --amber: #b7791f;
  --amber-soft: #fbf3df;
  --red: #c23a2b;
  --shadow: 0 24px 70px rgba(26, 43, 67, 0.16);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(100%);
  white-space: nowrap;
  color: var(--paper);
  background: var(--ink);
  border-radius: 4px;
}

.skip-link:focus-visible {
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  overflow: visible;
  clip-path: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 74px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 227, 236, 0.86);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(26, 43, 67, 0.08);
}

.nav-shell {
  width: min(var(--shell), calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a:not(.button) {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
}

.nav-links > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links > a:not(.button):hover::after,
.nav-links > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 740;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--small {
  min-height: 40px;
  padding: 9px 15px;
  color: var(--paper);
  background: var(--blue);
}

.button--small:hover {
  background: var(--blue-deep);
}

.button--primary {
  min-height: 54px;
  padding-inline: 22px;
  color: var(--paper);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(30, 91, 198, 0.22);
}

.button--primary:hover {
  background: var(--blue-deep);
}

.button--light {
  color: var(--ink);
  background: var(--paper);
}

.button--light:hover {
  color: var(--blue-deep);
  background: var(--green-soft);
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 740;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link span {
  transition: transform 180ms ease;
}

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

.hero {
  position: relative;
  height: calc(100svh - 132px);
  min-height: 670px;
  max-height: 820px;
  overflow: hidden;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(var(--shell), calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  padding: 84px 0 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  line-height: 0.98;
}

.hero__product,
.hero__promise {
  display: block;
}

.hero__product {
  color: var(--blue-deep);
  font-size: 72px;
  font-weight: 860;
}

.hero__promise {
  max-width: 650px;
  margin-top: 15px;
  color: var(--ink);
  font-size: 62px;
  font-weight: 790;
}

.hero__lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.55;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__assurance {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
}

.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__scene::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  background: rgba(242, 248, 251, 0.94);
}

.phone {
  position: relative;
  overflow: hidden;
  border: 9px solid #11151b;
  border-radius: 42px;
  background: #11151b;
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone__speaker {
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 3;
  width: 72px;
  height: 18px;
  border-radius: 0 0 11px 11px;
  background: #11151b;
  transform: translateX(-50%);
}

.phone__scan-line {
  position: absolute;
  top: 15%;
  left: 6%;
  z-index: 2;
  width: 88%;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 167, 199, 0.8);
  opacity: 0;
  animation: scan-line 4.8s ease-in-out infinite;
}

.phone--hero {
  --scene-opacity: 1;
  position: absolute;
  top: 40px;
  right: max(3vw, calc((100vw - 1210px) / 2));
  width: 335px;
  aspect-ratio: 888 / 1998;
  transform: rotate(1.6deg);
  opacity: var(--scene-opacity);
}

.js .phone--hero,
.js .contract-sheet,
.js .scene-note {
  opacity: 0;
  translate: 0 28px;
}

.js .phone--hero,
.js .contract-sheet {
  transition: opacity 700ms ease, translate 700ms ease;
}

.js .scene-note {
  transition: opacity 520ms ease, translate 520ms ease;
}

.js body.page-ready .phone--hero {
  opacity: var(--scene-opacity);
  translate: 0 0;
}

.js body.page-ready .contract-sheet,
.js body.page-ready .scene-note {
  opacity: 1;
  translate: 0 0;
}

.js body.page-ready .contract-sheet {
  transition-delay: 90ms;
}

.js body.page-ready .scene-note--risk {
  transition-delay: 320ms;
}

.js body.page-ready .scene-note--library {
  transition-delay: 440ms;
}

.contract-sheet {
  position: absolute;
  top: 76px;
  right: max(19vw, calc((100vw - 830px) / 2));
  width: 460px;
  height: 540px;
  padding: 52px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 30px 70px rgba(26, 43, 67, 0.11);
  transform: rotate(-6deg);
}

.contract-sheet__label {
  display: block;
  margin-bottom: 48px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 820;
}

.contract-sheet__line {
  display: block;
  width: 76%;
  height: 7px;
  margin-bottom: 21px;
  background: #d9e0e9;
}

.contract-sheet__line--long {
  width: 100%;
}

.contract-sheet__line--short {
  width: 58%;
}

.contract-sheet__mark {
  display: block;
  width: fit-content;
  margin-top: 60px;
  padding: 9px 12px;
  color: #7c4b08;
  background: var(--amber-soft);
  border-left: 3px solid var(--amber);
  font-size: 12px;
  font-weight: 760;
}

.scene-note {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  padding: 13px 15px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(26, 43, 67, 0.13);
}

.scene-note span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.scene-note strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.scene-note--risk {
  top: 176px;
  right: max(25vw, calc((100vw - 720px) / 2));
  border-left: 4px solid var(--green);
}

.scene-note--library {
  right: max(2vw, calc((100vw - 1240px) / 2));
  bottom: 70px;
  flex-direction: row;
  align-items: baseline;
  gap: 7px;
  border-bottom: 4px solid var(--cyan);
}

.scene-note--library strong {
  color: var(--blue);
  font-size: 25px;
}

.signal-bar {
  min-height: 78px;
  display: flex;
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.signal-bar__inner {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 20px;
}

.signal-bar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 620;
  text-align: center;
}

.signal-bar strong {
  margin-right: 7px;
  color: var(--blue);
  font-size: 12px;
}

.signal-bar__inner > span {
  height: 1px;
  background: var(--line);
}

.section {
  padding: 118px 0;
  scroll-margin-top: 74px;
}

.section h2,
.trust h2,
.legal-context h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: 46px;
  font-weight: 790;
  line-height: 1.1;
}

.section-intro {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.workflow__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 100px;
  align-items: center;
}

.steps {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 780;
}

.steps h3,
.feature-ledger h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.steps p,
.feature-ledger p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.product-shot {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #dceafb;
  border: 1px solid #c7d8ee;
  border-radius: 8px;
}

.product-shot::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: var(--green-soft);
  border-top: 1px solid #c6e6d7;
}

.product-shot__caption {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 4;
  display: flex;
  flex-direction: column;
}

.product-shot__caption span {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-shot__caption strong {
  color: var(--ink);
  font-size: 17px;
}

.phone--scan {
  position: absolute;
  z-index: 2;
  right: -12px;
  bottom: -170px;
  width: 360px;
  aspect-ratio: 888 / 1998;
  transform: rotate(-1.8deg);
}

.analysis {
  background: var(--mist);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
}

.section-heading--split > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.analysis-board {
  margin-top: 60px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(26, 43, 67, 0.08);
}

.analysis-board__topline {
  min-height: 116px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.kicker,
.analysis-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.analysis-board__topline h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.2;
}

.risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  color: #714812;
  background: var(--amber-soft);
  border: 1px solid #ead8a9;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.risk-badge i {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}

.analysis-board__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
}

.analysis-board__grid > div {
  min-height: 310px;
  padding: 34px 30px;
}

.analysis-board__grid > div + div {
  border-left: 1px solid var(--line);
}

.analysis-summary > p {
  margin: 22px 0 36px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.62;
}

.risk-scale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.risk-scale span {
  height: 8px;
}

.risk-scale__low {
  background: #80c6a6;
}

.risk-scale__medium {
  background: var(--amber);
}

.risk-scale__high {
  background: #e3e7ed;
}

.analysis-summary small {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

.analysis-summary small b {
  color: var(--amber);
}

.finding {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 5px solid var(--amber);
}

.finding--green {
  border-top-color: var(--green);
}

.finding__number {
  color: #c0c7d2;
  font-size: 34px;
  font-weight: 780;
  line-height: 1;
}

.finding h4 {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.finding p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.capabilities {
  background: var(--green-soft);
}

.capabilities__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 110px;
  align-items: start;
}

.capabilities__heading {
  position: sticky;
  top: 112px;
}

.capabilities__heading > p:last-child {
  max-width: 460px;
  margin: 24px 0 0;
  color: #426156;
  font-size: 17px;
}

.feature-ledger {
  border-top: 1px solid #bedbce;
}

.feature-ledger article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid #bedbce;
}

.feature-ledger article > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.trust {
  padding: 112px 0 96px;
  scroll-margin-top: 74px;
  color: var(--paper);
  background: #172127;
}

.trust__header {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: end;
}

.trust .eyebrow {
  color: #65c69a;
}

.trust h2 {
  max-width: 690px;
  color: var(--paper);
}

.trust__intro {
  padding-left: 36px;
  border-left: 1px solid #3b4b54;
}

.trust__intro p {
  margin: 0 0 24px;
  color: #c9d4da;
  font-size: 17px;
  line-height: 1.7;
}

.trust .text-link {
  color: #82d9b1;
}

.privacy-principles {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #3b4b54;
  border-bottom: 1px solid #3b4b54;
}

.privacy-principles article {
  min-width: 0;
  padding: 36px 32px 38px;
}

.privacy-principles article + article {
  border-left: 1px solid #3b4b54;
}

.privacy-principles__number {
  color: #82d9b1;
  font-size: 12px;
  font-weight: 820;
}

.privacy-principles__label {
  margin: 34px 0 8px;
  color: #82d9b1 !important;
  font-size: 10px !important;
  font-weight: 800;
  text-transform: uppercase;
}

.privacy-principles h3 {
  margin: 0;
  color: var(--paper);
  font-size: 20px;
  line-height: 1.35;
}

.privacy-principles article > p:last-child {
  margin: 16px 0 0;
  color: #adbac2;
  font-size: 14px;
  line-height: 1.65;
}

.trust__footer {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.trust__footer span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 720;
}

.trust__footer i {
  width: 9px;
  height: 9px;
  background: #65c69a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(101, 198, 154, 0.12);
}

.trust__footer p {
  margin: 0;
  color: #88979f;
  font-size: 12px;
  text-align: right;
}

.legal-context {
  padding: 92px 0;
  background: var(--amber-soft);
}

.legal-context__grid {
  display: grid;
  grid-template-columns: 120px 1fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.legal-context__mark {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--blue-deep);
  border: 8px solid #f4c742;
  border-radius: 50%;
  font-size: 27px;
  font-weight: 850;
}

.legal-context .eyebrow {
  color: #7a4b09;
}

.legal-context__grid > p {
  margin: 0;
  color: #6b522e;
  font-size: 16px;
  line-height: 1.7;
}

.final-cta {
  padding: 84px 0;
  color: var(--paper);
  background: var(--blue-deep);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 34px;
  align-items: center;
}

.final-cta img {
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  object-fit: cover;
}

.final-cta .eyebrow {
  margin-bottom: 12px;
  color: #8de0ba;
}

.final-cta h2 {
  max-width: 710px;
  color: var(--paper);
  font-size: 36px;
}

.site-footer {
  padding: 54px 0 34px;
  background: var(--paper);
}

.site-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.brand--footer img {
  width: 38px;
  height: 38px;
}

.site-footer__top > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer nav a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
  text-underline-offset: 4px;
}

.site-footer__bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

.legal-note {
  max-width: 960px;
  margin-top: 24px;
  color: #7a8190;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.js .analysis-board__grid > div,
.js .feature-ledger article,
.js .privacy-principles article {
  opacity: 0;
  translate: 0 14px;
  transition: opacity 440ms ease, translate 440ms ease;
}

.js .analysis-board.is-visible .analysis-board__grid > div,
.js .feature-ledger.is-visible article,
.js .privacy-principles.is-visible article {
  opacity: 1;
  translate: 0 0;
}

.js .analysis-board.is-visible .analysis-board__grid > div:nth-child(2),
.js .feature-ledger.is-visible article:nth-child(2),
.js .privacy-principles.is-visible article:nth-child(2) {
  transition-delay: 90ms;
}

.js .analysis-board.is-visible .analysis-board__grid > div:nth-child(3),
.js .feature-ledger.is-visible article:nth-child(3),
.js .privacy-principles.is-visible article:nth-child(3) {
  transition-delay: 180ms;
}

.js .feature-ledger.is-visible article:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes scan-line {
  0%, 12% {
    top: 15%;
    opacity: 0;
  }

  20% {
    opacity: 0.9;
  }

  72% {
    top: 78%;
    opacity: 0.9;
  }

  82%, 100% {
    top: 78%;
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 20px;
  }

  .hero__content {
    padding-top: 70px;
  }

  .hero__product {
    font-size: 64px;
  }

  .hero__promise {
    max-width: 560px;
    font-size: 54px;
  }

  .hero__lead {
    max-width: 520px;
    font-size: 18px;
  }

  .phone--hero {
    right: 18px;
    width: 300px;
  }

  .contract-sheet {
    right: 160px;
    width: 420px;
  }

  .scene-note--risk {
    right: 220px;
  }

  .scene-note--library {
    right: 16px;
  }

  .workflow__grid,
  .capabilities__grid,
  .trust__grid {
    gap: 70px;
  }
}

@media (max-width: 920px) {
  .site-header,
  .nav-shell {
    height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    height: calc(100dvh - 66px);
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links > a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .nav-links .button {
    margin-top: 28px;
  }

  .hero {
    height: calc(100svh - 104px);
    min-height: 620px;
    max-height: 760px;
  }

  .hero__content {
    justify-content: flex-start;
    padding: 62px 0 88px;
  }

  .hero__scene::after {
    width: 100%;
    background: rgba(242, 248, 251, 0.84);
  }

  .hero__product {
    font-size: 56px;
  }

  .hero__promise {
    max-width: 600px;
    font-size: 48px;
  }

  .hero__lead {
    max-width: 590px;
  }

  .phone--hero {
    --scene-opacity: 0.34;
    top: auto;
    right: -42px;
    bottom: -310px;
    width: 330px;
    transform: rotate(5deg);
  }

  .contract-sheet {
    display: none;
  }

  .scene-note {
    display: none;
  }

  .section {
    padding: 88px 0;
    scroll-margin-top: 66px;
  }

  .section h2,
  .trust h2,
  .legal-context h2 {
    font-size: 39px;
  }

  .workflow__grid,
  .capabilities__grid,
  .trust__header,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .workflow__grid {
    gap: 62px;
  }

  .product-shot {
    width: min(100%, 560px);
    min-height: 680px;
    margin-inline: auto;
  }

  .phone--scan {
    right: 50%;
    width: 340px;
    transform: translateX(50%) rotate(-1.8deg);
  }

  .section-heading--split {
    gap: 24px;
  }

  .analysis-board__grid {
    grid-template-columns: 1fr;
  }

  .analysis-board__grid > div {
    min-height: 0;
  }

  .analysis-board__grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .finding {
    min-height: 260px !important;
  }

  .capabilities__grid {
    gap: 52px;
  }

  .capabilities__heading {
    position: static;
  }

  .trust {
    padding: 82px 0;
    scroll-margin-top: 66px;
  }

  .trust__header {
    gap: 42px;
  }

  .trust__intro {
    padding: 28px 0 0;
    border-top: 1px solid #3b4b54;
    border-left: 0;
  }

  .privacy-principles {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .privacy-principles article + article {
    border-top: 1px solid #3b4b54;
    border-left: 0;
  }

  .legal-context__grid {
    grid-template-columns: 100px 1fr;
    gap: 34px;
  }

  .legal-context__grid > p {
    grid-column: 2;
  }

  .final-cta__inner {
    grid-template-columns: 72px 1fr;
  }

  .final-cta img {
    width: 72px;
    height: 72px;
  }

  .final-cta .button {
    grid-column: 2;
    width: fit-content;
  }

  .site-footer__top {
    grid-template-columns: 1fr auto;
  }

  .site-footer__top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  .shell,
  .nav-shell,
  .hero__content,
  .signal-bar__inner {
    width: min(calc(100% - 36px), var(--shell));
  }

  .brand {
    font-size: 15px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    height: calc(100svh - 96px);
    min-height: 560px;
    max-height: 690px;
  }

  .hero__content {
    padding: 40px 0 64px;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 10px;
  }

  .hero__product {
    font-size: 42px;
  }

  .hero__promise {
    max-width: 390px;
    margin-top: 12px;
    font-size: 36px;
    line-height: 1.03;
  }

  .hero__lead {
    max-width: 430px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero__actions {
    margin-top: 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .button--primary {
    min-height: 48px;
  }

  .hero__assurance {
    max-width: 320px;
    margin-top: 16px;
    font-size: 11px;
  }

  .phone--hero {
    --scene-opacity: 0.25;
    right: -62px;
    bottom: -305px;
    width: 285px;
  }

  .signal-bar {
    display: flex;
    width: 100%;
    max-width: 100vw;
    min-height: 74px;
    overflow: hidden;
    contain: inline-size;
  }

  .signal-bar__inner {
    width: min(calc(100% - 24px), 480px);
    min-width: 0;
    height: 74px;
    margin-inline: auto;
    padding-inline: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .signal-bar p {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    line-height: 1.25;
  }

  .signal-bar strong {
    margin-right: 0;
    font-size: 10px;
  }

  .signal-bar__inner > span {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .section h2,
  .trust h2,
  .legal-context h2 {
    font-size: 32px;
  }

  .section-intro,
  .section-heading--split > p,
  .capabilities__heading > p:last-child,
  .trust__intro p {
    font-size: 16px;
  }

  .steps {
    margin-top: 34px;
  }

  .steps li {
    grid-template-columns: 32px 1fr;
    gap: 15px;
    padding: 21px 0;
  }

  .product-shot {
    min-height: 600px;
  }

  .phone--scan {
    bottom: -150px;
    width: 300px;
  }

  .analysis-board {
    margin-top: 40px;
  }

  .analysis-board__topline {
    min-height: 0;
    padding: 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .analysis-board__topline h3 {
    font-size: 22px;
  }

  .analysis-board__grid > div {
    padding: 28px 22px;
  }

  .analysis-summary > p {
    font-size: 16px;
  }

  .feature-ledger article {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 25px 0;
  }

  .trust {
    padding: 68px 0;
  }

  .privacy-principles article {
    padding: 28px 0 30px;
  }

  .trust__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .trust__footer p {
    text-align: left;
  }

  .legal-context {
    padding: 70px 0;
  }

  .legal-context__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-context__grid > p {
    grid-column: 1;
  }

  .legal-context__mark {
    width: 76px;
    height: 76px;
    border-width: 6px;
    font-size: 20px;
  }

  .final-cta {
    padding: 68px 0;
  }

  .final-cta__inner {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }

  .final-cta img {
    width: 56px;
    height: 56px;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .final-cta .button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 12px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 13px;
  }

  .site-footer__top > p {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .hero__product {
    font-size: 37px;
  }

  .hero__promise {
    font-size: 32px;
  }

  .hero__lead {
    font-size: 15px;
  }

  .button--primary {
    width: 100%;
    padding-inline: 12px;
    font-size: 14px;
  }
}

@media (max-width: 640px) and (max-height: 700px) {
  .hero {
    height: calc(100svh - 94px);
    min-height: 0;
    max-height: none;
  }

  .hero__content {
    padding: 20px 0 26px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
  }

  .hero__product {
    font-size: 37px;
  }

  .hero__promise {
    margin-top: 8px;
    font-size: 32px;
  }

  .hero__lead {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.4;
  }

  .hero__actions {
    margin-top: 16px;
    gap: 8px;
  }

  .hero__actions .button {
    min-height: 44px;
  }

  .hero__assurance {
    display: none;
  }

  .phone--hero {
    bottom: -340px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .js .phone--hero {
    opacity: var(--scene-opacity);
    translate: 0 0;
  }

  .js .contract-sheet,
  .js .scene-note,
  .js .analysis-board__grid > div,
  .js .feature-ledger article,
  .js .privacy-principles article {
    opacity: 1;
    translate: 0 0;
  }

  .phone__scan-line {
    display: none;
  }
}
