@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-var.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("./assets/fonts/newsreader-var.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("./assets/fonts/newsreader-italic-var.woff2") format("woff2-variations");
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("./assets/fonts/ibm-plex-mono-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("./assets/fonts/ibm-plex-mono-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --bone: #f3f0e8;
  --bone-soft: #f8f6f1;
  --bone-deep: #e8e3d9;
  --ink: #101613;
  --ink-soft: #27302c;
  --muted: #69706b;
  --muted-light: #9ba19d;
  --line: rgba(16, 22, 19, 0.14);
  --line-light: rgba(255, 255, 255, 0.12);
  --cobalt: #315cf5;
  --cobalt-dark: #2348cf;
  --cobalt-soft: #e7ebff;
  --signal: #c8f34a;
  --vermilion: #ed5c47;
  --dark: #0e1311;
  --dark-2: #151b18;
  --dark-3: #1c2420;
  --paper-white: #fffefa;
  --display: "Newsreader", Georgia, serif;
  --sans: "Manrope", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

button,
input,
a {
  font: inherit;
}

button {
  margin: 0;
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

svg {
  display: block;
}

:where(a, button, input, summary):focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: -60px;
  padding: 12px 16px;
  color: #fff;
  background: var(--cobalt);
  border-radius: 8px;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 18px;
}

.shell {
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: 156px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 240, 232, 0.86);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 246, 241, 0.94);
  box-shadow: 0 10px 30px rgba(35, 38, 34, 0.06);
}

.nav {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.brand-symbol {
  width: 26px;
  height: 26px;
  overflow: visible;
}

.brand-symbol rect,
.brand-symbol path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.brand-symbol circle {
  fill: var(--cobalt);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  color: #444c47;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--ink);
  transition: right 220ms var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  right: 0;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8a908c;
  font: 500 10px/1 var(--mono);
}

.language-button {
  color: #888f8a;
  font: 500 10px/1 var(--mono);
}

.language-button.is-active {
  color: var(--ink);
}

.nav-cta {
  height: 40px;
  padding: 0 15px 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 650;
  transition: transform 200ms var(--ease), background 200ms ease;
}

.nav-cta svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.nav-cta:hover {
  background: var(--cobalt);
  transform: translateY(-2px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  padding: 110px 0 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  min-height: 28px;
  padding: 4px 5px 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #59615c;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(16, 22, 19, 0.12);
  border-radius: 999px;
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.08em;
}

.eyebrow-signal {
  width: 6px;
  height: 6px;
  background: var(--cobalt);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(49, 92, 245, 0.1);
}

.eyebrow-beta {
  padding: 5px 8px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero h1 {
  max-width: 1100px;
  margin-top: 36px;
  font-family: var(--display);
  font-size: clamp(72px, 7vw, 104px);
  font-weight: 420;
  line-height: 0.93;
  letter-spacing: -0.057em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--ink-soft);
  font-weight: 350;
}

.hero-lede {
  max-width: 700px;
  margin-top: 34px;
  color: #545d57;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.025em;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.015em;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--cobalt);
  box-shadow: 0 10px 25px rgba(49, 92, 245, 0.22);
}

.button-primary:hover {
  background: var(--cobalt-dark);
  box-shadow: 0 14px 32px rgba(49, 92, 245, 0.28);
}

.button-primary svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  background: #fff;
}

.browser-glyph {
  position: relative;
  width: 17px;
  height: 17px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

.browser-glyph::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 4px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.browser-glyph i {
  position: absolute;
  width: 2px;
  height: 2px;
  left: 3px;
  top: 1px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 3px 0 0 currentColor;
}

.play-glyph {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 7px;
  text-indent: 1px;
}

.hero-proof {
  margin-top: 24px;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #767e79;
  font: 500 10px/1 var(--mono);
  list-style: none;
}

.hero-proof > li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i {
  color: var(--cobalt);
  font-style: normal;
}

.demo-wrap {
  margin-top: 88px;
}

.product-demo {
  position: relative;
  overflow: clip;
  color: #edf1ee;
  background: var(--dark);
  border: 1px solid rgba(16, 22, 19, 0.35);
  border-radius: 18px;
  box-shadow: 0 40px 100px rgba(28, 31, 28, 0.18), 0 6px 20px rgba(28, 31, 28, 0.12);
}

.product-demo::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 540px;
  height: 540px;
  left: 9%;
  top: -350px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(49, 92, 245, 0.17), transparent 68%);
}

.demo-topbar {
  position: relative;
  z-index: 5;
  height: 66px;
  padding: 0 19px 0 21px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: #121816;
  border-bottom: 1px solid var(--line-light);
}

.demo-identity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-crate {
  position: relative;
  width: 23px;
  height: 21px;
  display: inline-block;
}

.mini-crate i {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.4px solid #e9efeb;
  border-radius: 3px;
}

.mini-crate i:nth-child(1) {
  left: 1px;
  bottom: 1px;
}

.mini-crate i:nth-child(2) {
  right: 1px;
  top: 1px;
}

.mini-crate i:nth-child(3) {
  width: 3px;
  height: 3px;
  right: 3px;
  top: 3px;
  background: var(--cobalt);
  border: 0;
  border-radius: 50%;
}

.demo-identity > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.demo-identity strong {
  font-size: 12px;
  letter-spacing: -0.02em;
}

.demo-identity span {
  color: #7f8983;
  font-size: 10px;
}

.demo-live {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8b9690;
  font: 500 8px/1 var(--mono);
  letter-spacing: 0.1em;
}

.demo-live i {
  width: 5px;
  height: 5px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 243, 74, 0.1);
  animation: live-pulse 2.2s ease-in-out infinite;
}

.demo-toolbar {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 7px;
}

.demo-toolbar kbd {
  height: 30px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #89948e;
  background: #1a211e;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.07);
  font: 400 8px/1 var(--mono);
}

.demo-toolbar kbd b {
  color: #d9dfdb;
  font-weight: 400;
}

.demo-toolbar button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #8d9892;
  background: #1a211e;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  transition: color 160ms ease, background 160ms ease;
}

.demo-toolbar button:hover {
  color: #fff;
  background: #222b27;
}

.demo-toolbar button span {
  font-size: 11px;
}

.demo-toolbar svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
}

.demo-stage {
  position: relative;
  z-index: 1;
  height: 642px;
  overflow: clip;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #0e1412;
  background-size: 32px 32px;
}

.scene-rail {
  width: 200%;
  height: 100%;
  display: flex;
  transition: transform 780ms var(--ease);
}

.demo-stage[data-state="7"] .scene-rail,
.demo-stage[data-state="8"] .scene-rail {
  transform: translateX(-50%);
}

.capture-scene,
.delivery-scene {
  position: relative;
  width: 50%;
  height: 100%;
  flex: 0 0 50%;
}

.browser-window {
  position: absolute;
  left: 20px;
  right: 330px;
  top: 20px;
  bottom: 20px;
  overflow: hidden;
  color: #19201d;
  background: #f4f5f3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.browser-bar {
  height: 49px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #65706a;
  background: #e9ece9;
  border-bottom: 1px solid #d8ddd9;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  background: #c5cac6;
  border-radius: 50%;
}

.browser-dots i:first-child {
  background: #f07b6c;
}

.browser-dots i:nth-child(2) {
  background: #e4bd55;
}

.browser-dots i:nth-child(3) {
  background: #74b77c;
}

.browser-tab {
  align-self: flex-end;
  width: 176px;
  height: 35px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #515b56;
  background: #f5f6f4;
  border-radius: 7px 7px 0 0;
  font-size: 8px;
}

.tab-favicon {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #222b27;
  border-radius: 4px;
  font-size: 7px;
  font-weight: 700;
}

.browser-tab > span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-tab b {
  margin-left: auto;
  font-weight: 400;
}

.browser-bar > button {
  color: #7a847e;
  font-size: 15px;
}

.browser-address {
  height: 28px;
  min-width: 190px;
  flex: 1;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid #dfe3df;
  border-radius: 6px;
  font-size: 8px;
}

.browser-address b {
  color: #38413c;
  font-weight: 600;
}

.browser-actions {
  display: flex;
  gap: 5px;
}

.browser-actions i {
  width: 4px;
  height: 4px;
  background: #9ba39e;
  border-radius: 50%;
}

.store-app {
  height: calc(100% - 49px);
  display: grid;
  grid-template-columns: 118px 1fr;
}

.store-sidebar {
  padding: 21px 14px 15px;
  display: flex;
  flex-direction: column;
  background: #181f1c;
}

.store-logo {
  color: #f1f4f1;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.08em;
}

.store-nav {
  margin-top: 28px;
  display: grid;
  gap: 5px;
}

.store-nav span {
  height: 30px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #78847d;
  border-radius: 5px;
  font-size: 7px;
}

.store-nav span.is-active {
  color: #edf0ee;
  background: #252e2a;
}

.store-nav i {
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.store-nav b {
  font-weight: 550;
}

.store-user {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8b958f;
  font-size: 7px;
}

.store-user i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #151b18;
  background: #d9dfda;
  border-radius: 50%;
  font-style: normal;
  font-weight: 700;
  font-size: 6px;
}

.checkout-canvas {
  padding: 27px 30px;
  overflow: hidden;
  background: #f8f8f6;
}

.checkout-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.checkout-header > div:first-child span {
  color: #8b938e;
  font: 500 6px/1 var(--mono);
  letter-spacing: 0.1em;
}

.checkout-header h3 {
  margin-top: 7px;
  font-size: 20px;
  font-weight: 630;
  letter-spacing: -0.045em;
}

.checkout-progress {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #9ca39f;
  font-size: 6px;
}

.checkout-progress span.is-done {
  color: #313a35;
  font-weight: 650;
}

.checkout-progress i {
  width: 12px;
  height: 1px;
  background: #d4d8d5;
}

.checkout-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 14px;
}

.checkout-form {
  display: grid;
  gap: 8px;
}

.page-region {
  position: relative;
  text-align: left;
}

.checkout-form .page-region {
  padding: 13px;
  background: #fff;
  border: 1px solid #e1e4e1;
  border-radius: 7px;
}

.page-region:hover {
  border-color: #bdc7c0;
}

.region-label {
  display: block;
  margin-bottom: 9px;
  color: #8e9791;
  font: 500 6px/1 var(--mono);
  letter-spacing: 0.09em;
}

.contact-row,
.option-row,
.payment-card {
  display: flex;
  align-items: center;
}

.contact-row > i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25302a;
  border-radius: 50%;
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
}

.contact-row > span,
.option-row > span {
  margin-left: 9px;
  display: grid;
  gap: 2px;
}

.contact-row strong,
.option-row strong {
  font-size: 7px;
  font-weight: 650;
}

.contact-row small,
.option-row small {
  color: #929a95;
  font-size: 6px;
}

.contact-row > b,
.option-row > b {
  margin-left: auto;
  color: var(--cobalt);
  font-size: 6px;
  font-weight: 650;
}

.region-shipping {
  display: grid;
  gap: 8px;
}

.option-row {
  padding: 8px;
  background: #f9faf8;
  border: 1px solid #e6e9e6;
  border-radius: 5px;
}

.option-row.muted {
  opacity: 0.65;
}

.radio {
  width: 11px;
  height: 11px;
  border: 1px solid #aeb6b1;
  border-radius: 50%;
}

.radio.is-checked {
  border: 3px solid var(--cobalt);
}

.payment-card {
  min-height: 35px;
  gap: 9px;
  color: #3c4540;
  font-size: 7px;
}

.payment-card > span {
  padding: 3px 5px;
  color: #fff;
  background: #294b9f;
  border-radius: 3px;
  font-size: 5px;
  font-weight: 750;
}

.payment-card strong {
  font-weight: 650;
}

.payment-card small {
  color: #949c97;
}

.payment-card > b {
  margin-left: auto;
  padding: 4px 6px;
  color: #34724b;
  background: #e7f5eb;
  border-radius: 999px;
  font-size: 5px;
  font-weight: 650;
}

.region-error {
  min-height: 52px;
  padding: 10px 12px !important;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff7f5 !important;
  border-color: #f1b1a7 !important;
}

.error-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--vermilion);
  background: #fde7e2;
  border-radius: 50%;
  font-style: normal;
  font-size: 9px;
  font-weight: 750;
}

.region-error > .error-copy {
  display: grid;
  gap: 3px;
}

.region-error strong {
  color: #7a2920;
  font-size: 7px;
}

.region-error small {
  color: #ad6f68;
  font-size: 5px;
}

.region-error > b {
  margin-left: auto;
  color: #a14538;
  font-size: 5px;
}

.region-cart {
  align-self: start;
  padding: 14px;
  background: #fff;
  border: 1px solid #e1e4e1;
  border-radius: 7px;
}

.product-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 9px;
  padding-bottom: 13px;
  border-bottom: 1px solid #edf0ed;
}

.product-thumb {
  position: relative;
  height: 46px;
  overflow: hidden;
  background: #d9d8d2;
  border-radius: 5px;
}

.product-thumb i {
  position: absolute;
  width: 24px;
  height: 32px;
  left: 9px;
  top: 7px;
  background: #242d29;
  border-radius: 8px 8px 5px 5px;
}

.product-thumb i::before,
.product-thumb i::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 6px;
  height: 18px;
  background: #303b35;
  border-radius: 3px;
}

.product-thumb i::before {
  left: -3px;
}

.product-thumb i::after {
  right: -3px;
}

.product-row > .product-copy {
  display: grid;
  gap: 3px;
}

.product-row strong {
  font-size: 7px;
}

.product-row small {
  color: #929a95;
  font-size: 5px;
}

.product-row > b {
  font-size: 7px;
}

.summary-line,
.summary-total {
  margin-top: 9px;
  display: flex;
  justify-content: space-between;
  color: #838b86;
  font-size: 6px;
}

.summary-line b {
  color: #3b443f;
  font-weight: 600;
}

.summary-total {
  padding-top: 9px;
  color: #303833;
  border-top: 1px solid #edf0ed;
  font-size: 8px;
  font-weight: 650;
}

.order-button {
  height: 31px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #222b27;
  border-radius: 5px;
  font-size: 7px;
  font-weight: 650;
}

.selection-shade {
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: rgba(7, 12, 10, 0.2);
  transition: opacity 220ms ease;
}

.selection-frame {
  position: absolute;
  z-index: 10;
  left: 61%;
  top: 138px;
  width: 22%;
  height: 380px;
  pointer-events: none;
  opacity: 0;
  border: 2px solid #6d8aff;
  border-radius: 3px;
  box-shadow: 0 0 0 9999px rgba(7, 12, 10, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.7);
  transition: left 520ms var(--ease), top 520ms var(--ease), width 520ms var(--ease), height 520ms var(--ease), opacity 180ms ease;
}

.selection-frame i {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border: 2px solid #5f7fff;
  border-radius: 50%;
}

.selection-frame i:nth-child(1) { left: -5px; top: -5px; }
.selection-frame i:nth-child(2) { right: -5px; top: -5px; }
.selection-frame i:nth-child(3) { left: -5px; bottom: -5px; }
.selection-frame i:nth-child(4) { right: -5px; bottom: -5px; }

.selection-frame > span {
  position: absolute;
  right: -2px;
  top: -23px;
  padding: 5px 7px;
  color: #fff;
  background: var(--cobalt);
  border-radius: 4px 4px 0 0;
  font: 400 7px/1 var(--mono);
}

.capture-pointer {
  position: absolute;
  z-index: 12;
  left: 82%;
  top: 500px;
  width: 24px;
  height: 28px;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
  transition: left 520ms var(--ease), top 520ms var(--ease), opacity 180ms ease;
}

.capture-pointer svg {
  width: 24px;
  fill: #fff;
  stroke: #111;
  stroke-width: 1.5;
}

.demo-stage.is-selecting .selection-shade,
.demo-stage.is-selecting .selection-frame,
.demo-stage.is-selecting .capture-pointer {
  opacity: 1;
}

.capture-flash {
  position: absolute;
  z-index: 18;
  left: 50%;
  top: 49%;
  padding: 10px 13px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  color: #162019;
  background: #f8faf7;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -44%) scale(0.94);
  transition: opacity 180ms ease, transform 300ms var(--ease);
}

.capture-flash.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.capture-flash > i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #15331f;
  background: var(--signal);
  border-radius: 50%;
  font-style: normal;
  font-size: 10px;
  font-weight: 750;
}

.capture-flash > div {
  display: grid;
  gap: 3px;
}

.capture-flash strong {
  font-size: 8px;
}

.capture-flash span {
  color: #7d857f;
  font: 400 6px/1 var(--mono);
}

.capture-tray {
  position: absolute;
  z-index: 6;
  width: 290px;
  right: 20px;
  top: 20px;
  bottom: 20px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  color: #1f2823;
  background: #f7f7f4;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.tray-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.tray-head > div {
  display: grid;
  gap: 7px;
}

.tray-head span {
  color: #8a928d;
  font: 500 6px/1 var(--mono);
  letter-spacing: 0.08em;
}

.tray-head strong {
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.tray-head strong b {
  color: var(--cobalt);
  font-weight: 650;
}

.tray-head > button {
  color: #8a928d;
  font-size: 7px;
}

.tray-head > button:hover {
  color: var(--vermilion);
}

.tray-empty {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 180ms ease, transform 220ms var(--ease);
}

.tray-empty.is-hidden {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
}

.empty-target {
  position: relative;
  width: 46px;
  height: 40px;
  margin-bottom: 13px;
}

.empty-target::before,
.empty-target::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 26px;
  background: #fff;
  border: 1px solid #daddda;
  border-radius: 5px;
}

.empty-target::before {
  left: 2px;
  bottom: 2px;
}

.empty-target::after {
  right: 2px;
  top: 2px;
}

.empty-target i {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  right: 5px;
  top: 5px;
  background: var(--cobalt);
  border: 2px solid #fff;
  border-radius: 50%;
}

.tray-empty strong {
  font-size: 10px;
  letter-spacing: -0.02em;
}

.tray-empty small {
  max-width: 170px;
  margin-top: 6px;
  color: #8b938e;
  font-size: 7px;
  line-height: 1.5;
}

.tray-list {
  margin-top: 16px;
  display: grid;
  gap: 6px;
}

.capture-item {
  min-height: 68px;
  padding: 7px;
  display: grid;
  grid-template-columns: 10px 20px 51px 1fr 15px;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  opacity: 0;
  background: #fff;
  border: 1px solid #e1e4e1;
  border-radius: 7px;
  box-shadow: 0 6px 15px rgba(31, 40, 35, 0.05);
  transform: translateY(12px) scale(0.98);
  transition: opacity 280ms ease, transform 380ms var(--ease), border 180ms ease, order 300ms ease;
}

.capture-item.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.capture-item.is-new {
  border-color: #98aaff;
  animation: item-arrive 600ms var(--ease);
}

.capture-item.is-dragging {
  opacity: 0.58;
}

.drag-dots {
  color: #b8beb9;
  font-size: 9px;
  cursor: grab;
}

.capture-number {
  color: #59625d;
  font: 500 7px/1 var(--mono);
}

.capture-preview,
.attachment-image {
  position: relative;
  height: 46px;
  overflow: hidden;
  display: block;
  background: #e7e9e6;
  border: 1px solid #dde1dd;
  border-radius: 4px;
}

.capture-preview::before,
.attachment-image::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: #fff;
  border-radius: 2px;
}

.capture-preview i,
.attachment-image i {
  position: absolute;
  z-index: 1;
  display: block;
  background: #d8ddd9;
  border-radius: 1px;
}

.capture-preview i:nth-child(1),
.attachment-image i:nth-child(1) { left: 7px; right: 7px; top: 8px; height: 4px; background: #707c75; }
.capture-preview i:nth-child(2),
.attachment-image i:nth-child(2) { left: 7px; right: 19px; top: 16px; height: 14px; }
.capture-preview i:nth-child(3),
.attachment-image i:nth-child(3) { left: 7px; right: 7px; bottom: 7px; height: 5px; background: #b9c1bc; }
.preview-shipping i:nth-child(2) { right: 7px; height: 6px; box-shadow: 0 9px 0 #e1e4e1; }
.preview-payment i:nth-child(2) { right: 7px; height: 16px; background: #d9dfef; }
.preview-error i:nth-child(2) { right: 7px; height: 16px; background: #f6c8c1; }
.preview-error i:nth-child(3) { background: #e17a68; }

.capture-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.capture-copy strong {
  overflow: hidden;
  color: #28312c;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.capture-copy small {
  color: #969e99;
  font: 400 5px/1 var(--mono);
}

.capture-check {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  color: #31523a;
  background: #e1f3e5;
  border-radius: 50%;
  font-size: 7px;
  font-weight: 750;
}

.tray-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e1e4e1;
}

.tray-foot > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #89918c;
  font-size: 6px;
}

.tray-foot i {
  width: 5px;
  height: 5px;
  background: #78a985;
  border-radius: 50%;
}

.arrange-hint {
  position: absolute;
  z-index: 18;
  left: 50%;
  top: 50%;
  padding: 13px 16px 13px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  pointer-events: none;
  opacity: 0;
  color: #172019;
  background: #f8faf7;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 9px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
  transform: translate(-50%, -42%);
  transition: opacity 220ms ease, transform 340ms var(--ease);
}

.demo-stage[data-state="5"] .arrange-hint {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.arrange-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: #173000;
  background: var(--signal);
  border-radius: 7px;
  font-size: 13px;
}

.arrange-hint > div {
  display: grid;
  gap: 4px;
}

.arrange-hint strong {
  font-size: 8px;
}

.arrange-hint small {
  color: #818984;
  font-size: 6px;
}

.destination-picker {
  position: absolute;
  z-index: 30;
  width: 470px;
  left: 50%;
  bottom: 32px;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  color: #202823;
  background: rgba(252, 252, 249, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 11px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, 16px) scale(0.97);
  transition: opacity 260ms ease, transform 420ms var(--ease);
}

.demo-stage[data-state="6"] .destination-picker {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.destination-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.destination-head > span {
  color: #848d87;
  font: 500 7px/1 var(--mono);
  letter-spacing: 0.08em;
}

.destination-head button {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #69716c;
  font-size: 7px;
}

.destination-head button:hover {
  color: var(--cobalt);
}

.destination-list {
  margin-top: 13px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.destination-list button {
  min-height: 67px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  position: relative;
  color: #515a55;
  background: #f1f2ef;
  border: 1px solid #e1e4e1;
  border-radius: 7px;
  transition: color 170ms ease, border 170ms ease, background 170ms ease, transform 170ms ease;
}

.destination-list button:hover {
  color: #202823;
  background: #fff;
  transform: translateY(-2px);
}

.destination-list button.is-selected {
  color: #183074;
  background: #edf0ff;
  border-color: #9bacf8;
}

.destination-list button > b {
  font-size: 6px;
  font-weight: 650;
}

.destination-list button > i {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 12px;
  height: 12px;
  display: none;
  place-items: center;
  color: #fff;
  background: var(--cobalt);
  border-radius: 50%;
  font-style: normal;
  font-size: 5px;
}

.destination-list button.is-selected > i {
  display: grid;
}

.destination-mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #252d29;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
}

.mark-chatgpt { color: #0b8d71 !important; }
.destination-mark.mark-chatgpt { color: #fff !important; background: #0b8d71; }
.mark-claude { color: #d16c4d !important; }
.destination-mark.mark-claude { color: #fff !important; background: #d16c4d; }
.mark-gemini { color: #4e75e8 !important; }
.destination-mark.mark-gemini { color: #fff !important; background: #4e75e8; }
.mark-grok { color: #202522 !important; }
.destination-mark.mark-grok { color: #fff !important; background: #202522; }
.mark-perplexity { color: #168983 !important; }
.destination-mark.mark-perplexity { color: #fff !important; background: #168983; }

.attach-originals {
  width: 100%;
  height: 42px;
  margin-top: 10px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--cobalt);
  border-radius: 7px;
  font-size: 8px;
  font-weight: 650;
}

.attach-originals:hover {
  background: var(--cobalt-dark);
}

.attach-originals svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.delivery-scene {
  padding: 20px;
}

.chat-window {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 202px 1fr;
  color: #202723;
  background: #f7f7f4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.chat-sidebar {
  padding: 17px 13px;
  display: flex;
  flex-direction: column;
  color: #d8ded9;
  background: #171d1a;
}

.chat-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.chat-brand > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0b8d71;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 750;
}

.chat-brand strong {
  font-size: 9px;
}

.chat-sidebar > button {
  height: 34px;
  margin-top: 20px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d6dcd7;
  background: #222a26;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 7px;
}

.chat-sidebar > button b {
  font-weight: 550;
}

.chat-history {
  margin-top: 24px;
  display: grid;
  gap: 3px;
}

.chat-history > span {
  margin: 0 7px 5px;
  color: #6f7a73;
  font: 400 5px/1 var(--mono);
  letter-spacing: 0.08em;
}

.chat-history p {
  padding: 8px;
  color: #7e8982;
  border-radius: 5px;
  font-size: 6px;
}

.chat-history p.is-current {
  color: #e5eae6;
  background: #252e29;
}

.chat-profile {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8b968f;
  font-size: 6px;
}

.chat-profile i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #17201b;
  background: #dfe4e0;
  border-radius: 50%;
  font-style: normal;
  font-size: 6px;
  font-weight: 700;
}

.chat-main {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #f7f7f4;
}

.chat-top {
  height: 52px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e1e4e1;
}

.chat-top > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.chat-top strong {
  font-size: 9px;
}

.chat-top span {
  color: #9aa19c;
  font-size: 6px;
}

.chat-top > div:last-child {
  display: flex;
  gap: 5px;
}

.chat-top button {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #737c76;
  background: #eeefec;
  border-radius: 6px;
  font-size: 7px;
}

.chat-empty {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms ease 500ms, transform 500ms var(--ease) 500ms;
}

.demo-stage[data-state="7"] .chat-empty,
.demo-stage[data-state="8"] .chat-empty {
  opacity: 1;
  transform: translateY(0);
}

.chat-orbit {
  position: relative;
  width: 42px;
  height: 42px;
  margin-bottom: 13px;
  display: block;
}

.chat-orbit i {
  position: absolute;
  width: 28px;
  height: 28px;
  left: 7px;
  top: 7px;
  border: 1px solid #c8ceca;
  border-radius: 50%;
}

.chat-orbit i:nth-child(2) {
  transform: rotate(60deg) scaleX(0.6);
}

.chat-orbit i:nth-child(3) {
  transform: rotate(-60deg) scaleX(0.6);
}

.chat-empty strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 450;
  letter-spacing: -0.035em;
}

.chat-empty small {
  margin-top: 6px;
  color: #8e9691;
  font-size: 7px;
}

.composer {
  width: calc(100% - 80px);
  max-width: 790px;
  margin: 0 auto 26px;
  padding: 12px;
  background: #fff;
  border: 1px solid #dcdeda;
  border-radius: 11px;
  box-shadow: 0 12px 28px rgba(32, 39, 35, 0.08);
}

.attachment-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.attachment-card {
  position: relative;
  min-width: 0;
  padding: 6px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 7px;
  opacity: 0;
  background: #f4f5f2;
  border: 1px solid #e0e3df;
  border-radius: 7px;
  transform: translateY(12px) scale(0.96);
}

.demo-stage[data-state="7"] .attachment-card,
.demo-stage[data-state="8"] .attachment-card {
  animation: file-land 440ms var(--ease) forwards;
}

.attachment-card:nth-child(1) { animation-delay: 600ms !important; }
.attachment-card:nth-child(2) { animation-delay: 760ms !important; }
.attachment-card:nth-child(3) { animation-delay: 920ms !important; }
.attachment-card:nth-child(4) { animation-delay: 1080ms !important; }

.attachment-image {
  width: 48px;
  height: 37px;
}

.attachment-card > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.attachment-card strong {
  overflow: hidden;
  font-size: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attachment-card small {
  color: #98a09a;
  font: 400 5px/1 var(--mono);
}

.attachment-card > .attachment-remove {
  position: absolute;
  width: 13px;
  height: 13px;
  right: 3px;
  top: 3px;
  color: #929a95;
  background: #fff;
  border-radius: 50%;
  font-size: 7px;
  line-height: 13px;
  text-align: center;
}

.composer > p {
  min-height: 46px;
  padding: 12px 4px 8px;
  color: #39423d;
  font-size: 9px;
}

.composer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.composer-foot > div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8a928d;
  font: 400 6px/1 var(--mono);
}

.composer-foot > div button {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #67706a;
  background: #f0f1ee;
  border-radius: 6px;
  font-size: 12px;
}

.send-button {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 7px;
}

.send-button svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.delivery-confirmation {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  padding: 13px 16px 13px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  pointer-events: none;
  opacity: 0;
  color: #172019;
  background: #fbfcf9;
  border-radius: 9px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.26);
  transform: translate(-50%, -35%);
  transition: opacity 260ms ease, transform 400ms var(--ease);
}

.demo-stage[data-state="8"] .delivery-confirmation {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.delivery-confirmation > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #18331d;
  background: var(--signal);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 750;
}

.delivery-confirmation > div {
  display: grid;
  gap: 4px;
}

.delivery-confirmation strong {
  font-size: 8px;
}

.delivery-confirmation small {
  color: #7e8781;
  font-size: 6px;
}

.share-card {
  position: absolute;
  z-index: 40;
  width: 360px;
  left: 50%;
  top: 50%;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  color: #222b26;
  background: #fbfcf9;
  border-radius: 11px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -44%) scale(0.96);
  transition: opacity 240ms ease, transform 360ms var(--ease);
}

.share-card.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.share-card-head {
  display: flex;
  align-items: center;
  gap: 7px;
}

.share-card .mini-crate {
  width: 19px;
  height: 17px;
}

.share-card .mini-crate i {
  width: 12px;
  height: 12px;
  border-color: #242d28;
}

.share-card-head strong {
  font-size: 9px;
}

.share-card-head button {
  margin-left: auto;
  color: #7d857f;
  font-size: 14px;
}

.share-sequence {
  margin: 20px 0 13px;
  display: flex;
  align-items: center;
}

.share-sequence span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #4e5852;
  background: #eff1ee;
  border: 1px solid #dce0dc;
  border-radius: 6px;
  font: 500 7px/1 var(--mono);
}

.share-sequence i {
  height: 1px;
  flex: 1;
  background: #cbd0cc;
}

.share-card > strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 450;
}

.share-url {
  height: 38px;
  margin-top: 12px;
  padding: 0 5px 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #69716c;
  background: #eff1ee;
  border-radius: 6px;
  font: 400 7px/1 var(--mono);
}

.share-url button {
  height: 28px;
  padding: 0 10px;
  color: #fff;
  background: var(--ink);
  border-radius: 5px;
  font-size: 6px;
}

.demo-footer {
  position: relative;
  z-index: 5;
  min-height: 90px;
  padding: 0 23px;
  display: flex;
  align-items: center;
  background: #121816;
  border-top: 1px solid var(--line-light);
}

.demo-steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.demo-steps button {
  min-height: 58px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  text-align: left;
  color: #77827b;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 180ms ease;
}

.demo-steps button:first-child {
  padding-left: 0;
}

.demo-steps button:last-child {
  border-right: 0;
}

.demo-steps button:hover,
.demo-steps button.is-active {
  color: #eff3f0;
}

.demo-steps button > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #77827b;
  border: 1px solid #36413b;
  border-radius: 50%;
  font: 400 7px/1 var(--mono);
  transition: color 180ms ease, background 180ms ease, border 180ms ease;
}

.demo-steps button.is-active > span {
  color: #17200f;
  background: var(--signal);
  border-color: var(--signal);
}

.demo-step-copy {
  display: grid;
  gap: 4px;
}

.demo-steps strong {
  font-size: 9px;
}

.demo-steps small {
  color: #647069;
  font-size: 6px;
}

.demo-progress {
  position: absolute;
  height: 2px;
  left: 23px;
  right: 23px;
  bottom: 0;
  background: #26302b;
}

.demo-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--cobalt);
  transition: width 500ms linear;
}

.demo-caption {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 5px;
  color: #626a65;
  font-size: 11px;
}

.demo-caption span:first-child {
  color: #424a45;
  font-weight: 650;
}

.compatibility {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compatibility-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
}

.compatibility-inner > p {
  color: #59615c;
  font-size: 11px;
  font-weight: 600;
}

.platform-names {
  display: flex;
  align-items: center;
  gap: 31px;
}

.platform-names span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #363e39;
  font-size: 12px;
  font-weight: 650;
}

.platform-names i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 11px;
  font-weight: 750;
}

.compatibility-note {
  justify-self: end;
  padding: 6px 9px;
  color: #57605a;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 400 7px/1 var(--mono);
  letter-spacing: 0.04em;
}

@keyframes live-pulse {
  0%, 100% { opacity: 0.55; box-shadow: 0 0 0 3px rgba(200, 243, 74, 0.08); }
  50% { opacity: 1; box-shadow: 0 0 0 6px rgba(200, 243, 74, 0.02); }
}

@keyframes item-arrive {
  0% { opacity: 0; transform: translateY(18px) scale(0.92); }
  55% { transform: translateY(-3px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes file-land {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #717973;
  font: 500 8px/1 var(--mono);
  letter-spacing: 0.09em;
}

.section-label b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--cobalt);
  border: 1px solid rgba(49, 92, 245, 0.35);
  border-radius: 50%;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0;
}

.section-label.light {
  color: #829088;
}

.section-label.light b {
  color: var(--signal);
  border-color: rgba(200, 243, 74, 0.32);
}

.problem-section {
  overflow: hidden;
}

.problem-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px) 1fr;
  align-items: end;
  gap: 34px;
}

.problem-heading h2,
.workflow-heading h2,
.use-heading h2,
.ai-heading h2,
.privacy-copy h2,
.access-copy h2 {
  font-family: var(--display);
  font-size: clamp(54px, 5.2vw, 76px);
  font-weight: 420;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.problem-heading h2 em,
.workflow-heading h2 em,
.use-heading h2 em,
.ai-heading h2 em,
.privacy-copy h2 em,
.access-copy h2 em {
  font-weight: 350;
}

.problem-heading > p {
  padding-bottom: 5px;
  color: #68706b;
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.context-reel {
  min-height: 430px;
  margin-top: 86px;
  display: grid;
  grid-template-columns: 1fr 70px 1.18fr;
  overflow: hidden;
  background: #e7e2d8;
  border: 1px solid rgba(16, 22, 19, 0.12);
  border-radius: 12px;
}

.reel-before,
.reel-after {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.reel-before {
  background:
    linear-gradient(rgba(16, 22, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 22, 19, 0.035) 1px, transparent 1px),
    #e7e2d8;
  background-size: 25px 25px;
}

.reel-after {
  color: #eff3f0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #141a17;
  background-size: 25px 25px;
}

.reel-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reel-label span {
  color: #747b77;
  font: 500 7px/1 var(--mono);
  letter-spacing: 0.08em;
}

.reel-label b {
  color: #838a85;
  font-size: 8px;
  font-weight: 550;
}

.reel-after .reel-label span,
.reel-after .reel-label b {
  color: #7f8a84;
}

.loose-files {
  margin: auto 0;
  padding-left: 25px;
  display: flex;
  align-items: center;
}

.loose-files article {
  width: 132px;
  padding: 7px;
  flex: 0 0 auto;
  background: #fbfaf6;
  border: 1px solid rgba(16, 22, 19, 0.14);
  border-radius: 7px;
  box-shadow: 0 12px 22px rgba(38, 39, 35, 0.11);
  transform: translate(var(--x), var(--y)) rotate(var(--r));
}

.loose-files article > span {
  display: block;
  margin-bottom: 6px;
  overflow: hidden;
  color: #7b827d;
  font: 400 6px/1 var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-page {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e6e9e5;
  border: 1px solid rgba(16, 22, 19, 0.09);
  border-radius: 4px;
}

.loose-files .mini-page {
  height: 82px;
}

.mini-page::before {
  content: "";
  position: absolute;
  inset: 7px;
  background: #fff;
  border-radius: 2px;
}

.mini-page > i,
.mini-page::after {
  position: absolute;
  z-index: 1;
  content: "";
  display: block;
  border-radius: 1px;
}

.mini-page > i:nth-child(1) {
  left: 12px;
  right: 12px;
  top: 13px;
  height: 6px;
  background: #4c5851;
}

.mini-page > i:nth-child(2) {
  left: 12px;
  right: 35px;
  top: 25px;
  height: 26px;
  background: #dce1dd;
}

.mini-page > i:nth-child(3) {
  left: 12px;
  right: 12px;
  bottom: 13px;
  height: 7px;
  background: #bac3bd;
}

.mini-page:empty::after {
  left: 12px;
  right: 12px;
  top: 13px;
  height: 6px;
  background: #4c5851;
  box-shadow: 0 13px 0 #dce1dd, 0 32px 0 #bac3bd;
}

.mini-shipping:empty::after {
  box-shadow: 0 13px 0 #dce1dd, 0 26px 0 #e4e8e4, 0 39px 0 #bac3bd;
}

.mini-payment:empty::after {
  box-shadow: 0 13px 0 #cbd4eb, 0 32px 0 #93a4d1;
}

.mini-error:empty::after {
  background: #75443c !important;
  box-shadow: 0 13px 0 #f2bbb1, 0 32px 0 #dc6856;
}

.mini-error > i:nth-child(2),
.mini-error::after {
  background: #f2bbb1 !important;
}

.mini-error > i:nth-child(3) {
  background: #dc6856;
}

.mini-payment > i:nth-child(2) {
  right: 12px;
  background: #cbd4eb;
}

.mini-shipping > i:nth-child(2) {
  right: 12px;
  height: 9px;
  box-shadow: 0 14px 0 #e2e6e2;
}

.mini-price-one::before,
.mini-price-two::before,
.mini-price-three::before {
  background: #fdfdfb;
}

.mini-price-one::after,
.mini-price-two::after,
.mini-price-three::after {
  width: 26px;
  height: 22px;
  left: 50%;
  top: 50%;
  background: #d4dbd6;
  border-radius: 3px;
  transform: translate(-50%, -30%);
}

.mini-price-two::after { background: #ccd5f5; }
.mini-price-three::after { background: #e6d4c9; }

.mini-message::after {
  width: 55%;
  height: 11px;
  left: 13px;
  top: 27px;
  background: #d8dfda;
  border-radius: 7px 7px 7px 2px;
  box-shadow: 18px 18px 0 #d9e2f9;
}

.mini-account::after {
  width: 24px;
  height: 24px;
  left: 50%;
  top: 22px;
  background: #ccd4cf;
  border-radius: 50%;
  transform: translateX(-50%);
}

.mini-onboard-one::after,
.mini-onboard-two::after,
.mini-onboard-three::after {
  width: 34px;
  height: 34px;
  left: 50%;
  top: 22px;
  border: 5px solid #d1d8d3;
  border-radius: 50%;
  transform: translateX(-50%);
}

.mini-onboard-two::after { border-color: #cbd5f7; }
.mini-onboard-three::after { border-color: #d9d3ec; }

.reel-divider {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, #e7e2d8 50%, #141a17 50%);
}

.reel-divider span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--cobalt);
  border: 5px solid #d8d4ca;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(49, 92, 245, 0.25);
}

.ordered-files {
  margin: auto 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ordered-files > article {
  width: 92px;
  position: relative;
  flex: 0 0 auto;
}

.ordered-files > article > b {
  position: absolute;
  z-index: 3;
  left: -5px;
  top: -7px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: #182014;
  background: var(--signal);
  border: 2px solid #141a17;
  border-radius: 50%;
  font: 500 6px/1 var(--mono);
}

.ordered-files .mini-page {
  height: 96px;
  background: #303a35;
  border-color: #3a453f;
}

.ordered-files > article > span {
  display: block;
  margin-top: 8px;
  color: #8d9891;
  font-size: 7px;
  text-align: center;
}

.ordered-files > i {
  color: #56635c;
  font-style: normal;
}

.reel-ai {
  width: 48px;
  height: 68px;
  margin-left: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #fff;
  background: var(--cobalt);
  border-radius: 8px;
}

.reel-ai i {
  font-style: normal;
  font-size: 13px;
}

.reel-ai b {
  font-size: 7px;
}

.workflow-section {
  padding-top: 40px;
}

.workflow-heading {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 34px;
}

.workflow-heading h2 {
  max-width: 860px;
}

.workflow-explorer {
  min-height: 670px;
  margin-top: 80px;
  display: grid;
  grid-template-columns: 390px 1fr;
  overflow: hidden;
  background: #e8e4da;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.workflow-tabs {
  padding: 22px;
  display: grid;
  align-content: center;
  background: #eeebe3;
  border-right: 1px solid var(--line);
}

.workflow-tabs button {
  min-height: 162px;
  padding: 25px 8px;
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  gap: 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  transition: padding 260ms var(--ease), color 180ms ease;
}

.workflow-tabs button:last-child {
  border-bottom: 0;
}

.workflow-tabs button:hover,
.workflow-tabs button.is-active {
  padding-left: 15px;
}

.workflow-tabs button > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #818983;
  border: 1px solid #c8ccc8;
  border-radius: 50%;
  font: 400 7px/1 var(--mono);
  transition: color 180ms ease, background 180ms ease, border 180ms ease;
}

.workflow-tabs button.is-active > span {
  color: #fff;
  background: var(--cobalt);
  border-color: var(--cobalt);
}

.workflow-tab-copy {
  display: grid;
  gap: 10px;
}

.workflow-tabs strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 450;
  letter-spacing: -0.035em;
}

.workflow-tab-copy small {
  color: #747c77;
  font-size: 11px;
  line-height: 1.6;
}

.workflow-tabs button > i {
  color: #8a918c;
  font-style: normal;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: opacity 180ms ease, transform 220ms var(--ease);
}

.workflow-tabs button.is-active > i {
  opacity: 1;
  transform: translate(0, 0);
}

.feature-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    #121815;
  background-size: 30px 30px;
}

.feature-panel {
  position: absolute;
  inset: 0;
  padding: 68px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 360ms ease, transform 600ms var(--ease);
}

.feature-visual[data-feature-view="capture"] .feature-capture,
.feature-visual[data-feature-view="sequence"] .feature-sequence,
.feature-visual[data-feature-view="deliver"] .feature-deliver {
  z-index: 2;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-browser {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: #f6f7f5;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.3);
}

.feature-browser-bar {
  height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #e7eae7;
}

.feature-browser-bar i {
  width: 6px;
  height: 6px;
  background: #b4bbb6;
  border-radius: 50%;
}

.feature-browser-bar span {
  width: 55%;
  height: 23px;
  margin-left: 12px;
  padding-left: 12px;
  display: flex;
  align-items: center;
  color: #8b938e;
  background: #fff;
  border-radius: 5px;
  font-size: 6px;
}

.feature-page {
  height: calc(100% - 42px);
  display: grid;
  grid-template-columns: 90px 1fr;
}

.feature-sidebar {
  background: #1d2521;
}

.feature-page-main {
  position: relative;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  grid-template-rows: 48px 1fr;
  gap: 14px;
}

.feature-page-main > span {
  display: block;
  background: #e2e6e2;
  border-radius: 5px;
}

.feature-page-main > span:first-child {
  grid-column: 1 / 3;
  width: 48%;
  height: 19px;
  align-self: center;
  background: #59645e;
}

.feature-page-main > span:nth-child(2) {
  background: #fff;
  box-shadow: 0 0 0 1px #e1e4e1;
}

.feature-page-main > span:nth-child(3) {
  background: #fff;
  box-shadow: 0 0 0 1px #e1e4e1;
}

.feature-page-main > span:nth-child(4) {
  position: absolute;
  width: 40%;
  height: 58px;
  left: 28%;
  bottom: 60px;
  background: #f6cbc4;
}

.feature-selection {
  position: absolute;
  width: 52%;
  height: 47%;
  left: 24%;
  top: 33%;
  border: 2px solid #6d87ff;
  box-shadow: 0 0 0 999px rgba(8, 13, 11, 0.32);
  animation: selection-breathe 2.8s ease-in-out infinite;
}

.feature-selection i {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border: 2px solid var(--cobalt);
  border-radius: 50%;
}

.feature-selection i:nth-child(1) { left: -5px; top: -5px; }
.feature-selection i:nth-child(2) { right: -5px; top: -5px; }
.feature-selection i:nth-child(3) { left: -5px; bottom: -5px; }
.feature-selection i:nth-child(4) { right: -5px; bottom: -5px; }

.feature-selection b {
  position: absolute;
  right: -2px;
  top: -25px;
  padding: 6px 8px;
  color: #fff;
  background: var(--cobalt);
  border-radius: 4px 4px 0 0;
  font: 400 7px/1 var(--mono);
}

.feature-cursor {
  position: absolute;
  right: 21%;
  bottom: 18%;
  color: #fff;
  font-size: 25px;
  filter: drop-shadow(0 2px 2px #000);
}

.feature-note {
  position: absolute;
  left: 50%;
  bottom: 32px;
  padding: 10px 14px 10px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a221d;
  background: #fbfcf9;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
  white-space: nowrap;
}

.feature-note span {
  padding: 7px 9px;
  color: #e9eee9;
  background: #202824;
  border-radius: 5px;
  font: 400 7px/1 var(--mono);
}

.feature-note strong {
  font-size: 8px;
}

.feature-sequence {
  display: grid;
  place-items: center;
}

.sequence-window {
  width: min(580px, 100%);
  padding: 20px;
  color: #27302b;
  background: #f7f8f5;
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.sequence-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8b938e;
  font: 500 7px/1 var(--mono);
  letter-spacing: 0.08em;
}

.sequence-head b {
  color: #56605a;
  font-weight: 500;
  letter-spacing: 0;
}

.sequence-cards {
  margin-top: 18px;
  display: grid;
  gap: 7px;
}

.sequence-cards article {
  min-height: 77px;
  padding: 8px;
  display: grid;
  grid-template-columns: 13px 25px 72px 1fr;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid #e0e4e0;
  border-radius: 7px;
}

.sequence-cards article.is-moving {
  z-index: 2;
  border-color: #9bafff;
  box-shadow: 0 14px 25px rgba(49, 92, 245, 0.15);
  transform: translate(18px, 13px) rotate(1.5deg);
}

.sequence-cards article > i {
  color: #aeb5b0;
  font-style: normal;
}

.sequence-cards article > b {
  color: #68716b;
  font: 500 8px/1 var(--mono);
}

.sequence-cards .mini-page {
  height: 58px;
}

.sequence-cards article > div {
  display: grid;
  gap: 5px;
}

.sequence-cards strong {
  font-size: 9px;
}

.sequence-cards small {
  color: #969e98;
  font: 400 6px/1 var(--mono);
}

.sequence-rule {
  width: 70%;
  margin-top: 36px;
  display: flex;
  align-items: center;
}

.sequence-rule span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #a7b1aa;
  border: 1px solid #3b4741;
  border-radius: 50%;
  font: 400 7px/1 var(--mono);
}

.sequence-rule span:last-child {
  color: #172010;
  background: var(--signal);
  border-color: var(--signal);
}

.sequence-rule i {
  height: 1px;
  flex: 1;
  background: #344039;
}

.feature-deliver {
  display: grid;
  place-items: center;
}

.deliver-composer {
  width: min(670px, 100%);
  padding: 15px;
  color: #27302b;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.deliver-files {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.deliver-files article {
  min-width: 0;
  padding: 7px;
  background: #f2f4f1;
  border: 1px solid #e0e3df;
  border-radius: 7px;
}

.deliver-files .mini-page {
  height: 75px;
}

.deliver-files b {
  display: block;
  margin-top: 7px;
  overflow: hidden;
  font: 400 6px/1 var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deliver-composer > p {
  min-height: 70px;
  padding: 20px 7px 10px;
  color: #4e5852;
  font-size: 11px;
}

.deliver-composer > div:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8b948e;
  font: 400 7px/1 var(--mono);
}

.deliver-composer > div:last-child button {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--cobalt);
  border-radius: 7px;
}

.deliver-platforms {
  margin-top: 35px;
  display: flex;
  gap: 7px;
}

.deliver-platforms span {
  padding: 8px 11px;
  color: #9ca7a0;
  border: 1px solid #39453e;
  border-radius: 999px;
  font-size: 7px;
}

.deliver-platforms span:first-child {
  color: #162014;
  background: var(--signal);
  border-color: var(--signal);
}

.use-section {
  color: #eaf0ec;
  background: #101613;
}

.use-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px) 1fr;
  align-items: end;
  gap: 34px;
}

.use-heading h2 em {
  color: #89958e;
}

.use-heading > p {
  padding-bottom: 5px;
  color: #818d86;
  font-size: 14px;
  line-height: 1.65;
}

.use-list {
  margin-top: 85px;
  border-top: 1px solid #333d37;
}

.use-list > article {
  min-height: 200px;
  display: grid;
  grid-template-columns: 75px 1fr 470px 35px;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid #333d37;
  transition: background 240ms ease, padding 260ms var(--ease);
}

.use-list > article:hover {
  padding: 0 18px;
  background: #151c18;
}

.use-index {
  color: #66726b;
  font: 400 8px/1 var(--mono);
}

.use-copy small {
  color: #6f7d74;
  font: 500 7px/1 var(--mono);
  letter-spacing: 0.08em;
}

.use-copy h3 {
  margin-top: 13px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 440;
  letter-spacing: -0.04em;
}

.use-copy p {
  margin-top: 8px;
  color: #7d8982;
  font-size: 11px;
}

.use-sequence {
  display: flex;
  align-items: center;
}

.use-shot {
  position: relative;
  width: 135px;
  padding: 6px;
  display: block;
  background: #202823;
  border: 1px solid #39433d;
  border-radius: 7px;
  box-shadow: -15px 9px 22px rgba(0, 0, 0, 0.18);
}

.use-shot + .use-shot {
  margin-left: -17px;
}

.use-shot:nth-child(2) {
  z-index: 2;
  transform: translateY(-5px);
}

.use-shot:nth-child(3) {
  z-index: 3;
}

.use-shot > b {
  position: absolute;
  z-index: 4;
  width: 19px;
  height: 19px;
  left: 2px;
  top: 2px;
  display: grid;
  place-items: center;
  color: #18200f;
  background: var(--signal);
  border: 2px solid #202823;
  border-radius: 50%;
  font: 500 6px/1 var(--mono);
}

.use-shot .mini-page {
  height: 84px;
}

.use-arrow {
  color: #67736b;
  font-size: 18px;
  font-weight: 400;
  transition: color 180ms ease, transform 200ms var(--ease);
}

.use-list article:hover .use-arrow {
  color: var(--signal);
  transform: translate(3px, -3px);
}

.ai-grid {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 90px;
  align-items: start;
}

.ai-heading {
  position: sticky;
  top: 100px;
}

.ai-heading h2 {
  margin-top: 45px;
}

.ai-heading h2 span,
.ai-heading h2 em {
  display: block;
}

.ai-heading > p {
  max-width: 340px;
  margin-top: 25px;
  color: #717a74;
  font-size: 14px;
  line-height: 1.65;
}

.ai-matrix {
  border-top: 1px solid var(--line);
}

.matrix-row {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 90px;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.matrix-row > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #535c56;
  font-size: 10px;
}

.matrix-row > span:first-child {
  color: var(--ink);
  font-size: 13px;
}

.matrix-row > span > i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #3d754b;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-style: normal;
}

.matrix-row > span > b {
  font-weight: 600;
}

.matrix-head {
  min-height: 45px;
  color: #89918c;
  font: 500 7px/1 var(--mono);
  letter-spacing: 0.07em;
}

.matrix-head > span,
.matrix-head > span:first-child {
  color: #89918c;
  font: inherit;
}

.status-beta {
  width: max-content;
  padding: 6px 9px;
  color: #2946a7 !important;
  background: var(--cobalt-soft);
  border-radius: 999px;
  font: 500 7px/1 var(--mono) !important;
}

.matrix-note {
  max-width: 650px;
  margin-top: 24px;
  color: #646c67;
  font-size: 11px;
  line-height: 1.6;
}

.privacy-section {
  padding-top: 40px;
}

.privacy-panel {
  min-height: 720px;
  padding: 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(560px, 1.15fr);
  align-items: center;
  gap: 80px;
  color: #edf2ee;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 0 0, rgba(49, 92, 245, 0.18), transparent 36%),
    #101613;
  border-radius: 12px;
}

.privacy-panel::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -300px;
  bottom: -320px;
  border: 1px solid rgba(200, 243, 74, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(200, 243, 74, 0.02), 0 0 0 160px rgba(200, 243, 74, 0.015);
}

.privacy-copy {
  position: relative;
  z-index: 2;
}

.privacy-copy h2 {
  margin-top: 46px;
}

.privacy-copy h2 span,
.privacy-copy h2 em {
  display: block;
}

.privacy-copy h2 em {
  color: #8e9a93;
}

.privacy-copy > p {
  max-width: 410px;
  margin-top: 28px;
  color: #8e9992;
  font-size: 14px;
  line-height: 1.7;
}

.scope-comparison {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.scope-card {
  min-height: 455px;
  padding: 23px;
  background: #171e1a;
  border: 1px solid #2a342e;
  border-radius: 10px;
}

.scope-card.is-live {
  background: #f2f3ef;
  border-color: #f2f3ef;
  color: #1d251f;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

.scope-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.scope-icon {
  position: relative;
  width: 43px;
  height: 43px;
  display: block;
  color: #a4afa8;
  background: #202924;
  border: 1px solid #344039;
  border-radius: 9px;
}

.is-live .scope-icon {
  color: var(--cobalt);
  background: #e5e9fb;
  border-color: #cdd5fb;
}

.browser-scope::before {
  content: "";
  position: absolute;
  inset: 10px 8px 8px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

.browser-scope::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 16px;
  height: 1px;
  background: currentColor;
}

.desktop-scope::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 9px;
  height: 19px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.desktop-scope::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1.5px;
  left: 13px;
  bottom: 9px;
  background: currentColor;
  box-shadow: 7px -5px 0 -0.3px currentColor;
}

.scope-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #53615a;
  font: 500 6px/1 var(--mono);
  letter-spacing: 0.06em;
}

.scope-status i {
  width: 5px;
  height: 5px;
  background: #66a578;
  border-radius: 50%;
}

.scope-status.upcoming {
  color: #68756d;
}

.scope-card > small {
  display: block;
  margin-top: 43px;
  color: #6d7a72;
  font: 500 7px/1 var(--mono);
  letter-spacing: 0.07em;
}

.scope-card h3 {
  margin-top: 15px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 430;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.scope-card ul {
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.scope-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #829087;
  font-size: 9px;
}

.scope-card.is-live li {
  color: #67716b;
}

.scope-card li i,
.scope-card li > span:first-child {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: #23422d;
  background: #dff1e4;
  border-radius: 50%;
  font-style: normal;
  font-size: 7px;
}

.scope-card:not(.is-live) li > span:first-child {
  color: #7a8780;
  background: #232c27;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: end;
  gap: 80px;
  padding-bottom: 150px;
  border-bottom: 1px solid var(--line);
}

.access-copy h2 {
  max-width: 720px;
  margin-top: 45px;
}

.access-copy h2 span,
.access-copy h2 em {
  display: block;
}

.access-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.access-price {
  display: grid;
  gap: 8px;
}

.access-price > span {
  color: #767e79;
  font: 500 7px/1 var(--mono);
  letter-spacing: 0.08em;
}

.access-price > strong {
  font-family: var(--display);
  font-size: 29px;
  font-weight: 440;
  letter-spacing: -0.04em;
}

.access-price > small {
  color: #69716c;
  font-size: 9px;
}

.access-form {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.access-form label {
  display: block;
  color: #68716b;
  font-size: 9px;
  font-weight: 650;
}

.access-form > div {
  height: 48px;
  margin-top: 9px;
  padding: 4px 4px 4px 13px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d8dcd8;
  border-radius: 8px;
}

.access-form > div:focus-within {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(49, 92, 245, 0.12);
}

.access-form input {
  min-width: 0;
  flex: 1;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 11px;
}

.access-form input::placeholder {
  color: #a0a7a2;
}

.access-form button {
  height: 38px;
  padding: 0 12px 0 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  font-size: 9px;
  font-weight: 650;
}

.access-form button:hover {
  background: var(--cobalt);
}

.access-form > p {
  margin-top: 10px;
  color: #646c67;
  font-size: 10px;
  line-height: 1.5;
}

.access-form.is-success > div {
  border-color: #8dc39a;
}

.access-form.is-success button {
  background: #2f7644;
}

.access-form.is-error > div {
  border-color: var(--vermilion);
}

.faq-section {
  padding-top: 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 90px;
}

.faq-heading h2 {
  max-width: 380px;
  margin-top: 45px;
  font-family: var(--display);
  font-size: 47px;
  font-weight: 430;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 83px;
  padding-right: 50px;
  display: flex;
  align-items: center;
  position: relative;
  color: #2d3530;
  font-size: 15px;
  font-weight: 620;
  letter-spacing: -0.025em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  color: #707873;
  font: 350 24px/1 var(--sans);
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 55px 25px 0;
  color: #5e6761;
  font-size: 12px;
  line-height: 1.7;
}

.footer {
  color: #e8eee9;
  background: #101613;
}

.footer-main {
  min-height: 310px;
  display: grid;
  grid-template-columns: 1.7fr 0.65fr 0.65fr 1fr;
  align-items: start;
  gap: 65px;
  padding-top: 72px;
}

.footer .brand-symbol circle {
  fill: var(--signal);
}

.footer-brand p {
  max-width: 270px;
  margin-top: 18px;
  color: #75817a;
  font-size: 11px;
  line-height: 1.6;
}

.footer-column {
  display: grid;
  gap: 13px;
}

.footer-column > span {
  margin-bottom: 5px;
  color: #59675f;
  font: 500 7px/1 var(--mono);
  letter-spacing: 0.08em;
}

.footer-column a {
  width: max-content;
  color: #8d9991;
  font-size: 11px;
}

.footer-column a:hover {
  color: #fff;
}

.footer-status {
  padding-top: 2px;
}

.footer-status > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a5afa8;
  font-size: 9px;
}

.footer-status i {
  width: 6px;
  height: 6px;
  background: var(--signal);
  border-radius: 50%;
}

.footer-status b {
  font-weight: 600;
}

.footer-status p {
  margin: 11px 0 0 14px;
  color: #66736b;
  font-size: 9px;
  line-height: 1.6;
}

.footer-bottom {
  min-height: 65px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #7f8b83;
  border-top: 1px solid #263029;
  font: 400 7px/1 var(--mono);
  letter-spacing: 0.07em;
}

.footer-bottom span:last-child {
  justify-self: end;
}

.footer-language {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-language i {
  color: #4f5c54;
  font-style: normal;
}

.footer-language .language-button {
  color: #7f8b83;
  font: inherit;
  letter-spacing: inherit;
}

.footer-language .language-button.is-active,
.footer-language .language-button:hover {
  color: #fff;
}

@keyframes selection-breathe {
  0%, 100% { box-shadow: 0 0 0 999px rgba(8, 13, 11, 0.31), 0 0 0 0 rgba(49, 92, 245, 0.3); }
  50% { box-shadow: 0 0 0 999px rgba(8, 13, 11, 0.37), 0 0 0 5px rgba(49, 92, 245, 0.11); }
}

@media (max-width: 1180px) {
  .shell {
    width: min(1100px, calc(100% - 42px));
  }

  .nav-links {
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(70px, 8.2vw, 92px);
  }

  .browser-window {
    right: 310px;
  }

  .capture-tray {
    width: 270px;
  }

  .store-app {
    grid-template-columns: 92px 1fr;
  }

  .store-sidebar {
    padding-inline: 10px;
  }

  .checkout-canvas {
    padding: 24px 22px;
  }

  .checkout-grid {
    grid-template-columns: minmax(0, 1fr) 180px;
  }

  .compatibility-inner {
    gap: 20px;
  }

  .platform-names {
    gap: 18px;
  }

  .problem-heading,
  .use-heading {
    grid-template-columns: 175px minmax(0, 1fr) 250px;
  }

  .ordered-files > article {
    width: 76px;
  }

  .ordered-files .mini-page {
    height: 82px;
  }

  .workflow-heading {
    grid-template-columns: 175px 1fr;
  }

  .workflow-explorer {
    grid-template-columns: 350px 1fr;
  }

  .feature-panel {
    padding: 50px;
  }

  .use-list > article {
    grid-template-columns: 55px 1fr 400px 25px;
  }

  .use-shot {
    width: 120px;
  }

  .ai-grid {
    grid-template-columns: 330px 1fr;
    gap: 60px;
  }

  .privacy-panel {
    padding: 55px;
    grid-template-columns: 0.8fr minmax(510px, 1.2fr);
    gap: 45px;
  }

  .scope-card {
    padding: 19px;
  }
}

@media (max-width: 960px) {
  .shell {
    width: calc(100% - 36px);
  }

  .section {
    padding: 110px 0;
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-actions {
    gap: 15px;
  }

  .menu-button {
    width: 38px;
    height: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .menu-button span {
    width: 19px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    padding: 12px 18px 18px;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--bone);
    border-top: 1px solid var(--line);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    padding: 15px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(16, 22, 19, 0.07);
    font-size: 12px;
  }

  .mobile-language {
    grid-column: 1 / -1;
    min-height: 52px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(16, 22, 19, 0.07);
    color: #626a65;
    font-size: 11px;
  }

  .mobile-language > div {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-language i {
    color: #a0a6a2;
    font-style: normal;
  }

  .mobile-language .language-button {
    color: #707873;
    font-size: 11px;
    font-weight: 650;
  }

  .mobile-language .language-button.is-active {
    color: var(--cobalt);
  }

  .hero {
    padding-top: 82px;
  }

  .hero h1 {
    font-size: clamp(62px, 10vw, 82px);
  }

  .demo-wrap {
    width: calc(100% - 20px);
  }

  .demo-stage {
    height: 590px;
  }

  .browser-window {
    right: 286px;
  }

  .capture-tray {
    width: 250px;
  }

  .store-sidebar {
    display: none;
  }

  .store-app {
    display: block;
  }

  .checkout-canvas {
    height: 100%;
  }

  .checkout-progress {
    display: none;
  }

  .checkout-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .region-cart {
    order: -1;
    padding: 10px;
  }

  .region-cart .product-row {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .region-cart .summary-line,
  .region-cart .summary-total,
  .region-cart .order-button {
    display: none;
  }

  .region-customer {
    display: none;
  }

  .checkout-form {
    gap: 6px;
  }

  .chat-window {
    grid-template-columns: 160px 1fr;
  }

  .attachment-card {
    grid-template-columns: 1fr;
  }

  .attachment-card > div {
    display: none;
  }

  .compatibility-inner {
    grid-template-columns: 1fr;
    padding: 22px 0;
    gap: 18px;
  }

  .platform-names {
    flex-wrap: wrap;
  }

  .compatibility-note {
    justify-self: start;
  }

  .problem-heading,
  .use-heading {
    grid-template-columns: 150px 1fr;
  }

  .problem-heading > p,
  .use-heading > p {
    grid-column: 2;
    margin-top: -10px;
  }

  .context-reel {
    min-height: 760px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 50px 1fr;
  }

  .reel-divider {
    background: linear-gradient(#e7e2d8 50%, #141a17 50%);
  }

  .loose-files,
  .ordered-files {
    justify-content: center;
  }

  .workflow-heading {
    grid-template-columns: 150px 1fr;
  }

  .workflow-explorer {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .workflow-tabs {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-tabs button {
    min-height: 170px;
    padding: 20px;
    grid-template-columns: 30px 1fr;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .workflow-tabs button:last-child {
    border-right: 0;
  }

  .workflow-tabs button:hover,
  .workflow-tabs button.is-active {
    padding-left: 20px;
  }

  .workflow-tab-copy small {
    display: none;
  }

  .workflow-tabs button > i {
    display: none;
  }

  .feature-visual {
    min-height: 620px;
  }

  .use-list > article {
    min-height: 230px;
    grid-template-columns: 45px 1fr 290px 20px;
    gap: 15px;
  }

  .use-shot {
    width: 100px;
  }

  .use-shot .mini-page {
    height: 70px;
  }

  .ai-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .ai-heading {
    position: static;
  }

  .ai-heading h2 span,
  .ai-heading h2 em {
    display: inline;
  }

  .privacy-panel {
    padding: 55px 40px;
    grid-template-columns: 1fr;
  }

  .privacy-copy > p {
    max-width: 620px;
  }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .access-card {
    max-width: 620px;
  }

  .footer-main {
    grid-template-columns: 1.5fr 0.7fr 0.7fr;
  }

  .footer-status {
    grid-column: 1 / 4;
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  .shell {
    width: calc(100% - 28px);
  }

  .section {
    padding: 88px 0;
  }

  .nav {
    height: 68px;
  }

  .language-switch {
    display: none;
  }

  .mobile-menu {
    grid-template-columns: 1fr;
    padding-inline: 14px;
  }

  .hero {
    padding-top: 65px;
  }

  .eyebrow {
    font-size: 7px;
  }

  .hero h1 {
    margin-top: 28px;
    font-size: clamp(48px, 15vw, 67px);
    line-height: 0.95;
  }

  .hero-lede {
    margin-top: 25px;
    font-size: 15px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }

  .demo-wrap {
    width: calc(100% - 12px);
    margin-top: 60px;
  }

  .product-demo {
    border-radius: 12px;
  }

  .demo-topbar {
    height: 58px;
    grid-template-columns: 1fr auto;
  }

  .demo-live,
  .demo-toolbar kbd {
    display: none;
  }

  .demo-stage {
    height: 590px;
  }

  .browser-window {
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 218px;
  }

  .browser-tab {
    width: 120px;
  }

  .browser-address {
    min-width: 0;
  }

  .browser-address span:last-child,
  .browser-actions {
    display: none;
  }

  .checkout-canvas {
    padding: 8px 10px;
  }

  .checkout-header h3 {
    margin-top: 4px;
    font-size: 16px;
  }

  .checkout-grid {
    margin-top: 10px;
    gap: 6px;
  }

  .region-cart {
    min-height: 50px;
    padding: 6px 8px;
  }

  .region-label {
    margin-bottom: 4px;
  }

  .region-cart .region-label {
    margin-bottom: 3px;
  }

  .product-row {
    grid-template-columns: 28px 1fr auto;
    gap: 7px;
  }

  .product-thumb {
    height: 27px;
  }

  .product-thumb i {
    width: 16px;
    height: 19px;
    left: 6px;
    top: 4px;
  }

  .product-row small {
    display: none;
  }

  .checkout-form .page-region {
    padding: 6px 8px;
  }

  .region-shipping {
    gap: 4px;
  }

  .region-shipping .option-row.muted {
    display: none;
  }

  .option-row {
    padding: 6px;
  }

  .payment-card {
    min-height: 26px;
  }

  .region-error {
    min-height: 40px;
    padding-block: 5px !important;
  }

  .error-mark {
    width: 21px;
    height: 21px;
  }

  .region-error small {
    overflow: hidden;
    max-width: 170px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .capture-tray {
    width: auto;
    height: 198px;
    left: 10px;
    right: 10px;
    top: auto;
    bottom: 10px;
    padding: 12px;
  }

  .tray-head > div {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .tray-head strong {
    font-size: 12px;
  }

  .tray-empty {
    margin: 30px 0;
  }

  .empty-target {
    display: none;
  }

  .tray-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }

  .capture-item {
    min-height: 94px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .drag-dots,
  .capture-copy,
  .capture-check {
    display: none;
  }

  .capture-preview {
    width: 100%;
    height: 55px;
  }

  .tray-foot {
    display: none;
  }

  .selection-frame {
    max-width: calc(100% - 30px);
  }

  .capture-flash {
    top: 35%;
  }

  .arrange-hint {
    top: 35%;
  }

  .destination-picker {
    width: calc(100% - 24px);
    bottom: 20px;
  }

  .destination-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .destination-list button > b {
    display: block;
    font-size: 5px;
  }

  .chat-window {
    grid-template-columns: 1fr;
  }

  .chat-sidebar {
    display: none;
  }

  .composer {
    width: calc(100% - 28px);
  }

  .attachment-row {
    gap: 4px;
  }

  .attachment-card {
    padding: 4px;
  }

  .attachment-image {
    width: 100%;
  }

  .demo-footer {
    min-height: 74px;
    padding: 0 12px;
  }

  .demo-steps button {
    min-height: 48px;
    padding: 0 8px;
    display: flex;
    justify-content: center;
  }

  .demo-steps button:first-child {
    padding-left: 8px;
  }

  .demo-step-copy {
    display: none;
  }

  .demo-caption {
    padding: 0 14px;
    display: block;
    line-height: 1.6;
  }

  .platform-names {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 15px 28px;
  }

  .problem-heading,
  .use-heading,
  .workflow-heading {
    display: block;
  }

  .problem-heading h2,
  .workflow-heading h2,
  .use-heading h2,
  .ai-heading h2,
  .privacy-copy h2,
  .access-copy h2 {
    margin-top: 35px;
    font-size: 48px;
  }

  .problem-heading > p,
  .use-heading > p {
    margin-top: 22px;
  }

  .context-reel {
    min-height: 690px;
    margin-top: 55px;
  }

  .reel-before,
  .reel-after {
    padding: 20px;
  }

  .reel-label b {
    display: none;
  }

  .loose-files {
    padding-left: 0;
  }

  .loose-files article {
    width: 92px;
  }

  .loose-files .mini-page {
    height: 62px;
  }

  .ordered-files {
    gap: 3px;
  }

  .ordered-files > article {
    width: 53px;
  }

  .ordered-files .mini-page {
    height: 62px;
  }

  .ordered-files > i {
    font-size: 9px;
  }

  .reel-ai {
    width: 38px;
    height: 56px;
  }

  .workflow-section {
    padding-top: 10px;
  }

  .workflow-explorer {
    margin-top: 55px;
  }

  .workflow-tabs {
    overflow-x: auto;
  }

  .workflow-tabs button {
    min-width: 190px;
    min-height: 110px;
  }

  .workflow-tabs strong {
    font-size: 18px;
  }

  .feature-visual {
    min-height: 470px;
  }

  .feature-panel {
    padding: 24px;
  }

  .feature-browser {
    height: 350px;
  }

  .feature-page {
    grid-template-columns: 60px 1fr;
  }

  .feature-page-main {
    padding: 24px;
  }

  .feature-note {
    display: none;
  }

  .sequence-window {
    padding: 13px;
  }

  .sequence-cards article {
    grid-template-columns: 10px 20px 52px 1fr;
    min-height: 63px;
  }

  .sequence-cards .mini-page {
    height: 46px;
  }

  .sequence-rule {
    width: 90%;
  }

  .deliver-files {
    gap: 4px;
  }

  .deliver-files article {
    padding: 4px;
  }

  .deliver-files .mini-page {
    height: 48px;
  }

  .deliver-platforms {
    flex-wrap: wrap;
    justify-content: center;
  }

  .use-list {
    margin-top: 55px;
  }

  .use-list > article {
    min-height: 270px;
    padding: 24px 0;
    grid-template-columns: 35px 1fr 18px;
    gap: 10px;
  }

  .use-list > article:hover {
    padding: 24px 8px;
  }

  .use-sequence {
    grid-column: 2 / 4;
    margin-top: 12px;
  }

  .use-copy h3 {
    font-size: 27px;
  }

  .use-shot {
    width: 105px;
  }

  .ai-grid,
  .faq-grid {
    gap: 55px;
  }

  .matrix-row {
    min-height: 75px;
    grid-template-columns: 1.2fr 0.85fr 70px;
  }

  .matrix-row > span:nth-child(3),
  .matrix-head > span:nth-child(3) {
    display: none;
  }

  .matrix-row > span {
    font-size: 8px;
  }

  .matrix-row > span:first-child {
    font-size: 10px;
  }

  .matrix-row > span > i {
    width: 23px;
    height: 23px;
  }

  .privacy-section {
    padding-top: 5px;
  }

  .privacy-panel {
    width: calc(100% - 12px);
    padding: 45px 20px 20px;
    border-radius: 10px;
  }

  .scope-comparison {
    grid-template-columns: 1fr;
  }

  .scope-card {
    min-height: 380px;
  }

  .access-grid {
    padding-bottom: 95px;
  }

  .access-card {
    padding: 20px;
  }

  .access-form > div {
    height: auto;
    padding: 5px;
    display: grid;
    gap: 5px;
  }

  .access-form input {
    height: 42px;
    padding: 0 10px;
  }

  .access-form button {
    justify-content: center;
  }

  .faq-heading h2 {
    font-size: 40px;
  }

  .footer-main {
    min-height: auto;
    padding: 60px 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 25px;
  }

  .footer-brand,
  .footer-status {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    padding: 20px 0;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .footer-bottom span:nth-child(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
