:root {
  --navy-950: #031025;
  --navy-900: #07162f;
  --navy-850: #0a1b39;
  --navy-800: #10264a;
  --ink: #10213f;
  --muted: #5f6e86;
  --line: #dce6f3;
  --surface: #f5f8fe;
  --white: #ffffff;
  --blue: #2767f5;
  --blue-bright: #3a85ff;
  --cyan: #27c4ef;
  --violet: #7b4dff;
  --pink: #e955c8;
  --amber: #ffb82e;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow-soft: 0 24px 70px rgba(21, 55, 111, 0.13);
  --shadow-deep: 0 34px 90px rgba(0, 9, 31, 0.34);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--navy-950);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.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;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.section-dark {
  color: var(--white);
  background: var(--navy-950);
}

.section-light {
  color: var(--ink);
  background: var(--surface);
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  padding: 16px 0;
  transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(3, 16, 37, 0.84);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1240px, calc(100% - 40px));
  min-height: 56px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(26, 111, 246, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 620;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan));
  transition: right 0.2s ease;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  color: var(--white);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

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

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

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 880px;
  padding: 154px 0 52px;
  background:
    radial-gradient(circle at 74% 36%, rgba(40, 128, 255, 0.22), transparent 28%),
    radial-gradient(circle at 88% 63%, rgba(126, 60, 255, 0.19), transparent 24%),
    linear-gradient(145deg, #020b1d 0%, #07162f 52%, #0c1d42 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 84%);
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-glow-one {
  top: 15%;
  right: -180px;
  background: var(--violet);
}

.hero-glow-two {
  bottom: 4%;
  left: -220px;
  background: var(--blue);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-bottom: 28px;
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 28px;
  color: #a9c9ff;
  background: rgba(53, 122, 255, 0.1);
  border: 1px solid rgba(78, 148, 255, 0.2);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: #6ae8bd;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(106, 232, 189, 0.1);
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 820;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(105deg, #fff 8%, #75c9ff 50%, #9f86ff 96%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 630px;
  margin: 30px 0 0;
  color: rgba(227, 237, 255, 0.72);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #2f83ff, #3459ec 58%, #714fe8);
  box-shadow: 0 14px 34px rgba(46, 107, 245, 0.28), inset 0 1px rgba(255, 255, 255, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 40px rgba(46, 107, 245, 0.38), inset 0 1px rgba(255, 255, 255, 0.22);
}

.button-secondary {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 35px;
  color: rgba(215, 230, 255, 0.65);
  font-size: 12px;
  font-weight: 620;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust svg {
  width: 18px;
  height: 18px;
  color: #75a8ff;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.phone-frame {
  position: relative;
  overflow: hidden;
  padding: 9px;
  background: linear-gradient(150deg, #fdfefe, #bfd0f3 46%, #ffffff 68%, #7595ce);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50px;
  box-shadow: var(--shadow-deep), inset 0 0 0 2px rgba(255, 255, 255, 0.36);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 42px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 50%;
  width: 58px;
  height: 5px;
  background: rgba(22, 35, 60, 0.75);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-phone {
  z-index: 2;
  width: 318px;
  height: 565px;
  transform: rotateY(-8deg) rotateX(2deg) rotateZ(2deg);
  transition: transform 0.35s ease;
}

.hero-visual:hover .hero-phone {
  transform: rotateY(-3deg) rotateX(0) rotateZ(1deg) translateY(-4px);
}

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 165px;
  padding: 11px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 17px;
  box-shadow: 0 18px 50px rgba(1, 15, 44, 0.26);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: float-chip 5s ease-in-out infinite;
}

.floating-chip b,
.floating-chip small {
  display: block;
  white-space: nowrap;
}

.floating-chip b {
  font-size: 11px;
  line-height: 1.4;
}

.floating-chip small {
  color: #8a98ad;
  font-size: 9px;
}

.chip-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-bright), var(--violet));
  border-radius: 11px;
  font-weight: 800;
}

.chip-qr {
  top: 22%;
  left: 0;
}

.chip-doc {
  right: -15px;
  bottom: 20%;
  animation-delay: -2.5s;
}

.hero-icon-card {
  position: absolute;
  z-index: 5;
  right: 4%;
  top: 12%;
  padding: 9px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 27px;
  box-shadow: 0 18px 40px rgba(0, 12, 38, 0.28);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transform: rotate(7deg);
}

.hero-icon-card img {
  border-radius: 20px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(102, 158, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 510px;
  height: 510px;
}

.orbit-two {
  width: 390px;
  height: 390px;
  border-style: dashed;
  animation: slow-spin 28s linear infinite;
}

.hero-foot {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 42px;
  color: rgba(213, 227, 250, 0.47);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-foot i {
  width: 3px;
  height: 3px;
  background: #5f85bd;
  border-radius: 50%;
}

.feature-intro {
  padding: 128px 0 120px;
  background:
    radial-gradient(circle at 5% 20%, rgba(55, 129, 255, 0.09), transparent 24%),
    #f6f9ff;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading h2,
.demo-copy h2,
.privacy-copy h2,
.faq-intro h2,
.closing-card h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.section-heading > p:last-child,
.demo-copy > p,
.faq-intro > p,
.closing-card p {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  min-height: 290px;
  padding: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(201, 215, 235, 0.75);
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(34, 67, 121, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 132, 230, 0.34);
  box-shadow: 0 26px 70px rgba(34, 67, 121, 0.12);
}

.feature-card-large {
  grid-column: 1 / -1;
  min-height: 355px;
  display: grid;
  grid-template-columns: 78px minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(92, 170, 255, 0.25), transparent 32%),
    linear-gradient(135deg, #0c2f78 0%, #1455c6 52%, #4d3cc4 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(24, 70, 156, 0.24);
}

.feature-card h3 {
  margin: 22px 0 10px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.feature-card-large h3 {
  margin: 4px 0 12px;
  font-size: clamp(32px, 4vw, 50px);
}

.feature-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-card-large p:not(.card-label) {
  color: rgba(233, 242, 255, 0.74);
}

.card-label {
  color: #8fc4ff !important;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 19px;
}

.feature-icon svg {
  width: 29px;
  height: 29px;
}

.icon-blue {
  color: #eaf3ff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.icon-violet { color: #7556e8; background: #f0ecff; }
.icon-cyan { color: #138db8; background: #e6f8ff; }
.icon-amber { color: #c78000; background: #fff5d9; }
.icon-pink { color: #bf3e9e; background: #ffecfa; }

.code-art {
  position: relative;
  min-height: 250px;
  border-radius: 24px;
  background: rgba(5, 24, 70, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.mini-qr,
.large-qr {
  background-color: #f9fbff;
  background-image:
    linear-gradient(90deg, #102c68 25%, transparent 25% 50%, #102c68 50% 75%, transparent 75%),
    linear-gradient(#102c68 25%, transparent 25% 50%, #102c68 50% 75%, transparent 75%);
  background-size: 22px 22px;
}

.mini-qr {
  position: absolute;
  top: 36px;
  right: 46px;
  width: 112px;
  height: 112px;
  padding: 9px;
  border: 9px solid #fff;
  border-radius: 13px;
  box-shadow: 0 18px 35px rgba(0, 8, 35, 0.28);
  transform: rotate(5deg);
}

.mini-bars,
.large-bars {
  background: repeating-linear-gradient(90deg, #102c68 0 3px, transparent 3px 6px, #102c68 6px 8px, transparent 8px 12px);
}

.mini-bars {
  position: absolute;
  left: 40px;
  bottom: 35px;
  width: 188px;
  height: 76px;
  padding: 8px;
  background-color: #fff;
  border: 12px solid #fff;
  border-radius: 12px;
  box-shadow: 0 18px 35px rgba(0, 8, 35, 0.24);
  transform: rotate(-4deg);
}

.scan-beam {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  height: 2px;
  background: #43f0dc;
  box-shadow: 0 0 14px #43f0dc;
  animation: scan-small 3s ease-in-out infinite;
}

.demo-section {
  position: relative;
  padding: 128px 0;
  background:
    radial-gradient(circle at 16% 55%, rgba(44, 111, 255, 0.22), transparent 33%),
    radial-gradient(circle at 86% 20%, rgba(119, 68, 244, 0.16), transparent 30%),
    #06142d;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(540px, 1fr);
  align-items: center;
  gap: 90px;
}

.kicker-light {
  color: #80b5ff;
}

.demo-copy > p {
  color: rgba(220, 233, 255, 0.68);
}

.demo-points {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.demo-points span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(228, 238, 255, 0.74);
  font-size: 14px;
}

.demo-points b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #8fc5ff;
  background: rgba(72, 133, 255, 0.12);
  border: 1px solid rgba(93, 154, 255, 0.18);
  border-radius: 10px;
  font-size: 10px;
}

.scanner-demo {
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 7, 25, 0.35);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.demo-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px;
  margin-bottom: 14px;
  background: rgba(2, 11, 30, 0.52);
  border-radius: 18px;
}

.demo-tabs button {
  padding: 11px 12px;
  color: rgba(221, 233, 255, 0.58);
  background: transparent;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 720;
  transition: color 0.2s ease, background 0.2s ease;
}

.demo-tabs button[aria-selected="true"] {
  color: var(--white);
  background: linear-gradient(135deg, rgba(58, 133, 255, 0.9), rgba(92, 72, 228, 0.9));
  box-shadow: 0 8px 22px rgba(44, 95, 220, 0.25);
}

.demo-screen {
  overflow: hidden;
  background: #020816;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
}

.demo-camera {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(37, 80, 140, 0.28), transparent 43%),
    linear-gradient(140deg, #0c1830, #020814);
}

.demo-camera::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.demo-object {
  position: relative;
  z-index: 2;
  display: none;
  place-items: center;
  width: 210px;
  height: 210px;
}

.scanner-demo[data-active="qr"] .demo-object-qr,
.scanner-demo[data-active="barcode"] .demo-object-barcode,
.scanner-demo[data-active="document"] .demo-object-document {
  display: grid;
}

.scanner-demo:not([data-active]) .demo-object-qr {
  display: grid;
}

.large-qr {
  width: 132px;
  height: 132px;
  border: 14px solid #fff;
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.demo-object-barcode {
  width: 250px;
  height: 150px;
  color: #12203b;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.demo-object-barcode .large-bars {
  width: 180px;
  height: 72px;
}

.demo-object-barcode small {
  margin-top: 8px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.doc-sheet {
  width: 145px;
  height: 190px;
  padding: 24px 20px;
  color: #152443;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
  transform: rotate(-3deg);
}

.doc-sheet b {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.doc-sheet i {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 15px;
  background: #dce4f2;
  border-radius: 5px;
}

.doc-sheet i:nth-child(3) { width: 78%; }
.doc-sheet i:nth-child(4) { width: 92%; }
.doc-sheet i:nth-child(5) { width: 64%; }

.focus-corners {
  position: absolute;
  z-index: 4;
  width: 245px;
  height: 245px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow:
    -14px -14px 0 -11px #fff,
    14px -14px 0 -11px #fff,
    -14px 14px 0 -11px #fff,
    14px 14px 0 -11px #fff;
}

.demo-scan-line {
  position: absolute;
  z-index: 5;
  left: calc(50% - 116px);
  top: 26%;
  width: 232px;
  height: 2px;
  opacity: 0;
  background: #35eadb;
  box-shadow: 0 0 14px 3px rgba(53, 234, 219, 0.66);
}

.scanner-demo.is-scanning .demo-scan-line {
  opacity: 1;
  animation: demo-scan 1.4s ease-in-out infinite;
}

.demo-status {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  bottom: 26px;
  margin: 0;
  color: rgba(233, 242, 255, 0.62);
  font-size: 12px;
  text-align: center;
}

.demo-result {
  align-items: center;
  gap: 13px;
  padding: 16px 20px;
  color: var(--ink);
  background: #f4f8ff;
  border-top: 1px solid #dce7f8;
}

.demo-result:not([hidden]) {
  display: flex;
}

.result-check {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #167b5c;
  background: #dff8ef;
  border-radius: 13px;
}

.result-check svg {
  width: 22px;
  height: 22px;
}

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

.demo-result small {
  color: #7d8ba3;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-result strong {
  margin-top: 2px;
  font-size: 13px;
}

.demo-trigger {
  width: 100%;
  min-height: 54px;
  color: var(--white);
  background: linear-gradient(135deg, #2e81ff, #4d50db);
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
  transition: filter 0.2s ease;
}

.demo-trigger:hover,
.demo-trigger:focus-visible {
  filter: brightness(1.1);
}

.demo-trigger:disabled {
  cursor: wait;
  opacity: 0.7;
}

.experience {
  padding: 132px 0;
  background: #f6f9ff;
}

.section-heading-row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: 80px;
  text-align: left;
}

.section-heading-row > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(420px, 1fr) 112px;
  align-items: center;
  gap: 52px;
  min-height: 720px;
  padding: 52px;
  background:
    radial-gradient(circle at 66% 22%, rgba(61, 133, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #eaf2ff, #fff 54%, #f2edff);
  border: 1px solid #d8e5f5;
  border-radius: 38px;
  box-shadow: var(--shadow-soft);
}

.showcase-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 50px;
}

.showcase-count span {
  color: var(--blue);
  font-size: 48px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: -0.05em;
}

.showcase-count em {
  color: #a2afc2;
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
}

.showcase-kicker {
  margin: 0 0 10px;
  color: #7789a5;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.17em;
}

.showcase-copy h3 {
  margin: 0;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.showcase-copy > p:last-of-type {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.showcase-controls {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.round-button,
.zoom-button {
  display: grid;
  place-items: center;
  border: 1px solid #d4e0f1;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(43, 71, 118, 0.08);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.round-button {
  width: 46px;
  height: 46px;
}

.round-button svg,
.zoom-button svg {
  width: 19px;
  height: 19px;
}

.round-button:hover,
.round-button:focus-visible,
.zoom-button:hover,
.zoom-button:focus-visible {
  color: var(--blue);
  background: #fff;
  border-color: #abc7f4;
  transform: translateY(-2px);
}

.showcase-stage {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  outline: none;
}

.showcase-stage::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: linear-gradient(145deg, rgba(54, 142, 255, 0.22), rgba(123, 77, 255, 0.17));
  border-radius: 50%;
  filter: blur(4px);
}

.showcase-stage:focus-visible::before {
  outline: 3px solid rgba(42, 105, 245, 0.45);
  outline-offset: 8px;
}

.showcase-phone {
  z-index: 2;
  width: 330px;
  height: 586px;
  transition: opacity 0.18s ease, transform 0.28s ease;
}

.showcase-phone.is-changing {
  opacity: 0;
  transform: translateX(14px) scale(0.98);
}

.zoom-button {
  position: absolute;
  z-index: 5;
  right: 5%;
  bottom: 9%;
  width: 48px;
  height: 48px;
}

.showcase-thumbs {
  display: grid;
  gap: 12px;
}

.thumb {
  position: relative;
  width: 86px;
  height: 116px;
  padding: 4px;
  overflow: hidden;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(38, 62, 105, 0.08);
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
}

.thumb:hover,
.thumb:focus-visible,
.thumb.is-active {
  opacity: 1;
  transform: translateX(-4px);
  border-color: var(--blue);
}

.lightbox {
  width: min(92vw, 760px);
  max-height: 92vh;
  padding: 24px;
  overflow: hidden;
  color: var(--white);
  background: rgba(6, 15, 34, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.lightbox::backdrop {
  background: rgba(0, 5, 20, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: calc(92vh - 100px);
  margin: 0 auto;
  border-radius: 18px;
}

.lightbox p {
  margin: 12px 44px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.privacy-section {
  position: relative;
  overflow: hidden;
  padding: 136px 0;
  color: var(--white);
  background: #07172f;
}

.privacy-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 17% 49%, rgba(42, 126, 255, 0.28), transparent 27%),
    radial-gradient(circle at 88% 14%, rgba(119, 71, 235, 0.19), transparent 28%),
    linear-gradient(150deg, #051127, #0b1f41);
}

.privacy-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(rgba(255, 255, 255, 0.38) 0.6px, transparent 0.6px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, black, transparent 70%);
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.privacy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: 90px;
}

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

.privacy-shield {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  color: #dbeaff;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(59, 142, 255, 0.78), rgba(86, 65, 220, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 55px;
  box-shadow: 0 36px 90px rgba(0, 9, 32, 0.4), inset 0 1px rgba(255, 255, 255, 0.28);
  transform: rotate(-4deg);
}

.privacy-shield svg {
  width: 90px;
  height: 90px;
  stroke-width: 1.35;
}

.privacy-ring {
  position: absolute;
  border: 1px solid rgba(99, 154, 255, 0.18);
  border-radius: 50%;
}

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

.ring-two {
  width: 510px;
  height: 510px;
  border-style: dashed;
  animation: slow-spin 32s linear infinite reverse;
}

.privacy-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: rgba(235, 243, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  box-shadow: 0 18px 45px rgba(0, 5, 25, 0.25);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 680;
}

.privacy-note span {
  width: 8px;
  height: 8px;
  background: #6ce4bd;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(108, 228, 189, 0.1);
}

.note-one { top: 18%; left: 0; }
.note-two { right: -2%; bottom: 17%; }

.privacy-copy > p:not(.kicker) {
  margin: 24px 0 0;
  color: rgba(225, 235, 252, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

.privacy-copy .privacy-qualification {
  padding: 17px 19px;
  color: rgba(218, 232, 252, 0.62) !important;
  background: rgba(255, 255, 255, 0.05);
  border-left: 2px solid #528eff;
  border-radius: 0 14px 14px 0;
  font-size: 13px !important;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 32px;
  color: #90bfff;
  font-size: 14px;
  font-weight: 760;
}

.text-link svg {
  transition: transform 0.2s ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(4px);
}

.workflow {
  padding: 128px 0 64px;
  background: #f6f9ff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  min-height: 270px;
  padding: 32px;
  background: #fff;
  border: 1px solid #dce6f3;
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(34, 66, 116, 0.06);
}

.step > span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--blue);
  background: #eef4ff;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 820;
}

.step h3 {
  margin: 48px 0 10px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq {
  padding: 90px 0 136px;
  background: #f6f9ff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1fr);
  align-items: start;
  gap: 90px;
}

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

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 12px 16px 12px 12px;
  background: #fff;
  border: 1px solid #dce6f3;
  border-radius: 17px;
  box-shadow: 0 14px 35px rgba(31, 62, 115, 0.07);
}

.contact-chip > span:first-child {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-bright), var(--violet));
  border-radius: 12px;
  font-weight: 800;
}

.contact-chip small,
.contact-chip b {
  display: block;
}

.contact-chip small {
  color: #8997aa;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-chip b {
  margin-top: 2px;
  font-size: 12px;
}

.accordion {
  border-top: 1px solid #cfdaea;
}

.faq-item {
  border-bottom: 1px solid #cfdaea;
}

.faq-item > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 740;
}

.faq-item > button i {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  background: #eaf1fc;
  border-radius: 50%;
}

.faq-item > button i::before,
.faq-item > button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: #3d567b;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-item > button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open > button i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding: 0 58px 25px 0;
}

.closing {
  padding: 70px 0;
  background:
    radial-gradient(circle at 15% 65%, rgba(61, 140, 255, 0.23), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(123, 77, 255, 0.18), transparent 28%),
    #07162f;
}

.closing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 80px;
  padding: 60px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 6, 22, 0.23);
}

.closing-card h2 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 52px);
}

.closing-card p {
  max-width: 640px;
  margin-left: 0;
  color: rgba(223, 233, 249, 0.65);
}

.site-footer {
  padding: 74px 0 26px;
  color: rgba(224, 234, 249, 0.64);
  background: #030d20;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1fr);
  gap: 90px;
}

.brand-footer {
  width: fit-content;
}

.footer-grid > div:first-child > p {
  margin: 20px 0 0;
  color: rgba(220, 232, 249, 0.46);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

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

.footer-links strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 12px;
}

.footer-links a {
  width: fit-content;
  color: rgba(224, 234, 249, 0.54);
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #8bb9ff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  margin-top: 54px;
  color: rgba(210, 223, 243, 0.34);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes scan-small {
  0%, 100% { top: 22%; opacity: 0.35; }
  50% { top: 78%; opacity: 1; }
}

@keyframes demo-scan {
  0%, 100% { top: 26%; }
  50% { top: 70%; }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;
  }

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

  .chip-qr { left: -25px; }
  .chip-doc { right: -25px; }

  .demo-grid {
    grid-template-columns: 0.68fr minmax(500px, 1fr);
    gap: 50px;
  }

  .showcase {
    grid-template-columns: minmax(220px, 0.62fr) minmax(370px, 1fr);
    gap: 36px;
  }

  .showcase-thumbs {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(5, 78px);
    justify-content: center;
  }

  .thumb {
    width: 74px;
    height: 94px;
  }

  .thumb:hover,
  .thumb:focus-visible,
  .thumb.is-active {
    transform: translateY(-4px);
  }

  .privacy-grid {
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .content-width {
    width: min(100% - 36px, 720px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 80px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 18px;
    visibility: hidden;
    opacity: 0;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(5, 18, 42, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(0, 7, 25, 0.44);
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

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

  .site-nav a:not(.nav-cta),
  .nav-cta {
    padding: 12px 14px;
  }

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

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

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

  .hero-copy {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
  }

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

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

  .hero-foot {
    display: none;
  }

  .feature-intro,
  .demo-section,
  .experience,
  .privacy-section {
    padding-block: 100px;
  }

  .feature-card-large {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .feature-card-large .code-art {
    grid-column: 1 / -1;
  }

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

  .demo-copy {
    max-width: 650px;
    text-align: center;
    margin-inline: auto;
  }

  .demo-points {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .scanner-demo {
    width: min(100%, 640px);
    margin-inline: auto;
  }

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

  .showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .showcase-count,
  .showcase-controls {
    justify-content: center;
  }

  .showcase-copy > p:last-of-type {
    max-width: 560px;
    margin-inline: auto;
  }

  .showcase-stage {
    min-height: 600px;
  }

  .showcase-thumbs {
    grid-column: auto;
    grid-row: auto;
  }

  .privacy-visual {
    min-height: 420px;
    order: 2;
  }

  .privacy-copy {
    text-align: center;
  }

  .privacy-copy .privacy-qualification {
    text-align: left;
  }

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

  .step {
    min-height: auto;
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 22px;
  }

  .step h3 {
    margin-top: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    position: static;
  }

  .closing-card {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .closing-card p {
    margin-inline: auto;
  }

  .closing-card .button {
    justify-self: center;
  }

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

@media (max-width: 640px) {
  .content-width {
    width: min(100% - 28px, 540px);
  }

  .nav-wrap {
    width: calc(100% - 28px);
  }

  .brand span {
    font-size: 14px;
  }

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

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 12px;
    justify-content: center;
    text-align: left;
  }

  .hero-visual {
    min-height: 520px;
    margin-inline: -16px;
    transform: scale(0.9);
  }

  .hero-phone {
    width: 280px;
    height: 498px;
  }

  .chip-qr {
    top: 24%;
    left: -2%;
  }

  .chip-doc {
    right: -4%;
    bottom: 17%;
  }

  .floating-chip {
    min-width: 142px;
    padding: 9px 11px;
  }

  .hero-icon-card {
    right: 1%;
    top: 8%;
  }

  .hero-icon-card img {
    width: 66px;
    height: 66px;
  }

  .orbit-one { width: 410px; height: 410px; }
  .orbit-two { width: 330px; height: 330px; }

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

  .section-heading h2,
  .demo-copy h2,
  .privacy-copy h2,
  .faq-intro h2 {
    font-size: 38px;
  }

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

  .feature-card {
    min-height: auto;
    padding: 26px;
  }

  .feature-card-large {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .feature-card-large .code-art {
    grid-column: auto;
  }

  .code-art {
    min-height: 225px;
  }

  .mini-qr {
    right: 28px;
  }

  .mini-bars {
    left: 24px;
  }

  .demo-section {
    padding-block: 86px;
  }

  .demo-grid {
    gap: 46px;
  }

  .scanner-demo {
    padding: 10px;
    border-radius: 26px;
  }

  .demo-camera {
    min-height: 350px;
  }

  .focus-corners {
    width: 220px;
    height: 220px;
  }

  .demo-scan-line {
    left: calc(50% - 104px);
    width: 208px;
  }

  .showcase {
    min-height: auto;
    padding: 34px 18px;
    border-radius: 28px;
  }

  .showcase-count {
    margin-bottom: 30px;
  }

  .showcase-copy h3 {
    font-size: 32px;
  }

  .showcase-stage {
    min-height: 520px;
  }

  .showcase-stage::before {
    width: 300px;
    height: 300px;
  }

  .showcase-phone {
    width: 270px;
    height: 480px;
  }

  .showcase-thumbs {
    grid-template-columns: repeat(5, 58px);
    gap: 7px;
  }

  .thumb {
    width: 56px;
    height: 76px;
    border-radius: 12px;
  }

  .privacy-section {
    padding-block: 90px;
  }

  .privacy-grid {
    gap: 15px;
  }

  .privacy-visual {
    min-height: 370px;
    margin-inline: -18px;
    transform: scale(0.88);
  }

  .privacy-shield {
    width: 160px;
    height: 160px;
    border-radius: 45px;
  }

  .privacy-shield svg {
    width: 75px;
    height: 75px;
  }

  .ring-one { width: 320px; height: 320px; }
  .ring-two { width: 410px; height: 410px; }
  .note-one { left: 2%; }
  .note-two { right: 1%; }

  .workflow {
    padding-top: 94px;
  }

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

  .faq {
    padding-bottom: 100px;
  }

  .faq-item > button {
    font-size: 16px;
  }

  .faq-item.is-open .faq-answer > p {
    padding-right: 0;
  }

  .closing {
    padding: 42px 0;
  }

  .closing-card {
    padding: 38px 24px;
    border-radius: 24px;
  }

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

  .footer-links div:last-child {
    grid-column: 1 / -1;
  }

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
