:root {
  --bg: #ffffff;
  --ink: #050506;
  --ink-2: #171b22;
  --muted: #626b78;
  --line: #e7eaf0;
  --soft: #f5f7fb;
  --soft-2: #eef9ff;
  --accent: #007aff;
  --accent-2: #10d7c4;
  --accent-3: #071f2e;
  --accent-soft: rgba(16, 215, 196, .12);
  --surface: rgba(255, 255, 255, .82);
  --shadow: 0 34px 100px rgba(8, 17, 32, .14);
  --accent-shadow: 0 28px 78px rgba(0, 122, 255, .18);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(236, 249, 255, .92), rgba(255, 255, 255, 0) 500px),
    linear-gradient(90deg, rgba(0, 122, 255, .035), transparent 58%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 19, 35, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 19, 35, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 680px);
}

body::after {
  content: none;
}

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

img,
svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: min(calc(100% - 32px), var(--max));
  min-height: 68px;
  margin: 14px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(0, 122, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 18px 60px rgba(12, 24, 44, .08), inset 0 1px 0 rgba(255, 255, 255, .85);
}

.legal-header {
  position: static;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 820;
}

.brand img {
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 122, 255, .12), rgba(16, 215, 196, .24));
  box-shadow: 0 12px 28px rgba(0, 122, 255, .18);
}

.nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #303743;
  font-size: 14px;
  font-weight: 690;
}

.nav a,
.site-footer a {
  position: relative;
  transition: color .18s ease, transform .18s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .18s ease, transform .18s ease;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.language-select {
  min-width: 64px;
  height: 40px;
  border: 1px solid rgba(0, 122, 255, .16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
}

.store-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.store-link {
  gap: 0;
  padding: 0 20px;
  color: #fff;
  background:
    linear-gradient(135deg, #050506 0%, #071f2e 48%, #006ff2 100%);
  box-shadow: 0 20px 46px rgba(0, 122, 255, .22), 0 12px 24px rgba(0, 0, 0, .16);
}

.store-link:hover,
.secondary-link:hover {
  transform: translateY(-2px);
}

.store-link:hover {
  box-shadow: 0 26px 58px rgba(0, 122, 255, .28), 0 16px 34px rgba(0, 0, 0, .18);
}

.small-store-link {
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

.secondary-link {
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(17, 24, 39, .09);
}

.secondary-link:hover {
  border-color: rgba(0, 122, 255, .55);
  box-shadow: 0 12px 32px rgba(0, 122, 255, .08);
}

.secondary-link.dark {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .25);
}

.text-store {
  min-height: auto;
  padding: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.text-store:hover {
  transform: none;
  box-shadow: none;
}

.hero {
  width: min(calc(100% - 32px), var(--max));
  margin: 22px auto 0;
  padding: clamp(54px, 6vw, 88px) 0 clamp(44px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: 48px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 7% -10% auto 45%;
  height: 360px;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent, rgba(0, 122, 255, .08), rgba(16, 215, 196, .1), transparent),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(16, 215, 196, .1) 32px 34px);
  transform: skewY(-8deg);
  filter: blur(.2px);
  animation: lightSweep 11s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 122, 255, .35), var(--line), transparent);
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(70px, 10vw, 150px);
  line-height: .82;
  font-weight: 880;
  letter-spacing: 0;
  color: transparent;
  background: linear-gradient(135deg, #050506 0%, #050506 45%, #007aff 72%, #10d7c4 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 690px;
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(30px, 4.1vw, 58px);
  line-height: .98;
  font-weight: 850;
}

.hero-subcopy {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.availability {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 760;
}

.mini-devices {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.mini-devices i {
  display: block;
  border: 2px solid #111;
  border-radius: 3px;
  background: #fff;
}

.mini-devices i:nth-child(1) {
  width: 24px;
  height: 17px;
}

.mini-devices i:nth-child(2) {
  width: 12px;
  height: 21px;
  border-radius: 5px;
}

.mini-devices i:nth-child(3) {
  width: 19px;
  height: 24px;
  border-radius: 5px;
}

.hero-visual {
  min-width: 0;
  overflow: visible;
}

.device-stage {
  position: relative;
  min-height: clamp(430px, 37vw, 560px);
  perspective: 1100px;
  max-width: 100%;
}

.device-stage::before {
  content: "";
  position: absolute;
  inset: 34px 18px 52px 42px;
  z-index: 0;
  border: 1px solid rgba(0, 122, 255, .18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(236, 250, 255, .44)),
    repeating-linear-gradient(120deg, transparent 0 30px, rgba(0, 122, 255, .055) 30px 32px);
  transform: rotateX(4deg) rotateY(-7deg);
}

.motion-burst {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  opacity: .75;
  animation: streak 4.6s ease-in-out infinite;
}

.burst-one {
  width: 310px;
  top: 30px;
  left: 120px;
}

.burst-two {
  width: 250px;
  right: 36px;
  bottom: 58px;
  animation-delay: -2s;
}

.scanline {
  position: absolute;
  z-index: 0;
  height: 9px;
  border-radius: 2px;
  background: #050506;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25), 0 16px 30px rgba(0, 122, 255, .18);
  opacity: .9;
  animation: driftLine 8s ease-in-out infinite;
}

.scanline-one {
  width: 220px;
  top: 78px;
  right: 70px;
}

.scanline-two {
  width: 150px;
  left: 10px;
  bottom: 92px;
  animation-delay: -3s;
}

.mac-window {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  border: 1px solid rgba(0, 122, 255, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow), var(--accent-shadow);
  overflow: hidden;
  transform: rotateX(2deg) rotateY(-6deg) rotateZ(-1deg);
}

.mac-window::after {
  content: none;
}

.window-top {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: linear-gradient(180deg, #fbfcfe, #eef8ff);
  border-bottom: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
}

.window-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d8dde6;
}

.window-top span:first-child {
  background: #ff5f57;
}

.window-top span:nth-child(2) {
  background: #ffbd2f;
}

.window-top span:nth-child(3) {
  background: #28c840;
}

.window-top strong {
  margin-left: auto;
  margin-right: auto;
  color: #4b5563;
  font-size: 13px;
}

.app-ui {
  min-height: 420px;
  display: grid;
  grid-template-columns: 154px 1fr 126px;
  background:
    linear-gradient(135deg, #f8fbff, #eefbff);
  border-radius: 0 0 7px 7px;
  overflow: hidden;
}

.app-ui aside {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.side-title,
.file-row em,
.file-row b,
.toolbar i,
.toolbar b,
.paper-title,
.paper-line,
.phone-head,
.phone-doc span,
.tablet-doc span,
.tool-panel span,
.tool-panel button {
  display: block;
  border-radius: 8px;
  background: #dfe5ee;
}

.side-title {
  width: 78px;
  height: 13px;
  margin-bottom: 18px;
}

.file-row {
  height: 50px;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 8px;
}

.file-row em {
  height: 22px;
}

.file-row b {
  height: 12px;
}

.file-row.active {
  background: linear-gradient(90deg, rgba(0, 122, 255, .16), rgba(16, 215, 196, .13));
  border: 1px solid rgba(0, 122, 255, .24);
}

.file-row.short {
  width: 78%;
}

.document {
  padding: 18px;
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.toolbar i {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid var(--line);
}

.toolbar b {
  width: 116px;
  height: 30px;
  margin-left: auto;
  background: linear-gradient(90deg, #050506, #007aff);
}

.paper {
  width: min(100%, 340px);
  min-height: 356px;
  margin: 0 auto;
  padding: 34px 32px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 54px rgba(15, 23, 42, .12), 0 0 0 1px rgba(0, 122, 255, .06);
  position: relative;
  overflow: hidden;
}

.paper::after,
.tablet-screen::after,
.phone-screen::after {
  content: "";
  position: absolute;
  left: -35%;
  right: -35%;
  top: 18%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0, 122, 255, .12), rgba(16, 215, 196, .8), transparent);
  box-shadow: 0 0 22px rgba(16, 215, 196, .45);
  transform: rotate(-6deg);
  animation: scanAcross 5.2s ease-in-out infinite;
}

.screen-shot {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-shot.is-loaded {
  display: block;
}

.paper-title {
  width: 54%;
  height: 17px;
  margin-bottom: 22px;
  background: #aeb8c7;
}

.paper-line {
  height: 12px;
  margin-bottom: 13px;
}

.paper-line.wide {
  width: 100%;
}

.paper-line.medium {
  width: 72%;
}

.paper-line.tiny {
  width: 38%;
}

.redaction {
  height: 23px;
  margin: 15px 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #050506, #050506 72%, #09273b);
  transform-origin: left center;
  animation: redactSweep 3s ease-in-out infinite;
}

.redaction.r1 {
  width: 80%;
}

.redaction.r2 {
  width: 55%;
  animation-delay: .65s;
}

.redaction.r3 {
  width: 68%;
  animation-delay: 1.1s;
}

.tool-panel {
  padding: 18px 14px;
  border-left: 1px solid var(--line);
  background: #fff;
}

.tool-panel span {
  width: 70px;
  height: 12px;
  margin-bottom: 16px;
}

.tool-panel button {
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  background: #f7f9fc;
}

.tool-panel button.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.tablet,
.phone {
  position: absolute;
  z-index: 3;
  background: #111318;
  box-shadow: 0 28px 74px rgba(0, 0, 0, .24), 0 18px 56px rgba(0, 122, 255, .14);
}

.tablet {
  right: 0;
  top: 145px;
  width: 224px;
  height: 306px;
  border: 7px solid #111318;
  border-radius: 18px;
  transform: rotate(2deg);
}

.tablet-screen,
.phone-screen {
  height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfdff, #ecf8ff);
  position: relative;
}

.tablet-screen {
  border-radius: 12px;
  padding: 24px 20px;
}

.tablet-doc,
.phone-doc {
  padding: 20px 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(12, 24, 44, .12);
}

.tablet-doc span,
.phone-doc span {
  height: 10px;
  margin-bottom: 12px;
}

.tablet-doc b,
.phone-doc b {
  display: block;
  width: 90%;
  height: 22px;
  margin: 14px 0;
  background: #050506;
}

.tablet-doc b.small,
.phone-doc b.small {
  width: 58%;
}

.phone {
  right: 162px;
  bottom: 18px;
  width: 158px;
  height: 326px;
  border: 6px solid #111318;
  border-radius: 24px;
  transform: rotate(5deg);
}

.phone-screen {
  border-radius: 18px;
  padding: 18px 13px;
}

.phone-head {
  height: 5px;
  width: 42px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(5, 5, 6, .18);
}

.floating {
  animation: float 7s ease-in-out infinite;
}

.floating.delay {
  animation-delay: -2.3s;
}

.floating.delay-more {
  animation-delay: -4.2s;
}

.proof-strip,
.workflow,
.feature-strip,
.platforms,
.languages,
.final-cta {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  border: 1px solid rgba(0, 122, 255, .12);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0, 122, 255, .11), rgba(16, 215, 196, .13));
  box-shadow: 0 20px 70px rgba(0, 122, 255, .1);
}

.proof-strip > div {
  min-height: 124px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 8px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 252, 255, .92));
}

.proof-strip > div::before {
  content: "";
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.proof-strip > div > strong,
.proof-strip > div > span {
  display: block;
}

.proof-strip > div > strong {
  font-size: 20px;
  line-height: 1.05;
}

.proof-strip > div > span {
  color: var(--muted);
  line-height: 1.35;
}

.workflow,
.feature-strip,
.platforms,
.languages,
.pricing-band {
  padding: 104px 0;
}

.section-heading {
  max-width: 780px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.privacy-copy h2,
.languages h2,
.final-cta h2,
.legal-page h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 76px);
  line-height: .94;
  font-weight: 860;
  letter-spacing: 0;
}

.section-heading p,
.privacy-copy p,
.languages p,
.final-cta p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.section-heading.centered p,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.workflow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.workflow-track::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 37px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  box-shadow: 0 0 24px rgba(16, 215, 196, .32);
}

.workflow-step {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(0, 122, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(244, 251, 255, .94));
  box-shadow: 0 18px 52px rgba(0, 122, 255, .07);
  overflow: hidden;
}

.workflow-step::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: .72;
}

.workflow-step span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(0, 122, 255, .22);
  border-radius: 50%;
  margin-bottom: 48px;
  background:
    linear-gradient(180deg, #fff, #effbff);
  color: var(--accent);
  font-weight: 860;
  box-shadow: 0 14px 34px rgba(0, 122, 255, .12);
}

.workflow-step h3,
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.04;
}

.workflow-step p,
.feature-card p,
.platform-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.feature-card {
  min-height: 278px;
  padding: 28px;
  border: 1px solid rgba(0, 122, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #f8fdff);
  box-shadow: 0 18px 52px rgba(0, 122, 255, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover,
.workflow-step:hover,
.platform-item:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 215, 196, .42);
  box-shadow: 0 24px 70px rgba(0, 122, 255, .13);
}

.feature-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 38px;
  fill: none;
  stroke: var(--accent);
  filter: drop-shadow(0 10px 16px rgba(0, 122, 255, .12));
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card.accent-card {
  background:
    linear-gradient(135deg, #050506, #071f2e 68%, #075fae);
  color: #fff;
  box-shadow: 0 24px 74px rgba(0, 122, 255, .2);
}

.feature-card.accent-card p {
  color: rgba(255, 255, 255, .7);
}

.feature-card.accent-card svg {
  stroke: var(--accent-2);
}

.privacy-band {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 74px;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 58px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(120deg, transparent 0 34px, rgba(255, 255, 255, .025) 34px 36px),
    linear-gradient(120deg, rgba(0, 122, 255, .28), transparent 44%),
    linear-gradient(24deg, transparent 58%, rgba(16, 215, 196, .14)),
    #050506;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.privacy-band::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 430px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  transform: rotate(-18deg);
}

.privacy-copy p {
  color: rgba(255, 255, 255, .72);
}

.privacy-copy .secondary-link {
  margin-top: 30px;
}

.privacy-list {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.privacy-list div {
  padding: 22px;
  border: 1px solid rgba(16, 215, 196, .18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(16, 215, 196, .055));
  backdrop-filter: blur(10px);
}

.privacy-list strong,
.privacy-list span {
  display: block;
}

.privacy-list strong {
  margin-bottom: 6px;
  font-size: 19px;
}

.privacy-list span {
  color: rgba(255, 255, 255, .7);
}

.platform-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.platform-item {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(0, 122, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #eefbff);
  overflow: hidden;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.platform-item span {
  display: block;
  margin-bottom: 12px;
  font-size: 31px;
  font-weight: 860;
}

.platform-item i {
  display: block;
  width: 64%;
  height: 96px;
  margin: 30px 0 20px auto;
  border: 8px solid #050506;
  border-bottom-width: 18px;
  border-radius: 8px 8px 4px 4px;
  background:
    linear-gradient(135deg, #fff, var(--soft-2));
  box-shadow: 0 18px 38px rgba(0, 122, 255, .12);
}

.platform-item:nth-child(2) i {
  width: 76px;
  height: 132px;
  border-radius: 22px;
  border-width: 7px;
}

.platform-item:nth-child(3) i {
  width: 130px;
  height: 148px;
  border-radius: 17px;
  border-width: 8px;
}

.languages {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 42px;
  align-items: center;
}

.pricing-band {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 52px;
  align-items: center;
  position: relative;
}

.pricing-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 122, 255, .45), rgba(16, 215, 196, .45), transparent);
  box-shadow: 0 0 22px rgba(16, 215, 196, .24);
}

.pricing-copy,
.pricing-card {
  position: relative;
  z-index: 1;
}

.pricing-copy h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: .93;
  font-weight: 870;
}

.pricing-copy p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.pricing-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #27303b;
  font-weight: 760;
}

.pricing-copy li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 18px rgba(0, 122, 255, .22);
}

.pricing-card {
  min-height: 390px;
  padding: 34px;
  border: 1px solid rgba(16, 215, 196, .2);
  border-radius: 8px;
  background:
    repeating-linear-gradient(115deg, transparent 0 34px, rgba(255, 255, 255, .025) 34px 36px),
    linear-gradient(150deg, #050506, #071f2e 62%, #075fae);
  color: #fff;
  box-shadow: 0 34px 90px rgba(0, 122, 255, .24);
  overflow: hidden;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -74px 40%;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .15);
  transform: rotate(-12deg);
}

.pricing-card span,
.pricing-card p {
  display: block;
  color: rgba(255, 255, 255, .68);
  font-weight: 760;
}

.pricing-card strong {
  display: block;
  margin: 22px 0 12px;
  font-size: clamp(58px, 8vw, 78px);
  line-height: .88;
  letter-spacing: 0;
}

.pricing-card .store-link {
  width: 100%;
  margin-top: 34px;
  color: #050506;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 215, 196, .18);
}

.language-cards {
  display: grid;
  gap: 12px;
}

.language-cards span {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 0 24px;
  border: 1px solid rgba(0, 122, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #f6fcff);
  font-size: 31px;
  font-weight: 860;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .04);
}

.language-cards span:nth-child(2) {
  color: #fff;
  background: linear-gradient(135deg, #050506, #071f2e 66%, #075fae);
}

.final-cta {
  margin-bottom: 96px;
  padding: 72px 32px;
  text-align: center;
  border: 1px solid rgba(0, 122, 255, .14);
  border-radius: 8px;
  background:
    repeating-linear-gradient(120deg, transparent 0 34px, rgba(0, 122, 255, .032) 34px 36px),
    linear-gradient(180deg, #fff, #eefbff);
  box-shadow: 0 22px 80px rgba(0, 122, 255, .1);
}

.final-cta .store-link {
  margin-top: 30px;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 38px 0 54px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(0, 122, 255, .12);
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
}

.site-footer p {
  margin: 12px 0 0;
}

.site-footer nav {
  flex-wrap: wrap;
  font-weight: 700;
}

.legal-page {
  width: min(calc(100% - 32px), 880px);
  margin: 0 auto;
  padding: 82px 0 90px;
}

.legal-page h1 {
  margin-bottom: 14px;
}

.legal-date {
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 46px;
}

.legal-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  margin: 0 0 12px;
  font-size: 25px;
}

.legal-page p,
.legal-page li {
  color: #3f4652;
  font-size: 17px;
}

.legal-page a {
  color: var(--accent);
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -16px;
  }
}

@keyframes redactSweep {
  0%, 100% {
    transform: scaleX(.94);
  }
  45% {
    transform: scaleX(1.04);
  }
}

@keyframes driftLine {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(38px);
  }
}

@keyframes lightSweep {
  0%, 100% {
    transform: translateX(-16px) skewY(-8deg);
    opacity: .72;
  }
  50% {
    transform: translateX(26px) skewY(-8deg);
    opacity: 1;
  }
}

@keyframes streak {
  0%, 100% {
    transform: translateX(-42px) scaleX(.7);
    opacity: .2;
  }
  45% {
    transform: translateX(42px) scaleX(1);
    opacity: .9;
  }
}

@keyframes scanAcross {
  0%, 100% {
    transform: translateY(-70px) rotate(-6deg);
    opacity: 0;
  }
  25%, 68% {
    opacity: 1;
  }
  72% {
    transform: translateY(300px) rotate(-6deg);
    opacity: 0;
  }
}

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

@media (max-width: 1080px) {
  .site-header,
  .hero,
  .proof-strip,
  .workflow,
  .feature-strip,
  .platforms,
  .languages,
  .pricing-band,
  .privacy-band,
  .final-cta,
  .site-footer {
    width: min(calc(100% - 40px), var(--max));
  }

  .site-header {
    gap: 14px;
  }

  .nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 54px;
    gap: 34px;
  }

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

  .hero-lead {
    max-width: 840px;
  }

  .device-stage {
    min-height: 520px;
    width: min(100%, 820px);
    margin: 0 auto;
  }

  .mac-window {
    width: min(92%, 690px);
  }

  .tablet {
    right: 0;
    top: 132px;
  }

  .phone {
    right: 148px;
    bottom: 26px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-band,
  .languages,
  .pricing-band {
    grid-template-columns: 1fr;
  }

  .privacy-band {
    padding: 58px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 2px 0 4px;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(72px, 16vw, 118px);
  }

  .hero-lead {
    font-size: clamp(38px, 7.4vw, 58px);
  }

  .device-stage {
    min-height: 500px;
  }

  .mac-window {
    width: 96%;
    transform: rotateX(1deg) rotateY(-3deg) rotateZ(-.6deg);
  }

  .app-ui {
    grid-template-columns: 128px 1fr 104px;
    min-height: 410px;
  }

  .paper {
    min-height: 318px;
  }

  .tablet {
    width: 190px;
    height: 268px;
    top: 150px;
    right: -4px;
  }

  .phone {
    width: 138px;
    height: 280px;
    right: 126px;
    bottom: 12px;
  }

  .proof-strip,
  .workflow-track,
  .platform-row {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip div,
  .workflow-step,
  .platform-item {
    min-height: auto;
  }

  .workflow-track::before {
    display: none;
  }

  .workflow-step span {
    margin-bottom: 28px;
  }

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

  .feature-card {
    min-height: auto;
  }

  .privacy-band {
    padding: 44px;
  }

  .pricing-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .proof-strip,
  .workflow,
  .feature-strip,
  .platforms,
  .languages,
  .pricing-band,
  .privacy-band,
  .final-cta,
  .site-footer,
  .legal-page {
    width: min(calc(100% - 22px), var(--max));
  }

  .site-header {
    margin-top: 10px;
    padding: 9px 10px;
  }

  .brand span {
    font-size: 16px;
  }

  .small-store-link {
    display: none;
  }

  .hero {
    gap: 28px;
    padding: 34px 0 54px;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 88px);
  }

  .hero-lead {
    font-size: clamp(31px, 10.5vw, 45px);
    line-height: 1.02;
  }

  .hero-subcopy,
  .section-heading p,
  .privacy-copy p,
  .languages p,
  .pricing-copy p,
  .final-cta p {
    font-size: 18px;
  }

  .hero-actions,
  .hero-actions .store-link,
  .hero-actions .secondary-link,
  .privacy-copy .secondary-link,
  .final-cta .store-link {
    width: 100%;
  }

  .store-link,
  .secondary-link {
    min-height: 50px;
  }

  .availability {
    align-items: flex-start;
    flex-direction: column;
  }

  .device-stage {
    min-height: 420px;
  }

  .mac-window {
    width: 100%;
    transform: none;
  }

  .app-ui {
    grid-template-columns: 86px 1fr;
    min-height: 330px;
  }

  .tool-panel {
    display: none;
  }

  .app-ui aside,
  .document {
    padding: 12px 10px;
  }

  .paper {
    min-height: 250px;
    padding: 22px 18px;
  }

  .paper-title {
    margin-bottom: 17px;
  }

  .paper-line {
    height: 10px;
    margin-bottom: 10px;
  }

  .redaction {
    height: 19px;
    margin: 12px 0;
  }

  .tablet {
    display: none;
  }

  .phone {
    right: -2px;
    bottom: -10px;
    width: 118px;
    height: 238px;
    border-width: 6px;
    border-radius: 23px;
  }

  .phone-screen {
    border-radius: 17px;
    padding: 18px 12px;
  }

  .scanline {
    display: none;
  }

  .workflow,
  .feature-strip,
  .platforms,
  .languages,
  .pricing-band {
    padding: 56px 0;
  }

  .section-heading h2,
  .privacy-copy h2,
  .languages h2,
  .pricing-copy h2,
  .final-cta h2,
  .legal-page h1 {
    font-size: clamp(34px, 9vw, 39px);
    line-height: 1;
  }

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

  .privacy-band {
    padding: 34px 22px;
  }

  .pricing-band {
    gap: 28px;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .final-cta {
    padding: 50px 20px;
    margin-bottom: 68px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .site-header,
  .hero,
  .proof-strip,
  .workflow,
  .feature-strip,
  .platforms,
  .languages,
  .pricing-band,
  .privacy-band,
  .final-cta,
  .site-footer,
  .legal-page {
    width: min(calc(100% - 18px), var(--max));
  }

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

  .language-select {
    min-width: 58px;
    height: 38px;
    padding: 0 8px;
  }

  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 72px);
  }

  .hero-lead {
    font-size: clamp(29px, 9.6vw, 38px);
  }

  .hero-subcopy,
  .section-heading p,
  .privacy-copy p,
  .languages p,
  .pricing-copy p,
  .final-cta p {
    font-size: 16px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .device-stage {
    min-height: 360px;
  }

  .window-top {
    height: 36px;
    padding: 0 10px;
  }

  .window-top strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
  }

  .window-top span {
    width: 9px;
    height: 9px;
  }

  .app-ui {
    grid-template-columns: 64px 1fr;
    min-height: 286px;
  }

  .app-ui aside {
    padding: 10px 7px;
  }

  .side-title {
    width: 44px;
    height: 10px;
    margin-bottom: 12px;
  }

  .file-row {
    grid-template-columns: 14px 1fr;
    height: 36px;
    gap: 6px;
    padding: 0 6px;
    margin-bottom: 8px;
  }

  .file-row em {
    height: 16px;
  }

  .file-row b {
    height: 9px;
  }

  .toolbar {
    gap: 6px;
    margin-bottom: 12px;
  }

  .toolbar i {
    width: 24px;
    height: 24px;
  }

  .toolbar b {
    width: 76px;
    height: 24px;
  }

  .document {
    padding: 10px 8px;
  }

  .paper {
    min-height: 214px;
    padding: 18px 14px;
  }

  .paper-title {
    height: 13px;
  }

  .redaction {
    height: 16px;
  }

  .phone {
    width: 92px;
    height: 188px;
    right: 0;
    bottom: -12px;
    border-width: 5px;
    border-radius: 18px;
  }

  .phone-screen {
    border-radius: 13px;
    padding: 13px 9px;
  }

  .phone-head {
    width: 60px;
    height: 20px;
    margin-bottom: 12px;
  }

  .phone-doc {
    padding: 13px 10px;
  }

  .phone-doc span {
    height: 7px;
    margin-bottom: 8px;
  }

  .phone-doc b {
    height: 14px;
    margin: 9px 0;
  }

  .proof-strip div,
  .workflow-step,
  .feature-card,
  .platform-item {
    padding: 22px;
  }

  .feature-card svg {
    margin-bottom: 26px;
  }

  .language-cards span {
    min-height: 68px;
    font-size: 25px;
  }

  .pricing-card strong {
    font-size: 52px;
  }

  .final-cta {
    padding: 42px 18px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 50px;
  }

  .hero-lead {
    font-size: 28px;
  }

  .device-stage {
    min-height: 360px;
  }

  .phone {
    display: none;
  }

  .app-ui {
    grid-template-columns: 58px 1fr;
  }
}
