:root {
  color-scheme: dark;
  --bg: #080c0a;
  --bg-soft: #0d1310;
  --surface: #111915;
  --surface-2: #17211c;
  --surface-3: #1c2822;
  --ink: #f3f8f5;
  --muted: #a2b2aa;
  --faint: #708078;
  --line: #26342d;
  --line-bright: #394a41;
  --mint: #58e0ad;
  --mint-bright: #8bf0cb;
  --mint-dark: #0f7457;
  --red: #ff5b73;
  --red-soft: #35171e;
  --cream: #eef4ef;
  --black: #060807;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--bg);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--black);
  background: var(--mint);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 64px;
  margin-top: 14px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(11, 16, 13, 0.84);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 820;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-bright);
  border-radius: 10px;
  background: var(--surface-2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.mark img {
  display: block;
  width: 100%;
  height: 100%;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 650;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}

nav a:hover {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 11px;
  color: var(--black);
  background: var(--mint);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(88, 224, 173, 0.16);
  transition: transform 160ms ease, background 160ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: var(--mint-bright);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.78fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
  min-height: 760px;
  padding: 74px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -110px calc(50% - 50vw) auto;
  height: 780px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 74% 40%, rgba(88, 224, 173, 0.13), transparent 26%),
    radial-gradient(circle at 92% 20%, rgba(255, 91, 115, 0.09), transparent 20%);
  background-size: 72px 72px, 72px 72px, auto, auto;
  mask-image: linear-gradient(to bottom, black 72%, transparent);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3.8rem, 6.6vw, 6.7rem);
  font-weight: 820;
  line-height: 0.91;
  letter-spacing: -0.07em;
}

h1 span {
  color: var(--mint);
}

.lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

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

.appstore-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  transition: transform 160ms ease, filter 160ms ease;
}

.appstore-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.appstore-badge img {
  display: block;
  width: auto;
  height: 58px;
}

.text-link,
.inline-cta {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 760;
  text-underline-offset: 5px;
  text-decoration-color: var(--faint);
}

.text-link span,
.inline-cta span {
  display: inline-block;
  margin-left: 4px;
  color: var(--mint);
  text-decoration: none;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

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

.purchase-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--faint);
  font-size: 0.82rem;
  font-weight: 640;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.hero-proof div {
  display: grid;
  gap: 2px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.hero-proof strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.hero-proof span {
  color: var(--faint);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 24px 8px;
}

.radar-glow {
  position: absolute;
  display: grid;
  place-items: center;
  width: 112%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 224, 173, 0.11), rgba(88, 224, 173, 0.02) 44%, transparent 68%);
}

.radar-glow i {
  position: absolute;
  width: calc(32% + (var(--ring, 0) * 17%));
  aspect-ratio: 1;
  border: 1px solid rgba(88, 224, 173, 0.12);
  border-radius: 50%;
}

.radar-glow i:nth-child(1) { --ring: 0; }
.radar-glow i:nth-child(2) { --ring: 1; }
.radar-glow i:nth-child(3) { --ring: 2; }
.radar-glow i:nth-child(4) { --ring: 3; }

.phone {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border-radius: 37px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.11);
}

.phone img {
  display: block;
  width: 100%;
  border-radius: 32px;
}

.hero-phone {
  z-index: 2;
  width: min(100%, 390px);
  transform: rotate(1.3deg);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(18, 26, 22, 0.9);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.floating-card span:last-child {
  display: grid;
}

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

.floating-card small {
  color: var(--muted);
  font-size: 0.68rem;
}

.mini-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 0.78rem;
  font-weight: 900;
}

.mini-icon.danger {
  color: var(--red);
  background: var(--red-soft);
}

.mini-icon.safe {
  color: var(--mint);
  background: rgba(88, 224, 173, 0.11);
}

.alert-card {
  top: 19%;
  left: -15%;
}

.local-card {
  right: 0;
  bottom: 17%;
}

.truth-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 0;
  border-block: 1px solid var(--line);
}

.truth-strip p {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  margin: 0;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.truth-strip p:last-child {
  border-right: 0;
}

.truth-strip span,
.feature-number {
  color: var(--mint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 800;
}

.section {
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.14rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.clarity {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: end;
}

.clarity-copy > p:last-child,
.section-heading > p,
.product-heading > p,
.privacy-lead > p:last-child,
.pricing-copy > p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.clarity-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.clarity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  overflow: hidden;
}

.clarity-card {
  padding: 30px;
}

.clarity-card + .clarity-card {
  border-left: 1px solid var(--line);
}

.card-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card-label span {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
}

.can-card .card-label span {
  color: var(--black);
  background: var(--mint);
}

.wont-card .card-label span {
  color: var(--red);
  background: var(--red-soft);
}

.clarity-card ul,
.pricing-action ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.clarity-card li,
.pricing-action li {
  position: relative;
  padding-left: 19px;
  font-size: 0.9rem;
}

.clarity-card li::before,
.pricing-action li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
}

.wont-card li::before {
  background: var(--red);
}

.mechanism {
  position: relative;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 22px auto 0;
}

.mechanism-line {
  position: relative;
  z-index: 0;
  width: calc(66.666% + 20px);
  height: 1px;
  margin: 0 auto -27px;
  background: linear-gradient(90deg, transparent, var(--mint) 12%, var(--mint) 88%, transparent);
  opacity: 0.5;
}

.mechanism-line span {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px var(--mint);
}

.step-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(88, 224, 173, 0.05);
  filter: blur(2px);
}

.step-index {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 44px;
  border: 1px solid var(--line-bright);
  border-radius: 22px;
  color: var(--mint);
  background: rgba(88, 224, 173, 0.055);
  font-size: 2.2rem;
}

.signal-waves {
  position: relative;
}

.signal-waves b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px var(--mint);
}

.signal-waves i {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  opacity: 0.7;
}

.signal-waves i:nth-child(2) {
  width: 50px;
  height: 50px;
  opacity: 0.35;
}

.notification span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: var(--red);
  background: var(--red-soft);
  font-size: 1rem;
  font-weight: 900;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.mechanism-note {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--faint);
  font-size: 0.84rem;
  text-align: center;
}

.mechanism-note strong {
  color: var(--muted);
}

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 80px;
  align-items: end;
  max-width: none;
}

.product-heading > p {
  margin: 0 0 5px;
}

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

.product-card {
  position: relative;
  display: grid;
  min-height: 630px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.radar-card {
  grid-column: 1 / -1;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 600px;
}

.product-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding: 42px;
}

.product-copy h3 {
  margin: 16px 0 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.product-copy p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.product-phone {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: center;
  width: min(78%, 380px);
  margin: 0 -5px -150px 0;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 39px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.product-phone img {
  display: block;
  width: 100%;
  border-radius: 30px;
}

.radar-card .product-copy {
  align-self: center;
  padding-left: clamp(42px, 7vw, 82px);
}

.radar-card .product-phone {
  width: min(76%, 420px);
  margin-bottom: -175px;
}

.history-card {
  background: linear-gradient(150deg, #141f1a, #0e1411);
}

.controls-card {
  background: linear-gradient(150deg, #1b1719, #101411 70%);
}

.everyday {
  padding-block: 76px;
}

.everyday-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: clamp(36px, 6vw, 76px);
  border: 1px solid var(--line-bright);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 100%, rgba(88, 224, 173, 0.1), transparent 32%),
    var(--surface-2);
}

.everyday-copy h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
}

.everyday-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.inline-cta {
  display: inline-block;
  margin-top: 18px;
}

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

.feature-list > div {
  display: flex;
  gap: 13px;
  min-height: 116px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.14);
}

.feature-glyph {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--mint);
  background: rgba(88, 224, 173, 0.09);
  font-size: 0.92rem;
  font-weight: 800;
}

.feature-list p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.feature-list strong {
  font-size: 0.89rem;
  line-height: 1.3;
}

.feature-list small {
  color: var(--faint);
  font-size: 0.76rem;
  line-height: 1.4;
}

.privacy-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  background: radial-gradient(circle at 0% 50%, rgba(88, 224, 173, 0.08), transparent 28%);
}

.privacy-lead h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.privacy-grid article {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy-grid article > span {
  color: var(--mint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
}

.privacy-grid h3 {
  margin-top: 25px;
}

.privacy-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 70px;
  padding: clamp(40px, 7vw, 84px);
  border: 1px solid rgba(88, 224, 173, 0.32);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 100%, rgba(88, 224, 173, 0.14), transparent 34%),
    linear-gradient(145deg, var(--surface-2), #101713);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.26);
}

.pricing-copy h2 span {
  color: var(--mint);
}

.pricing-copy > p:last-child {
  max-width: 610px;
}

.pricing-action {
  align-self: center;
  padding: 30px;
  border: 1px solid var(--line-bright);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.22);
}

.pricing-action ul {
  margin: 0 0 28px;
}

.pricing-action .appstore-badge {
  width: 100%;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--line-bright);
  background: var(--black);
}

.pricing-action small {
  display: block;
  margin-top: 12px;
  color: var(--faint);
  font-size: 0.74rem;
  text-align: center;
}

.faq {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 80px;
}

.faq .section-heading {
  margin: 0;
}

.faq .section-heading h2 {
  font-size: clamp(2.6rem, 4.4vw, 4.4rem);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--mint);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 700px;
  margin: -4px 44px 24px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.final-cta {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 630px;
  align-content: center;
  text-align: center;
  overflow: hidden;
}

.final-cta > *:not(.final-radar) {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta > p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.final-cta small {
  margin-top: 13px;
  color: var(--faint);
}

.final-radar {
  position: absolute;
  display: grid;
  place-items: center;
  width: 720px;
  aspect-ratio: 1;
  opacity: 0.5;
}

.final-radar i {
  position: absolute;
  width: calc(26% + (var(--final-ring, 0) * 20%));
  aspect-ratio: 1;
  border: 1px solid rgba(88, 224, 173, 0.17);
  border-radius: 50%;
}

.final-radar i:nth-child(1) { --final-ring: 0; }
.final-radar i:nth-child(2) { --final-ring: 1; }
.final-radar i:nth-child(3) { --final-ring: 2; }

.final-radar b {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 9px rgba(255, 91, 115, 0.08), 0 0 40px var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 36px 0 48px;
  color: var(--faint);
  font-size: 0.76rem;
}

.site-footer > span:last-child {
  justify-self: end;
  text-align: right;
}

.site-footer a:not(.brand) {
  color: var(--muted);
  text-underline-offset: 4px;
}

.footer-brand {
  font-size: 0.92rem;
}

.footer-brand .mark {
  width: 30px;
  height: 30px;
}

.mobile-buy {
  display: none;
}

/* Support and privacy pages */
.legal {
  max-width: 900px;
  padding: 80px 0 120px;
}

.legal-card {
  margin-bottom: 68px;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
}

.legal h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.legal h2 {
  margin: 46px 0 10px;
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal a {
  color: var(--mint-bright);
  text-underline-offset: 4px;
}

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

  .alert-card {
    left: -6%;
  }

  .local-card {
    right: -5%;
  }

  .clarity,
  .privacy-band {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .everyday-panel {
    gap: 40px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 32px, 680px);
  }

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

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(3.6rem, 12vw, 6rem);
  }

  .hero-visual {
    width: min(100%, 520px);
    margin: 18px auto 0;
  }

  .hero-phone {
    width: min(78%, 390px);
  }

  .truth-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .truth-strip p:nth-child(2) {
    border-right: 0;
  }

  .truth-strip p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 88px 0;
  }

  .mechanism-line {
    display: none;
  }

  .step-grid,
  .product-heading,
  .everyday-panel,
  .pricing-card,
  .faq {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 250px;
  }

  .step-icon {
    margin-bottom: 32px;
  }

  .product-heading,
  .faq {
    gap: 40px;
  }

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

  .radar-card {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 670px;
  }

  .product-card {
    min-height: 670px;
  }

  .radar-card .product-copy {
    align-self: start;
    padding: 42px;
  }

  .product-phone,
  .radar-card .product-phone {
    width: min(72%, 370px);
    margin-bottom: -150px;
  }

  .everyday-panel {
    padding: 44px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer > span:last-child {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 78px;
  }

  body.home {
    padding-bottom: 86px;
  }

  .site-header,
  .site-footer,
  main {
    width: min(100% - 24px, 520px);
  }

  .site-header {
    top: 8px;
    min-height: 56px;
    margin-top: 8px;
    padding: 8px 10px 8px 12px;
    border-radius: 15px;
  }

  .site-header .header-cta {
    display: none;
  }

  .mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    gap: 40px;
    padding: 62px 0 72px;
  }

  .hero::before {
    background-size: 44px 44px, 44px 44px, auto, auto;
  }

  h1 {
    font-size: clamp(3.25rem, 15.7vw, 5rem);
    line-height: 0.92;
  }

  h1 br {
    display: none;
  }

  .lede {
    margin-top: 22px;
    font-size: 1.04rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
  }

  .appstore-badge img {
    height: 54px;
  }

  .purchase-note {
    margin-top: 10px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }

  .hero-proof div {
    grid-template-columns: 90px 1fr;
    gap: 8px;
    padding-top: 10px;
  }

  .hero-visual {
    padding: 10px 0 40px;
  }

  .radar-glow {
    width: 100%;
  }

  .hero-phone {
    width: min(82%, 330px);
    transform: none;
  }

  .floating-card {
    min-width: 176px;
    padding: 10px;
  }

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

  .floating-card small {
    font-size: 0.61rem;
  }

  .alert-card {
    top: 17%;
    left: -1%;
  }

  .local-card {
    right: -1%;
    bottom: 9%;
  }

  .truth-strip {
    grid-template-columns: 1fr;
  }

  .truth-strip p {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .truth-strip p:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
    line-height: 0.98;
  }

  .clarity {
    gap: 36px;
  }

  .clarity-grid,
  .privacy-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .clarity-card + .clarity-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .clarity-card {
    padding: 24px;
  }

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

  .section-heading.centered {
    text-align: left;
  }

  .section-heading > p:last-child {
    margin-left: 0;
  }

  .step {
    min-height: 240px;
    padding: 24px;
  }

  .step-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
  }

  .mechanism-note {
    text-align: left;
  }

  .product-card,
  .radar-card {
    min-height: 590px;
  }

  .product-copy,
  .radar-card .product-copy {
    padding: 28px;
  }

  .product-copy h3 {
    font-size: 2rem;
  }

  .product-phone,
  .radar-card .product-phone {
    width: min(78%, 330px);
    margin-bottom: -125px;
  }

  .everyday {
    padding-block: 56px;
  }

  .everyday-panel,
  .pricing-card {
    gap: 40px;
    padding: 28px;
    border-radius: 22px;
  }

  .feature-list > div {
    min-height: auto;
  }

  .privacy-band {
    gap: 40px;
  }

  .privacy-grid article {
    min-height: 150px;
  }

  .pricing-action {
    padding: 22px;
  }

  .faq-list summary {
    font-size: 0.94rem;
  }

  .final-cta {
    min-height: 590px;
  }

  .final-cta h2 br {
    display: none;
  }

  .final-radar {
    width: 100vw;
  }

  .site-footer {
    padding-bottom: 22px;
  }

  .mobile-buy {
    position: fixed;
    z-index: 30;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    padding: 10px 14px 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 17px;
    color: var(--black);
    background: var(--mint);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.48);
    text-decoration: none;
  }

  .mobile-buy span {
    display: grid;
  }

  .mobile-buy strong {
    font-size: 0.92rem;
  }

  .mobile-buy small {
    color: rgba(0, 0, 0, 0.58);
    font-size: 0.68rem;
  }

  .mobile-buy b {
    padding: 10px 13px;
    border-radius: 11px;
    color: var(--ink);
    background: var(--black);
    font-size: 0.92rem;
  }

  .legal {
    padding: 56px 0 90px;
  }

  .legal-card {
    margin-bottom: 48px;
    padding: 28px;
  }

  .legal h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
