:root {
  color-scheme: dark;
  --black: #050505;
  --black-soft: #090909;
  --surface: #101010;
  --surface-2: #161616;
  --white: #f5f5f3;
  --muted: #9c9c9c;
  --muted-soft: #707070;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: rgba(0, 0, 0, 0.55);
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

::selection {
  background: var(--white);
  color: var(--black);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease);
}

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

.shell {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(110px, 13vw, 190px) 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.site-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  height: 92px;
  padding: 0 clamp(28px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-download {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-download:hover {
  background: rgba(255, 255, 255, 0.17);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: #020202;
}

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

.hero-art {
  object-fit: cover;
  object-position: 61% center;
  transform: scale(1.012);
  transition: transform 0.8s var(--ease);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.76) 30%, rgba(0, 0, 0, 0.14) 63%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.84) 0%, transparent 30%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(650px, 48%);
  min-height: max(760px, 100svh);
  padding: 155px 0 120px clamp(28px, 7vw, 108px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
  animation: breathe 2.8s ease-in-out infinite;
}

@keyframes breathe {
  50% { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.025); opacity: 0.7; }
}

h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
}

h1,
h2 {
  font-weight: 500;
  letter-spacing: -0.065em;
}

.hero h1 {
  max-width: 720px;
  margin-top: 25px;
  font-size: clamp(4rem, 7.7vw, 8rem);
  line-height: 0.9;
}

.hero-lede {
  max-width: 570px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.hero-download-group {
  display: grid;
  gap: 10px;
}

.platform-note {
  margin: 0;
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease);
}

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

.button-primary {
  background: var(--white);
  color: #0a0a0a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.button-primary:hover {
  background: #fff;
  box-shadow: 0 23px 56px rgba(0, 0, 0, 0.42);
}

.button-secondary {
  background: #202020;
  color: var(--white);
}

.button-secondary:hover {
  background: #2a2a2a;
}

.button-download {
  position: relative;
  min-width: 188px;
  min-height: 56px;
  padding: 0 20px 0 22px;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #f3f3f0;
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -1px 0 rgba(0, 0, 0, 0.09),
    0 14px 34px rgba(0, 0, 0, 0.34);
}

.button-download:hover {
  background: #fff;
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.42);
}

.button-download-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.button-download-arrow {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  overflow: visible;
  stroke: #111;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s var(--ease);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  transition: color 0.2s var(--ease);
}

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

.text-link span {
  transition: transform 0.2s var(--ease);
}

.text-link:hover span {
  transform: translateX(3px);
}

.hero-meta {
  position: absolute;
  right: clamp(28px, 5vw, 76px);
  bottom: 38px;
  z-index: 3;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
  list-style: none;
  text-transform: uppercase;
}

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

.hero-meta li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 3;
  width: 30px;
  height: 48px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  animation: scroll-line 2.2s var(--ease) infinite;
}

@keyframes scroll-line {
  70%, 100% { transform: translateY(200%); }
}

.statement {
  position: relative;
  background: var(--black);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 40px;
}

.section-label {
  padding-top: 12px;
}

.statement-copy h2,
.flow-heading h2,
.product-heading h2,
.open-copy h2,
.privacy-copy h2,
.download-copy h2 {
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  line-height: 0.98;
}

.statement-copy > p {
  max-width: 680px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.75;
}

.principles {
  margin-top: 105px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(50px, 7vw, 110px);
}

.principle > span,
.steps > li > span {
  color: var(--muted-soft);
  font-family: var(--mono);
  font-size: 9px;
}

.principle h3 {
  margin-top: 65px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.principle p {
  max-width: 330px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.privacy-story {
  min-height: 840px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--surface);
}

.privacy-visual {
  position: relative;
  min-height: 780px;
  overflow: hidden;
}

.privacy-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.privacy-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 72%, var(--surface));
  pointer-events: none;
}

.privacy-copy {
  max-width: 630px;
  padding: clamp(80px, 10vw, 165px) clamp(48px, 8vw, 128px) clamp(80px, 10vw, 165px) clamp(32px, 5vw, 78px);
  align-self: center;
}

.privacy-copy h2 {
  margin-top: 28px;
}

.privacy-copy > p:not(.section-label) {
  max-width: 540px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.check-list {
  margin: 36px 0 34px;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
}

.check-list span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  font-size: 8px;
}

.flow {
  overflow: hidden;
  background: #070707;
}

.flow-heading {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 40px;
}

.flow-visual {
  width: 100%;
  margin-top: clamp(70px, 10vw, 135px);
  overflow: hidden;
}

.flow-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.steps {
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(42px, 6vw, 95px);
}

.steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
}

.steps h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.steps p {
  max-width: 310px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.product {
  overflow: hidden;
  background: #0d0d0d;
}

.product-heading {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 40px;
}

.product-heading h2 {
  max-width: 850px;
  font-size: clamp(3.25rem, 5.8vw, 6rem);
}

.product-heading > div > p {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.75;
}

.mode-grid {
  margin-top: clamp(75px, 9vw, 125px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mode-card {
  position: relative;
  min-height: clamp(480px, 46vw, 650px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: #080808;
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.32);
  transform: translateZ(0);
}

.mode-card-art,
.mode-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mode-card-art {
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.mode-card-local .mode-card-art {
  object-position: 50% 48%;
  filter: saturate(0.7) brightness(0.68);
}

.mode-card-cloud .mode-card-art {
  object-position: 71% 50%;
  filter: saturate(0.78) brightness(0.62);
}

.mode-card:hover .mode-card-art {
  transform: scale(1.025);
  filter: saturate(0.9) brightness(0.72);
}

.mode-card-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.18) 58%, transparent 76%);
}

.mode-card-top,
.mode-card-copy {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 3vw, 42px);
  left: clamp(24px, 3vw, 42px);
}

.mode-card-top {
  top: clamp(24px, 3vw, 38px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mode-card-top > span,
.mode-card-copy > p {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mode-card-top b {
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mode-card-top b i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.mode-card-copy {
  bottom: clamp(28px, 4vw, 50px);
}

.mode-card-copy h3 {
  max-width: 500px;
  margin-top: 15px;
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.mode-card-meta {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mode-card-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.open-source {
  background: var(--black);
}

.open-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(70px, 12vw, 190px);
  align-items: center;
}

.open-icon {
  min-height: 440px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 43%),
    #0a0a0a;
}

.open-icon img {
  width: clamp(130px, 14vw, 190px);
  border-radius: 22%;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.54);
}

.open-copy h2 {
  margin-top: 28px;
}

.open-copy > p:not(.section-label) {
  max-width: 610px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.open-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.download-section {
  position: relative;
  min-height: min(900px, 92svh);
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.download-bg,
.download-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.download-bg {
  object-fit: cover;
  object-position: 56% center;
  transform: scaleX(-1);
}

.download-shade {
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.78) 74%),
    rgba(0, 0, 0, 0.2);
}

.download-copy {
  position: relative;
  z-index: 2;
  padding: 110px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-icon {
  margin-bottom: 28px;
  border-radius: 22%;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.46);
}

.download-copy .section-label {
  padding: 0;
}

.download-copy h2 {
  margin-top: 24px;
}

.download-copy > p:not(.section-label) {
  margin: 27px 0 30px;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer {
  padding: 36px 0;
  background: #080808;
}

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

.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer-links a {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

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

.footer-row > p {
  justify-self: end;
  margin: 0;
  color: var(--muted-soft);
  font-family: var(--mono);
  font-size: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Privacy and support pages */
.legal-page {
  background: var(--black);
}

.legal-page .nav-shell {
  padding: 18px 24px 0;
}

.legal-page .nav-pill {
  width: min(1080px, 100%);
  height: 62px;
  margin: 0 auto;
  padding: 0 13px 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  border-radius: 999px;
  background: rgba(25, 25, 25, 0.88);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.legal-page .nav-links a {
  color: var(--muted);
}

.legal-page .nav-links a:hover {
  color: var(--white);
}

.legal-page .nav-cta {
  justify-self: end;
  min-height: 38px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
}

.document {
  width: min(780px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 110px;
}

.document .eyebrow {
  margin: 0 0 15px;
}

.document h1 {
  color: var(--white);
  font-size: clamp(3.8rem, 9vw, 7.2rem);
  line-height: 0.92;
}

.document .updated,
.document .lede {
  margin: 25px 0 48px;
  color: var(--muted);
}

.document h2 {
  margin: 58px 0 16px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.1;
}

.document p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.document a:not(.button) {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.document .actions {
  margin: 30px 0 58px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.legal-page .container {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.footer-brand img {
  border-radius: 8px;
}

@media (max-width: 1020px) {
  .shell {
    width: min(100% - 56px, 1240px);
  }

  .site-nav {
    grid-template-columns: 1fr 1fr;
    padding-inline: 28px;
  }

  .site-nav .nav-links {
    display: none;
  }

  .hero-copy {
    width: min(700px, 68%);
    padding-left: 48px;
  }

  .hero-art {
    object-position: 58% center;
  }

  .principles {
    gap: 45px;
  }

  .privacy-story {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .privacy-visual {
    min-height: 620px;
  }

  .privacy-visual::after {
    background: linear-gradient(0deg, var(--surface), transparent 34%);
  }

  .privacy-copy {
    max-width: 760px;
    padding: 30px 48px 120px;
  }

  .product-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-heading > div {
    max-width: 800px;
  }

  .open-grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 70px;
  }
}

@media (max-width: 740px) {
  .shell,
  .legal-page .container {
    width: calc(100% - 40px);
  }

  .section-pad {
    padding: 96px 0;
  }

  .site-nav {
    height: 76px;
    padding-inline: 20px;
  }

  .site-nav .brand {
    font-size: 16px;
  }

  .site-nav .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-download {
    min-height: 38px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 1020px;
  }

  .hero-art {
    height: 54%;
    object-position: 66% center;
    transform: scale(1.08);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, #000 38%, rgba(0, 0, 0, 0.7) 62%, rgba(0, 0, 0, 0.1) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent);
  }

  .hero-copy {
    width: 100%;
    min-height: 1020px;
    padding: 390px 20px 70px;
    justify-content: flex-start;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(3.2rem, 15vw, 5.1rem);
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 28px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-meta {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .statement-grid,
  .flow-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-label {
    padding-top: 0;
  }

  .statement-copy h2,
  .flow-heading h2,
  .product-heading h2,
  .open-copy h2,
  .privacy-copy h2,
  .download-copy h2 {
    font-size: clamp(2.75rem, 13.5vw, 4.2rem);
  }

  .statement-copy > p {
    margin-top: 25px;
    font-size: 16px;
  }

  .principles {
    margin-top: 78px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .principle h3 {
    margin-top: 25px;
  }

  .privacy-visual {
    min-height: 430px;
  }

  .privacy-visual img {
    object-position: center;
  }

  .privacy-copy {
    padding: 28px 20px 95px;
  }

  .flow-visual {
    margin-top: 28px;
  }

  .flow-visual img {
    min-height: 310px;
    width: 190%;
    max-width: none;
    transform: translate(-24%, -18px);
    margin-bottom: -18px;
  }

  .steps {
    margin-top: 58px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mode-grid {
    margin-top: 58px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mode-card {
    min-height: 500px;
    border-radius: 16px;
  }

  .mode-card-copy h3 {
    font-size: clamp(2.8rem, 15vw, 4.3rem);
  }

  .button-download {
    width: auto;
    min-width: 188px;
  }

  .open-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .open-icon {
    min-height: 340px;
  }

  .download-section {
    min-height: 780px;
  }

  .download-bg {
    object-position: 38% center;
  }

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

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
  }

  .footer-row > p {
    grid-column: 2;
    grid-row: 1;
  }

  .legal-page .nav-shell {
    padding: 12px;
  }

  .legal-page .nav-pill {
    grid-template-columns: 1fr auto;
    height: 56px;
  }

  .legal-page .nav-links {
    display: none;
  }

  .document {
    width: calc(100% - 40px);
    padding: 115px 0 90px;
  }
}

@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;
  }
}
