:root {
  --ink: #111111;
  --ink-soft: #3f3f3f;
  --paper: #ffffff;
  --lavender: #ffffff;
  --accent: #3b6dff;
  --mint: var(--accent);
  --coral: var(--accent);
  --lemon: var(--accent);
  --rule: rgba(17, 17, 17, 0.15);
  --rule-light: rgba(255, 255, 255, 0.2);
  --display: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Yu Gothic", sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Yu Gothic", sans-serif;
  --mono: "SFMono-Regular", "SF Mono", "Roboto Mono", monospace;
  --shell: min(1240px, calc(100% - 64px));
  --shadow: 0 32px 80px rgba(17, 17, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--lavender);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.23;
  background-image: linear-gradient(var(--rule) 1px, transparent 1px), linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, black 0, transparent 50%);
}

::selection {
  color: var(--paper);
  background: var(--coral);
}

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

button,
a,
video {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
kbd:focus-visible,
#consent-title:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 5px;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-right: auto;
  margin-left: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 16px;
  padding: 8px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 11px;
}

.brand__mark {
  display: block;
  width: 34px;
  height: 34px;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.brand__text strong {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__text small {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 20px;
  padding: 14px 20px 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button__arrow {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
}

.button--compact {
  min-height: 42px;
  padding: 10px 12px 10px 16px;
  gap: 12px;
  font-size: 11px;
}

.button--compact .button__arrow {
  width: 21px;
  height: 21px;
}

.button--dark {
  color: var(--paper);
  background: var(--ink);
}

.button--dark .button__arrow {
  color: var(--ink);
  background: var(--mint);
}

.button--dark:hover {
  background: #333333;
}

.button--coral {
  color: var(--paper);
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.28);
}

.button--coral .button__arrow {
  color: var(--ink);
  background: var(--paper);
}

.button--coral:hover {
  background: #333333;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.34);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  min-height: 790px;
  padding-top: 146px;
  padding-bottom: 116px;
  gap: clamp(48px, 7vw, 112px);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 125px;
  right: -70px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(17, 17, 17, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(17, 17, 17, 0.025), 0 0 0 60px rgba(17, 17, 17, 0.02);
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 27px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

.eyebrow > span:not(.eyebrow__signal) {
  opacity: 0.55;
}

.eyebrow__signal {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(17, 17, 17, 0.13);
}

.hero h1,
.section-heading h2,
.download-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.105em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.55rem, 6.4vw, 6.9rem);
}

.hero h1.hero__headline--short {
  font-size: clamp(1.95rem, 3.2vw, 3.55rem);
}

.hero h1.hero__headline--short em {
  white-space: nowrap;
}

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

.hero h1 span {
  color: var(--ink-soft);
}

.hero h1 .hero__headline-line {
  white-space: nowrap;
}

.hero h1 .hero__headline-line--ink {
  color: var(--ink);
}

.hero__lede {
  max-width: 470px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  letter-spacing: 0.025em;
  line-height: 2;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 31px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.text-link span:last-child {
  color: var(--coral);
  font-size: 16px;
  transition: transform 180ms ease;
}

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

.hero__note {
  display: flex;
  align-items: flex-start;
  max-width: 470px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.65;
}

.note__dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin: 7px 8px 0 0;
  border: 1px solid var(--ink-soft);
  border-radius: 50%;
}

.shortcut-chip {
  display: inline-flex;
  align-items: center;
  margin-top: 34px;
  gap: 6px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
}

.shortcut-chip__label {
  margin-right: 6px;
  font-size: 9px;
  letter-spacing: 0.1em;
}

kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 27px;
  height: 27px;
  padding: 0 7px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-bottom-width: 3px;
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1;
}

.hero__visual {
  position: relative;
  transform: translateY(18px);
}

.hero__visual-meta,
.hero__visual-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__visual-meta {
  margin: 0 9px 13px;
}

.hero__visual-meta > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-video-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  border: 0;
  color: var(--ink-soft);
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.hero-video-toggle:disabled {
  opacity: 0.45;
  cursor: default;
}

.hero-video-toggle__icon {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 50%;
  color: var(--coral);
  font-size: 8px;
  letter-spacing: -0.16em;
}

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(17, 17, 17, 0.14);
}

.hero-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: var(--ink);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  z-index: 4;
  width: 34px;
  height: 34px;
  content: "";
  border-color: var(--mint);
  border-style: solid;
  pointer-events: none;
}

.hero-media::before {
  top: 18px;
  left: 18px;
  border-width: 1px 0 0 1px;
  border-radius: 8px 0 0;
}

.hero-media::after {
  right: 18px;
  bottom: 18px;
  border-width: 0 1px 1px 0;
  border-radius: 0 0 8px;
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: 2;
  object-fit: contain;
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero-media[data-video-state="ready"][data-motion="normal"] .hero-video {
  opacity: 1;
}

.hero-media[data-video-state="failed"] .hero-video,
.hero-media[data-motion="reduced"] .hero-video {
  opacity: 0;
}

.hero-fallback {
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 11%;
  background: radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.2), transparent 35%), linear-gradient(145deg, #444444, #111111 70%);
}

.fallback-window {
  position: relative;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--paper);
  background: rgba(17, 17, 17, 0.72);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.fallback-window__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 39px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.fallback-window__lights {
  display: flex;
  gap: 5px;
}

.fallback-window__lights i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.fallback-window__lights i:first-child {
  background: var(--coral);
}

.fallback-window__language {
  color: var(--mint);
}

.fallback-window__language b {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.fallback-window__body {
  position: relative;
  padding: 27px 29px 18px;
}

.fallback-label {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.fallback-input {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: clamp(10px, 1.4vw, 15px);
  letter-spacing: -0.04em;
}

.fallback-cursor {
  position: absolute;
  top: 60px;
  left: 29px;
  width: 2px;
  height: 19px;
  background: var(--coral);
  box-shadow: 0 0 13px var(--coral);
}

.fallback-divider {
  height: 1px;
  margin: 24px 0 15px;
  background: rgba(255, 255, 255, 0.13);
}

.fallback-result {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) 18px;
  align-items: center;
  min-height: 43px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 7px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  font-size: clamp(10px, 1.4vw, 14px);
}

.fallback-result__index {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
}

.fallback-result__check {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 13px;
  text-align: right;
}

.fallback-result--quiet {
  min-height: 35px;
  margin-top: 3px;
  padding: 0 12px;
  border: 0;
  color: rgba(255, 255, 255, 0.52);
  background: transparent;
  font-size: clamp(9px, 1.25vw, 12px);
}

.fallback-result--quiet span:last-child {
  grid-column: 2 / -1;
}

.fallback-window__footer {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 8px;
}

.hero-placeholder-badge {
  position: absolute;
  z-index: 2;
  top: 9%;
  right: 9%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(17, 17, 17, 0.72);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
  line-height: 1.1;
}

.hero-placeholder-badge strong {
  color: #ffffff;
  font-size: 9px;
}

.fallback-spark {
  position: absolute;
  display: block;
  border: 1px solid var(--coral);
  border-radius: 50%;
  opacity: 0.72;
}

.fallback-spark--one {
  top: 17%;
  right: 12%;
  width: 10px;
  height: 10px;
}

.fallback-spark--two {
  bottom: 14%;
  left: 12%;
  width: 5px;
  height: 5px;
  border-color: var(--mint);
}

.hero-media__grain {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.hero__visual-foot {
  margin: 15px 9px 0;
  color: var(--ink-soft);
}

.hero__visual-line {
  flex: 1;
  height: 1px;
  margin: 0 15px;
  background: rgba(17, 17, 17, 0.2);
}

.section {
  padding-top: 168px;
  padding-bottom: 168px;
}

.section-heading h2,
.download-section h2 {
  font-size: clamp(3rem, 5.2vw, 5.8rem);
}

.section-heading h2 span,
.download-section h2 span {
  color: var(--ink-soft);
}

.section-heading > p:last-child {
  max-width: 430px;
  margin: 29px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.95;
}

.section-heading--wide {
  display: grid;
  grid-template-columns: minmax(210px, 0.75fr) minmax(320px, 1.25fr);
  column-gap: 80px;
  align-items: end;
}

.section-heading--wide .eyebrow {
  grid-column: 1;
  align-self: start;
  margin: 7px 0 0;
}

.section-heading--wide h2 {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.section-heading--wide > p:last-child {
  grid-column: 1;
  margin-top: 56px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 94px;
  border-top: 1px solid var(--rule);
}

.process-step {
  min-height: 320px;
  padding: 25px 34px 0 0;
  border-right: 1px solid var(--rule);
}

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

.process-step:last-child {
  border-right: 0;
}

.process-step--active {
  border-top: 3px solid var(--coral);
  margin-top: -1px;
}

.process-step__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.process-step__icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-left: auto;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(59, 109, 255, 0.22);
}

.process-step__icon img {
  width: 27px;
  height: 27px;
}

.step-number {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 12px;
}

.step-label {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.process-step__body {
  margin-top: 52px;
}

.process-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1.25;
}

.process-step p {
  max-width: 290px;
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.85;
}

.example-line,
.candidate-line,
.insert-line {
  display: flex;
  align-items: center;
  min-height: 37px;
  margin-top: 27px;
  padding: 0 11px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.2;
}

.example-line {
  justify-content: space-between;
}

.example-line span:last-child {
  color: var(--coral);
  font-size: 16px;
}

.candidate-line {
  gap: 9px;
  border-color: rgba(17, 17, 17, 0.4);
  background: rgba(17, 17, 17, 0.07);
}

.candidate-line__bar {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.candidate-line__check {
  margin-left: auto;
  color: var(--coral);
}

.insert-line {
  gap: 9px;
  border-color: rgba(17, 17, 17, 0.24);
  background: rgba(255, 255, 255, 0.75);
}

.insert-line__app {
  padding-right: 9px;
  border-right: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 800;
}

.insert-line__cursor {
  width: 1px;
  height: 14px;
  background: var(--coral);
}

.privacy-section {
  padding-top: 154px;
  padding-bottom: 144px;
  color: var(--paper);
  background: var(--ink);
}

.privacy-section__inner {
  position: relative;
}

.privacy-section__inner::before {
  position: absolute;
  top: -100px;
  right: 1%;
  width: 138px;
  height: 138px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.04), 0 0 0 32px rgba(255, 255, 255, 0.03);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.58);
}

.section-heading--privacy h2 {
  color: var(--paper);
}

.section-heading--privacy h2 span {
  color: var(--mint);
}

.section-heading--privacy > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.trust-card {
  position: relative;
  min-height: 0;
  padding: 33px 34px 31px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 17px;
}

.trust-card--dark {
  border-color: rgba(255, 255, 255, 0.17);
  background: #333333;
}

.trust-card--dark::after {
  position: absolute;
  right: -77px;
  bottom: -82px;
  width: 240px;
  height: 240px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.trust-card__topline {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.trust-card__icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--mint);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1;
}

.trust-card h3 {
  position: relative;
  z-index: 1;
  margin: 41px 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1.08;
}

.trust-card h3 strong {
  color: var(--mint);
  font-weight: 800;
}

.trust-card > p {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.9;
}

.detail-list {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-height: 41px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.detail-row code {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  text-align: right;
}

.trust-card__tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 700;
}

.trust-card__tag span {
  margin-right: 7px;
}

.privacy-footnotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}

.privacy-analytics {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(280px, 1.5fr) auto;
  align-items: start;
  gap: 30px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.privacy-analytics__label {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.privacy-analytics h3 {
  margin: 8px 0 0;
  color: var(--paper);
  font-size: 16px;
}

.privacy-analytics p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.9;
}

.privacy-analytics a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  font-size: 10px;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.privacy-analytics__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.privacy-analytics a:hover {
  color: var(--mint);
  border-color: var(--mint);
}

.footnote-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 101px;
  padding: 21px 22px 19px 0;
  border-right: 1px solid var(--rule-light);
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.7;
}

.footnote-item:not(:first-child) {
  padding-left: 22px;
}

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

.footnote-item strong {
  color: var(--paper);
  font-size: 11px;
}

.footnote-item__icon {
  display: grid;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
}

.pricing-section {
  position: relative;
  padding: 154px 0 160px;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}

.pricing-section::before {
  position: absolute;
  top: 70px;
  left: -140px;
  width: 290px;
  height: 290px;
  content: "";
  border: 1px solid rgba(17, 17, 17, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(17, 17, 17, 0.025), 0 0 0 48px rgba(17, 17, 17, 0.018);
}

.pricing-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(48px, 8vw, 126px);
}

.pricing-section__intro {
  position: relative;
  z-index: 1;
}

.pricing-section__intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.105em;
  line-height: 0.98;
}

.pricing-section__intro h2 span {
  color: var(--accent);
}

.pricing-section__intro > p:not(.eyebrow) {
  max-width: 410px;
  margin: 29px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.95;
}

.pricing-section__callout {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  max-width: 410px;
  gap: 11px;
  margin-top: 33px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.pricing-callout__mark {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1;
}

.pricing-section__callout p {
  margin: 0;
}

.pricing-section__callout strong,
.pricing-section__callout small {
  display: block;
}

.pricing-section__callout strong {
  font-size: 12px;
  font-weight: 800;
}

.pricing-section__callout small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.7;
}

.pricing-ledger {
  position: relative;
  z-index: 1;
  padding: 27px 30px 25px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 18px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 28px 60px rgba(17, 17, 17, 0.18);
}

.pricing-ledger::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  background: var(--accent);
}

.pricing-ledger__header,
.pricing-ledger__model,
.pricing-provider__meta,
.pricing-provider__estimate span,
.pricing-rate,
.pricing-provider__link,
.pricing-ledger__label {
  font-family: var(--mono);
}

.pricing-ledger__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  letter-spacing: 0.13em;
  line-height: 1.3;
}

.pricing-ledger__header span:last-child {
  color: var(--accent);
}

.pricing-ledger__measure {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding: 35px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pricing-ledger__count {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.pricing-ledger__count strong {
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.4vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.9;
  white-space: nowrap;
}

.pricing-ledger__count span {
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  line-height: 1.45;
}

.pricing-ledger__model {
  display: grid;
  justify-items: end;
  gap: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: right;
}

.pricing-ledger__model strong {
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.pricing-ledger__model small {
  color: var(--accent);
  font-size: 8px;
}

.pricing-provider-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.pricing-provider {
  padding: 18px 19px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #222222;
}

.pricing-provider--direct {
  border-color: var(--accent);
  background: rgba(59, 109, 255, 0.13);
  box-shadow: inset 3px 0 0 var(--accent);
}

.pricing-provider__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.pricing-provider__heading > div:first-child {
  display: grid;
  align-content: start;
  gap: 8px;
}

.pricing-provider__name {
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

.pricing-provider__meta {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  line-height: 1.4;
}

.pricing-provider__estimate {
  flex: 0 0 auto;
  text-align: right;
}

.pricing-provider__estimate strong {
  display: block;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.pricing-provider__estimate span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  line-height: 1.2;
}

.pricing-rate-list {
  margin-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.pricing-rate {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: baseline;
  min-height: 34px;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.pricing-rate code {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0;
}

.pricing-rate b {
  color: var(--accent);
  font-size: 9px;
  font-weight: 400;
  text-align: right;
}

.pricing-provider__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.pricing-provider__link span {
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
  transition: transform 180ms ease;
}

.pricing-provider__link:hover span {
  transform: translate(2px, -2px);
}

.pricing-ledger__assumptions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 21px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pricing-ledger__label {
  display: block;
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
}

.pricing-ledger__assumptions p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  line-height: 1.8;
}

.download-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 605px;
  padding-top: 110px;
  padding-bottom: 113px;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  text-align: center;
}

.download-section::before,
.download-section::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
}

.download-section::before {
  top: 61px;
  left: 8%;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.download-section::after {
  right: 7%;
  bottom: 13px;
  width: 117px;
  height: 117px;
  border: 1px solid rgba(17, 17, 17, 0.45);
}

.download-section__mark {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 36px;
  gap: 4px;
  transform: rotate(-7deg);
}

.download-section__mark span {
  display: block;
  width: 10px;
  border-radius: 12px 12px 3px 3px;
}

.download-section__mark span:nth-child(1) {
  height: 23px;
  background: var(--coral);
}

.download-section__mark span:nth-child(2) {
  height: 40px;
  background: var(--ink);
}

.download-section__mark span:nth-child(3) {
  height: 31px;
  background: var(--mint);
}

.download-section .eyebrow {
  margin-bottom: 25px;
}

.download-section h2 span {
  color: var(--coral);
}

.download-section > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.download-section .button {
  margin-top: 30px;
}

.social-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(620px, 100%);
  margin-top: 42px;
  padding: 14px 16px;
  gap: 14px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.social-callout__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.social-callout p,
.social-callout small {
  margin: 0;
}

.social-callout p {
  display: grid;
  line-height: 1.35;
}

.social-callout strong {
  font-size: 12px;
}

.social-callout p small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 10px;
}

.social-callout a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-callout a:hover {
  color: var(--ink);
  background: var(--mint);
  transform: translateY(-2px);
}

.download-section small {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 10px;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 151px;
  gap: 30px;
}

.brand--footer .brand__text strong {
  color: var(--paper);
}

.brand--footer .brand__text small,
.site-footer__inner > p,
.site-footer__copyright {
  color: rgba(255, 255, 255, 0.46);
}

.site-footer__inner > p {
  margin: 0;
  font-size: 11px;
}

.site-footer__links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 10px;
}

.site-footer__links a:hover,
.site-footer__links button:hover {
  color: var(--mint);
}

.site-footer__links button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.site-footer__copyright {
  grid-column: 1 / -1;
  margin-top: -22px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.consent-banner {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 20px;
  left: 0;
  pointer-events: none;
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  max-height: calc(100vh - 24px);
  gap: 40px;
  padding: 25px 28px;
  overflow-y: auto;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.32);
  pointer-events: auto;
}

.consent-banner__label {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.consent-banner h2 {
  margin: 7px 0 5px;
  color: var(--paper);
  font-size: 17px;
  line-height: 1.4;
}

.consent-banner p {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.75;
}

.consent-banner__copy > a {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.consent-banner__copy > a:hover {
  color: var(--mint);
  border-color: var(--mint);
}

.consent-banner__actions {
  display: flex;
  gap: 9px;
}

.consent-button {
  min-width: 112px;
  min-height: 43px;
  padding: 0 18px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.consent-button--secondary,
.consent-button--primary {
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.consent-button:hover {
  color: var(--paper);
  background: var(--mint);
  border-color: var(--mint);
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 48px, 760px);
  }

  .site-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    max-width: 760px;
    padding-top: 139px;
    gap: 74px;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    max-width: 610px;
    font-size: clamp(3.55rem, 9.3vw, 6rem);
  }

  .hero__visual {
    width: min(100%, 680px);
    margin-left: auto;
  }

  .section-heading--wide {
    grid-template-columns: 1fr 1.3fr;
    column-gap: 45px;
  }

  .privacy-section__inner::before {
    right: -30px;
  }

  .pricing-section__inner {
    grid-template-columns: 1fr;
    max-width: 760px;
    gap: 58px;
  }

}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .site-header__inner {
    min-height: 76px;
  }

  .site-header .button--compact {
    display: none;
  }

  .site-nav {
    gap: 18px;
    margin-left: auto;
    font-size: 11px;
  }

  .hero {
    min-height: 0;
    padding-top: 117px;
    padding-bottom: 88px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12.5vw, 5.4rem);
  }

  .hero h1.hero__headline--short {
    font-size: clamp(1.9rem, 10vw, 3.55rem);
  }

  .hero__lede {
    font-size: 14px;
  }

  .section,
  .privacy-section,
  .pricing-section {
    padding-top: 113px;
    padding-bottom: 113px;
  }

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

  .section-heading--wide .eyebrow {
    margin-bottom: 29px;
  }

  .section-heading--wide > p:last-child {
    margin-top: 25px;
  }

  .process-list {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .process-step,
  .process-step:not(:first-child) {
    min-height: 0;
    padding: 25px 0 40px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step--active {
    padding-top: 22px;
    border-top: 3px solid var(--coral);
  }

  .process-step__body {
    margin-top: 34px;
  }

  .privacy-section__inner::before {
    display: none;
  }

  .pricing-section::before {
    display: none;
  }

  .pricing-section__inner {
    gap: 52px;
  }

  .pricing-section__intro > p:not(.eyebrow),
  .pricing-section__callout {
    max-width: 520px;
  }

  .pricing-ledger {
    padding-right: 22px;
    padding-left: 22px;
  }

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

  .trust-card {
    min-height: 0;
    padding: 27px 24px 25px;
  }

  .trust-card h3 {
    margin-top: 33px;
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .privacy-footnotes {
    grid-template-columns: 1fr;
  }

  .privacy-analytics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .privacy-analytics a {
    justify-self: start;
  }

  .footnote-item,
  .footnote-item:not(:first-child) {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-light);
  }

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

  .download-section {
    min-height: 530px;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .download-section::before {
    left: -90px;
  }

  .download-section::after {
    right: -35px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
    min-height: 205px;
    padding-top: 32px;
    padding-bottom: 25px;
  }

  .site-footer__inner > p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
  }

  .site-footer__links {
    grid-column: 2;
    grid-row: 1;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .site-footer__copyright {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 19px;
  }

  .consent-banner {
    bottom: 12px;
  }

  .consent-banner__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
    padding: 22px 24px;
  }

  .consent-banner__actions {
    justify-content: flex-end;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .brand__text strong {
    font-size: 13px;
  }

  .brand__text small {
    font-size: 8px;
  }

  .consent-banner__inner {
    gap: 16px;
    padding: 20px;
  }

  .consent-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .consent-button {
    min-width: 0;
    padding: 0 12px;
  }

  .site-nav {
    gap: 12px;
    font-size: 10px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 110px;
    gap: 58px;
  }

  .hero h1 {
    font-size: clamp(2.82rem, 14.7vw, 4.5rem);
    letter-spacing: -0.12em;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-media {
    border-radius: 19px;
  }

  .fallback-window__body {
    padding: 22px 19px 15px;
  }

  .fallback-cursor {
    top: 55px;
    left: 19px;
  }

  .fallback-window__footer {
    gap: 8px;
    font-size: 7px;
  }

  .hero__visual-foot {
    font-size: 7px;
  }

  .hero__visual-line {
    margin: 0 8px;
  }

  .section-heading h2,
  .download-section h2 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .section-heading h2,
  .download-section h2 {
    letter-spacing: -0.12em;
  }

  .trust-card h3 {
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .pricing-section__intro h2 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
    letter-spacing: -0.12em;
  }

  .pricing-ledger {
    padding: 22px 17px 20px;
    border-radius: 14px;
  }

  .pricing-ledger__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .pricing-ledger__measure {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding-top: 30px;
  }

  .pricing-ledger__model {
    justify-items: start;
    text-align: left;
  }

  .pricing-provider__heading {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .pricing-provider__estimate {
    text-align: left;
  }

  .detail-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-height: 56px;
  }

  .detail-row code {
    text-align: left;
  }

  .pricing-ledger__assumptions {
    grid-template-columns: 1fr;
  }

  .pricing-rate {
    grid-template-columns: 78px minmax(0, 1fr) auto;
    gap: 7px;
  }

  .pricing-rate code,
  .pricing-rate b {
    font-size: 8px;
  }

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

  .social-callout {
    grid-template-columns: auto 1fr;
    padding: 16px;
  }

  .social-callout a {
    grid-column: 1 / -1;
    padding: 12px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover {
    transform: none;
  }

  .fallback-spark {
    display: none;
  }
}
