:root {
  --bg: #07080b;
  --surface: #0d0f14;
  --surface-soft: #12151b;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f8fa;
  --muted: #9ba2af;
  --blue: #0a84ff;
  --cyan: #41d8ff;
  --green: #4de17f;
  --magenta: #f053c6;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(10, 132, 255, 0.12), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-geist-sans), -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

::selection {
  color: white;
  background: rgba(10, 132, 255, 0.7);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.nav-shell {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1100px, calc(100% - 32px));
  height: 64px;
  padding: 0 10px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(11, 13, 18, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px) saturate(150%);
  transform: translateX(-50%);
  transition: top 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-shell.is-scrolled {
  top: 10px;
  background: rgba(8, 10, 14, 0.9);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.52);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #bfc4cd;
  font-size: 14px;
}

.nav-links a,
footer a,
.back-link {
  transition: color 180ms ease;
}

.nav-links a:hover,
footer a:hover,
.back-link:hover {
  color: white;
}

.nav-cta {
  height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  background: white;
  color: #090a0d;
  font-size: 13px;
  font-weight: 720;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.14);
}

.hero {
  min-height: 930px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 205px 52px 110px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 70px;
  position: relative;
}

.aurora {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.2;
}

.aurora-one {
  width: 430px;
  height: 430px;
  right: 12%;
  top: 16%;
  background: conic-gradient(from 30deg, var(--blue), var(--cyan), var(--green), var(--magenta), var(--blue));
  animation: aurora-drift 10s ease-in-out infinite alternate;
}

.aurora-two {
  width: 220px;
  height: 220px;
  left: 6%;
  bottom: 13%;
  background: var(--blue);
  opacity: 0.1;
}

@keyframes aurora-drift {
  to { transform: translate(30px, 24px) scale(1.08) rotate(12deg); }
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #aeb6c4;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.hero h1,
.section h2,
.formats-copy h2,
.final-cta h2,
.privacy-hero h1 {
  margin: 24px 0;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.075em;
  font-weight: 690;
}

.hero h1 span,
.section-title-row h2 span,
.formats-copy h2 span,
.final-cta h2 span,
.privacy-hero h1 span {
  color: transparent;
  background: linear-gradient(105deg, #f7f8fa 5%, #89919e 84%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 550px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.015em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.app-store-button {
  min-width: 205px;
  height: 66px;
  padding: 8px 20px 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 15px;
  background: #010102;
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 15px 40px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.app-store-button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
}

.apple-mark {
  font-size: 38px;
  line-height: 1;
}

.app-store-button span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-store-button small {
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.app-store-button strong {
  margin-top: 3px;
  font-size: 19px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.text-link {
  color: #d9dce2;
  font-size: 14px;
  font-weight: 620;
}

.text-link span,
.privacy-copy a span,
.wide-card a span {
  display: inline-block;
  margin-left: 6px;
  color: var(--blue);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.compatibility {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #747b87;
  font-size: 11px;
}

.compatibility i {
  width: 1px;
  height: 12px;
  margin: 0 3px;
  background: #343841;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero-product {
  min-width: 0;
  position: relative;
  z-index: 2;
  perspective: 1400px;
}

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: #16181c;
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.6);
}

.hero-window {
  width: 108%;
  transform: rotateY(-9deg) rotateX(3deg) rotateZ(1.5deg);
  transform-origin: center left;
  animation: window-float 7s ease-in-out infinite;
}

@keyframes window-float {
  0%, 100% { transform: rotateY(-9deg) rotateX(3deg) rotateZ(1.5deg) translateY(0); }
  50% { transform: rotateY(-7deg) rotateX(2deg) rotateZ(0.7deg) translateY(-13px); }
}

.window-bar {
  height: 38px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #777d87;
  font-size: 10px;
  text-align: center;
}

.traffic-lights {
  display: flex;
  gap: 6px;
}

.traffic-lights span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f57;
}

.traffic-lights span:nth-child(2) { background: #febc2e; }
.traffic-lights span:nth-child(3) { background: #28c840; }

.app-window > img {
  width: 100%;
}

.icon-orbit {
  position: absolute;
  z-index: 3;
  left: -63px;
  top: -78px;
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
}

.icon-orbit img {
  z-index: 2;
  width: 92px;
  height: 92px;
  border-radius: 22%;
  filter: drop-shadow(0 22px 25px rgba(0, 0, 0, 0.56));
  animation: icon-float 4.5s ease-in-out infinite;
}

@keyframes icon-float {
  50% { transform: translateY(-8px) scale(1.02); }
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(10, 132, 255, 0.08);
}

.floating-pill {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(16, 18, 24, 0.82);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.floating-pill b {
  margin-right: 5px;
  color: var(--blue);
}

.pill-fast {
  right: -26px;
  top: 19%;
  animation: pill-one 5s ease-in-out infinite;
}

.pill-private {
  left: 13%;
  bottom: -25px;
  animation: pill-two 6s ease-in-out infinite;
}

@keyframes pill-one { 50% { transform: translate(5px, -10px); } }
@keyframes pill-two { 50% { transform: translate(-5px, 8px); } }

.trust-strip {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child { border: 0; }

.trust-strip strong {
  margin-bottom: 7px;
  font-size: 25px;
  letter-spacing: -0.05em;
}

.trust-strip span {
  color: #777e89;
  font-size: 11px;
}

.intro-section {
  padding-top: 170px;
  padding-bottom: 120px;
}

.section-title-row,
.formats-copy {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.section-title-row h2,
.formats-copy h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 70px);
}

.section-title-row p,
.formats-copy > p {
  max-width: 390px;
  margin: 0 0 5px auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.feature-showcase {
  display: flex;
  flex-direction: column;
  gap: 185px;
  padding-bottom: 190px;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  align-items: center;
}

.feature-row.reverse {
  grid-template-columns: 1.28fr 0.72fr;
}

.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }

.feature-number,
.policy-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 24px;
  padding-inline: 8px;
  border: 1px solid rgba(10, 132, 255, 0.35);
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.08);
  color: #65adff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.feature-copy h3,
.extra-copy h3 {
  margin: 24px 0 16px;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.feature-copy > p,
.extra-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.feature-tags {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: #cdd1d7;
  font-size: 12px;
}

.feature-tags span::first-letter {
  color: var(--green);
}

.feature-visual {
  min-width: 0;
  position: relative;
  perspective: 1200px;
}

.feature-visual .app-window {
  transition: transform 500ms cubic-bezier(.2,.8,.2,1), border-color 500ms ease;
}

.feature-row:nth-child(odd) .feature-visual .app-window {
  transform: rotateY(-5deg) rotateX(1deg);
}

.feature-row:nth-child(even) .feature-visual .app-window {
  transform: rotateY(5deg) rotateX(1deg);
}

.feature-row:hover .feature-visual .app-window {
  transform: rotateY(0) rotateX(0) translateY(-7px);
  border-color: rgba(255, 255, 255, 0.27);
}

.visual-glow {
  position: absolute;
  inset: 15% 8%;
  background: var(--blue);
  opacity: 0.17;
  filter: blur(90px);
}

.formats-section {
  padding: 62px 0 150px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090a0e;
}

.format-track {
  width: max-content;
  display: flex;
  animation: marquee 28s linear infinite;
  border-bottom: 1px solid var(--line);
}

.format-track span {
  padding: 0 38px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #252932;
  font-size: clamp(62px, 8vw, 118px);
  font-weight: 720;
  letter-spacing: -0.08em;
}

.format-track i {
  color: var(--blue);
  font-size: 18px;
  font-style: normal;
  opacity: 0.7;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.formats-copy {
  padding-top: 110px;
}

.formats-copy > div .section-kicker {
  margin-bottom: 26px;
}

.extras {
  padding-top: 150px;
  padding-bottom: 150px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.extra-card {
  min-width: 0;
  min-height: 590px;
  padding: 42px 42px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 10%, rgba(10, 132, 255, 0.1), transparent 42%),
    var(--surface);
}

.extra-card:nth-child(2) {
  background:
    radial-gradient(circle at 85% 8%, rgba(240, 83, 198, 0.09), transparent 40%),
    var(--surface);
}

.extra-card img {
  width: 110%;
  max-width: none;
  margin: 42px -5% -2px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px 14px 0 0;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.extra-card:hover img {
  transform: translateY(-8px);
}

.extra-copy {
  position: relative;
  z-index: 2;
}

.extra-copy h3 {
  margin-top: 18px;
  font-size: 35px;
}

.mini-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 132, 255, 0.35);
  border-radius: 11px;
  background: rgba(10, 132, 255, 0.1);
  color: #62adff;
}

.wide-card {
  grid-column: 1 / -1;
  min-height: 530px;
  padding: 56px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: center;
  background:
    radial-gradient(circle at 18% 50%, rgba(77, 225, 127, 0.09), transparent 36%),
    var(--surface);
}

.wide-card .extra-copy h3 {
  font-size: 44px;
}

.wide-card .extra-copy a {
  margin-top: 22px;
  display: inline-block;
  color: white;
  font-size: 13px;
  font-weight: 630;
}

.wide-image-wrap {
  align-self: end;
  min-width: 0;
}

.wide-card img {
  width: 125%;
  margin: 0 -10% -57px 0;
  border-radius: 17px 17px 0 0;
}

.privacy-banner {
  min-height: 430px;
  padding: 70px;
  display: grid;
  grid-template-columns: auto 1fr 0.72fr;
  gap: 52px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 80%, rgba(10, 132, 255, 0.14), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(77, 225, 127, 0.08), transparent 30%),
    #0d0f14;
}

.privacy-symbol {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--green);
  font-size: 32px;
}

.privacy-banner h2 {
  margin: 22px 0 0;
  font-size: clamp(38px, 4vw, 58px);
}

.privacy-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.privacy-copy a {
  color: white;
  font-size: 13px;
  font-weight: 650;
}

.privacy-copy a:hover span,
.wide-card a:hover span {
  transform: translate(3px, -3px);
}

.final-cta {
  min-height: 780px;
  padding: 180px 24px 140px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.final-cta > *:not(.final-orb) {
  position: relative;
  z-index: 2;
}

.final-cta > img {
  width: 116px;
  height: 116px;
  margin-bottom: 30px;
  border-radius: 25%;
  filter: drop-shadow(0 25px 32px rgba(0, 0, 0, 0.6));
}

.final-cta h2 {
  margin: 26px 0;
  font-size: clamp(60px, 7vw, 100px);
}

.final-cta > p {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 17px;
}

.final-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.16;
}

.orb-a {
  width: 500px;
  height: 500px;
  left: 16%;
  top: 20%;
  background: var(--blue);
}

.orb-b {
  width: 360px;
  height: 360px;
  right: 15%;
  bottom: 12%;
  background: var(--magenta);
}

footer {
  width: min(var(--max), calc(100% - 48px));
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: #747b86;
  font-size: 11px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

footer > p {
  text-align: center;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

/* Privacy policy */
.privacy-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(10, 132, 255, 0.14), transparent 30%),
    var(--bg);
}

.privacy-nav {
  position: absolute;
}

.back-link {
  color: #b5bbc5;
  font-size: 13px;
}

.privacy-hero {
  min-height: 720px;
  padding: 180px 24px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.privacy-icon-wrap {
  width: 98px;
  height: 98px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.privacy-icon-wrap img {
  width: 76px;
  border-radius: 20%;
}

.privacy-hero h1 {
  margin: 25px 0 18px;
}

.privacy-hero > p {
  color: var(--muted);
  font-size: 16px;
}

.policy-meta {
  margin-top: 36px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #727985;
  font-size: 10px;
}

.policy-meta strong {
  color: #cfd3da;
  font-weight: 560;
}

.policy-layout {
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 150px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 100px;
  align-items: start;
}

.policy-layout aside {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.policy-layout aside > span {
  margin-bottom: 10px;
  color: #5e6570;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.policy-layout aside a {
  color: #777e8a;
  font-size: 11px;
  line-height: 1.4;
  transition: color 160ms ease, transform 160ms ease;
}

.policy-layout aside a:hover {
  color: white;
  transform: translateX(4px);
}

.policy-intro {
  margin: 0 0 85px;
  color: #d4d7dd;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.policy-content section {
  padding: 0 0 75px;
  margin: 0 0 75px;
  scroll-margin-top: 110px;
  border-bottom: 1px solid var(--line);
}

.policy-content section h2 {
  margin: 22px 0 25px;
  font-size: 37px;
  letter-spacing: -0.055em;
}

.policy-content section p,
.policy-content section li {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.82;
}

.policy-content section p + p {
  margin-top: 16px;
}

.policy-content ul {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.policy-content li {
  padding: 10px 0 10px 25px;
  position: relative;
}

.policy-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}

.privacy-highlight {
  margin-top: 28px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(77, 225, 127, 0.25);
  border-radius: 16px;
  background: rgba(77, 225, 127, 0.055);
}

.privacy-highlight strong {
  color: #e6f9eb;
  font-size: 14px;
}

.privacy-highlight span {
  color: #8fa196;
  font-size: 12px;
  line-height: 1.6;
}

.contact-section {
  border-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.contact-section a {
  margin-top: 16px;
  padding: 15px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 630;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-section a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.policy-footer {
  width: min(1060px, calc(100% - 48px));
}

@media (prefers-reduced-motion: no-preference) {
  .feature-row,
  .extra-card,
  .privacy-banner {
    animation: reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 24%;
  }

  @keyframes reveal {
    from { opacity: 0; transform: translateY(36px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 1020px) {
  .hero {
    min-height: 1100px;
    padding-top: 170px;
    grid-template-columns: 1fr;
    gap: 125px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .compatibility {
    justify-content: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-product {
    width: min(780px, 92%);
    margin: 0 auto;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-visual {
    order: initial;
  }

  .feature-copy {
    max-width: 560px;
  }

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

  .privacy-copy {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .section {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    top: 10px;
    width: calc(100% - 20px);
    height: 58px;
    border-radius: 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    height: 40px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 960px;
    padding: 140px 20px 95px;
    gap: 90px;
  }

  .hero h1,
  .privacy-hero h1 {
    font-size: clamp(51px, 15vw, 72px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .compatibility {
    flex-wrap: wrap;
  }

  .icon-orbit {
    left: -23px;
    top: -68px;
    width: 108px;
    height: 108px;
  }

  .icon-orbit img {
    width: 73px;
    height: 73px;
  }

  .hero-window {
    width: 110%;
    margin-left: -5%;
    border-radius: 14px;
  }

  .pill-fast { right: -8px; }
  .pill-private { left: 3%; }

  .trust-strip {
    width: calc(100% - 28px);
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .intro-section {
    padding-top: 110px;
    padding-bottom: 85px;
  }

  .section-title-row,
  .formats-copy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-title-row h2,
  .formats-copy h2 {
    font-size: 42px;
  }

  .section-title-row p,
  .formats-copy > p {
    margin-left: 0;
  }

  .feature-showcase {
    gap: 115px;
    padding-bottom: 120px;
  }

  .feature-copy h3 {
    font-size: 38px;
  }

  .feature-visual .app-window {
    border-radius: 13px;
  }

  .window-bar {
    height: 29px;
  }

  .traffic-lights span {
    width: 7px;
    height: 7px;
  }

  .formats-section {
    padding-bottom: 100px;
  }

  .format-track span {
    padding: 0 25px 38px;
    gap: 20px;
    font-size: 65px;
  }

  .formats-copy {
    padding-top: 75px;
  }

  .extras {
    padding-top: 100px;
    padding-bottom: 100px;
    grid-template-columns: 1fr;
  }

  .extra-card {
    min-height: 510px;
    padding: 30px 26px 0;
    border-radius: 20px;
  }

  .extra-copy h3 {
    font-size: 32px;
  }

  .wide-card {
    grid-column: auto;
    min-height: 650px;
    padding: 34px 26px 0;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .wide-card .extra-copy h3 {
    font-size: 34px;
  }

  .wide-card img {
    width: 125%;
    margin: 0 -12.5% -1px;
  }

  .privacy-banner {
    min-height: 580px;
    padding: 40px 28px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .privacy-copy {
    grid-column: auto;
  }

  .final-cta {
    min-height: 700px;
    padding-block: 120px;
  }

  .final-cta h2 {
    font-size: 60px;
  }

  footer,
  .policy-footer {
    padding: 35px 0;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  footer > div {
    justify-content: center;
    flex-wrap: wrap;
  }

  .back-link {
    font-size: 11px;
  }

  .privacy-hero {
    min-height: 660px;
    padding-top: 150px;
  }

  .policy-layout {
    width: calc(100% - 36px);
    padding-top: 75px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .policy-layout aside {
    display: none;
  }

  .policy-intro {
    margin-bottom: 70px;
    font-size: 21px;
  }

  .policy-content section {
    padding-bottom: 55px;
    margin-bottom: 55px;
  }

  .policy-content section h2 {
    font-size: 31px;
  }
}

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

/* macOS 26 / Liquid Glass visual refinement */
:root {
  --bg: #050609;
  --surface: #101116;
  --surface-soft: #15161c;
  --line: rgba(255, 255, 255, 0.105);
  --line-bright: rgba(255, 255, 255, 0.2);
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(235, 239, 247, 0.61);
  --tertiary: rgba(235, 239, 247, 0.38);
  --blue: #0a84ff;
  --cyan: #64d2ff;
  --green: #30d158;
  --magenta: #ff55c7;
  --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --mono-font: "SF Mono", ui-monospace, Menlo, Monaco, monospace;
  --ease-fluid: cubic-bezier(0.2, 0.8, 0.2, 1);
}

html {
  color-scheme: dark;
}

body {
  background:
    radial-gradient(ellipse 62% 36% at 76% 4%, rgba(100, 210, 255, 0.1), transparent 70%),
    radial-gradient(ellipse 44% 30% at 25% 2%, rgba(10, 132, 255, 0.12), transparent 72%),
    linear-gradient(180deg, #090a0e 0%, var(--bg) 20%, #07080b 100%);
  color: var(--text);
  font-family: var(--system-font);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

a:focus-visible {
  outline: 3px solid rgba(10, 132, 255, 0.62);
  outline-offset: 4px;
  border-radius: 12px;
}

.nav-shell {
  --glass-x: 50%;
  --glass-y: 50%;
  height: 68px;
  padding: 0 11px 0 14px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.04)),
    rgba(15, 17, 23, 0.56);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 -1px 0 rgba(0, 0, 0, 0.24) inset,
    0 18px 65px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(32px) saturate(185%) brightness(1.04);
  -webkit-backdrop-filter: blur(32px) saturate(185%) brightness(1.04);
  isolation: isolate;
}

.nav-shell::before,
.nav-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.nav-shell::before {
  z-index: -1;
  inset: 1px;
  background:
    radial-gradient(180px circle at var(--glass-x) var(--glass-y), rgba(255, 255, 255, 0.13), transparent 72%);
  opacity: 0.8;
}

.nav-shell::after {
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.26), transparent 27%, transparent 72%, rgba(100, 210, 255, 0.13)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.nav-shell.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(9, 11, 16, 0.72);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 24px 80px rgba(0, 0, 0, 0.5);
}

.brand {
  gap: 9px;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.brand img {
  border-radius: 11px;
}

.nav-links {
  gap: 7px;
  color: rgba(245, 247, 252, 0.68);
  font-size: 13px;
  font-weight: 510;
  letter-spacing: -0.01em;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.09);
}

.nav-cta {
  height: 44px;
  padding-inline: 17px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 242, 249, 0.88));
  color: #111318;
  box-shadow:
    0 1px 0 white inset,
    0 8px 24px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: -0.01em;
}

.hero {
  padding-top: 210px;
}

.eyebrow,
.section-kicker {
  gap: 8px;
  color: rgba(222, 228, 238, 0.58);
  font-family: var(--system-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.105em;
}

.eyebrow {
  width: fit-content;
  padding: 8px 12px 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07) inset;
}

.hero h1,
.section h2,
.formats-copy h2,
.final-cta h2,
.privacy-hero h1 {
  line-height: 0.96;
  letter-spacing: -0.058em;
  font-weight: 620;
}

.hero h1 span,
.section-title-row h2 span,
.formats-copy h2 span,
.final-cta h2 span,
.privacy-hero h1 span {
  background: linear-gradient(115deg, #ffffff 8%, #b9c0cc 54%, #747d8c 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p,
.section-title-row p,
.formats-copy > p,
.feature-copy > p,
.extra-copy > p,
.privacy-copy p {
  color: var(--muted);
  letter-spacing: -0.012em;
}

.hero-copy > p {
  max-width: 530px;
  font-size: 19px;
  line-height: 1.56;
}

.app-store-button {
  --glass-x: 50%;
  --glass-y: 50%;
  position: relative;
  overflow: hidden;
  min-width: 208px;
  height: 68px;
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(160px circle at var(--glass-x) var(--glass-y), rgba(255, 255, 255, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(10, 11, 15, 0.78);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 20px 48px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.app-store-button:hover {
  transform: translateY(-2px) scale(1.012);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 25px 55px rgba(0, 0, 0, 0.46);
}

.app-store-button small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
  letter-spacing: 0;
}

.app-store-button strong {
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.text-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 550;
}

.compatibility {
  color: var(--tertiary);
  font-size: 11px;
  font-weight: 500;
}

.app-window {
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: rgba(19, 21, 27, 0.96);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.09) inset,
    0 45px 120px rgba(0, 0, 0, 0.58),
    0 8px 24px rgba(0, 0, 0, 0.34);
}

.window-bar {
  height: 43px;
  border-bottom-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  color: rgba(245, 247, 251, 0.42);
  font-size: 10px;
  font-weight: 560;
}

.orbit-ring {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    inset 0 0 46px rgba(10, 132, 255, 0.08);
  backdrop-filter: blur(14px);
}

.floating-pill,
.policy-meta {
  --glass-x: 50%;
  --glass-y: 50%;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background:
    radial-gradient(100px circle at var(--glass-x) var(--glass-y), rgba(255, 255, 255, 0.13), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(18, 20, 27, 0.62);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 16px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  font-weight: 570;
}

.trust-strip {
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.027);
}

.trust-strip div {
  border-right-color: rgba(255, 255, 255, 0.075);
}

.trust-strip strong {
  font-size: 24px;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.trust-strip span {
  color: var(--tertiary);
  font-size: 11px;
  font-weight: 500;
}

.feature-number,
.policy-number {
  border-color: rgba(10, 132, 255, 0.28);
  background: rgba(10, 132, 255, 0.1);
  color: #76b9ff;
  font-family: var(--mono-font);
  font-weight: 560;
}

.feature-copy h3,
.extra-copy h3 {
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 620;
}

.feature-copy > p,
.extra-copy > p {
  font-size: 16px;
  line-height: 1.65;
}

.feature-tags {
  color: rgba(244, 247, 252, 0.76);
  font-size: 12px;
  font-weight: 520;
}

.formats-section {
  border-color: rgba(255, 255, 255, 0.075);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(10, 132, 255, 0.06), transparent 54%),
    #090a0e;
}

.format-track span {
  color: rgba(225, 232, 243, 0.11);
  font-weight: 650;
  letter-spacing: -0.055em;
}

.extra-card {
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 10%, rgba(10, 132, 255, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--surface);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.055) inset,
    0 28px 90px rgba(0, 0, 0, 0.18);
}

.extra-card:nth-child(2) {
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 85, 199, 0.09), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--surface);
}

.mini-icon {
  border-color: rgba(10, 132, 255, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(10, 132, 255, 0.18), rgba(10, 132, 255, 0.08));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.wide-card {
  background:
    radial-gradient(circle at 18% 50%, rgba(48, 209, 88, 0.09), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--surface);
}

.privacy-banner {
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 36px;
  background:
    radial-gradient(circle at 0% 80%, rgba(10, 132, 255, 0.13), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(48, 209, 88, 0.075), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 40%),
    #101116;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.055) inset;
}

.privacy-symbol {
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.09) inset;
}

.privacy-page {
  background:
    radial-gradient(ellipse 60% 32% at 50% 0%, rgba(10, 132, 255, 0.13), transparent 70%),
    linear-gradient(180deg, #090a0e, var(--bg) 32%);
}

.privacy-icon-wrap {
  border-color: rgba(255, 255, 255, 0.17);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(15, 17, 23, 0.62);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 25px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
}

.policy-layout aside > span {
  color: var(--tertiary);
  font-family: var(--system-font);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.policy-layout aside a {
  color: rgba(235, 239, 247, 0.44);
  font-size: 12px;
  font-weight: 510;
}

.policy-intro {
  color: rgba(246, 248, 252, 0.82);
  font-size: 25px;
  line-height: 1.44;
  letter-spacing: -0.028em;
  font-weight: 480;
}

.policy-content section h2 {
  letter-spacing: -0.04em;
  font-weight: 620;
}

.policy-content section p,
.policy-content section li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.privacy-highlight {
  border-color: rgba(48, 209, 88, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(48, 209, 88, 0.08), rgba(48, 209, 88, 0.035));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.contact-section a {
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07) inset;
}

footer {
  color: var(--tertiary);
}

@media (max-width: 760px) {
  .nav-shell {
    height: 60px;
    border-radius: 21px;
  }

  .nav-cta {
    height: 42px;
    padding-inline: 14px;
  }

  .hero h1,
  .privacy-hero h1 {
    letter-spacing: -0.052em;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .app-window,
  .extra-card,
  .privacy-banner {
    border-radius: 24px;
  }

  .trust-strip {
    border-radius: 24px;
  }
}
