@font-face {
  font-family: 'Geist Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('./assets/fonts/geist-latin-wght-normal.woff2') format('woff2-variations');
}

:root {
  color-scheme: light;
  --paper: #fafafa;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --body: #292b31;
  --muted: #6f737c;
  --faint: #a0a4ad;
  --line: #e1e4e8;
  --line-strong: #cdd2d9;
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --blue-soft: #edf4ff;
  --green: #23865e;
  --night: #071022;
  --night-surface: #101a2d;
  --serif: 'Iowan Old Style', 'Source Han Serif SC', 'Noto Serif CJK SC', 'Songti SC', STSong, Georgia, serif;
  --sans: 'Geist Variable', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
  --utility: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --page-width: 1180px;
  --shadow-card: 0 24px 80px rgb(27 39 66 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 1px;
  background: var(--line);
  content: '';
  pointer-events: none;
}

body::before {
  left: max(20px, calc(50% - 650px));
}

body::after {
  right: max(20px, calc(50% - 650px));
}

img,
svg {
  display: block;
}

button,
a {
  color: inherit;
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  border-radius: 4px;
  outline: 3px solid #92b9ff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 140ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(225 228 232 / 82%);
  background: rgb(250 250 250 / 92%);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  width: min(calc(100% - 48px), var(--page-width));
  min-height: 76px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-language {
  display: none;
}

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

.site-nav a,
.language-link,
.footer-nav a {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
  transition: color 140ms ease;
}

.site-nav a:hover,
.language-link:hover,
.footer-nav a:hover {
  color: var(--blue);
}

.language-link {
  justify-self: end;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-strong);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  left: 10px;
  display: block;
  width: 16px;
  height: 1px;
  background: var(--ink);
  content: '';
  transition: top 140ms ease, transform 140ms ease, opacity 140ms ease;
}

.nav-toggle::before {
  top: 12px;
}

.nav-toggle span {
  top: 18px;
}

.nav-toggle::after {
  top: 24px;
}

.page-shell {
  width: min(calc(100% - 48px), var(--page-width));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: 760px;
  padding: 80px 0 96px;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font: 650 11px/1.4 var(--utility);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgb(35 134 94 / 10%);
  content: '';
}

.hero h1,
.section-heading h2,
.privacy-callout h2,
.closing-copy h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 550;
  letter-spacing: -.045em;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(52px, 6.1vw, 84px);
  line-height: 1.04;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-intro {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions,
.closing-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 22px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.primary-action {
  gap: 22px;
  padding: 0 20px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  background: var(--blue);
  box-shadow: 0 10px 28px rgb(37 99 235 / 18%);
  color: #fff;
  font-size: 13px;
  font-weight: 680;
  transition: background 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.primary-action::after {
  font-size: 18px;
  font-weight: 400;
  content: '↗';
}

.primary-action:hover {
  background: var(--blue-deep);
  box-shadow: 0 14px 32px rgb(37 99 235 / 24%);
  transform: translateY(-1px);
}

.secondary-action {
  border-bottom: 1px solid var(--line-strong);
  color: var(--body);
  font-size: 12px;
}

.secondary-action:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.demo-wrap {
  position: relative;
  min-width: 0;
}

.demo-wrap::before {
  position: absolute;
  top: 56px;
  right: -54px;
  bottom: -48px;
  left: 84px;
  z-index: -1;
  border: 1px solid #d7e3fa;
  background: var(--blue-soft);
  content: '';
}

.demo-control {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.demo-label {
  color: var(--muted);
  font: 600 10px/1.4 var(--utility);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.demo-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.demo-switch button {
  min-height: 31px;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
}

.demo-switch button[aria-pressed='true'] {
  background: var(--ink);
  color: #fff;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid #d8dce3;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.browser-bar {
  display: grid;
  height: 42px;
  padding: 0 14px;
  grid-template-columns: 58px 1fr 58px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #f6f7f9;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8cbd1;
}

.browser-address {
  justify-self: center;
  color: #898e98;
  font: 9px/1 var(--utility);
  letter-spacing: .03em;
}

.browser-panel {
  min-height: 520px;
  animation: panel-in 280ms ease both;
}

.browser-panel[hidden] {
  display: none;
}

.noise-panel {
  position: relative;
  padding: 18px;
  overflow: hidden;
  background: #f0f2f6;
}

.noise-topbar {
  display: flex;
  height: 40px;
  padding: 0 12px;
  align-items: center;
  justify-content: space-between;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 4px 14px rgb(22 28 45 / 8%);
}

.noise-logo {
  font-size: 12px;
  font-weight: 760;
}

.noise-pills,
.noise-actions {
  display: flex;
  gap: 5px;
}

.noise-pills i,
.noise-actions i {
  display: block;
  height: 8px;
  border-radius: 10px;
  background: #d9dce3;
}

.noise-pills i {
  width: 34px;
}

.noise-actions i {
  width: 17px;
}

.noise-columns {
  display: grid;
  margin-top: 12px;
  grid-template-columns: 112px minmax(0, 1fr) 116px;
  gap: 10px;
}

.noise-sidebar,
.noise-aside,
.noise-card {
  border: 1px solid #e3e5ea;
  border-radius: 8px;
  background: #fff;
}

.noise-sidebar,
.noise-aside {
  min-height: 422px;
  padding: 12px 10px;
}

.noise-sidebar span {
  display: block;
  height: 9px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #e2e5ea;
}

.noise-sidebar span:nth-child(2) {
  width: 72%;
  background: #8db1fb;
}

.noise-sidebar span:nth-child(4) {
  width: 83%;
}

.noise-feed {
  display: grid;
  gap: 9px;
}

.noise-card {
  position: relative;
  min-height: 112px;
  padding: 13px;
  box-shadow: 0 5px 14px rgb(22 28 45 / 4%);
}

.noise-card strong {
  display: block;
  max-width: 78%;
  font-size: 11px;
  line-height: 1.45;
}

.noise-card p {
  height: 22px;
  margin: 9px 0 0;
  background: repeating-linear-gradient(to bottom, #dfe2e8 0 4px, transparent 4px 9px);
}

.noise-card::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 52px;
  height: 38px;
  border-radius: 5px;
  background: #e2e8f6;
  content: '';
}

.noise-card--warm::before,
.noise-card--red::before {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 5px;
  border-radius: 3px;
  color: #fff;
  font: 7px/1 var(--utility);
  letter-spacing: .05em;
}

.noise-card--warm::before {
  background: #ff8200;
  content: 'HOT';
}

.noise-card--red::before {
  background: #ff2442;
  content: 'NEW';
}

.noise-aside b,
.noise-aside i {
  display: block;
  border-radius: 4px;
}

.noise-aside b {
  height: 64px;
  background: #1b2438;
}

.noise-aside i {
  height: 8px;
  margin-top: 13px;
  background: #e0e3e8;
}

.noise-float {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #ff5a36;
  box-shadow: 0 8px 24px rgb(255 90 54 / 32%);
  color: #fff;
  font-size: 18px;
}

.focus-panel {
  display: grid;
  min-height: 520px;
  padding: 26px 28px 24px;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 20px;
  background: #f5f7fb;
}

.reading-rail {
  position: relative;
  padding-top: 13px;
  color: #667085;
  font: 600 7px/1 var(--utility);
  letter-spacing: .13em;
  text-align: center;
  writing-mode: vertical-rl;
}

.reading-rail::after {
  position: absolute;
  top: 50px;
  bottom: 12px;
  left: 12px;
  width: 1px;
  background: linear-gradient(to bottom, var(--blue) 0 28%, #d9dfe9 28% 100%);
  content: '';
}

.focus-content {
  min-width: 0;
}

.focus-brand {
  display: flex;
  padding-bottom: 17px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9dfe9;
}

.focus-brand span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 720;
}

.focus-brand img {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.focus-brand small {
  color: #798295;
  font-size: 8px;
}

.focus-item {
  padding: 22px 0 20px;
  border-bottom: 1px solid #d9dfe9;
}

.focus-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #667085;
  font: 8px/1.3 var(--utility);
}

.focus-meta b {
  color: var(--blue);
  font-weight: 650;
}

.focus-item h3 {
  margin: 13px 0 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 550;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.focus-item p {
  margin: 10px 0 0;
  color: #4d5667;
  font-size: 10px;
  line-height: 1.75;
}

.focus-actions {
  display: flex;
  margin-top: 12px;
  justify-content: space-between;
  color: #798295;
  font-size: 8px;
}

.focus-actions a {
  color: var(--blue);
  text-decoration: none;
}

.demo-caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
}

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

.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font: 650 10px/1.4 var(--utility);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  gap: 96px;
}

.manifesto-layout .section-heading {
  position: sticky;
  top: 126px;
  align-self: start;
}

.rights-list {
  display: grid;
  border-top: 1px solid var(--ink);
}

.right-item {
  display: grid;
  padding: 30px 0;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.right-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--blue);
  font: 650 11px/1 var(--utility);
}

.right-item h3,
.feature-card h3,
.step h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -.02em;
}

.right-item p,
.feature-card p,
.step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.platform-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.platform-count {
  color: var(--muted);
  font: 11px/1.4 var(--utility);
}

.platform-count strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 550;
}

.platform-grid {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.platform-item {
  display: grid;
  min-height: 112px;
  padding: 23px;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 45%);
}

.platform-item img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.platform-item strong,
.platform-item small {
  display: block;
}

.platform-item strong {
  font-size: 13px;
  font-weight: 670;
}

.platform-item small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.platform-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 235px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--blue);
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.privacy-callout {
  display: grid;
  padding: 72px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 80px;
  background: var(--night);
  color: #fff;
}

.privacy-callout .section-kicker {
  color: #8fb3ff;
}

.privacy-callout h2 {
  max-width: 680px;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1.08;
}

.privacy-callout h2 em {
  color: #8fb3ff;
  font-style: normal;
}

.privacy-copy {
  align-self: end;
}

.privacy-copy p {
  margin: 0;
  color: #bbc6d8;
  font-size: 14px;
  line-height: 1.9;
}

.privacy-points {
  display: flex;
  margin-top: 26px;
  flex-wrap: wrap;
  gap: 9px;
}

.privacy-points span {
  padding: 7px 9px;
  border: 1px solid #2b3a55;
  border-radius: 4px;
  color: #dbe5f6;
  font: 10px/1.2 var(--utility);
}

.privacy-link {
  display: inline-block;
  margin-top: 26px;
  border-bottom: 1px solid #50698f;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

.steps {
  display: grid;
  margin-top: 66px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.step {
  position: relative;
  padding: 32px 30px 0 0;
}

.step:not(:last-child) {
  border-right: 1px solid var(--line);
}

.step:not(:first-child) {
  padding-left: 30px;
}

.step-number {
  display: block;
  margin-bottom: 72px;
  color: var(--blue);
  font: 650 11px/1 var(--utility);
  letter-spacing: .08em;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(520px, 1.28fr);
  gap: 90px;
}

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

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

.faq-list summary {
  display: grid;
  padding: 24px 6px 24px 0;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--blue);
  font: 18px/1 var(--utility);
  content: '+';
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  margin: -4px 44px 24px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.closing-section {
  padding: 100px 0 54px;
  border-top: 1px solid var(--line);
}

.closing-grid {
  display: grid;
  padding-bottom: 96px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: end;
  gap: 80px;
}

.closing-copy h2 {
  max-width: 780px;
  font-size: clamp(48px, 6.3vw, 86px);
  line-height: 1.02;
}

.closing-side p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.site-footer {
  display: grid;
  min-height: 88px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

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

.footer-nav {
  display: flex;
  gap: 24px;
}

.copyright {
  justify-self: end;
  color: var(--muted);
  font-size: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.legal-main {
  width: min(calc(100% - 48px), 860px);
  margin: 0 auto;
  padding: 74px 0 120px;
}

.legal-hero {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--ink);
}

.legal-hero h1 {
  font-size: clamp(46px, 7vw, 72px);
  line-height: 1.04;
}

.legal-meta {
  display: flex;
  margin: 24px 0 0;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--muted);
  font: 10px/1.5 var(--utility);
}

.legal-content {
  padding-top: 20px;
}

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

.legal-content h2 {
  margin: 0 0 18px;
  font-size: 21px;
  letter-spacing: -.025em;
}

.legal-content p,
.legal-content li {
  color: var(--body);
  font-size: 14px;
  line-height: 1.9;
}

.legal-content ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--blue);
}

.legal-back {
  display: inline-block;
  margin-top: 44px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 12px;
  text-decoration: none;
}

@keyframes panel-in {
  from {
    opacity: .25;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
    padding: 72px 0 104px;
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .demo-wrap {
    width: min(100%, 700px);
    margin-left: auto;
  }

  .manifesto-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .manifesto-layout .section-heading {
    position: static;
  }

  .privacy-callout {
    padding: 58px;
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 760px) {
  body::before,
  body::after {
    display: none;
  }

  .header-inner,
  .page-shell {
    width: min(calc(100% - 32px), var(--page-width));
  }

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.nav-open .nav-toggle span {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle::before {
    top: 18px;
    transform: rotate(45deg);
  }

  .site-header.nav-open .nav-toggle::after {
    top: 18px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 16px 50px rgb(27 39 66 / 14%);
  }

  .nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 11px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav .nav-language {
    display: block;
  }

  .language-link {
    display: none;
  }

  .legal-site-header .language-link {
    display: block;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-intro {
    font-size: 15px;
  }

  .demo-wrap::before {
    right: -16px;
    bottom: -26px;
    left: 50px;
  }

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

  .noise-aside {
    display: none;
  }

  .section {
    padding: 84px 0;
  }

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

  .privacy-callout {
    margin-right: -16px;
    margin-left: -16px;
    padding: 50px 28px;
  }

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

  .step,
  .step:not(:first-child) {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-number {
    margin-bottom: 36px;
  }

  .closing-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer {
    padding: 28px 0;
    grid-template-columns: 1fr auto;
  }

  .footer-nav {
    order: 3;
    grid-column: 1 / -1;
  }

  .copyright {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .closing-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-control {
    align-items: flex-start;
    flex-direction: column;
  }

  .browser-panel {
    min-height: 440px;
  }

  .noise-panel {
    padding: 10px;
  }

  .noise-topbar {
    padding: 0 9px;
  }

  .noise-pills {
    display: none;
  }

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

  .noise-sidebar {
    display: none;
  }

  .focus-panel {
    min-height: 440px;
    padding: 20px 17px;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
  }

  .reading-rail::after {
    left: 8px;
  }

  .focus-item {
    padding: 18px 0;
  }

  .focus-item h3 {
    font-size: 17px;
  }

  .platform-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .platform-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .privacy-callout h2 {
    font-size: 40px;
  }

  .faq-layout {
    gap: 42px;
  }

  .faq-list details p {
    margin-right: 10px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .legal-main {
    width: calc(100% - 32px);
    padding-top: 56px;
  }
}

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

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