:root {
  --black: #000000;
  --graphite: #151517;
  --frost: #f5f5f7;
  --mist: #a1a1aa;
  --coral: #ff5a4f;
  --cyan: #2dd4bf;
  --hairline-dark: rgba(255, 255, 255, 0.14);
  --hairline-light: rgba(0, 0, 0, 0.12);
  --display-font: ui-rounded, "SF Pro Rounded", "Hiragino Maru Gothic ProN", system-ui, sans-serif;
  --body-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "PingFang TC", "Hiragino Sans", "Apple SD Gothic Neo", system-ui, sans-serif;
  --utility-font: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
  --content-width: 1180px;
  color-scheme: dark;
}

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

html {
  --page-progress: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 280px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--frost);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
select {
  font-family: var(--body-font);
}

img {
  max-width: 100%;
}

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

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

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

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

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--display-font);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

p,
dd,
li {
  overflow-wrap: anywhere;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--frost);
  color: var(--black);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: max(8px, env(safe-area-inset-top)) 20px 8px;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--cyan));
  opacity: 0.9;
  transform: scaleX(var(--page-progress));
  transform-origin: left center;
  will-change: transform;
}

.site-header.is-scrolled {
  border-color: var(--hairline-dark);
  background: rgba(0, 0, 0, 0.78);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
}

.site-nav,
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--content-width);
  min-height: 52px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  color: rgba(245, 245, 247, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a,
.footer-links a,
.legal-footer a,
.icp-link {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.legal-footer a:hover,
.icp-link:hover {
  color: var(--cyan);
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.language-select {
  width: 138px;
  max-width: 34vw;
  min-height: 36px;
  padding: 0 30px 0 10px;
  border: 1px solid var(--hairline-dark);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--frost);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.language-select option {
  background: var(--graphite);
  color: var(--frost);
}

.nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--frost);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 544px;
  height: calc(100svh - 24px);
  max-height: 920px;
  padding: 88px max(24px, calc((100vw - var(--content-width)) / 2)) 54px;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--hairline-dark);
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(49%, 540px);
}

.hero-copy > * {
  animation: hero-copy-in 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > :nth-child(1) {
  animation-delay: 40ms;
}

.hero-copy > :nth-child(2) {
  animation-delay: 100ms;
  animation-name: hero-title-in;
}

.hero-copy > :nth-child(3) {
  animation-delay: 170ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 240ms;
}

.hero-copy > :nth-child(5) {
  animation-delay: 310ms;
}

.film-label {
  margin-bottom: 20px;
  color: var(--cyan);
  font-family: var(--utility-font);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 76px;
}

.hero-lead {
  max-width: 510px;
  margin: 26px 0 0;
  color: rgba(245, 245, 247, 0.78);
  font-size: 22px;
  line-height: 1.5;
  text-wrap: balance;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.button-primary {
  background: var(--coral);
  color: #ffffff;
  transition: background-color 160ms ease, transform 160ms ease;
}

.button-primary:not([aria-disabled="true"]):hover {
  background: #ff746b;
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid rgba(245, 245, 247, 0.24);
  background: transparent;
  color: var(--frost);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.button-secondary:not([aria-disabled="true"]):hover {
  border-color: rgba(245, 245, 247, 0.5);
  background: rgba(245, 245, 247, 0.06);
  transform: translateY(-1px);
}

.button[aria-disabled="true"] {
  background: #2a2a2e;
  color: rgba(245, 245, 247, 0.46);
  cursor: not-allowed;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid currentColor;
  color: var(--frost);
  font-size: 15px;
  font-weight: 700;
  transition: color 160ms ease;
}

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

.compatibility {
  margin: 24px 0 0;
  color: rgba(245, 245, 247, 0.42);
  font-family: var(--utility-font);
  font-size: 11px;
  line-height: 1.5;
}

.hero-stage {
  position: absolute;
  z-index: 1;
  top: 78px;
  right: max(4%, calc((100vw - var(--content-width)) / 2));
  bottom: 0;
  width: min(47vw, 520px);
  animation: hero-stage-in 900ms 100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-device {
  --device-anchor: translateX(0);
  --hero-shift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: -15%;
  width: min(31vw, 390px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 36px;
  background: var(--black);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  transform: var(--device-anchor) perspective(1100px) translate3d(0, var(--hero-shift), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-origin: center 35%;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease;
  will-change: transform;
}

.hero-device::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: -42%;
  right: 0;
  left: 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 34%, rgba(45, 212, 191, 0.18) 50%, rgba(255, 90, 79, 0.12) 54%, transparent 100%);
  mix-blend-mode: screen;
  animation: exposure-scan 2400ms 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-stage:hover .hero-device {
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.62);
}

.hero-device img {
  display: block;
  width: 100%;
  height: auto;
}

.spectrum-mark {
  position: absolute;
  z-index: 3;
  top: 11%;
  right: 0;
  width: 108px;
  height: 108px;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 100ms linear;
  will-change: transform;
}

.spectrum-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  bottom: 18px;
  left: 50%;
  display: grid;
  width: 28px;
  height: 38px;
  place-items: center;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 1px;
  height: 22px;
  background: rgba(245, 245, 247, 0.46);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.product-section,
.advantages-section,
.privacy-section {
  width: 100%;
}

.capture-section {
  background: var(--frost);
  color: var(--black);
}

.develop-section {
  background: var(--graphite);
  color: var(--frost);
}

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

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: 8%;
  min-height: 860px;
  padding: 110px 0;
}

.feature-layout-reversed {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
}

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

.feature-copy h2,
.privacy-layout h2,
.download-section h2 {
  font-size: 52px;
}

.section-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(245, 245, 247, 0.68);
  font-size: 19px;
  line-height: 1.7;
}

.capture-section .section-lead {
  color: rgba(0, 0, 0, 0.64);
}

.feature-list,
.privacy-facts {
  margin: 48px 0 0;
}

.feature-list > div,
.privacy-facts > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 19px 0;
  border-top: 1px solid var(--hairline-light);
}

.feature-list > div:last-child,
.privacy-facts > div:last-child {
  border-bottom: 1px solid var(--hairline-light);
}

.feature-list dt,
.privacy-facts dt {
  font-weight: 750;
}

.feature-list dd,
.privacy-facts dd {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
}

.product-figure {
  position: relative;
  justify-self: center;
  width: 100%;
  margin: 0;
  text-align: center;
}

.product-figure > img,
.editor-crop {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 720px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 34px;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.2);
}

.develop-section .product-figure > img,
.develop-section .editor-crop {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
}

.product-figure figcaption {
  max-width: 380px;
  margin: 18px auto 0;
  color: rgba(0, 0, 0, 0.5);
  font-family: var(--utility-font);
  font-size: 11px;
  line-height: 1.6;
}

.develop-section .product-figure figcaption {
  color: rgba(245, 245, 247, 0.42);
}

.camera-icon-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 24px);
  width: min(100%, 520px);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 34px;
  background: #0d0d0f;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.2);
}

.camera-icon-wall::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.09) 48%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.camera-icon-wall:hover::after {
  transform: translateX(130%);
}

.camera-icon-wall img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.42));
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.camera-icon-wall img:nth-child(2n) {
  transform: translateY(14px);
}

.camera-icon-wall:hover img:nth-child(odd) {
  transform: translateY(-5px) rotate(-2deg);
}

.camera-icon-wall:hover img:nth-child(even) {
  transform: translateY(9px) rotate(2deg);
}

.editor-crop {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1.14;
  overflow: hidden;
}

.editor-crop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.process-line {
  display: grid;
  grid-template-columns: auto minmax(24px, 1fr) auto minmax(24px, 1fr) auto;
  align-items: center;
  gap: 14px;
  max-width: 500px;
  margin-top: 48px;
  color: rgba(245, 245, 247, 0.72);
  font-family: var(--utility-font);
  font-size: 12px;
}

.process-line span[aria-hidden="true"] {
  height: 1px;
  background: var(--coral);
  transform-origin: left center;
}

.advantages-section {
  border-top: 1px solid var(--hairline-light);
  background: var(--frost);
  color: var(--black);
}

.advantages-layout {
  padding: 120px 0 112px;
}

.advantages-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 10%;
  margin-bottom: 68px;
}

.advantages-heading h2 {
  max-width: 660px;
  font-size: 52px;
}

.advantages-heading .section-lead {
  margin: 0 0 4px;
  color: rgba(0, 0, 0, 0.62);
}

.capability-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 86px);
  margin-bottom: 104px;
}

.capability-rail::before {
  content: "";
  position: absolute;
  top: 35px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--coral), rgba(0, 0, 0, 0.3) 48%, var(--cyan));
  transform-origin: left center;
}

.capability-item {
  position: relative;
  min-width: 0;
  padding-top: 76px;
}

.capability-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 29px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--frost);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28);
}

.capability-item:nth-child(2)::before {
  background: var(--black);
}

.capability-item:nth-child(3)::before {
  background: var(--cyan);
}

.capability-code {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(0, 0, 0, 0.38);
  font-family: var(--utility-font);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.capability-kicker {
  margin: 0 0 12px;
  color: #087d72;
  font-family: var(--utility-font);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.capability-item h3 {
  min-height: 2.1em;
  font-size: 25px;
  line-height: 1.08;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.capability-item > p:last-child {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(0, 0, 0, 0.56);
  font-size: 15px;
  line-height: 1.7;
}

.capability-item:hover h3 {
  transform: translateY(-3px);
}

.comparison-heading-label {
  margin: 0 0 18px;
  color: rgba(0, 0, 0, 0.44);
  font-family: var(--utility-font);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.comparison-frame {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.comparison-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--cyan));
  opacity: 0;
  pointer-events: none;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: left;
}

.comparison-feature-column {
  width: 24%;
}

.comparison-table th,
.comparison-table td {
  padding: 24px 20px;
  overflow-wrap: anywhere;
}

.comparison-table thead th {
  padding-top: 14px;
  padding-bottom: 14px;
  color: rgba(0, 0, 0, 0.44);
  font-family: var(--utility-font);
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.comparison-table tbody tr {
  border-top: 1px solid var(--hairline-light);
  transition: background-color 220ms ease;
}

.comparison-table tbody tr:hover {
  background: rgba(45, 212, 191, 0.075);
}

.comparison-table tbody th {
  font-family: var(--display-font);
  font-size: 18px;
}

.comparison-table tbody td {
  color: rgba(0, 0, 0, 0.52);
  font-size: 16px;
}

.comparison-table tbody td > span:last-child {
  display: inline-block;
  transition: color 220ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.comparison-table tbody tr:hover td > span:last-child {
  transform: translateX(4px);
}

.comparison-table .comparison-mm {
  color: var(--black);
  font-weight: 750;
}

.comparison-table .comparison-mm > span:last-child::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 11px 2px 0;
  border-radius: 50%;
  background: var(--coral);
}

.mobile-column-label {
  display: none;
}

.comparison-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  line-height: 1.65;
}

.privacy-section {
  background: var(--black);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 9%;
  padding: 120px 0;
}

.privacy-layout .section-lead {
  max-width: 610px;
}

.privacy-facts {
  align-self: end;
}

.privacy-facts > div {
  grid-template-columns: 138px minmax(0, 1fr);
  border-color: var(--hairline-dark);
}

.privacy-facts > div:last-child {
  border-color: var(--hairline-dark);
}

.privacy-facts dd {
  color: rgba(245, 245, 247, 0.58);
}

.legal-link {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 28px;
}

.download-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 650px;
  padding: 110px 24px;
  border-top: 1px solid var(--hairline-dark);
  background: var(--graphite);
  text-align: center;
}

.download-mark {
  width: 132px;
  height: 132px;
  margin-bottom: 38px;
}

.download-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}

.download-mark:hover img {
  box-shadow: 0 36px 96px rgba(0, 0, 0, 0.56);
  transform: translateY(-5px) rotate(2deg) scale(1.035);
}

html.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.motion-ready [data-reveal="row"] {
  transform: translate3d(0, 14px, 0);
}

html.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.motion-ready [data-reveal="develop"] {
  opacity: 1;
  transform: translate3d(0, var(--media-parallax, 0px), 0);
  transition: transform 140ms linear;
}

html.motion-ready [data-reveal="develop"] > img,
html.motion-ready [data-reveal="develop"] .camera-icon-wall,
html.motion-ready [data-reveal="develop"] .editor-crop {
  opacity: 0.12;
  clip-path: inset(100% 0 0 0 round 34px);
  transform: translate3d(0, 30px, 0) scale(0.985);
  transition: clip-path 1050ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms), opacity 520ms ease var(--reveal-delay, 0ms), transform 1050ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: clip-path, transform;
}

html.motion-ready [data-reveal="develop"].is-visible > img,
html.motion-ready [data-reveal="develop"].is-visible .camera-icon-wall,
html.motion-ready [data-reveal="develop"].is-visible .editor-crop {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 34px);
  transform: translate3d(0, 0, 0) scale(1);
}

html.motion-ready [data-reveal="develop"] figcaption {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 440ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 560ms);
}

html.motion-ready [data-reveal="develop"].is-visible figcaption {
  opacity: 1;
  transform: translateY(0);
}

html.motion-ready [data-reveal="line"] span[aria-hidden="true"] {
  transform: scaleX(0);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 260ms);
}

html.motion-ready [data-reveal="line"].is-visible span[aria-hidden="true"] {
  transform: scaleX(1);
}

html.motion-ready [data-reveal="rail"] {
  opacity: 1;
  transform: none;
}

html.motion-ready [data-reveal="rail"]::before {
  transform: scaleX(0);
  transition: transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.motion-ready [data-reveal="rail"] .capability-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.motion-ready [data-reveal="rail"].is-visible::before {
  transform: scaleX(1);
}

html.motion-ready [data-reveal="rail"].is-visible .capability-item {
  opacity: 1;
  transform: translateY(0);
}

html.motion-ready [data-reveal="rail"].is-visible .capability-item:nth-child(1) {
  transition-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}

html.motion-ready [data-reveal="rail"].is-visible .capability-item:nth-child(2) {
  transition-delay: calc(var(--reveal-delay, 0ms) + 260ms);
}

html.motion-ready [data-reveal="rail"].is-visible .capability-item:nth-child(3) {
  transition-delay: calc(var(--reveal-delay, 0ms) + 400ms);
}

html.motion-ready [data-reveal="comparison"].is-visible::after {
  animation: comparison-scan 1150ms calc(var(--reveal-delay, 0ms) + 120ms) cubic-bezier(0.22, 1, 0.36, 1) both;
}

html.motion-ready .download-mark.is-visible img {
  animation: app-mark-settle 880ms calc(var(--reveal-delay, 0ms) + 80ms) cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.download-section > p:not(.film-label) {
  max-width: 560px;
  margin: 24px 0 30px;
  color: rgba(245, 245, 247, 0.62);
  font-size: 18px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(100%, 720px);
}

.site-footer,
.legal-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 48px), var(--content-width));
  min-height: 110px;
  margin: 0 auto;
  color: rgba(245, 245, 247, 0.48);
  font-size: 13px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--frost);
  font-family: var(--display-font);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.social-links[hidden] {
  display: none;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
  justify-self: end;
  text-align: right;
}

.footer-meta p {
  margin: 0;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes hero-stage-in {
  from {
    opacity: 0;
    clip-path: inset(9% 0 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes exposure-scan {
  0%,
  12% {
    opacity: 0;
    transform: translateY(0);
  }
  25% {
    opacity: 0.9;
  }
  82% {
    opacity: 0.34;
  }
  100% {
    opacity: 0;
    transform: translateY(340%);
  }
}

@keyframes app-mark-settle {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(-7deg) scale(0.86);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes scroll-cue {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.72);
    transform-origin: top;
  }
  50% {
    opacity: 0.9;
    transform: scaleY(1);
  }
}

@keyframes comparison-scan {
  0% {
    top: 0;
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    top: calc(100% - 2px);
    opacity: 0;
  }
}

/* Legal documents */

.legal-page {
  background: var(--frost);
  color: #161618;
}

.legal-header {
  min-height: 72px;
  padding: max(10px, env(safe-area-inset-top)) 24px 10px;
  border-bottom: 1px solid var(--hairline-light);
  background: rgba(245, 245, 247, 0.88);
  color: var(--black);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
}

.legal-header .language-select {
  border-color: var(--hairline-light);
  background-color: rgba(0, 0, 0, 0.04);
  color: var(--black);
}

.legal-header .language-select option {
  background: var(--frost);
  color: var(--black);
}

.legal-shell {
  width: min(calc(100% - 48px), 1120px);
  margin: 0 auto;
  padding: 42px 0 110px;
}

.back-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: rgba(0, 0, 0, 0.56);
  font-size: 14px;
  font-weight: 650;
}

.back-link::before {
  content: "←";
  margin-right: 9px;
}

.legal-intro {
  max-width: 850px;
  padding: 84px 0 78px;
}

.legal-intro h1 {
  font-size: 64px;
  overflow-wrap: break-word;
  hyphens: auto;
}

.legal-summary {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 20px;
  line-height: 1.7;
}

.legal-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 30px;
  color: rgba(0, 0, 0, 0.46);
  font-family: var(--utility-font);
  font-size: 11px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 78px;
  padding-top: 56px;
  border-top: 1px solid var(--hairline-light);
}

.legal-toc {
  position: sticky;
  top: 28px;
}

.legal-toc > p {
  margin-bottom: 18px;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--utility-font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-toc ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: legal-toc;
}

.legal-toc li {
  counter-increment: legal-toc;
}

.legal-toc a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 7px;
  color: rgba(0, 0, 0, 0.54);
  font-size: 13px;
  line-height: 1.45;
}

.legal-toc a::before {
  content: counter(legal-toc, decimal-leading-zero);
  color: var(--coral);
  font-family: var(--utility-font);
  font-size: 10px;
  line-height: 1.9;
}

.legal-toc a:hover {
  color: var(--black);
}

.legal-content {
  min-width: 0;
}

.legal-section {
  padding: 0 0 54px;
  scroll-margin-top: 32px;
}

.legal-section + .legal-section {
  padding-top: 54px;
  border-top: 1px solid var(--hairline-light);
}

.legal-section h2 {
  margin-bottom: 24px;
  font-size: 28px;
}

.legal-section p,
.legal-section li {
  color: rgba(0, 0, 0, 0.68);
  font-size: 16px;
  line-height: 1.85;
}

.legal-section p {
  margin-bottom: 18px;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.legal-section a {
  color: #00766d;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-footer {
  min-height: 120px;
  border-top: 1px solid var(--hairline-light);
  color: rgba(0, 0, 0, 0.46);
}

.legal-footer-links {
  display: flex;
  grid-column: 1 / 3;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.legal-footer-links > span {
  color: var(--black);
  font-family: var(--display-font);
  font-weight: 700;
}

[dir="rtl"] .site-header::after,
[dir="rtl"] .capability-rail::before,
[dir="rtl"] .process-line span[aria-hidden="true"] {
  transform-origin: right center;
}

[dir="rtl"] .back-link::before {
  content: "→";
  margin-right: 0;
  margin-left: 9px;
}

[dir="rtl"] .comparison-table {
  text-align: right;
}

[dir="rtl"] .comparison-table .comparison-mm > span:last-child::before {
  margin-right: 0;
  margin-left: 11px;
}

[dir="rtl"] .legal-section ul {
  padding-right: 22px;
  padding-left: 0;
}

@media (max-width: 980px) {
  .hero-copy {
    width: 52%;
  }

  .hero-stage {
    right: 0;
    width: 50vw;
  }

  .hero-device {
    right: 5%;
    width: min(36vw, 360px);
  }

  .spectrum-mark {
    right: 2%;
    width: 88px;
    height: 88px;
  }

  .feature-layout,
  .feature-layout-reversed {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.72fr);
    gap: 6%;
  }

  .feature-copy h2,
  .advantages-heading h2,
  .privacy-layout h2,
  .download-section h2 {
    font-size: 44px;
  }

  .privacy-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: 6%;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .site-nav {
    gap: 10px;
  }

  .nav-links,
  .nav-download {
    display: none;
  }

  .brand {
    font-size: 16px;
  }

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

  .language-select {
    width: 126px;
    max-width: 40vw;
    min-height: 34px;
  }

  .hero {
    align-items: flex-start;
    min-height: 544px;
    height: calc(100svh - 20px);
    max-height: 760px;
    padding: 88px 20px 42px;
  }

  .hero-copy {
    width: 100%;
    max-width: 520px;
    text-align: center;
  }

  .hero .film-label {
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    max-width: 420px;
    margin: 14px auto 0;
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-actions {
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
  }

  .button {
    min-height: 44px;
    padding: 0 18px;
  }

  .compatibility {
    margin-top: 14px;
  }

  .hero-stage {
    top: 270px;
    right: auto;
    bottom: 0;
    left: 50%;
    width: min(78vw, 330px);
    transform: translateX(-50%);
  }

  .hero-device {
    --device-anchor: translateX(50%);
    right: 50%;
    bottom: -34%;
    width: min(60vw, 250px);
    border-radius: 28px;
  }

  .spectrum-mark {
    top: 5%;
    right: 4%;
    width: 66px;
    height: 66px;
  }

  .scroll-cue {
    display: none;
  }

  .section-inner {
    width: min(calc(100% - 40px), var(--content-width));
  }

  .feature-layout,
  .feature-layout-reversed {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 64px;
    padding: 82px 0;
  }

  .feature-layout-reversed .product-figure {
    order: 2;
  }

  .feature-layout-reversed .feature-copy {
    order: 1;
  }

  .feature-copy h2,
  .advantages-heading h2,
  .privacy-layout h2,
  .download-section h2 {
    font-size: 38px;
  }

  .section-lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .advantages-layout {
    padding: 88px 0 82px;
  }

  .advantages-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 46px;
  }

  .advantages-heading .section-lead {
    margin: 0;
  }

  .capability-rail {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 72px;
    padding-left: 32px;
  }

  .capability-rail::before {
    top: 7px;
    right: auto;
    bottom: 8px;
    left: 6px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--coral), rgba(0, 0, 0, 0.3) 48%, var(--cyan));
    transform-origin: center top;
  }

  html.motion-ready [data-reveal="rail"]::before {
    transform: scaleY(0);
  }

  html.motion-ready [data-reveal="rail"].is-visible::before {
    transform: scaleY(1);
  }

  .capability-item {
    padding: 0 0 46px;
  }

  .capability-item:last-child {
    padding-bottom: 0;
  }

  .capability-item::before {
    top: 1px;
    left: -32px;
  }

  .capability-code {
    position: static;
    display: block;
    margin-bottom: 13px;
  }

  .capability-item h3 {
    min-height: 0;
    font-size: 24px;
  }

  .capability-item > p:last-child {
    margin-top: 12px;
    font-size: 14px;
  }

  .comparison-heading-label {
    margin-bottom: 14px;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .comparison-table,
  .comparison-table tbody {
    display: block;
  }

  .comparison-table tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-table tbody th {
    grid-column: 1 / -1;
    padding: 20px 0 9px;
    font-size: 16px;
  }

  .comparison-table tbody td {
    min-width: 0;
    padding: 0 12px 20px 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .comparison-table tbody td + td {
    padding-right: 0;
    padding-left: 12px;
    border-left: 1px solid var(--hairline-light);
  }

  .comparison-table .comparison-mm > span:last-child::before {
    width: 6px;
    height: 6px;
    margin-right: 7px;
  }

  .mobile-column-label {
    display: block;
    margin-bottom: 7px;
    color: rgba(0, 0, 0, 0.36);
    font-family: var(--utility-font);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.35;
  }

  .comparison-note {
    margin-top: 14px;
    font-size: 11px;
  }

  .feature-list {
    margin-top: 38px;
  }

  .feature-list > div,
  .privacy-facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 16px 0;
  }

  .product-figure > img,
  .editor-crop {
    max-height: 620px;
    border-radius: 28px;
  }

  .picker-figure > img {
    max-height: 640px;
  }

  .camera-icon-wall {
    gap: 12px;
    padding: 26px 20px 34px;
    border-radius: 28px;
  }

  [dir="rtl"] .capability-rail {
    padding-right: 32px;
    padding-left: 0;
  }

  [dir="rtl"] .capability-rail::before {
    right: 6px;
    left: auto;
  }

  [dir="rtl"] .capability-item::before {
    right: -32px;
    left: auto;
  }

  [dir="rtl"] .comparison-table tbody td {
    padding-right: 0;
    padding-left: 12px;
  }

  [dir="rtl"] .comparison-table tbody td + td {
    padding-right: 12px;
    padding-left: 0;
    border-right: 1px solid var(--hairline-light);
    border-left: 0;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 88px 0;
  }

  .privacy-facts {
    margin-top: 28px;
  }

  .legal-link {
    grid-column: 1;
    margin-top: 18px;
  }

  .download-section {
    min-height: 560px;
    padding: 88px 20px;
  }

  .download-mark {
    width: 104px;
    height: 104px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
    padding: 38px 0;
    text-align: center;
  }

  .site-footer .footer-meta {
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .legal-header {
    min-height: 64px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .legal-shell {
    width: min(calc(100% - 40px), 1120px);
    padding-top: 26px;
  }

  .legal-intro {
    padding: 58px 0 52px;
  }

  .legal-intro h1 {
    font-size: 46px;
  }

  .legal-summary {
    font-size: 17px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 42px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .legal-section {
    padding-bottom: 42px;
  }

  .legal-section + .legal-section {
    padding-top: 42px;
  }

  .legal-section h2 {
    font-size: 25px;
  }

  .legal-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 0;
  }

  .legal-footer-links {
    grid-column: 1;
    justify-content: center;
  }

  .legal-footer .footer-meta {
    justify-self: center;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 520px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .hero-stage {
    top: 264px;
  }

  .hero-device {
    bottom: -39%;
    width: min(62vw, 235px);
  }

  .spectrum-mark {
    right: 1%;
  }

  .film-label {
    font-size: 10px;
  }

  .feature-copy h2,
  .advantages-heading h2,
  .privacy-layout h2,
  .download-section h2 {
    font-size: 34px;
  }

  .process-line {
    gap: 8px;
    font-size: 10px;
  }

  .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .legal-intro h1 {
    font-size: 36px;
  }

  .camera-icon-wall {
    gap: 8px;
    padding: 20px 14px 28px;
    border-radius: 24px;
  }

  .editor-crop {
    border-radius: 24px;
  }
}

@media (max-width: 340px) {
  .site-header .brand span,
  .legal-header .brand span {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

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

  .hero-actions {
    gap: 12px;
  }

  .button,
  .text-link {
    font-size: 13px;
  }

  .compatibility {
    display: none;
  }

  .hero-stage {
    top: 246px;
  }

  .feature-copy h2,
  .advantages-heading h2,
  .privacy-layout h2,
  .download-section h2 {
    font-size: 31px;
  }

  .legal-intro h1 {
    font-size: 32px;
  }

  html:lang(de) .legal-intro h1,
  html:lang(fi) .legal-intro h1,
  html:lang(nb) .legal-intro h1 {
    font-size: 27px;
  }

  .section-inner,
  .legal-shell {
    width: calc(100% - 32px);
  }
}

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

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

  .spectrum-mark {
    transform: none !important;
  }

  .hero-device {
    --hero-shift: 0px !important;
    --tilt-x: 0deg !important;
    --tilt-y: 0deg !important;
    transform: var(--device-anchor) !important;
  }

  .hero-device::after {
    display: none;
  }

  [data-reveal],
  [data-reveal] img,
  [data-reveal] figcaption {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }

  [data-reveal="develop"] {
    transform: translate3d(0, 0, 0) !important;
  }

  .process-line span[aria-hidden="true"] {
    transform: scaleX(1) !important;
  }

  .capability-rail::before {
    transform: scaleY(1) !important;
  }
}
