:root {
  --ink: #f4f4f5;
  --muted: #a4a5aa;
  --quiet: #6f7075;
  --bg: #08090a;
  --chrome: #111215;
  --chrome-raised: #18191d;
  --line: rgba(255, 255, 255, 0.11);
  --line-soft: rgba(255, 255, 255, 0.065);
  --blue: #7ea5da;
  --success: #9fc9ae;
  --paper: #f2f2f4;
  --paper-ink: #17181a;
  --header-height: 66px;
  --page-width: 1320px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  content: "";
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

body.nav-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.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: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--paper-ink);
  border-radius: 6px;
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(8, 9, 10, 0);
  transition: background-color 280ms ease, border-color 280ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-soft);
  background: rgba(8, 9, 10, 0.78);
  backdrop-filter: saturate(130%) blur(18px);
}

.nav-shell,
.site-footer {
  width: min(var(--page-width), calc(100% - 56px));
  margin-inline: auto;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 0.96rem;
  font-weight: 650;
}

.obvilion-mark {
  position: relative;
  display: inline-block;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  transform: rotate(-18deg);
  transition: transform 500ms var(--ease-out);
}

.brand:hover .obvilion-mark,
.brand:focus-visible .obvilion-mark,
.footer-brand:hover .obvilion-mark {
  transform: rotate(25deg);
}

.obvilion-mark i {
  position: absolute;
  inset: 0;
  border: 1.5px solid transparent;
  border-radius: 50%;
}

.obvilion-mark i:nth-child(1) {
  border-top-color: #f4f4f5;
  border-right-color: rgba(244, 244, 245, 0.52);
}

.obvilion-mark i:nth-child(2) {
  inset: 4px;
  border-right-color: rgba(244, 244, 245, 0.78);
  border-bottom-color: rgba(244, 244, 245, 0.34);
  transform: rotate(72deg);
}

.obvilion-mark i:nth-child(3) {
  inset: 9px;
  border-top-color: rgba(244, 244, 245, 0.76);
  transform: rotate(138deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 8px 11px;
  color: #a7a8ad;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 520;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  justify-self: end;
  min-height: 34px;
  padding: 8px 14px;
  color: #111214;
  border-radius: 999px;
  background: #f1f1f2;
  font-size: 0.81rem;
  font-weight: 680;
  transition: transform 200ms var(--ease-out), background-color 200ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle i {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.nav-toggle[aria-expanded="true"] i:first-of-type {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i:last-of-type {
  transform: translateY(-3px) rotate(-45deg);
}

.story {
  position: relative;
  background: var(--bg);
}

.product-stage {
  --light-x: 56%;
  --light-y: 42%;
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  perspective: 1900px;
  background: #08090a;
}

.stage-light {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at var(--light-x) var(--light-y), rgba(151, 165, 184, 0.12), transparent 24%),
    radial-gradient(circle at 50% 78%, rgba(92, 100, 112, 0.07), transparent 31%);
  transform: translateZ(0);
  pointer-events: none;
}

.stage-light::after {
  position: absolute;
  right: 15%;
  bottom: 10%;
  left: 15%;
  height: 26%;
  content: "";
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.055), transparent 68%);
  filter: blur(18px);
  opacity: 0.72;
}

.browser-rig {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(76vw, 980px);
  aspect-ratio: 1.6;
  transform: translate(-50%, -50%) translateY(248px) rotateX(7deg) rotateY(-12deg) rotateZ(-1.2deg) scale(0.78);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.browser-parallax {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.browser-shadow {
  position: absolute;
  right: 8%;
  bottom: -12%;
  left: 8%;
  height: 23%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  filter: blur(38px);
  transform: translateZ(-80px) rotateX(66deg);
}

.browser-window {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #0e0f11;
  box-shadow:
    0 54px 120px rgba(0, 0, 0, 0.55),
    0 14px 38px rgba(0, 0, 0, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.08);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.browser-window::after {
  position: absolute;
  inset: 0;
  z-index: 10;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(116deg, rgba(255, 255, 255, 0.08), transparent 19%, transparent 78%, rgba(255, 255, 255, 0.025));
  mix-blend-mode: screen;
}

.browser-titlebar {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  align-items: center;
  height: 44px;
  padding: 0 8px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  background: #101114;
}

.browser-brand-mark {
  position: relative;
  width: 17px;
  height: 17px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-right-color: rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.browser-brand-mark span {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-left-color: transparent;
  border-radius: 50%;
}

.tab-strip {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.browser-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 170px;
  min-width: 0;
  height: 31px;
  padding: 0 9px;
  color: #a5a6ac;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  font-size: 0.7rem;
}

.browser-tab.is-active {
  color: #f2f2f4;
  border-color: rgba(255, 255, 255, 0.08);
  background: #1a1b1f;
  box-shadow: inset 0 -2px #7597c2;
}

.story-tab {
  opacity: 0;
  transform: translateX(-18px) scale(0.96);
  will-change: transform, opacity;
}

.tab-favicon {
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: #111214;
  border-radius: 4px;
  background: #f1f1f2;
  font-size: 0.52rem;
  font-weight: 750;
}

.tab-favicon-neutral {
  background: #575960;
}

.tab-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tab-close {
  margin-left: auto;
  color: #6e7077;
  font-size: 0.83rem;
}

.new-tab-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: #a4a5aa;
  border-radius: 6px;
  font-size: 0.92rem;
}

.window-controls {
  display: flex;
  align-items: center;
  height: 100%;
  color: #85878e;
  font-size: 0.67rem;
}

.window-controls span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 28px;
}

.browser-toolbar {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 100px;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #15161a;
}

.toolbar-history,
.toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b3b4ba;
}

.toolbar-history span,
.toolbar-actions > span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 6px;
  font-size: 0.78rem;
}

.address-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  height: 34px;
  min-width: 0;
  padding: 0 12px;
  color: #d8d8dc;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #0f1012;
  box-shadow: 0 0 0 0 rgba(126, 165, 218, 0);
  font-size: 0.72rem;
  will-change: transform, box-shadow;
}

.address-lock {
  position: relative;
  width: 9px;
  height: 8px;
  flex: 0 0 auto;
  border: 1px solid #7e8189;
  border-radius: 2px;
}

.address-lock::before {
  position: absolute;
  top: -5px;
  left: 1px;
  width: 5px;
  height: 5px;
  content: "";
  border: 1px solid #7e8189;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.address-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.address-caret {
  width: 1px;
  height: 15px;
  margin-left: 1px;
  background: #a9c5e8;
  opacity: 0;
}

.shield-button {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.025);
  will-change: transform, background-color, box-shadow;
}

.shield-button svg {
  width: 17px;
  height: 19px;
  overflow: visible;
}

.shield-button path {
  fill: none;
  stroke: #c6c7cc;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shield-button .shield-spark {
  fill: #c6c7cc;
  stroke: none;
  opacity: 0;
  transform-origin: center;
}

.download-glyph {
  font-size: 1rem !important;
}

.menu-glyph {
  padding-bottom: 6px;
  letter-spacing: 1px;
}

.browser-viewport {
  position: relative;
  height: calc(100% - 96px);
  overflow: hidden;
  background: #ecebed;
}

.web-page {
  position: absolute;
  inset: 0;
  color: #161719;
  background: #f2f1f0;
}

.demo-site-header {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 52px;
  padding: 0 34px;
  border-bottom: 1px solid #dbdadd;
  color: #65666a;
  font-size: 0.65rem;
}

.demo-wordmark {
  margin-right: auto;
  color: #17181a;
  font-size: 0.92rem;
  font-weight: 760;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 205px;
  gap: 28px;
  padding: 28px 34px 36px;
}

.demo-article {
  min-width: 0;
}

.demo-kicker {
  margin-bottom: 9px;
  color: #77787d;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
}

.demo-article h2 {
  max-width: 520px;
  margin-bottom: 11px;
  color: #17181a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.04;
}

.demo-deck {
  max-width: 490px;
  margin-bottom: 18px;
  color: #6c6d72;
  font-size: 0.74rem;
  line-height: 1.5;
}

.demo-image {
  position: relative;
  height: 160px;
  overflow: hidden;
  border-radius: 8px;
  background: #d9d8d7;
}

.demo-image::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 41%, rgba(80, 82, 88, 0.18) 41% 42%, transparent 42%),
    linear-gradient(25deg, #c7c7c6, #e5e3df 72%);
}

.demo-image span {
  position: absolute;
  right: 12%;
  bottom: -25%;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(40, 42, 46, 0.25);
  border-radius: 50%;
}

.demo-lines {
  display: grid;
  gap: 7px;
  margin-top: 17px;
}

.demo-lines span {
  width: 92%;
  height: 5px;
  border-radius: 3px;
  background: #d7d6d8;
}

.demo-lines span:nth-child(2) { width: 86%; }
.demo-lines span:nth-child(3) { width: 68%; }

.demo-rail {
  display: grid;
  align-content: start;
  gap: 10px;
}

.ad-unit {
  display: flex;
  flex-direction: column;
  min-height: 92px;
  padding: 12px;
  border: 1px solid #d5d4d7;
  border-radius: 6px;
  background: #e8e7e7;
  transform-origin: center;
  will-change: transform, opacity;
}

.ad-unit small {
  color: #909095;
  font-size: 0.49rem;
  text-transform: uppercase;
}

.ad-unit strong {
  margin-top: 9px;
  color: #313236;
  font-size: 0.68rem;
}

.ad-unit span {
  margin-top: auto;
  color: #6d6e73;
  font-size: 0.55rem;
  text-decoration: underline;
}

.tracker-stack {
  display: grid;
  gap: 4px;
  margin-top: 2px;
  will-change: transform, opacity;
}

.tracker-stack span {
  padding: 6px 8px;
  color: #7e7f84;
  border: 1px dashed #c9c8cb;
  border-radius: 4px;
  font-family: Consolas, monospace;
  font-size: 0.48rem;
}

.story-panel {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(23, 24, 28, 0.97);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.shield-panel {
  top: 14px;
  right: 14px;
  width: 278px;
  padding: 18px;
  color: #f0f0f2;
  border-radius: 10px;
  transform: translateX(34px) scale(0.96);
}

.panel-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.panel-heading > div:last-child {
  display: grid;
  gap: 3px;
}

.panel-heading strong {
  font-size: 0.82rem;
}

.panel-heading span {
  color: var(--success);
  font-size: 0.61rem;
}

.shield-emblem {
  display: grid;
  place-items: center;
  width: 38px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.shield-emblem svg {
  width: 27px;
  height: 30px;
  overflow: visible;
}

.shield-outline {
  fill: none;
  stroke: #f3f3f4;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 230;
  stroke-dashoffset: 230;
}

.shield-inner-spark {
  fill: #f3f3f4;
  opacity: 0;
  transform-origin: center;
}

.shield-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 17px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.shield-stats div {
  display: grid;
  gap: 2px;
  padding: 13px 0;
}

.shield-stats div + div {
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.shield-stats strong {
  font-size: 1.22rem;
  font-variant-numeric: tabular-nums;
}

.shield-stats span,
.shield-footnote {
  color: #878990;
  font-size: 0.56rem;
}

.blocked-list {
  display: grid;
  gap: 8px;
}

.blocked-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  color: #b7b8bd;
  font-size: 0.59rem;
}

.blocked-list b {
  color: var(--success);
  font-size: 0.54rem;
  font-weight: 650;
}

.shield-footnote {
  margin-top: 15px;
}

.download-panel {
  right: 22px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  width: 430px;
  padding: 15px;
  color: #f1f1f3;
  border-radius: 10px;
  transform: translateY(35px) scale(0.97);
}

.download-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #24262b;
}

.download-icon span {
  font-size: 1.1rem;
}

.download-copy {
  min-width: 0;
}

.download-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #e8e8eb;
  font-size: 0.68rem;
}

.download-row span {
  color: #aeb0b6;
  font-variant-numeric: tabular-nums;
}

.download-meta {
  display: block;
  margin: 4px 0 9px;
  color: #7f8188;
  font-size: 0.55rem;
}

.download-track {
  height: 4px;
  overflow: hidden;
  border-radius: 2px;
  background: #303238;
}

.download-track span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #a8c2e5;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.verified-state {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 0;
  overflow: hidden;
  color: var(--success);
  font-size: 0.56rem;
  opacity: 0;
  transform: translateY(4px);
}

.verified-state i {
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.47rem;
  font-style: normal;
}

.settings-panel {
  inset: 0;
  display: grid;
  grid-template-columns: 180px 1fr;
  color: #ededf0;
  border: 0;
  border-radius: 0;
  background: #111216;
  box-shadow: none;
  transform: translateX(7%);
}

.settings-nav {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 29px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #0d0e11;
}

.settings-nav strong {
  padding: 0 10px 14px;
  font-size: 0.9rem;
}

.settings-nav span {
  padding: 9px 10px;
  color: #909198;
  border-radius: 6px;
  font-size: 0.65rem;
}

.settings-nav .is-selected {
  color: #f0f0f2;
  background: rgba(255, 255, 255, 0.07);
}

.settings-content {
  max-width: 580px;
  padding: 42px 44px;
}

.settings-kicker {
  margin-bottom: 7px;
  color: #85878e;
  font-size: 0.61rem;
  font-weight: 650;
}

.settings-content h3 {
  margin-bottom: 30px;
  font-size: 1.7rem;
  line-height: 1.1;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.setting-row > span {
  display: grid;
  gap: 5px;
}

.setting-row strong {
  font-size: 0.7rem;
}

.setting-row small {
  color: #85878e;
  font-size: 0.57rem;
}

.toggle {
  position: relative;
  width: 34px;
  height: 19px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: #34363c;
}

.toggle b {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #f5f5f6;
}

.toggle.is-on {
  background: #6689b7;
}

.toggle.is-on b {
  transform: translateX(15px);
}

.shortcut-cloud {
  position: absolute;
  inset: -90px -70px;
  z-index: 5;
  pointer-events: none;
}

.shortcut {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  color: #dcdddf;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(255, 255, 255, 0.23);
  border-radius: 8px;
  background: rgba(27, 28, 32, 0.9);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32), inset 0 -2px rgba(255, 255, 255, 0.04);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 590;
  opacity: 0;
  backdrop-filter: blur(12px);
  will-change: transform, opacity;
}

.shortcut span {
  color: #686a71;
  font-size: 0.64rem;
}

.shortcut-one { top: 9%; left: 4%; transform: translate3d(-30px, 18px, 0) rotate(-7deg); }
.shortcut-two { top: 43%; right: -1%; transform: translate3d(30px, 8px, 0) rotate(6deg); }
.shortcut-three { bottom: 3%; left: 18%; transform: translate3d(-8px, 26px, 0) rotate(3deg); }

.onony-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  will-change: transform, opacity;
}

.onony-orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top-color: rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.onony-orbit::after {
  position: absolute;
  inset: 29px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.onony-core {
  color: #f0f0f2;
  font-size: 2.25rem;
  font-weight: 640;
}

.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #707177;
  font-size: 0.69rem;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 18px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
}

.scroll-cue span::after {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 2px;
  height: 5px;
  content: "";
  border-radius: 1px;
  background: #a0a1a6;
}

.chapter-nav {
  position: absolute;
  top: 50%;
  right: 24px;
  z-index: 7;
  display: grid;
  gap: 11px;
  transform: translateY(-50%);
}

.chapter-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  min-height: 18px;
  color: #77787d;
  font-size: 0.62rem;
}

.chapter-nav a span {
  opacity: 0;
  transform: translateX(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.chapter-nav a i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #53545a;
  transition: height 220ms var(--ease-out), background-color 220ms ease;
}

.chapter-nav a:hover span,
.chapter-nav a:focus-visible span,
.chapter-nav a.is-active span {
  opacity: 1;
  transform: translateX(0);
}

.chapter-nav a.is-active {
  color: #cfd0d4;
}

.chapter-nav a.is-active i {
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: #d4d5d8;
}

.story-chapters {
  position: relative;
  z-index: 3;
  margin-top: -100vh;
  margin-top: -100svh;
  pointer-events: none;
}

.chapter {
  display: flex;
  align-items: center;
  width: min(var(--page-width), calc(100% - 112px));
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding-block: calc(var(--header-height) + 30px) 42px;
}

.chapter-copy {
  position: relative;
  z-index: 4;
  width: min(370px, 32vw);
  pointer-events: auto;
}

.chapter-copy h2 {
  margin-bottom: 20px;
  font-size: 3.65rem;
  line-height: 0.98;
  font-weight: 640;
}

.chapter-copy > p:not(.chapter-number):not(.product-label) {
  margin-bottom: 16px;
  color: #a2a3a8;
  font-size: 1rem;
  line-height: 1.65;
}

.chapter-copy > small {
  display: block;
  color: #6f7075;
  font-size: 0.72rem;
  line-height: 1.55;
}

.chapter-left .chapter-copy {
  margin-right: auto;
}

.chapter-right .chapter-copy {
  margin-left: auto;
}

.chapter-number,
.section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #77787e;
  font-size: 0.72rem;
  font-weight: 650;
}

.chapter-number span {
  width: 22px;
  height: 1px;
  background: #45464b;
}

.chapter-hero {
  align-items: flex-start;
  justify-content: center;
  padding-top: max(105px, 12vh);
  text-align: center;
}

.hero-copy {
  width: min(820px, 82vw);
}

.product-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 17px;
  color: #b4b5ba;
  font-size: 0.78rem;
  font-weight: 620;
}

.product-label b {
  padding: 4px 7px;
  color: #8f9197;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 650;
}

.product-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a2c0aa;
  box-shadow: 0 0 0 4px rgba(162, 192, 170, 0.08);
}

.hero-copy h1 {
  margin-bottom: 18px;
  font-size: 5rem;
  line-height: 0.96;
  font-weight: 660;
}

.hero-copy > p:not(.product-label) {
  max-width: 590px;
  margin: 0 auto 20px;
  color: #a4a5aa;
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-actions,
.release-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 650;
}

.button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 220ms var(--ease-out), background-color 220ms ease, box-shadow 220ms ease;
}

.button span,
.text-link span {
  transition: transform 220ms var(--ease-out);
}

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

.button:hover span,
.button:focus-visible span {
  transform: translateY(2px);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(2px, -2px);
}

.button-light {
  color: #151618;
  background: #f2f2f3;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.button-light:hover,
.button-light:focus-visible {
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.text-link {
  color: #b8b9bd;
}

.chapter-future {
  align-items: flex-start;
  justify-content: center;
  padding-top: 17vh;
  text-align: center;
}

.chapter-future .chapter-copy {
  width: min(540px, 80vw);
}

.chapter-future .chapter-number {
  justify-content: center;
}

.chapter-future .chapter-copy > p:not(.chapter-number) {
  margin-inline: auto;
}

.coming-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #95969b;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 650;
}

.release {
  position: relative;
  z-index: 4;
  color: var(--paper-ink);
  background: var(--paper);
}

.release-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 100px;
  align-items: end;
  width: min(1180px, calc(100% - 72px));
  min-height: 88vh;
  margin-inline: auto;
  padding-block: 120px 105px;
}

.release-copy {
  max-width: 700px;
}

.release-copy .section-label {
  color: #727378;
}

.release-copy h2 {
  margin-bottom: 24px;
  font-size: 4.8rem;
  line-height: 0.98;
  font-weight: 660;
}

.release-copy > p:not(.section-label) {
  max-width: 600px;
  margin-bottom: 30px;
  color: #68696e;
  font-size: 1.05rem;
  line-height: 1.62;
}

.release-actions {
  justify-content: flex-start;
}

.button-dark {
  color: #f4f4f5;
  background: #191a1c;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #000;
  box-shadow: 0 15px 31px rgba(0, 0, 0, 0.22);
}

.dark-link {
  color: #4f5054;
}

.release-meta {
  border-top: 1px solid #d3d3d7;
}

.release-meta div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  padding: 17px 0;
  border-bottom: 1px solid #d3d3d7;
}

.release-meta span {
  color: #85868a;
  font-size: 0.73rem;
}

.release-meta strong {
  color: #303135;
  font-size: 0.8rem;
  font-weight: 650;
  text-align: right;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 48px;
  align-items: start;
  padding-block: 68px 44px;
}

.site-footer p {
  margin: 0;
  color: #77787e;
  font-size: 0.76rem;
  line-height: 1.55;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer nav a {
  color: #a0a1a6;
  font-size: 0.76rem;
  transition: color 180ms ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
}

.footer-version {
  grid-column: 1 / -1;
  padding-top: 30px;
  color: #57585d;
  border-top: 1px solid var(--line-soft);
  font-size: 0.69rem;
}

:focus-visible {
  outline: 2px solid #b7cae2;
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .chapter {
    width: min(var(--page-width), calc(100% - 72px));
  }

  .chapter-copy {
    width: min(340px, 34vw);
  }

  .chapter-copy h2 {
    font-size: 3.1rem;
  }

  .browser-rig {
    width: min(80vw, 880px);
  }

  .release-shell {
    gap: 64px;
  }

  .release-copy h2 {
    font-size: 4rem;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 62px;
  }

  .nav-shell,
  .site-footer {
    width: min(100% - 36px, var(--page-width));
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 2px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(18, 19, 22, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    backdrop-filter: blur(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 12px;
  }

  .browser-rig {
    top: 63%;
    width: 90vw;
  }

  .chapter {
    align-items: flex-start;
    width: calc(100% - 48px);
    padding-top: calc(var(--header-height) + 44px);
  }

  .chapter-copy,
  .chapter-left .chapter-copy,
  .chapter-right .chapter-copy {
    width: min(520px, 78vw);
    margin-right: auto;
    margin-left: 0;
  }

  .chapter-copy h2 {
    font-size: 2.65rem;
  }

  .chapter-hero {
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + 38px);
    text-align: left;
  }

  .hero-copy {
    width: min(610px, 86vw);
  }

  .product-label {
    justify-content: flex-start;
  }

  .hero-copy h1 {
    font-size: 4rem;
  }

  .hero-copy > p:not(.product-label) {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .chapter-future {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .chapter-future .chapter-number {
    justify-content: flex-start;
  }

  .chapter-future .chapter-copy > p:not(.chapter-number) {
    margin-left: 0;
  }

  .chapter-nav {
    display: none;
  }

  .release-shell {
    grid-template-columns: 1fr;
    gap: 60px;
    width: min(100% - 48px, 760px);
    padding-block: 92px 76px;
  }

  .release-copy h2 {
    font-size: 3.6rem;
  }

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

  .site-footer nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .product-stage {
    min-height: 590px;
  }

  .chapter {
    width: calc(100% - 36px);
    padding-top: calc(var(--header-height) + 31px);
  }

  .chapter-copy,
  .chapter-left .chapter-copy,
  .chapter-right .chapter-copy {
    width: 100%;
  }

  .chapter-copy h2 {
    max-width: 330px;
    margin-bottom: 13px;
    font-size: 2.35rem;
    line-height: 1;
  }

  .chapter-copy > p:not(.chapter-number):not(.product-label) {
    max-width: 355px;
    margin-bottom: 10px;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .chapter-copy > small {
    max-width: 350px;
    font-size: 0.63rem;
  }

  .chapter-number {
    margin-bottom: 11px;
    font-size: 0.65rem;
  }

  .chapter-hero {
    padding-top: calc(var(--header-height) + 27px);
  }

  .hero-copy {
    width: 100%;
  }

  .product-label {
    margin-bottom: 12px;
    font-size: 0.69rem;
  }

  .hero-copy h1 {
    margin-bottom: 12px;
    font-size: 3.18rem;
    line-height: 0.97;
  }

  .hero-copy > p:not(.product-label) {
    max-width: 350px;
    margin-bottom: 15px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 12px;
  }

  .button,
  .text-link {
    font-size: 0.76rem;
  }

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

  .browser-rig {
    top: 66%;
    width: 94vw;
  }

  .browser-window {
    border-radius: 10px;
  }

  .browser-titlebar {
    grid-template-columns: 22px minmax(0, 1fr) 55px;
    height: 29px;
    padding-inline: 6px;
  }

  .browser-brand-mark {
    width: 12px;
    height: 12px;
  }

  .browser-brand-mark span {
    inset: 3px;
  }

  .browser-tab {
    width: 91px;
    height: 22px;
    padding: 0 6px;
    border-radius: 5px;
    font-size: 0.46rem;
  }

  .tab-favicon {
    width: 9px;
    height: 9px;
    border-radius: 2px;
    font-size: 0.35rem;
  }

  .tab-close,
  .story-tab-three {
    display: none;
  }

  .new-tab-icon {
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }

  .window-controls span {
    width: 18px;
    height: 20px;
    font-size: 0.46rem;
  }

  .browser-toolbar {
    grid-template-columns: 49px minmax(0, 1fr) 53px;
    gap: 4px;
    height: 34px;
    padding-inline: 6px;
  }

  .toolbar-history span,
  .toolbar-actions > span {
    width: 16px;
    height: 16px;
    font-size: 0.47rem;
  }

  .address-field {
    gap: 5px;
    height: 23px;
    padding-inline: 7px;
    border-radius: 5px;
    font-size: 0.48rem;
  }

  .address-lock {
    width: 6px;
    height: 6px;
  }

  .address-lock::before {
    top: -4px;
    width: 3px;
    height: 4px;
  }

  .shield-button svg {
    width: 11px;
    height: 13px;
  }

  .browser-viewport {
    height: calc(100% - 63px);
  }

  .demo-site-header {
    gap: 10px;
    height: 29px;
    padding: 0 14px;
    font-size: 0.38rem;
  }

  .demo-wordmark {
    font-size: 0.54rem;
  }

  .demo-layout {
    grid-template-columns: minmax(0, 1fr) 80px;
    gap: 10px;
    padding: 12px 14px;
  }

  .demo-kicker {
    margin-bottom: 4px;
    font-size: 0.31rem;
  }

  .demo-article h2 {
    margin-bottom: 4px;
    font-size: 0.86rem;
  }

  .demo-deck {
    margin-bottom: 7px;
    font-size: 0.37rem;
  }

  .demo-image {
    height: 65px;
    border-radius: 4px;
  }

  .demo-lines {
    gap: 3px;
    margin-top: 7px;
  }

  .demo-lines span {
    height: 2px;
  }

  .demo-rail {
    gap: 4px;
  }

  .ad-unit {
    min-height: 40px;
    padding: 5px;
    border-radius: 3px;
  }

  .ad-unit small,
  .ad-unit span,
  .tracker-stack span {
    font-size: 0.25rem;
  }

  .ad-unit strong {
    margin-top: 3px;
    font-size: 0.31rem;
  }

  .tracker-stack {
    gap: 2px;
  }

  .tracker-stack span {
    padding: 2px 3px;
  }

  .shield-panel {
    top: 6px;
    right: 6px;
    width: 124px;
    padding: 8px;
    border-radius: 6px;
  }

  .panel-heading {
    gap: 6px;
  }

  .shield-emblem {
    width: 20px;
    height: 22px;
    border-radius: 4px;
  }

  .shield-emblem svg {
    width: 14px;
    height: 16px;
  }

  .panel-heading strong { font-size: 0.38rem; }
  .panel-heading span { font-size: 0.3rem; }
  .shield-stats { margin: 7px 0; }
  .shield-stats div { padding: 5px 0; }
  .shield-stats div + div { padding-left: 6px; }
  .shield-stats strong { font-size: 0.62rem; }
  .shield-stats span,
  .shield-footnote,
  .blocked-list p,
  .blocked-list b { font-size: 0.27rem; }
  .blocked-list { gap: 3px; }
  .shield-footnote { margin-top: 6px; }

  .download-panel {
    right: 7px;
    bottom: 7px;
    grid-template-columns: 22px 1fr;
    gap: 6px;
    width: 190px;
    padding: 7px;
    border-radius: 6px;
  }

  .download-icon {
    width: 22px;
    height: 22px;
    border-radius: 4px;
  }

  .download-icon span { font-size: 0.55rem; }
  .download-row { gap: 7px; font-size: 0.34rem; }
  .download-meta { margin: 2px 0 4px; font-size: 0.28rem; }
  .download-track { height: 2px; }
  .verified-state { gap: 3px; font-size: 0.28rem; }
  .verified-state i { width: 7px; height: 7px; font-size: 0.24rem; }

  .settings-panel {
    grid-template-columns: 78px 1fr;
  }

  .settings-nav {
    gap: 2px;
    padding: 12px 7px;
  }

  .settings-nav strong {
    padding: 0 4px 5px;
    font-size: 0.43rem;
  }

  .settings-nav span {
    padding: 4px;
    border-radius: 3px;
    font-size: 0.31rem;
  }

  .settings-content {
    padding: 15px 17px;
  }

  .settings-kicker { margin-bottom: 3px; font-size: 0.3rem; }
  .settings-content h3 { margin-bottom: 10px; font-size: 0.76rem; }
  .setting-row { gap: 9px; min-height: 28px; }
  .setting-row > span { gap: 2px; }
  .setting-row strong { font-size: 0.33rem; }
  .setting-row small { font-size: 0.27rem; }
  .toggle { width: 16px; height: 9px; }
  .toggle b { top: 2px; left: 2px; width: 5px; height: 5px; }
  .toggle.is-on b { transform: translateX(7px); }

  .shortcut-cloud {
    inset: -58px -10px;
  }

  .shortcut {
    min-height: 28px;
    padding: 0 9px;
    border-radius: 6px;
    font-size: 0.53rem;
  }

  .shortcut-three {
    left: 7%;
  }

  .scroll-cue {
    bottom: 14px;
    font-size: 0.58rem;
  }

  .scroll-cue span {
    width: 15px;
    height: 23px;
  }

  .scroll-cue span::after {
    left: 6px;
  }

  .chapter-future {
    padding-top: 13vh;
  }

  .onony-visual {
    top: 66%;
    width: 118px;
    height: 118px;
  }

  .onony-core {
    font-size: 1.5rem;
  }

  .release-shell {
    width: calc(100% - 36px);
    min-height: auto;
    padding-block: 76px 66px;
  }

  .release-copy h2 {
    font-size: 3rem;
  }

  .release-copy > p:not(.section-label) {
    font-size: 0.92rem;
  }

  .release-actions {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
  }

  .site-footer nav {
    grid-column: auto;
  }

  .footer-version {
    grid-column: auto;
  }
}

@media (max-height: 720px) and (min-width: 881px) {
  .chapter-hero {
    padding-top: 86px;
  }

  .hero-copy h1 {
    font-size: 4.15rem;
  }

  .hero-copy > p:not(.product-label) {
    font-size: 0.94rem;
  }

  .browser-rig {
    width: min(70vw, 820px);
  }
}

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

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

  .browser-rig,
  .browser-parallax,
  .story-panel,
  .shortcut,
  .onony-visual {
    will-change: auto;
  }
}
