:root {
  color-scheme: dark;
  --bg: #07100f;
  --bg-deep: #030807;
  --panel: rgba(14, 30, 28, 0.82);
  --panel-solid: #0d1c1a;
  --panel-soft: rgba(18, 39, 35, 0.58);
  --line: rgba(151, 197, 180, 0.18);
  --line-strong: rgba(169, 214, 197, 0.32);
  --text: #edf4f1;
  --muted: #9aada7;
  --dim: #6f8580;
  --accent: #d7df9d;
  --mint: #7fd4b7;
  --red: #ff6d77;
  --blue: #7ca7ff;
  --green: #7ce49a;
  --radius: 20px;
  --mono: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 0%, rgba(54, 115, 101, 0.19), transparent 30rem),
    radial-gradient(circle at 84% 12%, rgba(166, 175, 100, 0.1), transparent 25rem),
    linear-gradient(180deg, #071110 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

::selection {
  background: rgba(215, 223, 157, 0.25);
  color: #fff;
}

.ambient-grid {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(128, 180, 162, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 180, 162, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 32px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--accent);
  color: #121711;
  font-weight: 750;
  text-decoration: none;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  color: var(--text);
}

.brand img {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  box-shadow: 0 0 28px rgba(102, 207, 174, 0.1);
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand b {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}

.brand strong {
  margin-top: 5px;
  font-size: 0.92rem;
  letter-spacing: 0.055em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 16, 15, 0.64);
}

.primary-nav a {
  padding: 8px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--panel-soft);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(46px, 7vw, 112px);
  align-items: center;
  min-height: 720px;
  padding: 84px 0 96px;
  border-bottom: 1px solid var(--line);
}

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

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 5.5vw, 6.2rem);
  font-weight: 520;
  letter-spacing: -0.058em;
}

.lede {
  max-width: 640px;
  margin: 0;
  color: #b5c5c0;
  font-size: clamp(1.06rem, 1.35vw, 1.28rem);
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(16, 35, 32, 0.7);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration: none;
}

.button:hover {
  border-color: rgba(215, 223, 157, 0.64);
  color: var(--accent);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #131810;
}

.button.primary:hover {
  background: #ebf1b0;
  color: #0d120a;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0 0;
  padding: 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}

.facts li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.facts li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 9px rgba(127, 212, 183, 0.65);
  content: "";
}

.monitor {
  position: relative;
  isolation: isolate;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: rgba(5, 13, 12, 0.86);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.03);
}

.monitor::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(65, 145, 123, 0.13), transparent 55%);
  content: "";
}

.monitor-top,
.monitor-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.monitor-top span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 9px var(--mint);
  content: "";
}

.monitor-top b {
  color: #8d9e98;
  font-weight: 600;
}

.monitor-bottom {
  min-height: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.monitor-screen {
  position: relative;
  z-index: 1;
  height: 388px;
  margin: 0 18px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background-image:
    linear-gradient(rgba(119, 162, 147, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 162, 147, 0.1) 1px, transparent 1px);
  background-size: 100% 25%, 12.5% 100%;
}

.axis-label {
  position: absolute;
  z-index: 5;
  left: 9px;
  padding: 0 5px;
  background: rgba(5, 13, 12, 0.8);
  color: #748882;
  font-family: var(--mono);
  font-size: 0.62rem;
}

.axis-label.top {
  top: 4px;
}

.axis-label.mid {
  top: 49%;
}

.axis-label.bottom {
  bottom: 3px;
}

.monitor-trace {
  position: absolute;
  inset: 12% 2% 7% 6%;
  opacity: 0.84;
  filter: drop-shadow(0 0 3px currentColor);
  clip-path: polygon(0 84%, 4% 78%, 8% 71%, 12% 73%, 17% 67%, 21% 75%, 25% 47%, 29% 52%, 34% 34%, 38% 40%, 43% 54%, 47% 44%, 51% 53%, 56% 18%, 60% 24%, 65% 20%, 69% 48%, 73% 43%, 78% 52%, 82% 46%, 87% 63%, 91% 35%, 95% 41%, 100% 20%, 100% 23%, 95% 44%, 91% 39%, 87% 67%, 82% 50%, 78% 56%, 73% 47%, 69% 53%, 65% 25%, 60% 28%, 56% 22%, 51% 57%, 47% 48%, 43% 59%, 38% 45%, 34% 39%, 29% 57%, 25% 52%, 21% 80%, 17% 72%, 12% 78%, 8% 76%, 4% 83%, 0 88%);
}

.monitor-trace::after {
  position: absolute;
  inset: 0;
  background: currentColor;
  content: "";
}

.monitor-trace.red {
  color: var(--red);
  transform: translate(-2px, 9px);
}

.monitor-trace.green {
  color: var(--green);
  transform: translate(1px, -2px);
}

.monitor-trace.blue {
  color: var(--blue);
  transform: translate(3px, 5px);
}

.monitor-trace.white {
  color: rgba(240, 245, 239, 0.76);
  opacity: 0.45;
  transform: translateY(2px);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 1.28fr);
  column-gap: 56px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 4.7rem);
  font-weight: 520;
  letter-spacing: -0.046em;
}

.section-heading > p:last-child {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.scope-card {
  position: relative;
  min-height: 480px;
  padding: 18px 18px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(17, 37, 34, 0.86), rgba(7, 16, 15, 0.88));
}

.card-number {
  position: absolute;
  z-index: 2;
  top: 29px;
  right: 30px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.scope-card h3 {
  margin: 28px 12px 13px;
  font-size: 1.23rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.scope-card > p {
  margin: 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.scope-visual {
  position: relative;
  height: 270px;
  overflow: hidden;
  border: 1px solid rgba(144, 188, 173, 0.13);
  border-radius: 13px;
  background-color: rgba(3, 9, 8, 0.8);
  background-image:
    linear-gradient(rgba(126, 176, 158, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 176, 158, 0.07) 1px, transparent 1px);
  background-size: 100% 25%, 25% 100%;
}

.scope-visual.parade {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 30px 16px 18px;
}

.scope-visual.parade i {
  display: block;
  height: 100%;
  opacity: 0.74;
  background: rgba(242, 244, 239, 0.72);
  clip-path: polygon(4% 89%, 10% 84%, 15% 68%, 20% 72%, 27% 35%, 34% 26%, 41% 42%, 47% 19%, 54% 14%, 61% 36%, 67% 33%, 73% 58%, 79% 49%, 86% 71%, 92% 65%, 97% 87%, 97% 94%, 91% 72%, 86% 78%, 79% 56%, 73% 65%, 67% 41%, 61% 43%, 54% 20%, 47% 26%, 41% 49%, 34% 33%, 27% 43%, 20% 78%, 15% 75%, 10% 91%, 4% 96%);
  filter: drop-shadow(0 0 3px currentColor);
}

.scope-visual.parade i:nth-child(2) {
  color: var(--red);
  background: currentColor;
  transform: translateY(11px);
}

.scope-visual.parade i:nth-child(3) {
  color: var(--green);
  background: currentColor;
  transform: translateY(-7px);
}

.scope-visual.parade i:nth-child(4) {
  color: var(--blue);
  background: currentColor;
  transform: translateY(7px);
}

.scope-visual.waveform {
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  padding: 19px 12px;
}

.scope-visual.waveform i {
  width: 4%;
  height: calc(22% + ((var(--i) * 37) % 62) * 1%);
  margin: 0 -1px;
  border-radius: 70% 50% 0 0;
  background: linear-gradient(to right, rgba(255, 109, 119, 0.6), rgba(124, 228, 154, 0.7), rgba(124, 167, 255, 0.6));
  opacity: 0.35;
  filter: blur(0.4px) drop-shadow(0 -2px 3px rgba(229, 235, 210, 0.28));
}

.scope-visual.vectorscope {
  width: 270px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 50%;
  background-image:
    radial-gradient(circle, transparent 27%, rgba(126, 176, 158, 0.1) 28%, transparent 29%, transparent 56%, rgba(126, 176, 158, 0.14) 57%, transparent 58%),
    linear-gradient(rgba(126, 176, 158, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 176, 158, 0.12) 1px, transparent 1px);
  background-position: center;
  background-size: 100% 100%, 100% 50%, 50% 100%;
}

.scope-visual.vectorscope::after {
  position: absolute;
  top: 13%;
  bottom: 13%;
  left: 50%;
  width: 1px;
  background: rgba(215, 223, 157, 0.35);
  content: "";
  transform: rotate(33deg);
  transform-origin: center;
}

.scope-visual.vectorscope i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px 4px rgba(215, 223, 157, 0.46);
}

.scope-visual.vectorscope i:nth-child(1) { top: 31%; left: 58%; }
.scope-visual.vectorscope i:nth-child(2) { top: 38%; left: 64%; background: var(--red); }
.scope-visual.vectorscope i:nth-child(3) { top: 45%; left: 54%; background: var(--green); }
.scope-visual.vectorscope i:nth-child(4) { top: 51%; left: 48%; background: var(--blue); }
.scope-visual.vectorscope i:nth-child(5) { top: 35%; left: 48%; width: 5px; height: 5px; }

.section-heading.compact {
  display: block;
}

.section-heading.compact h2 {
  max-width: none;
}

.workflow ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.workflow li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  min-height: 220px;
  padding: 34px 32px 36px 0;
  border-bottom: 1px solid var(--line);
}

.workflow li + li {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.workflow li > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.workflow h3 {
  margin-bottom: 15px;
  font-size: 1.35rem;
  font-weight: 600;
}

.workflow li p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.privacy-callout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: center;
  margin: 120px 0 36px;
  padding: clamp(36px, 6vw, 90px);
  overflow: hidden;
  border: 1px solid rgba(215, 223, 157, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 100%, rgba(110, 174, 151, 0.16), transparent 35%),
    linear-gradient(135deg, rgba(20, 42, 37, 0.92), rgba(8, 18, 16, 0.94));
}

.privacy-callout h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.privacy-callout > div:last-child > p:not(.eyebrow) {
  max-width: 720px;
  color: #a9bcb5;
}

.privacy-callout a {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 720;
}

.lock-mark {
  position: relative;
  width: min(260px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(215, 223, 157, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(215, 223, 157, 0.08) 0 3px, transparent 4px),
    radial-gradient(circle, transparent 0 35%, rgba(215, 223, 157, 0.1) 36%, transparent 37% 63%, rgba(215, 223, 157, 0.1) 64%, transparent 65%);
}

.lock-mark::before {
  position: absolute;
  top: 27%;
  left: 36%;
  width: 28%;
  height: 30%;
  border: 2px solid var(--accent);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  content: "";
}

.lock-mark::after {
  position: absolute;
  top: 49%;
  left: 30%;
  width: 40%;
  height: 30%;
  border: 2px solid var(--accent);
  border-radius: 9px;
  background: rgba(215, 223, 157, 0.06);
  box-shadow: 0 0 38px rgba(215, 223, 157, 0.12);
  content: "";
}

.lock-mark span {
  position: absolute;
  z-index: 2;
  top: 60%;
  left: 49%;
  width: 5px;
  height: 11px;
  border-radius: 3px;
  background: var(--accent);
}

.limits {
  display: grid;
  grid-template-columns: minmax(200px, 0.65fr) minmax(300px, 1.35fr) auto;
  gap: 38px;
  align-items: start;
  padding: 42px 0 100px;
  border-bottom: 1px solid var(--line);
}

.limits h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
}

.limits p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.limits a {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.document-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(56px, 8vw, 140px);
  align-items: start;
  padding: 92px 0 120px;
  border-bottom: 1px solid var(--line);
}

.document-hero {
  position: sticky;
  top: 36px;
  padding-top: 11px;
}

.document-hero h1 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 510;
  letter-spacing: -0.058em;
}

.document-path {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.legal-document {
  max-width: 850px;
  padding: clamp(28px, 5vw, 68px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(15, 32, 29, 0.9), rgba(6, 15, 13, 0.9));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}

.legal-document h2 {
  margin: 62px 0 20px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 620;
  letter-spacing: -0.025em;
}

.legal-document h2:first-child {
  margin-top: 12px;
}

.legal-document h3 {
  margin: 35px 0 14px;
  color: #dce7e2;
  font-size: 1.08rem;
  font-weight: 680;
}

.legal-document p,
.legal-document li {
  color: #aebfba;
  font-size: 0.96rem;
}

.legal-document p {
  margin: 0 0 18px;
}

.legal-document ul,
.legal-document ol {
  margin: 0 0 24px;
  padding-left: 1.35rem;
}

.legal-document li {
  margin: 8px 0;
  padding-left: 0.35rem;
}

.legal-document li::marker {
  color: var(--accent);
  font-family: var(--mono);
}

.legal-document strong {
  color: #e7efeb;
  font-weight: 680;
}

.legal-document a {
  color: var(--accent);
}

code {
  padding: 0.12em 0.35em;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(3, 9, 8, 0.65);
  color: #c9dad4;
  font-family: var(--mono);
  font-size: 0.86em;
}

.not-found {
  min-height: 620px;
  padding: 120px 0;
}

.not-found h1 {
  margin-bottom: 16px;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.not-found > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(360px, 1.3fr) minmax(250px, 1fr);
  gap: 40px;
  padding: 54px 0 60px;
  color: var(--dim);
  font-size: 0.76rem;
}

.site-footer p {
  max-width: 390px;
  margin: 0 0 9px;
}

.footer-brand {
  color: var(--text);
  font-weight: 700;
}

.site-footer dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.site-footer dl div {
  min-width: 0;
}

.site-footer dt {
  margin-bottom: 6px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer dd {
  margin: 0;
  color: #a7b9b3;
  overflow-wrap: anywhere;
}

.language-switcher {
  justify-self: end;
  text-align: right;
}

.language-switcher > span {
  display: block;
  margin-bottom: 7px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher nav {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  justify-content: flex-end;
}

.language-switcher a {
  color: #9eb0aa;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .monitor {
    width: min(820px, 100%);
  }

  .scope-cards {
    grid-template-columns: 1fr 1fr;
  }

  .scope-card:last-child {
    grid-column: 1 / -1;
  }

  .scope-card:last-child .scope-visual {
    width: 270px;
  }

  .limits {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .limits a {
    grid-column: 2;
  }

  .site-footer {
    grid-template-columns: 1fr 1.5fr;
  }

  .language-switcher {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .language-switcher nav {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .shell {
    padding: 0 20px;
  }

  .site-header {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    padding: 20px 0;
  }

  .brand {
    align-self: flex-start;
  }

  .primary-nav {
    justify-content: stretch;
  }

  .primary-nav a {
    flex: 1;
    padding-right: 9px;
    padding-left: 9px;
    text-align: center;
  }

  .hero {
    padding: 70px 0 76px;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .monitor {
    min-height: 400px;
  }

  .monitor-screen {
    height: 308px;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-bottom: 25px;
  }

  .scope-cards {
    grid-template-columns: 1fr;
  }

  .scope-card:last-child {
    grid-column: auto;
  }

  .workflow ol {
    grid-template-columns: 1fr;
  }

  .workflow li,
  .workflow li + li {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
  }

  .privacy-callout {
    grid-template-columns: 1fr;
    margin-top: 82px;
  }

  .lock-mark {
    width: 210px;
  }

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

  .limits a {
    grid-column: auto;
  }

  .document-layout {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .document-hero {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer dl {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .shell {
    padding: 0 14px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .hero {
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .facts {
    display: grid;
    gap: 10px;
  }

  .monitor-top,
  .monitor-bottom {
    padding: 0 12px;
    font-size: 0.56rem;
  }

  .monitor-screen {
    margin: 0 10px;
  }

  .section-heading h2,
  .privacy-callout h2 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .scope-card {
    min-height: 0;
  }

  .scope-visual {
    height: 230px;
  }

  .scope-visual.vectorscope {
    width: 230px;
  }

  .privacy-callout {
    padding: 36px 24px;
  }

  .document-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .legal-document {
    padding: 26px 20px;
  }

  .legal-document h2 {
    margin-top: 48px;
  }

  .site-footer dl {
    grid-template-columns: 1fr;
  }
}

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

@media print {
  :root {
    color-scheme: light;
  }

  body {
    background: #fff;
    color: #111;
  }

  .ambient-grid,
  .site-header,
  .site-footer {
    display: none;
  }

  .shell,
  .document-layout {
    display: block;
    width: 100%;
    padding: 0;
  }

  .document-hero {
    position: static;
    margin-bottom: 28px;
  }

  .document-hero h1,
  .legal-document h2,
  .legal-document h3,
  .legal-document strong {
    color: #111;
  }

  .legal-document {
    max-width: none;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
  }

  .legal-document p,
  .legal-document li {
    color: #222;
  }

  .legal-document a {
    color: #111;
  }
}
