:root {
  color-scheme: dark;
  --bg: #08080b;
  --bg-soft: #0d0d12;
  --surface: #121219;
  --surface-raised: #181820;
  --surface-soft: rgba(255, 255, 255, 0.045);
  --text: #f7f7fa;
  --text-soft: #d7d6de;
  --muted: #a6a5b0;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --brand: #a78bfa;
  --brand-strong: #7c3aed;
  --brand-deep: #5b21b6;
  --brand-soft: rgba(139, 92, 246, 0.13);
  --success: #6ee7b7;
  --max: 1180px;
  --content: 760px;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(124, 58, 237, 0.12), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(167, 139, 250, 0.35);
}

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

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

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

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 12px;
  background: #fff;
  color: #111;
  padding: 11px 16px;
  font-weight: 750;
}

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

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

.narrow {
  width: min(var(--content), 100%);
  margin-inline: auto;
}

.nav {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 11, 0.76);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
}

.navin {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  object-fit: cover;
  background: var(--brand-strong);
  box-shadow: 0 9px 26px rgba(124, 58, 237, 0.27);
}

.links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  color: #d4d3dc;
  font-size: 14px;
  font-weight: 620;
}

.links a,
.footer a {
  transition: color 160ms ease;
}

.links a:hover,
.footer a:hover {
  color: #fff;
}

.navright,
.language-pills {
  display: flex;
  align-items: center;
}

.navright {
  gap: 10px;
}

.language-pills {
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.language-pill {
  min-width: 38px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  -webkit-tap-highlight-color: transparent;
}

.language-pill:hover,
.language-pill.active {
  background: rgba(167, 139, 250, 0.16);
  color: #fff;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 11px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #9f7aea, var(--brand-strong));
  box-shadow: 0 14px 38px rgba(91, 33, 182, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 48px rgba(91, 33, 182, 0.38);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.055);
}

.btn-compact {
  min-height: 42px;
  padding: 9px 15px;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
  padding-block: 82px 70px;
  position: relative;
}

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

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.08);
  color: #d8ccff;
  font-size: 13px;
  font-weight: 720;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(110, 231, 183, 0.1);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin: 24px 0 23px;
  font-size: clamp(51px, 6.4vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

.gradient {
  background: linear-gradient(105deg, #fff 8%, #d8ccff 51%, #9f7aea 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 660px;
  margin: 0;
  color: #c7c6cf;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
}

.micro-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.micro-list li::before {
  content: "✓";
  margin-inline-end: 7px;
  color: var(--success);
  font-weight: 850;
}

.product-stage {
  min-height: 630px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}

.product-stage::before {
  content: "";
  width: min(540px, 100%);
  aspect-ratio: 1;
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent 67%);
  filter: blur(16px);
}

.phone {
  width: 332px;
  height: 672px;
  position: relative;
  overflow: hidden;
  border: 9px solid #25252d;
  border-radius: 54px;
  background: #f6f4fb;
  color: #1c1922;
  box-shadow: 0 52px 110px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(2.2deg);
}

.phone::before {
  content: "";
  width: 116px;
  height: 31px;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  z-index: 4;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #17171c;
}

.phone-screen {
  height: 100%;
  padding: 50px 18px 20px;
}

.phone-status,
.phone-brand,
.phone-summary-head,
.phone-receipt,
.export-pill {
  display: flex;
  align-items: center;
}

.phone-status {
  justify-content: space-between;
  margin-bottom: 19px;
  font-size: 12px;
  font-weight: 750;
}

.status-icons {
  letter-spacing: 2px;
}

.phone-brand {
  gap: 10px;
  margin-bottom: 18px;
}

.phone-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.phone-brand strong,
.phone-brand span {
  display: block;
}

.phone-brand strong {
  font-size: 17px;
}

.phone-brand span {
  color: #77717f;
  font-size: 10px;
}

.phone-summary {
  border-radius: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #6860a5, #514988);
  color: #fff;
  box-shadow: 0 18px 35px rgba(81, 73, 136, 0.22);
}

.phone-summary-head {
  justify-content: space-between;
  color: #e7e2ff;
  font-size: 11px;
}

.phone-summary b {
  display: block;
  margin-top: 5px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.phone-summary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 15px;
}

.phone-summary-stats div {
  border-radius: 12px;
  padding: 9px 7px;
  background: rgba(16, 12, 44, 0.23);
}

.phone-summary-stats small,
.phone-summary-stats strong {
  display: block;
}

.phone-summary-stats small {
  color: #ded9fb;
  font-size: 8px;
}

.phone-summary-stats strong {
  margin-top: 2px;
  font-size: 11px;
}

.phone-action {
  margin-top: 13px;
  border-radius: 18px;
  padding: 15px;
  background: #b9b0ff;
  color: #27223e;
  text-align: center;
  font-size: 13px;
  font-weight: 820;
}

.phone-section-title {
  display: flex;
  justify-content: space-between;
  margin: 20px 1px 10px;
  font-size: 12px;
  font-weight: 800;
}

.phone-section-title span {
  color: #6b5da3;
}

.phone-receipt {
  gap: 10px;
  margin-top: 8px;
  border: 1px solid #e5e1ec;
  border-radius: 17px;
  padding: 11px;
  background: #fff;
}

.receipt-thumb {
  width: 42px;
  height: 47px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e6e0ff;
  color: #5e518e;
  font-size: 18px;
  font-weight: 900;
}

.phone-receipt p {
  min-width: 0;
  margin: 0;
  line-height: 1.25;
}

.phone-receipt strong,
.phone-receipt small {
  display: block;
}

.phone-receipt strong {
  font-size: 12px;
}

.phone-receipt small {
  margin-top: 3px;
  color: #7c7683;
  font-size: 9px;
}

.phone-receipt .sum {
  margin-inline-start: auto;
  color: #5b4d8d;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.export-pill {
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  border: 1px solid #ded8e7;
  border-radius: 15px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.7);
  color: #50495b;
  font-size: 10px;
  font-weight: 750;
}

.floating-card {
  max-width: 230px;
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 13px 15px;
  background: rgba(24, 24, 32, 0.86);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 13px;
}

.floating-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.floating-card.scan {
  inset-block-start: 135px;
  inset-inline-start: -2px;
}

.floating-card.report {
  inset-inline-end: -8px;
  inset-block-end: 98px;
}

.proof-bar {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

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

.proof-item {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 25px;
  border-inline-start: 1px solid var(--line);
}

.proof-item:last-child {
  border-inline-end: 1px solid var(--line);
}

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

.proof-item strong {
  font-size: 18px;
  letter-spacing: -0.025em;
}

.proof-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-block: 108px;
}

.section-tight {
  padding-block: 72px;
}

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

.kicker {
  color: #b8a4ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section h2,
.page h1 {
  margin: 13px 0 17px;
  font-size: clamp(37px, 4.7vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-head > p,
.section-copy > p,
.cta > p {
  color: var(--muted);
  font-size: 18px;
}

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

.step,
.feature-card,
.audience-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.step {
  min-height: 270px;
  position: relative;
  border-radius: var(--radius-lg);
  padding: 25px;
  counter-increment: step;
}

.step::before {
  content: "0" counter(step);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 139, 250, 0.26);
  border-radius: 15px;
  background: var(--brand-soft);
  color: #d8ccff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.step h3,
.feature-card h3,
.audience-card h3 {
  margin: 23px 0 9px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.step p,
.feature-card p,
.audience-card p {
  margin: 0;
  color: var(--muted);
}

.feature-layout,
.business-layout,
.privacy-layout {
  display: grid;
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.feature-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.section-copy h2 {
  max-width: 680px;
}

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

.benefit-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  color: var(--text-soft);
}

.benefit-list li::before {
  content: "✓";
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(110, 231, 183, 0.11);
  color: var(--success);
  font-size: 12px;
  font-weight: 900;
}

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

.feature-card {
  min-height: 215px;
  border-radius: var(--radius-md);
  padding: 23px;
}

.feature-mark {
  color: #c9baff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin-top: 35px;
}

.business-section {
  position: relative;
}

.business-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 10%, rgba(124, 58, 237, 0.16), transparent 33rem),
    #101016;
  padding: clamp(30px, 5vw, 66px);
}

.business-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
}

.report-preview {
  position: relative;
  border-radius: 25px;
  padding: 19px;
  background: #f5f3f8;
  color: #26212d;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  transform: rotate(1deg);
}

.report-head,
.report-total,
.report-row,
.report-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.report-head {
  padding-bottom: 14px;
  border-bottom: 1px solid #dad5df;
}

.report-head strong {
  font-size: 17px;
}

.report-head span {
  color: #736b79;
  font-size: 10px;
}

.report-total {
  margin-block: 15px;
  border-radius: 17px;
  padding: 15px;
  background: #e8e2ff;
}

.report-total small,
.report-total strong {
  display: block;
}

.report-total small {
  color: #655f6c;
  font-size: 9px;
}

.report-total strong {
  margin-top: 2px;
  font-size: 20px;
}

.report-badges {
  display: flex;
  gap: 5px;
}

.report-badges span {
  border-radius: 8px;
  padding: 5px 7px;
  background: rgba(91, 33, 182, 0.1);
  color: #5b3e92;
  font-size: 8px;
  font-weight: 800;
}

.report-row {
  gap: 10px;
  padding-block: 10px;
  border-bottom: 1px solid #e3dfe7;
  font-size: 10px;
}

.report-row span:nth-child(1) {
  width: 47%;
  font-weight: 750;
}

.report-row span:nth-child(2) {
  color: #736b79;
}

.report-row span:nth-child(3) {
  font-weight: 820;
}

.report-receipts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-block: 15px;
}

.paper-thumb {
  height: 90px;
  border: 1px solid #dcd6e2;
  border-radius: 10px;
  background:
    repeating-linear-gradient(to bottom, transparent 0 7px, rgba(59, 50, 67, 0.11) 7px 8px),
    #fff;
  box-shadow: 0 5px 14px rgba(60, 47, 68, 0.08);
}

.report-footer {
  color: #736b79;
  font-size: 9px;
}

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

.audience-card {
  min-height: 205px;
  border-radius: var(--radius-lg);
  padding: 25px;
}

.audience-label {
  color: #b8a4ff;
  font-size: 12px;
  font-weight: 800;
}

.privacy-layout {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 62px);
  background: linear-gradient(145deg, #15131c, #0d0d12);
}

.privacy-visual {
  display: grid;
  gap: 12px;
}

.privacy-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.privacy-row b,
.privacy-row small {
  display: block;
}

.privacy-row small {
  margin-top: 2px;
  color: var(--muted);
}

.privacy-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--brand-soft);
  color: #cfbfff;
  font-size: 13px;
  font-weight: 850;
}

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

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

.faq summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: #f5f4f8;
  font-size: 18px;
  font-weight: 750;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-raised);
  color: #cdbfff;
  font-size: 20px;
  font-weight: 500;
}

.faq[open] summary::after {
  content: "−";
}

.faq p {
  max-width: 690px;
  margin: -5px 0 24px;
  color: var(--muted);
}

.cta {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 8vw, 90px) 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.28), transparent 55%),
    var(--surface);
  text-align: center;
}

.cta h2 {
  max-width: 780px;
  margin-inline: auto;
}

.cta p {
  max-width: 660px;
  margin-inline: auto;
}

.cta .actions {
  justify-content: center;
}

.mobile-download {
  display: none;
}

.footer {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-block: 48px 34px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 0.8fr;
  gap: 40px;
}

.footer .brand {
  color: #fff;
  margin-bottom: 16px;
}

.footer .brand img {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  border-radius: 13px;
}

.footer-brand-copy {
  max-width: 390px;
  margin: 0;
}

.footer h4 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 13px;
}

.footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-block: 8px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

/* Legal, support and account-deletion pages */
.page {
  min-height: 70vh;
  padding: 72px 0 110px;
}

.page-wrap {
  max-width: 860px;
}

.page-hero {
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
  padding: 66px 0 28px;
}

.page-hero h1,
.page h1 {
  margin-bottom: 14px;
}

.page-hero p,
.updated {
  color: var(--muted);
}

.page-hero p {
  max-width: 720px;
  font-size: 18px;
}

.updated {
  margin-bottom: 45px;
}

.prose {
  color: var(--text-soft);
}

.prose h2 {
  margin: 45px 0 13px;
  color: #fff;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.prose h3 {
  margin: 28px 0 8px;
  color: #fff;
  font-size: 19px;
}

.prose p,
.prose li {
  color: #b9b8c2;
}

.prose strong {
  color: #f4f4f5;
}

.prose a {
  color: #cfbfff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose ul,
.prose ol {
  padding-inline-start: 22px;
}

.notice {
  margin: 24px 0;
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(139, 92, 246, 0.08);
}

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

.legal-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.support-email {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -0.02em;
}

.lang-content[aria-hidden="true"],
.lang-content:not(.active) {
  display: none !important;
}

.lang-content[aria-hidden="false"],
.lang-content.active {
  display: block !important;
}

[hidden] {
  display: none !important;
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .phone,
[dir="rtl"] .report-preview {
  direction: rtl;
}

[dir="rtl"] .phone::before {
  transform: translateX(50%);
}

:focus-visible {
  outline: 3px solid rgba(205, 191, 255, 0.92);
  outline-offset: 3px;
}

@media (max-width: 1030px) {
  .links {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    gap: 35px;
  }

  .floating-card {
    display: none;
  }

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

@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 62px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .product-stage {
    min-height: 650px;
    margin-top: 5px;
  }

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

  .proof-item:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .step,
  .audience-card {
    min-height: 0;
  }

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

  .report-preview {
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .navin {
    min-height: 64px;
  }

  .brand {
    gap: 9px;
    font-size: 18px;
  }

  .brand img {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .navright > .btn {
    display: none;
  }

  .language-pill {
    min-width: 35px;
    min-height: 34px;
  }

  .hero {
    min-height: 0;
    padding-block: 46px 48px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 61px);
  }

  .lead {
    font-size: 17px;
  }

  .actions {
    width: 100%;
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
  }

  .micro-list {
    justify-content: center;
  }

  .product-stage {
    min-height: 570px;
  }

  .phone {
    width: 284px;
    height: 575px;
    border-width: 8px;
    border-radius: 46px;
  }

  .phone-screen {
    padding: 47px 14px 15px;
  }

  .phone-summary {
    padding: 16px;
  }

  .phone-summary b {
    font-size: 26px;
  }

  .phone-section-title {
    margin-top: 15px;
  }

  .proof-item {
    min-height: 100px;
    padding: 18px;
  }

  .proof-item strong {
    font-size: 16px;
  }

  .section {
    padding-block: 78px;
  }

  .section-tight {
    padding-block: 54px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section h2,
  .page h1 {
    font-size: clamp(35px, 11vw, 48px);
  }

  .section-head > p,
  .section-copy > p,
  .cta > p {
    font-size: 16px;
  }

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

  .feature-card {
    min-height: 180px;
  }

  .business-shell,
  .privacy-layout {
    border-radius: 28px;
  }

  .report-row span:nth-child(2) {
    display: none;
  }

  .report-row span:nth-child(1) {
    width: auto;
  }

  .footer {
    padding-bottom: 104px;
  }

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

  .copyright {
    flex-direction: column;
  }

  .mobile-download {
    display: block;
    position: fixed;
    inset-inline: 12px;
    inset-block-end: max(12px, env(safe-area-inset-bottom));
    z-index: 90;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    padding: 8px;
    background: rgba(17, 17, 23, 0.88);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }

  .mobile-download .btn {
    width: 100%;
  }

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

  .page-hero {
    padding-top: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #c8c7d0;
    --line: rgba(255, 255, 255, 0.24);
  }
}
