:root {
  --navy-950: #031534;
  --navy-900: #041a3f;
  --navy-800: #082554;
  --navy-700: #10356f;
  --blue: #087ce8;
  --cyan: #11bff2;
  --cyan-soft: #dff7ff;
  --ink: #10213d;
  --text: #48566c;
  --muted: #738096;
  --line: #dce5ef;
  --surface: #f5f8fc;
  --white: #fff;
  --shadow-sm: 0 8px 24px rgba(5, 28, 65, .08);
  --shadow-lg: 0 30px 80px rgba(3, 22, 54, .2);
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--navy-950);
  background: var(--white);
  font-weight: 700;
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 78px;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(3, 21, 52, .94);
  border-color: rgba(255, 255, 255, .09);
  box-shadow: 0 8px 30px rgba(0, 10, 30, .14);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.12rem;
  font-weight: 760;
  letter-spacing: -.02em;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
}

.site-nav,
.legal-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a,
.legal-nav a {
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s ease;
}

.site-nav a:hover,
.legal-nav a:hover {
  color: var(--white);
}

.site-nav .nav-contact,
.legal-nav .nav-contact {
  padding: 10px 17px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
}

.site-nav .nav-contact:hover,
.legal-nav .nav-contact:hover {
  border-color: var(--cyan);
  background: rgba(17, 191, 242, .12);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 68% 52%, rgba(8, 124, 232, .22), transparent 33%),
    linear-gradient(122deg, #031534 0%, #041c45 56%, #05265a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  top: -200px;
  left: -150px;
  background: rgba(14, 142, 240, .12);
}

.hero-glow-two {
  right: -210px;
  bottom: -230px;
  width: 620px;
  height: 620px;
  background: rgba(12, 185, 240, .1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
  align-items: center;
  gap: 72px;
  min-height: 860px;
  padding-top: 96px;
}

.hero-copy {
  padding: 38px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #87ddfb;
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(17, 191, 242, .12);
}

.eyebrow.dark {
  color: #0879c8;
}

.eyebrow.light {
  color: #7bdcfc;
}

.hero h1 {
  max-width: 650px;
  margin: 24px 0 22px;
  color: var(--white);
  font-size: clamp(3.4rem, 5.4vw, 5.25rem);
  line-height: .98;
  letter-spacing: -.062em;
}

.hero h1 span {
  color: var(--cyan);
}

.hero-lede {
  max-width: 610px;
  margin: 0;
  color: rgba(232, 241, 255, .72);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.app-store-link {
  display: inline-flex;
  border-radius: 10px;
  transition: transform .2s ease, filter .2s ease;
}

.app-store-link img {
  width: 180px;
  height: auto;
}

.app-store-link.large img {
  width: 194px;
}

.app-store-link:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .24));
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .9);
  font-size: .92rem;
  font-weight: 700;
}

.text-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform .2s ease;
}

.text-button:hover svg {
  transform: translateX(4px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-top: 34px;
  padding-top: 27px;
  border-top: 1px solid rgba(255,255,255,.11);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(230, 240, 255, .66);
  font-size: .75rem;
  font-weight: 650;
}

.trust-row svg {
  width: 18px;
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  align-self: end;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(86, 196, 255, .12);
  border-radius: 50%;
}

.orbit-one {
  width: 540px;
  height: 540px;
  top: 60px;
  left: 5px;
}

.orbit-two {
  width: 420px;
  height: 420px;
  top: 120px;
  left: 65px;
}

.phone {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 50%;
  width: 320px;
  height: 655px;
  transform: translateX(-50%) rotate(2.2deg);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50px;
  background: linear-gradient(150deg, #e4ecf6, #7589a5 25%, #e2e8f0 48%, #566a85 80%, #e0e7f0);
  box-shadow: 0 55px 100px rgba(0, 5, 18, .55), 0 0 0 7px rgba(100, 145, 198, .13);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 14px;
  left: 50%;
  width: 94px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 18px;
  background: #020a17;
}

.phone-frame {
  position: absolute;
  inset: 5px;
  overflow: hidden;
  border: 7px solid #061225;
  border-radius: 45px;
  background: #f7f9fc;
}

.phone-screen {
  min-height: 100%;
  padding: 15px 17px 20px;
  color: var(--ink);
  background: #f7f9fc;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 8px 18px;
  color: #182a46;
  font-size: .62rem;
  font-weight: 760;
}

.status-icons svg {
  width: 44px;
  height: 12px;
  fill: #172842;
  stroke: #172842;
  stroke-width: 1.2;
}

.phone-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.phone-head span {
  color: #0987d9;
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.phone-head h2 {
  margin: 3px 0 0;
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.phone-head button {
  display: grid;
  flex: 0 0 auto;
  width: 33px;
  height: 33px;
  place-items: center;
  padding: 0;
  border: 1px solid #dce6f1;
  border-radius: 10px;
  background: var(--white);
}

.phone-head button svg {
  width: 17px;
  fill: none;
  stroke: #94a1b3;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  color: #758298;
  font-size: .6rem;
}

.progress-label strong {
  color: #34445d;
}

.progress-track {
  display: block;
  height: 4px;
  margin-top: 7px;
  border-radius: 99px;
  background: #e0e8f1;
}

.progress-track span {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.question-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 17px 14px;
  border: 1px solid #e2eaf2;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(9, 37, 77, .05);
}

.question-icon {
  display: grid;
  flex: 0 0 37px;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 11px;
  color: #0b94dd;
  background: #e9f8ff;
}

.question-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.question-card p {
  margin: 0;
  color: #768499;
  font-size: .68rem;
  line-height: 1.45;
}

.question-card strong {
  color: #23334c;
  font-size: .81rem;
}

.answer-list {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.answer-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  border: 1px solid #e1e8f0;
  border-radius: 11px;
  color: #526078;
  background: var(--white);
  font-size: .66rem;
  font-weight: 620;
}

.answer-list b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  color: #8795a7;
  background: #f0f3f7;
  font-size: .63rem;
}

.answer-list .selected {
  color: #075f9d;
  border-color: #2caeea;
  background: #effaff;
  box-shadow: 0 0 0 2px rgba(25, 172, 235, .08);
}

.answer-list .selected b {
  color: var(--white);
  background: #129edc;
}

.phone-result {
  position: relative;
  margin-top: 18px;
  padding: 14px 15px;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(130deg, #07336d, #075e9b);
  box-shadow: 0 12px 24px rgba(5, 47, 99, .22);
}

.phone-result span {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .55rem;
  font-weight: 650;
  text-transform: uppercase;
}

.phone-result strong {
  display: inline-block;
  margin-top: 1px;
  font-size: 1.55rem;
  line-height: 1;
}

.phone-result em {
  position: absolute;
  right: 14px;
  bottom: 16px;
  padding: 4px 8px;
  border-radius: 7px;
  color: #c8f4ff;
  background: rgba(21, 192, 239, .17);
  font-size: .57rem;
  font-style: normal;
  font-weight: 650;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  color: var(--white);
  background: rgba(9, 40, 83, .86);
  box-shadow: 0 20px 42px rgba(0, 8, 27, .32);
  backdrop-filter: blur(14px);
}

.floating-result {
  top: 195px;
  right: -38px;
  gap: 10px;
  animation: hover 5s ease-in-out infinite;
}

.floating-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
}

.floating-icon.cyan {
  color: #6be2ff;
  background: rgba(20, 193, 240, .16);
}

.floating-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.floating-card div:not(.floating-icon) {
  display: grid;
}

.floating-card span {
  color: rgba(255,255,255,.56);
  font-size: .57rem;
}

.floating-card strong {
  font-size: .75rem;
}

.mini-trend {
  width: 64px;
  margin-left: 8px;
  fill: none;
  stroke: #26cef8;
  stroke-width: 2;
}

.floating-offline {
  bottom: 112px;
  left: -55px;
  gap: 10px;
  animation: hover 5s 1.2s ease-in-out infinite;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #37d6a1;
  box-shadow: 0 0 0 6px rgba(55, 214, 161, .14);
}

.floating-offline strong {
  font-size: .7rem;
}

.floating-offline span:not(.pulse-dot) {
  font-size: .53rem;
}

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

.proof-strip {
  color: var(--white);
  background: #071b3e;
  border-top: 1px solid rgba(255,255,255,.07);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  padding: 25px 25px 27px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.proof-grid div:first-child {
  padding-left: 0;
}

.proof-grid div:last-child {
  border-right: 0;
}

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

.proof-grid strong {
  font-size: .8rem;
}

.proof-grid span {
  margin-top: 2px;
  color: rgba(255,255,255,.48);
  font-size: .69rem;
}

.section {
  padding: 112px 0;
}

.features-section {
  background: #f7f9fc;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.05fr .68fr;
  align-items: end;
  column-gap: 120px;
  margin-bottom: 56px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.workflow-header h2,
.privacy-copy h2,
.download-copy h2 {
  margin: 16px 0 0;
  color: var(--navy-950);
  font-size: clamp(2.45rem, 4vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -.052em;
}

.section-heading p,
.workflow-header > p {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.feature-card {
  position: relative;
  min-height: 445px;
  overflow: hidden;
  padding: 36px;
  border: 1px solid #dfe7f0;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 35, 77, .035);
}

.feature-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 80px;
  min-height: 420px;
  padding: 46px 52px;
}

.feature-number {
  color: #8d9aac;
  font-size: .68rem;
  font-weight: 780;
  letter-spacing: .12em;
}

.feature-card h3 {
  margin: 22px 0 12px;
  color: var(--navy-950);
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  line-height: 1.14;
  letter-spacing: -.035em;
}

.feature-card p {
  max-width: 500px;
  margin: 0;
  color: #5b687c;
  font-size: .95rem;
  line-height: 1.7;
}

.feature-card-dark {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 80% 80%, rgba(10, 147, 234, .25), transparent 40%),
    linear-gradient(145deg, #041a3f, #06295d);
}

.feature-card-dark .feature-number {
  color: #6e93be;
}

.feature-card-dark h3 {
  color: var(--white);
}

.feature-card-dark p {
  color: rgba(230, 239, 251, .66);
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-top: 38px;
  place-items: center;
  border-radius: 16px;
  color: #69dfff;
  background: rgba(22, 184, 239, .12);
}

.feature-icon.pale {
  color: #0988d0;
  background: #e9f8ff;
}

.feature-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.specialty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.specialty-chips span {
  padding: 7px 11px;
  border: 1px solid #dae5ef;
  border-radius: 999px;
  color: #536177;
  background: #f9fbfd;
  font-size: .68rem;
  font-weight: 650;
}

.search-demo {
  padding: 22px;
  border: 1px solid #dce6f0;
  border-radius: 22px;
  background: #f7f9fc;
  box-shadow: 0 22px 42px rgba(7, 35, 77, .09);
}

.search-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid #dfe7ef;
  border-radius: 12px;
  color: #97a2b2;
  background: var(--white);
  font-size: .74rem;
}

.search-input svg {
  width: 17px;
  fill: none;
  stroke: #7c8a9e;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.search-input kbd {
  margin-left: auto;
  padding: 2px 6px;
  border: 1px solid #dce4ed;
  border-radius: 5px;
  color: #7d8999;
  background: #f4f6f9;
  font-family: inherit;
  font-size: .58rem;
}

.search-result {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
  padding: 13px 12px;
  border: 1px solid transparent;
  border-radius: 13px;
}

.search-result.active {
  border-color: #d9e5ef;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(7, 35, 77, .05);
}

.result-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
}

.result-icon.blue {
  color: #098dd8;
  background: #e5f7ff;
}

.result-icon.violet {
  color: #7564d8;
  background: #eeebff;
}

.result-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.search-result strong,
.search-result small {
  display: block;
}

.search-result strong {
  color: #273750;
  font-size: .75rem;
}

.search-result small {
  color: #8b97a8;
  font-size: .6rem;
}

.search-result .chevron {
  width: 15px;
  fill: none;
  stroke: #9eabba;
  stroke-width: 1.6;
}

.severity-meter {
  position: absolute;
  right: 36px;
  bottom: 35px;
  left: 36px;
}

.severity-meter > div {
  display: grid;
  grid-template-columns: 1.2fr 1fr .8fr .5fr;
  gap: 4px;
}

.severity-meter > div span {
  height: 6px;
  border-radius: 4px;
  background: #25cbca;
}

.severity-meter > div span:nth-child(2) {
  background: #48d891;
}

.severity-meter > div span:nth-child(3) {
  background: #f0bd55;
}

.severity-meter > div span:nth-child(4) {
  background: #f07070;
}

.severity-meter small {
  display: inline-block;
  margin-top: 10px;
  margin-right: 25%;
  color: rgba(255,255,255,.42);
  font-size: .55rem;
}

.severity-meter small:last-child {
  margin-right: 0;
}

.chart-demo {
  position: absolute;
  right: 36px;
  bottom: 32px;
  left: 36px;
  height: 135px;
}

.chart-lines {
  position: absolute;
  inset: 4px 0 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-lines span {
  height: 1px;
  background: #e6ebf1;
}

.chart-demo > svg {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: visible;
}

.chart-area {
  fill: url("#none");
  fill: rgba(14, 164, 229, .08);
}

.chart-line {
  fill: none;
  stroke: #0ba4e5;
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}

.chart-demo circle {
  fill: var(--white);
  stroke: #0ba4e5;
  stroke-width: 2;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #9aa5b4;
  font-size: .55rem;
}

.export-row {
  position: absolute;
  right: 36px;
  bottom: 38px;
  left: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.export-row span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid #dfe7ef;
  border-radius: 12px;
  color: #44536a;
  background: #fafbfd;
  font-size: .7rem;
  font-weight: 650;
}

.export-row svg {
  width: 20px;
  fill: none;
  stroke: #0b95d7;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.privacy-card {
  background: linear-gradient(110deg, #f1fbff 0%, #fff 72%);
}

.privacy-visual {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
}

.shield-ring {
  position: absolute;
  border: 1px solid rgba(15, 160, 220, .15);
  border-radius: 50%;
}

.ring-one {
  width: 230px;
  height: 230px;
}

.ring-two {
  width: 170px;
  height: 170px;
  background: rgba(24, 189, 238, .05);
}

.shield-core {
  position: relative;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(145deg, #09a7e8, #0875c8);
  box-shadow: 0 24px 46px rgba(7, 134, 201, .25);
}

.shield-core svg {
  width: 51px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.inline-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  color: #087bc5;
  font-size: .84rem;
  font-weight: 720;
}

.inline-link span {
  transition: transform .2s ease;
}

.inline-link:hover span {
  transform: translateX(4px);
}

.workflow {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 110%, rgba(9, 152, 230, .24), transparent 35%),
    var(--navy-950);
}

.workflow::after {
  content: "";
  position: absolute;
  right: -200px;
  bottom: -400px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(50, 193, 246, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(20, 154, 220, .025), 0 0 0 180px rgba(20, 154, 220, .015);
}

.workflow .container {
  position: relative;
  z-index: 2;
}

.workflow-header {
  display: grid;
  grid-template-columns: 1fr .55fr;
  align-items: end;
  gap: 100px;
}

.workflow-header h2 {
  color: var(--white);
}

.workflow-header > p {
  color: rgba(229, 239, 252, .58);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.12);
}

.steps li {
  position: relative;
  min-height: 290px;
  padding: 38px 40px 0 0;
  border-right: 1px solid rgba(255,255,255,.1);
}

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

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

.step-index {
  position: absolute;
  top: -14px;
  left: 0;
  padding-right: 12px;
  color: #62cff3;
  background: var(--navy-950);
  font-size: .66rem;
  font-weight: 760;
  letter-spacing: .12em;
}

.steps li + li .step-index {
  left: 40px;
  padding-left: 0;
}

.step-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border: 1px solid rgba(60, 196, 242, .2);
  border-radius: 17px;
  color: #5edbff;
  background: rgba(11, 140, 205, .1);
}

.step-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.steps h3 {
  margin: 27px 0 8px;
  font-size: 1.5rem;
  letter-spacing: -.03em;
}

.steps p {
  max-width: 285px;
  margin: 0;
  color: rgba(229, 239, 252, .56);
  font-size: .88rem;
}

.privacy-section {
  background: var(--white);
}

.privacy-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 96px;
}

.privacy-copy > p {
  max-width: 510px;
  margin: 24px 0 0;
  color: var(--text);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #384961;
  font-size: .86rem;
  font-weight: 620;
}

.check-list li > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #087fc8;
  background: #e7f7fd;
}

.check-list svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-outline {
  display: inline-flex;
  padding: 12px 18px;
  border: 1px solid #b9c8d9;
  border-radius: 10px;
  color: #27415f;
  font-size: .8rem;
  font-weight: 720;
  transition: border .2s ease, background .2s ease;
}

.button-outline:hover {
  border-color: #87a8c6;
  background: #f5f9fc;
}

.privacy-panel {
  overflow: hidden;
  border: 1px solid #dce6ef;
  border-radius: 24px;
  background: #f8fafc;
  box-shadow: 0 26px 65px rgba(7, 33, 70, .1);
}

.privacy-panel-top {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 24px;
  border-bottom: 1px solid #dfe7ef;
  background: var(--white);
}

.privacy-panel-top img {
  width: 45px;
  height: 45px;
  border-radius: 11px;
}

.privacy-panel-top > span:not(.local-badge) {
  display: grid;
}

.privacy-panel-top strong {
  font-size: .8rem;
}

.privacy-panel-top small {
  color: #8794a6;
  font-size: .6rem;
}

.local-badge {
  margin-left: auto;
  padding: 5px 9px;
  border-radius: 99px;
  color: #087e87;
  background: #e0f9f5;
  font-size: .56rem;
  font-weight: 760;
  text-transform: uppercase;
}

.data-flow {
  display: grid;
  grid-template-columns: 1fr 58px 1fr 58px 1fr;
  align-items: center;
  padding: 44px 28px;
}

.data-node {
  display: grid;
  justify-items: center;
  text-align: center;
}

.data-node > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 16px;
  color: #108dd0;
  background: #e6f7fd;
}

.data-node svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.data-node strong {
  font-size: .7rem;
}

.data-node small {
  color: #8d99aa;
  font-size: .55rem;
}

.device-node > span {
  color: var(--white);
  background: linear-gradient(145deg, #098ed4, #075f9d);
  box-shadow: 0 12px 24px rgba(8, 126, 190, .22);
}

.muted-node {
  opacity: .48;
}

.flow-line {
  position: relative;
  height: 1px;
  background: #9dd9eb;
}

.flow-line::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border-top: 1px solid #52badb;
  border-right: 1px solid #52badb;
}

.flow-line span {
  position: absolute;
  top: -2px;
  left: 10%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2ab7df;
  animation: flow 2s linear infinite;
}

@keyframes flow {
  from { left: 8%; }
  to { left: 85%; }
}

.flow-stop {
  position: relative;
  height: 1px;
  background: repeating-linear-gradient(90deg, #c8d1db 0 4px, transparent 4px 8px);
}

.flow-stop span {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 3px;
  height: 20px;
  transform: rotate(45deg);
  background: #f07474;
  box-shadow: 0 0 0 4px #f8fafc;
}

.privacy-panel-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 24px 22px;
  padding: 13px 15px;
  border: 1px solid #d9e7ee;
  border-radius: 12px;
  color: #5e6c7e;
  background: #eef8fb;
  font-size: .63rem;
}

.privacy-panel-note svg {
  flex: 0 0 auto;
  width: 23px;
  fill: none;
  stroke: #0b91cd;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.privacy-panel-note strong {
  display: block;
  color: #21465d;
  font-size: .68rem;
}

.disclaimer {
  border-top: 1px solid #dfe6ee;
  border-bottom: 1px solid #dfe6ee;
  background: #f7f9fc;
}

.disclaimer-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 25px;
}

.disclaimer-inner > svg {
  flex: 0 0 auto;
  width: 29px;
  fill: none;
  stroke: #be7b18;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.disclaimer strong {
  color: #39485d;
  font-size: .81rem;
}

.disclaimer p {
  margin: 2px 0 0;
  color: #778396;
  font-size: .72rem;
}

.download-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, #061a3b, #062b5e);
}

.download-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 22px 22px;
}

.download-glow {
  position: absolute;
  top: -200px;
  right: 5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(17, 191, 242, .09);
  filter: blur(20px);
}

.download-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 100px;
}

.download-icon {
  margin-bottom: 30px;
  border-radius: 23px;
  box-shadow: 0 18px 36px rgba(0,0,0,.28);
}

.download-copy h2 {
  color: var(--white);
}

.download-copy p {
  max-width: 590px;
  margin: 22px 0 30px;
  color: rgba(231, 240, 252, .64);
  font-size: 1rem;
}

.qr-card {
  display: grid;
  min-width: 255px;
  justify-items: center;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.075);
  box-shadow: 0 24px 50px rgba(0, 8, 25, .22);
  backdrop-filter: blur(14px);
}

.qr-frame {
  display: grid;
  padding: 24px;
  place-items: center;
  border-radius: 14px;
  background: var(--white);
}

.qr-frame img {
  width: 186px;
  height: 186px;
  image-rendering: pixelated;
}

.qr-card strong {
  margin-top: 17px;
  font-size: .86rem;
}

.qr-card > span {
  margin-top: 2px;
  color: rgba(255,255,255,.5);
  font-size: .64rem;
}

.site-footer {
  color: rgba(255,255,255,.7);
  background: #020f26;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 100px;
  padding-top: 64px;
  padding-bottom: 56px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.43);
  font-size: .8rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 160px);
  gap: 42px;
}

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

.footer-links strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: .7rem;
  letter-spacing: .04em;
}

.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  transition: color .2s ease;
}

.footer-links a:hover,
.legal-footer a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.34);
  font-size: .66rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* Privacy policy */
.legal-page {
  background: #f7f9fc;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 74px;
  color: var(--white);
  background: linear-gradient(125deg, #031534, #062a5f);
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .045;
  background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 64px 64px;
}

.legal-orb {
  position: absolute;
  right: -180px;
  bottom: -360px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(36, 195, 244, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(30, 175, 234, .03), 0 0 0 160px rgba(30, 175, 234, .02);
}

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

.legal-hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.legal-hero p {
  max-width: 590px;
  margin: 0;
  color: rgba(233, 242, 255, .67);
  font-size: 1.05rem;
}

.updated {
  display: block;
  margin-top: 25px;
  color: rgba(255,255,255,.43);
  font-size: .7rem;
  font-weight: 650;
}

.legal-content-section {
  padding: 72px 0 100px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: 72px;
}

.legal-toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  padding: 6px 0 6px 20px;
  border-left: 1px solid #cfdae5;
}

.legal-toc strong {
  margin-bottom: 5px;
  color: #233650;
  font-size: .76rem;
}

.legal-toc a {
  color: #768397;
  font-size: .7rem;
  transition: color .2s ease, transform .2s ease;
}

.legal-toc a:hover {
  color: #087bc5;
  transform: translateX(3px);
}

.legal-article {
  padding: 48px 56px;
  border: 1px solid #e0e7ef;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(7, 34, 73, .055);
}

.legal-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-bottom: 50px;
  padding: 22px;
  border: 1px solid #cce6ef;
  border-radius: 16px;
  background: #effafe;
  scroll-margin-top: 110px;
}

.summary-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #078dcf;
  background: #d9f3fc;
}

.summary-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.legal-summary h2 {
  margin: 0 0 5px;
  font-size: 1.1rem;
}

.legal-summary p {
  margin: 0;
  color: #526376;
  font-size: .82rem;
  line-height: 1.65;
}

.legal-article section {
  margin-top: 48px;
  scroll-margin-top: 110px;
}

.legal-article section:first-of-type {
  margin-top: 0;
}

.legal-article h2 {
  margin: 0 0 18px;
  color: #132943;
  font-size: 1.38rem;
  letter-spacing: -.025em;
}

.legal-article h3 {
  margin: 26px 0 7px;
  color: #2a4059;
  font-size: .95rem;
}

.legal-article p,
.legal-article li {
  color: #5c687a;
  font-size: .88rem;
  line-height: 1.78;
}

.legal-article p {
  margin: 0 0 14px;
}

.legal-article ul {
  margin: 12px 0 18px;
  padding-left: 22px;
}

.legal-article li {
  margin-bottom: 7px;
  padding-left: 4px;
}

.legal-article a:not(.contact-email) {
  color: #087bc5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section {
  padding-top: 38px;
  border-top: 1px solid #e1e7ee;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 5px;
  padding: 11px 15px;
  border-radius: 10px;
  color: #075b92;
  background: #ebf7fc;
  font-size: .82rem;
  font-weight: 700;
}

.contact-email svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.legal-footer .footer-bottom {
  border-top: 0;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 35px;
  }

  .phone {
    width: 295px;
    height: 615px;
  }

  .floating-result {
    right: -5px;
  }

  .floating-offline {
    left: -8px;
  }

  .section-heading {
    column-gap: 60px;
  }

  .privacy-layout {
    gap: 48px;
  }

  .data-flow {
    grid-template-columns: 1fr 35px 1fr 35px 1fr;
    padding-inline: 18px;
  }
}

@media (max-width: 880px) {
  .desktop-only {
    display: none !important;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    display: block;
    padding-top: 120px;
  }

  .hero-copy {
    max-width: 670px;
    margin: 0 auto;
    padding: 35px 0 45px;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero h1 {
    margin-inline: auto;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 660px;
    max-width: 540px;
    margin: 0 auto;
  }

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

  .proof-grid div {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .proof-grid div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid div:nth-child(3),
  .proof-grid div:nth-child(4) {
    border-bottom: 0;
  }

  .proof-grid div:nth-child(3) {
    padding-left: 0;
  }

  .section-heading,
  .workflow-header {
    display: block;
  }

  .section-heading p,
  .workflow-header > p {
    max-width: 580px;
    margin-top: 22px;
  }

  .feature-card-wide {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .privacy-card {
    grid-template-columns: .75fr 1.25fr;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

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

  .download-layout {
    display: block;
  }

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

  .legal-layout {
    display: block;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid #dce4ed;
    border-radius: 14px;
    background: var(--white);
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    height: 70px;
    background: rgba(3, 21, 52, .94);
    border-bottom-color: rgba(255,255,255,.08);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 69px;
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 18px 16px 26px;
    transform: translateY(-130%);
    color: var(--white);
    background: #031534;
    border-bottom: 1px solid rgba(255,255,255,.1);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 12px 8px;
  }

  .site-nav .nav-contact {
    margin-top: 5px;
    text-align: center;
  }

  .legal-nav {
    gap: 14px;
  }

  .legal-nav a {
    font-size: .75rem;
  }

  .legal-nav .nav-contact {
    display: none;
  }

  .hero-grid {
    padding-top: 90px;
  }

  .hero-copy {
    padding-top: 30px;
  }

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

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

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .trust-row {
    gap: 10px 18px;
  }

  .hero-visual {
    min-height: 610px;
  }

  .phone {
    top: 10px;
    width: 278px;
    height: 580px;
  }

  .phone-screen {
    padding-inline: 14px;
  }

  .floating-card {
    transform: scale(.9);
  }

  .floating-result {
    top: 200px;
    right: -20px;
  }

  .floating-offline {
    bottom: 90px;
    left: -20px;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .workflow-header h2,
  .privacy-copy h2,
  .download-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

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

  .feature-card,
  .feature-card-wide,
  .privacy-card {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 420px;
    padding: 30px;
  }

  .feature-card-wide {
    gap: 34px;
  }

  .privacy-card {
    min-height: auto;
  }

  .privacy-visual {
    min-height: 230px;
  }

  .search-demo {
    padding: 15px;
  }

  .steps {
    grid-template-columns: 1fr;
    margin-top: 55px;
    border-top: 0;
  }

  .steps li,
  .steps li + li {
    min-height: auto;
    padding: 28px 0 38px 75px;
    border-top: 1px solid rgba(255,255,255,.11);
    border-right: 0;
  }

  .steps li + li .step-index,
  .step-index {
    top: -12px;
    left: 0;
  }

  .step-icon {
    position: absolute;
    top: 28px;
    left: 0;
  }

  .steps h3 {
    margin-top: 0;
  }

  .data-flow {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .flow-line {
    width: 1px;
    height: 30px;
    margin: 0 auto;
    background: #9dd9eb;
  }

  .flow-line::after {
    top: auto;
    right: -3px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .flow-line span {
    display: none;
  }

  .flow-stop {
    width: 1px;
    height: 30px;
    margin: 0 auto;
    background: repeating-linear-gradient(0deg, #c8d1db 0 4px, transparent 4px 8px);
  }

  .flow-stop span {
    top: 5px;
    left: -1px;
  }

  .disclaimer-inner {
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-bottom {
    display: grid;
    gap: 5px;
  }

  .legal-hero {
    padding: 126px 0 60px;
  }

  .legal-hero h1 {
    font-size: 3rem;
  }

  .legal-content-section {
    padding: 38px 0 72px;
  }

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

  .legal-article {
    padding: 30px 24px;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.2rem);
  }

  .hero-visual {
    left: 50%;
    width: 390px;
    transform: translateX(-50%);
  }

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

  .proof-grid div,
  .proof-grid div:first-child,
  .proof-grid div:nth-child(3) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .feature-card {
    border-radius: 22px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
