:root {
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #1b1f33;
  --muted: #667085;
  --line: #dde3f0;
  --primary: #ff6b2c;
  --primary-2: #ff8756;
  --purple: #6f47ff;
  --shadow: 0 24px 60px rgba(31, 41, 85, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif;
  background: #ffffff;
}

a { color: inherit; text-decoration: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 12px;
}
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: none;
  background: #ffffff;
  border-bottom: 1px solid rgba(221, 227, 240, 0.72);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: center / cover no-repeat url("./assets/brand/favicon.svg?v=2");
  box-shadow: none;
}

.brand-text {
  letter-spacing: -0.02em;
  font-size: 1em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}
.nav-item {
  position: relative;
}
.nav-links > .nav-item > a,
.nav-text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 0;
}
.nav-item-dropdown > a::after {
  content: "⌄";
  margin-left: 6px;
  font-size: 12px;
  transform: translateY(-1px);
}
.nav-links > .nav-item > a::before,
.nav-text-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.nav-links > .nav-item > a:hover::before,
.nav-text-link:hover::before,
.nav-item:hover > a::before {
  transform: scaleX(1);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border: 1px solid #e2e7f0;
  border-radius: 16px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 18px 38px rgba(22, 31, 58, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #475067;
  font-size: 14px;
  font-weight: 600;
}
.nav-dropdown a:hover {
  background: #f5f7fc;
  color: #1b1f33;
}
.nav-dropdown-text {
  min-width: 260px;
}
.nav-contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
}
.nav-contact-block strong {
  color: #1b1f33;
  font-size: 14px;
}
.nav-contact-block span {
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-language-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: #1b1f33;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.nav-language-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
.nav-language-globe {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 1.8px solid #1b1f33;
  border-radius: 50%;
}
.nav-language-globe::before,
.nav-language-globe::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav-language-globe::before {
  width: 6px;
  height: 18px;
  border-left: 1.5px solid #1b1f33;
  border-right: 1.5px solid #1b1f33;
  border-radius: 999px;
}
.nav-language-globe::after {
  width: 18px;
  height: 6px;
  border-top: 1.5px solid #1b1f33;
  border-bottom: 1.5px solid #1b1f33;
  border-radius: 999px;
}
.nav-language-btn:hover {
  color: #1b1f33;
}
.nav-text-link {
  color: #667085;
  font-size: 14px;
  font-weight: 700;
}
.nav-download-btn {
  min-height: 46px;
  padding: 0 22px;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 28px rgba(255, 107, 44, 0.24);
}
.btn-secondary {
  background: rgba(255,255,255,0.78);
  border-color: var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 24px;
}
.hero-brave {
  min-height: 540px;
  background: #ffffff;
}
.hero-watermark {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: clamp(220px, 32vw, 520px);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.03em;
  color: rgba(20, 24, 34, 0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.hero-layout {
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(111, 71, 255, 0.1);
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
}
.hero-copy-brave {
  max-width: 700px;
  padding-top: 12px;
  position: relative;
  z-index: 2;
}
.hero-copy h1,
.section-head h2,
.split-copy h2,
.download-box h2 {
  margin: 18px 0 16px;
  line-height: .9;
  letter-spacing: -0.06em;
}
.hero-copy-brave h1 {
  max-width: 820px;
  font-size: clamp(76px, 10vw, 132px);
}
.hero-copy p,
.section-head p,
.split-copy p,
.download-box p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 17px;
}
.hero-copy-brave p {
  max-width: 820px;
  color: #202433;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 600;
}
.hero-actions,
.download-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-actions-brave .btn-primary {
  min-height: 58px;
  padding: 0 30px;
  font-size: 18px;
}
.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 600;
}
.check-list li::before {
  content: "•";
  color: #20b26c;
  margin-right: 8px;
}

.hero-cards-wrap {
  position: relative;
  padding: 32px 0 24px;
  margin-top: 24px;
  overflow: hidden;
}
.hero-cards-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.hero-feature-card {
  min-height: 360px;
  padding: 24px 24px 0;
  border: 2px solid #2f3138;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.hero-feature-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
}
.hero-feature-card p {
  margin: 0;
  color: #2d3342;
  font-size: 16px;
  line-height: 1.5;
}
.search-card { background: #ffffff; }
.ai-card { background: #dfe8fb; }
.vpn-card { background: #ffe1d1; }
.search-demo {
  margin-top: 18px;
  padding: 20px 18px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #fff 0%, #fafafb 100%);
  box-shadow: inset 0 0 0 1px rgba(225, 230, 238, 0.85);
}
.search-demo::before {
  content: "无痕搜索网页……";
  display: block;
  padding: 14px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(35, 43, 68, 0.08);
  color: #a1a8b8;
  font-size: 14px;
}
.search-demo span {
  display: block;
  color: #424a5b;
  line-height: 1.7;
}
.ai-demo,
.vpn-demo {
  position: relative;
  height: 190px;
  margin-top: 18px;
}
.ai-demo-image,
.vpn-demo-image {
  border-radius: 20px 20px 0 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.ai-demo-image {
  background-image: url("./assets/features/ai-assistant.svg");
}
.vpn-demo-image {
  background-image: url("./assets/features/vpn-feature.svg");
}

.section { padding: 92px 0; }
.alt { background: #ffffff; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.network-section {
  padding-top: 56px;
}
.network-head {
  max-width: 860px;
  margin-bottom: 30px;
}
.network-head h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.network-head p {
  max-width: 820px;
  color: #171a26;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.4;
}
.network-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: stretch;
}
.network-accordion {
  overflow: hidden;
  border-radius: 20px;
  background: #1f1f21;
  color: #fff;
}
.network-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.network-item:last-child {
  border-bottom: 0;
}
.network-item summary {
  position: relative;
  display: block;
  padding: 26px 64px 26px 28px;
  cursor: pointer;
  list-style: none;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}
.network-item summary::-webkit-details-marker {
  display: none;
}
.network-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
}
.network-item[open] summary::after {
  content: "—";
}
.network-body {
  padding: 0 28px 26px;
}
.network-body p {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  line-height: 1.6;
}
.network-body p:last-child {
  margin-bottom: 0;
}
.network-media-panel {
  min-height: 740px;
  border: 2px solid #2f3138;
  border-radius: 20px;
  background: #b4de9e;
  overflow: hidden;
}
.network-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #b4de9e;
}
.section-head h2,
.split-copy h2,
.download-box h2 { font-size: clamp(34px, 5vw, 58px); }
.compact { margin-bottom: 24px; }
.compare-section {
  padding-top: 40px;
}
.compare-head {
  max-width: 980px;
  margin-bottom: 18px;
}
.compare-head h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.compare-head p {
  max-width: 980px;
  color: #1a1d29;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.4;
}
.compare-caption {
  margin: 0 0 26px;
  color: #171a26;
  font-size: 18px;
  font-weight: 800;
}
.compare-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.compare-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #d8dceb;
  border-radius: 999px;
  background: #fff;
  color: #5b6173;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(24, 31, 52, 0.04);
  cursor: pointer;
}
.compare-tab-badge {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.brave-badge { background-image: url("./assets/icons/brave.png"); }
.chrome-badge { background-image: url("./assets/icons/chrome.png"); }
.google-badge { background-image: url("./assets/icons/google-compare-card.png"); }
.edge-badge { background-image: url("./assets/icons/edge.png"); }
.firefox-badge { background-image: url("./assets/icons/firefox.png"); }
.safari-badge { background-image: url("./assets/icons/safari.png"); }
.ddg-badge { background-image: url("./assets/icons/ddg-compare-card.jpg"); }
.compare-tab.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #5661ff, #6f47ff);
  box-shadow: 0 12px 24px rgba(99, 90, 255, 0.22);
}
.compare-tab.is-active .compare-tab-badge {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35);
}
.compare-browser-frame {
  padding: 0;
  border: 2px solid #1d1f27;
  border-radius: 18px;
  background: #0f1015;
  box-shadow: 0 18px 40px rgba(16, 18, 28, 0.14);
  overflow: hidden;
}
.compare-browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 0 14px;
  background: linear-gradient(180deg, #11131a, #191c24);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.compare-browser-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}
.compare-browser-controls span,
.compare-browser-actions span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
}
.compare-browser-controls span:nth-child(1) { background: #ff5f57; }
.compare-browser-controls span:nth-child(2) { background: #febc2e; }
.compare-browser-controls span:nth-child(3) { background: #28c840; }
.compare-browser-pill {
  flex: 1;
  min-width: 0;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.compare-browser-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-browser-actions span {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
}
.compare-browser-window {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #fff;
  overflow: hidden;
}
.compare-image,
.compare-image-inner {
  position: absolute;
  inset: 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.compare-image-overlay {
  width: 52%;
  overflow: hidden;
  border-right: 2px solid #5a5ef8;
}
.compare-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}
.compare-handle {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #5e64ff, #4955ee);
  color: #fff;
  border: 2px solid #2f39c8;
  box-shadow: 0 14px 28px rgba(58, 68, 214, 0.3);
  z-index: 3;
  pointer-events: none;
}
.compare-handle::before,
.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 9999px;
  background: #5a5ef8;
  transform: translateY(-50%);
}
.compare-handle::before { left: 50%; margin-left: -1px; }
.compare-handle::after { display: none; }
.compare-handle span {
  display: inline-block;
  margin-left: 2px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.win-section {
  padding-top: 52px;
}
.win-head {
  max-width: 900px;
  margin-bottom: 28px;
}
.win-head h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.win-head p {
  margin: 0;
  color: #191c28;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.4;
}
.win-head p a {
  color: #4e5cff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.win-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.win-card {
  position: relative;
  min-height: 330px;
  padding: 22px 24px 78px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(55, 63, 101, 0.10);
}
.win-card-orange { background: linear-gradient(135deg, #ffd79e 0%, #ffb7a7 42%, #6f66ff 100%); }
.win-card-purple { background: linear-gradient(135deg, #a9a4ff 0%, #b6b5ff 22%, #7a73ff 100%); }
.win-card-gold { background: linear-gradient(135deg, #ffd694 0%, #ffbf8b 42%, #d7b3ff 100%); }
.win-card-lilac { background: linear-gradient(135deg, #d9d0ff 0%, #c7c4ff 35%, #c7a2bb 100%); }
.win-card-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.win-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background-color: rgba(255,255,255,0.9);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  box-shadow: 0 4px 12px rgba(30, 33, 48, 0.08);
}
.win-card h3 {
  margin: 0 0 10px;
  color: #171a26;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.win-card p {
  margin: 0 0 18px;
  color: rgba(23, 26, 38, 0.9);
  font-size: 16px;
  line-height: 1.45;
}
.win-card-link {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f5dff, #4b43d5);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(70, 77, 223, 0.24);
}

.testimonial-section {
  padding-top: 52px;
}
.testimonial-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.testimonial-head h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.testimonial-head p {
  color: #1a1d29;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.45;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.testimonial-card {
  position: relative;
  min-height: 320px;
  padding: 34px 34px 30px;
  border: 1px solid #dbe1ef;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f8f9fd);
  box-shadow: 0 14px 30px rgba(38, 52, 88, 0.06);
}
.testimonial-stars {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: #ffb534;
  font-size: 18px;
  letter-spacing: 0.2em;
}
.testimonial-quote {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  color: #171a26;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0;
}
.testimonial-user {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.testimonial-user strong {
  font-size: 16px;
}
.testimonial-user span {
  color: #6a7286;
  font-size: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.feature-card,
.stats-grid article,
.download-box,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 14px 30px rgba(38, 52, 88, 0.06);
}
.feature-card {
  padding: 28px;
}
.feature-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}
.feature-card p { margin: 0; color: var(--muted); line-height: 1.75; }

.split-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.security-panel {
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, #1e2435, #2a3145);
  color: #fff;
  box-shadow: 0 24px 48px rgba(24, 31, 52, 0.24);
}
.security-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.security-row:last-child { border-bottom: 0; }
.security-row span { color: rgba(255,255,255,0.72); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.stats-grid article { padding: 28px; }
.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.download-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
}

.faq-section {
  padding-top: 40px;
}
.faq-title-row {
  margin-bottom: 18px;
}
.faq-title-row h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.faq-list {
  display: grid;
  gap: 0;
}
.faq-list-wide {
  border: 1px solid #cfd5df;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.faq-list details {
  border-bottom: 1px solid #d8dde7;
  background: #fff;
}
.faq-list details:last-child {
  border-bottom: 0;
}
.faq-list details[open] {
  background: #fff;
}
.faq-list summary {
  position: relative;
  padding: 24px 64px 24px 28px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  color: #171a26;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "⌄";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  color: #171a26;
  font-size: 28px;
  line-height: 1;
}
.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-list p {
  margin: 0;
  padding: 0 28px 24px;
  color: #5f677b;
  font-size: 16px;
  line-height: 1.7;
}
#faq-home .faq-title-row,
#faq-home .faq-list,
#faq-home .faq-list-wide,
#faq-home .faq-list details,
#faq-home .faq-list summary,
#faq-home .faq-list p {
  box-sizing: border-box;
}
#faq-home .faq-list-wide {
  width: 100%;
  max-width: 100%;
  border: 1px solid #cfd5df;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
#faq-home .faq-list details {
  display: block;
  border-bottom: 1px solid #d8dde7;
  background: #fff;
}
#faq-home .faq-list details:last-child {
  border-bottom: 0;
}
#faq-home .faq-list summary {
  display: block;
  width: 100%;
}

.footer-cta-section {
  padding-top: 36px;
}
.footer-cta-card {
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}
.footer-cta-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: center;
  min-height: 360px;
  background: #1d1d1f;
  border: 1px solid #1d1d1f;
  border-bottom: 0;
}
.footer-cta-copy {
  padding: 48px 44px;
  color: #ffffff;
}
.footer-cta-copy h2 {
  margin: 0 0 24px;
  max-width: 640px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.footer-cta-copy p {
  max-width: 700px;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.9);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
  font-weight: 600;
}
.footer-cta-btn {
  min-height: 46px;
  padding: 0 22px;
}
.footer-cta-visual {
  position: relative;
  height: 100%;
  min-height: 360px;
}
.footer-cta-visual-image {
  background-image: url("./assets/footer/footer-device-illustration.svg?v=2");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-cta-business {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #3f2dff, #4a35d8);
  color: #fff;
  flex-wrap: wrap;
}
.footer-cta-business strong {
  font-size: 18px;
}
.footer-cta-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-cta-tags span,
.footer-cta-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: #3c37bf;
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  padding: 36px 0 28px;
  background: #ffffff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid #e6eaf2;
}
.footer-brand {
  margin-bottom: 16px;
}
.footer-brand-col {
  max-width: 360px;
}
.footer-brand-copy {
  margin: 0 0 18px;
  color: #667085;
  line-height: 1.7;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #1b1f33;
  font-size: 16px;
  font-weight: 700;
}
.social-icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}
.social-x { background-image: url("./assets/social/x.svg?v=2"); }
.social-youtube { background-image: url("./assets/social/youtube.svg"); }
.social-telegram { background-image: url("./assets/social/facebook.svg"); }
.social-github { background-image: url("./assets/social/reddit.svg?v=2"); }
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-col h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.footer-links-col a {
  color: #667085;
  font-size: 15px;
}
.footer-contact-col {
  gap: 18px;
}
.footer-contact-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-group strong {
  color: #1b1f33;
  font-size: 15px;
}
.footer-contact-group a,
.footer-contact-group span {
  color: #667085;
  font-size: 15px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid #e6eaf2;
  color: #667085;
  font-size: 14px;
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.download-hero-section {
  position: relative;
  overflow: hidden;
  padding: 48px 0 18px;
  min-height: 820px;
}
.download-hero-watermark {
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: clamp(220px, 34vw, 520px);
  line-height: 0.78;
  letter-spacing: -0.08em;
  font-weight: 800;
  color: rgba(20, 24, 34, 0.05);
  white-space: nowrap;
  pointer-events: none;
}
.download-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 40px;
  align-items: start;
}
.download-hero-copy {
  max-width: 760px;
}
.download-hero-copy h1 {
  margin: 0 0 22px;
  max-width: 760px;
  font-size: clamp(64px, 9vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.08em;
}
.download-hero-copy p {
  max-width: 780px;
  margin: 0;
  color: #121722;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.45;
  font-weight: 700;
}
.download-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.download-hero-primary {
  min-height: 56px;
  padding: 0 28px;
  font-size: 15px;
  box-shadow: 0 16px 28px rgba(255, 107, 44, 0.22);
}
.download-hero-meta {
  margin-top: 18px;
}
.download-hero-meta p {
  max-width: 520px;
  color: #30384a;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}
.download-hero-meta a {
  color: #2563eb;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
.download-hero-meta a:hover {
  color: #1d4ed8;
}
.download-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 10px 16px;
  border: 1px solid #d8dde8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(22, 31, 58, 0.06);
}
.download-hero-visual-wrap {
  position: relative;
  z-index: 1;
  margin-top: 22px;
}
.download-hero-image-ref {
  width: 100%;
}
.download-hero-image-ref img {
  display: block;
  width: min(1180px, 100%);
  height: auto;
  margin: 0 auto;
}
.download-store-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(#f25022 0 0) left top/15px 15px no-repeat,
    linear-gradient(#7fba00 0 0) right top/15px 15px no-repeat,
    linear-gradient(#00a4ef 0 0) left bottom/15px 15px no-repeat,
    linear-gradient(#ffb900 0 0) right bottom/15px 15px no-repeat;
}
.download-store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: #111827;
}
.download-store-badge-text small {
  font-size: 11px;
}
.download-store-badge-text strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}
.download-hero-logo-wrap {
  display: flex;
  justify-content: flex-end;
}
.download-hero-logo-box {
  width: 124px;
  height: 124px;
  border: 2px solid #232834;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-hero-logo-mark {
  width: 66px;
  height: 66px;
  background: center / contain no-repeat url("../assets/brand/favicon.svg?v=2");
}
.download-platforms-section,
.download-info-section,
.download-steps-section {
  padding-top: 40px;
}
.download-mobile-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
  background: transparent;
}
.download-mobile-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 10px;
}
.download-mobile-main {
  padding: 28px 28px 30px;
  border: 2px solid #222833;
  border-radius: 24px;
  background: #fff;
}
.download-mobile-copy > .download-mobile-main > h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.download-mobile-copy > .download-mobile-main > p {
  margin: 18px 0 0;
  max-width: 760px;
  color: #1e2433;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 600;
}
.download-mobile-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}
.download-mobile-qr {
  width: 120px;
  height: 120px;
  border: 2px solid #222833;
  border-radius: 18px;
  background: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 120px;
}
.download-mobile-qr img {
  display: block;
  width: 100%;
  height: auto;
}
.download-mobile-store-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.download-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 196px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}
.download-store-btn.google-play::before {
  content: "▶";
  margin-right: 10px;
  font-size: 16px;
}
.download-store-btn.app-store::before {
  content: "";
  margin-right: 10px;
  font-size: 20px;
  line-height: 1;
}
.download-mobile-note {
  width: calc(100% - 54px);
  margin-top: 12px;
  padding: 28px 30px;
  border: 2px solid #2c3141;
  border-radius: 22px;
  background: #e7e0ff;
}
.download-mobile-note h3 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.03em;
}
.download-mobile-note p {
  margin: 0;
  color: #30384a;
  font-size: 17px;
  line-height: 1.75;
}
.download-mobile-note a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}
.download-mobile-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: 26px;
}
.download-mobile-visual img {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  border: 2px solid #222833;
  border-radius: 26px;
  background: #fff;
}
.download-section-head {
  max-width: 820px;
}
.download-section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.download-section-head p {
  margin: 0;
  color: #667085;
  font-size: 18px;
  line-height: 1.6;
}
.download-info-grid,
.download-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.download-info-card,
.download-step-card {
  padding: 28px;
  border: 1px solid #e3e8f3;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(38, 52, 88, 0.06);
}
.download-info-head {
  max-width: 760px;
  margin-bottom: 20px;
}
.download-info-card h3 {
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.download-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: #445065;
  font-weight: 600;
}
.download-check-list li::before {
  content: "✓";
  margin-right: 8px;
  color: #20b26c;
}
.download-spec-list {
  display: grid;
  gap: 14px;
}
.download-spec-list div {
  display: grid;
  gap: 6px;
}
.download-spec-list strong {
  color: #1b1f33;
}
.download-spec-list span {
  color: #667085;
  line-height: 1.6;
}
.download-step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffefe7, #efe8ff);
  color: #1b1f33;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .split-grid,
  .network-grid,
  .download-hero-grid,
  .download-mobile-card,
  .download-info-grid,
  .download-steps-grid { grid-template-columns: 1fr; }
  .hero-cards-grid,
  .feature-grid,
  .stats-grid,
  .win-grid,
  .testimonial-grid,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .download-hero-logo-wrap {
    justify-content: flex-start;
  }
  .footer-cta-main {
    grid-template-columns: 1fr;
  }
  .network-media-panel {
    min-height: 520px;
  }
  .compare-head p {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1180px); }
  .nav { min-height: 72px; }
  .nav-links { display: none; }
  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .nav-text-link {
    display: none;
  }
  .hero {
    padding: 68px 0 28px;
  }
  .section { padding: 64px 0; }
  .hero-watermark {
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: 100%;
    font-size: 120px;
    line-height: 0.82;
    letter-spacing: -0.01em;
  }
  .hero-copy-brave h1 {
    font-size: 62px;
    line-height: .92;
  }
  .hero-copy p,
  .section-head p,
  .split-copy p,
  .download-box p,
  .faq-list p { font-size: 16px; }
  .hero-copy-brave p {
    font-size: 20px;
    max-width: 520px;
  }
  .hero-cards-grid,
  .feature-grid,
  .stats-grid,
  .win-grid,
  .testimonial-grid,
  .download-os-grid { grid-template-columns: 1fr; }
  .download-hero-section {
    min-height: auto;
    padding: 34px 0 20px;
  }
  .download-hero-visual-wrap {
    margin-top: 18px;
  }
  .download-hero-watermark {
    bottom: -10px;
    font-size: 120px;
    line-height: 0.82;
    letter-spacing: -0.04em;
  }
  .download-hero-copy h1 {
    font-size: 52px;
  }
  .download-hero-copy p,
  .download-section-head p {
    font-size: 16px;
  }
  .download-hero-logo-box {
    width: 104px;
    height: 104px;
    border-radius: 16px;
  }
  .download-hero-logo-mark {
    width: 54px;
    height: 54px;
  }
  .download-store-badge {
    padding: 10px 14px;
  }
  .download-mobile-copy > .download-mobile-main > h2,
  .download-step-card h3,
  .download-info-card h3 {
    font-size: 24px;
  }
  .download-mobile-copy > .download-mobile-main > p,
  .download-mobile-note p {
    font-size: 16px;
  }
  .download-mobile-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .download-mobile-note {
    width: 100%;
  }
  .download-mobile-visual {
    justify-content: center;
    margin-top: 0;
  }
  .footer-cta-copy {
    padding: 32px 22px;
  }
  .footer-cta-copy h2 {
    font-size: 34px;
  }
  .footer-cta-copy p {
    font-size: 16px;
  }
  .footer-cta-main {
    min-height: auto;
  }
  .footer-cta-visual {
    min-height: 280px;
  }
  .footer-cta-business {
    justify-content: flex-start;
    padding: 20px 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px;
  }
  .faq-title-row h2 {
    font-size: 32px;
  }
  .faq-list summary {
    padding: 20px 54px 20px 18px;
    font-size: 16px;
  }
  .faq-list summary::after {
    right: 18px;
    font-size: 24px;
  }
  .faq-list p {
    padding: 0 18px 20px;
    font-size: 15px;
  }
  .testimonial-card {
    min-height: auto;
    padding: 28px 22px 24px;
  }
  .testimonial-head h2 {
    font-size: 34px;
  }
  .testimonial-head p {
    font-size: 16px;
  }
  .testimonial-quote {
    font-size: 17px;
  }
  .win-head h2 {
    font-size: 34px;
  }
  .win-head p {
    font-size: 16px;
  }
  .win-card {
    min-height: 330px;
  }
  .win-card h3 {
    font-size: 24px;
  }
  .compare-head h2 {
    font-size: 34px;
  }
  .compare-head p {
    font-size: 16px;
  }
  .compare-caption {
    font-size: 16px;
  }
  .compare-tabs {
    gap: 10px;
  }
  .compare-tab {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
  }
  .compare-browser-bar {
    height: auto;
    padding: 10px 12px;
    flex-wrap: wrap;
  }
  .compare-browser-pill {
    order: 3;
    flex-basis: 100%;
  }
  .network-head h2 {
    font-size: 34px;
  }
  .network-head p {
    font-size: 16px;
  }
  .network-item summary {
    padding: 22px 56px 22px 22px;
    font-size: 18px;
  }
  .network-body {
    padding: 0 22px 22px;
  }
  .network-media-panel {
    min-height: 360px;
  }
  .hero-feature-card {
    min-height: auto;
    padding-bottom: 20px;
  }
  .download-box { flex-direction: column; align-items: flex-start; }
  .hero-actions,
  .download-actions { width: 100%; }
  .hero-actions .btn,
  .download-actions .btn,
  .nav > .btn { width: 100%; }
}
.hero-redesign {
  padding: 88px 0 48px;
}
.hero-redesign-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: center;
}
.hero-redesign-copy {
  max-width: 620px;
}
.hero-redesign-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.hero-redesign-copy p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.8;
  color: #596377;
}
.hero-redesign-actions {
  margin-top: 28px;
}
.hero-redesign-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}
.hero-redesign-points li {
  padding: 12px 16px;
  border: 1px solid #e6eaf2;
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
}
.hero-redesign-panel {
  padding: 22px;
  border: 1px solid #e5eaf3;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, #f7f8fd 100%);
  box-shadow: 0 28px 60px rgba(37, 44, 97, 0.08);
}
.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.hero-panel-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 142px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #eceff5;
}
.hero-panel-card span,
.feature-kicker,
.step-card span {
  color: #6f47ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-panel-card strong {
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}
.hero-panel-card-primary {
  min-height: 164px;
  background: linear-gradient(135deg, #6f47ff 0%, #8b5cf6 100%);
  border-color: transparent;
  color: #fff;
}
.hero-panel-card-primary span {
  color: rgba(255,255,255,0.78);
}
.section-head-left {
  text-align: left;
  max-width: 760px;
}
.proof-section,
.compare-redesign-section,
.faq-preview-section {
  background: #fbfcff;
}
.proof-grid,
.feature-grid-redesign,
.steps-grid,
.faq-preview-grid {
  display: grid;
  gap: 22px;
}
.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.proof-card,
.feature-card-redesign,
.step-card,
.faq-preview-card {
  padding: 28px;
  border: 1px solid #e7ebf4;
  border-radius: 24px;
  background: #fff;
}
.proof-card strong,
.feature-card-redesign h3,
.step-card h3,
.faq-preview-card h3 {
  display: block;
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.proof-card p,
.feature-card-redesign p,
.step-card p,
.faq-preview-card p {
  margin: 0;
  color: #5e677b;
  line-height: 1.8;
}
.feature-grid-redesign {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-card-redesign ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: #374151;
  line-height: 1.9;
}
.compare-redesign-table {
  display: grid;
  gap: 14px;
}
.compare-redesign-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.compare-redesign-row span {
  padding: 20px 22px;
  border: 1px solid #e7ebf4;
  border-radius: 20px;
  background: #fff;
  color: #3f475a;
  line-height: 1.7;
}
.compare-redesign-head span {
  background: #1b1f33;
  border-color: #1b1f33;
  color: #fff;
  font-weight: 700;
}
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.step-card {
  min-height: 220px;
}
.step-card span {
  display: inline-block;
  margin-bottom: 18px;
}
.faq-preview-shell {
  padding: 0;
}
.faq-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.faq-preview-action {
  margin-top: 28px;
}
@media (max-width: 1080px) {
  .hero-redesign-layout,
  .proof-grid,
  .feature-grid-redesign,
  .steps-grid,
  .faq-preview-grid,
  .compare-redesign-row {
    grid-template-columns: 1fr;
  }
  .hero-panel-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .hero-redesign {
    padding: 64px 0 28px;
  }
  .hero-redesign-copy h1 {
    font-size: 40px;
  }
  .hero-redesign-copy p {
    font-size: 16px;
  }
  .hero-panel-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel-card,
  .hero-panel-card-primary,
  .proof-card,
  .feature-card-redesign,
  .step-card,
  .faq-preview-card,
  .compare-redesign-row span {
    padding: 22px;
    min-height: auto;
  }
}
.compare-reference-hero {
  padding: 56px 0 24px;
}
.compare-reference-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 0;
}
.compare-reference-shell .compare-reference-topline,
.compare-reference-shell h1,
.compare-reference-shell .compare-reference-lead,
.compare-reference-shell .compare-reference-body {
  max-width: 980px;
}
.compare-reference-topline {
  margin-bottom: 14px;
  color: #667085;
  font-size: 14px;
  font-weight: 700;
}
.compare-reference-shell h1 {
  margin: 0 0 18px;
  font-size: clamp(52px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
.compare-reference-lead {
  margin: 0;
  color: #161b29;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
}
.compare-reference-body,
.compare-reference-copy p {
  margin: 16px 0 0;
  color: #596377;
  font-size: 18px;
  line-height: 1.8;
}
.compare-reference-section {
  padding-top: 36px;
}
.compare-reference-grid {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(380px, 430px);
  gap: 28px 44px;
  align-items: start;
  justify-content: space-between;
}
.compare-reference-grid.reverse {
  grid-template-columns: minmax(380px, 430px) minmax(0, 700px);
}
.compare-privacy-section .compare-reference-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}
.compare-reference-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 980px;
}
.compare-reference-copy > * {
  width: 100%;
}
.compare-reference-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.compare-reference-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.compare-reference-checks li {
  position: relative;
  padding-left: 18px;
  color: #374151;
  line-height: 1.7;
}
.compare-reference-checks li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #4f46e5;
  font-weight: 800;
}
.compare-reference-matrix {
  align-self: start;
  margin-top: 6px;
  padding: 34px;
  border: 1px solid #e4e8f2;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(38, 52, 88, 0.06);
}
.compare-privacy-section .compare-reference-matrix {
  width: 100%;
  max-width: none;
}
.compare-privacy-cards-wrap {
  display: grid;
  gap: 20px;
}
.compare-privacy-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}
.privacy-compare-card {
  position: relative;
  padding: 38px 28px 28px;
  border: 2px solid #222833;
  border-radius: 22px;
  background: #fff;
}
.privacy-compare-logo {
  position: absolute;
  top: -30px;
  left: 24px;
  width: 108px;
  height: 108px;
  border: 2px solid #222833;
  border-radius: 16px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 66px 66px;
}
.privacy-compare-logo-brave {
  background-image: url("../assets/icons/brave.png");
}
.privacy-compare-logo-chrome {
  background-image: url("../assets/icons/chrome.png");
}
.privacy-compare-logo-firefox {
  background-image: url("../assets/icons/firefox.png");
}
.privacy-compare-logo-ddg {
  background-image: url("../assets/icons/ddg.jpg?v=2");
  background-color: #fff;
}
.privacy-compare-logo-google {
  background-image: url("../assets/icons/google-compare-card.png");
  background-color: #fff;
}
.privacy-compare-logo-ddg::before {
  content: none;
}
.privacy-compare-list {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.privacy-compare-list li {
  position: relative;
  padding-left: 34px;
  color: #161b29;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}
.privacy-compare-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border: 2px solid #222833;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  background: #fff;
  box-sizing: border-box;
}
.privacy-compare-list li.is-on::before {
  content: "✓";
}
.privacy-compare-list li.is-off::before {
  content: "";
}
.privacy-compare-list li.is-mid::before {
  content: "–";
}
.compare-privacy-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
}
.compare-privacy-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.legend-box {
  width: 18px;
  height: 18px;
  border: 2px solid #222833;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: #fff;
}
.legend-on::before {
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}
.legend-mid::before {
  content: "–";
  font-size: 12px;
  font-weight: 800;
}
.compare-privacy-note {
  margin: 0;
  max-width: 1120px;
  color: #374151;
  font-size: 18px;
  line-height: 1.75;
}
.compare-cleaner-section {
  padding-top: 28px;
}
.compare-cleaner-shell h2 {
  margin: 0 0 20px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}
.compare-cleaner-lead {
  max-width: 980px;
  margin: 0;
  color: #374151;
  font-size: 20px;
  line-height: 1.7;
}
.compare-cleaner-caption {
  margin: 28px 0 0;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
}
.compare-tabs-embedded {
  justify-content: flex-start;
  margin-top: 16px;
}
.compare-stage-embedded {
  margin-top: 26px;
}
@media (max-width: 1080px) {
  .compare-reference-grid,
  .compare-reference-grid.reverse,
  .compare-privacy-cards,
  .compare-feature-board-grid,
  .compare-cleaner-visual {
    grid-template-columns: 1fr;
  }
  .compare-cleaner-divider {
    width: auto;
    margin: -10px 0;
  }
  .compare-cleaner-divider span {
    margin-left: 0;
  }
}
.compare-feature-board-section {
  padding-top: 20px;
}
.compare-feature-board-copy {
  max-width: 980px;
  margin-bottom: 24px;
}
.compare-feature-board-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.compare-feature-board-copy p {
  margin: 0 0 12px;
  color: #4b5565;
  font-size: 18px;
  line-height: 1.75;
}
.compare-feature-board-grid-wrap {
  display: grid;
  gap: 20px;
}
.compare-feature-board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.feature-board-card {
  min-height: 100%;
}
.feature-board-sections {
  margin-top: 36px;
  display: grid;
  gap: 28px;
}
.feature-board-sections section h3 {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.feature-board-card .privacy-compare-list {
  margin-top: 0;
}
.compare-feature-note {
  max-width: 1040px;
}
@media (max-width: 760px) {
  .compare-reference-hero {
    padding: 40px 0 20px;
  }
  .compare-reference-shell h1 {
    font-size: 46px;
  }
  .compare-reference-lead {
    font-size: 20px;
  }
  .compare-reference-body,
  .compare-reference-copy p,
  .compare-feature-board-copy p {
    font-size: 16px;
  }
  .compare-reference-copy h2,
  .compare-feature-board-copy h2 {
    font-size: 34px;
  }
  .compare-reference-checks,
  .compare-feature-board-grid {
    grid-template-columns: 1fr;
  }
  .compare-cleaner-shell h2 {
    font-size: 44px;
  }
  .compare-cleaner-lead {
    font-size: 16px;
  }
  .compare-reference-matrix,
  .compare-showcase-card {
    padding: 22px;
  }
}
.faq-page-hero {
  padding: 56px 0 28px;
}
.faq-page-hero-shell {
  display: block;
}
.faq-page-hero-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
.faq-page-hero-copy p {
  max-width: 860px;
  margin: 0;
  color: #4b5565;
  font-size: 20px;
  line-height: 1.75;
}
.faq-page-index-section {
  padding-top: 12px;
}
.faq-page-index-card {
  padding: 24px 26px;
  border: 1px solid #e3e8f3;
  border-radius: 22px;
  background: #fff;
}
.faq-page-index-card h2 {
  margin: 0 0 16px;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.faq-page-index-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.faq-page-index-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f5f7fc;
  color: #3f46d8;
  font-size: 14px;
  font-weight: 700;
}
.faq-page-group {
  padding-top: 28px;
}
@media (max-width: 760px) {
  .faq-page-hero {
    padding: 40px 0 20px;
  }
  .faq-page-hero-copy h1 {
    font-size: 44px;
  }
  .faq-page-hero-copy p {
    font-size: 16px;
  }
  .faq-page-index-card h2 {
    font-size: 24px;
  }
}
.about-page-hero {
  padding: 56px 0 24px;
}
.about-page-hero-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
.about-page-hero-copy p,
.about-page-main p,
.about-highlight-card p,
.about-value-card p {
  margin: 0;
  color: #4b5565;
  font-size: 18px;
  line-height: 1.8;
}
.about-page-intro,
.about-page-story {
  padding-top: 24px;
}
.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.about-page-grid.reverse {
  grid-template-columns: minmax(0, 1fr) 340px;
}
.about-page-main h2,
.about-page-head h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.about-page-main {
  display: grid;
  gap: 18px;
}
.about-page-sidecard,
.about-highlight-card,
.about-value-card {
  padding: 28px;
  border: 1px solid #e4e8f2;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(38, 52, 88, 0.06);
}
.about-page-sidecard strong,
.about-highlight-card h3,
.about-value-card h3 {
  display: block;
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.about-page-sidecard ul {
  margin: 0;
  padding-left: 18px;
  color: #374151;
  line-height: 1.9;
}
.about-page-head {
  max-width: 760px;
  margin-bottom: 22px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 960px) {
  .about-page-grid,
  .about-page-grid.reverse,
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .about-page-hero {
    padding: 40px 0 20px;
  }
  .about-page-hero-copy h1 {
    font-size: 44px;
  }
  .about-page-hero-copy p,
  .about-page-main p,
  .about-highlight-card p,
  .about-value-card p {
    font-size: 16px;
  }
  .about-page-main h2,
  .about-page-head h2 {
    font-size: 34px;
  }
}
.search-api-hero {
  padding: 56px 0 28px;
}
.search-api-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 36px;
  align-items: center;
}
.search-api-hero-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
.search-api-hero-copy p,
.search-api-head p,
.search-api-plan-card p,
.search-api-story-copy p,
.search-api-story-card li,
.search-api-feature-card p,
.search-api-enterprise-card p {
  margin: 0;
  color: #4b5565;
  font-size: 18px;
  line-height: 1.8;
}
.search-api-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.search-api-hero-panel {
  display: grid;
  gap: 16px;
}
.search-api-video-card,
.search-api-plan-card,
.search-api-story-card,
.search-api-feature-card,
.search-api-enterprise-card,
.search-api-trust-card {
  padding: 28px;
  border: 1px solid #e4e8f2;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(38, 52, 88, 0.06);
}
.search-api-plan-card h3,
.search-api-story-card strong,
.search-api-feature-card h3,
.search-api-enterprise-card h3,
.search-api-trust-card strong {
  display: block;
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.search-api-video-card {
  width: min(100%, 320px);
  margin-left: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.search-api-video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.search-api-head {
  max-width: 780px;
  margin-bottom: 24px;
}
.search-api-plan-grid,
.search-api-feature-grid,
.search-api-enterprise-grid,
.search-api-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.search-api-plan-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f2f4ff;
  color: #4b43d5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.search-api-plan-meta {
  margin-top: 18px;
  color: #4b43d5;
  font-size: 14px;
  font-weight: 700;
}
.search-api-trust-card p {
  margin: 0;
  color: #4b5565;
  font-size: 17px;
  line-height: 1.8;
}
.search-api-story {
  padding-top: 24px;
}
.search-api-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.search-api-story-copy {
  display: grid;
  gap: 18px;
}
.search-api-story-copy h2,
.search-api-head h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.search-api-story-card ul {
  margin: 0;
  padding-left: 18px;
  color: #374151;
  line-height: 1.9;
}
@media (max-width: 960px) {
  .search-api-hero-grid,
  .search-api-story-grid,
  .search-api-plan-grid,
  .search-api-feature-grid,
  .search-api-enterprise-grid,
  .search-api-trust-grid {
    grid-template-columns: 1fr;
  }
  .search-api-hero-panel {
    max-width: 520px;
  }
}
@media (max-width: 760px) {
  .search-api-hero {
    padding: 40px 0 20px;
  }
  .search-api-hero-copy h1 {
    font-size: 44px;
  }
  .search-api-hero-copy p,
  .search-api-head p,
  .search-api-plan-card p,
  .search-api-story-copy p,
  .search-api-story-card li,
  .search-api-feature-card p,
  .search-api-enterprise-card p {
    font-size: 16px;
  }
  .search-api-story-copy h2,
  .search-api-head h2 {
    font-size: 34px;
  }
}
.legal-page-hero {
  padding: 56px 0 24px;
}
.legal-page-shell {
  max-width: 980px;
}
.legal-page-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(54px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
.legal-page-copy p,
.legal-page-article p,
.legal-page-article li {
  margin: 0;
  color: #4b5565;
  font-size: 18px;
  line-height: 1.85;
}
.legal-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.legal-page-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f4f6fb;
  color: #4b5565;
  font-size: 14px;
  font-weight: 700;
}
.legal-page-section {
  padding-top: 20px;
}
.legal-page-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.legal-page-toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid #e4e8f2;
  border-radius: 22px;
  background: #fff;
}
.legal-page-toc strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}
.legal-page-toc a {
  color: #4b5565;
  font-size: 14px;
  font-weight: 700;
}
.legal-page-article {
  display: grid;
  gap: 34px;
  max-width: 860px;
}
.legal-page-article section {
  display: grid;
  gap: 16px;
}
.legal-page-article h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.legal-page-article h3 {
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.legal-page-article ul {
  margin: 0;
  padding-left: 20px;
}
@media (max-width: 960px) {
  .legal-page-layout {
    grid-template-columns: 1fr;
  }
  .legal-page-toc {
    position: static;
  }
}
@media (max-width: 760px) {
  .legal-page-hero {
    padding: 40px 0 20px;
  }
  .legal-page-copy h1 {
    font-size: 42px;
  }
  .legal-page-copy p,
  .legal-page-article p,
  .legal-page-article li {
    font-size: 16px;
  }
  .legal-page-article h2 {
    font-size: 30px;
  }
  .legal-page-article h3 {
    font-size: 20px;
  }
}
