:root {
  --bg: #fbfcf8;
  --bg-2: #f1f6ef;
  --card: #ffffff;
  --card-soft: #f7fbf5;
  --text: #18211d;
  --muted: #657067;
  --line: #d8dfd6;
  --line-strong: #b8c4b8;
  --blue: #2964d9;
  --sky: #19a7ce;
  --teal: #0f766e;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;
  --shadow: 0 8px 20px rgba(22, 32, 29, 0.08);
  --shadow-strong: 0 16px 34px rgba(41, 100, 217, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(88, 199, 255, 0.08), transparent 28%),
    linear-gradient(225deg, rgba(255, 154, 106, 0.08), transparent 30%),
    linear-gradient(315deg, rgba(139, 124, 246, 0.06), transparent 36%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(16, 32, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 28, 0.035) 1px, transparent 1px),
    linear-gradient(125deg, rgba(86, 214, 163, 0.08), transparent 26%),
    linear-gradient(245deg, rgba(139, 124, 246, 0.07), transparent 30%);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 70%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0 16%, rgba(88, 199, 255, 0.1) 16% 22%, transparent 22% 100%),
    linear-gradient(62deg, transparent 0 58%, rgba(244, 201, 74, 0.12) 58% 63%, transparent 63% 100%),
    linear-gradient(152deg, transparent 0 70%, rgba(233, 95, 122, 0.08) 70% 76%, transparent 76% 100%),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(16, 32, 28, 0.025) 31px 32px);
}

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

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

button,
input {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 10px;
  padding: 8px 12px;
  color: white;
  background: var(--text);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(184, 196, 184, 0.72);
  background: rgba(251, 252, 248, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--text);
  font-weight: 850;
  line-height: 1.05;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 14px;
  padding: 2px;
  color: white;
  background: linear-gradient(135deg, #ffffff, var(--bg-2));
  box-shadow:
    0 0 0 4px rgba(239, 68, 68, 0.055),
    0 10px 22px rgba(41, 100, 217, 0.12);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -40% -65%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.72) 50%, transparent 60%);
  transform: translateX(-58%) rotate(8deg);
  pointer-events: none;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 8px 10px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(184, 196, 184, 0.8);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 6px 16px rgba(22, 32, 29, 0.06);
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 8px 12px;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(41, 100, 217, 0.16);
}

.button,
.link-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 15px;
  color: var(--text);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.12;
  text-align: center;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 14px 26px rgba(41, 100, 217, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  filter: saturate(1.08) brightness(1.02);
}

.button.secondary,
.link-button,
.button.text {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(22, 32, 29, 0.06);
}

.button.text {
  min-height: 42px;
  padding-inline: 15px;
}

.button[data-missing-link="true"] {
  opacity: 0.64;
}

.hero {
  padding: 38px 0 28px;
}

.product-hero {
  padding-top: 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.hero-grid > div:first-child,
.device-card,
.demo-card,
.card,
.compare-card,
.pricing-card,
.policy-card,
.faq-item,
.cta-strip,
.table {
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) padding-box,
    linear-gradient(145deg, rgba(15, 118, 110, 0.26), rgba(41, 100, 217, 0.2), rgba(215, 95, 69, 0.22)) border-box;
  box-shadow: var(--shadow);
}

.hero-grid > div:first-child {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 22px;
  padding: 26px;
}

.hero-grid > div:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 8% 20%, rgba(86, 214, 163, 0.18), transparent 28%),
    radial-gradient(ellipse at 46% 6%, rgba(139, 124, 246, 0.12), transparent 28%),
    radial-gradient(ellipse at 88% 56%, rgba(255, 154, 106, 0.16), transparent 30%);
  pointer-events: none;
}

.hero-grid > div:first-child > * {
  position: relative;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sky);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--text);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
}

h2 {
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 850;
}

h3 {
  font-size: 19px;
  font-weight: 850;
}

.lead {
  max-width: 64ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.microcopy {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-strip span,
.test-chip {
  border: 1px solid rgba(184, 196, 184, 0.9);
  border-radius: 999px;
  padding: 7px 10px;
  color: #084c46;
  background: rgba(86, 214, 163, 0.14);
  font-size: 12px;
  font-weight: 900;
}

.device-card {
  position: relative;
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  border-radius: 22px;
  padding: 16px;
  background:
    radial-gradient(ellipse at 72% 14%, rgba(41, 100, 217, 0.12), transparent 26%),
    radial-gradient(ellipse at 22% 76%, rgba(86, 214, 163, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.9);
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(184, 196, 184, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.browser-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(184, 196, 184, 0.75);
  padding: 9px 12px;
  background: rgba(241, 246, 239, 0.72);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.browser-bar span:nth-child(1) { background: #ef4444; }
.browser-bar span:nth-child(2) { background: #f59e0b; }
.browser-bar span:nth-child(3) { background: #22c55e; }

.browser-bar div {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(184, 196, 184, 0.75);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
}

.browser-content {
  position: relative;
  min-height: 260px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(88, 199, 255, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.66);
}

.article-lines {
  display: grid;
  gap: 10px;
  max-width: 72%;
}

.article-lines span,
.filter-bars span,
.article-grid span {
  display: block;
  border-radius: 999px;
  background: rgba(101, 112, 103, 0.16);
}

.article-lines span {
  height: 12px;
}

.article-lines span:nth-child(1) { width: 64%; height: 20px; background: rgba(24, 33, 29, 0.18); }
.article-lines span:nth-child(2) { width: 82%; }
.article-lines span:nth-child(3) { width: 74%; }
.article-lines span:nth-child(4) { width: 48%; }

.blocked-ad {
  position: absolute;
  top: 82px;
  right: 20px;
  width: 118px;
  border: 1px dashed rgba(15, 118, 110, 0.5);
  border-radius: 16px;
  padding: 24px 12px;
  color: #084c46;
  background: rgba(86, 214, 163, 0.12);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 42px;
}

.article-grid span {
  height: 76px;
  border-radius: 14px;
}

.phone-shell {
  position: absolute;
  right: 32px;
  bottom: 50px;
  width: min(240px, calc(100% - 58px));
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 24px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 253, 249, 0.9)),
    radial-gradient(ellipse at 12% 10%, rgba(86, 214, 163, 0.16), transparent 36%);
  box-shadow: 0 22px 44px rgba(41, 100, 217, 0.18);
}

.phone-top {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.phone-top img {
  width: 38px;
  height: 38px;
  border-radius: 13px;
}

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

.phone-top strong {
  font-size: 15px;
  line-height: 1;
}

.phone-top small {
  margin-top: 3px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiet-score {
  margin-top: 14px;
  border: 1px solid rgba(184, 196, 184, 0.9);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.quiet-score span,
.popup-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quiet-score strong {
  display: block;
  margin-top: 2px;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.phone-shell button {
  width: 100%;
  min-height: 40px;
  margin-top: 10px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-size: 12px;
  font-weight: 900;
}

.popup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 9px;
  border: 1px solid rgba(184, 196, 184, 0.8);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.7);
}

.popup-row strong {
  color: var(--text);
}

.filter-bars {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.filter-bars span {
  height: 7px;
}

.filter-bars span:nth-child(1) { width: 92%; background: rgba(41, 100, 217, 0.54); }
.filter-bars span:nth-child(2) { width: 70%; background: rgba(15, 118, 110, 0.38); }
.filter-bars span:nth-child(3) { width: 82%; background: rgba(101, 112, 103, 0.18); }

.compact-section {
  padding-top: 20px;
}

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

.proof-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

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

.proof-card strong {
  color: var(--text);
  font-size: 28px;
  line-height: 1;
}

.proof-card span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.split-section {
  padding-top: 42px;
}

.split-grid,
.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 20px;
  align-items: stretch;
}

.workflow-list {
  display: grid;
  gap: 12px;
}

.workflow-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 253, 249, 0.74)),
    radial-gradient(ellipse at 8% 20%, rgba(86, 214, 163, 0.12), transparent 28%);
  box-shadow: var(--shadow);
}

.workflow-list article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-size: 12px;
  font-weight: 950;
}

.workflow-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.demo-card {
  display: grid;
  align-content: start;
  gap: 12px;
  border-radius: 22px;
  padding: 16px;
}

.brand-showcase {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 16px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 253, 249, 0.72)),
    radial-gradient(ellipse at 18% 50%, rgba(86, 214, 163, 0.14), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.brand-showcase img {
  width: 104px;
  height: 104px;
  border: 1px solid rgba(96, 165, 250, 0.32);
  border-radius: 18px;
  padding: 2px;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, #ffffff, var(--bg-2));
  box-shadow:
    0 0 0 4px rgba(239, 68, 68, 0.055),
    0 12px 24px rgba(41, 100, 217, 0.14);
}

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

.brand-showcase strong {
  font-size: 24px;
  line-height: 1.05;
}

.brand-showcase span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.demo-video {
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(184, 196, 184, 0.9);
  border-radius: 18px;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(41, 100, 217, 0.08), rgba(86, 214, 163, 0.08)),
    #ffffff;
}

.caption {
  margin: 0 2px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 52px 0;
}

.section.alt {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 16% 18%, rgba(88, 199, 255, 0.12), transparent 30%),
    radial-gradient(ellipse at 58% 72%, rgba(244, 201, 74, 0.12), transparent 28%),
    radial-gradient(ellipse at 92% 30%, rgba(233, 95, 122, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 252, 248, 0.78));
}

.section-head {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

.card,
.compare-card,
.pricing-card,
.policy-card {
  border-radius: var(--radius);
  padding: 18px;
}

.card p,
.compare-card p,
.pricing-card p,
.policy-card p,
.faq-answer,
td {
  color: var(--muted);
}

.card p,
.compare-card p,
.policy-card p {
  margin: 10px 0 0;
}

.icon-tile {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(41, 100, 217, 0.22);
  border-radius: 12px;
  color: var(--teal);
  background:
    linear-gradient(135deg, rgba(86, 214, 163, 0.16), rgba(41, 100, 217, 0.08)),
    rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 950;
}

.compare-card.good,
.pricing-card.pro {
  border-color: rgba(41, 100, 217, 0.3);
  background:
    linear-gradient(135deg, rgba(41, 100, 217, 0.1), rgba(86, 214, 163, 0.12)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.75);
}

.plain-list li::before {
  content: "";
  width: 18px;
  height: 2px;
  margin-top: 12px;
  border-radius: 99px;
  background: var(--sky);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 22px;
  padding: 24px;
}

.cta-strip .lead {
  margin-top: 10px;
}

.privacy-section {
  padding-top: 48px;
}

.privacy-grid {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) padding-box,
    linear-gradient(145deg, rgba(15, 118, 110, 0.26), rgba(41, 100, 217, 0.2), rgba(215, 95, 69, 0.22)) border-box;
  box-shadow: var(--shadow);
}

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

.privacy-cards article {
  border: 1px solid rgba(184, 196, 184, 0.9);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
}

.privacy-cards span,
.privacy-cards strong {
  display: block;
}

.privacy-cards span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-cards strong {
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.1;
}

.page-hero {
  padding: 46px 0 28px;
}

.page-hero .container {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) padding-box,
    linear-gradient(145deg, rgba(15, 118, 110, 0.26), rgba(41, 100, 217, 0.2), rgba(215, 95, 69, 0.22)) border-box;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 16ch;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.pricing-card {
  display: grid;
  align-content: start;
}

.price {
  margin: 16px 0 0;
  font-size: 40px;
  font-weight: 950;
  line-height: 1;
}

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

.table {
  overflow-x: auto;
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

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

.donation-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 22px;
  text-align: center;
}

.donation-card strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius);
}

.faq-question {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  padding: 15px 16px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.faq-question::after {
  content: "+";
  color: var(--sky);
  font-size: 22px;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  background: rgba(241, 246, 239, 0.78);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer a {
  color: var(--text);
  font-weight: 750;
}

:focus-visible {
  outline: 3px solid rgba(25, 167, 206, 0.62);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .compare-grid,
  .pricing-grid,
  .donation-grid,
  .proof-grid,
  .split-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

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

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

  .cta-strip,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-shell {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 300px);
    margin: -88px auto 0;
  }

  .browser-content {
    min-height: 220px;
  }
}

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

  .nav {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    display: flex;
    gap: 6px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 1 0 auto;
    min-width: 88px;
    padding: 8px 6px;
    font-size: 13px;
    text-align: center;
    background: rgba(255, 255, 255, 0.56);
  }

  .hero-grid > div:first-child,
  .device-card,
  .page-hero .container,
  .privacy-grid {
    padding: 20px;
  }

  .hero-grid {
    gap: 14px;
  }

  .brand-showcase {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .brand-showcase img {
    width: 82px;
    height: 82px;
  }

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

  .browser-content {
    min-height: 205px;
    padding: 18px;
  }

  .blocked-ad {
    width: 102px;
    right: 16px;
    padding: 18px 10px;
  }

  .phone-shell {
    margin-top: -54px;
  }

  h1 {
    font-size: 38px;
  }

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

  .button,
  .link-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand {
    min-width: 0;
  }

  .brand > span:last-child {
    overflow-wrap: anywhere;
  }
}

/* Compact production polish */
body {
  font-size: 14.5px;
  line-height: 1.45;
}

.nav {
  min-height: 58px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
}

.logo-mark img {
  border-radius: 10px;
}

.nav-links {
  font-size: 13px;
}

.nav-links a {
  padding: 7px 9px;
}

.button,
.link-button {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 14px;
}

.hero {
  padding: 28px 0 20px;
}

.product-hero {
  padding-top: 26px;
}

.hero-grid {
  gap: 16px;
}

.hero-grid > div:first-child,
.device-card,
.page-hero .container,
.privacy-grid {
  padding: 20px;
}

h1 {
  max-width: 16ch;
  font-size: clamp(29px, 3.7vw, 40px);
}

h2 {
  font-size: clamp(20px, 2.35vw, 26px);
}

h3 {
  font-size: 17px;
}

.lead,
.section-head p {
  font-size: 14.5px;
}

.lead {
  margin-top: 12px;
}

.eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
}

.hero-actions,
.button-row {
  margin-top: 16px;
}

.trust-strip {
  margin-top: 14px;
}

.section {
  padding: 32px 0;
}

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

.card,
.compare-card,
.pricing-card,
.policy-card,
.proof-card,
.workflow-list article,
.privacy-cards article {
  padding: 14px;
}

.grid,
.proof-grid,
.pricing-grid,
.workflow-list,
.privacy-cards,
.faq-list {
  gap: 10px;
}

.page-hero {
  padding: 24px 0 12px;
}

.page-hero h1 {
  max-width: 20ch;
}

.pricing-card p {
  margin-top: 8px;
}

.price {
  margin-top: 12px;
  font-size: 28px;
}

.check-list,
.plain-list {
  gap: 8px;
  margin-top: 12px;
}

th,
td {
  padding: 11px 13px;
}

.faq-question {
  min-height: 46px;
  padding: 12px 14px;
  font-size: 14px;
}

.faq-answer {
  padding: 0 14px 14px;
}

.cta-strip {
  padding: 18px;
}

.footer {
  padding: 22px 0;
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
  }

  .hero-grid > div:first-child,
  .device-card,
  .page-hero .container,
  .privacy-grid {
    padding: 16px;
  }

  h1 {
    font-size: 28px;
  }

  .lead,
  .section-head p {
    font-size: 14px;
  }

  .section {
    padding: 24px 0;
  }

  .price {
    font-size: 26px;
  }

  .nav-links a {
    min-width: 68px;
    font-size: 12px;
  }

  .page-hero {
    padding: 20px 0 8px;
  }
}
