:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-soft: #101011;
  --panel: #0e0e10;
  --raised: #1b1b1d;
  --text: #f7f7f8;
  --muted: rgba(255, 255, 255, 0.62);
  --faint: rgba(255, 255, 255, 0.1);
  --cyan: #0594d1;
  --camera-red: #ff2e29;
  --camera-orange: #ff6b33;
  --media-gold: #ffc238;
  --edit-green: #2ed666;
  --edit-teal: #0fad94;
  --lut-blue: #2985ff;
  --workflow-amber: #ffc238;
  --max: 1180px;
  --nav-height: 52px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-height);
  background: rgba(7, 7, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(150%);
}

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

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

.brand-icon {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  box-shadow: 0 0 18px rgba(5, 148, 209, 0.2);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.nav-menu a {
  transition: color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 15px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.section-black,
.section-app {
  position: relative;
  overflow: hidden;
  background: #050506;
}

.section-app {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 42%),
    linear-gradient(135deg, #101011 0%, #050506 78%);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - var(--nav-height)));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 58px max(24px, calc((100vw - var(--max)) / 2)) 52px;
  isolation: isolate;
}

.hero-media,
.hero-vignette,
.tracking-media,
.final-image {
  position: absolute;
  inset: 0;
}

.hero-media img,
.tracking-media img,
.final-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  transform-origin: 50% 42%;
}

.hero-vignette {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.82) 0%, rgba(5, 5, 6, 0.48) 43%, rgba(5, 5, 6, 0.04) 100%),
    linear-gradient(0deg, rgba(5, 5, 6, 0.74) 0%, transparent 46%, rgba(5, 5, 6, 0.24) 100%);
}

.hero-media {
  z-index: -2;
}

.hero-content {
  width: min(560px, 100%);
  z-index: 2;
}

.eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.accent-camera {
  color: var(--camera-red);
}

.accent-media {
  color: var(--media-gold);
}

.accent-edit {
  color: var(--edit-green);
}

.accent-luts {
  color: var(--lut-blue);
}

.accent-workflow {
  color: var(--workflow-amber);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: 96px;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
}

p {
  line-height: 1.45;
}

.hero-line {
  margin: 18px 0 0;
  color: white;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
}

.hero-subtitle {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 22px;
  line-height: 1.26;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 21px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.button-primary {
  color: white;
  background:
    linear-gradient(#101012, #101012) padding-box,
    conic-gradient(from 215deg, #7a32ff, #1594ff, #10d2c8, #2ed666, #ffc238, #ff6b33, #eb2f8d, #7a32ff) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 20px rgba(20, 209, 242, 0.08);
}

.button-ghost {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.phone-frame {
  position: relative;
  aspect-ratio: 880 / 1788;
  padding: 7px;
  border-radius: 46px;
  background: linear-gradient(145deg, #343438, #050506 52%, #232327);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.58), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  object-fit: cover;
}

.grade-section,
.workflow-section {
  padding: 64px 20px;
}

.section-copy,
.grade-copy,
.workflow-heading,
.capture-copy {
  width: min(var(--max), 100%);
  margin: 0 auto;
  text-align: center;
}

.section-copy,
.grade-copy,
.workflow-heading,
.capture-copy {
  max-width: 760px;
}

.section-copy p:not(.eyebrow),
.grade-copy p:not(.eyebrow),
.capture-copy p:not(.eyebrow),
.workflow-heading p:not(.eyebrow),
.workflow-grid p,
.final-copy p:not(.eyebrow),
.policy-heading p {
  color: var(--muted);
  font-size: 20px;
}

.capture-section {
  padding: 54px 20px 62px;
}

.capture-stage {
  position: relative;
  width: min(980px, 100%);
  margin: 28px auto 0;
}

.capture-annotated {
  position: relative;
  padding: 54px 112px 68px;
}

.capture-frame {
  position: relative;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 1794 / 877;
  background: linear-gradient(145deg, #343438, #050506 52%, #232327);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.capture-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: inherit;
  pointer-events: none;
}

.capture-frame img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.capture-callout {
  position: absolute;
  display: flex;
  align-items: center;
  left: var(--x);
  top: var(--y);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  pointer-events: none;
}

.callout-pin {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--camera-red);
  box-shadow: 0 0 0 4px rgba(255, 46, 41, 0.18), 0 0 18px rgba(255, 46, 41, 0.45);
}

.callout-line {
  height: 1px;
  width: var(--line, 84px);
  background: linear-gradient(90deg, rgba(255, 46, 41, 0.9), rgba(255, 255, 255, 0.34));
}

.callout-label {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(5, 5, 6, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.callout-left {
  flex-direction: row-reverse;
}

.callout-left .callout-line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 46, 41, 0.9));
}

.callout-top,
.callout-bottom {
  transform: translateX(-50%);
}

.callout-top {
  flex-direction: column-reverse;
}

.callout-bottom {
  flex-direction: column;
}

.callout-top .callout-line,
.callout-bottom .callout-line {
  width: 1px;
  height: var(--line, 56px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 46, 41, 0.9));
}

.callout-bottom .callout-line {
  background: linear-gradient(180deg, rgba(255, 46, 41, 0.9), rgba(255, 255, 255, 0.34));
}

.workflow-grid article {
  min-height: 74px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.grade-section {
  background:
    linear-gradient(180deg, #050506 0%, #0c0c0e 42%, #050506 100%);
}

.grade-stage {
  width: min(900px, 100%);
  margin: 40px auto 0;
  padding: 8px;
  border-radius: 8px;
  background: linear-gradient(145deg, #303036, #070708 48%, #242428);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.52);
}

.grade-stage img {
  width: 100%;
  border-radius: 4px;
}

.mobile-grade {
  display: none;
}

.tracking-section {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 76px 20px;
  isolation: isolate;
}

.tracking-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.72), rgba(5, 5, 6, 0.12)),
    linear-gradient(0deg, rgba(5, 5, 6, 0.76), rgba(5, 5, 6, 0.1) 54%, rgba(5, 5, 6, 0.44));
}

.tracking-media {
  z-index: -2;
}

.tracking-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tracking-overlay i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 18px;
  height: 18px;
  border: 1px solid rgba(41, 133, 255, 0.95);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(41, 133, 255, 0.38);
  animation: trackingPulse 2.8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.tracking-overlay i::before,
.tracking-overlay i::after {
  content: "";
  position: absolute;
  background: rgba(41, 133, 255, 0.72);
}

.tracking-overlay i::before {
  left: 50%;
  top: -14px;
  width: 1px;
  height: 46px;
}

.tracking-overlay i::after {
  left: -14px;
  top: 50%;
  width: 46px;
  height: 1px;
}

.tracking-copy {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.tracking-copy h2 {
  max-width: 650px;
}

.tracking-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 22px;
}

.workflow-grid {
  width: min(var(--max), 100%);
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.workflow-grid article {
  position: relative;
  min-height: 0;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
}

.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -24px;
  width: 16px;
  height: 16px;
  border-top: 2px solid rgba(255, 194, 56, 0.58);
  border-right: 2px solid rgba(255, 194, 56, 0.58);
  transform: rotate(45deg);
}

.workflow-icon {
  position: relative;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 194, 56, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 24px 48px rgba(0, 0, 0, 0.25);
}

.workflow-icon::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 194, 56, 0.18), transparent 62%);
}

.workflow-icon > span {
  position: relative;
  display: block;
}

.camera-glyph {
  width: 52px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.camera-glyph::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -8px;
  width: 18px;
  height: 10px;
  border-radius: 5px 5px 0 0;
  background: rgba(255, 255, 255, 0.78);
}

.camera-glyph::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 9px;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: #101011;
  box-shadow: inset 0 0 0 4px var(--workflow-amber);
}

.library-glyph {
  width: 50px;
  height: 58px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow:
    -9px 7px 0 rgba(255, 255, 255, 0.18),
    9px -7px 0 rgba(255, 255, 255, 0.12);
}

.library-glyph::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 8px;
  border-radius: 999px;
  background: var(--workflow-amber);
}

.wheel-glyph {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background:
    radial-gradient(circle, #101011 0 22%, transparent 23%),
    conic-gradient(#ff2e29, #ffc238, #2ed666, #14d1f2, #2985ff, #eb2f8d, #ff2e29);
  box-shadow: inset 0 0 0 7px rgba(0, 0, 0, 0.28);
}

.export-glyph {
  width: 52px;
  height: 46px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.export-glyph::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -22px;
  width: 3px;
  height: 38px;
  background: var(--workflow-amber);
}

.export-glyph::after {
  content: "";
  position: absolute;
  left: 17px;
  top: -23px;
  width: 14px;
  height: 14px;
  border-left: 3px solid var(--workflow-amber);
  border-top: 3px solid var(--workflow-amber);
  transform: rotate(45deg);
}

.workflow-number {
  color: var(--workflow-amber);
  font-size: 13px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.workflow-grid h3 {
  margin-top: 12px;
}

.workflow-grid p {
  max-width: 220px;
  margin: 12px auto 0;
  font-size: 16px;
}

.final-section {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 74px 20px;
  isolation: isolate;
}

.final-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(5, 5, 6, 0.89), rgba(5, 5, 6, 0.37)),
    linear-gradient(90deg, rgba(5, 5, 6, 0.66), rgba(5, 5, 6, 0.27));
}

.final-image {
  z-index: -2;
}

.final-copy {
  width: min(680px, 100%);
  text-align: center;
}

.final-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 22%;
  box-shadow: 0 20px 52px rgba(5, 148, 209, 0.22);
}

.final-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 16px auto 0;
}

.site-footer {
  padding: 34px 20px 26px;
  background: #050506;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 32px;
}

.footer-brand {
  color: #f7f7f8;
  font-size: 17px;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 22%;
}

.site-footer p {
  max-width: 440px;
  margin: 12px 0 0;
  font-size: 14px;
}

.footer-email {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer nav h2 {
  margin: 0 0 4px;
  color: #f7f7f8;
  font-size: 14px;
}

.site-footer nav a {
  font-size: 14px;
}

.copyright {
  width: min(var(--max), 100%);
  margin: 22px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-hero {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 76px 20px;
  background:
    linear-gradient(135deg, rgba(5, 148, 209, 0.18), transparent 44%),
    linear-gradient(135deg, #101011, #050506);
}

.policy-content {
  padding: 76px 20px;
  background: #f4f4f6;
  color: #171719;
}

.policy-heading {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.policy-heading h1 {
  font-size: 64px;
}

.policy-doc {
  width: min(780px, 100%);
  margin: 0 auto;
  color: rgba(23, 23, 25, 0.76);
}

.policy-doc .updated {
  color: rgba(23, 23, 25, 0.56);
  font-size: 14px;
  font-weight: 700;
}

.policy-doc h2 {
  margin: 38px 0 0;
  color: #171719;
  font-size: 30px;
}

.policy-doc p {
  margin: 12px 0 0;
  font-size: 17px;
}

.policy-doc a {
  color: #0b6f9e;
  font-weight: 700;
}

@keyframes trackingPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: auto;
    padding-top: 72px;
  }

  .hero-vignette {
    background:
      linear-gradient(0deg, rgba(5, 5, 6, 0.84) 0%, rgba(5, 5, 6, 0.5) 58%, rgba(5, 5, 6, 0.22) 100%),
      linear-gradient(90deg, rgba(5, 5, 6, 0.7), rgba(5, 5, 6, 0.08));
  }

  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }

  .workflow-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
  }

  .nav-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-height);
    display: grid;
    gap: 0;
    padding: 8px 20px 18px;
    background: rgba(7, 7, 8, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px 0;
  }

  h1 {
    font-size: 62px;
  }

  h2,
  .policy-heading h1 {
    font-size: 42px;
  }

  .hero {
    padding: 58px 20px 50px;
    gap: 30px;
  }

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

  .hero-subtitle {
    font-size: 18px;
    max-width: 28ch;
  }

  .capture-section,
  .grade-section,
  .workflow-section,
  .tracking-section,
  .final-section {
    padding: 58px 20px;
  }

  .grade-stage {
    display: none;
  }

  .mobile-grade {
    display: block;
    width: min(360px, 100%);
    margin: 38px auto 0;
    padding: 7px;
    border-radius: 46px;
    background: linear-gradient(145deg, #303036, #070708 48%, #242428);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 30px 78px rgba(0, 0, 0, 0.58);
  }

  .mobile-grade img {
    border-radius: 38px;
  }

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

  .capture-annotated {
    padding: 0;
  }

  .capture-callout {
    display: none;
  }

  .workflow-grid article {
    min-height: 0;
  }

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

@media (max-width: 460px) {
  .nav-shell {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: 52px;
  }

  h2,
  .policy-heading h1 {
    font-size: 36px;
  }

  .button {
    width: 100%;
  }

}
