: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;
  min-height: 1.05em;
}

.type-cursor {
  display: inline-block;
  width: 3px;
  height: 0.86em;
  margin-left: 5px;
  transform: translateY(0.08em);
  border-radius: 999px;
  background: currentColor;
  animation: cursor-blink 900ms steps(2, start) infinite;
}

@keyframes cursor-blink {
  0%,
  44% {
    opacity: 1;
  }

  45%,
  100% {
    opacity: 0;
  }
}

.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);
}

.motion-ready .capture-stage .callout-pin,
.motion-ready .capture-stage .callout-line,
.motion-ready .capture-stage .callout-label {
  opacity: 0;
}

.motion-ready .capture-stage .callout-pin {
  transform: scale(0.64);
}

.motion-ready .capture-stage .callout-line {
  transform: scaleX(0);
  transform-origin: left center;
}

.motion-ready .capture-stage .callout-label {
  transform: translateX(-6px);
}

.motion-ready .capture-stage .callout-left .callout-line {
  transform-origin: right center;
}

.motion-ready .capture-stage .callout-left .callout-label,
.motion-ready .capture-stage .callout-bottom .callout-label,
.motion-ready .capture-stage .callout-top .callout-label {
  transform: translateY(6px);
}

.motion-ready .capture-stage .callout-top .callout-label {
  transform: translateY(-6px);
}

.motion-ready .capture-stage .callout-top .callout-line,
.motion-ready .capture-stage .callout-bottom .callout-line {
  transform: scaleY(0);
}

.motion-ready .capture-stage .callout-top .callout-line {
  transform-origin: bottom center;
}

.motion-ready .capture-stage .callout-bottom .callout-line {
  transform-origin: top center;
}

.motion-ready .capture-stage.is-visible .callout-pin {
  animation: calloutPinIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.motion-ready .capture-stage.is-visible .callout-line {
  animation: calloutLineIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.motion-ready .capture-stage.is-visible .callout-top .callout-line,
.motion-ready .capture-stage.is-visible .callout-bottom .callout-line {
  animation-name: calloutLineInVertical;
}

.motion-ready .capture-stage.is-visible .callout-label {
  animation: calloutLabelIn 580ms ease forwards;
}

.motion-ready .capture-stage.is-visible .capture-callout {
  --callout-delay: 0ms;
}

.motion-ready .capture-stage.is-visible .capture-callout:nth-of-type(2) {
  --callout-delay: 90ms;
}

.motion-ready .capture-stage.is-visible .capture-callout:nth-of-type(3) {
  --callout-delay: 180ms;
}

.motion-ready .capture-stage.is-visible .capture-callout:nth-of-type(4) {
  --callout-delay: 270ms;
}

.motion-ready .capture-stage.is-visible .capture-callout:nth-of-type(5) {
  --callout-delay: 360ms;
}

.motion-ready .capture-stage.is-visible .callout-pin {
  animation-delay: var(--callout-delay);
}

.motion-ready .capture-stage.is-visible .callout-line {
  animation-delay: calc(var(--callout-delay) + 130ms);
}

.motion-ready .capture-stage.is-visible .callout-label {
  animation-delay: calc(var(--callout-delay) + 410ms);
}

.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-showcase {
  width: min(1120px, 100%);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: stretch;
  gap: 14px;
}

.grade-stage,
.vectorscope-card {
  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%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.vectorscope-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 14px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(48, 48, 54, 0.76), rgba(7, 7, 8, 0.98) 50%, rgba(36, 36, 40, 0.8)),
    #050506;
}

.scope-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 0;
  border-radius: 10px;
  background: transparent;
}

.scope-tabs button {
  min-height: 42px;
  padding: 0 8px;
  border: 0;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.scope-tabs button:hover {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
}

.scope-tabs button.active {
  color: white;
  background: var(--edit-green);
  box-shadow: 0 14px 28px rgba(46, 214, 102, 0.18);
}

.scope-field {
  position: relative;
  min-height: 230px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 33.33% / 100% 33.33%,
    #020203;
}

.scope-field::before,
.scope-field::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.scope-field::before {
  content: "VECTORSCOPE";
  z-index: 3;
  left: 14px;
  top: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.vectorscope-card.is-waveform .scope-field::before {
  content: "WAVEFORM";
}

.vectorscope-card.is-histogram .scope-field::before {
  content: "HISTOGRAM";
}

.scope-field::after {
  inset: 0;
}

.vectorscope-card.is-waveform .scope-field {
  background:
    linear-gradient(90deg, transparent 0 33.1%, rgba(255, 255, 255, 0.11) 33.1% 33.45%, transparent 33.45% 66.55%, rgba(255, 255, 255, 0.11) 66.55% 66.9%, transparent 66.9%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 25% / 100% 25%,
    #020203;
}

.vectorscope-card.is-histogram .scope-field {
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 25% / 100% 25%,
    #020203;
}

.scope-circle {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(230px, 82%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.scope-trace {
  position: absolute;
  left: 50%;
  top: 51%;
  width: 22px;
  height: 142px;
  transform: translate(-50%, -50%) rotate(-30deg);
  border-radius: 999px;
  background:
    radial-gradient(circle at 48% 12%, rgba(255, 255, 255, 0.95) 0 12%, transparent 17%),
    radial-gradient(ellipse at 50% 43%, rgba(255, 255, 255, 0.96) 0 24%, rgba(255, 255, 255, 0.36) 35%, transparent 62%),
    radial-gradient(ellipse at 50% 78%, rgba(255, 255, 255, 0.82) 0 18%, rgba(255, 255, 255, 0.24) 31%, transparent 60%);
  filter: blur(0.4px);
  box-shadow:
    -10px 8px 10px rgba(255, 255, 255, 0.2),
    8px -12px 10px rgba(255, 255, 255, 0.15),
    16px 36px 12px rgba(255, 255, 255, 0.13);
}

.scope-trace::before,
.scope-trace::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  filter: blur(1px);
}

.scope-trace::before {
  left: -13px;
  top: 18px;
  width: 30px;
  height: 80px;
}

.scope-trace::after {
  right: -12px;
  bottom: 8px;
  width: 20px;
  height: 50px;
}

.waveform-trace,
.histogram-bars {
  display: none;
}

.vectorscope-card.is-waveform .scope-circle,
.vectorscope-card.is-waveform .scope-trace,
.vectorscope-card.is-histogram .scope-circle,
.vectorscope-card.is-histogram .scope-trace {
  display: none;
}

.vectorscope-card.is-waveform .waveform-trace {
  position: absolute;
  inset: 20% 2% 12%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.vectorscope-card.is-waveform .waveform-trace i {
  position: relative;
  display: block;
  overflow: hidden;
  font-style: normal;
}

.vectorscope-card.is-waveform .waveform-trace i::before {
  content: "";
  position: absolute;
  inset: 4% 4% 14%;
  opacity: 0.88;
  filter: blur(0.25px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 8% 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 8% 88%, transparent);
}

.vectorscope-card.is-waveform .waveform-trace i::after {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  font-weight: 900;
}

.vectorscope-card.is-waveform .wave-red::before {
  background:
    radial-gradient(ellipse at 52% 42%, rgba(255, 62, 66, 0.4) 0 22%, transparent 44%),
    radial-gradient(circle at 12% 34%, rgba(255, 62, 66, 0.78) 0 1px, transparent 1.7px),
    radial-gradient(circle at 28% 58%, rgba(255, 62, 66, 0.56) 0 1px, transparent 1.8px),
    radial-gradient(circle at 58% 48%, rgba(255, 62, 66, 0.68) 0 1px, transparent 1.7px),
    radial-gradient(circle at 82% 70%, rgba(255, 62, 66, 0.48) 0 1px, transparent 1.8px);
  background-size: auto, 15px 17px, 21px 19px, 18px 14px, 23px 21px;
}

.vectorscope-card.is-waveform .wave-green::before {
  background:
    radial-gradient(ellipse at 48% 36%, rgba(48, 210, 92, 0.42) 0 24%, transparent 46%),
    radial-gradient(circle at 16% 38%, rgba(48, 210, 92, 0.8) 0 1px, transparent 1.7px),
    radial-gradient(circle at 36% 62%, rgba(48, 210, 92, 0.56) 0 1px, transparent 1.8px),
    radial-gradient(circle at 64% 45%, rgba(48, 210, 92, 0.72) 0 1px, transparent 1.7px),
    radial-gradient(circle at 86% 30%, rgba(48, 210, 92, 0.5) 0 1px, transparent 1.8px);
  background-size: auto, 16px 15px, 22px 20px, 17px 21px, 24px 18px;
}

.vectorscope-card.is-waveform .wave-blue::before {
  background:
    radial-gradient(ellipse at 48% 27%, rgba(68, 132, 255, 0.36) 0 22%, transparent 44%),
    radial-gradient(ellipse at 52% 70%, rgba(68, 132, 255, 0.34) 0 20%, transparent 42%),
    radial-gradient(circle at 14% 28%, rgba(68, 132, 255, 0.72) 0 1px, transparent 1.7px),
    radial-gradient(circle at 44% 70%, rgba(68, 132, 255, 0.58) 0 1px, transparent 1.8px),
    radial-gradient(circle at 78% 48%, rgba(68, 132, 255, 0.68) 0 1px, transparent 1.7px);
  background-size: auto, auto, 16px 15px, 21px 19px, 18px 16px;
}

.vectorscope-card.is-waveform .wave-red::after {
  content: "R";
}

.vectorscope-card.is-waveform .wave-green::after {
  content: "G";
}

.vectorscope-card.is-waveform .wave-blue::after {
  content: "B";
}

.vectorscope-card.is-histogram .histogram-bars {
  position: absolute;
  inset: 20% 4% 11%;
  display: block;
  background: none;
}

.vectorscope-card.is-histogram .histogram-line {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0.82;
  filter: drop-shadow(0 0 3px currentColor);
}

.vectorscope-card.is-histogram .histogram-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
}

.vectorscope-card.is-histogram .histogram-red {
  color: rgb(255, 74, 74);
}

.vectorscope-card.is-histogram .histogram-red::before {
  clip-path: polygon(0 42%, 4% 58%, 8% 60%, 12% 36%, 16% 40%, 20% 18%, 24% 46%, 28% 22%, 32% 40%, 36% 44%, 40% 24%, 46% 55%, 52% 70%, 58% 78%, 64% 84%, 72% 96%, 100% 100%, 100% 98%, 72% 94%, 64% 81%, 58% 75%, 52% 67%, 46% 52%, 40% 21%, 36% 41%, 32% 37%, 28% 19%, 24% 43%, 20% 15%, 16% 37%, 12% 33%, 8% 57%, 4% 55%, 0 39%);
}

.vectorscope-card.is-histogram .histogram-green {
  color: rgb(48, 210, 92);
}

.vectorscope-card.is-histogram .histogram-green::before {
  clip-path: polygon(0 96%, 8% 82%, 14% 26%, 20% 4%, 28% 40%, 36% 96%, 44% 58%, 50% 6%, 56% 24%, 62% 42%, 68% 12%, 74% 36%, 82% 90%, 92% 100%, 100% 100%, 100% 98%, 92% 98%, 82% 87%, 74% 33%, 68% 9%, 62% 39%, 56% 21%, 50% 3%, 44% 55%, 36% 94%, 28% 37%, 20% 1%, 14% 23%, 8% 79%, 0 93%);
}

.vectorscope-card.is-histogram .histogram-blue {
  color: rgb(64, 142, 255);
}

.vectorscope-card.is-histogram .histogram-blue::before {
  clip-path: polygon(0 100%, 6% 22%, 12% 28%, 18% 88%, 26% 95%, 36% 82%, 42% 66%, 48% 76%, 56% 96%, 64% 100%, 70% 20%, 76% 70%, 84% 92%, 100% 100%, 100% 98%, 84% 89%, 76% 67%, 70% 17%, 64% 98%, 56% 94%, 48% 73%, 42% 63%, 36% 79%, 26% 93%, 18% 85%, 12% 25%, 6% 19%, 0 98%);
}

.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: 52px;
  right: -26px;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid rgba(255, 194, 56, 0.62);
  border-right: 1.5px solid rgba(255, 194, 56, 0.62);
  transform: rotate(45deg);
}

.workflow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 56px;
  right: -23px;
  width: 20px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 194, 56, 0.18), rgba(255, 194, 56, 0.5));
}

.motion-ready .workflow-grid .workflow-step:not(:last-child)::before,
.motion-ready .workflow-grid .workflow-step:not(:last-child)::after {
  opacity: 0.34;
}

.motion-ready .workflow-grid.is-visible .workflow-step:not(:last-child)::before {
  animation: workflowSweep 7s linear infinite;
}

.motion-ready .workflow-grid.is-visible .workflow-step:not(:last-child)::after {
  animation: workflowArrowGlow 7s linear infinite;
}

.motion-ready .workflow-grid.is-visible .workflow-step:nth-child(2)::before,
.motion-ready .workflow-grid.is-visible .workflow-step:nth-child(2)::after {
  animation-delay: 2s;
}

.motion-ready .workflow-grid.is-visible .workflow-step:nth-child(3)::before,
.motion-ready .workflow-grid.is-visible .workflow-step:nth-child(3)::after {
  animation-delay: 4s;
}

.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-image img {
  --final-parallax: 0px;
  height: calc(100% + 48px);
  margin-top: -24px;
  transform: translate3d(0, var(--final-parallax), 0) scale(1.04);
  will-change: transform;
}

.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);
  }
}

@keyframes calloutPinIn {
  0% {
    opacity: 0;
    transform: scale(0.64);
  }

  70% {
    opacity: 1;
    transform: scale(1.18);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes calloutLineIn {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes calloutLineInVertical {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes calloutLabelIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes workflowSweep {
  0% {
    opacity: 0.34;
    filter: drop-shadow(0 0 0 rgba(255, 194, 56, 0));
  }

  6% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255, 194, 56, 0.34));
  }

  15% {
    opacity: 0.58;
    filter: drop-shadow(0 0 0 rgba(255, 194, 56, 0));
  }

  16%,
  100% {
    opacity: 0.34;
    filter: drop-shadow(0 0 0 rgba(255, 194, 56, 0));
  }
}

@keyframes workflowArrowGlow {
  0% {
    opacity: 0.34;
    filter: drop-shadow(0 0 0 rgba(255, 194, 56, 0));
  }

  6% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255, 194, 56, 0.34));
  }

  15% {
    opacity: 0.58;
    filter: drop-shadow(0 0 0 rgba(255, 194, 56, 0));
  }

  16%,
  100% {
    opacity: 0.34;
    filter: drop-shadow(0 0 0 rgba(255, 194, 56, 0));
  }
}

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

  .type-cursor {
    display: none;
  }

  .final-image img {
    height: 100%;
    margin-top: 0;
    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;
  }

  .grade-showcase {
    grid-template-columns: 1fr;
  }

  .vectorscope-card {
    width: min(420px, 100%);
    min-height: 280px;
    justify-self: center;
  }

  .workflow-step:not(:last-child)::before,
  .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-showcase {
    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%;
  }

}
