:root {
  color-scheme: light;
  --bg: #f6fbf9;
  --surface: #ffffff;
  --surface-soft: #eefaf4;
  --ink: #101820;
  --body: #314255;
  --muted: #657386;
  --line: #d9e7df;
  --line-strong: #f0c66c;
  --teal: #16a34a;
  --teal-dark: #166534;
  --saffron: #f59e0b;
  --saffron-dark: #b45309;
  --blue: #2563eb;
  --blue-soft: #eaf2ff;
  --mint: #dcfce7;
  --gold: #fff2cc;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.14);
  --soft-shadow: 0 14px 34px rgba(16, 24, 32, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #edfdf4 0, #ffffff 420px, #f7fbff 74%, #effaf3 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

p,
li {
  color: var(--body);
  line-height: 1.68;
}

ul,
ol {
  padding-left: 20px;
}

.wrap {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(217, 231, 223, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.10);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.22);
}

.brand small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.links a,
.text-link {
  color: var(--body);
  text-decoration: none;
  font-weight: 850;
}

.links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
}

.links a:hover,
.links a:focus-visible {
  background: var(--surface-soft);
  outline: 0;
}

.links .cta {
  background: linear-gradient(135deg, var(--saffron), #22c55e);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.16);
}

.mobile-store-bar {
  display: none;
}

.hero {
  position: relative;
  padding: 76px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: 56px;
}

.hero-grid > *,
.grid > *,
.package-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--saffron-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin-top: 18px;
  font-size: 76px;
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin-top: 20px;
  color: var(--body);
  font-size: 21px;
  line-height: 1.62;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  padding: 0 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.button.primary {
  background: linear-gradient(135deg, var(--saffron), #22c55e);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.button.secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.74);
  color: var(--saffron-dark);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--body);
  font-size: 13px;
  font-weight: 850;
}

.phone-preview {
  justify-self: center;
  width: min(100%, 301px);
  border: 1px solid rgba(2, 6, 23, 0.9);
  border-radius: 34px;
  padding: 8px;
  background: #050a1b;
  box-shadow: 0 24px 64px rgba(16, 24, 32, 0.20);
  overflow: hidden;
}

.phone-screen {
  min-height: 504px;
  border-radius: 25px;
  padding: 18px 17px;
  background: linear-gradient(180deg, #ffffff 0, #f3fff9 49%, #fffdf4 100%);
  box-shadow: inset 0 0 0 1px rgba(16, 24, 32, 0.03);
}

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.app-id {
  display: flex;
  align-items: center;
  gap: 9px;
}

.app-id img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(187, 247, 208, 0.9);
  border-radius: 11px;
  box-shadow: 0 7px 13px rgba(22, 163, 74, 0.16);
}

.app-title strong {
  display: block;
  color: #020617;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.app-title span {
  display: block;
  margin-top: 4px;
  color: #007f5f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-dot {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #c8f7dd;
  box-shadow: none;
}

.status-dot::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  margin: 10px auto 0;
  border-radius: 50%;
  background: #08b981;
}

.scan-window {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
  margin-top: 18px;
  border: 1px solid #bbf7d0;
  border-radius: 17px;
  background:
    linear-gradient(rgba(12, 148, 102, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 148, 102, 0.13) 1px, transparent 1px),
    #fbfffd;
  background-size: 21px 21px;
  overflow: hidden;
  box-shadow:
    0 13px 29px rgba(15, 118, 110, 0.06),
    0 0 0 13px rgba(236, 253, 245, 0.72);
}

.scan-corner {
  position: absolute;
  width: 25px;
  height: 25px;
  border-color: #059669;
  border-style: solid;
}

.scan-corner.top-left {
  top: 15px;
  left: 15px;
  border-width: 3px 0 0 3px;
}

.scan-corner.top-right {
  top: 15px;
  right: 15px;
  border-width: 3px 3px 0 0;
}

.scan-corner.bottom-left {
  bottom: 15px;
  left: 15px;
  border-width: 0 0 3px 3px;
}

.scan-corner.bottom-right {
  right: 15px;
  bottom: 15px;
  border-width: 0 3px 3px 0;
}

.qr-tile {
  position: relative;
  width: 108px;
  height: 108px;
  display: grid;
  grid-template-columns: repeat(3, 20px);
  grid-template-rows: repeat(3, 20px);
  place-content: center;
  gap: 6px;
  border: 1px solid rgba(187, 247, 208, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 11px 20px rgba(16, 24, 32, 0.10);
}

.qr-mark,
.qr-dot {
  display: block;
  background: #c45100;
}

.qr-mark {
  border: 6px solid #c45100;
  border-radius: 5px;
  background: #ffffff;
}

.qr-mark:nth-child(2) {
  grid-column: 3;
}

.qr-mark:nth-child(3) {
  grid-row: 3;
}

.qr-dot {
  width: 6px;
  height: 6px;
  align-self: center;
  justify-self: center;
  border-radius: 50%;
}

.qr-dot.small {
  grid-column: 2;
  grid-row: 3;
}

.qr-line {
  width: 27px;
  height: 27px;
  grid-column: 2 / 4;
  grid-row: 2 / 4;
  align-self: center;
  justify-self: center;
  border: 6px solid #c45100;
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 8px 0;
}

.risk-result {
  margin-top: 24px;
  padding: 15px;
  border: 1px solid rgba(250, 204, 21, 0.68);
  border-radius: 21px;
  background: rgba(255, 253, 245, 0.92);
  box-shadow: 0 17px 32px rgba(245, 158, 11, 0.12);
}

.risk-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding-right: 50px;
}

.risk-heading div {
  min-width: 0;
}

.risk-icon,
.check-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 950;
}

.risk-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(250, 204, 21, 0.82);
  border-radius: 11px;
  background: #fff7d6;
  color: #c45100;
  font-size: 15px;
}

.risk-heading div > span {
  display: block;
  color: #c45100;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.risk-heading strong {
  display: block;
  margin-top: 3px;
  color: #020617;
  font-size: 13px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.risk-heading em {
  position: absolute;
  top: 15px;
  right: 15px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(250, 204, 21, 0.88);
  border-radius: 999px;
  background: #fff7d6;
  color: #9a3412;
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.risk-result p {
  margin-top: 13px;
  padding: 13px;
  border: 1px solid rgba(250, 204, 21, 0.58);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.78);
  color: #24344d;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.7;
}

.risk-checks {
  display: grid;
  gap: 8px;
  margin-top: 13px;
  padding: 0;
  list-style: none;
}

.risk-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 41px;
  margin: 0;
  padding: 7px 9px;
  border: 1px solid rgba(217, 231, 223, 0.78);
  border-radius: 12px;
  background: #ffffff;
  color: #10213b;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.38;
  box-shadow: 0 6px 11px rgba(16, 24, 32, 0.07);
}

.check-icon {
  width: 27px;
  height: 27px;
  border-radius: 10px;
  font-size: 8px;
}

.check-icon.database {
  background: #bbf7d0;
  color: #047857;
}

.check-icon.redirect {
  position: relative;
  background: #fef3c7;
  color: transparent;
}

.check-icon.redirect::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 2px solid #c45100;
  border-right: 2px solid #c45100;
  transform: translate(-2px, 2px);
}

.check-icon.redirect::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: #c45100;
  transform: rotate(-45deg) translate(2px, -1px);
}

.check-icon.warning {
  background: #ffedd5;
  color: #ea580c;
  font-size: 18px;
}

section {
  padding: 58px 0;
}

section[id] {
  scroll-margin-top: 110px;
}

.section-band {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(240, 253, 244, 0.72));
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2,
.page-hero h1 {
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p,
.page-hero p {
  margin-top: 12px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.68;
}

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

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

.card,
.answer-card,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.card,
.answer-card {
  padding: 24px;
}

.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--teal), var(--blue));
}

.card h3,
.answer-card h3,
.answer-card h2 {
  font-size: 19px;
  line-height: 1.22;
}

.card p,
.answer-card p,
.card li,
.answer-card li {
  margin-top: 10px;
}

.answer-card {
  position: relative;
}

.answer-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--saffron-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.premium-band {
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 242, 204, 0.86), rgba(255, 255, 255, 0.88) 48%, rgba(234, 242, 255, 0.78));
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 12px;
  border: 3px solid #16a34a;
  border-radius: 50%;
  transform: translateY(-50%);
}

.source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.source-row a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--saffron-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.split-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.split-head .section-head {
  margin-bottom: 0;
}

.button.compact {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 16px;
  font-size: 14px;
}

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

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.package-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.package-card.featured-plan {
  border-color: rgba(245, 158, 11, 0.44);
  background: linear-gradient(180deg, rgba(255, 242, 204, 0.82), rgba(255, 255, 255, 0.92) 58%, rgba(234, 242, 255, 0.76));
  box-shadow: 0 20px 52px rgba(16, 24, 32, 0.13);
}

.package-card.free-plan {
  background: linear-gradient(180deg, rgba(220, 252, 231, 0.72), rgba(255, 255, 255, 0.9));
}

.package-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plan-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  background: #dcfce7;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 950;
}

.plan-icon.lite {
  background: #fff2cc;
  color: var(--saffron-dark);
}

.plan-icon.plus {
  background: #101820;
  color: #ffffff;
}

.plan-icon.pro {
  background: var(--blue-soft);
  color: var(--blue);
}

.plan-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.package-card h3 {
  margin-top: 18px;
  font-size: 26px;
  line-height: 1.1;
}

.package-price {
  margin-top: 10px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.package-price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.yearly-price {
  margin-top: 8px;
  color: var(--saffron-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.package-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.package-list li {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.5;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  transform: translateY(-50%);
}

.package-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.package-note div {
  padding: 18px;
}

.package-note div + div {
  border-left: 1px solid var(--line);
}

.package-note strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.package-note p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.page-hero {
  padding: 58px 0 22px;
}

.qa-list {
  display: grid;
  gap: 14px;
  padding-bottom: 60px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 66px;
}

.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  color: inherit;
  text-decoration: none;
}

.blog-card h2 {
  font-size: 24px;
  line-height: 1.18;
}

.blog-card p {
  margin-top: 10px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.blog-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.article-body {
  display: grid;
  gap: 18px;
  margin: 18px 0 66px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.article-body h2 {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.2;
}

.article-body h3 {
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.25;
}

.article-body a {
  color: var(--saffron-dark);
  font-weight: 900;
}

.article-body .actions {
  margin-top: 6px;
}

.note-box {
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 242, 204, 0.82), rgba(255, 255, 255, 0.86));
}

.related-posts {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.related-posts li {
  margin: 0;
}

details.answer-card {
  padding: 0;
}

details.answer-card summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.3;
}

details.answer-card p,
details.answer-card ul,
details.answer-card ol {
  margin: 0 24px 22px;
}

details.answer-card p + p,
details.answer-card p + ul,
details.answer-card ul + p {
  margin-top: 12px;
}

article.policy {
  display: grid;
  gap: 16px;
  margin: 18px 0 66px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

article.policy h2 {
  margin-top: 4px;
  font-size: 22px;
}

article.policy a {
  color: var(--saffron-dark);
  font-weight: 900;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  margin-left: 14px;
  color: var(--body);
  text-decoration: none;
  font-weight: 850;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 50px;
  }

  .hero-grid,
  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 58px;
  }

  .lead {
    font-size: 19px;
  }

  .section-head h2,
  .page-hero h1 {
    font-size: 42px;
  }

  .split-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .phone-preview {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  body {
    background:
      radial-gradient(circle at 84% 16%, rgba(224, 255, 174, 0.72), transparent 34%),
      radial-gradient(circle at 12% 12%, rgba(218, 252, 241, 0.82), transparent 42%),
      linear-gradient(180deg, #f5fffa 0, #ffffff 58%, #edf8f1 100%);
  }

  .wrap,
  .narrow {
    width: min(1140px, calc(100% - 32px));
  }

  .nav {
    display: none;
  }

  .mobile-store-bar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 68px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(240, 198, 108, 0.78);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(16, 24, 32, 0.14);
    backdrop-filter: blur(16px);
  }

  .mobile-store-bar div {
    min-width: 0;
  }

  .mobile-store-bar strong,
  .mobile-store-bar span {
    display: block;
  }

  .mobile-store-bar strong {
    color: var(--ink);
    font-size: 16px;
    font-weight: 950;
    line-height: 1.1;
  }

  .mobile-store-bar span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.25;
  }

  .mobile-store-bar a {
    flex: 0 0 auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 50%;
    padding: 0 13px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--saffron), #22c55e);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 950;
    line-height: 1.15;
    box-shadow: 0 10px 22px rgba(16, 24, 32, 0.16);
  }

  .hero-grid {
    width: 100%;
    gap: 22px;
    justify-items: center;
  }

  .hero {
    min-height: auto;
    display: grid;
    align-items: center;
    padding: 24px 0 38px;
  }

  .hero-grid > div:first-child {
    display: block;
    order: -2;
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: 44px;
    line-height: 1;
  }

  .lead {
    margin: 14px auto 0;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero .actions {
    margin-top: 20px;
  }

  .hero .button.primary {
    min-height: 56px;
    font-size: 16px;
  }

  .hero .button.secondary {
    min-height: 46px;
  }

  .hero .trust-row {
    display: none;
  }

  .section-head h2,
  .page-hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .actions,
  .actions .button {
    width: 100%;
  }

  .button.compact {
    width: 100%;
  }

  .trust-pill {
    max-width: 100%;
    white-space: normal;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  section[id] {
    scroll-margin-top: 250px;
  }

  .phone-preview {
    width: min(calc((100vw - 48px) * 0.7), 245px);
    max-width: none;
    order: -1;
    justify-self: center;
    border-width: 7px;
    border-color: #050a1b;
    border-radius: 30px;
    padding: 0;
    background: linear-gradient(180deg, #050a1b 0 82%, #087341 100%);
    box-shadow: 0 20px 46px rgba(16, 24, 32, 0.16);
  }

  .phone-screen {
    min-height: 0;
    border-radius: 22px;
    padding: 17px 14px 18px;
    background: linear-gradient(180deg, #ffffff 0, #f0fff8 48%, #fffef6 100%);
  }

  .app-id img {
    width: 35px;
    height: 35px;
    border-radius: 11px;
  }

  .app-title strong {
    font-size: 15px;
  }

  .app-title span,
  .risk-heading div > span {
    font-size: 8px;
  }

  .status-dot {
    width: 29px;
    height: 29px;
  }

  .status-dot::after {
    width: 10px;
    height: 10px;
    margin-top: 10px;
  }

  .scan-window {
    min-height: 202px;
    margin-top: 22px;
    border-radius: 15px;
    background-size: 20px 20px;
    box-shadow:
      0 10px 24px rgba(15, 118, 110, 0.05),
      0 0 0 11px rgba(236, 253, 245, 0.76);
  }

  .scan-corner {
    width: 24px;
    height: 24px;
  }

  .scan-corner.top-left,
  .scan-corner.top-right {
    top: 16px;
  }

  .scan-corner.bottom-left,
  .scan-corner.bottom-right {
    bottom: 16px;
  }

  .scan-corner.top-left,
  .scan-corner.bottom-left {
    left: 16px;
  }

  .scan-corner.top-right,
  .scan-corner.bottom-right {
    right: 16px;
  }

  .qr-tile {
    width: 101px;
    height: 101px;
    grid-template-columns: repeat(3, 18px);
    grid-template-rows: repeat(3, 18px);
    gap: 6px;
    border-radius: 20px;
  }

  .qr-mark {
    border-width: 5px;
  }

  .qr-line {
    width: 25px;
    height: 25px;
    border-width: 5px;
  }

  .risk-result {
    position: relative;
    margin-top: 24px;
    padding: 15px;
    border-radius: 17px;
  }

  .risk-heading {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 7px;
    padding-right: 48px;
  }

  .risk-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 15px;
  }

  .risk-heading strong {
    font-size: 13px;
  }

  .risk-heading em {
    position: absolute;
    top: 15px;
    right: 15px;
    min-height: 22px;
    padding: 0 10px;
    font-size: 8px;
  }

  .risk-result p {
    margin-top: 13px;
    padding: 11px;
    border-radius: 11px;
    font-size: 11px;
  }

  .risk-checks li {
    min-height: 39px;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 12px;
    font-size: 11px;
  }

  .check-icon {
    width: 27px;
    height: 27px;
    border-radius: 10px;
    font-size: 8px;
  }

  section[id] {
    scroll-margin-top: 24px;
  }

  .premium-band,
  .card,
  .answer-card,
  .package-card,
  .article-body,
  article.policy {
    padding: 20px;
  }

  .package-grid,
  .package-note,
  .blog-list {
    grid-template-columns: 1fr;
  }

  .package-note div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  details.answer-card {
    padding: 0;
  }

  details.answer-card summary {
    padding: 18px 20px;
  }

  details.answer-card p,
  details.answer-card ul,
  details.answer-card ol {
    margin-right: 20px;
    margin-left: 20px;
  }

  .footer a {
    margin: 0 12px 0 0;
  }
}
