:root {
  color-scheme: dark;
  --bg: #0b0b0d;
  --bg-soft: #121214;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --surface-solid: #1c1c1e;
  --text: #f5f5f7;
  --text-soft: #a1a1a6;
  --text-faint: #8e8e93;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #ff6348;
  --accent-strong: #c9341d;
  --accent-blue: #2c82ff;
  --accent-cyan: #64d2ff;
  --accent-pink: #ff375f;
  --accent-orange: #ff9f0a;
  --accent-green: #30d158;
  --hero-gradient: linear-gradient(110deg, #ff8a73 0%, #ff6348 52%, #ffb340 100%);
  --header: rgba(11, 11, 13, 0.72);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --card-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  --container: 1180px;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f5f7;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --text: #1d1d1f;
  --text-soft: #515154;
  --text-faint: #6e6e73;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.14);
  --hero-gradient: linear-gradient(110deg, #d83b22 0%, #f04f34 52%, #a95700 100%);
  --header: rgba(245, 245, 247, 0.76);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  --card-shadow: 0 18px 48px rgba(0, 0, 0, 0.09);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

::selection {
  background: rgba(255, 99, 72, 0.3);
  color: var(--text);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: var(--header);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), 1240px);
  min-height: 70px;
  margin-inline: auto;
  gap: 28px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.brand-mark,
.brand-mark img {
  width: 34px;
  height: 34px;
}

.brand-mark img {
  border-radius: 9px;
  filter: drop-shadow(0 7px 14px rgba(255, 99, 72, 0.24));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 570;
  transition: color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--text);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  border-color: var(--line-strong);
  background: var(--surface-strong);
  transform: translateY(-1px);
}

.language-toggle {
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
}

html[data-theme="dark"] .sun-icon,
html[data-theme="light"] .moon-icon {
  display: none;
}

.nav-download {
  margin-left: 4px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-download:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 148px 0 68px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0 0 auto;
  height: 78%;
  background:
    radial-gradient(circle at 38% 10%, rgba(255, 99, 72, 0.12), transparent 38%),
    radial-gradient(circle at 64% 14%, rgba(44, 130, 255, 0.08), transparent 38%);
  content: "";
}

html[data-theme="light"] .hero::before {
  background:
    radial-gradient(circle at 36% 10%, rgba(255, 99, 72, 0.13), transparent 40%),
    radial-gradient(circle at 66% 14%, rgba(44, 130, 255, 0.09), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 78%);
}

.hero-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.24;
  pointer-events: none;
}

.hero-orb-one {
  top: 4%;
  left: -12%;
  width: 520px;
  height: 520px;
  background: #ff6348;
}

.hero-orb-two {
  top: 20%;
  right: -13%;
  width: 500px;
  height: 500px;
  background: #2c82ff;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(130, 135, 170, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 135, 170, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 70%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 70%);
  pointer-events: none;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-soft);
  letter-spacing: 0.03em;
  text-transform: none;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(84, 214, 139, 0.12), 0 0 14px rgba(84, 214, 139, 0.5);
}

.hero h1 {
  max-width: 940px;
  margin: 28px 0 22px;
  font-size: clamp(58px, 8.2vw, 112px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.hero h1 span {
  display: block;
}

.gradient-text {
  padding-right: 0.06em;
  padding-bottom: 0.08em;
  background: var(--hero-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 690px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.015em;
  line-height: 1.55;
}

.hero-actions,
.download-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 690;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #d83b22, var(--accent-strong));
  box-shadow: 0 12px 30px rgba(201, 52, 29, 0.28), inset 0 1px rgba(255, 255, 255, 0.22);
  color: #fff;
}

.button-primary:hover {
  box-shadow: 0 16px 36px rgba(201, 52, 29, 0.36), inset 0 1px rgba(255, 255, 255, 0.22);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: var(--surface-strong);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
  color: var(--text-faint);
  font-size: 13px;
}

.hero-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-meta svg {
  width: 14px;
  height: 14px;
  color: var(--accent-green);
  stroke-width: 2.4;
}

.hero-visual {
  position: relative;
  margin-top: 62px;
}

.hero-shortcut {
  position: absolute;
  z-index: 4;
  top: -18px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(18, 20, 31, 0.84);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
  color: #d7d9e3;
  font-size: 12px;
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

html[data-theme="light"] .hero-shortcut {
  background: rgba(255, 255, 255, 0.9);
  color: #505466;
  box-shadow: 0 12px 32px rgba(55, 61, 91, 0.16);
}

.hero-shortcut kbd,
.mini-keys kbd {
  display: grid;
  min-width: 26px;
  height: 25px;
  padding: 0 6px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 7px;
  background: var(--surface-strong);
  color: var(--text);
  font-family: inherit;
  font-weight: 680;
}

.product-stage {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateX(2deg);
  transform-origin: center top;
}

html[data-theme="light"] .product-stage {
  background: rgba(255, 255, 255, 0.72);
}

.product-stage::before {
  position: absolute;
  z-index: 2;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  content: "";
  pointer-events: none;
}

.product-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 25px;
}

.stage-glow {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: -8%;
  left: 8%;
  height: 32%;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff6348, #ff9f0a 46%, #2c82ff);
  filter: blur(70px);
  opacity: 0.38;
}

.trust-strip {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

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

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item > svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: var(--accent);
}

.trust-item div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.trust-item strong {
  font-size: 14px;
  font-weight: 690;
}

.trust-item span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.section {
  position: relative;
  padding: 130px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

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

.section-heading h2,
.privacy-story h2,
.download-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 730;
  letter-spacing: -0.052em;
  line-height: 1.04;
  text-wrap: balance;
}

.section-heading p,
.privacy-story > p,
.download-copy > p {
  max-width: 660px;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
}

.centered p {
  margin-inline: auto;
}

.features-section {
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 99, 72, 0.065), transparent 28%),
    radial-gradient(circle at 92% 65%, rgba(44, 130, 255, 0.06), transparent 26%);
}

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

.bento-card {
  position: relative;
  min-height: 480px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--surface-strong), var(--surface));
  box-shadow: var(--card-shadow);
}

.bento-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.055), transparent 38%);
  content: "";
  pointer-events: none;
}

.bento-wide {
  grid-column: 1 / -1;
  min-height: 510px;
}

.card-copy {
  position: relative;
  z-index: 3;
  max-width: 530px;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.16);
}

.feature-icon svg {
  width: 21px;
  height: 21px;
}

.feature-icon-blue { background: rgba(41, 145, 255, 0.15); color: #2991ff; }
.feature-icon-violet { background: rgba(191, 89, 243, 0.15); color: #bf59f3; }
.feature-icon-orange { background: rgba(255, 150, 41, 0.15); color: #ff9629; }
.feature-icon-green { background: rgba(66, 200, 90, 0.14); color: #42c85a; }
.feature-icon-pink { background: rgba(255, 61, 116, 0.14); color: #ff3d74; }
.feature-icon-cyan { background: rgba(50, 173, 230, 0.14); color: #32ade6; }

.card-copy h3 {
  max-width: 520px;
  margin: 0 0 12px;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 690;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.card-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
}

.search-card {
  display: grid;
  min-height: 500px;
  align-items: center;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 46px;
}

.panel-visual {
  position: relative;
  z-index: 2;
  align-self: end;
  margin: 0 -120px 20px 0;
  padding: 68px 18px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 28px 0 0 28px;
  background: #11131d;
  box-shadow: -18px 24px 70px rgba(0, 0, 0, 0.28);
  transform: rotate(-2deg);
}

.panel-visual img {
  width: 100%;
  border-radius: 16px;
}

.panel-search-pill {
  position: absolute;
  top: 18px;
  right: 20px;
  left: 20px;
  display: flex;
  height: 38px;
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.065);
  color: #8e93a8;
  font-size: 12px;
}

.panel-search-pill svg {
  width: 15px;
  height: 15px;
}

.panel-search-pill kbd {
  margin-left: auto;
  padding: 2px 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 5px;
  color: #6f7488;
  font-family: inherit;
}

.pinboard-stack {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 2px;
  left: 26px;
  height: 240px;
}

.pin-card {
  position: absolute;
  display: flex;
  width: 72%;
  height: 145px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
  color: #fff;
}

.pin-card > span {
  position: absolute;
  top: 13px;
  left: 14px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 700;
}

.pin-card strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pin-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.67);
}

.pin-orange { left: 0; bottom: 15px; background: linear-gradient(145deg, #d9702f, #8b3f27); transform: rotate(-7deg); }
.pin-blue { left: 15%; bottom: 32px; background: linear-gradient(145deg, #2979c7, #24416e); transform: rotate(1deg); }
.pin-pink { right: 0; bottom: 8px; background: linear-gradient(145deg, #bc4e7c, #69314f); transform: rotate(8deg); }

.preview-window {
  position: absolute;
  z-index: 2;
  right: -70px;
  bottom: -22px;
  left: 56px;
  height: 255px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px 24px 0 0;
  box-shadow: -14px 20px 55px rgba(0, 0, 0, 0.28);
  transform: rotate(3deg);
}

.preview-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 86% 50%;
}

.rule-builder {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 30px;
  left: 28px;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(7, 9, 14, 0.52);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

html[data-theme="light"] .rule-builder {
  background: rgba(244, 246, 252, 0.84);
}

.rule-row,
.rule-result {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 12px;
}

.rule-label {
  width: 32px;
  color: var(--text-faint);
  font-size: 9px;
  font-weight: 800;
}

.rule-chip,
.rule-value {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
}

.rule-value {
  flex: 1;
  color: var(--text);
}

.rule-arrow {
  margin-left: 44px;
  color: var(--text-faint);
  font-size: 13px;
}

.rule-result {
  padding: 11px 12px;
  border: 1px solid rgba(84, 214, 139, 0.18);
  border-radius: 11px;
  background: rgba(84, 214, 139, 0.08);
}

.rule-result strong {
  margin-left: auto;
  color: var(--text);
}

.rule-pin {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
}

.action-menu {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 28px;
  left: 38px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(18, 20, 30, 0.88);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

html[data-theme="light"] .action-menu {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(65, 71, 104, 0.17);
}

.action-menu div {
  display: grid;
  min-height: 38px;
  align-items: center;
  padding: 0 9px;
  border-radius: 10px;
  grid-template-columns: 30px 1fr;
  color: var(--text-soft);
  font-size: 12px;
}

.action-menu div:hover {
  background: var(--surface-strong);
}

.action-menu div > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.action-menu strong {
  color: var(--text);
  font-weight: 570;
}


.privacy-card {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  background:
    radial-gradient(circle at 78% 52%, rgba(44, 130, 255, 0.1), transparent 38%),
    linear-gradient(145deg, var(--surface-strong), var(--surface));
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--accent-blue);
  font-size: 14px;
  font-weight: 650;
}

.text-link span:last-child {
  transition: transform 160ms ease;
}

.text-link:hover span:last-child {
  transform: translateX(4px);
}

.privacy-console {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(13, 16, 24, 0.76);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

html[data-theme="light"] .privacy-console {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 28px 70px rgba(65, 71, 104, 0.15);
}

.console-top {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
}

.console-top > span,
.window-bar > span,
.terminal-header > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}

.console-top > span:nth-child(2),
.window-bar > span:nth-child(2),
.terminal-header > span:nth-child(2) { background: #febc2e; }
.console-top > span:nth-child(3),
.window-bar > span:nth-child(3),
.terminal-header > span:nth-child(3) { background: #28c840; }

.console-top strong {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
}

.console-row {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 17px;
  border-bottom: 1px solid var(--line);
}

.console-row > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.console-row b {
  font-size: 12px;
  font-weight: 600;
}

.console-row small {
  overflow: hidden;
  margin-top: 2px;
  color: var(--text-faint);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.console-row i {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 20px;
  border-radius: 999px;
}

.console-row i::after {
  position: absolute;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  content: "";
}

.toggle-on { background: var(--accent-green); }
.toggle-on::after { right: 3px; }
.toggle-off { background: #4a4e5c; }
.toggle-off::after { left: 3px; }

.console-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px;
  color: var(--accent-blue);
  font-size: 10px;
}

.console-note svg {
  width: 14px;
  height: 14px;
}

.showcase-section {
  overflow: hidden;
  background: var(--bg-soft);
}

.showcase {
  position: relative;
}

.showcase-tabs {
  display: flex;
  width: fit-content;
  margin: 0 auto 26px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.showcase-tab {
  padding: 8px 16px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-faint);
  cursor: pointer;
  font-size: 13px;
  font-weight: 620;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.showcase-tab.active {
  background: var(--surface-solid);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
  color: var(--text);
}

.showcase-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: #11131c;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: #777c8e;
}

.window-bar em {
  margin-inline: auto;
  padding-right: 42px;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
}

.showcase-frame img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 180ms ease, transform 360ms ease;
}

.showcase-frame img.changing {
  opacity: 0;
  transform: scale(0.985);
}

.flow-section {
  padding-top: 115px;
}

.flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.flow-grid::before {
  position: absolute;
  top: 74px;
  right: 16.5%;
  left: 16.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 14%, var(--line-strong) 86%, transparent);
  content: "";
}

.flow-step {
  position: relative;
  z-index: 1;
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  text-align: center;
}

.step-number {
  position: absolute;
  top: 20px;
  left: 22px;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 740;
  letter-spacing: 0.08em;
}

.step-icon {
  display: grid;
  width: 86px;
  height: 86px;
  margin: 12px auto 26px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: var(--surface-solid);
  box-shadow: var(--card-shadow);
  color: var(--accent-blue);
}

.step-icon > svg {
  width: 32px;
  height: 32px;
}

.flow-step h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.flow-step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.mini-keys {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-faint);
}

.mini-keys kbd {
  min-width: 27px;
  background: var(--surface);
  font-size: 13px;
}

.mini-keys b {
  font-size: 12px;
  font-weight: 500;
}

.privacy-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 45%, rgba(44, 130, 255, 0.09), transparent 30%),
    var(--bg-soft);
}

.privacy-layout {
  display: grid;
  min-height: 600px;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.privacy-story h2 {
  font-size: clamp(34px, 3.6vw, 54px);
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
}

.check-list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--accent-green);
  stroke-width: 2.5;
}

.sync-visual {
  position: relative;
  min-height: 520px;
}

.sync-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(44, 130, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one { width: 390px; height: 390px; }
.orbit-two { width: 260px; height: 260px; }

.sync-core,
.device {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: rgba(17, 21, 31, 0.82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.27);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

html[data-theme="light"] .sync-core,
html[data-theme="light"] .device {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 60px rgba(65, 71, 104, 0.16);
}

.sync-core {
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.sync-core::before {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(44, 130, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.sync-core svg {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  color: var(--accent-blue);
}

.sync-core strong {
  font-size: 14px;
}

.sync-core small {
  margin-top: 3px;
  color: var(--text-faint);
  font-size: 9px;
}

.device {
  width: 106px;
  height: 96px;
  border-radius: 20px;
}

.device svg {
  width: 30px;
  height: 30px;
  margin-bottom: 7px;
  color: var(--accent-blue);
}

.device span {
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
}

.device-mac { top: 12%; left: 8%; transform: rotate(-4deg); }
.device-imac { right: 6%; bottom: 13%; transform: rotate(4deg); }

.provider {
  position: absolute;
  z-index: 2;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-faint);
  font-size: 9px;
}

.provider-one { top: 16%; right: 12%; }
.provider-two { bottom: 17%; left: 6%; }
.provider-three { right: 2%; bottom: 42%; }

.sync-pulse {
  position: absolute;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 16px rgba(44, 130, 255, 0.72);
}

.pulse-one { top: 27%; left: 36%; animation: pulseOne 4s ease-in-out infinite; }
.pulse-two { right: 31%; bottom: 28%; animation: pulseTwo 4s 1.5s ease-in-out infinite; }

@keyframes pulseOne {
  0%, 100% { transform: translate(-80px, -42px); opacity: 0; }
  20%, 80% { opacity: 1; }
  50% { transform: translate(55px, 38px); opacity: 1; }
}

@keyframes pulseTwo {
  0%, 100% { transform: translate(70px, 46px); opacity: 0; }
  20%, 80% { opacity: 1; }
  50% { transform: translate(-65px, -40px); opacity: 1; }
}

.download-section {
  padding-bottom: 70px;
}

.download-card {
  position: relative;
  display: grid;
  min-height: 470px;
  align-items: center;
  padding: 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 12%, rgba(44, 130, 255, 0.28), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(255, 99, 72, 0.3), transparent 35%),
    linear-gradient(135deg, #1d1412, #11151c 58%, #101b27);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.32);
  color: #fff;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
}

.download-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  -webkit-mask-image: linear-gradient(110deg, black, transparent 70%);
  mask-image: linear-gradient(110deg, black, transparent 70%);
}

.download-glow {
  position: absolute;
  top: -80px;
  right: 8%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(100px);
  opacity: 0.4;
}

.download-copy,
.terminal-card {
  position: relative;
  z-index: 2;
}

.download-copy .section-kicker {
  color: #ff9a86;
}

.download-copy h2 {
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
}

.download-copy > p {
  color: #aeb4c8;
  font-size: 16px;
}

.download-buttons {
  justify-content: flex-start;
}

.button-light {
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  color: #11131c;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.terminal-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 19px;
  background: rgba(6, 8, 13, 0.76);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  transform: rotate(1.5deg);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.terminal-header {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-header strong {
  margin-left: 8px;
  color: #777d91;
  font-size: 11px;
  font-weight: 600;
}

.terminal-card pre {
  min-height: 150px;
  margin: 0;
  padding: 27px 24px 18px;
  overflow-x: auto;
  color: #d9def0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.9;
}

.terminal-card code::before {
  color: #5bd293;
  content: "$ ";
}

.copy-command {
  display: flex;
  width: calc(100% - 28px);
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.065);
  color: #b8bdcd;
  cursor: pointer;
  font-size: 12px;
  font-weight: 620;
  transition: background 160ms ease, color 160ms ease;
}

.copy-command:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.copy-command svg {
  width: 15px;
  height: 15px;
}

.copy-command.copied {
  border-color: rgba(84, 214, 139, 0.28);
  background: rgba(84, 214, 139, 0.12);
  color: #71dfa0;
}

.requirements {
  margin: 20px 0 0;
  color: var(--text-faint);
  font-size: 12px;
  text-align: center;
}
.nav-toggle {
  display: none;
}

.menu-close-icon {
  display: none;
}

body.nav-open .menu-open-icon {
  display: none;
}

body.nav-open .menu-close-icon {
  display: block;
}

body.nav-open {
  overflow: hidden;
}

.nav-toggle svg {
  width: 19px;
  height: 19px;
}

.mobile-nav {
  padding: 6px 0 22px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.mobile-nav > nav,
.mobile-nav > .mobile-nav-cta {
  width: min(calc(100% - 28px), var(--container));
  margin-inline: auto;
}

.mobile-nav > nav {
  display: grid;
}

.mobile-nav a:not(.button) {
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  font-weight: 620;
}

.mobile-nav-cta {
  margin-top: 18px;
  justify-content: center;
}

.kbd-tick {
  font-size: 19px;
  transform: translateY(3px);
}

.stack-card,
.layout-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.stack-visual,
.layout-visual {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: grid;
  gap: 10px;
}

.stack-chip {
  display: grid;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  grid-template-columns: 26px 1fr;
  gap: 10px;
  font-size: 13px;
}

.stack-chip em {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 159, 10, 0.16);
  color: var(--accent-orange);
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
}

.stack-chip strong {
  overflow: hidden;
  color: var(--text);
  font-weight: 570;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stack-hint {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

.stack-hint kbd {
  display: grid;
  min-width: 26px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text-soft);
  font-family: inherit;
  font-size: 11px;
}

.layout-visual {
  gap: 14px;
}

.layout-mock {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.layout-mock em {
  position: absolute;
  right: 13px;
  bottom: 7px;
  color: var(--text-faint);
  font-size: 10px;
  font-style: normal;
}

.layout-mock-bottom {
  display: flex;
  height: 76px;
  align-items: flex-end;
  gap: 8px;
}

.layout-mock-bottom span {
  flex: 1;
  height: 44px;
  border-radius: 9px;
  background: linear-gradient(160deg, rgba(44, 130, 255, 0.3), rgba(44, 130, 255, 0.07));
}

.layout-mock-center {
  display: grid;
  height: 100px;
  grid-template-columns: 34% 1fr;
  gap: 8px;
}

.layout-mock-center i,
.layout-mock-center b {
  border-radius: 9px;
  background: linear-gradient(160deg, rgba(255, 99, 72, 0.28), rgba(255, 99, 72, 0.06));
}

.install-section {
  background: var(--bg-soft);
}

.install-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
}

.install-step {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.install-index {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.install-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.install-step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.install-step code,
.faq-item code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--surface-strong);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.code-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
}

.code-line code {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 0;
  background: none;
  color: var(--text);
  font-size: 11.5px;
  line-height: 1.7;
}

.copy-inline {
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 11px;
  font-weight: 620;
  transition: color 160ms ease, background 160ms ease;
}

.copy-inline:hover {
  background: var(--surface-strong);
  color: var(--text);
}

.copy-inline.copied {
  border-color: rgba(84, 214, 139, 0.3);
  background: rgba(84, 214, 139, 0.12);
  color: #4cb87c;
}

.faq-list {
  display: grid;
  max-width: 860px;
  margin-inline: auto;
  gap: 12px;
}

.faq-item {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 650;
  list-style: none;
}

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

.faq-item summary::after {
  color: var(--text-faint);
  content: "+";
  font-size: 21px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  max-width: 70ch;
  margin: 0 0 20px;
  color: var(--text-soft);
  font-size: 14px;
}

.download-note {
  margin: 26px 0 0;
  color: #aeb4c8;
  font-size: 12.5px;
}

.download-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}


.site-footer {
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
}

.footer-content {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
}

.footer-brand {
  flex-wrap: wrap;
  font-size: 15px;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.footer-brand small {
  width: 100%;
  margin-left: 38px;
  margin-top: -7px;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 450;
}

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

.footer-links a,
.footer-content > p {
  margin: 0;
  color: var(--text-faint);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--text);
}

.noscript {
  position: fixed;
  z-index: 999;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-late {
  transition-delay: 120ms;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-download {
    display: none;
  }

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

  .hero {
    padding-top: 136px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

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

  .trust-item:nth-child(3) {
    padding-left: 0;
  }

  .search-card,
  .privacy-card,
  .privacy-layout,
  .download-card {
    grid-template-columns: 1fr;
  }

  .search-card {
    padding-bottom: 0;
  }

  .panel-visual {
    margin: 0 -100px -10px 8%;
  }

  .privacy-card {
    gap: 38px;
  }

  .privacy-layout {
    gap: 50px;
  }

  .privacy-story {
    max-width: 700px;
  }

  .sync-visual {
    min-height: 480px;
  }

  .download-card {
    padding: 58px;
    gap: 44px;
  }

  .terminal-card {
    transform: none;
  }
}

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

  .faq-item {
    padding-inline: 18px;
  }

  .faq-item summary {
    font-size: 15px;
  }

  .install-step {
    padding: 24px 20px;
  }

  .stack-visual,
  .layout-visual {
    right: 20px;
    left: 20px;
  }

  .stack-card,
  .layout-card {
    min-height: 540px;
  }

  .nav-shell {
    min-height: 62px;
  }

  .brand {
    font-size: 16px;
  }

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

  .hero {
    min-height: auto;
    padding: 115px 0 54px;
  }

  .hero h1 {
    margin-top: 23px;
    font-size: clamp(52px, 16vw, 78px);
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .hero-actions .button {
    width: min(100%, 330px);
  }

  .hero-meta {
    gap: 10px 14px;
  }

  .hero-visual {
    width: calc(100% - 8px);
    margin-top: 52px;
  }

  .hero-shortcut {
    white-space: nowrap;
  }

  .product-stage {
    padding: 7px;
    border-radius: 22px;
    transform: none;
  }

  .product-stage::before {
    inset: 7px;
    border-radius: 15px;
  }

  .product-stage img {
    border-radius: 15px;
  }

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

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(3) {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 88px 0;
  }

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

  .section-heading h2,
  .privacy-story h2,
  .download-copy h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .section-heading p,
  .privacy-story > p {
    font-size: 16px;
  }

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

  .bento-wide {
    grid-column: auto;
  }

  .bento-card,
  .bento-wide {
    min-height: 480px;
    padding: 26px;
  }

  .search-card {
    display: block;
    min-height: 650px;
  }

  .panel-visual {
    position: absolute;
    top: 300px;
    right: -110px;
    bottom: auto;
    left: 34px;
    margin: 0;
  }

  .pinboard-stack {
    right: 15px;
    left: 15px;
  }

  .pin-card {
    width: 64%;
    font-size: 12px;
  }

  .preview-window {
    right: -110px;
    bottom: -25px;
    left: 34px;
    height: 250px;
  }

  .privacy-card {
    display: block;
    min-height: 700px;
  }

  .privacy-console {
    position: absolute;
    right: 22px;
    bottom: 25px;
    left: 22px;
  }

  .showcase-tabs {
    width: 100%;
  }

  .showcase-tab {
    flex: 1;
    padding-inline: 6px;
    font-size: 11px;
  }

  .showcase-frame {
    border-radius: 18px;
  }

  .window-bar {
    height: 36px;
  }

  .window-bar > span {
    width: 8px;
    height: 8px;
  }

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

  .flow-grid::before {
    display: none;
  }

  .flow-step {
    min-height: auto;
    padding: 26px;
  }

  .sync-visual {
    min-height: 410px;
    transform: scale(0.88);
    transform-origin: center;
  }

  .orbit-one { width: 340px; height: 340px; }

  .download-card {
    min-height: 0;
    padding: 42px 22px 24px;
    border-radius: 24px;
  }

  .download-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .download-buttons .button {
    width: 100%;
  }

  .terminal-card pre {
    padding-inline: 16px;
    font-size: 10px;
  }

  .footer-content {
    justify-items: start;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 410px) {
  .hero-shortcut > span:first-child,
  .hero-shortcut > span:last-child {
    display: none;
  }

  .bento-card,
  .bento-wide {
    min-height: 500px;
  }

  .search-card {
    min-height: 650px;
  }

  .rule-builder {
    right: 18px;
    left: 18px;
    padding: 15px;
  }

  .rule-row {
    flex-wrap: wrap;
  }

  .rule-label {
    width: 100%;
  }

  .privacy-card {
    min-height: 735px;
  }

  .sync-visual {
    margin-inline: -24px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  :root {
    --surface: #1c1c1e;
    --surface-strong: #242426;
    --header: #0b0b0d;
  }

  html[data-theme="light"] {
    --surface: #ffffff;
    --surface-strong: #ffffff;
    --header: #f5f5f7;
  }

  .site-header.scrolled,
  .eyebrow,
  .button-secondary,
  .hero-shortcut,
  .rule-builder,
  .action-menu,
  .privacy-console,
  .sync-core,
  .device {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --text-soft: #f5f5f7;
    --text-faint: #d1d1d6;
    --line: rgba(255, 255, 255, 0.28);
    --line-strong: rgba(255, 255, 255, 0.46);
  }

  html[data-theme="light"] {
    --text-soft: #1d1d1f;
    --text-faint: #3a3a3c;
    --line: rgba(0, 0, 0, 0.24);
    --line-strong: rgba(0, 0, 0, 0.42);
  }
}
