:root {
  color-scheme: light;
  --bg: #eef1f6;
  --panel: rgba(248, 249, 252, 0.88);
  --panel-strong: rgba(255, 255, 255, 0.64);
  --panel-soft: rgba(255, 255, 255, 0.42);
  --text: #10131a;
  --muted: #737b87;
  --soft-text: #59616e;
  --line: rgba(132, 143, 160, 0.27);
  --accent: #ff9f1a;
  --accent-2: #d85fd2;
  --green: #07976b;
  --shadow: 0 24px 80px rgba(77, 88, 113, 0.2);
  --radius: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Setup guide realism polish: profile choices, license entry, Drive connect. */
.setup-guide-motion .setup-profile-fields {
  gap: 8px;
}

.setup-guide-motion .setup-profile-fields label {
  min-height: 42px;
  padding: 10px 12px;
}

.setup-guide-motion .setup-language-row {
  min-height: 72px;
  align-items: start;
  animation: setup-profile-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-language-row small {
  grid-column: 1 / -1;
  color: rgba(17, 17, 17, 0.42);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.35;
}

.setup-guide-motion .setup-currency-row {
  animation: setup-currency-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-license-form {
  grid-template-columns: minmax(0, 1fr) auto;
}

.setup-guide-motion .setup-license-form strong {
  min-width: 0;
}

.setup-guide-motion .setup-license-form strong i {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  color: #111111;
  font-style: normal;
  white-space: nowrap;
  vertical-align: bottom;
  animation: setup-license-key-reveal 30s steps(16, end) infinite;
}

.setup-guide-motion .setup-license-form button {
  animation: setup-license-button-press 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-card-license > small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: setup-license-status-in 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-card-license > small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #07976b;
  box-shadow: 0 0 0 6px rgba(7, 151, 107, 0.1);
}

.setup-guide-motion .setup-drive-card {
  grid-template-columns: 34px minmax(0, 1fr) auto;
  column-gap: 12px;
  row-gap: 2px;
}

.setup-guide-motion .setup-drive-card img {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(17, 17, 17, 0.08));
}

.setup-guide-motion .setup-drive-card strong,
.setup-guide-motion .setup-drive-card span {
  grid-column: 2;
}

.setup-guide-motion .setup-drive-card button {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  animation: setup-drive-button-press 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes setup-profile-choice-highlight {
  0%, 43% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
  46%, 50% { border-color: rgba(127, 145, 207, 0.36); background: rgba(127, 145, 207, 0.1); }
  53%, 100% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
}

@keyframes setup-currency-choice-highlight {
  0%, 48% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
  51%, 54% { border-color: rgba(246, 215, 237, 0.58); background: rgba(246, 215, 237, 0.14); }
  57%, 100% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
}

@keyframes setup-license-key-reveal {
  0%, 56% { max-width: 0; }
  61%, 100% { max-width: 180px; }
}

@keyframes setup-license-button-press {
  0%, 62% { transform: scale(1); box-shadow: none; }
  64%, 65% { transform: scale(0.94); box-shadow: 0 10px 24px rgba(127, 145, 207, 0.2); }
  68%, 100% { transform: scale(1); box-shadow: none; }
}

@keyframes setup-license-status-in {
  0%, 65% { opacity: 0; transform: translateY(4px); }
  67%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes setup-drive-button-press {
  0%, 75% { transform: scale(1); box-shadow: none; }
  77%, 78% { transform: scale(0.94); box-shadow: 0 10px 24px rgba(7, 151, 107, 0.12); }
  81%, 100% { transform: scale(1); box-shadow: none; }
}

@keyframes setup-guide-cursor {
  0%, 5% { left: 53%; top: 34%; transform: scale(1); }
  9%, 11% { left: 91%; top: 7.5%; transform: scale(0.9); }
  16%, 19% { left: 50%; top: 31%; transform: scale(1); }
  21%, 23% { left: 50%; top: 31%; transform: scale(0.9); }
  30%, 37% { left: 86%; top: 74%; transform: scale(1); }
  43.5%, 45% { left: 72%; top: 47%; transform: scale(0.92); }
  47%, 49% { left: 72%; top: 54%; transform: scale(0.92); }
  50.5%, 52.5% { left: 72%; top: 61%; transform: scale(0.92); }
  53.5%, 55% { left: 72%; top: 68%; transform: scale(0.92); }
  60%, 64% { left: 83%; top: 59%; transform: scale(0.92); }
  73%, 78% { left: 82%; top: 59%; transform: scale(0.92); }
  88%, 100% { left: 86%; top: 74%; transform: scale(1); }
}

@media (max-width: 720px) {
  .setup-guide-motion .setup-profile-fields label {
    min-height: 40px;
  }

  .setup-guide-motion .setup-language-row {
    min-height: 68px;
  }

  .setup-guide-motion .setup-drive-card {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .setup-guide-motion .setup-drive-card button {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
    min-height: 32px;
    margin-top: 8px;
  }
}

/* Setup guide scenario v4: catalog -> install -> app launch -> real setup guide. */
.setup-guide-motion .setup-guide-stage {
  min-height: 770px;
  align-content: center;
  overflow: clip;
}

.setup-guide-motion .setup-guide-browser {
  animation: setup-browser-install-morph 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-guide-browser-top {
  grid-template-columns: 12px 12px 12px minmax(0, 1fr) auto;
}

.setup-guide-motion .setup-guide-browser-top > strong {
  justify-self: center;
  animation: setup-url-label 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-catalog-scene,
.setup-launch-scene {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 74px;
  width: min(520px, calc(100% - 78px));
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 26px 68px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.setup-catalog-scene {
  animation: setup-catalog-scene 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-catalog-scene p,
.setup-launch-scene small {
  margin: 0;
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.setup-catalog-scene h3 {
  max-width: 360px;
  margin: 10px 0 18px;
  color: #111111;
  font-size: 28px;
  font-weight: 560;
  line-height: 1.03;
  letter-spacing: 0;
}

.setup-catalog-scene div {
  display: grid;
  gap: 10px;
}

.setup-catalog-scene span {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 18px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.72);
}

.setup-catalog-scene span:first-child {
  border-color: rgba(127, 145, 207, 0.28);
  background:
    radial-gradient(circle at 14% 28%, rgba(241, 253, 130, 0.25), transparent 42%),
    rgba(255, 255, 255, 0.82);
}

.setup-catalog-scene strong {
  color: #111111;
  font-size: 14px;
  font-weight: 700;
}

.setup-catalog-scene small {
  color: rgba(17, 17, 17, 0.48);
  font-size: 12px;
  font-weight: 620;
}

.setup-launch-scene {
  top: 116px;
  width: min(360px, calc(100% - 92px));
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  opacity: 0;
  transform: translateX(-50%) translateY(18px) scale(0.96);
  animation: setup-launch-scene 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-launch-scene > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #111111;
  background: linear-gradient(135deg, #b6c7ff, #f6d7ed 55%, #ffddbe);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
  font-size: 28px;
  font-weight: 720;
}

.setup-launch-scene strong {
  color: #111111;
  font-size: 24px;
  font-weight: 590;
  letter-spacing: 0;
}

.setup-launch-scene small {
  max-width: 250px;
  color: rgba(17, 17, 17, 0.52);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.38;
}

.setup-guide-motion .setup-guide-modal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: setup-modal-open 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-guide-app-bg {
  animation: setup-app-bg 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-guide-hero-copy,
.setup-guide-motion .setup-card-panel,
.setup-guide-motion .setup-guide-progress span,
.setup-guide-motion .setup-guide-steps span {
  animation-duration: 30s;
}

.setup-guide-motion .setup-install-chip {
  position: relative;
  inset: auto;
  z-index: 2;
  min-width: 238px;
  width: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  padding: 7px 8px 7px 13px;
  color: rgba(17, 17, 17, 0.62);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.07);
  opacity: 1;
  transform: none;
  animation: setup-install-chip 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-install-chip span {
  min-width: 0;
  font-size: 12px;
  font-weight: 650;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setup-guide-motion .setup-install-chip b {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  color: #111111;
  background: #f1fd82;
  font-size: 12px;
  font-weight: 760;
  animation: setup-install-button-press 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-device-dock {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 3;
  justify-self: center;
  width: min(420px, 68%);
  margin-top: 18px;
  transform: none;
  opacity: 0;
  animation: setup-device-dock-in 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-cursor {
  animation: setup-guide-cursor 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-profile-fields {
  gap: 7px;
}

.setup-guide-motion .setup-profile-fields label {
  min-height: 39px;
  padding: 9px 12px;
}

.setup-guide-motion .setup-app-row {
  animation: setup-app-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-business-row {
  animation: setup-business-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-language-row {
  min-height: 62px;
  align-items: start;
  animation: setup-profile-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-language-row small {
  grid-column: 1 / -1;
  color: rgba(17, 17, 17, 0.42);
  font-size: 10.5px;
  font-weight: 620;
  line-height: 1.32;
}

.setup-guide-motion .setup-currency-row {
  animation: setup-currency-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-license-form strong i {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  color: #111111;
  font-style: normal;
  white-space: nowrap;
  vertical-align: bottom;
  animation: setup-license-key-reveal 30s steps(16, end) infinite;
}

.setup-guide-motion .setup-license-form button {
  animation: setup-license-button-press 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-card-license > small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: setup-license-status-in 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-card-license > small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #07976b;
  box-shadow: 0 0 0 6px rgba(7, 151, 107, 0.1);
}

.setup-guide-motion .setup-drive-card {
  grid-template-columns: 34px minmax(0, 1fr) auto;
  column-gap: 12px;
  row-gap: 2px;
}

.setup-guide-motion .setup-drive-card img {
  grid-row: 1 / span 3;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(17, 17, 17, 0.08));
}

.setup-guide-motion .setup-drive-card strong,
.setup-guide-motion .setup-drive-card span,
.setup-guide-motion .setup-drive-card small {
  grid-column: 2;
}

.setup-guide-motion .setup-drive-title {
  opacity: 1;
  animation: setup-drive-title-out 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-drive-connected {
  grid-row: 1;
  opacity: 0;
  transform: translateY(4px);
  animation: setup-drive-status-in 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-drive-card button {
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: center;
  animation: setup-drive-button-press 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-drive-card small {
  color: rgba(7, 151, 107, 0.72);
  font-size: 11px;
  font-weight: 680;
  opacity: 0;
  transform: translateY(4px);
  animation: setup-drive-status-in 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes setup-browser-install-morph {
  0%, 13% {
    border-radius: 38px;
    transform: translateY(0) scale(1);
  }
  18%, 100% {
    border-radius: 42px;
    transform: translateY(-8px) scale(0.985);
  }
}

@keyframes setup-url-label {
  0%, 12% {
    opacity: 1;
    transform: translateY(0);
  }
  18%, 100% {
    opacity: 0.46;
    transform: translateY(-2px);
  }
}

@keyframes setup-catalog-scene {
  0%, 12% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  16%, 100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-18px) scale(0.97);
  }
}

@keyframes setup-launch-scene {
  0%, 14% {
    opacity: 0;
    transform: translateX(-50%) translateY(18px) scale(0.96);
  }
  18%, 23% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  27%, 100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-16px) scale(0.97);
  }
}

@keyframes setup-modal-open {
  0%, 24% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  28%, 100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes setup-app-bg {
  0%, 14% {
    opacity: 0.16;
    transform: scale(0.985);
  }
  20%, 100% {
    opacity: 0.35;
    transform: scale(1);
  }
}

@keyframes setup-guide-slide-1 {
  0%, 25% { opacity: 0; transform: translateY(12px); }
  28%, 40.5% { opacity: 1; transform: translateY(0); }
  42.2%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes setup-guide-slide-2 {
  0%, 40.8% { opacity: 0; transform: translateY(12px); }
  43.2%, 53% { opacity: 1; transform: translateY(0); }
  55.5%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes setup-guide-slide-3 {
  0%, 54.8% { opacity: 0; transform: translateY(12px); }
  57.2%, 67% { opacity: 1; transform: translateY(0); }
  69.5%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes setup-guide-slide-4 {
  0%, 68.8% { opacity: 0; transform: translateY(12px); }
  71.2%, 81% { opacity: 1; transform: translateY(0); }
  83.5%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes setup-guide-slide-5 {
  0%, 82.8% { opacity: 0; transform: translateY(12px); }
  85.2%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes setup-guide-progress {
  0%, 27% { width: 0%; }
  28%, 41% { width: 20%; }
  43%, 55% { width: 40%; }
  57%, 69% { width: 60%; }
  71%, 83% { width: 80%; }
  85%, 100% { width: 100%; }
}

@keyframes setup-step-1 {
  0%, 25% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  28%, 40% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
  43%, 100% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
}

@keyframes setup-step-2 {
  0%, 41% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  43%, 54% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
  57%, 100% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
}

@keyframes setup-step-3 {
  0%, 55% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  57%, 68% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
  71%, 100% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
}

@keyframes setup-step-4 {
  0%, 69% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  71%, 82% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
  85%, 100% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
}

@keyframes setup-step-5 {
  0%, 83% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  85%, 100% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
}

@keyframes setup-install-chip {
  0%, 12% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  16%, 100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.96);
  }
}

@keyframes setup-install-button-press {
  0%, 8% { transform: scale(1); }
  10%, 11% { transform: scale(0.92); }
  13%, 100% { transform: scale(1); }
}

@keyframes setup-device-dock-in {
  0%, 14% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  20%, 100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes setup-guide-cursor {
  0%, 5% { left: 53%; top: 34%; transform: scale(1); }
  9%, 11% { left: 91%; top: 7.5%; transform: scale(0.9); }
  16%, 19% { left: 50%; top: 31%; transform: scale(1); }
  21%, 23% { left: 50%; top: 31%; transform: scale(0.9); }
  30%, 37% { left: 86%; top: 74%; transform: scale(1); }
  45%, 48% { left: 72%; top: 56%; transform: scale(0.92); }
  51%, 54% { left: 72%; top: 63%; transform: scale(0.92); }
  60%, 64% { left: 83%; top: 59%; transform: scale(0.92); }
  73%, 78% { left: 82%; top: 59%; transform: scale(0.92); }
  88%, 100% { left: 86%; top: 74%; transform: scale(1); }
}

@media (max-width: 720px) {
  .setup-guide-motion .setup-guide-stage {
    min-height: 710px;
    overflow: clip;
  }

  .setup-guide-motion .setup-guide-browser-top {
    grid-template-columns: 8px 8px 8px minmax(0, 1fr) auto;
    gap: 6px;
  }

  .setup-guide-motion .setup-guide-browser-top > strong {
    width: 100%;
    justify-self: stretch;
  }

  .setup-guide-motion .setup-install-chip {
    min-width: 0;
    padding: 6px;
  }

  .setup-guide-motion .setup-install-chip span {
    display: none;
  }

  .setup-guide-motion .setup-install-chip b {
    min-height: 28px;
    padding: 0 9px;
    font-size: 11px;
  }

  .setup-catalog-scene {
    top: 54px;
    width: calc(100% - 44px);
    border-radius: 24px;
    padding: 18px;
  }

  .setup-catalog-scene h3 {
    font-size: 23px;
  }

  .setup-launch-scene {
    top: 86px;
    width: calc(100% - 68px);
  }

  .setup-launch-scene > span {
    width: 62px;
    height: 62px;
    border-radius: 21px;
    font-size: 24px;
  }

  .setup-guide-motion .setup-device-dock {
    width: calc(100% - 44px);
    margin-top: 14px;
  }
}

/* Setup guide final polish: generic workspace setup and stateful actions. */
.setup-guide-motion .setup-profile-fields {
  gap: 7px;
}

.setup-guide-motion .setup-profile-fields label {
  min-height: 39px;
  padding: 9px 12px;
}

.setup-guide-motion .setup-app-row {
  animation: setup-app-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-business-row {
  animation: setup-business-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-language-row {
  min-height: 62px;
  align-items: start;
  animation: setup-profile-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-language-row small {
  grid-column: 1 / -1;
  color: rgba(17, 17, 17, 0.42);
  font-size: 10.5px;
  font-weight: 620;
  line-height: 1.32;
}

.setup-guide-motion .setup-currency-row {
  animation: setup-currency-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-license-form {
  grid-template-columns: minmax(0, 1fr) auto;
}

.setup-guide-motion .setup-license-form strong {
  min-width: 0;
}

.setup-guide-motion .setup-license-form strong i {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  color: #111111;
  font-style: normal;
  white-space: nowrap;
  vertical-align: bottom;
  animation: setup-license-key-reveal 30s steps(16, end) infinite;
}

.setup-guide-motion .setup-license-form button {
  animation: setup-license-button-press 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-card-license > small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: setup-license-status-in 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-card-license > small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #07976b;
  box-shadow: 0 0 0 6px rgba(7, 151, 107, 0.1);
}

.setup-guide-motion .setup-drive-card {
  grid-template-columns: 34px minmax(0, 1fr) auto;
  column-gap: 12px;
  row-gap: 2px;
}

.setup-guide-motion .setup-drive-card img {
  grid-row: 1 / span 3;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(17, 17, 17, 0.08));
}

.setup-guide-motion .setup-drive-card strong,
.setup-guide-motion .setup-drive-card span,
.setup-guide-motion .setup-drive-card small {
  grid-column: 2;
}

.setup-guide-motion .setup-drive-title {
  opacity: 1;
  animation: setup-drive-title-out 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-drive-connected {
  grid-row: 1;
  opacity: 0;
  transform: translateY(4px);
  animation: setup-drive-status-in 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-drive-card button {
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: center;
  animation: setup-drive-button-press 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-drive-card small {
  color: rgba(7, 151, 107, 0.72);
  font-size: 11px;
  font-weight: 680;
  opacity: 0;
  transform: translateY(4px);
  animation: setup-drive-status-in 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes setup-app-choice-highlight {
  0%, 41% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
  43.5%, 46% { border-color: rgba(127, 145, 207, 0.36); background: rgba(127, 145, 207, 0.1); }
  49%, 100% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
}

@keyframes setup-business-choice-highlight {
  0%, 44% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
  47%, 49% { border-color: rgba(127, 145, 207, 0.36); background: rgba(127, 145, 207, 0.1); }
  52%, 100% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
}

@keyframes setup-profile-choice-highlight {
  0%, 47% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
  50%, 52% { border-color: rgba(127, 145, 207, 0.36); background: rgba(127, 145, 207, 0.1); }
  55%, 100% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
}

@keyframes setup-currency-choice-highlight {
  0%, 50% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
  53%, 54.5% { border-color: rgba(246, 215, 237, 0.58); background: rgba(246, 215, 237, 0.14); }
  57%, 100% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
}

@keyframes setup-license-key-reveal {
  0%, 57% { max-width: 0; }
  61%, 100% { max-width: 180px; }
}

@keyframes setup-license-button-press {
  0%, 62% { transform: scale(1); box-shadow: none; }
  64%, 65% { transform: scale(0.94); box-shadow: 0 10px 24px rgba(127, 145, 207, 0.2); }
  68%, 100% { transform: scale(1); box-shadow: none; }
}

@keyframes setup-license-status-in {
  0%, 65% { opacity: 0; transform: translateY(4px); }
  67%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes setup-drive-title-out {
  0%, 76% { opacity: 1; transform: translateY(0); }
  79%, 100% { opacity: 0; transform: translateY(-4px); }
}

@keyframes setup-drive-status-in {
  0%, 78% { opacity: 0; transform: translateY(4px); }
  81%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes setup-drive-button-press {
  0%, 75% { opacity: 1; transform: scale(1); box-shadow: none; }
  77%, 78% { opacity: 1; transform: scale(0.94); box-shadow: 0 10px 24px rgba(7, 151, 107, 0.12); }
  81%, 100% { opacity: 0; transform: scale(0.97); box-shadow: none; }
}

@keyframes setup-guide-cursor {
  0%, 5% { left: 53%; top: 34%; transform: scale(1); }
  9%, 11% { left: 91%; top: 7.5%; transform: scale(0.9); }
  16%, 19% { left: 50%; top: 31%; transform: scale(1); }
  21%, 23% { left: 50%; top: 31%; transform: scale(0.9); }
  30%, 37% { left: 86%; top: 74%; transform: scale(1); }
  43.5%, 45% { left: 72%; top: 47%; transform: scale(0.92); }
  47%, 49% { left: 72%; top: 54%; transform: scale(0.92); }
  50.5%, 52.5% { left: 72%; top: 61%; transform: scale(0.92); }
  53.5%, 55% { left: 72%; top: 68%; transform: scale(0.92); }
  60%, 64% { left: 83%; top: 59%; transform: scale(0.92); }
  73%, 78% { left: 82%; top: 59%; transform: scale(0.92); }
  88%, 100% { left: 86%; top: 74%; transform: scale(1); }
}

@media (max-width: 720px) {
  .setup-guide-motion .setup-profile-fields label {
    min-height: 38px;
  }

  .setup-guide-motion .setup-language-row {
    min-height: 58px;
  }

  .setup-guide-motion .setup-drive-card {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .setup-guide-motion .setup-drive-card button {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
    min-height: 32px;
    margin-top: 8px;
  }
}

/* Setup guide realism final overrides: profile, license, Drive, cursor. */
.setup-guide-motion .setup-profile-fields {
  gap: 8px;
}

.setup-guide-motion .setup-profile-fields label {
  min-height: 42px;
  padding: 10px 12px;
}

.setup-guide-motion .setup-language-row {
  min-height: 72px;
  align-items: start;
  animation: setup-profile-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-language-row small {
  grid-column: 1 / -1;
  color: rgba(17, 17, 17, 0.42);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.35;
}

.setup-guide-motion .setup-currency-row {
  animation: setup-currency-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-license-form {
  grid-template-columns: minmax(0, 1fr) auto;
}

.setup-guide-motion .setup-license-form strong {
  min-width: 0;
}

.setup-guide-motion .setup-license-form strong i {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  color: #111111;
  font-style: normal;
  white-space: nowrap;
  vertical-align: bottom;
  animation: setup-license-key-reveal 30s steps(16, end) infinite;
}

.setup-guide-motion .setup-license-form button {
  animation: setup-license-button-press 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-card-license > small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: setup-license-status-in 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-card-license > small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #07976b;
  box-shadow: 0 0 0 6px rgba(7, 151, 107, 0.1);
}

.setup-guide-motion .setup-drive-card {
  grid-template-columns: 34px minmax(0, 1fr) auto;
  column-gap: 12px;
  row-gap: 2px;
}

.setup-guide-motion .setup-drive-card img {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(17, 17, 17, 0.08));
}

.setup-guide-motion .setup-drive-card strong,
.setup-guide-motion .setup-drive-card span {
  grid-column: 2;
}

.setup-guide-motion .setup-drive-card button {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  animation: setup-drive-button-press 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes setup-profile-choice-highlight {
  0%, 43% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
  46%, 50% { border-color: rgba(127, 145, 207, 0.36); background: rgba(127, 145, 207, 0.1); }
  53%, 100% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
}

@keyframes setup-currency-choice-highlight {
  0%, 48% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
  51%, 54% { border-color: rgba(246, 215, 237, 0.58); background: rgba(246, 215, 237, 0.14); }
  57%, 100% { border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.72); }
}

@keyframes setup-license-key-reveal {
  0%, 56% { max-width: 0; }
  61%, 100% { max-width: 180px; }
}

@keyframes setup-license-button-press {
  0%, 62% { transform: scale(1); box-shadow: none; }
  64%, 65% { transform: scale(0.94); box-shadow: 0 10px 24px rgba(127, 145, 207, 0.2); }
  68%, 100% { transform: scale(1); box-shadow: none; }
}

@keyframes setup-license-status-in {
  0%, 65% { opacity: 0; transform: translateY(4px); }
  67%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes setup-drive-button-press {
  0%, 75% { transform: scale(1); box-shadow: none; }
  77%, 78% { transform: scale(0.94); box-shadow: 0 10px 24px rgba(7, 151, 107, 0.12); }
  81%, 100% { transform: scale(1); box-shadow: none; }
}

@keyframes setup-guide-cursor {
  0%, 5% { left: 53%; top: 34%; transform: scale(1); }
  9%, 11% { left: 91%; top: 7.5%; transform: scale(0.9); }
  16%, 19% { left: 50%; top: 31%; transform: scale(1); }
  21%, 23% { left: 50%; top: 31%; transform: scale(0.9); }
  30%, 37% { left: 86%; top: 74%; transform: scale(1); }
  45%, 48% { left: 72%; top: 56%; transform: scale(0.92); }
  51%, 54% { left: 72%; top: 63%; transform: scale(0.92); }
  60%, 64% { left: 83%; top: 59%; transform: scale(0.92); }
  73%, 78% { left: 82%; top: 59%; transform: scale(0.92); }
  88%, 100% { left: 86%; top: 74%; transform: scale(1); }
}

@media (max-width: 720px) {
  .setup-guide-motion .setup-profile-fields label {
    min-height: 40px;
  }

  .setup-guide-motion .setup-language-row {
    min-height: 68px;
  }

  .setup-guide-motion .setup-drive-card {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .setup-guide-motion .setup-drive-card button {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
    min-height: 32px;
    margin-top: 8px;
  }
}

/* Setup guide motion v3: show the real in-app onboarding guide as the story. */
.setup-guide-motion.setup-story {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
  padding:
    clamp(88px, 8vw, 126px)
    max(22px, calc((100vw - 1480px) / 2 + 70px))
    clamp(82px, 8vw, 118px);
}

.setup-guide-copy {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.setup-guide-copy h2 {
  max-width: 520px;
  margin: 17px 0 0;
  color: #111111;
  font-family: var(--owmii-display-font);
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.setup-guide-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(17px, 1.32vw, 20px);
  line-height: 1.48;
}

.setup-guide-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.setup-guide-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(17, 17, 17, 0.68);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.045);
  font-size: 13px;
  font-weight: 620;
}

.setup-guide-stage {
  position: relative;
  z-index: 1;
  min-height: 700px;
  display: grid;
  place-items: center;
}

.setup-guide-stage::before {
  content: "";
  position: absolute;
  inset: 6% -4% 2%;
  border-radius: 52px;
  background:
    radial-gradient(circle at 44% 42%, rgba(241, 253, 130, 0.24), transparent 32%),
    radial-gradient(circle at 62% 60%, rgba(72, 217, 184, 0.13), transparent 52%);
  filter: blur(22px);
  opacity: 0.95;
}

.setup-guide-browser {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  min-height: 626px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 247, 0.78)),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 34px 92px rgba(17, 17, 17, 0.1);
  overflow: hidden;
}

.setup-guide-browser-top {
  min-height: 58px;
  display: grid;
  grid-template-columns: 12px 12px 12px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.6);
}

.setup-guide-browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.14);
}

.setup-guide-browser-top strong {
  min-width: 0;
  justify-self: center;
  width: min(390px, 100%);
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 999px;
  padding: 9px 16px;
  color: rgba(17, 17, 17, 0.55);
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 620;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setup-guide-screen {
  position: relative;
  min-height: 568px;
  padding: 34px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 76% 36%, rgba(241, 253, 130, 0.18), transparent 28%),
    #fbfbf8;
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.setup-guide-app-bg {
  position: absolute;
  inset: 34px;
  display: grid;
  grid-template-columns: 134px minmax(0, 1fr);
  gap: 22px;
  opacity: 0.35;
  filter: blur(0.1px);
}

.setup-guide-app-bg aside,
.setup-guide-app-bg main {
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.setup-guide-app-bg aside {
  display: grid;
  align-content: start;
  gap: 18px;
  border-radius: 26px;
  padding: 20px;
}

.setup-guide-app-bg aside b {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #111111;
  background: linear-gradient(135deg, #b6c7ff, #f7ecff);
  font-size: 13px;
}

.setup-guide-app-bg aside span {
  height: 13px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.12);
}

.setup-guide-app-bg aside span:nth-child(3),
.setup-guide-app-bg aside span:nth-child(5) {
  width: 72%;
}

.setup-guide-app-bg main {
  display: grid;
  align-content: start;
  gap: 16px;
  border-radius: 30px;
  padding: 24px;
}

.setup-bg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.setup-bg-header strong {
  width: 210px;
  height: 28px;
  border-radius: 999px;
  color: transparent;
  background: rgba(17, 17, 17, 0.16);
}

.setup-bg-header span {
  width: 150px;
  height: 28px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
}

.setup-bg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.setup-bg-grid span {
  height: 76px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.setup-bg-panel {
  display: grid;
  gap: 10px;
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.setup-bg-panel span {
  height: 28px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
}

.setup-guide-modal {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  min-height: 500px;
  margin: 14px auto 0;
  display: grid;
  grid-template-rows: 122px 4px minmax(0, 1fr) auto;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 30px 80px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(20px);
}

.setup-guide-modal-hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  padding: 22px 24px;
}

.setup-guide-modal-hero button {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  color: rgba(17, 17, 17, 0.48);
  background: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1;
}

.setup-guide-hero-copy {
  position: absolute;
  left: 24px;
  right: 76px;
  top: 20px;
  opacity: 0;
  transform: translateY(10px);
  animation: setup-guide-slide-1 20s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-hero-profile {
  animation-name: setup-guide-slide-2;
}

.setup-hero-license {
  animation-name: setup-guide-slide-3;
}

.setup-hero-drive {
  animation-name: setup-guide-slide-4;
}

.setup-hero-ready {
  animation-name: setup-guide-slide-5;
}

.setup-guide-hero-copy p {
  margin: 0 0 6px;
  color: rgba(17, 17, 17, 0.44);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.setup-guide-hero-copy h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: 0;
}

.setup-guide-hero-copy span {
  display: block;
  max-width: 590px;
  margin-top: 8px;
  color: rgba(17, 17, 17, 0.55);
  font-size: 13px;
  line-height: 1.42;
}

.setup-guide-progress {
  height: 4px;
  background: rgba(17, 17, 17, 0.06);
}

.setup-guide-progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #b6c7ff, #f6d7ed 55%, #ffddbe);
  animation: setup-guide-progress 20s linear infinite;
}

.setup-guide-body {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 16px;
  min-height: 0;
  padding: 18px;
}

.setup-guide-steps {
  display: grid;
  gap: 8px;
  align-content: start;
}

.setup-guide-steps span {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 16px;
  padding: 8px;
  color: rgba(17, 17, 17, 0.44);
  background: rgba(255, 255, 255, 0.58);
  animation: setup-step-idle 20s linear infinite;
}

.setup-guide-steps b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.62);
  background: rgba(17, 17, 17, 0.06);
  font-size: 12px;
  font-weight: 760;
}

.setup-guide-steps strong {
  color: inherit;
  font-size: 12px;
  font-weight: 680;
}

.setup-step-preview {
  animation-name: setup-step-1 !important;
}

.setup-step-profile {
  animation-name: setup-step-2 !important;
}

.setup-step-license {
  animation-name: setup-step-3 !important;
}

.setup-step-drive {
  animation-name: setup-step-4 !important;
}

.setup-step-ready {
  animation-name: setup-step-5 !important;
}

.setup-guide-card {
  position: relative;
  min-height: 240px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 18%, rgba(241, 253, 130, 0.16), transparent 34%),
    rgba(250, 250, 247, 0.76);
  overflow: hidden;
}

.setup-card-panel {
  position: absolute;
  inset: 0;
  padding: 18px;
  opacity: 0;
  transform: translateY(12px);
  animation: setup-guide-slide-1 20s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-card-profile {
  animation-name: setup-guide-slide-2;
}

.setup-card-license {
  animation-name: setup-guide-slide-3;
}

.setup-card-drive {
  animation-name: setup-guide-slide-4;
}

.setup-card-ready {
  animation-name: setup-guide-slide-5;
}

.setup-checklist,
.setup-profile-fields {
  display: grid;
  gap: 10px;
}

.setup-checklist span,
.setup-profile-fields label,
.setup-license-form,
.setup-drive-card {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 17px;
  padding: 12px 13px;
  color: rgba(17, 17, 17, 0.7);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.035);
  font-size: 13px;
  font-weight: 620;
}

.setup-checklist span::before {
  content: "";
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #07976b 0 22%, transparent 23%),
    rgba(7, 151, 107, 0.12);
}

.setup-profile-fields label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.setup-profile-fields span,
.setup-license-form span,
.setup-drive-card span {
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 650;
}

.setup-profile-fields strong,
.setup-license-form strong,
.setup-drive-card strong {
  color: #111111;
  font-size: 13px;
  font-weight: 680;
}

.setup-license-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.setup-license-form span {
  grid-column: 1 / -1;
}

.setup-license-form button,
.setup-drive-card button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #111111;
  background: linear-gradient(135deg, #b6c7ff, #f6d7ed 55%, #ffddbe);
  font-size: 12px;
  font-weight: 720;
}

.setup-card-license small {
  display: block;
  margin-top: 12px;
  color: rgba(17, 17, 17, 0.5);
  font-size: 12px;
  font-weight: 620;
}

.setup-drive-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.setup-drive-card span {
  grid-column: 1;
  line-height: 1.38;
}

.setup-guide-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 16px 18px 18px;
}

.setup-guide-footer button {
  min-height: 36px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(17, 17, 17, 0.62);
  background: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 680;
}

.setup-guide-footer .setup-guide-primary {
  color: #111111;
  border-color: transparent;
  background: linear-gradient(135deg, #b6c7ff, #f6d7ed 55%, #ffddbe);
}

.setup-guide-motion .setup-install-chip {
  position: absolute;
  z-index: 4;
  right: 54px;
  top: 88px;
  min-width: 238px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  padding: 10px 11px 10px 16px;
  color: rgba(17, 17, 17, 0.62);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: setup-install-chip 20s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-install-chip span {
  font-size: 12px;
  font-weight: 650;
}

.setup-guide-motion .setup-install-chip strong {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #111111;
  background: #f1fd82;
  font-size: 12px;
  font-weight: 760;
}

.setup-guide-motion .setup-device-dock {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  width: min(420px, 68%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.07);
  overflow: hidden;
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.setup-guide-motion .setup-device-dock span {
  display: grid;
  place-items: center;
  min-height: 46px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  font-weight: 650;
}

.setup-guide-motion .setup-device-dock span + span {
  border-left: 1px solid rgba(17, 17, 17, 0.07);
}

.setup-guide-motion .setup-cursor {
  position: absolute;
  z-index: 8;
  left: 73%;
  top: 62%;
  width: 18px;
  height: 24px;
  background: #111111;
  clip-path: polygon(0 0, 0 100%, 34% 74%, 53% 100%, 70% 92%, 51% 68%, 100% 68%);
  filter: drop-shadow(0 10px 12px rgba(17, 17, 17, 0.2));
  animation: setup-guide-cursor 20s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes setup-guide-slide-1 {
  0%, 18% { opacity: 1; transform: translateY(0); }
  20%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes setup-guide-slide-2 {
  0%, 18% { opacity: 0; transform: translateY(12px); }
  20%, 38% { opacity: 1; transform: translateY(0); }
  40%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes setup-guide-slide-3 {
  0%, 38% { opacity: 0; transform: translateY(12px); }
  40%, 58% { opacity: 1; transform: translateY(0); }
  60%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes setup-guide-slide-4 {
  0%, 58% { opacity: 0; transform: translateY(12px); }
  60%, 78% { opacity: 1; transform: translateY(0); }
  80%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes setup-guide-slide-5 {
  0%, 78% { opacity: 0; transform: translateY(12px); }
  80%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes setup-guide-progress {
  0% { width: 20%; }
  20% { width: 20%; }
  21% { width: 40%; }
  40% { width: 40%; }
  41% { width: 60%; }
  60% { width: 60%; }
  61% { width: 80%; }
  80% { width: 80%; }
  81% { width: 100%; }
  100% { width: 100%; }
}

@keyframes setup-step-idle {
  0%, 100% {
    color: rgba(17, 17, 17, 0.44);
    border-color: rgba(17, 17, 17, 0.07);
    background: rgba(255, 255, 255, 0.58);
  }
}

@keyframes setup-step-1 {
  0%, 18% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
  20%, 100% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
}

@keyframes setup-step-2 {
  0%, 18% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  20%, 38% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
  40%, 100% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
}

@keyframes setup-step-3 {
  0%, 38% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  40%, 58% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
  60%, 100% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
}

@keyframes setup-step-4 {
  0%, 58% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  60%, 78% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
  80%, 100% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
}

@keyframes setup-step-5 {
  0%, 78% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  80%, 100% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
}

@keyframes setup-install-chip {
  0%, 18% { opacity: 0; transform: translateY(10px) scale(0.98); }
  20%, 38% { opacity: 1; transform: translateY(0) scale(1); }
  40%, 100% { opacity: 0; transform: translateY(-8px) scale(0.98); }
}

@keyframes setup-guide-cursor {
  0%, 15% { left: 68%; top: 67%; transform: scale(1); }
  20%, 27% { left: 80%; top: 18%; transform: scale(0.92); }
  33%, 39% { left: 76%; top: 20%; transform: scale(1); }
  44%, 52% { left: 72%; top: 66%; transform: scale(0.92); }
  58%, 62% { left: 76%; top: 66%; transform: scale(1); }
  66%, 74% { left: 76%; top: 65%; transform: scale(0.92); }
  82%, 100% { left: 71%; top: 64%; transform: scale(1); }
}

@media (max-width: 1140px) {
  .setup-guide-motion.setup-story {
    grid-template-columns: 1fr;
  }

  .setup-guide-copy {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }

  .setup-guide-copy h2 {
    margin-right: auto;
    margin-left: auto;
  }

  .setup-guide-points {
    justify-content: center;
  }

  .setup-guide-stage {
    width: min(900px, 100%);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .setup-guide-motion.setup-story {
    padding:
      76px
      18px
      68px;
  }

  .setup-guide-copy h2 {
    font-size: clamp(42px, 12.4vw, 58px);
  }

  .setup-guide-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .setup-guide-stage {
    min-height: 650px;
  }

  .setup-guide-browser {
    min-height: 590px;
    border-radius: 30px;
  }

  .setup-guide-browser-top {
    grid-template-columns: 9px 9px 9px minmax(0, 1fr);
    min-height: 50px;
    padding: 0 14px;
  }

  .setup-guide-browser-top span {
    width: 8px;
    height: 8px;
  }

  .setup-guide-browser-top strong {
    padding: 8px 10px;
    font-size: 10px;
  }

  .setup-guide-screen {
    min-height: 540px;
    padding: 18px;
  }

  .setup-guide-app-bg {
    display: none;
  }

  .setup-guide-modal {
    width: 100%;
    min-height: 486px;
    margin: 0;
    border-radius: 26px;
    grid-template-rows: 138px 4px minmax(0, 1fr) auto;
  }

  .setup-guide-modal-hero {
    padding: 18px;
  }

  .setup-guide-hero-copy {
    left: 18px;
    right: 62px;
  }

  .setup-guide-hero-copy h3 {
    font-size: 23px;
  }

  .setup-guide-hero-copy span {
    font-size: 12px;
  }

  .setup-guide-body {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .setup-guide-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  .setup-guide-steps span {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 46px;
    padding: 7px 4px;
  }

  .setup-guide-steps strong {
    display: none;
  }

  .setup-guide-card {
    min-height: 210px;
  }

  .setup-checklist span,
  .setup-profile-fields label,
  .setup-license-form,
  .setup-drive-card {
    min-height: 44px;
    font-size: 12px;
  }

  .setup-guide-footer {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 14px 14px;
  }

  .setup-guide-motion .setup-install-chip {
    right: 26px;
    top: 70px;
    min-width: 0;
    width: calc(100% - 52px);
  }

  .setup-guide-motion .setup-device-dock {
    width: calc(100% - 44px);
    bottom: 16px;
  }

  .setup-guide-motion .setup-device-dock span {
    min-height: 42px;
  }

  .setup-guide-motion .setup-cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .setup-guide-hero-copy,
  .setup-card-panel,
  .setup-guide-progress span,
  .setup-guide-steps span,
  .setup-guide-motion .setup-install-chip,
  .setup-guide-motion .setup-cursor {
    animation: none;
  }

  .setup-hero-preview,
  .setup-card-preview {
    opacity: 1;
    transform: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 159, 26, 0.19), transparent 30%),
    radial-gradient(circle at 86% 0%, rgba(216, 95, 210, 0.18), transparent 32%),
    linear-gradient(135deg, #f4f6fb 0%, #eceff6 52%, #f8eff7 100%);
}

a {
  color: inherit;
}

.site-header,
.hero,
.section,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(248, 249, 252, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 42px rgba(77, 88, 113, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  font-weight: 760;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 32px rgba(216, 95, 210, 0.22);
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--soft-text);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  padding: 0 13px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.58);
}

.scroll-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 360vh;
  margin: 0 auto;
  padding: 0;
}

.scroll-hero-inner {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 0.96fr);
  gap: 38px;
  align-items: center;
  padding: 96px 0 54px;
}

.hero-story-copy {
  position: relative;
  min-height: clamp(560px, 57vh, 650px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.story-scene {
  position: absolute;
  inset: 42px 0 auto 0;
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.story-scene.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.story-scene h1 {
  max-width: 740px;
  margin-top: 13px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.02;
}

.story-scene[data-story-scene="3"] h1 {
  font-size: clamp(37px, 4.5vw, 58px);
}

.story-scene .lead {
  max-width: 620px;
}

.hero-story-actions {
  position: relative;
  z-index: 3;
  margin-top: 0;
  width: min(100%, 560px);
}

.hero-device-stage {
  position: relative;
  min-height: 600px;
  isolation: isolate;
  perspective: 1800px;
  transform-style: preserve-3d;
}

.stage-glow {
  position: absolute;
  inset: 18px -6px 4px;
  border-radius: 52px;
  background:
    radial-gradient(circle at 44% 36%, rgba(255, 255, 255, 0.78), transparent 28%),
    radial-gradient(circle at 82% 38%, rgba(216, 95, 210, 0.16), transparent 34%),
    radial-gradient(circle at 26% 70%, rgba(255, 159, 26, 0.18), transparent 32%);
  filter: blur(10px);
  opacity: 0.86;
  z-index: 0;
}

.stage-floor {
  position: absolute;
  left: 7%;
  right: 2%;
  bottom: 38px;
  height: 158px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 36%, rgba(36, 44, 60, 0.18), rgba(74, 88, 112, 0.07) 44%, transparent 72%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  filter: blur(8px);
  transform: rotateX(68deg) translateZ(-74px);
  transform-origin: center;
  z-index: 0;
}

.light-ribbon {
  position: absolute;
  width: 430px;
  height: 130px;
  border: 1px solid rgba(255, 159, 26, 0.34);
  border-top-color: rgba(216, 95, 210, 0.45);
  border-bottom-color: transparent;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0;
  transform: rotate(-10deg) scale(0.86);
  transition:
    opacity 620ms ease,
    transform 880ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.light-ribbon::before,
.light-ribbon::after {
  content: "";
  position: absolute;
  inset: 22px 36px auto auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 24px rgba(216, 95, 210, 0.42);
}

.ribbon-one {
  right: 44px;
  bottom: 158px;
}

.ribbon-two {
  left: 64px;
  bottom: 146px;
  width: 360px;
  height: 110px;
  border-color: rgba(255, 159, 26, 0.24);
  border-left-color: transparent;
  transform: rotate(9deg) scale(0.82);
}

.device {
  position: absolute;
  margin: 0;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition:
    transform 940ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 640ms ease,
    filter 640ms ease;
  z-index: 3;
}

.device-label {
  position: absolute;
  left: 50%;
  top: -42px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(132, 143, 160, 0.26);
  border-radius: 999px;
  color: rgba(16, 19, 26, 0.68);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(77, 88, 113, 0.12);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.02em;
  padding: 0 13px;
  opacity: 0;
  transform: translate3d(-50%, 12px, 0) scale(0.96);
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  white-space: nowrap;
  z-index: 10;
}

.screen-glass {
  position: absolute;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    #f7f9fc;
}

.scene-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left top;
  opacity: 0;
  transition:
    opacity 520ms ease,
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
  transform: scale(1.015);
  will-change: opacity;
}

.scene-shot.is-active {
  opacity: 1;
  transform: scale(1);
}

.device-camera {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(20, 24, 33, 0.46);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
  z-index: 8;
}

.device-laptop {
  width: min(620px, 84vw);
  height: 412px;
  top: 84px;
  right: 0;
  transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(-6deg) rotateZ(-1deg) scale(1);
  z-index: 5;
}

.laptop-lid {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 352px;
  border: 1px solid rgba(132, 143, 160, 0.34);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(226, 232, 242, 0.74)),
    #eef2f8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -20px 42px rgba(77, 88, 113, 0.08),
    0 34px 90px rgba(77, 88, 113, 0.24);
  overflow: hidden;
  z-index: 2;
}

.laptop-lid::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 42%);
  pointer-events: none;
  z-index: 7;
}

.laptop-lid .screen-glass {
  inset: 18px 18px 20px;
  border-radius: 19px;
  box-shadow:
    inset 0 0 0 1px rgba(132, 143, 160, 0.18),
    inset 0 0 42px rgba(16, 19, 26, 0.04);
}

.laptop-base {
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 4px;
  height: 84px;
  border-radius: 16px 16px 42px 42px;
  background:
    linear-gradient(180deg, rgba(250, 251, 254, 0.94), rgba(196, 207, 224, 0.88)),
    #dfe5ee;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 28px 64px rgba(77, 88, 113, 0.2);
  transform: perspective(520px) rotateX(64deg);
  transform-origin: top;
  z-index: 1;
}

.laptop-base span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 132px;
  height: 13px;
  border-radius: 999px;
  background: rgba(132, 143, 160, 0.18);
  transform: translateX(-50%);
}

.device-tablet {
  width: 318px;
  aspect-ratio: 0.74;
  left: 16px;
  bottom: 70px;
  transform: translate3d(22px, 20px, -20px) rotateX(0deg) rotateY(9deg) rotateZ(2deg) scale(0.9);
  z-index: 6;
}

.tablet-shell {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(84, 95, 116, 0.36);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(219, 226, 239, 0.82)),
    #edf1f7;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -24px 38px rgba(77, 88, 113, 0.08),
    0 32px 88px rgba(77, 88, 113, 0.24);
  overflow: hidden;
}

.tablet-shell .screen-glass {
  inset: 24px 16px 18px;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(132, 143, 160, 0.18);
}

.device-phone {
  width: 172px;
  aspect-ratio: 0.48;
  right: 46px;
  bottom: 48px;
  transform: translate3d(12px, 16px, 30px) rotateX(0deg) rotateY(-11deg) rotateZ(4deg) scale(0.92);
  z-index: 7;
}

.phone-shell {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(33, 39, 52, 0.46);
  border-radius: 36px;
  background:
    linear-gradient(140deg, rgba(64, 72, 90, 0.78), rgba(12, 16, 23, 0.86)),
    #171c25;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset -9px 0 18px rgba(255, 255, 255, 0.07),
    0 32px 88px rgba(47, 58, 79, 0.3);
  overflow: hidden;
}

.phone-shell .screen-glass {
  inset: 11px 8px 10px;
  border-radius: 29px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone-notch {
  position: absolute;
  left: 50%;
  top: 17px;
  width: 54px;
  height: 17px;
  border-radius: 999px;
  background: rgba(12, 16, 23, 0.88);
  transform: translateX(-50%);
  z-index: 12;
}

.chaos-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.chaos-card {
  position: absolute;
  border: 1px solid rgba(132, 143, 160, 0.24);
  border-radius: 999px;
  color: var(--soft-text);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 38px rgba(77, 88, 113, 0.14);
  font-size: 12px;
  font-weight: 730;
  padding: 10px 12px;
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  transition:
    opacity 420ms ease,
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.c1 { top: 68px; left: 12px; }
.c2 { top: 150px; right: 28px; }
.c3 { bottom: 170px; left: 80px; }
.c4 { bottom: 100px; right: 150px; }

.sync-orbit {
  position: absolute;
  inset: 92px 86px 86px 52px;
  border: 1px solid rgba(255, 159, 26, 0.18);
  border-radius: 46% 54% 49% 51%;
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 500ms ease,
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.sync-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 8px rgba(255, 159, 26, 0.1);
}

.sync-orbit span:nth-child(1) { top: 16%; left: 12%; }
.sync-orbit span:nth-child(2) { top: 42%; right: 9%; }
.sync-orbit span:nth-child(3) { bottom: 12%; left: 48%; }

.story-progress {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
  z-index: 8;
}

.story-progress span {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(132, 143, 160, 0.28);
}

.scroll-hero[data-scene="0"] .story-progress span:nth-child(1),
.scroll-hero[data-scene="1"] .story-progress span:nth-child(2),
.scroll-hero[data-scene="2"] .story-progress span:nth-child(3),
.scroll-hero[data-scene="3"] .story-progress span:nth-child(4) {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.scroll-hero[data-scene="1"] .chaos-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-hero[data-scene="1"] .device-desktop .device-label,
.scroll-hero[data-scene="2"] .device-tablet .device-label,
.scroll-hero[data-scene="3"] .device-phone .device-label {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.scroll-hero[data-scene="1"] .device-desktop {
  filter: saturate(1.06);
  transform: translate3d(-18px, -10px, 70px) rotateX(0deg) rotateY(-2deg) rotateZ(-0.5deg) scale(1.05);
  opacity: 1;
  z-index: 9;
}

.scroll-hero[data-scene="1"] .device-tablet {
  filter: saturate(0.82);
  transform: translate3d(-54px, 46px, -130px) rotateX(0deg) rotateY(14deg) rotateZ(-8deg) scale(0.72);
  opacity: 0.62;
  z-index: 4;
}

.scroll-hero[data-scene="1"] .device-phone {
  filter: saturate(0.82);
  transform: translate3d(44px, 46px, -100px) rotateX(0deg) rotateY(-18deg) rotateZ(8deg) scale(0.74);
  opacity: 0.64;
  z-index: 5;
}

.scroll-hero[data-scene="2"] .device-desktop {
  filter: saturate(0.74);
  transform: translate3d(150px, 26px, -180px) rotateX(0deg) rotateY(-14deg) rotateZ(2deg) scale(0.7);
  opacity: 0.46;
  z-index: 3;
}

.scroll-hero[data-scene="2"] .device-tablet {
  filter: saturate(1.08);
  transform: translate3d(112px, -26px, 96px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.12);
  opacity: 1;
  z-index: 9;
}

.scroll-hero[data-scene="2"] .device-phone {
  filter: saturate(0.84);
  transform: translate3d(28px, 42px, -64px) rotateX(0deg) rotateY(-16deg) rotateZ(7deg) scale(0.78);
  opacity: 0.66;
  z-index: 5;
}

.scroll-hero[data-scene="3"] .sync-orbit {
  opacity: 1;
  transform: scale(1);
}

.scroll-hero[data-scene="2"] .ribbon-one,
.scroll-hero[data-scene="2"] .ribbon-two,
.scroll-hero[data-scene="3"] .ribbon-one,
.scroll-hero[data-scene="3"] .ribbon-two {
  opacity: 1;
}

.scroll-hero[data-scene="2"] .ribbon-one {
  transform: rotate(-4deg) scale(1);
}

.scroll-hero[data-scene="2"] .ribbon-two {
  transform: rotate(8deg) scale(1);
}

.scroll-hero[data-scene="3"] .ribbon-one {
  transform: translate3d(-74px, -10px, 0) rotate(-12deg) scale(1.05);
}

.scroll-hero[data-scene="3"] .ribbon-two {
  transform: translate3d(88px, 4px, 0) rotate(4deg) scale(0.96);
}

.scroll-hero[data-scene="3"] .device-desktop {
  filter: saturate(0.76);
  transform: translate3d(38px, 28px, -200px) rotateX(0deg) rotateY(-10deg) rotateZ(-1deg) scale(0.66);
  opacity: 0.48;
  z-index: 3;
}

.scroll-hero[data-scene="3"] .device-tablet {
  filter: saturate(0.82);
  transform: translate3d(-42px, 42px, -92px) rotateX(0deg) rotateY(14deg) rotateZ(3deg) scale(0.78);
  opacity: 0.64;
  z-index: 4;
}

.scroll-hero[data-scene="3"] .device-phone {
  filter: saturate(1.06);
  transform: translate3d(-120px, -52px, 130px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.24);
  opacity: 1;
  z-index: 10;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 36px;
  align-items: center;
  padding: 76px 0 38px;
}

.eyebrow,
.panel-label {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  margin-top: 13px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin-top: 24px;
  color: var(--soft-text);
  font-size: 17px;
  line-height: 1.62;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 26px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
  padding: 0 18px;
}

.btn.primary {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 36px rgba(216, 95, 210, 0.23);
}

.btn.soft {
  color: var(--soft-text);
}

.trust-note {
  max-width: 640px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero-panel {
  min-width: 0;
}

.device-frame {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(248, 249, 252, 0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screenshot-frame {
  transform: rotate(-1deg);
}

.frame-top {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.frame-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(132, 143, 160, 0.36);
}

.workspace-screenshot {
  aspect-ratio: 1.35;
  background: rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.workspace-screenshot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left top;
}

.product-card,
.price-card,
.pillars article,
.data-grid article,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.section {
  padding: 54px 0 0;
}

.product-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
}

.product-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-text);
  background: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 680;
  padding: 10px 12px;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.section-head h2,
.story h2,
.faq h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p,
.story p,
.pillars p,
.data-grid p,
.price-card p,
.faq p,
.site-footer p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.product-card {
  grid-column: span 2;
  min-height: 252px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.product-card.is-available {
  background: rgba(255, 255, 255, 0.62);
}

.status {
  width: fit-content;
  border-radius: 999px;
  background: rgba(7, 151, 107, 0.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 720;
  padding: 7px 10px;
}

.status.wait {
  color: #a56a00;
  background: rgba(255, 159, 26, 0.12);
}

.product-card h3,
.price-card h3,
.pillars h3,
.data-grid h3 {
  margin-top: 16px;
  font-size: 20px;
  line-height: 1.12;
}

.product-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-text);
  background: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 650;
  padding: 7px 9px;
}

.card-link {
  margin-top: auto;
  color: var(--text);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  padding-top: 20px;
}

.card-link.muted {
  color: var(--soft-text);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.pillars,
.data-grid,
.pricing-grid,
.fit-grid,
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.pillars article,
.data-grid article,
.fit-grid article,
.workflow-grid article,
.price-card {
  padding: 20px;
}

.fit-grid article,
.workflow-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.fit-grid p,
.workflow-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.data-grid article span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.pricing-grid {
  align-items: stretch;
}

.price-card.featured {
  background: rgba(255, 255, 255, 0.66);
}

.price {
  margin: 14px 0 10px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.price s {
  margin-right: 8px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
}

.price-card .btn {
  width: fit-content;
  margin-top: 18px;
}

.price-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 22px;
  padding-bottom: 58px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-size: 15px;
  font-weight: 720;
}

.faq p {
  margin-top: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 38px;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  font-size: 18px;
}

.site-footer p {
  margin-top: 5px;
}

.site-footer .footer-links {
  margin-top: 0;
}

.footer-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--soft-text);
  background: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 0 14px;
}

@media (min-width: 721px) and (max-width: 980px) {
  .scroll-hero {
    min-height: 340vh;
  }

  .scroll-hero-inner {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 20px;
    padding-top: 92px;
  }

  .hero-story-copy {
    min-height: 470px;
  }

  .story-scene {
    inset: 20px 0 auto 0;
  }

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

  .device-desktop {
    width: min(620px, 80vw);
    height: 402px;
    top: 24px;
    right: 8px;
  }

  .laptop-lid {
    height: 344px;
  }

  .device-tablet {
    width: 250px;
    left: 0;
    bottom: 38px;
  }

  .device-phone {
    width: 132px;
    right: 26px;
    bottom: 18px;
  }

  .scroll-hero[data-scene="1"] .device-desktop {
    transform: translate3d(-6px, -10px, 70px) rotateX(0deg) rotateY(-2deg) rotateZ(-0.5deg) scale(1.02);
  }

  .scroll-hero[data-scene="1"] .device-tablet {
    transform: translate3d(-38px, 38px, -120px) rotateX(0deg) rotateY(14deg) rotateZ(-8deg) scale(0.72);
  }

  .scroll-hero[data-scene="1"] .device-phone {
    transform: translate3d(18px, 42px, -90px) rotateX(0deg) rotateY(-18deg) rotateZ(8deg) scale(0.72);
  }

  .scroll-hero[data-scene="2"] .device-tablet {
    transform: translate3d(74px, -6px, 96px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.06);
  }

  .scroll-hero[data-scene="3"] .device-phone {
    transform: translate3d(-78px, -26px, 130px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.14);
  }

  .hero,
  .story,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .product-card {
    grid-column: span 3;
  }

  .pillars,
  .data-grid,
  .pricing-grid,
  .fit-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    width: min(100% - 24px, 1180px);
  }

  .scroll-hero {
    width: min(100% - 24px, 1180px);
    min-height: auto;
    padding: 36px 0 22px;
  }

  .scroll-hero-inner {
    position: relative;
    min-height: 0;
    display: grid;
    padding: 0;
  }

  .hero-story-copy {
    min-height: 0;
    display: grid;
    gap: 22px;
  }

  .story-scene {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(132, 143, 160, 0.18);
  }

  .story-scene:not(:first-child) h1 {
    font-size: 30px;
    line-height: 1.04;
  }

  .story-scene:not(:first-child) .lead {
    font-size: 14px;
  }

  .hero-story-actions {
    margin-top: 0;
  }

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

  .device-desktop {
    width: min(330px, calc(100vw - 34px));
    height: 220px;
    top: 28px;
    right: 0;
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(-7deg) rotateZ(-1deg) scale(1);
  }

  .laptop-lid {
    height: 188px;
    border-radius: 19px;
  }

  .laptop-lid .screen-glass {
    inset: 10px 10px 12px;
    border-radius: 13px;
  }

  .laptop-base {
    bottom: 4px;
    height: 34px;
    border-radius: 10px 10px 24px 24px;
  }

  .laptop-base span {
    width: 84px;
    height: 8px;
  }

  .device-tablet {
    width: 142px;
    left: 4px;
    bottom: 54px;
    transform: translate3d(0, 0, 28px) rotateX(0deg) rotateY(10deg) rotateZ(-3deg) scale(1);
  }

  .tablet-shell {
    border-radius: 20px;
  }

  .tablet-shell .screen-glass {
    inset: 14px 9px 10px;
    border-radius: 13px;
  }

  .device-phone {
    width: 84px;
    right: 44px;
    bottom: 46px;
    transform: translate3d(0, 0, 44px) rotateX(0deg) rotateY(-8deg) rotateZ(4deg) scale(1);
  }

  .phone-shell {
    border-radius: 21px;
  }

  .phone-shell .screen-glass {
    inset: 6px 4px 5px;
    border-radius: 17px;
  }

  .phone-notch {
    top: 9px;
    width: 30px;
    height: 9px;
  }

  .device-camera {
    top: 6px;
    width: 5px;
    height: 5px;
  }

  .stage-floor {
    left: 0;
    right: 0;
    bottom: 30px;
    height: 96px;
  }

  .stage-glow {
    inset: 14px -10px 0;
  }

  .device-label,
  .chaos-card,
  .light-ribbon,
  .sync-orbit,
  .story-progress {
    display: none;
  }

  .site-header {
    position: static;
    align-items: flex-start;
  }

  .site-nav {
    max-width: 48vw;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .site-nav a {
    min-height: 32px;
    padding: 0 9px;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 15px;
  }

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

  .product-card {
    grid-column: span 1;
    min-height: 0;
  }

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

/* Full public landing direction: Assemble-like calm system, original Owmii content. */
body {
  background:
    radial-gradient(circle at 50% 18%, rgba(237, 255, 102, 0.12), transparent 18%),
    linear-gradient(rgba(17, 18, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 20, 0.028) 1px, transparent 1px),
    #f8f8f6;
  background-size: auto, 74px 74px, 74px 74px, auto;
}

.site-header,
.section,
.manifesto-panel,
.data-split,
.site-footer {
  width: min(100% - 32px, 1440px);
}

.section,
.manifesto-panel,
.data-split {
  margin: 0 auto;
}

.site-header {
  top: 0;
  width: min(100% - 28px, 1440px);
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: rgba(248, 248, 246, 0.84);
  box-shadow: none;
  padding: 18px 0 12px;
}

.brand {
  gap: 9px;
}

.brand-mark {
  width: 21px;
  height: 21px;
  border: 3px solid #111214;
  border-radius: 50%;
  color: transparent;
  background: transparent;
  box-shadow: none;
}

.brand strong {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.brand small {
  display: none;
}

.site-nav {
  gap: 22px;
}

.site-nav a {
  min-height: 34px;
  color: rgba(17, 18, 20, 0.64);
  font-size: 13px;
  font-weight: 620;
  padding: 0;
}

.site-nav a:hover {
  color: #111214;
  background: transparent;
}

.site-nav a:last-child {
  min-height: 44px;
  color: #fff;
  background: #111214;
  border-radius: 999px;
  padding: 0 24px;
}

.manifesto-panel {
  min-height: 600px;
  margin-top: 0;
  color: #111214;
  background:
    radial-gradient(circle at 20% 12%, rgba(237, 255, 102, 0.34), transparent 18%),
    radial-gradient(circle at 80% 20%, rgba(17, 18, 20, 0.05), transparent 18%),
    #fffdf6;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 46px;
  box-shadow: 0 34px 90px rgba(17, 18, 20, 0.08);
  padding: clamp(34px, 5vw, 76px);
}

.manifesto-panel > div {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.panel-label {
  color: rgba(17, 18, 20, 0.58);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.14em;
}

.manifesto-panel h2,
.section-head h2,
.data-split-copy h2,
.faq h2 {
  color: #111214;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.manifesto-panel p:not(.eyebrow),
.section-head p,
.data-split-copy p:not(.eyebrow),
.price-card p,
.product-card p,
.faq p,
.site-footer p {
  color: rgba(17, 18, 20, 0.58);
  font-size: 15px;
  line-height: 1.58;
}

.manifesto-panel p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px auto 0;
}

.data-split {
  min-height: 560px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(24px, 6vw, 72px);
  border-radius: 46px;
  background:
    radial-gradient(circle at 20% 50%, rgba(42, 196, 142, 0.12), transparent 28%),
    #f4f9ee;
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 34px 90px rgba(17, 18, 20, 0.06);
}

.data-split-diagram {
  min-height: 300px;
}

.data-node {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 26px 68px rgba(17, 18, 20, 0.08);
}

.data-bridge {
  border-top-color: rgba(17, 18, 20, 0.2);
}

.trust-list {
  gap: 10px 18px;
  margin-top: 22px;
}

.trust-list li {
  min-height: 34px;
  border: 0;
  background: transparent;
  color: rgba(17, 18, 20, 0.72);
  font-size: 14px;
  font-weight: 620;
  padding: 0 0 0 30px;
}

.trust-list li::before {
  left: 0;
  background: rgba(38, 167, 99, 0.12);
  color: #07976b;
}

.section {
  padding: clamp(64px, 8vw, 116px) 0 0;
}

.section-head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.section-head h2 {
  max-width: 940px;
  margin: 0 auto;
}

.section-head p {
  max-width: 710px;
  margin: 0 auto;
}

.product-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.product-card {
  grid-column: span 4;
  min-height: 270px;
  border-color: rgba(17, 18, 20, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    0 18px 54px rgba(17, 18, 20, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  padding: 24px;
}

.product-card.is-available {
  background:
    radial-gradient(circle at 88% 8%, rgba(237, 255, 102, 0.22), transparent 24%),
    rgba(255, 255, 255, 0.78);
}

.status {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(17, 18, 20, 0.09);
  color: rgba(17, 18, 20, 0.72);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 650;
  padding: 0 11px;
}

.status.wait {
  color: rgba(17, 18, 20, 0.58);
  background: rgba(255, 255, 255, 0.58);
}

.product-card h3,
.price-card h3 {
  color: #111214;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.chips span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-color: rgba(17, 18, 20, 0.08);
  color: rgba(17, 18, 20, 0.58);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 620;
}

.card-link {
  min-height: 38px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #111214;
  background: rgba(237, 255, 102, 0.56);
  font-size: 13px;
  font-weight: 650;
  padding: 0 15px;
}

.card-link.muted {
  color: rgba(17, 18, 20, 0.62);
  background: rgba(255, 255, 255, 0.64);
}

.pricing {
  padding-bottom: clamp(40px, 6vw, 80px);
}

.pricing-grid {
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 18px;
  margin-top: 34px;
}

.price-card {
  border-color: rgba(17, 18, 20, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 54px rgba(17, 18, 20, 0.06);
  padding: 28px;
}

.price-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(237, 255, 102, 0.14), transparent 28%),
    #111214;
}

.price-card.featured h3,
.price-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.price-card.featured .status {
  color: #111214;
  background: #edff66;
}

.price {
  color: inherit;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 650;
  letter-spacing: -0.05em;
}

.price span {
  margin-left: 6px;
  color: rgba(117, 117, 117, 0.78);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.price s {
  color: rgba(132, 143, 160, 0.82);
  font-weight: 620;
}

.price-subline {
  margin-top: 8px;
}

.price-card.featured .price span,
.price-card.featured li,
.price-card.featured .price-subline {
  color: rgba(255, 255, 255, 0.72);
}

.price-card ul {
  padding-left: 0;
  list-style: none;
  margin: 22px 0 0;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(17, 18, 20, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(38, 167, 99, 0.13);
  box-shadow: inset 0 0 0 5px #07976b;
}

.pricing-note {
  width: min(100%, 760px);
  margin: 22px auto 0;
  color: rgba(17, 18, 20, 0.5);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.faq {
  width: min(100% - 32px, 1440px);
  margin: 0 auto;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 82px);
  padding: clamp(54px, 7vw, 90px) clamp(22px, 5vw, 58px);
  border-radius: 46px;
  background: #fff;
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 34px 90px rgba(17, 18, 20, 0.06);
}

.faq h2 {
  max-width: 380px;
}

.faq-list {
  gap: 12px;
}

.faq details {
  border-color: rgba(17, 18, 20, 0.08);
  border-radius: 22px;
  background: #f8f8f6;
  padding: 18px 20px;
}

.faq summary {
  color: #111214;
  font-size: 16px;
  font-weight: 650;
}

.site-footer {
  width: min(100% - 32px, 1440px);
  margin: 0 auto;
  border-top-color: rgba(17, 18, 20, 0.08);
  padding: 32px 0 44px;
}

.site-footer strong {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  background: #fff;
  border: 1px solid rgba(17, 18, 20, 0.08);
  color: rgba(17, 18, 20, 0.68);
}

@media (min-width: 721px) and (max-width: 980px) {
  .product-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    grid-column: span 1;
  }

  .data-split,
  .faq {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-nav a:not(:last-child) {
    display: none;
  }

  .manifesto-panel,
  .data-split,
  .faq {
    border-radius: 30px;
  }

  .manifesto-panel h2,
  .section-head h2,
  .data-split-copy h2,
  .faq h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .product-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Assemble typography parity for the public landing prototype. */
@font-face {
  font-family: "Anthro Trial";
  src: url("https://framerusercontent.com/assets/NgVihOovr37GdVn0xsfR7uBk7R0.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Anthro Trial";
  src: url("https://framerusercontent.com/assets/BEm6FDGq9LRVrcaAVg74lEKsYRs.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Anthro Trial Book";
  src: url("https://framerusercontent.com/assets/BEm6FDGq9LRVrcaAVg74lEKsYRs.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Anthro Trial";
  src: url("https://framerusercontent.com/assets/Jk7Fhm8OODIzQa2OYLGJrWgLudM.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Anthro Trial";
  src: url("https://framerusercontent.com/assets/6blnji5Rpzn0tjyLy0HwM4JRU8.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Anthro Trial Semi-Bold";
  src: url("https://framerusercontent.com/assets/6blnji5Rpzn0tjyLy0HwM4JRU8.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Fragment Mono";
  src: url("https://fonts.gstatic.com/s/fragmentmono/v6/4iCr6K5wfMRRjxp0DA6-2CLnB4NHhg.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --owmii-display-font: "Anthro Trial", "Helvetica Neue", Arial, sans-serif;
  --owmii-body-font: "Anthro Trial", "Helvetica Neue", Arial, sans-serif;
  --owmii-hero-font: "Anthro Trial Semi-Bold", "Anthro Trial", "Helvetica Neue", Arial, sans-serif;
  --owmii-book-font: "Anthro Trial Book", "Anthro Trial", "Helvetica Neue", Arial, sans-serif;
  --owmii-mono-font: "Fragment Mono", "SFMono-Regular", ui-monospace, monospace;
  --owmii-action-bg: #222222;
  --text: #111111;
  --muted: #757575;
  --soft-text: #333333;
  --line: rgba(17, 17, 17, 0.1);
  --accent: #f1fd82;
  font-family: var(--owmii-body-font);
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--owmii-body-font);
  color: #111111;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

p,
li,
small,
label,
input,
select,
textarea {
  color: #757575;
  font-weight: 400;
}

.brand strong {
  color: #111111;
  font-family: var(--owmii-display-font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.site-nav a {
  color: #757575;
  font-family: var(--owmii-body-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.site-nav a:hover {
  color: #111111;
}

.site-nav a:last-child {
  color: #ffffff;
  background: var(--owmii-action-bg);
  font-size: 14px;
  font-weight: 500;
}

.assemble-hero .hero-pill,
.hero-pill,
.section-kicker,
.status,
.metric-label,
.trust-row,
.micro-copy {
  color: #111111;
  font-family: var(--owmii-body-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.assemble-hero .hero-pill {
  color: #757575;
}

.assemble-hero .motion-copy h1,
.assemble-hero .motion-copy-card:not(:first-child) h1,
.manifesto-panel h2,
.section-head h2,
.data-split-copy h2,
.faq h2 {
  color: #111111;
  font-family: var(--owmii-display-font);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.064em;
}

.assemble-hero .motion-copy h1,
.assemble-hero .motion-copy-card:not(:first-child) h1 {
  font-size: clamp(62px, 6.35vw, 94px);
}

.assemble-hero .motion-copy h1 span {
  color: #111111;
  background: #f1fd82;
}

.assemble-hero .motion-copy .lead {
  color: #333333;
  font-family: var(--owmii-body-font);
  font-size: clamp(18px, 1.48vw, 22px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.024em;
}

.assemble-hero .hero-trust-note {
  color: #757575;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.012em;
}

.assemble-hero .motion-fragment {
  color: #111111;
  font-family: var(--owmii-body-font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.016em;
}

.btn,
.pill-link,
.product-card .btn,
.price-card .btn,
.footer-links a {
  font-family: var(--owmii-body-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.manifesto-panel h2,
.section-head h2,
.data-split-copy h2,
.faq h2 {
  font-size: clamp(46px, 5vw, 76px);
}

.section-head p,
.manifesto-panel p,
.data-split-copy p,
.product-card p,
.price-card p,
.faq p,
.faq li {
  color: #757575;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.012em;
}

.product-card h3,
.price-card h3,
.faq summary {
  color: #111111;
  font-family: var(--owmii-display-font);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.032em;
}

.price {
  color: #111111;
  font-family: var(--owmii-display-font);
  font-weight: 500;
  letter-spacing: -0.055em;
}

@media (max-width: 720px) {
  .assemble-hero .motion-copy h1,
  .assemble-hero .motion-copy-card:not(:first-child) h1,
  .manifesto-panel h2,
  .section-head h2,
  .data-split-copy h2,
  .faq h2 {
    font-size: clamp(38px, 11vw, 54px);
    letter-spacing: -0.058em;
  }

  .assemble-hero .motion-copy .lead {
    font-size: 17px;
    line-height: 1.36;
  }
}

/* Assemble-reference hero reset: keep Owmii story, replace old visual shell. */
.assemble-hero {
  min-height: 392vh;
}

.assemble-hero .motion-hero-sticky {
  padding-top: 50px;
}

.assemble-hero .motion-copy {
  position: relative;
  min-height: 410px;
  isolation: isolate;
}

.assemble-hero .motion-copy-card {
  z-index: 2;
}

.assemble-hero .motion-copy h1 {
  max-width: 980px;
  font-size: clamp(56px, 6vw, 86px);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: -0.056em;
}

.assemble-hero .motion-copy h1 span {
  display: inline;
  border-radius: 999px;
  background: #edff66;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.08em 0.035em;
}

.assemble-hero .motion-copy .lead {
  max-width: 760px;
  color: rgba(17, 18, 20, 0.64);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.44;
}

.assemble-hero .hero-trust-note {
  max-width: 620px;
  margin: 16px auto 0;
  color: rgba(17, 18, 20, 0.56);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.assemble-hero .motion-actions {
  top: 356px;
}

.assemble-hero .motion-fragments {
  position: absolute;
  left: 50%;
  top: 18px;
  width: min(980px, 100%);
  height: 330px;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.assemble-hero .motion-fragment {
  min-width: auto;
  min-height: 58px;
  border-color: rgba(17, 18, 20, 0.09);
  border-radius: 19px;
  color: rgba(17, 18, 20, 0.66);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 22px 48px rgba(17, 18, 20, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.96) inset;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.01em;
  padding: 0 15px;
  backdrop-filter: blur(14px);
}

.assemble-hero .fragment-payment { left: 7%; top: 42px; transform: rotate(-7deg); }
.assemble-hero .fragment-note { right: 8%; top: 26px; transform: rotate(7deg); }
.assemble-hero .fragment-file { left: 13%; bottom: 38px; transform: rotate(-9deg); }
.assemble-hero .fragment-gap { right: 12%; bottom: 42px; transform: rotate(8deg); }
.assemble-hero .fragment-closeout { left: 42%; top: 0; transform: rotate(-3deg); }
.assemble-hero .fragment-follow { right: 39%; bottom: 8px; transform: rotate(4deg); }

.assemble-hero[data-step="1"] .motion-fragment {
  opacity: 0.74;
  transform: translate3d(0, 16px, 0) rotate(0deg) scale(0.92);
}

.assemble-hero[data-step="2"] .motion-fragment,
.assemble-hero[data-step="3"] .motion-fragment {
  opacity: 0;
  transform: translate3d(0, -12px, 0) scale(0.82);
}

.assemble-hero .motion-stage {
  min-height: calc(100vh - 392px);
}

.assemble-hero .workspace-surface {
  top: 40%;
  width: min(920px, 76vw);
  height: min(620px, 55vh);
  border-radius: 31px;
}

.assemble-hero .workspace-surface-screen {
  position: relative;
}

.assemble-hero .workspace-surface-screen .device-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition:
    opacity 440ms ease,
    transform 820ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 420ms ease;
}

.assemble-hero .workspace-surface-screen .shot-desktop {
  opacity: 1;
}

.assemble-hero[data-step="2"] .workspace-surface-screen .shot-desktop,
.assemble-hero[data-step="3"] .workspace-surface-screen .shot-desktop,
.assemble-hero[data-step="3"] .workspace-surface-screen .shot-tablet {
  opacity: 0;
}

.assemble-hero[data-step="2"] .workspace-surface-screen .shot-tablet,
.assemble-hero[data-step="3"] .workspace-surface-screen .shot-mobile {
  opacity: 1;
}

.assemble-hero[data-step="2"] .workspace-surface {
  width: min(600px, 58vw);
  height: min(700px, 63vh);
  border-radius: 39px;
}

.assemble-hero[data-step="3"] .workspace-surface {
  width: min(330px, 46vw);
  height: min(650px, 64vh);
  border-radius: 45px;
}

@media (min-width: 721px) and (max-width: 980px) {
  .assemble-hero .motion-copy {
    min-height: auto;
  }

  .assemble-hero .motion-fragments {
    display: none;
  }

  .assemble-hero .motion-actions {
    top: auto;
  }

  .assemble-hero .hero-trust-note {
    margin-left: 0;
  }

  .assemble-hero .workspace-surface {
    width: min(760px, 96vw);
    height: min(540px, 62vw);
  }
}

@media (max-width: 720px) {
  .assemble-hero .motion-copy h1,
  .assemble-hero .motion-copy-card:not(:first-child) h1 {
    font-size: clamp(38px, 10vw, 48px);
    letter-spacing: -0.05em;
  }

  .assemble-hero .hero-trust-note {
    font-size: 13px;
  }

  .assemble-hero .workspace-surface {
    width: min(350px, 96vw);
    height: 292px;
    border-radius: 26px;
  }
}

/* Narrative public landing */
.brand-hero,
.story-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.brand-hero {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  color: #f8f3e8;
  background:
    radial-gradient(circle at 70% 84%, rgba(7, 151, 107, 0.42), transparent 30%),
    radial-gradient(circle at 86% 30%, rgba(216, 95, 210, 0.24), transparent 30%),
    radial-gradient(circle at 38% 8%, rgba(255, 159, 26, 0.2), transparent 28%),
    linear-gradient(135deg, #070d17 0%, #08111d 48%, #061423 100%);
  box-shadow: 0 34px 110px rgba(24, 31, 45, 0.32);
  overflow: hidden;
}

.brand-hero-inner {
  min-height: 668px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 5vw, 64px);
}

.brand-hero-copy {
  position: relative;
  z-index: 2;
}

.hero-pill {
  width: fit-content;
  margin: 0 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(248, 243, 232, 0.76);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 13px;
}

.brand-hero h1 {
  max-width: 530px;
  margin: 0;
  color: #fff8e8;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.98;
}

.brand-hero .lead {
  max-width: 520px;
  color: rgba(248, 243, 232, 0.82);
  font-size: 17px;
}

.hero-benefit-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.hero-benefit-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(248, 243, 232, 0.9);
  font-size: 14px;
  line-height: 1.35;
}

.hero-benefit-list b {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 244, 199, 0.28);
  border-radius: 12px;
  color: #fff1b9;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.brand-hero .btn.primary {
  color: #111722;
  background: linear-gradient(135deg, #fff6da, #ffd990);
  box-shadow: 0 18px 42px rgba(255, 217, 144, 0.2);
}

.hero-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  color: rgba(248, 243, 232, 0.88);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
  padding: 0 10px;
}

.hero-link::after {
  content: "→";
  margin-left: 10px;
}

.hero-showcase-stage {
  position: relative;
  min-height: 560px;
  isolation: isolate;
  perspective: 1800px;
}

.showcase-glow {
  position: absolute;
  inset: 30px -28px 10px 10px;
  border-radius: 52px;
  background:
    radial-gradient(circle at 48% 40%, rgba(255, 255, 255, 0.18), transparent 30%),
    radial-gradient(circle at 72% 62%, rgba(7, 151, 107, 0.28), transparent 36%),
    radial-gradient(circle at 18% 74%, rgba(255, 159, 26, 0.16), transparent 32%);
  filter: blur(6px);
  opacity: 0.95;
}

.showcase-floor {
  position: absolute;
  left: 4%;
  right: 0;
  bottom: 38px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 45%, rgba(0, 0, 0, 0.42), rgba(32, 46, 68, 0.14) 48%, transparent 72%);
  filter: blur(8px);
  transform: rotateX(68deg);
  transform-origin: center;
}

.showcase-device,
.lineup-device {
  position: absolute;
  margin: 0;
  transform-style: preserve-3d;
}

.showcase-shot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left top;
}

.showcase-laptop {
  width: min(630px, 100%);
  height: 422px;
  top: 62px;
  left: 4px;
  z-index: 4;
  transform: rotateY(-6deg) rotateZ(-0.6deg);
}

.showcase-tablet {
  width: 248px;
  aspect-ratio: 0.74;
  right: 0;
  top: 172px;
  z-index: 6;
  transform: rotateY(-12deg) rotateZ(2deg);
}

.showcase-phone {
  width: 124px;
  aspect-ratio: 0.48;
  right: 198px;
  bottom: 58px;
  z-index: 7;
  transform: rotateY(-8deg) rotateZ(-2deg);
}

.hero-device-note {
  position: absolute;
  left: 15%;
  right: 4%;
  bottom: 10px;
  color: rgba(248, 243, 232, 0.78);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.story-band {
  margin-top: 0;
  padding: 76px 0;
}

.story-band-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.story-copy h2 {
  max-width: 560px;
  margin-top: 13px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.04;
}

.story-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 15px;
  color: var(--soft-text);
  font-size: 15px;
  line-height: 1.68;
}

.chaos-story {
  padding-top: 82px;
}

.chaos-map {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(160px, 0.62fr) minmax(0, 1fr) minmax(110px, 0.36fr);
  align-items: center;
}

.source-stack {
  position: relative;
  min-height: 330px;
}

.source-token {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(132, 143, 160, 0.22);
  border-radius: 15px;
  color: var(--soft-text);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(77, 88, 113, 0.13);
  font-size: 13px;
  font-weight: 720;
  padding: 0 14px;
}

.source-token.xls {
  top: 0;
  left: 46px;
  width: 70px;
  height: 70px;
  color: #087c5a;
  border-radius: 18px;
  font-size: 17px;
}

.source-token.note { top: 96px; left: 12px; }
.source-token.pay { top: 172px; left: 60px; }
.source-token.follow { top: 240px; left: 18px; }
.source-token.doc { top: 300px; left: 116px; }

.connector-field {
  position: absolute;
  left: 148px;
  right: 260px;
  top: 76px;
  bottom: 72px;
  pointer-events: none;
}

.connector-field span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  border-top: 1px dashed rgba(82, 96, 119, 0.32);
  transform-origin: left center;
}

.connector-field span:nth-child(1) { top: 42px; transform: rotate(10deg); }
.connector-field span:nth-child(2) { top: 128px; transform: rotate(-2deg); }
.connector-field span:nth-child(3) { top: 218px; transform: rotate(-11deg); }

.workspace-preview {
  position: relative;
  z-index: 2;
  grid-column: 2 / 3;
  border: 1px solid rgba(132, 143, 160, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(77, 88, 113, 0.17);
  overflow: hidden;
}

.workspace-preview img {
  width: 100%;
  aspect-ratio: 1.24;
  display: block;
  object-fit: cover;
  object-position: left top;
}

.map-note {
  grid-column: 3 / 4;
  align-self: center;
  color: var(--soft-text);
  font-size: 15px;
  line-height: 1.6;
}

.device-story {
  width: 100%;
  padding: 82px max(20px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 82% 30%, rgba(35, 149, 197, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(239, 247, 255, 0.88), rgba(248, 250, 253, 0.72));
}

.device-story-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
}

.device-mode-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.device-mode-list span,
.lineup-device figcaption {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-text);
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  padding: 0 12px;
}

.device-lineup {
  position: relative;
  min-height: 440px;
}

.lineup-laptop {
  width: 430px;
  height: 295px;
  left: 0;
  top: 32px;
  z-index: 2;
}

.lineup-laptop .laptop-lid {
  height: 240px;
}

.lineup-tablet {
  width: 242px;
  aspect-ratio: 0.74;
  right: 82px;
  top: 20px;
  z-index: 3;
}

.lineup-phone {
  width: 118px;
  aspect-ratio: 0.48;
  right: 0;
  top: 114px;
  z-index: 4;
}

.lineup-device figcaption {
  position: absolute;
  left: 50%;
  bottom: -46px;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(77, 88, 113, 0.1);
}

.data-control-section {
  width: 100%;
  padding: 78px max(20px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 28% 40%, rgba(7, 151, 107, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(250, 251, 246, 0.88), rgba(241, 248, 238, 0.72));
}

.data-control-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.data-diagram {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(128px, 0.36fr) minmax(110px, 0.25fr) minmax(128px, 0.36fr);
  align-items: center;
  gap: 20px;
}

.data-node {
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 1px solid rgba(132, 143, 160, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 54px rgba(77, 88, 113, 0.12);
  text-align: center;
}

.data-node strong {
  font-size: 13px;
}

.data-node small {
  margin-top: -8px;
  color: var(--muted);
  font-size: 12px;
}

.data-folder,
.drive-mark {
  width: 54px;
  height: 48px;
  display: block;
}

.data-folder {
  border-radius: 12px;
  background: linear-gradient(135deg, #4ecbb5, #0b9f83);
}

.data-folder::before {
  content: "";
  display: block;
  width: 28px;
  height: 12px;
  border-radius: 9px 9px 0 0;
  background: rgba(255, 255, 255, 0.38);
  transform: translate(4px, -6px);
}

.drive-mark {
  clip-path: polygon(50% 0, 100% 86%, 0 86%);
  background:
    linear-gradient(120deg, #4285f4 0 33%, transparent 33%),
    linear-gradient(240deg, #34a853 0 34%, transparent 34%),
    linear-gradient(0deg, #fbbc04 0 100%);
}

.data-bridge {
  position: relative;
  height: 1px;
  border-top: 1px dashed rgba(82, 96, 119, 0.34);
}

.data-bridge span {
  position: absolute;
  left: 50%;
  top: -15px;
  width: 30px;
  height: 30px;
  display: block;
  border: 1px solid rgba(132, 143, 160, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  transform: translateX(-50%);
}

.data-bridge span::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 9px;
  width: 8px;
  height: 10px;
  border: 2px solid var(--text);
  border-top: 0;
  border-radius: 2px;
}

.data-bridge span::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 10px;
  height: 9px;
  border: 2px solid var(--text);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  color: var(--soft-text);
  font-size: 14px;
  font-weight: 650;
  padding-left: 28px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(7, 151, 107, 0.32);
  border-radius: 50%;
  background: rgba(7, 151, 107, 0.08);
}

.trust-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

@media (min-width: 721px) and (max-width: 980px) {
  .brand-hero-inner,
  .story-band-inner,
  .device-story-inner,
  .data-control-inner {
    grid-template-columns: 1fr;
  }

  .brand-hero-inner {
    min-height: 0;
    padding: 34px;
  }

  .hero-showcase-stage {
    min-height: 520px;
  }

  .showcase-laptop {
    width: min(620px, 88vw);
    left: 50%;
    top: 36px;
    transform: translateX(-50%) rotateY(-5deg) rotateZ(-0.6deg);
  }

  .showcase-tablet {
    right: 7%;
    top: 186px;
  }

  .showcase-phone {
    right: 36%;
    bottom: 52px;
  }

  .chaos-map {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  }

  .workspace-preview {
    grid-column: 2 / 3;
  }

  .map-note {
    grid-column: 1 / -1;
    max-width: 540px;
  }

  .device-lineup {
    min-height: 520px;
  }

  .lineup-laptop {
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
  }

  .lineup-tablet {
    left: 12%;
    right: auto;
    top: 250px;
  }

  .lineup-phone {
    right: 18%;
    top: 292px;
  }
}

@media (max-width: 720px) {
  .brand-hero,
  .story-band {
    width: min(100% - 24px, 1180px);
  }

  .brand-hero {
    margin-top: 18px;
    border-radius: 24px;
  }

  .brand-hero-inner {
    gap: 24px;
    padding: 22px;
  }

  .brand-hero h1 {
    font-size: 40px;
  }

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

  .hero-showcase-stage {
    min-height: 350px;
  }

  .showcase-laptop {
    width: min(330px, calc(100vw - 56px));
    height: 220px;
    top: 22px;
  }

  .showcase-laptop .laptop-lid {
    height: 188px;
    border-radius: 19px;
  }

  .showcase-laptop .laptop-lid .screen-glass {
    inset: 10px 10px 12px;
    border-radius: 13px;
  }

  .showcase-laptop .laptop-base {
    height: 34px;
  }

  .showcase-tablet {
    width: 126px;
    right: 0;
    top: 142px;
  }

  .showcase-phone {
    width: 74px;
    right: 120px;
    bottom: 44px;
  }

  .hero-device-note {
    left: 8px;
    right: 8px;
    bottom: 2px;
    font-size: 12px;
  }

  .story-band {
    padding: 44px 0;
  }

  .device-story,
  .data-control-section {
    width: 100%;
    padding: 48px 12px;
  }

  .chaos-map {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .source-stack {
    min-height: 142px;
  }

  .source-token.xls { top: 0; left: 0; }
  .source-token.note { top: 26px; left: 96px; }
  .source-token.pay { top: 78px; left: 20px; }
  .source-token.follow { top: 84px; left: 150px; }
  .source-token.doc { top: 30px; left: auto; right: 8px; }

  .connector-field {
    display: none;
  }

  .workspace-preview,
  .map-note {
    grid-column: 1;
  }

  .device-lineup {
    min-height: 510px;
  }

  .lineup-laptop {
    width: min(330px, calc(100vw - 56px));
    height: 220px;
    top: 0;
  }

  .lineup-laptop .laptop-lid {
    height: 188px;
  }

  .lineup-tablet {
    width: 142px;
    left: 8px;
    top: 250px;
  }

  .lineup-phone {
    width: 82px;
    right: 42px;
    top: 266px;
  }

  .lineup-device figcaption {
    bottom: -38px;
  }

  .data-diagram {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .data-bridge {
    width: 1px;
    height: 48px;
    justify-self: center;
    border-top: 0;
    border-left: 1px dashed rgba(82, 96, 119, 0.34);
  }

  .data-bridge span {
    top: 9px;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }
}

/* Assemble-inspired motion prototype */
.motion-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 350vh;
  margin: 24px auto 0;
}

.motion-hero-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(330px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: 96px 0 48px;
}

.motion-copy {
  position: relative;
  min-height: clamp(610px, 64vh, 660px);
  z-index: 3;
}

.motion-copy-card {
  position: absolute;
  inset: 48px 0 auto;
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 360ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.motion-copy-card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.motion-copy h1 {
  max-width: 560px;
  margin: 14px 0 0;
  font-size: clamp(38px, 4.35vw, 60px);
  line-height: 1.02;
}

.motion-copy .lead {
  max-width: 560px;
}

.motion-actions {
  position: absolute;
  left: 0;
  bottom: 22px;
}

.motion-stage {
  position: relative;
  min-height: 650px;
  isolation: isolate;
  perspective: 1600px;
  overflow: hidden;
  border-radius: 42px;
}

.motion-stage-glow {
  position: absolute;
  inset: 30px -28px 20px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 159, 26, 0.17), transparent 31%),
    radial-gradient(circle at 38% 52%, rgba(216, 95, 210, 0.13), transparent 36%),
    radial-gradient(circle at 52% 82%, rgba(7, 151, 107, 0.13), transparent 35%);
  filter: blur(4px);
  z-index: 0;
}

.motion-grid {
  position: absolute;
  inset: 72px 14px 70px;
  border-radius: 38px;
  background:
    linear-gradient(rgba(132, 143, 160, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 143, 160, 0.1) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
  opacity: 0.72;
  z-index: 0;
}

.workspace-surface {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(760px, 100%);
  margin: 0;
  border: 1px solid rgba(132, 143, 160, 0.2);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 38px 90px rgba(77, 88, 113, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
  transform: translate3d(-50%, -48%, 0) rotateX(0deg) rotateY(-2deg) scale(0.96);
  transform-origin: center;
  transition:
    transform 880ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 560ms ease;
  z-index: 3;
}

.workspace-surface-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(132, 143, 160, 0.16);
  background: rgba(250, 251, 254, 0.82);
  padding: 0 18px;
}

.workspace-surface-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(132, 143, 160, 0.35);
  box-shadow:
    17px 0 0 rgba(132, 143, 160, 0.22),
    34px 0 0 rgba(132, 143, 160, 0.18);
}

.workspace-surface-top strong {
  margin-left: 42px;
  font-size: 13px;
}

.workspace-surface-top small {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
}

.workspace-surface-screen {
  position: relative;
  aspect-ratio: 1.48;
  overflow: hidden;
  background: #f7f9fc;
}

.workspace-surface-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left top;
  filter: saturate(0.98);
}

.workspace-search-demo {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: min(560px, calc(100% - 44px));
  border: 1px solid rgba(132, 143, 160, 0.18);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 58px rgba(77, 88, 113, 0.18);
  padding: 14px;
  opacity: 0;
  transform: translate3d(-50%, 22px, 0) scale(0.96);
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.search-line {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  background: rgba(238, 241, 246, 0.74);
  padding: 0 12px;
}

.search-line span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.search-line strong {
  color: var(--text);
  font-size: 14px;
}

.search-line strong::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 17px;
  margin-left: 4px;
  background: var(--accent);
  vertical-align: -3px;
  animation: searchCaret 900ms steps(1) infinite;
}

.search-results {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.search-results span {
  border: 1px solid rgba(132, 143, 160, 0.16);
  border-radius: 999px;
  color: var(--soft-text);
  background: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 720;
  padding: 7px 10px;
}

@keyframes searchCaret {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

.motion-fragments {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.motion-fragment {
  position: absolute;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(132, 143, 160, 0.18);
  border-radius: 16px;
  color: var(--soft-text);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(77, 88, 113, 0.15);
  font-size: 13px;
  font-weight: 760;
  padding: 0 14px;
  transition:
    opacity 500ms ease,
    transform 840ms cubic-bezier(0.19, 1, 0.22, 1);
}

.fragment-payment { left: 2%; top: 16%; }
.fragment-note { right: 10%; top: 8%; }
.fragment-file { left: 8%; bottom: 20%; }
.fragment-gap { right: 2%; bottom: 28%; }
.fragment-closeout { left: 37%; top: 3%; }
.fragment-follow { right: 34%; bottom: 5%; }

.surface-device {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(84, 95, 116, 0.24);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 32px 78px rgba(77, 88, 113, 0.2);
  overflow: hidden;
  opacity: 0;
  transition:
    opacity 520ms ease,
    transform 820ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 4;
}

.surface-device img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left top;
}

.surface-tablet {
  width: 268px;
  aspect-ratio: 0.74;
  right: 16px;
  top: 132px;
  border-radius: 28px;
  transform: translate3d(26px, 22px, 0) rotateY(-10deg) scale(0.86);
}

.surface-phone {
  width: 126px;
  aspect-ratio: 0.48;
  right: 212px;
  bottom: 62px;
  border-radius: 30px;
  transform: translate3d(0, 34px, 0) rotateZ(-3deg) scale(0.82);
}

.motion-hero[data-step="1"] .motion-fragment {
  opacity: 0.44;
}

.motion-hero[data-step="1"] .fragment-payment { transform: translate3d(206px, 128px, 0) scale(0.78); }
.motion-hero[data-step="1"] .fragment-note { transform: translate3d(-190px, 142px, 0) scale(0.78); }
.motion-hero[data-step="1"] .fragment-file { transform: translate3d(214px, -86px, 0) scale(0.78); }
.motion-hero[data-step="1"] .fragment-gap { transform: translate3d(-184px, -80px, 0) scale(0.78); }
.motion-hero[data-step="1"] .fragment-closeout { transform: translate3d(10px, 150px, 0) scale(0.78); }
.motion-hero[data-step="1"] .fragment-follow { transform: translate3d(-32px, -132px, 0) scale(0.78); }

.motion-hero[data-step="2"] .workspace-search-demo {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.motion-hero[data-step="2"] .workspace-surface {
  transform: translate3d(-50%, -48%, 80px) rotateX(0deg) rotateY(0deg) scale(1.04);
}

.motion-hero[data-step="2"] .motion-fragment {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.64);
}

.motion-hero[data-step="3"] .workspace-surface {
  filter: saturate(0.92);
  transform: translate3d(-66%, -50%, -80px) rotateY(8deg) scale(0.72);
}

.motion-hero[data-step="3"] .workspace-search-demo {
  opacity: 0;
}

.motion-hero[data-step="3"] .motion-fragment {
  opacity: 0;
}

.motion-hero[data-step="3"] .surface-tablet,
.motion-hero[data-step="3"] .surface-phone {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateY(0) rotateZ(0) scale(1);
}

.manifesto-panel,
.data-split {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.manifesto-panel {
  display: grid;
  place-items: center;
  min-height: 520px;
  margin-top: 8px;
  border-radius: 38px;
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 159, 26, 0.12), transparent 28%),
    linear-gradient(135deg, #101114, #08090b);
  padding: 52px;
}

.manifesto-panel > div {
  max-width: 760px;
}

.manifesto-panel h2 {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.07;
  font-weight: 650;
}

.manifesto-panel p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 16px;
  line-height: 1.72;
}

.data-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: center;
  padding: 76px 0 30px;
}

.data-split-diagram {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(128px, 0.36fr) minmax(110px, 0.25fr) minmax(128px, 0.36fr);
  gap: 20px;
  align-items: center;
}

.data-split-copy h2 {
  margin-top: 13px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.data-split-copy p:not(.eyebrow) {
  margin-top: 15px;
  color: var(--soft-text);
  font-size: 15px;
  line-height: 1.68;
}

@media (max-width: 980px) {
  .motion-hero {
    min-height: auto;
  }

  .motion-hero-sticky {
    position: relative;
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 48px 0;
  }

  .motion-copy {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .motion-copy-card {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .motion-copy-card:not(:first-child) {
    padding-top: 18px;
    border-top: 1px solid rgba(132, 143, 160, 0.17);
  }

  .motion-copy-card:not(:first-child) h1 {
    font-size: clamp(28px, 5vw, 42px);
  }

  .motion-actions {
    position: relative;
    bottom: auto;
  }

  .motion-stage {
    min-height: 540px;
    order: -1;
  }

  .workspace-surface {
    width: min(720px, 94vw);
  }

  .surface-tablet {
    right: 2%;
    top: 230px;
    opacity: 1;
    transform: none;
  }

  .surface-phone {
    right: 32%;
    bottom: 28px;
    opacity: 1;
    transform: none;
  }

  .motion-fragment {
    opacity: 0.72;
  }

  .data-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .motion-hero,
  .manifesto-panel,
  .data-split {
    width: min(100% - 24px, 1180px);
  }

  .motion-hero-sticky {
    padding: 28px 0 42px;
  }

  .motion-stage {
    min-height: 330px;
  }

  .motion-copy h1 {
    font-size: 40px;
  }

  .workspace-surface {
    width: min(330px, 96%);
    border-radius: 22px;
  }

  .workspace-surface-top {
    height: 38px;
  }

  .workspace-surface-top strong {
    margin-left: 30px;
    font-size: 12px;
  }

  .workspace-surface-top small {
    display: none;
  }

  .workspace-search-demo {
    bottom: 8px;
    width: calc(100% - 24px);
    border-radius: 18px;
    padding: 10px;
  }

  .search-line strong {
    font-size: 12px;
  }

  .search-results {
    flex-wrap: wrap;
  }

  .motion-fragment {
    min-height: 34px;
    border-radius: 13px;
    font-size: 11px;
    padding: 0 9px;
  }

  .fragment-payment { left: 0; top: 16px; }
  .fragment-note { right: 8px; top: 38px; }
  .fragment-file { left: 6px; bottom: 58px; }
  .fragment-gap { right: 0; bottom: 72px; }
  .fragment-closeout,
  .fragment-follow {
    display: none;
  }

  .surface-tablet {
    width: 120px;
    top: 156px;
    right: 8px;
    border-radius: 20px;
  }

  .surface-phone {
    width: 70px;
    right: 104px;
    bottom: 10px;
    border-radius: 20px;
  }

  .motion-grid {
    inset: 20px 0;
    background-size: 38px 38px;
  }

  .manifesto-panel {
    min-height: 420px;
    border-radius: 26px;
    padding: 28px;
  }

  .manifesto-panel h2 {
    font-size: 36px;
  }

  .data-split {
    padding-top: 48px;
  }

  .data-split-diagram {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

/* Assemble-style public hero direction */
body {
  overflow-x: hidden;
  background:
    linear-gradient(rgba(22, 24, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 24, 29, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 50% 6%, rgba(244, 246, 250, 0.92), transparent 38%),
    #fbfbfa;
  background-size: 78px 78px, 78px 78px, auto, auto;
}

.site-header {
  position: sticky;
  top: 0;
  width: min(100% - 28px, 1440px);
  margin-top: 0;
  padding: 14px 0;
  border: 0;
  border-radius: 0;
  background: rgba(251, 251, 250, 0.84);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.brand-mark {
  width: 20px;
  height: 20px;
  border: 3px solid #111214;
  border-radius: 999px;
  color: transparent;
  background: transparent;
  box-shadow: none;
}

.brand strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand small {
  display: none;
}

.site-nav {
  gap: 20px;
}

.site-nav a {
  min-height: 34px;
  color: rgba(17, 18, 20, 0.68);
  font-size: 13px;
  font-weight: 650;
  padding: 0;
}

.site-nav a:hover {
  background: transparent;
  color: #111214;
}

.site-nav a:last-child {
  min-height: 43px;
  border-radius: 999px;
  color: #fff;
  background: #111214;
  padding: 0 24px;
  box-shadow: 0 13px 34px rgba(17, 18, 20, 0.16);
}

.assemble-hero {
  width: 100%;
  min-height: 390vh;
  margin: 0;
}

.assemble-hero .motion-hero-sticky {
  grid-template-columns: 1fr;
  width: min(100% - 32px, 1440px);
  margin: 0 auto;
  gap: 0;
  align-items: start;
  padding: 52px 0 0;
}

.assemble-hero .motion-copy {
  min-height: 400px;
  display: block;
  text-align: center;
}

.assemble-hero .motion-copy-card {
  inset: 54px auto auto 50%;
  width: min(1060px, 100%);
  transform: translate3d(-50%, 24px, 0);
  transition:
    opacity 160ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.assemble-hero .motion-copy-card.is-active {
  transform: translate3d(-50%, 0, 0);
}

.assemble-hero .hero-pill {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(17, 18, 20, 0.18);
  border-radius: 999px;
  color: rgba(17, 18, 20, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(17, 18, 20, 0.06);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  padding: 0 14px;
}

.assemble-hero .hero-pill::first-letter {
  color: inherit;
}

.assemble-hero .motion-copy h1 {
  max-width: 1060px;
  margin: 18px auto 0;
  font-size: clamp(48px, 5.1vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.052em;
}

.assemble-hero .motion-copy h1 span {
  display: inline;
  border-radius: 999px;
  background: #edff66;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.08em 0.035em;
}

.assemble-hero .motion-copy .lead {
  max-width: 570px;
  margin: 18px auto 0;
  color: rgba(17, 18, 20, 0.62);
  font-size: 18px;
  line-height: 1.42;
}

.assemble-hero .motion-actions {
  left: 50%;
  top: 508px;
  bottom: auto;
  justify-content: center;
  transform: translateX(-50%);
  transition: opacity 220ms ease;
}

.assemble-hero .btn.primary {
  color: #fff;
  background: #111214;
  box-shadow: 0 16px 38px rgba(17, 18, 20, 0.16);
}

.assemble-hero .btn.primary::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #edff66;
}

.assemble-hero .btn.soft {
  border-color: transparent;
  color: rgba(17, 18, 20, 0.68);
  background: transparent;
  box-shadow: none;
}

.assemble-hero .motion-stage {
  min-height: calc(100vh - 388px);
  border-radius: 0;
  overflow: visible;
  perspective: 1800px;
}

.assemble-hero .motion-stage-glow {
  inset: 0 0 -80px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), transparent 30%),
    radial-gradient(circle at 38% 62%, rgba(17, 18, 20, 0.07), transparent 31%),
    radial-gradient(circle at 64% 58%, rgba(237, 255, 102, 0.16), transparent 29%);
  filter: blur(20px);
}

.assemble-hero .motion-grid {
  inset: -308px 18% 20%;
  border-radius: 0;
  background:
    linear-gradient(rgba(17, 18, 20, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 20, 0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 74%, transparent 100%);
  opacity: 0.76;
}

.assemble-hero .workspace-surface {
  left: 50%;
  top: 38%;
  width: min(880px, 74vw);
  height: min(610px, 54vh);
  border-color: rgba(17, 18, 20, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 44px 100px rgba(17, 18, 20, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform: translate3d(-50%, -35%, 0) rotateX(0) rotateY(0) scale(1);
  transition:
    width 820ms cubic-bezier(0.19, 1, 0.22, 1),
    height 820ms cubic-bezier(0.19, 1, 0.22, 1),
    border-radius 820ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 820ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 420ms ease;
}

.assemble-hero:not([data-step="0"]) .motion-actions {
  opacity: 0;
  pointer-events: none;
}

.assemble-hero .workspace-surface-top {
  height: 46px;
  background: rgba(255, 255, 255, 0.86);
}

.assemble-hero .workspace-surface-top small {
  color: rgba(17, 18, 20, 0.52);
}

.assemble-hero .workspace-surface-screen {
  height: calc(100% - 46px);
  aspect-ratio: auto;
  background: #f7f7f5;
}

.assemble-hero .workspace-surface-screen img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  transition:
    object-position 820ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 420ms ease;
}

.assemble-hero .workspace-search-demo {
  bottom: 26px;
  width: min(610px, calc(100% - 54px));
  border-color: rgba(17, 18, 20, 0.12);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 70px rgba(17, 18, 20, 0.12);
}

.assemble-hero .motion-fragment {
  min-width: 74px;
  min-height: 74px;
  border-color: rgba(17, 18, 20, 0.1);
  border-radius: 22px;
  color: rgba(17, 18, 20, 0.72);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 24px 46px rgba(17, 18, 20, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  font-size: 12px;
  letter-spacing: -0.01em;
  padding: 0 12px;
}

.assemble-hero .fragment-payment { left: 18%; top: 5%; transform: rotate(-8deg); }
.assemble-hero .fragment-note { right: 18%; top: 6%; transform: rotate(8deg); }
.assemble-hero .fragment-file { left: 15%; bottom: 33%; transform: rotate(-12deg); }
.assemble-hero .fragment-gap { right: 13%; bottom: 32%; transform: rotate(11deg); }
.assemble-hero .fragment-closeout { left: 36%; top: 16%; transform: rotate(-4deg); }
.assemble-hero .fragment-follow { right: 34%; bottom: 17%; transform: rotate(5deg); }

.assemble-hero[data-step="1"] .motion-fragment {
  opacity: 0.88;
}

.assemble-hero[data-step="1"] .fragment-payment { transform: translate3d(220px, 110px, 0) rotate(-4deg) scale(0.82); }
.assemble-hero[data-step="1"] .fragment-note { transform: translate3d(-220px, 110px, 0) rotate(4deg) scale(0.82); }
.assemble-hero[data-step="1"] .fragment-file { transform: translate3d(235px, -90px, 0) rotate(-4deg) scale(0.82); }
.assemble-hero[data-step="1"] .fragment-gap { transform: translate3d(-250px, -90px, 0) rotate(4deg) scale(0.82); }
.assemble-hero[data-step="1"] .fragment-closeout { transform: translate3d(120px, 118px, 0) rotate(0) scale(0.82); }
.assemble-hero[data-step="1"] .fragment-follow { transform: translate3d(-112px, -92px, 0) rotate(0) scale(0.82); }

.assemble-hero[data-step="2"] .workspace-surface {
  width: min(600px, 60vw);
  height: min(700px, 62vh);
  border-radius: 38px;
  transform: translate3d(-50%, -37%, 0) rotateX(0) rotateY(0) scale(1.02);
}

.assemble-hero[data-step="2"] .workspace-surface-screen img {
  object-position: 41% 0%;
}

.assemble-hero[data-step="2"] .workspace-search-demo {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.assemble-hero[data-step="2"] .motion-fragment {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.68);
}

.assemble-hero[data-step="3"] .workspace-surface {
  width: min(330px, 48vw);
  height: min(650px, 64vh);
  border-radius: 44px;
  transform: translate3d(-50%, -38%, 0) rotateX(0) rotateY(0) scale(1);
}

.assemble-hero[data-step="3"] .workspace-surface-top {
  height: 42px;
}

.assemble-hero[data-step="3"] .workspace-surface-top strong {
  margin-left: 32px;
}

.assemble-hero[data-step="3"] .workspace-surface-top small {
  display: none;
}

.assemble-hero[data-step="3"] .workspace-surface-screen {
  height: calc(100% - 42px);
}

.assemble-hero[data-step="3"] .workspace-surface-screen img {
  object-position: 38% 0%;
}

.assemble-hero[data-step="3"] .workspace-search-demo,
.assemble-hero[data-step="3"] .motion-fragment {
  opacity: 0;
}

@media (min-width: 721px) and (max-width: 980px) {
  .site-header {
    width: min(100% - 24px, 1440px);
  }

  .assemble-hero {
    min-height: auto;
    padding-bottom: 20px;
  }

  .assemble-hero .motion-hero-sticky {
    width: min(100% - 24px, 1440px);
    padding-top: 30px;
  }

  .assemble-hero .motion-copy {
    min-height: 0;
    display: grid;
    gap: 20px;
    text-align: left;
  }

  .assemble-hero .motion-copy-card,
  .assemble-hero .motion-copy-card.is-active {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .assemble-hero .motion-copy-card:not(:first-child) {
    border-top-color: rgba(17, 18, 20, 0.09);
  }

  .assemble-hero .motion-copy h1,
  .assemble-hero .motion-copy-card:not(:first-child) h1 {
    max-width: 760px;
    margin-left: 0;
    font-size: clamp(36px, 8vw, 58px);
    line-height: 0.98;
  }

  .assemble-hero .motion-copy .lead {
    max-width: 640px;
    margin-left: 0;
  }

  .assemble-hero .motion-actions {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    justify-content: flex-start;
  }

  .assemble-hero .motion-stage {
    min-height: 560px;
    order: 0;
  }

  .assemble-hero .workspace-surface {
    width: min(760px, 96vw);
    height: min(540px, 62vw);
    transform: translate3d(-50%, -35%, 0) scale(1);
  }

  .assemble-hero .motion-fragment {
    opacity: 0.72;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 0 10px;
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 15px;
  }

  .site-nav a:last-child {
    min-height: 34px;
    padding: 0 14px;
  }

}

/* Final public landing pass: Assemble-like composition across the full page. */
body {
  background:
    radial-gradient(circle at 50% 18%, rgba(237, 255, 102, 0.12), transparent 18%),
    linear-gradient(rgba(17, 18, 20, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 20, 0.028) 1px, transparent 1px),
    #f8f8f6;
  background-size: auto, 74px 74px, 74px 74px, auto;
}

.site-header,
.section,
.manifesto-panel,
.data-split,
.site-footer {
  width: min(100% - 32px, 1440px);
}

.site-header {
  top: 0;
  width: min(100% - 28px, 1440px);
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: rgba(248, 248, 246, 0.84);
  box-shadow: none;
  padding: 18px 0 12px;
}

.brand-mark {
  width: 21px;
  height: 21px;
  border: 3px solid #111214;
  border-radius: 50%;
  color: transparent;
  background: transparent;
  box-shadow: none;
}

.brand strong {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.brand small {
  display: none;
}

.site-nav {
  gap: 22px;
}

.site-nav a {
  min-height: 34px;
  color: rgba(17, 18, 20, 0.64);
  font-size: 13px;
  font-weight: 620;
  padding: 0;
}

.site-nav a:hover {
  color: #111214;
  background: transparent;
}

.site-nav a:last-child {
  min-height: 44px;
  color: #fff;
  background: #111214;
  border-radius: 999px;
  padding: 0 24px;
}

.assemble-hero {
  min-height: 392vh;
}

.assemble-hero .motion-hero-sticky {
  padding-top: 50px;
}

.assemble-hero .motion-copy {
  position: relative;
  min-height: 410px;
  text-align: center;
  isolation: isolate;
}

.assemble-hero .motion-copy-card {
  inset: 54px auto auto 50%;
  width: min(1060px, 100%);
  z-index: 2;
  transform: translate3d(-50%, 24px, 0);
}

.assemble-hero .motion-copy-card.is-active {
  transform: translate3d(-50%, 0, 0);
}

.assemble-hero .hero-pill {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 18, 20, 0.16);
  border-radius: 999px;
  color: rgba(17, 18, 20, 0.68);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(17, 18, 20, 0.06);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0;
  padding: 0 14px;
}

.assemble-hero .motion-copy h1 {
  max-width: 980px;
  margin: 18px auto 0;
  color: #050607;
  font-size: clamp(56px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.056em;
}

.assemble-hero .motion-copy h1 span {
  display: inline;
  border-radius: 999px;
  background: #edff66;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.08em 0.035em;
}

.assemble-hero .motion-copy .lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(17, 18, 20, 0.64);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.44;
}

.assemble-hero .hero-trust-note {
  max-width: 620px;
  margin: 16px auto 0;
  color: rgba(17, 18, 20, 0.56);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.assemble-hero .motion-actions {
  left: 50%;
  top: 430px;
  bottom: auto;
  justify-content: center;
  transform: translateX(-50%);
}

.assemble-hero:not([data-step="0"]) .motion-actions {
  opacity: 0;
  pointer-events: none;
}

.assemble-hero .btn.primary {
  color: #fff;
  background: #111214;
  box-shadow: 0 16px 38px rgba(17, 18, 20, 0.16);
}

.assemble-hero .btn.primary::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #edff66;
}

.assemble-hero .btn.soft {
  border-color: transparent;
  color: rgba(17, 18, 20, 0.68);
  background: transparent;
  box-shadow: none;
}

.assemble-hero .motion-fragments {
  position: absolute;
  left: 50%;
  top: 18px;
  width: min(980px, 100%);
  height: 330px;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.assemble-hero .motion-fragment {
  min-width: auto;
  min-height: 58px;
  border-color: rgba(17, 18, 20, 0.09);
  border-radius: 19px;
  color: rgba(17, 18, 20, 0.66);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 22px 48px rgba(17, 18, 20, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.96) inset;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.01em;
  padding: 0 15px;
  backdrop-filter: blur(14px);
}

.assemble-hero .fragment-payment { left: 7%; top: 42px; transform: rotate(-7deg); }
.assemble-hero .fragment-note { right: 8%; top: 26px; transform: rotate(7deg); }
.assemble-hero .fragment-file { left: 13%; bottom: 96px; transform: rotate(-9deg); }
.assemble-hero .fragment-gap { right: 12%; bottom: 98px; transform: rotate(8deg); }
.assemble-hero .fragment-closeout { left: 42%; top: 0; transform: rotate(-3deg); }
.assemble-hero .fragment-follow { right: 27%; top: 76px; bottom: auto; transform: rotate(4deg); }

.assemble-hero[data-step="1"] .motion-fragment {
  opacity: 0.74;
  transform: translate3d(0, 16px, 0) rotate(0deg) scale(0.92);
}

.assemble-hero[data-step="2"] .motion-fragment,
.assemble-hero[data-step="3"] .motion-fragment {
  opacity: 0;
  transform: translate3d(0, -12px, 0) scale(0.82);
}

.assemble-hero .motion-stage {
  min-height: calc(100vh - 392px);
  border-radius: 0;
  overflow: visible;
  perspective: 1800px;
}

.assemble-hero .motion-stage-glow {
  inset: 0 0 -80px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), transparent 30%),
    radial-gradient(circle at 38% 62%, rgba(17, 18, 20, 0.07), transparent 31%),
    radial-gradient(circle at 64% 58%, rgba(237, 255, 102, 0.16), transparent 29%);
  filter: blur(20px);
}

.assemble-hero .motion-grid {
  inset: -308px 18% 20%;
  border-radius: 0;
  background:
    linear-gradient(rgba(17, 18, 20, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 20, 0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 74%, transparent 100%);
  opacity: 0.76;
}

.assemble-hero .workspace-surface {
  left: 50%;
  top: 40%;
  width: min(920px, 76vw);
  height: min(620px, 55vh);
  border-color: rgba(17, 18, 20, 0.14);
  border-radius: 31px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 44px 100px rgba(17, 18, 20, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform: translate3d(-50%, -35%, 0) rotateX(0) rotateY(0) scale(1);
  transition:
    width 820ms cubic-bezier(0.19, 1, 0.22, 1),
    height 820ms cubic-bezier(0.19, 1, 0.22, 1),
    border-radius 820ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 820ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 420ms ease;
}

.assemble-hero .workspace-surface-top {
  height: 46px;
  background: rgba(255, 255, 255, 0.86);
}

.assemble-hero .workspace-surface-top small {
  color: rgba(17, 18, 20, 0.52);
}

.assemble-hero .workspace-surface-screen {
  position: relative;
  height: calc(100% - 46px);
  aspect-ratio: auto;
  background: #f7f7f5;
}

.assemble-hero .workspace-surface-screen .device-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  filter: saturate(0.98);
  transition:
    opacity 440ms ease,
    transform 820ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 420ms ease;
}

.assemble-hero .workspace-surface-screen .shot-desktop {
  opacity: 1;
}

.assemble-hero[data-step="2"] .workspace-surface {
  width: min(600px, 58vw);
  height: min(700px, 63vh);
  border-radius: 39px;
  transform: translate3d(-50%, -37%, 0) rotateX(0) rotateY(0) scale(1.02);
}

.assemble-hero[data-step="3"] .workspace-surface {
  width: min(330px, 46vw);
  height: min(650px, 64vh);
  border-radius: 45px;
  transform: translate3d(-50%, -38%, 0) rotateX(0) rotateY(0) scale(1);
}

.assemble-hero[data-step="2"] .workspace-surface-screen .shot-desktop,
.assemble-hero[data-step="3"] .workspace-surface-screen .shot-desktop,
.assemble-hero[data-step="3"] .workspace-surface-screen .shot-tablet {
  opacity: 0;
}

.assemble-hero[data-step="2"] .workspace-surface-screen .shot-tablet,
.assemble-hero[data-step="3"] .workspace-surface-screen .shot-mobile {
  opacity: 1;
}

.assemble-hero[data-step="3"] .workspace-surface-top {
  height: 42px;
}

.assemble-hero[data-step="3"] .workspace-surface-top strong {
  margin-left: 32px;
}

.assemble-hero[data-step="3"] .workspace-surface-top small {
  display: none;
}

.assemble-hero[data-step="3"] .workspace-surface-screen {
  height: calc(100% - 42px);
}

.assemble-hero[data-step="3"] .workspace-search-demo {
  opacity: 0;
}

.manifesto-panel,
.data-split {
  margin: 0 auto;
}

.manifesto-panel {
  min-height: 600px;
  margin-top: 0;
  color: #111214;
  background:
    radial-gradient(circle at 20% 12%, rgba(237, 255, 102, 0.34), transparent 18%),
    radial-gradient(circle at 80% 20%, rgba(17, 18, 20, 0.05), transparent 18%),
    #fffdf6;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 46px;
  box-shadow: 0 34px 90px rgba(17, 18, 20, 0.08);
  padding: clamp(34px, 5vw, 76px);
}

.manifesto-panel > div,
.section-head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.panel-label {
  color: rgba(17, 18, 20, 0.58);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.14em;
}

.manifesto-panel h2,
.section-head h2,
.data-split-copy h2,
.faq h2 {
  color: #111214;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.manifesto-panel p:not(.eyebrow),
.section-head p,
.data-split-copy p:not(.eyebrow),
.price-card p,
.product-card p,
.faq p,
.site-footer p {
  color: rgba(17, 18, 20, 0.58);
  font-size: 15px;
  line-height: 1.58;
}

.manifesto-panel p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px auto 0;
}

.data-split {
  min-height: 560px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(24px, 6vw, 72px);
  border-radius: 46px;
  background:
    radial-gradient(circle at 20% 50%, rgba(42, 196, 142, 0.12), transparent 28%),
    #f4f9ee;
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 34px 90px rgba(17, 18, 20, 0.06);
}

.data-node,
.product-card,
.price-card,
.faq details {
  border-color: rgba(17, 18, 20, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 18px 54px rgba(17, 18, 20, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.data-node {
  border-radius: 30px;
}

.trust-list li {
  border: 0;
  color: rgba(17, 18, 20, 0.72);
  background: transparent;
  font-weight: 620;
}

.section {
  padding: clamp(64px, 8vw, 116px) 0 0;
}

.section-head h2 {
  max-width: 940px;
  margin: 0 auto;
}

.section-head p {
  max-width: 710px;
  margin: 0 auto;
}

.product-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.product-card {
  grid-column: span 4;
  min-height: 270px;
  border-radius: 30px;
  padding: 24px;
}

.product-card.is-available {
  background:
    radial-gradient(circle at 88% 8%, rgba(237, 255, 102, 0.22), transparent 24%),
    rgba(255, 255, 255, 0.78);
}

.status {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 18, 20, 0.09);
  color: rgba(17, 18, 20, 0.72);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.status.wait {
  color: rgba(17, 18, 20, 0.58);
  background: rgba(255, 255, 255, 0.58);
}

.product-card h3,
.price-card h3 {
  color: #111214;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.chips span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-color: rgba(17, 18, 20, 0.08);
  color: rgba(17, 18, 20, 0.58);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 620;
}

.card-link {
  min-height: 38px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #111214;
  background: rgba(237, 255, 102, 0.56);
  font-size: 13px;
  font-weight: 650;
  padding: 0 15px;
}

.card-link.muted {
  color: rgba(17, 18, 20, 0.62);
  background: rgba(255, 255, 255, 0.64);
}

.pricing {
  padding-bottom: clamp(40px, 6vw, 80px);
}

.pricing-grid {
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 18px;
  margin-top: 34px;
}

.price-card {
  border-radius: 32px;
  padding: 28px;
}

.price-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(237, 255, 102, 0.14), transparent 28%),
    #111214;
}

.price-card.featured h3,
.price-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.price-card.featured .status {
  color: #111214;
  background: #edff66;
}

.price {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 650;
  letter-spacing: -0.05em;
}

.price-card ul {
  padding-left: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(38, 167, 99, 0.13);
  box-shadow: inset 0 0 0 5px #07976b;
}

.faq {
  width: min(100% - 32px, 1440px);
  margin: 0 auto;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 82px);
  padding: clamp(54px, 7vw, 90px) clamp(22px, 5vw, 58px);
  border-radius: 46px;
  background: #fff;
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 34px 90px rgba(17, 18, 20, 0.06);
}

.faq h2 {
  max-width: 380px;
}

.faq-list {
  gap: 12px;
}

.faq details {
  border-radius: 22px;
  background: #f8f8f6;
  padding: 18px 20px;
}

.faq summary {
  color: #111214;
  font-size: 16px;
  font-weight: 650;
}

.site-footer {
  margin: 0 auto;
  border-top-color: rgba(17, 18, 20, 0.08);
  padding: 32px 0 44px;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  background: #fff;
  border: 1px solid rgba(17, 18, 20, 0.08);
  color: rgba(17, 18, 20, 0.68);
}

@media (min-width: 721px) and (max-width: 980px) {
  .assemble-hero {
    min-height: auto;
  }

  .assemble-hero .motion-copy {
    min-height: auto;
    display: grid;
    gap: 20px;
    text-align: left;
  }

  .assemble-hero .motion-copy-card,
  .assemble-hero .motion-copy-card.is-active {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .assemble-hero .motion-fragments {
    display: none;
  }

  .assemble-hero .motion-actions {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    justify-content: flex-start;
  }

  .assemble-hero .hero-trust-note {
    margin-left: 0;
  }

  .assemble-hero .motion-stage {
    min-height: 560px;
  }

  .assemble-hero .workspace-surface {
    width: min(760px, 96vw);
    height: min(540px, 62vw);
  }

  .data-split,
  .faq {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .site-nav a:not(:last-child) {
    display: none;
  }

  .manifesto-panel,
  .data-split,
  .faq {
    border-radius: 30px;
  }

  .assemble-hero .motion-copy h1,
  .assemble-hero .motion-copy-card:not(:first-child) h1,
  .manifesto-panel h2,
  .section-head h2,
  .data-split-copy h2,
  .faq h2 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -0.05em;
  }

  .assemble-hero .hero-trust-note {
    font-size: 13px;
  }

  .assemble-hero .workspace-surface {
    width: min(350px, 96vw);
    height: 292px;
    border-radius: 26px;
  }

  .product-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Final typography lock: Assemble-style Anthro scale, weights and colors. */
body,
button,
input,
select,
textarea {
  font-family: var(--owmii-body-font);
  color: #111111;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.brand strong,
.assemble-hero .motion-copy h1,
.assemble-hero .motion-copy-card:not(:first-child) h1,
.manifesto-panel h2,
.section-head h2,
.data-split-copy h2,
.faq h2,
.product-card h3,
.price-card h3,
.price,
.faq summary {
  font-family: var(--owmii-display-font);
  color: #111111;
}

.site-nav a {
  font-family: var(--owmii-body-font);
  color: #757575;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.site-nav a:hover {
  color: #111111;
}

.site-nav a:last-child {
  color: #ffffff;
  background: var(--owmii-action-bg);
  font-size: 14px;
  font-weight: 500;
}

.assemble-hero .hero-pill {
  font-family: var(--owmii-body-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.assemble-hero .hero-announcement {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
  text-decoration: none;
  text-transform: none;
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
  padding: 3px 17px 3px 3px;
}

.assemble-hero .hero-announcement span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #111111;
  background: #f1fd82;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
  padding: 0 15px;
}

.assemble-hero .hero-announcement strong {
  color: #333333;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: none;
  transition: color 260ms ease;
}

.assemble-hero .hero-announcement:hover,
.assemble-hero .hero-announcement.is-hovering {
  border-color: var(--owmii-action-bg);
  background: var(--owmii-action-bg);
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.16);
}

.assemble-hero .hero-announcement:hover strong,
.assemble-hero .hero-announcement.is-hovering strong {
  color: #ffffff;
}

.assemble-hero .motion-copy h1,
.assemble-hero .motion-copy-card:not(:first-child) h1 {
  font-family: var(--owmii-hero-font);
  color: #111111;
  max-width: 758px;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.assemble-hero .btn.primary {
  width: 118px;
  min-height: 40px;
  justify-content: center;
  gap: 8px;
  border-radius: 50px;
  background: var(--owmii-action-bg);
  color: #ffffff;
  font-family: "Anthro Trial Medium", var(--owmii-body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  overflow: hidden;
  padding: 0;
  will-change: width;
  transition:
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.assemble-hero .btn.primary:hover,
.assemble-hero .btn.primary.is-hovering {
  width: 142px;
  background: var(--owmii-action-bg);
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.18);
}

.assemble-hero .btn.primary::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 999px;
  background: #f1fd82;
}

.assemble-hero .motion-copy h1 span {
  position: relative;
  display: inline-block;
  color: #111111;
  background: transparent;
  isolation: isolate;
}

.assemble-hero .motion-copy h1 span::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 52%;
  width: 160px;
  height: 70px;
  border-radius: 200px;
  background: #f1fd82;
  opacity: 0.5;
  transform: translate(-50%, -50%);
}

.assemble-hero .motion-copy .lead {
  color: #494949;
  font-family: var(--owmii-book-font);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.assemble-hero .hero-trust-note {
  color: #757575;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.012em;
}

.assemble-hero .motion-fragment {
  color: #111111;
  font-family: var(--owmii-body-font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.016em;
}

.btn,
.pill-link,
.product-card .btn,
.price-card .btn,
.footer-links a {
  font-family: var(--owmii-body-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.manifesto-panel h2,
.section-head h2,
.data-split-copy h2,
.faq h2 {
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.section-head p,
.manifesto-panel p,
.data-split-copy p,
.product-card p,
.price-card p,
.faq p,
.faq li {
  color: #757575;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.012em;
}

.product-card h3,
.price-card h3,
.faq summary {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.032em;
}

.price {
  font-weight: 500;
  letter-spacing: -0.055em;
}

@media (max-width: 720px) {
  .assemble-hero .motion-copy h1,
  .assemble-hero .motion-copy-card:not(:first-child) h1,
  .manifesto-panel h2,
  .section-head h2,
  .data-split-copy h2,
  .faq h2 {
    font-size: 34px;
    letter-spacing: -0.04em;
  }

  .assemble-hero .motion-copy h1 span::before {
    width: 90px;
    height: 38px;
  }

  .assemble-hero .motion-copy .lead {
    font-size: 17px;
    line-height: 1.4;
  }
}

@media (min-width: 730px) and (max-width: 999px) {
  .assemble-hero .motion-copy h1,
  .assemble-hero .motion-copy-card:not(:first-child) h1 {
    font-size: 56px;
  }

  .assemble-hero .motion-copy h1 span::before {
    width: 140px;
    height: 65px;
  }

  .assemble-hero .motion-copy .lead {
    font-size: 20px;
  }
}

/* Final hero object rig: Assemble-style floating card placement and motion. */
@keyframes owmiiAssembleFloat {
  0%,
  100% {
    transform: translate3d(var(--x), var(--y), 0) rotate(var(--r)) scale(1);
  }

  50% {
    transform: translate3d(var(--x), calc(var(--y) - var(--float)), 0) rotate(calc(var(--r) + var(--twist))) scale(1.012);
  }
}

.assemble-hero .motion-fragments {
  left: 50%;
  top: 0;
  width: min(1180px, 100vw);
  height: 720px;
  overflow: visible;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.assemble-hero .motion-fragment {
  left: 50%;
  right: auto;
  top: 0;
  bottom: auto;
  width: var(--card-w, 124px);
  height: var(--card-h, 64px);
  min-width: 0;
  min-height: 0;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 18, 20, 0.07);
  border-radius: 21px;
  color: #111111;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    14px 20px 34px rgba(17, 18, 20, 0.105),
    4px 7px 12px rgba(17, 18, 20, 0.045),
    0 1px 0 rgba(255, 255, 255, 0.96) inset;
  backdrop-filter: blur(16px);
  font-family: var(--owmii-body-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.016em;
  opacity: 1;
  transform:
    translate3d(
      calc(var(--x) + (var(--motion-flow, 0) * var(--flow-x))),
      calc(var(--y) + (var(--motion-flow, 0) * var(--flow-y))),
      0
    )
    rotate(calc(var(--r) + (var(--motion-flow, 0) * var(--flow-r))))
    scale(calc(1 - (var(--motion-flow, 0) * 0.1)));
  transform-origin: center;
  animation: none;
  transition:
    opacity 260ms ease,
    filter 260ms ease,
    transform 90ms linear;
  will-change: transform, opacity, filter;
}

.assemble-hero .fragment-payment {
  --x: -552px;
  --y: 126px;
  --r: -10deg;
  --flow-x: 150px;
  --flow-y: 500px;
  --flow-r: 5deg;
}

.assemble-hero .fragment-closeout {
  --x: 402px;
  --y: 170px;
  --r: 10deg;
  --flow-x: -150px;
  --flow-y: 450px;
  --flow-r: -5deg;
  --card-w: 118px;
}

.assemble-hero .fragment-note {
  --x: -390px;
  --y: 392px;
  --r: -8deg;
  --flow-x: 100px;
  --flow-y: 250px;
  --flow-r: 4deg;
  --card-w: 104px;
  --card-h: 58px;
}

.assemble-hero .fragment-gap {
  --x: 220px;
  --y: 424px;
  --r: 8deg;
  --flow-x: -75px;
  --flow-y: 200px;
  --flow-r: -4deg;
  --card-w: 124px;
  --card-h: 58px;
}

.assemble-hero .fragment-file {
  --x: -664px;
  --y: 532px;
  --r: -11deg;
  --flow-x: 225px;
  --flow-y: 175px;
  --flow-r: 5deg;
  --card-w: 132px;
}

.assemble-hero .fragment-follow {
  --x: 512px;
  --y: 552px;
  --r: 9deg;
  --flow-x: -250px;
  --flow-y: 175px;
  --flow-r: -5deg;
  --card-w: 128px;
}

.assemble-hero[data-step="1"] .motion-fragment {
  opacity: 0;
  filter: blur(5px) saturate(0.92);
  transform:
    translate3d(
      calc(var(--x) + var(--flow-x)),
      calc(var(--y) + var(--flow-y)),
      0
    )
    rotate(calc(var(--r) + var(--flow-r)))
    scale(0.9);
}

.assemble-hero[data-step="2"] .motion-fragment,
.assemble-hero[data-step="3"] .motion-fragment {
  opacity: 0;
  filter: blur(7px) saturate(0.92);
  transform:
    translate3d(
      calc(var(--x) + var(--flow-x)),
      calc(var(--y) + var(--flow-y) + 72px),
      0
    )
    rotate(calc(var(--r) + var(--flow-r)))
    scale(0.72);
}

@media (min-width: 721px) and (max-width: 980px) {
  .assemble-hero .motion-fragments {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .assemble-hero .motion-fragment {
    animation: none;
  }
}

/* Final hero spacing pass: match Assemble's top rhythm and object flow. */
.assemble-hero .motion-hero-sticky {
  top: -72px;
}

.assemble-hero .motion-copy-card {
  inset: 78px auto auto 50%;
}

.assemble-hero .motion-actions {
  top: 359px;
}

.assemble-hero .workspace-surface {
  top: 28.25%;
  z-index: 4;
}

.assemble-hero .fragment-payment {
  --y: 12px;
}

.assemble-hero .fragment-closeout {
  --y: 56px;
}

.assemble-hero .fragment-note {
  --y: 278px;
}

.assemble-hero .fragment-gap {
  --y: 308px;
}

.assemble-hero .fragment-file {
  --y: 418px;
}

.assemble-hero .fragment-follow {
  --y: 418px;
}

.assemble-hero .motion-copy .lead {
  max-width: 430px;
}

.assemble-hero .hero-trust-note {
  max-width: 500px;
}

.assemble-hero .motion-stage {
  z-index: 3;
}

.assemble-hero[data-step="2"] .workspace-surface-screen .shot-tablet,
.assemble-hero[data-step="3"] .workspace-surface-screen .shot-mobile {
  object-fit: contain;
  background: #f7f7f5;
}

.assemble-hero .motion-fragment {
  opacity: calc(1 - (var(--motion-flow, 0) * 0.68));
}

/* Device story lock: each step keeps a stable text-to-device gap. */
.assemble-hero[data-step="2"] .workspace-surface {
  width: min(540px, 50vw);
  height: min(790px, 70vh);
  border-radius: 42px;
  transform: translate3d(-50%, -30%, 0) rotateX(0) rotateY(0) scale(1.01);
}

.assemble-hero[data-step="3"] .motion-copy .lead {
  max-width: 560px;
}

.assemble-hero[data-step="3"] .workspace-surface {
  width: min(330px, 46vw);
  height: min(596px, 62vh);
  border-radius: 45px;
  transform: translate3d(-50%, -33%, 0) rotateX(0) rotateY(0) scale(1);
}

.assemble-hero[data-step="2"] .workspace-search-demo {
  bottom: 18px;
  width: min(430px, calc(100% - 44px));
  border-radius: 19px;
  padding: 10px;
}

.assemble-hero[data-step="2"] .search-line {
  min-height: 31px;
  border-radius: 12px;
  padding: 0 10px;
}

.assemble-hero[data-step="2"] .search-line span,
.assemble-hero[data-step="2"] .search-results span {
  font-size: 10px;
}

.assemble-hero[data-step="2"] .search-line strong {
  font-size: 12px;
}

.assemble-hero[data-step="2"] .search-results {
  margin-top: 8px;
}

.assemble-hero[data-step="3"] .workspace-search-demo {
  display: none;
}

.assemble-hero .motion-stage,
.assemble-hero .motion-stage-glow,
.assemble-hero .motion-grid,
.assemble-hero .workspace-surface {
  pointer-events: none;
}

.assemble-hero .workspace-surface-link {
  display: contents;
  color: inherit;
  text-decoration: none;
}

.assemble-hero .workspace-surface-link .workspace-surface {
  pointer-events: auto;
  cursor: pointer;
}

.assemble-hero .motion-actions {
  width: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  justify-content: center;
  pointer-events: auto;
  z-index: 8;
  transition: opacity 90ms ease-out;
}

.assemble-hero .motion-actions .btn.primary {
  width: 112px;
  inline-size: 112px;
  flex: 0 0 auto;
  cursor: pointer;
  font-size: 14px;
  transition:
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    inline-size 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.assemble-hero .motion-actions:hover .btn.primary,
.assemble-hero .motion-actions .btn.primary:hover,
.assemble-hero .motion-actions .btn.primary:focus-visible {
  width: 132px;
  inline-size: 132px;
  background: var(--owmii-action-bg);
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.18);
}

/* Problem to solution section: independent from hero mockup rules. */
.problem-solution {
  width: min(100% - 48px, 1460px);
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 116px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) clamp(30px, 7vw, 88px);
  color: #111111;
  background:
    radial-gradient(circle at 14% 24%, rgba(237, 255, 102, 0.28), transparent 18%),
    radial-gradient(circle at 82% 72%, rgba(17, 17, 17, 0.055), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 247, 0.95));
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.problem-copy {
  max-width: 540px;
}

.problem-copy .eyebrow {
  margin-bottom: 22px;
}

.problem-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #111111;
  font-family: var(--owmii-hero-font);
  font-size: clamp(48px, 5.2vw, 82px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.problem-copy p:not(.eyebrow) {
  max-width: 470px;
  margin: 24px 0 0;
  color: #555555;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.018em;
}

.problem-flow {
  position: relative;
  min-height: 560px;
  overflow: clip;
}

.problem-solution {
  width: 100%;
  margin: 0;
  padding-left: max(clamp(32px, 8vw, 112px), calc((100vw - 1460px) / 2 + 88px));
  padding-right: max(clamp(32px, 8vw, 112px), calc((100vw - 1460px) / 2 + 88px));
}

@media (max-width: 1040px) {
  .problem-solution {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-left: clamp(22px, 5vw, 46px);
    padding-right: clamp(22px, 5vw, 46px);
  }

  .problem-copy {
    max-width: 760px;
    text-align: center;
    justify-self: center;
  }

  .problem-copy p:not(.eyebrow) {
    margin-inline: auto;
  }

  .problem-flow {
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .problem-solution {
    width: 100%;
    min-height: auto;
    padding-block: 58px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .problem-copy h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .problem-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .problem-flow {
    min-height: auto;
  }
}

/* Problem to solution v2: abstract hub instead of a fake product screen. */
.problem-flow {
  isolation: isolate;
  display: grid;
  place-items: center;
}

.flow-rings,
.tool-orbit,
.owmii-hub-card {
  position: absolute;
}

.flow-rings {
  inset: 7% 2% 7% 3%;
  z-index: 0;
  pointer-events: none;
}

.flow-rings span {
  position: absolute;
  border: 1px solid rgba(17, 17, 17, 0.055);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.flow-rings span:first-child {
  inset: 9% 12% 12% 8%;
}

.flow-rings span:last-child {
  inset: 22% 23% 23% 20%;
  border-style: dashed;
  border-color: rgba(17, 17, 17, 0.12);
}

.tool-orbit {
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.flow-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(17, 17, 17, 0.5);
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 16px 38px rgba(17, 17, 17, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-badge {
  position: absolute;
  left: 13%;
  top: 2%;
  transform: rotate(-3deg);
}

.inside-badge {
  margin-bottom: -7px;
}

.tool-card {
  position: absolute;
  width: 126px;
  height: 118px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 30px;
  color: rgba(17, 17, 17, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  box-shadow:
    0 28px 54px rgba(17, 17, 17, 0.115),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transform: rotate(var(--rotate, 0deg));
  animation: tool-float 7s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.tool-card::after {
  content: "";
  position: absolute;
  width: 132px;
  border-top: 1px dashed rgba(17, 17, 17, 0.18);
  transform-origin: left center;
  opacity: 0.78;
}

.tool-card small {
  color: rgba(17, 17, 17, 0.68);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.tool-icon {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(17, 17, 17, 0.04);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.tool-icon::before,
.tool-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-sheet {
  background: linear-gradient(135deg, rgba(241, 253, 130, 0.9), rgba(255, 255, 255, 0.86));
}

.icon-sheet::before {
  inset: 9px;
  border: 2px solid rgba(17, 17, 17, 0.2);
  border-radius: 7px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.16) 0 0) 0 10px / 100% 2px no-repeat,
    linear-gradient(rgba(17, 17, 17, 0.1) 0 0) 0 20px / 100% 2px no-repeat,
    linear-gradient(90deg, rgba(17, 17, 17, 0.14) 0 0) 10px 0 / 2px 100% no-repeat,
    linear-gradient(90deg, rgba(17, 17, 17, 0.1) 0 0) 20px 0 / 2px 100% no-repeat;
}

.icon-sheet::after {
  left: 14px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: rgba(17, 17, 17, 0.3);
}

.icon-note::before {
  left: 13px;
  right: 11px;
  top: 9px;
  bottom: 8px;
  border-radius: 6px 10px 10px 6px;
  border: 2px solid rgba(17, 17, 17, 0.28);
  border-left-width: 5px;
}

.icon-note::after {
  left: 21px;
  right: 13px;
  top: 19px;
  height: 2px;
  border-radius: 99px;
  background: rgba(17, 17, 17, 0.22);
  box-shadow: 0 7px 0 rgba(17, 17, 17, 0.14);
}

.icon-payment::before {
  left: 11px;
  top: 8px;
  width: 21px;
  height: 29px;
  border-radius: 6px;
  border: 2px solid rgba(17, 17, 17, 0.25);
  background:
    linear-gradient(rgba(17, 17, 17, 0.16) 0 0) 5px 8px / 11px 2px no-repeat,
    linear-gradient(rgba(17, 17, 17, 0.12) 0 0) 5px 15px / 9px 2px no-repeat;
}

.icon-payment::after {
  right: 8px;
  bottom: 10px;
  width: 20px;
  height: 13px;
  border-radius: 5px;
  border: 2px solid rgba(17, 17, 17, 0.28);
  background:
    linear-gradient(rgba(17, 17, 17, 0.22) 0 0) 3px 4px / 12px 2px no-repeat,
    rgba(241, 253, 130, 0.35);
}

.icon-file::before {
  left: 12px;
  right: 11px;
  top: 16px;
  height: 20px;
  border-radius: 8px;
  border: 2px solid rgba(17, 17, 17, 0.26);
  background:
    radial-gradient(circle at 72% 30%, rgba(17, 17, 17, 0.22) 0 2px, transparent 3px),
    linear-gradient(135deg, transparent 47%, rgba(17, 17, 17, 0.17) 48% 52%, transparent 53%);
}

.icon-file::after {
  left: 15px;
  top: 10px;
  width: 16px;
  height: 9px;
  border-radius: 7px 7px 0 0;
  background: rgba(17, 17, 17, 0.15);
}

.icon-follow::before {
  inset: 10px;
  border-radius: 10px;
  border: 2px solid rgba(17, 17, 17, 0.26);
  background:
    linear-gradient(#ff8f8f 0 0) 0 0 / 100% 11px no-repeat,
    linear-gradient(rgba(17, 17, 17, 0.18) 0 0) 0 11px / 100% 2px no-repeat,
    radial-gradient(circle at 50% 67%, rgba(17, 17, 17, 0.32) 0 2px, transparent 3px);
}

.icon-follow::after {
  content: "28";
  left: 0;
  right: 0;
  top: 18px;
  display: block;
  color: rgba(17, 17, 17, 0.72);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.04em;
}

.tool-sheet {
  left: 4%;
  top: 8%;
  --rotate: -8deg;
  --delay: -0.4s;
}

.tool-sheet::after {
  left: 88%;
  top: 66%;
  transform: rotate(18deg);
}

.tool-note {
  left: 16%;
  top: 43%;
  --rotate: 6deg;
  --delay: -1.2s;
}

.tool-note::after {
  left: 88%;
  top: 45%;
  transform: rotate(-3deg);
}

.tool-payment {
  left: 25%;
  top: 10%;
  --rotate: -4deg;
  --delay: -2.1s;
}

.tool-payment::after {
  left: 83%;
  top: 74%;
  width: 92px;
  transform: rotate(42deg);
}

.tool-file {
  left: 5%;
  bottom: 11%;
  --rotate: 8deg;
  --delay: -3.3s;
}

.tool-file::after {
  left: 88%;
  top: 34%;
  transform: rotate(-20deg);
}

.tool-follow {
  left: 25%;
  bottom: 7%;
  --rotate: -6deg;
  --delay: -4.2s;
}

.tool-follow::after {
  left: 85%;
  top: 25%;
  width: 88px;
  transform: rotate(-38deg);
}

.owmii-hub-card {
  right: 0;
  top: 50%;
  z-index: 3;
  width: min(420px, 56%);
  min-height: 430px;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 44px;
  color: #111111;
  overflow: clip;
  background:
    radial-gradient(circle at 24% 18%, rgba(241, 253, 130, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(252, 252, 249, 0.82));
  box-shadow:
    0 44px 105px rgba(17, 17, 17, 0.135),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform: translateY(-50%);
}

.owmii-hub-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(241, 253, 130, 0.2), transparent 64%);
  filter: blur(2px);
  pointer-events: none;
}

.hub-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hub-head > div,
.hub-modules span,
.hub-connection p {
  min-width: 0;
}

.hub-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #111111;
  background: #f1fd82;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
  box-shadow:
    0 18px 32px rgba(17, 17, 17, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.hub-head strong {
  display: block;
  color: #111111;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hub-head small {
  display: block;
  margin-top: 3px;
  color: rgba(17, 17, 17, 0.5);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.012em;
}

.hub-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hub-modules span {
  min-height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.065);
  border-radius: 17px;
  padding: 0 14px;
  color: rgba(17, 17, 17, 0.68);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.014em;
}

.hub-connection {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  padding-top: 8px;
}

.hub-connection span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #111111 0 4px, transparent 5px),
    radial-gradient(circle at center, rgba(241, 253, 130, 0.92), rgba(241, 253, 130, 0.2));
}

.hub-connection p {
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: -0.012em;
}

@keyframes tool-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@media (max-width: 1040px) {
  .flow-rings {
    inset: 4% 6%;
  }

  .owmii-hub-card {
    right: 4%;
    width: min(440px, 62%);
  }

  .tool-sheet {
    left: 8%;
  }

  .tool-note {
    left: 6%;
  }

  .tool-payment {
    left: 27%;
  }

  .tool-file {
    left: 9%;
  }

  .tool-follow {
    left: 28%;
  }
}

@media (min-width: 1181px) and (max-width: 1359px),
  (min-width: 1181px) and (max-height: 859px) {
  .problem-solution {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding-left: clamp(34px, 6vw, 72px);
    padding-right: clamp(34px, 6vw, 72px);
  }

  .problem-copy {
    max-width: 840px;
    text-align: center;
    justify-self: center;
  }

  .problem-copy p:not(.eyebrow) {
    margin-inline: auto;
  }

  .problem-flow {
    width: min(920px, 100%);
    min-height: 560px;
    justify-self: center;
  }

  .flow-rings {
    inset: 4% 6%;
  }

  .owmii-hub-card {
    right: 4%;
    width: min(420px, 54%);
  }

  .tool-sheet {
    left: 8%;
    top: 8%;
  }

  .tool-note {
    left: 7%;
    top: 43%;
  }

  .tool-payment {
    left: 25%;
    top: 9%;
  }

  .tool-file {
    left: 9%;
    bottom: 11%;
  }

  .tool-follow {
    left: 27%;
    bottom: 7%;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .problem-flow {
    min-height: 610px;
  }

  .owmii-hub-card {
    right: 2%;
    width: min(390px, 54%);
    min-height: 410px;
    border-radius: 38px;
  }

  .tool-card {
    width: 112px;
    height: 104px;
    border-radius: 26px;
  }

  .tool-card::after {
    width: 110px;
  }

  .tool-sheet {
    left: 4%;
    top: 7%;
  }

  .tool-note {
    left: 3%;
    top: 39%;
  }

  .tool-payment {
    left: 21%;
    top: 7%;
  }

  .tool-file {
    left: 5%;
    bottom: 12%;
  }

  .tool-follow {
    left: 21%;
    bottom: 6%;
  }
}

@media (max-width: 700px) {
  .problem-flow {
    display: grid;
    gap: 18px;
  }

  .flow-rings {
    display: none;
  }

  .tool-orbit,
  .owmii-hub-card {
    position: relative;
    inset: auto;
    transform: none;
  }

  .tool-orbit {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 10px;
  }

  .tool-card {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    height: 92px;
    border-radius: 24px;
    transform: none;
    animation: none;
  }

  .tool-card::after {
    display: none;
  }

  .tool-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .owmii-hub-card {
    width: 100%;
    min-height: auto;
    padding: 24px;
    border-radius: 32px;
  }

  .hub-modules {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tool-card {
    animation: none;
  }
}

/* Workspace picker: page 3 product selection. */
.workspace-picker {
  position: relative;
  width: 100%;
  margin-top: -38px;
  padding:
    clamp(112px, 11vw, 166px)
    max(clamp(24px, 6vw, 88px), calc((100vw - 1460px) / 2 + 72px))
    clamp(68px, 8vw, 118px);
  overflow: clip;
  color: #111111;
  background:
    radial-gradient(circle at 18% 24%, rgba(241, 253, 130, 0.26), transparent 18%),
    radial-gradient(circle at 82% 30%, rgba(17, 17, 17, 0.04), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 247, 0.96));
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.workspace-picker::before {
  content: "";
  position: absolute;
  top: -110px;
  left: 50%;
  width: min(1120px, 82vw);
  height: 210px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 48% 45%, rgba(241, 253, 130, 0.26), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.86));
  filter: blur(2px);
  transform: translateX(-50%);
  pointer-events: none;
}

.workspace-picker-head {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.workspace-picker-head h2 {
  max-width: 880px;
  margin: 0 auto;
  color: #111111;
  font-family: var(--owmii-display-font);
  font-size: clamp(48px, 6.8vw, 96px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.workspace-picker-head p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px auto 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.018em;
}

.workspace-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 5vw, 58px);
}

.workspace-card {
  position: relative;
  min-height: 292px;
  grid-column: span 4;
  overflow: hidden;
  display: grid;
  align-content: start;
  border: 1px solid rgba(17, 17, 17, 0.075);
  border-radius: 34px;
  padding: 26px;
  color: #111111;
  background:
    radial-gradient(circle at 90% 8%, rgba(241, 253, 130, 0.18), transparent 26%),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 28px 72px rgba(17, 17, 17, 0.075),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.workspace-card[data-card-href] {
  cursor: pointer;
}

.workspace-card:hover {
  border-color: rgba(17, 17, 17, 0.12);
  box-shadow:
    0 36px 92px rgba(17, 17, 17, 0.105),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transform: translateY(-4px);
}

.workspace-card[data-card-href]:focus-visible {
  outline: 3px solid rgba(17, 17, 17, 0.16);
  outline-offset: 4px;
}

.workspace-card-featured {
  min-height: 410px;
  grid-column: span 6;
  grid-template-columns: minmax(0, 0.86fr) minmax(220px, 0.9fr);
  align-items: stretch;
  gap: 22px;
  padding: 28px;
}

.workspace-card-copy {
  min-width: 0;
  display: grid;
  align-content: start;
}

.workspace-status {
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.085);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(17, 17, 17, 0.66);
  background: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.workspace-status.wait {
  color: rgba(17, 17, 17, 0.52);
  background: rgba(255, 255, 255, 0.58);
}

.workspace-card h3 {
  max-width: 360px;
  margin: 22px 0 0;
  color: #111111;
  font-family: var(--owmii-display-font);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
}

.workspace-card p {
  max-width: 390px;
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.014em;
}

.workspace-card .chips {
  margin-top: 22px;
}

.workspace-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.workspace-card-actions .card-link {
  margin-top: 0;
}

.workspace-card-actions .card-link.demo-link,
.catalog-card-actions .card-link.demo-link,
.product-detail-secondary {
  border-color: rgba(17, 17, 17, 0.12);
  background: #edff66;
  color: #111111;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.workspace-card-actions .card-link.demo-link:hover,
.workspace-card-actions .card-link.demo-link:focus-visible,
.catalog-card-actions .card-link.demo-link:hover,
.catalog-card-actions .card-link.demo-link:focus-visible,
.product-detail-secondary:hover,
.product-detail-secondary:focus-visible {
  background: #222222;
  color: #ffffff;
  transform: translateY(-1px);
}

.workspace-card-media {
  position: relative;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 247, 243, 0.78));
  box-shadow:
    0 24px 58px rgba(17, 17, 17, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform: rotate(var(--preview-rotate, 1.1deg));
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
  isolation: isolate;
}

.workspace-card-featured .workspace-card-media {
  height: 354px;
}

.workspace-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at 24% 10%, rgba(241, 253, 130, 0.2), transparent 28%);
  pointer-events: none;
}

.workspace-card-media img {
  width: var(--preview-img-width, 130%);
  height: 100%;
  object-fit: cover;
  object-position: var(--preview-img-position, left top);
  filter: saturate(0.96) contrast(0.98);
  transform: var(--preview-img-transform, translateX(-10%) scale(1.02));
}

.workspace-card:hover .workspace-card-media {
  transform: rotate(0deg) translateY(-3px);
  box-shadow:
    0 30px 70px rgba(17, 17, 17, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.94) inset;
}

.preview-beauty {
  --preview-image: url("./assets/beauty-dashboard-live.png");
  --preview-rotate: -1.4deg;
  --preview-img-width: 138%;
  --preview-img-position: 28% 36%;
  --preview-img-transform: translateX(-14%) scale(1.02);
  --source-x: 50%;
  --source-y: 50%;
  --source-w: 62%;
  --source-h: 34%;
  --lift-x: 52%;
  --lift-y: 58%;
  --lift-w: 238px;
  --lift-rotate: -2.2deg;
}

.preview-vacation {
  --preview-image: url("./assets/vacation-tablet-dashboard.png");
  --preview-rotate: 1.3deg;
  --preview-img-width: 116%;
  --preview-img-position: 50% 30%;
  --preview-img-transform: translateX(-8%) scale(1.04);
  --source-x: 51%;
  --source-y: 66%;
  --source-w: 67%;
  --source-h: 24%;
  --lift-x: 55%;
  --lift-y: 61%;
  --lift-w: 258px;
  --lift-rotate: 1.8deg;
}

.preview-source {
  position: absolute;
  left: var(--source-x);
  top: var(--source-y);
  z-index: 2;
  width: var(--source-w);
  height: var(--source-h);
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 999px rgba(255, 255, 255, 0.1),
    0 12px 26px rgba(17, 17, 17, 0.055),
    0 0 0 7px rgba(241, 253, 130, 0.09);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.preview-source::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42px;
  width: 1px;
  height: 44px;
  border-left: 1px dashed rgba(17, 17, 17, 0.18);
  transform: translateX(-50%);
}

.preview-lift {
  position: absolute;
  left: var(--lift-x);
  top: var(--lift-y);
  z-index: 4;
  width: min(var(--lift-w), 88%);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.095);
  border-radius: 20px;
  padding: 0;
  color: #111111;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 34px 76px rgba(17, 17, 17, 0.18),
    0 15px 30px rgba(17, 17, 17, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.94) inset;
  transform: translate(-50%, -50%) translateY(-9px) rotate(var(--lift-rotate, -1.2deg));
  pointer-events: none;
}

.preview-lift::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: inherit;
  pointer-events: none;
}

.preview-lift img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.98) contrast(1.01);
  transform: none;
}

.workspace-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #111111;
  background: rgba(241, 253, 130, 0.78);
  box-shadow:
    0 18px 36px rgba(17, 17, 17, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.workspace-card.is-waitlist {
  background:
    radial-gradient(circle at 88% 14%, rgba(17, 17, 17, 0.035), transparent 24%),
    rgba(255, 255, 255, 0.66);
}

.workspace-card.is-waitlist .workspace-status {
  position: absolute;
  right: 24px;
  top: 24px;
}

.workspace-card.is-waitlist h3 {
  margin-top: 26px;
  font-size: clamp(24px, 2.4vw, 32px);
}

.workspace-picker-footer {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px auto 0;
  padding: 8px 8px 8px 18px;
  border: 1px solid rgba(17, 17, 17, 0.075);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.56);
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 18px 46px rgba(17, 17, 17, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.workspace-picker-footer p {
  min-width: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.012em;
}

.workspace-explore-cta {
  min-height: 40px;
  width: 174px;
  flex: 0 0 174px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 999px;
  color: #111111;
  background: rgba(241, 253, 130, 0.88);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
  font-family: "Anthro Trial Medium", var(--owmii-body-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition:
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    flex-basis 360ms cubic-bezier(0.22, 1, 0.36, 1),
    color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.workspace-explore-cta:hover,
.workspace-explore-cta:focus-visible,
.workspace-explore-cta.is-hovering {
  width: 204px;
  flex-basis: 204px;
  color: #ffffff;
  background: #222222;
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.16);
}

@media (max-width: 1120px) {
  .workspace-card-featured {
    grid-column: span 12;
  }

  .workspace-card.is-waitlist {
    grid-column: span 4;
  }
}

@media (max-width: 860px) {
  .workspace-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workspace-card,
  .workspace-card.is-waitlist,
  .workspace-card-featured {
    grid-column: span 1;
  }

  .workspace-card-featured {
    grid-template-columns: 1fr;
  }

  .workspace-card-featured .workspace-card-media {
    height: 260px;
  }

  .preview-lift {
    width: min(var(--lift-w), 76%);
  }
}

@media (max-width: 620px) {
  .workspace-picker {
    margin-top: -20px;
    padding: 76px 18px 64px;
  }

  .workspace-picker-head h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .workspace-picker-head p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .workspace-card-featured .workspace-card-media {
    height: 232px;
  }

  .workspace-card-media img {
    width: 100%;
    transform: none;
  }

  .preview-lift {
    width: min(218px, 82%);
  }

  .workspace-picker-footer {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
    border-radius: 28px;
    padding: 16px;
  }

  .workspace-explore-cta,
  .workspace-explore-cta:hover,
  .workspace-explore-cta:focus-visible,
  .workspace-explore-cta.is-hovering {
    width: 100%;
    flex-basis: auto;
  }
}

.workspace-picker,
.data-clarity,
.setup-story,
.pricing {
  scroll-margin-top: 92px;
}

/* Core workflows: page 4 generic product proof. */
.core-workflows {
  position: relative;
  width: 100%;
  scroll-margin-top: 92px;
  padding:
    clamp(90px, 10vw, 146px)
    max(clamp(22px, 6vw, 88px), calc((100vw - 1460px) / 2 + 72px))
    clamp(82px, 10vw, 142px);
  overflow: clip;
  color: #111111;
  background:
    radial-gradient(circle at 22% 18%, rgba(241, 253, 130, 0.22), transparent 20%),
    radial-gradient(circle at 76% 16%, rgba(17, 17, 17, 0.045), transparent 25%),
    linear-gradient(180deg, rgba(250, 250, 247, 0.96), rgba(255, 255, 255, 0.98));
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.core-workflows::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 78px;
  width: min(980px, 80vw);
  height: 460px;
  border-radius: 999px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  transform: translateX(-50%);
  pointer-events: none;
}

.core-flow-head {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.core-flow-head .eyebrow {
  margin-bottom: 18px;
}

.core-flow-head h2 {
  max-width: 880px;
  margin: 0 auto;
  color: #111111;
  font-family: var(--owmii-display-font);
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.064em;
}

.core-flow-head p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px auto 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: -0.018em;
}

.core-flow-showcase {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  margin: clamp(34px, 4.4vw, 58px) auto 0;
}

.core-flow-list {
  display: grid;
  align-content: center;
}

.core-flow-tab {
  appearance: none;
  position: relative;
  display: grid;
  gap: 7px;
  width: 100%;
  min-height: 74px;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  padding: 17px 0 18px;
  color: rgba(17, 17, 17, 0.46);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.core-flow-tab span {
  color: rgba(17, 17, 17, 0.38);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.core-flow-tab strong {
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--owmii-display-font);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.052em;
  transition: color 220ms ease;
}

.core-flow-tab small {
  max-width: 300px;
  max-height: 0;
  overflow: hidden;
  color: rgba(17, 17, 17, 0.48);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.014em;
  opacity: 0;
  transform: translateY(-3px);
  transition:
    max-height 260ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.core-flow-tab i {
  overflow: hidden;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  background: transparent;
}

.core-flow-tab i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #222222;
  transform: scaleX(0);
  transform-origin: left;
}

.core-flow-tab:hover strong,
.core-flow-tab:focus-visible strong,
.core-flow-tab.is-flow-active strong {
  color: #111111;
}

.core-flow-tab.is-flow-active small {
  max-height: 86px;
  opacity: 1;
  transform: translateY(0);
}

.core-flow-tab.is-flow-active i {
  background: rgba(17, 17, 17, 0.08);
}

.core-flow-tab.is-flow-active i::after {
  animation: core-flow-progress 6.2s linear 1 forwards;
}

.core-flow-tab:focus {
  outline: none;
}

.core-flow-tab:focus-visible {
  outline: 2px solid rgba(34, 34, 34, 0.24);
  outline-offset: 6px;
}

.core-flow-stage {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.075);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 252, 0.7)),
    radial-gradient(circle at 82% 8%, rgba(241, 253, 130, 0.2), transparent 28%);
  box-shadow:
    0 34px 94px rgba(17, 17, 17, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.94) inset;
}

.core-flow-stage-top {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  padding: 0 18px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 12px;
  font-weight: 600;
}

.core-flow-stage-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.12);
}

.core-flow-stage-top strong {
  margin-left: 8px;
  color: rgba(17, 17, 17, 0.56);
  font-size: 12px;
  font-weight: 600;
}

.core-flow-viewport {
  position: relative;
  min-height: clamp(470px, 46vw, 620px);
  padding: clamp(22px, 3vw, 38px);
}

.core-flow-viewport::before,
.core-flow-viewport::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.core-flow-viewport::before {
  inset: clamp(16px, 2.6vw, 34px);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 18% 20%, rgba(241, 253, 130, 0.13), transparent 26%),
    radial-gradient(circle at 86% 78%, rgba(17, 17, 17, 0.035), transparent 28%);
  background-size:
    88px 100%,
    100% 58px,
    100% 100%,
    100% 100%;
  mask-image: radial-gradient(circle at center, black 0%, black 54%, transparent 86%);
  opacity: 0.72;
}

.core-flow-viewport::after {
  inset: clamp(18px, 3vw, 36px);
  border-radius: 30px;
  background: radial-gradient(circle at 52% 52%, rgba(255, 255, 255, 0.04), transparent 48%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.58) inset;
  opacity: 0.84;
}

.core-flow-canvas {
  position: absolute;
  z-index: 0;
  inset: clamp(24px, 3.2vw, 42px);
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(150px, 0.42fr);
  gap: 14px;
  pointer-events: none;
  opacity: 0.38;
  filter: saturate(0.75);
}

.core-flow-canvas-sidebar,
.core-flow-canvas-main,
.core-flow-canvas-rail {
  min-width: 0;
  border: 1px solid rgba(17, 17, 17, 0.055);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.035);
}

.core-flow-canvas-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
  border-radius: 24px;
  padding: 18px 20px;
}

.core-flow-canvas-sidebar span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.09), rgba(17, 17, 17, 0.035));
}

.core-flow-canvas-sidebar span:first-child {
  background: rgba(241, 253, 130, 0.5);
}

.core-flow-canvas-main {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  border-radius: 28px;
  padding: 18px;
}

.canvas-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.canvas-kpis span,
.canvas-health span,
.core-flow-canvas-rail span {
  border: 1px solid rgba(17, 17, 17, 0.045);
  background: rgba(255, 255, 255, 0.5);
}

.canvas-kpis span {
  min-height: 58px;
  border-radius: 18px;
}

.canvas-health {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(74px, 1fr);
  gap: 10px;
}

.canvas-health span {
  border-radius: 20px;
}

.canvas-health span::before,
.core-flow-canvas-rail span::before {
  content: "";
  display: block;
  width: 42%;
  height: 6px;
  margin: 18px 0 0 18px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.11);
}

.canvas-health span::after,
.core-flow-canvas-rail span::after {
  content: "";
  display: block;
  width: 62%;
  height: 5px;
  margin: 10px 0 0 18px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.065);
}

.core-flow-canvas-rail {
  display: grid;
  align-content: start;
  gap: 10px;
  border-radius: 28px;
  padding: 18px;
}

.core-flow-canvas-rail span {
  min-height: 72px;
  border-radius: 20px;
}

.core-flow-panel {
  position: absolute;
  inset: clamp(22px, 3vw, 38px);
  z-index: 2;
  min-height: 0;
  display: grid;
  align-items: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.985);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.core-flow-panel.is-flow-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.core-flow-panel:hover,
.core-flow-panel.is-demo-active {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(0) scale(1);
}

.core-flow-panel .core-flow-demo {
  width: min(620px, 100%);
  justify-self: center;
}

.core-flow-panel[data-flow-panel="exports"] .core-flow-demo {
  width: min(760px, 100%);
}

.core-flow-panel[data-flow-panel="files"] .core-flow-demo {
  width: min(430px, 100%);
}

.core-flow-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(42px, 5vw, 66px);
}

.core-flow-card {
  position: relative;
  min-height: 390px;
  grid-column: span 3;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(188px, 1fr);
  gap: 20px;
  border: 1px solid rgba(17, 17, 17, 0.075);
  border-radius: 34px;
  padding: 25px;
  background:
    radial-gradient(circle at 86% 8%, rgba(241, 253, 130, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 28px 72px rgba(17, 17, 17, 0.075),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.core-flow-card:hover,
.core-flow-card.is-demo-active {
  border-color: rgba(17, 17, 17, 0.12);
  box-shadow:
    0 38px 92px rgba(17, 17, 17, 0.11),
    0 1px 0 rgba(255, 255, 255, 0.94) inset;
  transform: translateY(-5px);
}

.core-flow-card:focus {
  outline: none;
}

.core-flow-card:focus-visible {
  outline: 2px solid rgba(34, 34, 34, 0.32);
  outline-offset: 5px;
}

.core-flow-stage .core-flow-panel {
  position: absolute;
  inset: clamp(22px, 3vw, 38px);
  z-index: 2;
  min-height: 0;
  grid-column: auto;
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.985);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.core-flow-stage .core-flow-panel.is-flow-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.core-flow-stage .core-flow-panel:hover,
.core-flow-stage .core-flow-panel.is-demo-active {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(0) scale(1);
}

.core-flow-card-wide {
  grid-column: span 4;
}

.core-flow-card-wide:last-child {
  grid-column: span 7;
}

.core-flow-copy {
  min-width: 0;
  display: grid;
  gap: 11px;
}

.core-flow-copy span {
  width: max-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.075);
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(17, 17, 17, 0.48);
  background: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.core-flow-copy h3 {
  max-width: 420px;
  color: #111111;
  font-family: var(--owmii-display-font);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.core-flow-copy p {
  max-width: 430px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: -0.014em;
}

.core-flow-demo {
  min-width: 0;
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 28px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 248, 252, 0.68));
  box-shadow:
    0 22px 58px rgba(17, 17, 17, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.demo-toolbar,
.payment-total,
.period-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(17, 17, 17, 0.56);
  font-size: 12px;
  font-weight: 520;
  letter-spacing: -0.012em;
}

.demo-toolbar b {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #009b78;
  background: rgba(224, 250, 241, 0.86);
  font-size: 11px;
  font-weight: 600;
}

.settings-demo {
  position: relative;
  display: grid;
  gap: 7px;
}

.settings-demo::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 226px;
  left: 72%;
  width: 18px;
  height: 22px;
  opacity: 0;
  background: #222222;
  clip-path: polygon(0 0, 0 100%, 34% 74%, 52% 100%, 70% 91%, 53% 65%, 88% 65%);
  filter: drop-shadow(0 8px 12px rgba(17, 17, 17, 0.18));
  pointer-events: none;
}

.core-flow-card:is(:hover, .is-demo-active) .settings-demo::after {
  animation: settings-cursor 3.8s ease-in-out 1 forwards;
}

.settings-method-list {
  display: grid;
  gap: 8px;
}

.settings-method-list > small {
  color: rgba(17, 17, 17, 0.43);
  font-size: 11px;
  font-weight: 520;
}

.settings-row {
  min-height: 38px;
  display: grid;
  grid-template-columns: minmax(62px, 0.62fr) minmax(0, 1fr) auto 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 15px;
  padding: 0 9px;
  background: rgba(255, 255, 255, 0.66);
}

.settings-input-row {
  min-height: 42px;
  display: grid;
  grid-template-columns: minmax(94px, 0.8fr) minmax(0, 1fr) 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(17, 17, 17, 0.055);
  border-radius: 17px;
  padding: 0 9px 0 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}

.settings-row span,
.settings-input-row > span {
  color: rgba(17, 17, 17, 0.52);
  font-size: 11px;
  font-weight: 560;
}

.settings-row > small {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 8px;
  color: rgba(17, 17, 17, 0.48);
  background: rgba(17, 17, 17, 0.045);
  font-size: 10px;
  font-weight: 640;
  white-space: nowrap;
}

.settings-row.is-added > small {
  color: #009b78;
  background: rgba(224, 250, 241, 0.86);
}

.settings-row strong,
.settings-input-row strong {
  overflow: hidden;
  color: rgba(17, 17, 17, 0.86);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.settings-input-row strong {
  position: relative;
  min-height: 18px;
}

.settings-input-row strong .settings-typed,
.settings-ready {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  vertical-align: bottom;
  color: rgba(17, 17, 17, 0.86);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.settings-input-row strong .settings-typed {
  width: 0;
}

.settings-ready {
  position: absolute;
  left: 0;
  opacity: 0;
  color: rgba(17, 17, 17, 0.42);
  font-style: normal;
  font-weight: 560;
}

.settings-input-row strong::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  margin-left: 2px;
  vertical-align: -2px;
  background: rgba(17, 17, 17, 0.42);
  opacity: 0;
}

.core-flow-card:is(:hover, .is-demo-active) .settings-input-row strong .settings-typed {
  animation: settings-type 3.8s steps(10, end) 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .settings-ready {
  animation: settings-ready-in 3.8s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .settings-input-row strong::after {
  animation: settings-caret 3.8s linear 1 forwards;
}

.settings-input-row button {
  min-height: 34px;
  border: 0;
  border-radius: 13px;
  color: #111111;
  background: rgba(241, 253, 130, 0.82);
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  transform: translateZ(0);
}

.core-flow-card:is(:hover, .is-demo-active) .settings-input-row button {
  animation: settings-add-button 3.8s ease-in-out 1 forwards;
}

.settings-row em {
  position: relative;
  width: 34px;
  height: 20px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
}

.settings-row em::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(17, 17, 17, 0.12);
}

.settings-row.is-default em,
.settings-row.is-added em {
  background: rgba(0, 155, 120, 0.22);
}

.settings-row.is-default em::after,
.settings-row.is-added em::after {
  transform: translateX(14px);
}

.settings-row.is-added {
  overflow: hidden;
  height: 0;
  min-height: 0;
  border-color: transparent;
  opacity: 0;
  transform: translateY(8px);
}

.core-flow-card:is(:hover, .is-demo-active) .settings-row.is-added {
  animation: settings-added 3.8s ease-in-out 1 forwards;
}

.settings-output {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding-top: 4px;
}

.settings-output small {
  flex: 1 1 100%;
  color: rgba(17, 17, 17, 0.45);
  font-size: 11px;
  font-weight: 520;
}

.settings-output span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.58);
  background: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
  padding: 0 10px;
}

.quick-demo {
  position: relative;
  display: grid;
  gap: 7px;
  overflow: visible;
}

.quick-demo::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 154px;
  left: 19%;
  width: 17px;
  height: 21px;
  opacity: 0;
  background: #222222;
  clip-path: polygon(0 0, 0 100%, 34% 74%, 52% 100%, 70% 91%, 53% 65%, 88% 65%);
  filter: drop-shadow(0 8px 12px rgba(17, 17, 17, 0.18));
  pointer-events: none;
}

.core-flow-card:is(:hover, .is-demo-active) .quick-demo::after {
  animation: quick-cursor 4.8s ease-in-out 1 forwards;
}

.quick-work-list {
  display: grid;
  gap: 8px;
}

.quick-work-list > small {
  color: rgba(17, 17, 17, 0.43);
  font-size: 11px;
  font-weight: 520;
}

.quick-list-row {
  min-height: 38px;
  display: grid;
  grid-template-columns: minmax(62px, 0.62fr) minmax(0, 1fr) auto 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 15px;
  padding: 0 9px;
  background: rgba(255, 255, 255, 0.66);
}

.quick-action-row {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.quick-add-trigger {
  min-width: 122px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #111111;
  background: rgba(241, 253, 130, 0.9);
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.07);
  transform: translateZ(0);
}

.core-flow-card:is(:hover, .is-demo-active) .quick-add-trigger {
  animation: quick-trigger 4.8s ease-in-out 1 forwards;
}

.quick-menu {
  position: absolute;
  z-index: 2;
  bottom: 45px;
  left: 0;
  width: 184px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(17, 17, 17, 0.065);
  border-radius: 18px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 46px rgba(17, 17, 17, 0.08);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
}

.core-flow-card:is(:hover, .is-demo-active) .quick-menu {
  animation: quick-menu-open 4.8s ease-in-out 1 forwards;
}

.quick-menu span {
  min-height: 30px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  color: rgba(17, 17, 17, 0.58);
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  padding: 0 10px;
}

.quick-menu span:first-child {
  color: #111111;
}

.core-flow-card:is(:hover, .is-demo-active) .quick-menu span:first-child {
  animation: quick-menu-select 4.8s ease-in-out 1 forwards;
}

.quick-input-row {
  min-height: 42px;
  display: grid;
  grid-template-columns: minmax(74px, 0.65fr) 58px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(17, 17, 17, 0.055);
  border-radius: 17px;
  padding: 0 9px 0 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
  opacity: 0;
  transform: translateY(8px);
}

.quick-list-row span,
.quick-input-row > span {
  color: rgba(17, 17, 17, 0.52);
  font-size: 11px;
  font-weight: 560;
}

.quick-list-row > small,
.quick-input-row b {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #009b78;
  background: rgba(224, 250, 241, 0.86);
  font-size: 10px;
  font-weight: 640;
  white-space: nowrap;
}

.quick-list-row > small {
  min-height: 22px;
  padding: 0 8px;
}

.quick-input-row b {
  min-height: 28px;
  color: rgba(17, 17, 17, 0.64);
  background: rgba(17, 17, 17, 0.045);
  font-style: normal;
}

.quick-list-row strong,
.quick-input-row strong {
  overflow: hidden;
  color: rgba(17, 17, 17, 0.86);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.quick-input-row strong {
  position: relative;
  min-height: 18px;
}

.quick-input-row strong .quick-typed,
.quick-ready {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  vertical-align: bottom;
  color: rgba(17, 17, 17, 0.84);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.quick-input-row strong .quick-typed {
  width: 0;
}

.quick-ready {
  position: absolute;
  left: 0;
  opacity: 0;
  color: rgba(17, 17, 17, 0.42);
  font-style: normal;
  font-weight: 560;
}

.quick-input-row strong::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  margin-left: 2px;
  vertical-align: -2px;
  background: rgba(17, 17, 17, 0.42);
  opacity: 0;
}

.quick-input-row button {
  min-height: 34px;
  border: 0;
  border-radius: 13px;
  color: #111111;
  background: rgba(241, 253, 130, 0.82);
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  transform: translateZ(0);
}

.core-flow-card:is(:hover, .is-demo-active) .quick-input-row button {
  animation: quick-save-press 4.8s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .quick-input-row strong .quick-typed {
  animation: quick-type 4.8s steps(9, end) 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .quick-ready {
  animation: quick-ready-in 4.8s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .quick-input-row strong::after {
  animation: quick-caret 4.8s linear 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .quick-input-row {
  animation: quick-input-in 4.8s ease-in-out 1 forwards;
}

.quick-list-row em {
  position: relative;
  width: 34px;
  height: 20px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
}

.quick-list-row em::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(17, 17, 17, 0.12);
}

.quick-list-row.is-existing em,
.quick-list-row.is-added em {
  background: rgba(0, 155, 120, 0.22);
}

.quick-list-row.is-existing em::after,
.quick-list-row.is-added em::after {
  transform: translateX(14px);
}

.quick-list-row.is-added {
  overflow: hidden;
  height: 0;
  min-height: 0;
  border-color: transparent;
  opacity: 0;
  transform: translateY(8px);
}

.core-flow-card:is(:hover, .is-demo-active) .quick-list-row.is-added {
  animation: quick-added 4.8s ease-in-out 1 forwards;
}

.payment-total strong,
.period-card strong {
  color: rgba(17, 17, 17, 0.88);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.payment-demo {
  position: relative;
  display: grid;
  gap: 8px;
}

.payment-demo::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 206px;
  left: 72%;
  width: 17px;
  height: 21px;
  opacity: 0;
  background: #222222;
  clip-path: polygon(0 0, 0 100%, 34% 74%, 52% 100%, 70% 91%, 53% 65%, 88% 65%);
  filter: drop-shadow(0 8px 12px rgba(17, 17, 17, 0.18));
  pointer-events: none;
}

.core-flow-card:is(:hover, .is-demo-active) .payment-demo::after {
  animation: payment-cursor 4.4s ease-in-out 1 forwards;
}

.payment-total strong {
  position: relative;
  min-width: 98px;
  text-align: right;
}

.payment-total strong span {
  display: inline-block;
  min-width: 38px;
}

.payment-collected-new {
  position: absolute;
  right: 48px;
  opacity: 0;
}

.core-flow-card:is(:hover, .is-demo-active) .payment-collected-old {
  animation: payment-collected-old 4.4s linear 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .payment-collected-new {
  animation: payment-collected-new 4.4s linear 1 forwards;
}

.payment-balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  border: 1px solid rgba(17, 17, 17, 0.045);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.62);
}

.payment-balance span {
  position: relative;
  min-width: 104px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 11px;
  font-weight: 600;
}

.payment-balance i,
.payment-lines i {
  font-style: normal;
}

.payment-balance-new {
  position: absolute;
  left: 0;
  opacity: 0;
}

.payment-balance b .payment-balance-new {
  left: auto;
  right: 10px;
}

.payment-balance b {
  position: relative;
  min-width: 120px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #8a6500;
  background: rgba(255, 244, 200, 0.9);
  font-size: 10px;
  font-weight: 700;
  padding: 0 8px;
}

.core-flow-card:is(:hover, .is-demo-active) .payment-balance-old {
  animation: payment-swap-old 4.4s linear 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .payment-balance-new {
  animation: payment-swap-new 4.4s linear 1 forwards;
}

.payment-meter {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.065);
}

.payment-meter span {
  display: block;
  width: 33%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #009b78, rgba(241, 253, 130, 0.92));
}

.core-flow-card:is(:hover, .is-demo-active) .payment-meter span {
  animation: meter-fill 4.4s ease-in-out 1 forwards;
}

.payment-entry {
  display: grid;
  grid-template-columns: minmax(54px, 0.55fr) 66px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.055);
  border-radius: 17px;
  padding: 0 9px 0 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}

.payment-entry span,
.payment-entry strong,
.payment-entry small,
.payment-entry button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: rgba(17, 17, 17, 0.6);
  font: inherit;
  font-size: 11px;
  font-weight: 610;
}

.payment-entry > span {
  color: rgba(17, 17, 17, 0.56);
}

.payment-entry small {
  justify-content: center;
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.64);
  background: rgba(17, 17, 17, 0.045);
  font-weight: 640;
  white-space: nowrap;
}

.payment-entry strong {
  position: relative;
  min-height: 18px;
  color: rgba(17, 17, 17, 0.86);
  justify-content: flex-start;
}

.payment-entry strong span {
  width: 0;
  min-height: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  white-space: nowrap;
}

.payment-ready {
  position: absolute;
  left: 0;
  overflow: hidden;
  color: rgba(17, 17, 17, 0.42);
  font-style: normal;
  font-size: 12px;
  font-weight: 560;
  opacity: 0;
  white-space: nowrap;
}

.core-flow-card:is(:hover, .is-demo-active) .payment-entry strong span {
  animation: payment-type 4.4s steps(4, end) 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .payment-ready {
  animation: payment-ready-in 4.4s ease-in-out 1 forwards;
}

.payment-entry button {
  border: 0;
  justify-content: center;
  color: #111111;
  background: rgba(241, 253, 130, 0.9);
}

.core-flow-card:is(:hover, .is-demo-active) .payment-entry button {
  animation: payment-add-press 4.4s ease-in-out 1 forwards;
}

.payment-lines {
  display: grid;
  gap: 7px;
}

.payment-lines span {
  position: relative;
  min-height: 36px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 14px;
  color: rgba(17, 17, 17, 0.62);
  background: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 600;
  padding: 0 12px;
}

.payment-lines .is-new {
  overflow: hidden;
  height: 0;
  min-height: 0;
  border-color: transparent;
  opacity: 0;
  transform: translateY(8px);
}

.core-flow-card:is(:hover, .is-demo-active) .payment-lines .is-new {
  animation: payment-new-line 4.4s ease-in-out 1 forwards;
}

.payment-lines small {
  color: rgba(17, 17, 17, 0.48);
  font-size: 10px;
  font-weight: 620;
  white-space: nowrap;
}

.payment-lines strong {
  overflow: hidden;
  color: rgba(17, 17, 17, 0.74);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.payment-lines span i {
  justify-self: end;
  color: #009b78;
  font-size: 10px;
  font-weight: 700;
}

.file-demo {
  position: relative;
  min-height: 224px;
  display: grid;
  gap: 10px;
}

.file-demo::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 158px;
  left: 21%;
  width: 17px;
  height: 21px;
  opacity: 0;
  background: #222222;
  clip-path: polygon(0 0, 0 100%, 34% 74%, 52% 100%, 70% 91%, 53% 65%, 88% 65%);
  filter: drop-shadow(0 8px 12px rgba(17, 17, 17, 0.18));
  pointer-events: none;
}

.core-flow-card:is(:hover, .is-demo-active) .file-demo::after {
  animation: file-cursor 6s ease-in-out 1 forwards;
}

.file-counts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.file-counts span {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(17, 17, 17, 0.055);
  border-radius: 17px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.7);
}

.file-counts small {
  color: rgba(17, 17, 17, 0.48);
  font-size: 10px;
  font-weight: 620;
}

.file-counts strong {
  position: relative;
  color: rgba(17, 17, 17, 0.86);
  font-size: 17px;
  font-weight: 650;
}

.file-counts i {
  font-style: normal;
}

.file-count-new,
.file-count-mid {
  position: absolute;
  left: 0;
  opacity: 0;
}

.core-flow-card:is(:hover, .is-demo-active) .file-receipt-count .file-count-old {
  animation: file-receipt-count-old 6s linear 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-receipt-count .file-count-new {
  animation: file-receipt-count-new 6s linear 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-warranty-count .file-count-old {
  animation: file-warranty-count-old 6s linear 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-warranty-count .file-count-new {
  animation: file-warranty-count-new 6s linear 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-total-count .file-count-old {
  animation: file-total-count-old 6s linear 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-total-count .file-count-mid {
  animation: file-total-count-mid 6s linear 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-total-count .file-count-new {
  animation: file-total-count-new 6s linear 1 forwards;
}

.file-list span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.055);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(17, 17, 17, 0.6);
  font: inherit;
  font-size: 11px;
  font-weight: 610;
  padding: 0 10px;
}

.file-list {
  display: grid;
  gap: 7px;
}

.file-list span {
  display: grid;
  grid-template-columns: minmax(94px, 0.74fr) minmax(0, 1.1fr) 46px;
  gap: 8px;
  justify-content: initial;
  opacity: 0;
  transform: translateY(8px);
}

.file-list i,
.file-list strong,
.file-list small {
  min-width: 0;
  overflow: hidden;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.file-list i {
  max-width: 100%;
  color: rgba(17, 17, 17, 0.48);
  font-size: 10px;
  font-weight: 620;
}

.file-list strong {
  color: #009b78;
  font-size: 11px;
  font-weight: 650;
}

.file-list small {
  color: rgba(17, 17, 17, 0.42);
  font-size: 10px;
  font-weight: 620;
}

.core-flow-card:is(:hover, .is-demo-active) .receipt-file-row {
  animation: file-receipt-row-in 6s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .warranty-file-row {
  animation: file-warranty-row-in 6s ease-in-out 1 forwards;
}

.file-entry-row {
  position: relative;
  min-height: 42px;
  display: grid;
  grid-template-columns: minmax(112px, 0.78fr) minmax(0, 1.18fr) 58px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(17, 17, 17, 0.055);
  border-radius: 17px;
  padding: 0 9px 0 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}

.file-type-trigger,
.file-save-button {
  min-height: 34px;
  border: 0;
  border-radius: 13px;
  color: #111111;
  background: rgba(241, 253, 130, 0.82);
  font: inherit;
  font-size: 10px;
  font-weight: 650;
  transform: translateZ(0);
}

.file-type-trigger {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: rgba(17, 17, 17, 0.045);
}

.file-type-trigger span,
.file-entry-row strong span,
.file-entry-ready {
  white-space: nowrap;
}

.file-type-warranty,
.file-name-warranty,
.file-entry-ready {
  position: absolute;
  opacity: 0;
}

.file-type-menu {
  position: absolute;
  z-index: 3;
  left: 10px;
  bottom: 45px;
  width: 174px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(17, 17, 17, 0.065);
  border-radius: 18px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 46px rgba(17, 17, 17, 0.08);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
}

.file-type-menu span {
  min-height: 30px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 11px;
  font-weight: 600;
  padding: 0 10px;
}

.file-entry-row strong {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: rgba(17, 17, 17, 0.84);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.file-entry-ready {
  left: 0;
  color: rgba(17, 17, 17, 0.42);
  font-style: normal;
  font-weight: 560;
}

.core-flow-card:is(:hover, .is-demo-active) .file-type-menu {
  animation: file-menu-open 6s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-type-menu span:first-child {
  animation: file-menu-receipt-select 6s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-type-menu span:nth-child(2) {
  animation: file-menu-warranty-select 6s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-type-trigger {
  animation: file-type-press 6s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-type-receipt {
  animation: file-type-receipt 6s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-type-warranty {
  animation: file-type-warranty 6s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-name-receipt {
  animation: file-name-receipt 6s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-name-warranty {
  animation: file-name-warranty 6s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-entry-ready {
  animation: file-entry-ready 6s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .file-save-button {
  animation: file-save-press 6s ease-in-out 1 forwards;
}

.export-demo {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  align-items: center;
  gap: 14px;
}

.export-demo::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 54px;
  left: 70%;
  width: 17px;
  height: 21px;
  opacity: 0;
  background: #222222;
  clip-path: polygon(0 0, 0 100%, 34% 74%, 52% 100%, 70% 91%, 53% 65%, 88% 65%);
  filter: drop-shadow(0 8px 12px rgba(17, 17, 17, 0.18));
  pointer-events: none;
}

.core-flow-card:is(:hover, .is-demo-active) .export-demo::after {
  animation: export-cursor 5s ease-in-out 1 forwards;
}

.period-card {
  min-height: 110px;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 22px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.7);
}

.period-card small {
  position: relative;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #8a6500;
  background: rgba(255, 244, 200, 0.88);
  font-size: 11px;
  font-weight: 650;
}

.period-card small i {
  font-style: normal;
}

.period-closed {
  position: absolute;
  left: 10px;
  opacity: 0;
  color: #009b78;
}

.core-flow-card:is(:hover, .is-demo-active) .period-open {
  animation: period-open-out 5s linear 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .period-closed {
  animation: period-closed-in 5s linear 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .period-card small {
  animation: period-pill-done 5s linear 1 forwards;
}

.export-panel {
  display: grid;
  gap: 8px;
}

.export-view-switch {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 7px;
  padding: 4px;
  border: 1px solid rgba(17, 17, 17, 0.055);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.62);
}

.export-view-switch span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: rgba(17, 17, 17, 0.54);
  font-size: 11px;
  font-weight: 650;
  transform: translateZ(0);
}

.export-view-switch span:first-child {
  color: #111111;
  background: rgba(241, 253, 130, 0.7);
}

.export-view-switch .is-accounting {
  background: transparent;
}

.core-flow-card:is(:hover, .is-demo-active) .export-view-switch span:first-child {
  animation: export-view-off 5s linear 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .export-view-switch .is-accounting {
  animation: export-view-on 5s linear 1 forwards;
}

.export-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.export-actions button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.055);
  border-radius: 15px;
  color: rgba(17, 17, 17, 0.66);
  background: rgba(255, 255, 255, 0.7);
  font: inherit;
  font-size: 12px;
  font-weight: 620;
  padding: 0 12px;
}

.core-flow-card:is(:hover, .is-demo-active) .receipt-export {
  animation: export-button-press 5s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .csv-export {
  animation: export-csv-press 5s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .closeout-export {
  animation: export-close-press 5s ease-in-out 1 forwards;
}

.export-status {
  position: relative;
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 18px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.68);
}

.export-status span {
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 11px;
  font-weight: 610;
  opacity: 0;
  transform: translateY(6px);
}

.export-status span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #009b78;
}

.core-flow-card:is(:hover, .is-demo-active) .receipt-message {
  animation: export-message-in 5s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .csv-message {
  animation: export-csv-message-in 5s ease-in-out 1 forwards;
}

.core-flow-card:is(:hover, .is-demo-active) .close-message {
  animation: export-close-message-in 5s ease-in-out 1 forwards;
}

@keyframes settings-cursor {
  0%,
  12% {
    opacity: 0;
    transform: translate(-188px, 15px) rotate(-9deg);
  }

  18%,
  50% {
    opacity: 1;
    transform: translate(-188px, 15px) rotate(-5deg);
  }

  58%,
  68% {
    opacity: 1;
    transform: translate(110px, 15px) rotate(-2deg);
  }

  78%,
  90% {
    opacity: 1;
    transform: translate(-188px, 0) rotate(-4deg);
  }

  100% {
    opacity: 0;
    transform: translate(-188px, 0) rotate(-4deg);
  }
}

@keyframes settings-type {
  0%,
  16% {
    width: 0;
    opacity: 1;
  }

  46%,
  66% {
    width: 10ch;
    opacity: 1;
  }

  78%,
  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes settings-ready-in {
  0%,
  70% {
    opacity: 0;
  }

  80%,
  100% {
    opacity: 1;
  }
}

@keyframes settings-caret {
  0%,
  14%,
  68%,
  100% {
    opacity: 0;
  }

  18%,
  62% {
    opacity: 1;
  }
}

@keyframes settings-add-button {
  0%,
  56% {
    opacity: 1;
    transform: scale(1);
  }

  60%,
  68% {
    opacity: 1;
    transform: scale(0.9);
  }

  74%,
  84% {
    opacity: 1;
    transform: scale(1.03);
  }

  90%,
  100% {
    opacity: 1;
    color: #111111;
    background: rgba(241, 253, 130, 0.82);
    transform: scale(1);
  }
}

@keyframes settings-added {
  0%,
  66% {
    height: 0;
    border-color: transparent;
    opacity: 0;
    transform: translateY(8px);
  }

  78%,
  100% {
    height: 38px;
    border-color: rgba(17, 17, 17, 0.05);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes settings-toggle {
  0%,
  70% {
    transform: translateX(0);
  }

  82%,
  100% {
    transform: translateX(14px);
  }
}

@keyframes settings-toggle-bg {
  0%,
  70% {
    background: rgba(17, 17, 17, 0.08);
  }

  82%,
  100% {
    background: rgba(0, 155, 120, 0.22);
  }
}

@keyframes quick-cursor {
  0%,
  8% {
    opacity: 0;
    transform: translate(-36px, 0) rotate(-9deg);
  }

  12%,
  22% {
    opacity: 1;
    transform: translate(-36px, 0) rotate(-5deg);
  }

  25%,
  42% {
    opacity: 1;
    transform: translate(-8px, -168px) rotate(-4deg);
  }

  52%,
  64% {
    opacity: 1;
    transform: translate(280px, 48px) rotate(-4deg);
  }

  72%,
  82% {
    opacity: 1;
    transform: translate(var(--quick-cursor-add-x, 450px), 48px) rotate(-2deg);
  }

  90%,
  96% {
    opacity: 1;
    transform: translate(193px, -24px) rotate(-4deg);
  }

  100% {
    opacity: 0;
    transform: translate(193px, -24px) rotate(-4deg);
  }
}

@keyframes quick-trigger {
  0%,
  10%,
  100% {
    transform: scale(1);
  }

  14%,
  20% {
    transform: scale(0.92);
  }

  24%,
  32% {
    transform: scale(1.03);
  }
}

@keyframes quick-menu-open {
  0%,
  18%,
  48%,
  100% {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  24%,
  44% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes quick-menu-select {
  0%,
  28%,
  100% {
    color: #111111;
    background: transparent;
  }

  34%,
  46% {
    color: #111111;
    background: rgba(241, 253, 130, 0.62);
  }
}

@keyframes quick-input-in {
  0%,
  46% {
    opacity: 0;
    transform: translateY(8px);
  }

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

@keyframes quick-type {
  0%,
  50% {
    width: 0;
    opacity: 1;
  }

  62%,
  78% {
    width: 9ch;
    opacity: 1;
  }

  88%,
  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes quick-ready-in {
  0%,
  82% {
    opacity: 0;
  }

  90%,
  100% {
    opacity: 1;
  }
}

@keyframes quick-caret {
  0%,
  48%,
  82%,
  100% {
    opacity: 0;
  }

  54%,
  78% {
    opacity: 1;
  }
}

@keyframes quick-save-press {
  0%,
  70% {
    transform: scale(1);
  }

  74%,
  82% {
    transform: scale(0.9);
  }

  86%,
  92% {
    transform: scale(1.03);
  }

  90%,
  100% {
    transform: scale(1);
  }
}

@keyframes quick-added {
  0%,
  82% {
    height: 0;
    border-color: transparent;
    opacity: 0;
    transform: translateY(8px);
  }

  90%,
  100% {
    height: 38px;
    border-color: rgba(17, 17, 17, 0.05);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes payment-cursor {
  0%,
  12% {
    opacity: 0;
    transform: translate(-148px, -30px) rotate(-9deg);
  }

  18%,
  50% {
    opacity: 1;
    transform: translate(-148px, -30px) rotate(-5deg);
  }

  58%,
  68% {
    opacity: 1;
    transform: translate(104px, -30px) rotate(-2deg);
  }

  78%,
  90% {
    opacity: 1;
    transform: translate(-138px, -39px) rotate(-4deg);
  }

  100% {
    opacity: 0;
    transform: translate(-138px, -39px) rotate(-4deg);
  }
}

@keyframes payment-type {
  0%,
  18% {
    width: 0;
    opacity: 1;
  }

  42%,
  66% {
    width: 4ch;
    opacity: 1;
  }

  78%,
  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes payment-ready-in {
  0%,
  70% {
    opacity: 0;
  }

  80%,
  100% {
    opacity: 1;
  }
}

@keyframes payment-add-press {
  0%,
  56% {
    transform: scale(1);
  }

  60%,
  68% {
    transform: scale(0.9);
  }

  74%,
  84% {
    transform: scale(1.03);
  }

  90%,
  100% {
    transform: scale(1);
  }
}

@keyframes payment-new-line {
  0%,
  66% {
    height: 0;
    border-color: transparent;
    opacity: 0;
    transform: translateY(8px);
  }

  78%,
  100% {
    height: 36px;
    border-color: rgba(17, 17, 17, 0.05);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes core-flow-progress {
  0% {
    transform: scaleX(0);
  }

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

@keyframes payment-collected-old {
  0%,
  65% {
    opacity: 1;
  }

  66%,
  72% {
    opacity: 0;
  }

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

@keyframes payment-collected-new {
  0%,
  72% {
    opacity: 0;
  }

  78%,
  100% {
    opacity: 1;
  }
}

@keyframes payment-swap-old {
  0%,
  65% {
    opacity: 1;
  }

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

@keyframes payment-swap-new {
  0%,
  72% {
    opacity: 0;
  }

  78%,
  100% {
    opacity: 1;
  }
}

@keyframes file-cursor {
  0%,
  8% {
    opacity: 0;
    transform: translate(-2px, 37px) rotate(-9deg);
  }

  12%,
  20% {
    opacity: 1;
    transform: translate(-2px, 37px) rotate(-5deg);
  }

  24%,
  34% {
    opacity: 1;
    transform: translate(25px, -48px) rotate(-4deg);
  }

  42%,
  50% {
    opacity: 1;
    transform: translate(278px, 37px) rotate(-2deg);
  }

  58%,
  64% {
    opacity: 1;
    transform: translate(-2px, 37px) rotate(-5deg);
  }

  68%,
  76% {
    opacity: 1;
    transform: translate(25px, -12px) rotate(-4deg);
  }

  84%,
  92% {
    opacity: 1;
    transform: translate(278px, 37px) rotate(-2deg);
  }

  100% {
    opacity: 0;
    transform: translate(120px, -20px) rotate(-4deg);
  }
}

@keyframes file-save-press {
  0%,
  38%,
  56%,
  78%,
  100% {
    transform: scale(1);
  }

  44%,
  50%,
  86%,
  92% {
    transform: scale(0.94);
  }
}

@keyframes file-menu-open {
  0%,
  8%,
  40%,
  62%,
  82%,
  100% {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  14%,
  34%,
  66%,
  78% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes file-menu-receipt-select {
  0%,
  14%,
  100% {
    color: rgba(17, 17, 17, 0.58);
    background: transparent;
  }

  20%,
  36% {
    color: #111111;
    background: rgba(241, 253, 130, 0.62);
  }
}

@keyframes file-menu-warranty-select {
  0%,
  66%,
  100% {
    color: rgba(17, 17, 17, 0.58);
    background: transparent;
  }

  72%,
  82% {
    color: #111111;
    background: rgba(241, 253, 130, 0.62);
  }
}

@keyframes file-type-press {
  0%,
  8%,
  54%,
  100% {
    transform: scale(1);
  }

  12%,
  18%,
  58%,
  64% {
    transform: scale(0.94);
  }
}

@keyframes file-type-receipt {
  0%,
  58% {
    opacity: 1;
  }

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

@keyframes file-type-warranty {
  0%,
  62% {
    opacity: 0;
  }

  70%,
  100% {
    opacity: 1;
  }
}

@keyframes file-name-receipt {
  0%,
  18% {
    opacity: 0;
  }

  24%,
  54% {
    opacity: 1;
  }

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

@keyframes file-name-warranty {
  0%,
  66% {
    opacity: 0;
  }

  74%,
  92% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes file-entry-ready {
  0%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes file-receipt-row-in {
  0%,
  48% {
    opacity: 0;
    transform: translateY(8px);
  }

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

@keyframes file-warranty-row-in {
  0%,
  88% {
    opacity: 0;
    transform: translateY(8px);
  }

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

@keyframes file-receipt-count-old {
  0%,
  48% {
    opacity: 1;
  }

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

@keyframes file-receipt-count-new {
  0%,
  52% {
    opacity: 0;
  }

  60%,
  100% {
    opacity: 1;
  }
}

@keyframes file-warranty-count-old {
  0%,
  88% {
    opacity: 1;
  }

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

@keyframes file-warranty-count-new {
  0%,
  92% {
    opacity: 0;
  }

  98%,
  100% {
    opacity: 1;
  }
}

@keyframes file-total-count-old {
  0%,
  48% {
    opacity: 1;
  }

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

@keyframes file-total-count-mid {
  0%,
  52% {
    opacity: 0;
  }

  60%,
  88% {
    opacity: 1;
  }

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

@keyframes file-total-count-new {
  0%,
  92% {
    opacity: 0;
  }

  98%,
  100% {
    opacity: 1;
  }
}

@keyframes button-press {
  0%,
  36%,
  100% {
    transform: scale(1);
  }

  16%,
  22% {
    transform: scale(0.94);
  }
}

@keyframes result-slide {
  0%,
  28%,
  100% {
    opacity: 0.72;
    transform: translateY(8px);
  }

  14%,
  22% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes meter-fill {
  0%,
  62% {
    width: 33%;
  }

  72%,
  100% {
    width: 66%;
  }
}

@keyframes export-cursor {
  0%,
  8% {
    opacity: 0;
    transform: translate(12px, -8px) rotate(-9deg);
  }

  14%,
  24% {
    opacity: 1;
    transform: translate(111px, -16px) rotate(-5deg);
  }

  32%,
  42% {
    opacity: 1;
    transform: translate(-109px, 31px) rotate(-4deg);
  }

  50%,
  60% {
    opacity: 1;
    transform: translate(21px, 31px) rotate(-4deg);
  }

  68%,
  78% {
    opacity: 1;
    transform: translate(151px, 31px) rotate(-4deg);
  }

  100% {
    opacity: 0;
    transform: translate(151px, 31px) rotate(-4deg);
  }
}

@keyframes export-view-off {
  0%,
  24% {
    color: #111111;
    background: rgba(241, 253, 130, 0.7);
    transform: scale(1);
  }

  28%,
  100% {
    color: rgba(17, 17, 17, 0.54);
    background: transparent;
    transform: scale(1);
  }
}

@keyframes export-view-on {
  0%,
  22% {
    color: rgba(17, 17, 17, 0.54);
    background: transparent;
    transform: scale(1);
  }

  24%,
  28% {
    color: rgba(17, 17, 17, 0.54);
    background: transparent;
    transform: scale(0.96);
  }

  34% {
    color: #111111;
    background: rgba(241, 253, 130, 0.7);
    transform: scale(1.02);
  }

  100% {
    color: #111111;
    background: rgba(241, 253, 130, 0.7);
    transform: scale(1);
  }
}

@keyframes export-button-press {
  0%,
  36%,
  100% {
    transform: scale(1);
  }

  42%,
  48% {
    transform: scale(0.94);
  }
}

@keyframes export-csv-press {
  0%,
  54%,
  100% {
    transform: scale(1);
  }

  60%,
  66% {
    transform: scale(0.94);
  }
}

@keyframes export-close-press {
  0%,
  72%,
  100% {
    transform: scale(1);
  }

  78%,
  84% {
    transform: scale(0.94);
  }
}

@keyframes export-message-in {
  0%,
  45% {
    opacity: 0;
    transform: translateY(6px);
  }

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

@keyframes export-csv-message-in {
  0%,
  63% {
    opacity: 0;
    transform: translateY(6px);
  }

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

@keyframes export-close-message-in {
  0%,
  81% {
    opacity: 0;
    transform: translateY(6px);
  }

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

@keyframes period-open-out {
  0%,
  82% {
    opacity: 1;
  }

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

@keyframes period-closed-in {
  0%,
  82% {
    opacity: 0;
  }

  88%,
  100% {
    opacity: 1;
  }
}

@keyframes period-pill-done {
  0%,
  82% {
    color: #8a6500;
    background: rgba(255, 244, 200, 0.88);
  }

  88%,
  100% {
    color: #009b78;
    background: rgba(224, 250, 241, 0.86);
  }
}

@keyframes upload-fill {
  0%,
  100% {
    width: 28%;
  }

  46%,
  72% {
    width: 82%;
  }
}

@keyframes export-pop {
  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(6px);
  }
}

@keyframes bars-rise {
  0%,
  100% {
    transform: scaleY(0.78);
    transform-origin: bottom;
  }

  45%,
  70% {
    transform: scaleY(1);
  }
}

@media (max-width: 1060px) {
  .core-flow-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .core-flow-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
  }

  .core-flow-tab {
    min-height: 122px;
    border: 1px solid rgba(17, 17, 17, 0.075);
    border-radius: 22px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.5);
  }

  .core-flow-tab small {
    font-size: 12px;
  }

  .core-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .core-flow-card,
  .core-flow-card-wide,
  .core-flow-card-wide:last-child {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .core-workflows {
    padding: 78px 18px 72px;
  }

  .core-flow-head h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .core-flow-head p:not(.eyebrow) {
    font-size: 16px;
  }

  .core-flow-grid {
    grid-template-columns: 1fr;
  }

  .core-flow-showcase {
    gap: 20px;
  }

  .core-flow-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .core-flow-tab {
    min-height: 64px;
    border: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 0;
    padding: 14px 0 15px;
    background: transparent;
  }

  .core-flow-tab strong {
    font-size: 25px;
  }

  .core-flow-stage {
    border-radius: 26px;
  }

  .core-flow-viewport {
    min-height: 500px;
    padding: 18px;
  }

  .core-flow-stage .core-flow-panel {
    inset: 18px;
  }

  .core-flow-card,
  .core-flow-card-wide {
    grid-column: span 1;
    min-height: auto;
  }

  .quick-input-row {
    grid-template-columns: minmax(74px, 0.7fr) minmax(0, 1fr) 56px;
  }

  .quick-input-row b {
    display: none;
  }

  .file-entry-row {
    grid-template-columns: minmax(104px, 0.8fr) minmax(0, 1fr) 54px;
  }

  .file-type-menu {
    width: 158px;
  }

  .export-demo {
    grid-template-columns: 1fr;
  }
}

/* Data ownership: page 5 Flora-inspired flow map. */
.data-control-map {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin: 0;
  padding:
    104px
    max(24px, calc((100vw - 1480px) / 2 + 56px))
    74px;
  overflow: clip;
  color: #111111;
  background:
    radial-gradient(circle at 50% 46%, rgba(241, 253, 130, 0.24), transparent 28%),
    radial-gradient(circle at 77% 36%, rgba(72, 217, 184, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f9f4 58%, #ffffff 100%);
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  box-shadow: none;
}

.data-flow-scene {
  position: relative;
  z-index: 1;
  width: min(1460px, 100%);
  min-height: 720px;
  margin: 0 auto;
  isolation: isolate;
}

.data-flow-scene::before,
.data-flow-scene::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.data-flow-scene::before {
  left: 50%;
  top: 48%;
  width: min(720px, 72%);
  height: 330px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 58% 50%, rgba(241, 253, 130, 0.34), transparent 32%),
    radial-gradient(circle at 42% 54%, rgba(7, 151, 107, 0.12), transparent 54%);
  filter: blur(16px);
  opacity: 0.9;
  transform: translate(-50%, -50%);
}

.data-flow-scene::after {
  inset: 34px 0 42px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72) 44% 56%, transparent);
  opacity: 0.72;
}

.data-flow-grid {
  position: absolute;
  z-index: 0;
  inset: 0 -72px;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.13) 1px, transparent 1.4px);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse at 50% 48%, #000 0 52%, transparent 84%);
  opacity: 0.38;
  pointer-events: none;
}

.data-flow-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.data-flow-mobile {
  display: none;
}

.data-flow-base,
.data-flow-access,
.data-flow-pulse {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.data-flow-base {
  stroke: rgba(17, 17, 17, 0.2);
  stroke-width: 1.25;
}

.data-flow-access {
  stroke: rgba(216, 95, 210, 0.34);
  stroke-width: 1.1;
  stroke-dasharray: 5 10;
}

.data-flow-pulse {
  stroke: url("#data-flow-pulse");
  stroke-width: 3;
  stroke-dasharray: 0.085 1;
  stroke-dashoffset: 1;
  filter: url("#data-flow-glow");
  opacity: 0;
  animation: data-path-flow 5.8s ease-in-out infinite;
}

.data-flow-pulse.is-second {
  animation-delay: 1.05s;
}

.data-flow-pulse.is-third {
  animation-delay: 2.1s;
}

.data-flow-pulse.is-access {
  stroke: rgba(216, 95, 210, 0.72);
  stroke-width: 2;
  stroke-dasharray: 0.045 1;
  animation-duration: 7.2s;
  animation-delay: 0.6s;
  opacity: 0.42;
}

.data-flow-scene .data-control-copy {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 50%;
  width: min(660px, calc(100% - 560px));
  max-width: 660px;
  margin: 0;
  text-align: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.data-control-copy h2 {
  margin: 18px 0 0;
  color: #111111;
  font-family: var(--owmii-display-font);
  font-size: 82px;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.data-control-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px auto 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 18px;
  line-height: 1.48;
  letter-spacing: 0;
}

.data-drive-hub,
.data-device,
.data-access-node,
.data-object {
  position: absolute;
}

.data-drive-hub {
  z-index: 4;
  right: 5.2%;
  top: 29%;
  width: 258px;
  min-height: 188px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 34px;
  padding: 24px 22px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 8%, rgba(241, 253, 130, 0.28), transparent 36%),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 24px 70px rgba(17, 17, 17, 0.09);
  backdrop-filter: blur(18px);
}

.drive-orbit {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(7, 151, 107, 0.14);
  border-radius: 42px;
  pointer-events: none;
}

.data-drive-hub .drive-mark {
  width: 78px;
  height: 68px;
  filter: drop-shadow(0 20px 28px rgba(66, 133, 244, 0.2));
}

.data-drive-hub small,
.data-device figcaption,
.data-access-node small,
.data-proof-strip span {
  color: rgba(17, 17, 17, 0.5);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
}

.data-drive-hub strong {
  max-width: 180px;
  color: rgba(17, 17, 17, 0.84);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.28;
}

.data-device {
  z-index: 4;
  margin: 0;
  display: grid;
  gap: 8px;
  filter: drop-shadow(0 26px 38px rgba(17, 17, 17, 0.11));
}

.data-device figcaption {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px;
}

.data-device figcaption strong {
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 560;
}

.data-device-laptop {
  left: 4.5%;
  top: 11%;
  width: 276px;
}

.data-device-phone {
  left: 8%;
  bottom: 8.5%;
  width: 112px;
}

.data-device-tablet {
  right: 7%;
  bottom: 6.5%;
  width: 176px;
}

.data-laptop,
.data-tablet,
.data-phone {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(229, 235, 244, 0.82)),
    #edf1f7;
  border: 1px solid rgba(84, 95, 116, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -16px 38px rgba(77, 88, 113, 0.08);
  overflow: hidden;
}

.data-laptop {
  height: 176px;
  border-radius: 24px 24px 18px 18px;
}

.data-laptop::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: -23px;
  height: 42px;
  border-radius: 14px 14px 34px 34px;
  background: linear-gradient(180deg, rgba(250, 251, 254, 0.96), rgba(199, 209, 224, 0.86));
  box-shadow: 0 20px 38px rgba(77, 88, 113, 0.14);
  transform: perspective(420px) rotateX(62deg);
  transform-origin: top;
}

.data-laptop i {
  position: absolute;
  left: 50%;
  bottom: 4px;
  z-index: 3;
  width: 74px;
  height: 8px;
  border-radius: 999px;
  background: rgba(132, 143, 160, 0.18);
  transform: translateX(-50%);
}

.data-tablet {
  aspect-ratio: 0.74;
  border-radius: 28px;
}

.data-phone {
  aspect-ratio: 0.48;
  border-radius: 30px;
  background:
    linear-gradient(140deg, rgba(58, 67, 84, 0.82), rgba(14, 18, 25, 0.9)),
    #171c25;
  border-color: rgba(33, 39, 52, 0.46);
}

.data-screen {
  position: absolute;
  inset: 16px;
  display: grid;
  gap: 8px;
  align-content: start;
  border-radius: 17px;
  padding: 16px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 251, 0.72));
  background-size: 100% 28px, 34px 100%, 100% 100%;
  box-shadow: inset 0 0 0 1px rgba(132, 143, 160, 0.14);
}

.data-tablet .data-screen {
  inset: 17px 13px;
  border-radius: 20px;
}

.data-phone .data-screen {
  inset: 10px 7px;
  border-radius: 24px;
  padding: 28px 10px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    linear-gradient(150deg, rgba(72, 217, 184, 0.2), transparent 54%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.data-phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 15px;
  width: 42px;
  height: 14px;
  border-radius: 999px;
  background: rgba(12, 16, 23, 0.86);
  transform: translateX(-50%);
}

.data-screen span {
  min-height: 18px;
  border-radius: 8px;
  background: rgba(7, 151, 107, 0.13);
}

.data-screen span:nth-child(2) {
  width: 74%;
  background: rgba(17, 17, 17, 0.08);
}

.data-screen span:nth-child(3) {
  width: 54%;
  background: rgba(255, 159, 26, 0.15);
}

.data-access-node {
  z-index: 7;
  left: 50%;
  top: calc(50% + 168px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(420px, 90%);
  border: 1px solid rgba(17, 17, 17, 0.11);
  border-radius: 999px;
  padding: 9px 15px 9px 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.07);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.data-access-node .brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(216, 95, 210, 0.14);
}

.data-access-node div {
  display: grid;
  gap: 2px;
}

.data-access-node strong {
  color: rgba(17, 17, 17, 0.74);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
}

.data-object {
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(17, 17, 17, 0.5);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.05);
  font-size: 11px;
  font-weight: 680;
  backdrop-filter: blur(12px);
}

.data-object-records {
  left: 30%;
  top: 18%;
}

.data-object-payments {
  left: 28%;
  bottom: 21%;
}

.data-object-files {
  right: 27%;
  top: 34%;
}

.data-object-reports {
  right: 28%;
  bottom: 19%;
}

.data-proof-strip {
  position: relative;
  z-index: 3;
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  margin: 0 auto;
}

.data-proof-strip p {
  min-width: 0;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 18px 22px;
}

.data-proof-strip p + p {
  border-left: 1px solid rgba(17, 17, 17, 0.08);
}

.data-proof-strip strong {
  color: rgba(17, 17, 17, 0.78);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.32;
}

@keyframes data-path-flow {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }

  12% {
    opacity: 0.2;
  }

  28%,
  62% {
    opacity: 0.95;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .data-flow-scene {
    min-height: 680px;
  }

  .data-flow-scene .data-control-copy {
    width: min(560px, calc(100% - 440px));
  }

  .data-control-copy h2 {
    font-size: 72px;
  }

  .data-device-laptop {
    width: 244px;
  }

  .data-drive-hub {
    right: 3%;
    width: 230px;
  }
}

@media (max-width: 920px) {
  .data-control-map {
    padding: 82px 18px 66px;
  }

  .data-flow-scene {
    min-height: 1000px;
  }

  .data-flow-desktop {
    display: none;
  }

  .data-flow-mobile {
    display: block;
  }

  .data-flow-grid {
    inset: 0 -18px;
    mask-image: radial-gradient(ellipse at 50% 50%, #000 0 62%, transparent 92%);
  }

  .data-flow-scene .data-control-copy {
    top: 78px;
    width: min(370px, calc(100% - 26px));
    transform: translateX(-50%);
  }

  .data-control-copy h2 {
    margin-top: 14px;
    font-size: 48px;
    line-height: 0.98;
  }

  .data-control-copy p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 16px;
  }

  .data-access-node {
    top: 378px;
    width: min(350px, calc(100% - 34px));
    border-radius: 22px;
  }

  .data-drive-hub {
    left: 50%;
    right: auto;
    top: 482px;
    width: 200px;
    min-height: 156px;
    padding: 20px 18px;
    border-radius: 28px;
    transform: translateX(-50%);
  }

  .drive-orbit {
    border-radius: 34px;
  }

  .data-drive-hub .drive-mark {
    width: 62px;
    height: 54px;
  }

  .data-device-laptop {
    left: 0;
    top: auto;
    bottom: 82px;
    width: min(218px, 54vw);
  }

  .data-device-phone {
    left: auto;
    right: 6px;
    bottom: 242px;
    width: 64px;
  }

  .data-device-tablet {
    right: 8px;
    bottom: 54px;
    width: 94px;
  }

  .data-device figcaption {
    display: grid;
    gap: 2px;
  }

  .data-object {
    min-height: 24px;
    padding: 0 8px;
    font-size: 10px;
  }

  .data-object-records {
    left: 12%;
    top: 52%;
  }

  .data-object-payments {
    left: 8%;
    bottom: 30%;
  }

  .data-object-files {
    right: 18%;
    top: 57%;
  }

  .data-object-reports {
    right: 25%;
    bottom: 25%;
  }

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

  .data-proof-strip p + p {
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .data-flow-scene {
    min-height: 980px;
  }

  .data-control-copy h2 {
    font-size: 44px;
  }

  .data-access-node {
    top: 384px;
  }

  .data-drive-hub {
    top: 488px;
  }

  .data-device-laptop {
    bottom: 78px;
    width: min(198px, 55vw);
  }

  .data-device-phone {
    bottom: 238px;
    right: 6px;
    width: 62px;
  }

  .data-device-tablet {
    width: 92px;
  }

  .data-proof-strip p {
    padding: 16px 4px;
  }
}

/* Data ownership v63: left devices to right Drive leader-line composition. */
.data-control-map {
  padding:
    104px
    max(24px, calc((100vw - 1480px) / 2 + 56px))
    92px;
  background:
    radial-gradient(circle at 68% 42%, rgba(241, 253, 130, 0.22), transparent 24%),
    radial-gradient(circle at 16% 64%, rgba(72, 217, 184, 0.11), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f8f4 58%, #ffffff 100%);
}

.data-flow-scene {
  width: min(1460px, 100%);
  min-height: 780px;
}

.data-flow-scene::before {
  left: 50%;
  top: 47%;
  width: min(620px, 54%);
  height: 340px;
  background:
    radial-gradient(circle at 52% 50%, rgba(255, 255, 255, 0.88), transparent 46%),
    radial-gradient(circle at 48% 48%, rgba(241, 253, 130, 0.2), transparent 62%);
  filter: blur(10px);
  opacity: 0.9;
}

.data-flow-scene::after {
  display: none;
}

.data-flow-grid {
  inset: 0 -42px;
  background-image: radial-gradient(circle, rgba(17, 17, 17, 0.16) 1px, transparent 1.4px);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse at 52% 50%, #000 0 58%, transparent 84%);
  opacity: 0.34;
}

.data-flow-lines {
  z-index: 2;
  inset: 0;
}

.data-flow-mobile {
  display: none;
}

.data-leader-line,
.data-leader-pulse {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.data-leader-line {
  stroke: rgba(7, 151, 107, 0.24);
  stroke-width: 2.2;
  opacity: 1;
}

.data-leader-access {
  display: none;
}

.data-leader-pulse {
  stroke: rgba(241, 253, 130, 0.96);
  stroke-width: 2.55;
  stroke-dasharray: 48 640;
  stroke-dashoffset: 688;
  filter: url("#data-leader-glow");
  opacity: 1;
  animation: data-leader-travel 1.55s linear infinite;
}

.data-leader-pulse.is-second {
  animation-delay: 0s;
}

.data-leader-pulse.is-third {
  animation-delay: 0s;
}

.data-leader-pulse.is-fourth {
  animation-delay: 0s;
}

.data-leader-pulse.is-fifth {
  animation-delay: 0s;
}

.data-leader-pulse.is-sixth {
  animation-delay: 0s;
}

.data-leader-pulse.is-access {
  display: none;
}

.data-flow-spark {
  display: none;
}

.data-flow-scene .data-control-copy {
  left: 51%;
  top: 50%;
  width: min(560px, calc(100% - 780px));
  max-width: 560px;
  transform: translate(-50%, -50%);
}

.data-control-copy h2 {
  font-size: clamp(48px, 4.8vw, 68px);
  line-height: 0.98;
}

.data-control-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 17px;
}

.data-device-asset {
  position: absolute;
  z-index: 5;
  margin: 0;
  display: grid;
  gap: 8px;
  filter: drop-shadow(0 28px 40px rgba(17, 17, 17, 0.12));
}

.data-device-asset::before {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 18px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 245, 0.68));
  background-size: 100% 28px, 34px 100%, 100% 100%;
  box-shadow: inset 0 0 0 1px rgba(7, 151, 107, 0.08);
  pointer-events: none;
}

.data-device-asset::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  background: rgba(7, 151, 107, 0.14);
  box-shadow:
    0 25px 0 rgba(17, 17, 17, 0.08),
    0 50px 0 rgba(255, 159, 26, 0.16);
  pointer-events: none;
}

.data-device-asset img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
}

.data-device-asset figcaption {
  display: none;
  position: relative;
  z-index: 3;
  justify-content: space-between;
  gap: 12px;
  padding: 0 6px;
  color: rgba(17, 17, 17, 0.5);
  font-size: 12px;
  font-weight: 650;
}

.data-device-asset figcaption span,
.data-device-asset figcaption strong {
  white-space: nowrap;
}

.data-device-asset figcaption strong {
  color: rgba(17, 17, 17, 0.44);
  font-size: 12px;
  font-weight: 560;
}

.data-device-mac {
  left: 2.74%;
  top: 4.5%;
  width: min(196px, 14.5vw);
}

.data-device-mac::before {
  left: 8.2%;
  right: 8.4%;
  top: 25%;
  height: 43%;
  border-radius: 12px;
}

.data-device-mac::after {
  left: 13.5%;
  top: 34%;
  width: 48%;
  height: 11px;
}

.data-device-ipad {
  left: calc(2.74% + (min(196px, 14.5vw) - clamp(62px, 4.8vw, 72px)) / 2);
  top: 43%;
  bottom: auto;
  width: clamp(62px, 4.8vw, 72px);
  z-index: 6;
}

.data-device-ipad::before {
  left: 9.5%;
  right: 9.5%;
  top: 17%;
  bottom: 9%;
  border-radius: 14px;
}

.data-device-ipad::after {
  left: 22%;
  top: 27%;
  width: 52%;
  height: 9px;
}

.data-device-iphone {
  left: calc(2.74% + (min(196px, 14.5vw) - clamp(32px, 2.7vw, 40px)) / 2);
  top: 81%;
  bottom: auto;
  width: clamp(32px, 2.7vw, 40px);
  z-index: 7;
}

.data-device-iphone::before {
  left: 9%;
  right: 9%;
  top: 20%;
  bottom: 6%;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(72, 217, 184, 0.14), rgba(17, 17, 17, 0.04)),
    rgba(255, 255, 255, 0.82);
}

.data-device-iphone::after {
  left: 23%;
  top: 31%;
  width: 48%;
  height: 8px;
}

.data-device-ipad figcaption strong,
.data-device-iphone figcaption strong {
  display: none;
}

.data-drive-hub {
  z-index: 6;
  right: 3.1%;
  top: 50%;
  width: min(248px, 18vw);
  min-height: 174px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 10px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 30px;
  padding: 22px 20px;
  background:
    radial-gradient(circle at 52% 14%, rgba(126, 231, 255, 0.24), transparent 36%),
    radial-gradient(circle at 50% 52%, rgba(241, 253, 130, 0.22), transparent 52%),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 58px rgba(17, 17, 17, 0.09);
  text-align: center;
  backdrop-filter: blur(20px);
  transform: translateY(-50%);
}

.data-drive-hub::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(94, 207, 255, 0.16);
  border-radius: 38px;
  pointer-events: none;
}

.data-drive-hub .drive-mark {
  width: 88px;
  height: auto;
  display: block;
  object-fit: contain;
  clip-path: none;
  overflow: visible;
  background: none;
  filter:
    drop-shadow(0 18px 24px rgba(66, 133, 244, 0.16))
    drop-shadow(0 10px 18px rgba(52, 168, 83, 0.14));
}

.data-drive-hub div {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.data-drive-hub small,
.data-proof-strip span,
.data-access-node small {
  color: rgba(17, 17, 17, 0.5);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
}

.data-drive-hub strong {
  max-width: 188px;
  color: rgba(17, 17, 17, 0.78);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.28;
}

.data-access-node {
  display: none;
}

.data-object {
  display: none;
  z-index: 4;
  min-height: 26px;
  color: rgba(17, 17, 17, 0.48);
  background: rgba(255, 255, 255, 0.66);
}

.data-object-records {
  left: 29%;
  top: 18%;
}

.data-object-payments {
  left: 25%;
  bottom: 23%;
}

.data-object-files {
  right: 31%;
  top: 43%;
}

.data-proof-strip {
  margin-top: 8px;
}

@keyframes data-leader-travel {
  from {
    stroke-dashoffset: 688;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1180px) {
  .data-flow-scene {
    min-height: 740px;
  }

  .data-flow-scene .data-control-copy {
    width: min(500px, calc(100% - 610px));
  }

  .data-control-copy h2 {
    font-size: clamp(46px, 5.5vw, 62px);
  }

  .data-device-mac {
    width: min(184px, 16vw);
  }

  .data-drive-hub {
    width: min(232px, 20vw);
    min-height: 168px;
  }

  .data-drive-hub .drive-mark {
    width: 76px;
    height: 66px;
  }
}

@media (max-width: 920px) {
  .data-control-map {
    padding: 76px 18px 64px;
  }

  .data-flow-scene {
    min-height: 1020px;
  }

  .data-flow-desktop {
    display: none;
  }

  .data-flow-mobile {
    display: block;
  }

  .data-flow-scene .data-control-copy {
    left: 50%;
    top: 74px;
    width: min(360px, calc(100% - 24px));
    transform: translateX(-50%);
  }

  .data-control-copy h2 {
    font-size: 44px;
  }

  .data-control-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .data-drive-hub {
    left: auto;
    right: 0;
    top: 470px;
    width: 178px;
    min-height: 164px;
    padding: 22px 16px;
    border-radius: 28px;
    transform: none;
  }

  .data-drive-hub::before {
    inset: -11px;
    border-radius: 34px;
  }

  .data-drive-hub .drive-mark {
    width: 64px;
    height: 56px;
  }

  .data-device-mac {
    left: 0;
    top: 620px;
    width: min(230px, 62vw);
  }

  .data-device-iphone {
    left: 8px;
    bottom: 118px;
    width: 58px;
  }

  .data-device-ipad {
    left: 96px;
    bottom: 48px;
    width: 86px;
  }

  .data-device-asset figcaption {
    display: grid;
    gap: 2px;
    padding: 0;
    font-size: 11px;
  }

  .data-device-asset figcaption strong {
    font-size: 11px;
  }

  .data-access-node {
    left: 50%;
    top: 360px;
    width: min(330px, calc(100% - 28px));
    border-radius: 22px;
  }

  .data-object-records {
    left: 23%;
    top: 53%;
  }

  .data-object-payments {
    left: 16%;
    bottom: 29%;
  }

  .data-object-files {
    right: 24%;
    top: 55%;
  }
}

@media (max-width: 520px) {
  .data-flow-scene {
    min-height: 1020px;
  }

  .data-drive-hub {
    top: 470px;
    width: 170px;
  }

  .data-device-mac {
    top: 620px;
    width: min(220px, 64vw);
  }

  .data-device-iphone {
    bottom: 122px;
  }

  .data-device-ipad {
    bottom: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .settings-demo::after,
  .core-flow-tab i::after,
  .settings-input-row strong .settings-typed,
  .settings-ready,
  .settings-input-row strong::after,
  .settings-input-row button,
  .settings-row.is-added,
  .quick-demo::after,
  .quick-add-trigger,
  .quick-menu,
  .quick-menu span:first-child,
  .quick-input-row,
  .quick-input-row strong .quick-typed,
  .quick-ready,
  .quick-input-row strong::after,
  .quick-input-row button,
  .quick-list-row.is-added,
  .payment-demo::after,
  .payment-collected-old,
  .payment-collected-new,
  .payment-balance-old,
  .payment-balance-new,
  .payment-entry strong span,
  .payment-ready,
  .payment-entry button,
  .payment-lines .is-new,
  .file-demo::after,
  .file-type-menu,
  .file-type-menu span,
  .file-type-trigger,
  .file-type-receipt,
  .file-type-warranty,
  .file-name-receipt,
  .file-name-warranty,
  .file-entry-ready,
  .file-save-button,
  .file-list span,
  .file-count-old,
  .file-count-mid,
  .file-count-new,
  .payment-meter span,
  .export-demo::after,
  .export-view-switch span,
  .export-actions button,
  .export-status span,
  .period-open,
  .period-closed,
  .period-card small,
  .data-flow-pulse,
  .data-leader-pulse,
  .data-flow-spark {
    animation: none;
  }

  .settings-input-row strong .settings-typed {
    width: 0;
    opacity: 0;
  }

  .settings-ready {
    opacity: 1;
  }

  .core-flow-tab.is-flow-active i::after {
    transform: scaleX(1);
  }

  .settings-row.is-added {
    height: auto;
    min-height: 38px;
    border-color: rgba(17, 17, 17, 0.05);
    opacity: 1;
    transform: none;
  }

  .quick-input-row strong .quick-typed {
    width: 0;
    opacity: 0;
  }

  .quick-ready {
    opacity: 1;
  }

  .quick-menu {
    opacity: 0;
    transform: none;
  }

  .quick-input-row {
    opacity: 1;
    transform: none;
  }

  .quick-list-row.is-added {
    height: auto;
    min-height: 38px;
    border-color: rgba(17, 17, 17, 0.05);
    opacity: 1;
    transform: none;
  }

  .payment-collected-old {
    opacity: 0;
  }

  .payment-collected-new,
  .payment-balance-new {
    opacity: 1;
  }

  .payment-balance-old {
    opacity: 0;
  }

  .payment-entry strong span {
    width: 0;
    opacity: 0;
  }

  .payment-ready {
    opacity: 1;
  }

  .payment-lines .is-new {
    height: auto;
    min-height: 36px;
    border-color: rgba(17, 17, 17, 0.05);
    opacity: 1;
    transform: none;
  }

  .payment-meter span {
    width: 66%;
  }

  .file-list span {
    opacity: 1;
    transform: none;
  }

  .file-type-menu {
    opacity: 0;
    transform: none;
  }

  .file-type-receipt,
  .file-name-receipt,
  .file-name-warranty {
    opacity: 0;
  }

  .file-type-warranty,
  .file-entry-ready {
    opacity: 1;
  }

  .file-count-old {
    opacity: 0;
  }

  .file-count-mid {
    opacity: 0;
  }

  .file-count-new {
    opacity: 1;
  }

  .export-view-switch span:first-child {
    color: rgba(17, 17, 17, 0.54);
    background: transparent;
  }

  .export-view-switch .is-accounting {
    color: #111111;
    background: rgba(241, 253, 130, 0.7);
  }

  .period-open {
    opacity: 0;
  }

  .period-closed,
  .export-status span {
    opacity: 1;
    transform: none;
  }

  .period-card small {
    color: #009b78;
    background: rgba(224, 250, 241, 0.86);
  }

  .data-flow-pulse,
  .data-leader-pulse {
    stroke-dashoffset: 0.48;
    opacity: 0.64;
  }

  .data-flow-spark {
    display: none;
  }
}

/* Hero pin repair: keep the device story visible while desktop scroll scenes advance. */
@media (min-width: 1360px) and (min-height: 860px) {
  html,
  body {
    overflow-x: visible;
  }

  .assemble-hero {
    min-height: 420vh;
  }

  .assemble-hero .motion-hero-sticky {
    position: sticky;
    top: 0;
    box-sizing: border-box;
    height: 100svh;
    min-height: 100vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: clamp(350px, 39vh, 430px) minmax(0, 1fr);
    align-items: stretch;
    padding: 52px 0 0;
  }

  .assemble-hero .motion-copy {
    min-height: 0;
    height: 100%;
  }

  .assemble-hero .motion-copy-card {
    inset: 54px auto auto 50%;
    visibility: hidden;
  }

  .assemble-hero .motion-copy-card.is-active {
    visibility: visible;
  }

  .assemble-hero .motion-actions {
    top: clamp(350px, 38vh, 430px);
  }

  .assemble-hero .motion-stage {
    min-height: 0;
    height: 100%;
  }

  .assemble-hero .workspace-surface {
    top: 40%;
  }

  .assemble-hero[data-step="2"] .workspace-surface {
    top: 27%;
  }

  .assemble-hero[data-step="3"] .workspace-surface {
    top: 26%;
  }
}

/* Setup motion v2: animated PWA install story. */
.setup-motion-story {
  grid-template-columns: minmax(310px, 0.52fr) minmax(620px, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.setup-motion-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.setup-motion-copy h2 {
  margin: 17px 0 0;
  color: #111111;
  font-family: var(--owmii-display-font);
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.setup-motion-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(17px, 1.32vw, 20px);
  line-height: 1.48;
}

.setup-motion-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.setup-motion-list article {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  min-height: 86px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  padding: 16px 0 18px;
  color: rgba(17, 17, 17, 0.42);
  animation: setup-list-idle 16s linear infinite;
}

.setup-motion-list article:nth-child(1) {
  animation-name: setup-list-1;
}

.setup-motion-list article:nth-child(2) {
  animation-name: setup-list-2;
}

.setup-motion-list article:nth-child(3) {
  animation-name: setup-list-3;
}

.setup-motion-list article:nth-child(4) {
  animation-name: setup-list-4;
}

.setup-motion-list article span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 13px;
  color: inherit;
  background: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 720;
}

.setup-motion-list article strong {
  display: block;
  color: inherit;
  font-size: 18px;
  font-weight: 570;
  line-height: 1.05;
}

.setup-motion-list article p {
  grid-column: 2;
  margin: -22px 0 0;
  color: rgba(17, 17, 17, 0.48);
  font-size: 13px;
  line-height: 1.35;
}

.setup-motion-list article i {
  position: absolute;
  left: 56px;
  right: 0;
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
}

.setup-motion-list article i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #111111;
  transform: scaleX(0);
  transform-origin: left;
  animation: setup-progress-idle 16s linear infinite;
}

.setup-motion-list article:nth-child(1) i::after {
  animation-name: setup-progress-1;
}

.setup-motion-list article:nth-child(2) i::after {
  animation-name: setup-progress-2;
}

.setup-motion-list article:nth-child(3) i::after {
  animation-name: setup-progress-3;
}

.setup-motion-list article:nth-child(4) i::after {
  animation-name: setup-progress-4;
}

.setup-motion-stage {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.setup-motion-stage::before {
  content: "";
  position: absolute;
  inset: 5% -2% 2%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 52% 48%, rgba(241, 253, 130, 0.26), transparent 34%),
    radial-gradient(circle at 50% 54%, rgba(72, 217, 184, 0.12), transparent 54%);
  filter: blur(20px);
  opacity: 0.95;
}

.setup-browser-shell {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  min-height: 520px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 247, 0.78)),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 34px 92px rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.setup-browser-top {
  min-height: 58px;
  display: grid;
  grid-template-columns: 12px 12px 12px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.58);
}

.setup-browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.14);
}

.setup-browser-top strong {
  min-width: 0;
  justify-self: center;
  width: min(360px, 100%);
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 999px;
  padding: 9px 16px;
  color: rgba(17, 17, 17, 0.55);
  background: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 620;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setup-browser-screen {
  position: relative;
  min-height: 462px;
  padding: 34px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 74% 36%, rgba(241, 253, 130, 0.18), transparent 28%),
    #fbfbf8;
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.setup-browser-screen::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 34px;
  bottom: 34px;
  width: 172px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}

.setup-browser-screen::after {
  content: "";
  position: absolute;
  left: 226px;
  right: 34px;
  top: 34px;
  bottom: 34px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}

.setup-product-choice,
.setup-install-sheet,
.setup-license-card,
.setup-ready-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 54px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: setup-panel-1 16s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-product-choice {
  left: 258px;
  top: 88px;
  width: 360px;
}

.setup-install-sheet {
  right: 54px;
  top: 148px;
  width: 280px;
  animation-name: setup-panel-2;
}

.setup-license-card {
  left: 262px;
  top: 150px;
  width: 330px;
  animation-name: setup-panel-3;
}

.setup-ready-card {
  left: 262px;
  top: 114px;
  width: 350px;
  animation-name: setup-panel-4;
}

.setup-product-choice small,
.setup-install-sheet small,
.setup-license-card small,
.setup-ready-card small {
  display: block;
  margin-bottom: 10px;
  color: rgba(17, 17, 17, 0.44);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.setup-product-choice strong,
.setup-install-sheet strong,
.setup-license-card strong,
.setup-ready-card strong {
  display: block;
  color: #111111;
  font-size: 22px;
  font-weight: 620;
  line-height: 1.08;
}

.setup-product-choice span,
.setup-license-card span,
.setup-ready-card span {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 15px;
  margin-top: 13px;
  padding: 0 12px;
  color: rgba(17, 17, 17, 0.56);
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 620;
}

.setup-license-card span,
.setup-ready-card span:first-of-type {
  color: #111111;
  border-color: rgba(7, 151, 107, 0.16);
  background:
    radial-gradient(circle at 16% 30%, rgba(241, 253, 130, 0.28), transparent 48%),
    rgba(255, 255, 255, 0.82);
}

.setup-install-sheet button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  margin-top: 18px;
  color: #111111;
  background: #f1fd82;
  font-size: 13px;
  font-weight: 720;
}

.setup-device-dock {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 30px;
  width: min(460px, 70%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.07);
  overflow: hidden;
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.setup-device-dock span {
  display: grid;
  place-items: center;
  min-height: 52px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  font-weight: 650;
}

.setup-device-dock span + span {
  border-left: 1px solid rgba(17, 17, 17, 0.07);
}

.setup-cursor {
  position: absolute;
  z-index: 6;
  left: 58%;
  top: 45%;
  width: 18px;
  height: 24px;
  background: #111111;
  clip-path: polygon(0 0, 0 100%, 34% 74%, 53% 100%, 70% 92%, 51% 68%, 100% 68%);
  filter: drop-shadow(0 10px 12px rgba(17, 17, 17, 0.2));
  animation: setup-cursor-path 16s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes setup-panel-1 {
  0%, 20% { opacity: 1; transform: translateY(0) scale(1); }
  25%, 100% { opacity: 0; transform: translateY(-12px) scale(0.985); }
}

@keyframes setup-panel-2 {
  0%, 22% { opacity: 0; transform: translateY(18px) scale(0.985); }
  28%, 45% { opacity: 1; transform: translateY(0) scale(1); }
  51%, 100% { opacity: 0; transform: translateY(-12px) scale(0.985); }
}

@keyframes setup-panel-3 {
  0%, 48% { opacity: 0; transform: translateY(18px) scale(0.985); }
  54%, 70% { opacity: 1; transform: translateY(0) scale(1); }
  76%, 100% { opacity: 0; transform: translateY(-12px) scale(0.985); }
}

@keyframes setup-panel-4 {
  0%, 74% { opacity: 0; transform: translateY(18px) scale(0.985); }
  80%, 96% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-12px) scale(0.985); }
}

@keyframes setup-cursor-path {
  0%, 18% { left: 57%; top: 32%; transform: translate(0, 0) scale(1); }
  22%, 27% { left: 75%; top: 48%; transform: translate(0, 0) scale(0.9); }
  32%, 45% { left: 71%; top: 50%; transform: translate(0, 0) scale(1); }
  51%, 56% { left: 63%; top: 46%; transform: translate(0, 0) scale(0.9); }
  62%, 70% { left: 60%; top: 46%; transform: translate(0, 0) scale(1); }
  76%, 82% { left: 62%; top: 36%; transform: translate(0, 0) scale(0.9); }
  88%, 100% { left: 58%; top: 38%; transform: translate(0, 0) scale(1); }
}

@keyframes setup-list-idle {
  0%, 100% { color: rgba(17, 17, 17, 0.42); }
}

@keyframes setup-list-1 {
  0%, 22% { color: #111111; }
  26%, 100% { color: rgba(17, 17, 17, 0.42); }
}

@keyframes setup-list-2 {
  0%, 23% { color: rgba(17, 17, 17, 0.42); }
  28%, 48% { color: #111111; }
  52%, 100% { color: rgba(17, 17, 17, 0.42); }
}

@keyframes setup-list-3 {
  0%, 50% { color: rgba(17, 17, 17, 0.42); }
  55%, 72% { color: #111111; }
  78%, 100% { color: rgba(17, 17, 17, 0.42); }
}

@keyframes setup-list-4 {
  0%, 76% { color: rgba(17, 17, 17, 0.42); }
  82%, 96% { color: #111111; }
  100% { color: rgba(17, 17, 17, 0.42); }
}

@keyframes setup-progress-idle {
  0%, 100% { transform: scaleX(0); }
}

@keyframes setup-progress-1 {
  0% { transform: scaleX(0); }
  22% { transform: scaleX(1); }
  23%, 100% { transform: scaleX(0); }
}

@keyframes setup-progress-2 {
  0%, 25% { transform: scaleX(0); }
  48% { transform: scaleX(1); }
  49%, 100% { transform: scaleX(0); }
}

@keyframes setup-progress-3 {
  0%, 52% { transform: scaleX(0); }
  74% { transform: scaleX(1); }
  75%, 100% { transform: scaleX(0); }
}

@keyframes setup-progress-4 {
  0%, 78% { transform: scaleX(0); }
  96% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

@media (max-width: 1080px) {
  .setup-motion-story {
    grid-template-columns: 1fr;
  }

  .setup-motion-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .setup-motion-list {
    width: min(620px, 100%);
    margin-inline: auto;
    text-align: left;
  }

  .setup-motion-stage {
    width: min(780px, 100%);
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .setup-motion-copy h2 {
    font-size: clamp(42px, 12.4vw, 58px);
  }

  .setup-motion-list {
    margin-top: 30px;
  }

  .setup-motion-list article {
    min-height: 78px;
  }

  .setup-motion-stage {
    min-height: 520px;
  }

  .setup-browser-shell {
    min-height: 430px;
    border-radius: 28px;
  }

  .setup-browser-top {
    grid-template-columns: 9px 9px 9px minmax(0, 1fr);
    min-height: 50px;
    padding: 0 14px;
  }

  .setup-browser-top span {
    width: 8px;
    height: 8px;
  }

  .setup-browser-top strong {
    padding: 8px 10px;
    font-size: 10px;
  }

  .setup-browser-screen {
    min-height: 380px;
    padding: 20px;
  }

  .setup-browser-screen::before {
    display: none;
  }

  .setup-browser-screen::after {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
  }

  .setup-product-choice,
  .setup-install-sheet,
  .setup-license-card,
  .setup-ready-card {
    left: 36px;
    right: 36px;
    top: 76px;
    width: auto;
  }

  .setup-device-dock {
    width: calc(100% - 56px);
    bottom: 22px;
  }

  .setup-device-dock span {
    min-height: 46px;
    font-size: 11px;
  }

  .setup-cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .setup-motion-list article,
  .setup-motion-list article i::after,
  .setup-product-choice,
  .setup-install-sheet,
  .setup-license-card,
  .setup-ready-card,
  .setup-cursor {
    animation: none;
  }

  .setup-product-choice {
    opacity: 1;
    transform: none;
  }
}

/* Data clarity v2: make ownership and sync understandable at a glance. */
.data-clarity {
  position: relative;
  display: grid;
  gap: clamp(34px, 5vw, 62px);
  width: 100%;
  min-height: 100svh;
  padding:
    clamp(86px, 8vw, 128px)
    max(22px, calc((100vw - 1480px) / 2 + 70px))
    clamp(76px, 8vw, 112px);
  overflow: clip;
  color: #111111;
  background:
    radial-gradient(circle at 76% 34%, rgba(241, 253, 130, 0.24), transparent 24%),
    radial-gradient(circle at 24% 80%, rgba(72, 217, 184, 0.11), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fafaf7 48%, #ffffff 100%);
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.data-clarity::before {
  content: "";
  position: absolute;
  inset: 10% 5% 8%;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.034) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse at 52% 48%, #000 0 52%, transparent 78%);
  opacity: 0.72;
  pointer-events: none;
}

.data-clarity-copy,
.data-clarity-flow,
.data-clarity-proof {
  position: relative;
  z-index: 1;
}

.data-clarity-copy {
  width: min(940px, 100%);
  margin: 0 auto;
  text-align: center;
}

.data-clarity-copy h2 {
  max-width: 920px;
  margin: 17px auto 0;
  color: #111111;
  font-family: var(--owmii-display-font);
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.data-clarity-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.48;
  letter-spacing: 0;
}

.data-clarity-flow {
  width: min(1280px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.data-step-card {
  position: relative;
  min-height: 410px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 249, 247, 0.78)),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 28px 72px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.data-step-card::after {
  content: "";
  position: absolute;
  inset: auto -24% -36% 18%;
  height: 250px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 48% 48%, rgba(241, 253, 130, 0.36), transparent 34%),
    radial-gradient(circle at 56% 52%, rgba(72, 217, 184, 0.14), transparent 58%);
  filter: blur(20px);
  opacity: 0.82;
  pointer-events: none;
}

.data-step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  color: #111111;
  background: #f1fd82;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.06);
  font-size: 15px;
  font-weight: 680;
}

.data-step-kicker {
  margin: 0 0 12px;
  color: rgba(17, 17, 17, 0.44);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.data-step-card h3 {
  max-width: 330px;
  margin: 0;
  color: #111111;
  font-size: clamp(27px, 2.3vw, 36px);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: 0;
}

.data-step-card p:not(.data-step-kicker) {
  max-width: 340px;
  margin: 15px 0 0;
  color: rgba(17, 17, 17, 0.56);
  font-size: 15px;
  line-height: 1.46;
}

.data-step-visual,
.data-provider-row,
.data-device-row {
  position: relative;
  z-index: 1;
}

.data-device-mini {
  display: grid;
  gap: 12px;
}

.data-device-mini span {
  height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(7, 151, 107, 0.12), rgba(241, 253, 130, 0.18) 44%, rgba(255, 255, 255, 0.56) 44%),
    rgba(255, 255, 255, 0.7);
}

.data-device-mini span:nth-child(2) {
  width: 84%;
  background:
    linear-gradient(90deg, rgba(216, 95, 210, 0.1), rgba(241, 253, 130, 0.16) 34%, rgba(255, 255, 255, 0.58) 34%),
    rgba(255, 255, 255, 0.68);
}

.data-device-mini span:nth-child(3) {
  width: 68%;
  background:
    linear-gradient(90deg, rgba(255, 159, 26, 0.12), rgba(241, 253, 130, 0.16) 48%, rgba(255, 255, 255, 0.58) 48%),
    rgba(255, 255, 255, 0.68);
}

.data-provider-row,
.data-device-row {
  display: grid;
  gap: 10px;
}

.data-provider-row span,
.data-device-row span {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 18px;
  padding: 0 14px;
  color: rgba(17, 17, 17, 0.68);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.035);
  font-size: 14px;
  font-weight: 650;
}

.data-provider-row .is-active {
  color: #111111;
  border-color: rgba(7, 151, 107, 0.18);
  background:
    radial-gradient(circle at 18% 24%, rgba(241, 253, 130, 0.28), transparent 48%),
    rgba(255, 255, 255, 0.82);
}

.data-provider-row img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.data-device-row {
  grid-template-columns: 1fr;
}

.data-device-row span::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.data-device-row span:nth-child(2)::before {
  width: 20px;
  height: 15px;
}

.data-device-row span:nth-child(3)::before {
  width: 13px;
  height: 20px;
}

.data-clarity-proof.data-proof-strip {
  width: min(1120px, 100%);
  margin: 4px auto 0;
  border-color: rgba(17, 17, 17, 0.08);
}

.data-clarity-proof.data-proof-strip p {
  padding: 18px 22px;
}

.data-clarity-proof.data-proof-strip span {
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.data-clarity-proof.data-proof-strip strong {
  color: rgba(17, 17, 17, 0.78);
  font-size: 14px;
  font-weight: 620;
}

@media (max-width: 1040px) {
  .data-clarity {
    padding-inline: 24px;
  }

  .data-clarity-flow {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
  }

  .data-step-card {
    min-height: auto;
  }
}

@media (min-width: 981px) and (max-width: 1040px) {
  .data-clarity {
    gap: 38px;
  }

  .data-clarity-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(960px, 100%);
    gap: 12px;
  }

  .data-step-card {
    min-height: 360px;
    gap: 18px;
    border-radius: 28px;
    padding: 22px;
  }

  .data-step-number {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .data-step-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .data-step-card h3 {
    font-size: 24px;
    line-height: 1.04;
  }

  .data-step-card p:not(.data-step-kicker) {
    margin-top: 12px;
    font-size: 13.5px;
    line-height: 1.4;
  }

  .data-provider-row span,
  .data-device-row span {
    min-height: 44px;
    gap: 9px;
    padding: 0 12px;
    font-size: 12.5px;
  }

  .data-provider-row img {
    width: 28px;
    height: 28px;
  }

  .data-device-mini span {
    height: 36px;
    border-radius: 14px;
  }

  .data-clarity-proof.data-proof-strip {
    width: min(960px, 100%);
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .data-clarity {
    gap: 36px;
    padding-inline: 22px;
  }

  .data-clarity-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(724px, 100%);
    gap: 10px;
  }

  .data-step-card {
    min-height: 396px;
    gap: 16px;
    border-radius: 26px;
    padding: 19px;
  }

  .data-step-card::after {
    inset: auto -36% -38% 8%;
  }

  .data-step-number {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    font-size: 13px;
  }

  .data-step-kicker {
    margin-bottom: 9px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .data-step-card h3 {
    font-size: 21px;
    line-height: 1.05;
  }

  .data-step-card p:not(.data-step-kicker) {
    margin-top: 11px;
    font-size: 12.5px;
    line-height: 1.38;
  }

  .data-provider-row,
  .data-device-row {
    gap: 8px;
  }

  .data-provider-row span,
  .data-device-row span {
    min-height: 42px;
    gap: 8px;
    border-radius: 15px;
    padding: 0 10px;
    font-size: 11.5px;
  }

  .data-provider-row img {
    width: 26px;
    height: 26px;
  }

  .data-device-mini span {
    height: 34px;
    border-radius: 13px;
  }
}

@media (max-width: 640px) {
  .data-clarity {
    padding:
      74px
      18px
      66px;
  }

  .data-clarity-copy h2 {
    font-size: clamp(42px, 12.5vw, 58px);
  }

  .data-clarity-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .data-step-card {
    border-radius: 28px;
    padding: 22px;
  }

  .data-step-card h3 {
    font-size: 28px;
  }

  .data-provider-row,
  .data-device-row {
    gap: 8px;
  }

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

  .data-clarity-proof.data-proof-strip p + p {
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    border-left: 0;
  }
}

/* Setup story: explain PWA install and activation before pricing. */
.setup-story {
  position: relative;
  display: grid;
  gap: clamp(28px, 4vw, 46px);
  width: 100%;
  min-height: 100svh;
  padding:
    clamp(86px, 8vw, 128px)
    max(22px, calc((100vw - 1480px) / 2 + 70px))
    clamp(76px, 8vw, 112px);
  overflow: clip;
  color: #111111;
  background:
    radial-gradient(circle at 22% 24%, rgba(241, 253, 130, 0.2), transparent 24%),
    radial-gradient(circle at 74% 80%, rgba(72, 217, 184, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfbf8 54%, #ffffff 100%);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.setup-story::before {
  content: "";
  position: absolute;
  inset: 12% 7% 10%;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.032) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse at 48% 50%, #000 0 52%, transparent 78%);
  opacity: 0.7;
  pointer-events: none;
}

.setup-story-head,
.setup-steps {
  position: relative;
  z-index: 1;
}

.setup-story-head {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.setup-story-head h2 {
  max-width: 780px;
  margin: 17px auto 0;
  color: #111111;
  font-family: var(--owmii-display-font);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.setup-story-head p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px auto 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.48;
}

.setup-steps {
  width: min(1280px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.setup-step {
  position: relative;
  min-height: 372px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 249, 247, 0.78)),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 24px 68px rgba(17, 17, 17, 0.075);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.setup-step::after {
  content: "";
  position: absolute;
  inset: auto -30% -34% 12%;
  height: 220px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 44% 48%, rgba(241, 253, 130, 0.32), transparent 34%),
    radial-gradient(circle at 58% 54%, rgba(72, 217, 184, 0.13), transparent 58%);
  filter: blur(20px);
  opacity: 0.78;
  pointer-events: none;
}

.setup-step-count {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 15px;
  color: #111111;
  background: #f1fd82;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.06);
  font-size: 14px;
  font-weight: 680;
}

.setup-step h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 540;
  line-height: 1.04;
  letter-spacing: 0;
}

.setup-step p {
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.56);
  font-size: 14px;
  line-height: 1.45;
}

.setup-mini {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.setup-mini span,
.setup-browser-mini {
  min-height: 46px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 17px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.035);
  color: rgba(17, 17, 17, 0.66);
  font-size: 13px;
  font-weight: 650;
}

.setup-mini span {
  display: flex;
  align-items: center;
}

.setup-product-mini span:first-child,
.setup-activate-mini span:first-child {
  color: #111111;
  border-color: rgba(7, 151, 107, 0.16);
  background:
    radial-gradient(circle at 18% 26%, rgba(241, 253, 130, 0.28), transparent 48%),
    rgba(255, 255, 255, 0.82);
}

.setup-browser-mini {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.setup-browser-mini i {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 34% 34%, #f1fd82 0 22%, transparent 23%),
    radial-gradient(circle at 66% 68%, rgba(72, 217, 184, 0.7) 0 18%, transparent 19%),
    rgba(17, 17, 17, 0.08);
}

.setup-browser-mini strong {
  min-width: 0;
  color: rgba(17, 17, 17, 0.78);
  font-size: 13px;
  font-weight: 650;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setup-install-mini {
  grid-template-columns: 1fr;
}

.setup-install-mini span::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.74);
}

.setup-install-mini span:nth-child(2)::before {
  width: 18px;
  height: 14px;
}

.setup-install-mini span:nth-child(3)::before {
  width: 12px;
  height: 19px;
}

@media (max-width: 1180px) {
  .setup-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(820px, 100%);
  }

  .setup-step {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .setup-story {
    padding:
      74px
      18px
      66px;
  }

  .setup-story-head h2 {
    font-size: clamp(42px, 12.5vw, 58px);
  }

  .setup-story-head p:not(.eyebrow) {
    font-size: 16px;
  }

  .setup-steps {
    grid-template-columns: 1fr;
  }

  .setup-step {
    min-height: auto;
    border-radius: 28px;
    padding: 22px;
  }
}

/* Data & trust v1: provider-ready ownership section. */
.data-trust {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  width: 100%;
  min-height: 100svh;
  padding:
    clamp(92px, 9vw, 142px)
    max(24px, calc((100vw - 1480px) / 2 + 72px))
    clamp(78px, 8vw, 118px);
  color: #111111;
  background:
    radial-gradient(circle at 70% 32%, rgba(241, 253, 130, 0.24), transparent 24%),
    radial-gradient(circle at 34% 78%, rgba(72, 217, 184, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fafaf6 48%, #ffffff 100%);
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  overflow: clip;
}

.data-trust::before {
  content: "";
  position: absolute;
  inset: 11% 5% auto;
  height: 72%;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse at 66% 48%, #000 0 46%, transparent 76%);
  opacity: 0.7;
  pointer-events: none;
}

.data-trust-copy,
.data-trust-visual,
.data-trust-proof {
  position: relative;
  z-index: 1;
}

.data-trust-copy {
  max-width: 530px;
}

.data-trust-copy h2 {
  max-width: 520px;
  margin: 18px 0 0;
  color: #111111;
  font-family: var(--owmii-display-font);
  font-size: clamp(54px, 5.25vw, 82px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.data-trust-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.48;
  letter-spacing: 0;
}

.data-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.data-trust-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(17, 17, 17, 0.7);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.045);
  font-size: 13px;
  font-weight: 620;
  backdrop-filter: blur(16px);
}

.data-trust-visual {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(76px, 0.22fr) minmax(330px, 1fr);
  align-items: center;
  gap: 20px;
}

.data-local-card,
.data-cloud-panel,
.data-device-strip {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 249, 247, 0.76)),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 28px 72px rgba(17, 17, 17, 0.09);
  backdrop-filter: blur(18px);
}

.data-local-card {
  position: relative;
  min-height: 360px;
  display: grid;
  align-content: start;
  border-radius: 34px;
  padding: 28px;
  overflow: hidden;
}

.data-local-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -32% 18%;
  height: 260px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 54% 48%, rgba(241, 253, 130, 0.38), transparent 35%),
    radial-gradient(circle at 48% 50%, rgba(7, 151, 107, 0.18), transparent 56%);
  filter: blur(18px);
  opacity: 0.88;
}

.data-card-label {
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.data-local-card > strong,
.data-cloud-header strong {
  margin-top: 12px;
  color: #111111;
  font-size: 25px;
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: 0;
}

.data-local-card p {
  max-width: 280px;
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.55);
  font-size: 14px;
  line-height: 1.45;
}

.data-local-rows {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.data-local-rows span {
  height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(7, 151, 107, 0.12), rgba(241, 253, 130, 0.18) 44%, rgba(255, 255, 255, 0.52) 44%),
    rgba(255, 255, 255, 0.68);
}

.data-local-rows span:nth-child(2) {
  width: 86%;
  background:
    linear-gradient(90deg, rgba(216, 95, 210, 0.1), rgba(241, 253, 130, 0.16) 34%, rgba(255, 255, 255, 0.56) 34%),
    rgba(255, 255, 255, 0.64);
}

.data-local-rows span:nth-child(3) {
  width: 68%;
  background:
    linear-gradient(90deg, rgba(255, 159, 26, 0.12), rgba(241, 253, 130, 0.16) 48%, rgba(255, 255, 255, 0.56) 48%),
    rgba(255, 255, 255, 0.64);
}

.data-sync-spine {
  position: relative;
  min-height: 260px;
  display: grid;
  justify-items: center;
  align-content: center;
  color: rgba(17, 17, 17, 0.44);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.data-sync-spine::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.16), transparent);
}

.data-sync-spine i {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: #f1fd82;
  box-shadow:
    0 0 0 9px rgba(241, 253, 130, 0.18),
    0 14px 30px rgba(17, 17, 17, 0.08);
}

.data-sync-spine span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.data-cloud-panel {
  min-height: 430px;
  display: grid;
  align-content: start;
  border-radius: 38px;
  padding: 28px;
}

.data-cloud-header {
  display: grid;
  gap: 0;
}

.data-provider-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.data-provider {
  min-height: 68px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 21px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.035);
}

.data-provider.is-active {
  border-color: rgba(7, 151, 107, 0.18);
  background:
    radial-gradient(circle at 18% 24%, rgba(241, 253, 130, 0.28), transparent 48%),
    rgba(255, 255, 255, 0.78);
}

.data-provider img,
.data-provider b {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
}

.data-provider img {
  object-fit: contain;
  padding: 7px;
}

.data-provider b {
  color: rgba(17, 17, 17, 0.68);
  font-size: 17px;
  font-weight: 640;
}

.data-provider div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.data-provider strong {
  color: rgba(17, 17, 17, 0.84);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.1;
}

.data-provider span {
  color: rgba(17, 17, 17, 0.45);
  font-size: 12px;
  font-weight: 600;
}

.data-device-strip {
  grid-column: 1 / -1;
  width: min(520px, 78%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-self: center;
  align-items: center;
  min-height: 58px;
  border-radius: 999px;
  overflow: hidden;
}

.data-device-strip span {
  display: grid;
  place-items: center;
  min-height: 58px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 13px;
  font-weight: 650;
}

.data-device-strip span + span {
  border-left: 1px solid rgba(17, 17, 17, 0.07);
}

.data-trust-proof.data-proof-strip {
  grid-column: 1 / -1;
  width: min(1120px, 100%);
  margin: clamp(10px, 2vw, 26px) auto 0;
  border-color: rgba(17, 17, 17, 0.08);
}

.data-trust-proof.data-proof-strip p {
  padding: 18px 22px;
}

.data-trust-proof.data-proof-strip span {
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.data-trust-proof.data-proof-strip strong {
  color: rgba(17, 17, 17, 0.78);
  font-size: 14px;
  font-weight: 620;
}

@media (max-width: 1100px) {
  .data-trust {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-inline: 24px;
  }

  .data-trust-copy {
    max-width: 700px;
    text-align: center;
    justify-self: center;
  }

  .data-trust-copy h2,
  .data-trust-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .data-trust-points {
    justify-content: center;
  }

  .data-trust-visual {
    width: min(860px, 100%);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .data-trust {
    padding:
      78px
      18px
      68px;
  }

  .data-trust-copy h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .data-trust-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .data-trust-points {
    gap: 8px;
  }

  .data-trust-points span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .data-trust-visual {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .data-local-card,
  .data-cloud-panel {
    min-height: auto;
    border-radius: 28px;
    padding: 22px;
  }

  .data-sync-spine {
    min-height: 58px;
  }

  .data-sync-spine::before {
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .data-sync-spine span {
    margin-top: 0;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .data-device-strip {
    width: 100%;
  }

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

  .data-trust-proof.data-proof-strip p + p {
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    border-left: 0;
  }
}

/* Setup guide scenario final overrides. Keep this after older setup CSS. */
.setup-guide-motion .setup-guide-stage {
  min-height: 770px;
  align-content: center;
}

.setup-guide-motion .setup-guide-browser {
  animation: setup-browser-install-morph 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-guide-browser-top {
  grid-template-columns: 12px 12px 12px minmax(0, 1fr) auto;
}

.setup-guide-motion .setup-guide-browser-top > strong {
  justify-self: center;
  animation: setup-url-label 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-catalog-scene,
.setup-launch-scene {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 74px;
  width: min(520px, calc(100% - 78px));
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 26px 68px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.setup-catalog-scene {
  animation: setup-catalog-scene 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-catalog-scene p,
.setup-launch-scene small {
  margin: 0;
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.setup-catalog-scene h3 {
  max-width: 360px;
  margin: 10px 0 18px;
  color: #111111;
  font-size: 28px;
  font-weight: 560;
  line-height: 1.03;
  letter-spacing: 0;
}

.setup-catalog-scene div {
  display: grid;
  gap: 10px;
}

.setup-catalog-scene span {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 18px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.72);
}

.setup-catalog-scene span:first-child {
  border-color: rgba(127, 145, 207, 0.28);
  background:
    radial-gradient(circle at 14% 28%, rgba(241, 253, 130, 0.25), transparent 42%),
    rgba(255, 255, 255, 0.82);
}

.setup-catalog-scene strong {
  color: #111111;
  font-size: 14px;
  font-weight: 700;
}

.setup-catalog-scene small {
  color: rgba(17, 17, 17, 0.48);
  font-size: 12px;
  font-weight: 620;
}

.setup-launch-scene {
  top: 116px;
  width: min(360px, calc(100% - 92px));
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  opacity: 0;
  transform: translateX(-50%) translateY(18px) scale(0.96);
  animation: setup-launch-scene 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-launch-scene > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #111111;
  background: linear-gradient(135deg, #b6c7ff, #f6d7ed 55%, #ffddbe);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
  font-size: 28px;
  font-weight: 720;
}

.setup-launch-scene strong {
  color: #111111;
  font-size: 24px;
  font-weight: 590;
  letter-spacing: 0;
}

.setup-launch-scene small {
  max-width: 250px;
  color: rgba(17, 17, 17, 0.52);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.38;
}

.setup-guide-motion .setup-guide-modal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: setup-modal-open 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-guide-app-bg {
  animation: setup-app-bg 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-guide-hero-copy,
.setup-guide-motion .setup-card-panel,
.setup-guide-motion .setup-guide-progress span,
.setup-guide-motion .setup-guide-steps span {
  animation-duration: 30s;
}

.setup-guide-motion .setup-install-chip {
  position: relative;
  inset: auto;
  z-index: 2;
  min-width: 238px;
  width: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  padding: 7px 8px 7px 13px;
  color: rgba(17, 17, 17, 0.62);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.07);
  opacity: 1;
  transform: none;
  animation: setup-install-chip 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-install-chip span {
  min-width: 0;
  font-size: 12px;
  font-weight: 650;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setup-guide-motion .setup-install-chip b {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  color: #111111;
  background: #f1fd82;
  font-size: 12px;
  font-weight: 760;
  animation: setup-install-button-press 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-device-dock {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 3;
  justify-self: center;
  width: min(420px, 68%);
  margin-top: 18px;
  transform: none;
  opacity: 0;
  animation: setup-device-dock-in 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-cursor {
  animation: setup-guide-cursor 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-profile-fields {
  gap: 7px;
}

.setup-guide-motion .setup-profile-fields label {
  min-height: 39px;
  padding: 9px 12px;
}

.setup-guide-motion .setup-app-row {
  animation: setup-app-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-business-row {
  animation: setup-business-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-language-row {
  min-height: 62px;
  align-items: start;
  animation: setup-profile-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-language-row small {
  grid-column: 1 / -1;
  color: rgba(17, 17, 17, 0.42);
  font-size: 10.5px;
  font-weight: 620;
  line-height: 1.32;
}

.setup-guide-motion .setup-currency-row {
  animation: setup-currency-choice-highlight 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-license-form strong i {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  color: #111111;
  font-style: normal;
  white-space: nowrap;
  vertical-align: bottom;
  animation: setup-license-key-reveal 30s steps(16, end) infinite;
}

.setup-guide-motion .setup-license-form button {
  animation: setup-license-button-press 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-card-license > small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: setup-license-status-in 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-card-license > small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #07976b;
  box-shadow: 0 0 0 6px rgba(7, 151, 107, 0.1);
}

.setup-guide-motion .setup-drive-card {
  grid-template-columns: 34px minmax(0, 1fr) auto;
  column-gap: 12px;
  row-gap: 2px;
}

.setup-guide-motion .setup-drive-card img {
  grid-row: 1 / span 3;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(17, 17, 17, 0.08));
}

.setup-guide-motion .setup-drive-card strong,
.setup-guide-motion .setup-drive-card span,
.setup-guide-motion .setup-drive-card small {
  grid-column: 2;
}

.setup-guide-motion .setup-drive-title {
  opacity: 1;
  animation: setup-drive-title-out 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-drive-connected {
  grid-row: 1;
  opacity: 0;
  transform: translateY(4px);
  animation: setup-drive-status-in 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-drive-card button {
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: center;
  animation: setup-drive-button-press 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.setup-guide-motion .setup-drive-card small {
  color: rgba(7, 151, 107, 0.72);
  font-size: 11px;
  font-weight: 680;
  opacity: 0;
  transform: translateY(4px);
  animation: setup-drive-status-in 30s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes setup-browser-install-morph {
  0%, 13% { border-radius: 38px; transform: translateY(0) scale(1); }
  18%, 100% { border-radius: 42px; transform: translateY(-8px) scale(0.985); }
}

@keyframes setup-url-label {
  0%, 12% { opacity: 1; transform: translateY(0); }
  18%, 100% { opacity: 0.46; transform: translateY(-2px); }
}

@keyframes setup-catalog-scene {
  0%, 12% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
  16%, 100% { opacity: 0; transform: translateX(-50%) translateY(-18px) scale(0.97); }
}

@keyframes setup-launch-scene {
  0%, 14% { opacity: 0; transform: translateX(-50%) translateY(18px) scale(0.96); }
  18%, 23% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
  27%, 100% { opacity: 0; transform: translateX(-50%) translateY(-16px) scale(0.97); }
}

@keyframes setup-modal-open {
  0%, 24% { opacity: 0; transform: translateY(18px) scale(0.985); }
  28%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes setup-app-bg {
  0%, 14% { opacity: 0.16; transform: scale(0.985); }
  20%, 100% { opacity: 0.35; transform: scale(1); }
}

@keyframes setup-guide-slide-1 {
  0%, 25% { opacity: 0; transform: translateY(12px); }
  28%, 40.5% { opacity: 1; transform: translateY(0); }
  42.2%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes setup-guide-slide-2 {
  0%, 40.8% { opacity: 0; transform: translateY(12px); }
  43.2%, 53% { opacity: 1; transform: translateY(0); }
  55.5%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes setup-guide-slide-3 {
  0%, 54.8% { opacity: 0; transform: translateY(12px); }
  57.2%, 67% { opacity: 1; transform: translateY(0); }
  69.5%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes setup-guide-slide-4 {
  0%, 68.8% { opacity: 0; transform: translateY(12px); }
  71.2%, 81% { opacity: 1; transform: translateY(0); }
  83.5%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes setup-guide-slide-5 {
  0%, 82.8% { opacity: 0; transform: translateY(12px); }
  85.2%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes setup-guide-progress {
  0%, 27% { width: 0%; }
  28%, 41% { width: 20%; }
  43%, 55% { width: 40%; }
  57%, 69% { width: 60%; }
  71%, 83% { width: 80%; }
  85%, 100% { width: 100%; }
}

@keyframes setup-step-1 {
  0%, 25% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  28%, 40% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
  43%, 100% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
}

@keyframes setup-step-2 {
  0%, 41% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  43%, 54% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
  57%, 100% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
}

@keyframes setup-step-3 {
  0%, 55% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  57%, 68% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
  71%, 100% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
}

@keyframes setup-step-4 {
  0%, 69% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  71%, 82% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
  85%, 100% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
}

@keyframes setup-step-5 {
  0%, 83% { color: rgba(17, 17, 17, 0.44); border-color: rgba(17, 17, 17, 0.07); background: rgba(255, 255, 255, 0.58); }
  85%, 100% { color: #111111; border-color: rgba(127, 145, 207, 0.48); background: rgba(127, 145, 207, 0.12); }
}

@keyframes setup-install-chip {
  0%, 12% { opacity: 1; transform: translateY(0) scale(1); }
  16%, 100% { opacity: 0; transform: translateY(-10px) scale(0.96); }
}

@keyframes setup-install-button-press {
  0%, 8% { transform: scale(1); }
  10%, 11% { transform: scale(0.92); }
  13%, 100% { transform: scale(1); }
}

@keyframes setup-device-dock-in {
  0%, 14% { opacity: 0; transform: translateY(10px) scale(0.98); }
  20%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes setup-guide-cursor {
  0%, 5% { left: 53%; top: 34%; transform: scale(1); }
  9%, 11% { left: 91%; top: 7.5%; transform: scale(0.9); }
  16%, 19% { left: 50%; top: 31%; transform: scale(1); }
  21%, 23% { left: 50%; top: 31%; transform: scale(0.9); }
  30%, 37% { left: 86%; top: 74%; transform: scale(1); }
  45%, 48% { left: 72%; top: 56%; transform: scale(0.92); }
  51%, 54% { left: 72%; top: 63%; transform: scale(0.92); }
  60%, 64% { left: 83%; top: 59%; transform: scale(0.92); }
  73%, 78% { left: 82%; top: 59%; transform: scale(0.92); }
  88%, 100% { left: 86%; top: 74%; transform: scale(1); }
}

@media (max-width: 720px) {
  .setup-guide-motion .setup-guide-stage {
    min-height: 710px;
  }

  .setup-guide-motion .setup-guide-browser-top {
    grid-template-columns: 8px 8px 8px minmax(0, 1fr) auto;
    gap: 6px;
  }

  .setup-guide-motion .setup-guide-browser-top > strong {
    width: 100%;
    justify-self: stretch;
  }

  .setup-guide-motion .setup-install-chip {
    min-width: 0;
    padding: 6px;
  }

  .setup-guide-motion .setup-install-chip span {
    display: none;
  }

  .setup-guide-motion .setup-install-chip b {
    min-height: 28px;
    padding: 0 9px;
    font-size: 11px;
  }

  .setup-catalog-scene {
    top: 54px;
    width: calc(100% - 44px);
    border-radius: 24px;
    padding: 18px;
  }

  .setup-catalog-scene h3 {
    font-size: 23px;
  }

  .setup-launch-scene {
    top: 86px;
    width: calc(100% - 68px);
  }

  .setup-launch-scene > span {
    width: 62px;
    height: 62px;
    border-radius: 21px;
    font-size: 24px;
  }

  .setup-guide-motion .setup-device-dock {
    width: calc(100% - 44px);
    margin-top: 14px;
  }
}

/* Final pricing lock: light landing-native cards with one clear lifetime focus. */
.pricing .section-head {
  margin-bottom: 0;
}

.pricing-grid {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr) minmax(0, 0.94fr);
  gap: 18px;
  margin-top: 34px;
}

.price-card {
  position: relative;
  min-height: 414px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 249, 246, 0.72));
  box-shadow:
    0 26px 80px rgba(17, 18, 20, 0.065),
    0 1px 0 rgba(255, 255, 255, 0.94) inset;
  padding: 28px;
}

.price-card.featured {
  color: #111111;
  border-color: rgba(17, 17, 17, 0.1);
  background:
    radial-gradient(circle at 86% 8%, rgba(237, 255, 102, 0.58), transparent 28%),
    radial-gradient(circle at 18% 100%, rgba(196, 210, 255, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 248, 245, 0.78));
  box-shadow:
    0 36px 96px rgba(17, 18, 20, 0.09),
    0 0 0 1px rgba(237, 255, 102, 0.28) inset,
    0 1px 0 rgba(255, 255, 255, 0.96) inset;
}

.price-card.featured::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(237, 255, 102, 0.34);
  filter: blur(20px);
  pointer-events: none;
}

.price-card .status {
  position: relative;
  z-index: 1;
  min-height: 30px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.62);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.012em;
  padding: 0 12px;
}

.price-card.featured .status {
  color: #111111;
  background: #edff66;
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 24px rgba(17, 18, 20, 0.08);
}

.price-card h3,
.price-card.featured h3 {
  color: #111111;
  margin-top: 18px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.034em;
}

.price {
  color: #111111;
  margin: 18px 0 0;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.price .period {
  margin-left: 6px;
  color: rgba(17, 17, 17, 0.46);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.012em;
}

.price .price-cents {
  display: inline-block;
  margin-left: 0.03em;
  color: #111111;
  font-size: 0.56em;
  font-weight: 500;
  letter-spacing: -0.028em;
  transform: translateY(-0.28em);
}

.price .currency {
  display: inline-block;
  margin-right: 0.13em;
  color: #111111;
  font-size: 0.78em;
  font-weight: 500;
  letter-spacing: -0.04em;
  transform: translateY(-0.02em);
}

.price-card.featured .price .currency {
  color: #111111;
}

.price s .currency {
  color: rgba(17, 17, 17, 0.34);
  margin-right: 0.08em;
  font-size: 1em;
  font-weight: 400;
}

.price-card.featured .price s .currency {
  color: rgba(17, 17, 17, 0.34);
}

.price s {
  margin-right: 8px;
  color: rgba(17, 17, 17, 0.34);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.price-saving {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: #111111;
  background: rgba(237, 255, 102, 0.48);
  font-size: 12.5px;
  font-weight: 560;
  letter-spacing: -0.012em;
  padding: 0 11px;
}

.price-saving.muted {
  color: rgba(17, 17, 17, 0.56);
  background: rgba(255, 255, 255, 0.62);
}

.price-card p,
.price-card.featured p,
.price-subline {
  color: #757575;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.012em;
}

.price-card.featured .price-subline {
  color: #757575;
}

.price-subline {
  position: relative;
  z-index: 1;
  min-height: 24px;
  margin-top: 10px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
  margin: 24px 0 28px;
}

.price-card li,
.price-card.featured li {
  position: relative;
  color: rgba(17, 17, 17, 0.68);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.012em;
  padding-left: 25px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #edff66;
  box-shadow:
    0 0 0 1px rgba(17, 17, 17, 0.08) inset,
    0 0 0 4px rgba(237, 255, 102, 0.24);
}

.price-card .btn {
  position: relative;
  z-index: 1;
  min-height: 46px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-top: auto;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: #111111;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(17, 18, 20, 0.055);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.012em;
  padding: 0 20px;
  transition:
    background 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease;
}

.price-card .btn.primary,
.price-card .btn:hover,
.price-card .btn:focus-visible {
  color: #ffffff;
  background: #222222;
  border-color: #222222;
  box-shadow: 0 18px 34px rgba(17, 18, 20, 0.16);
}

.price-card .btn:hover,
.price-card .btn:focus-visible {
  box-shadow: 0 20px 38px rgba(17, 18, 20, 0.17);
}

.price-card .btn.is-disabled,
.price-card .btn:disabled {
  cursor: not-allowed;
  color: rgba(17, 17, 17, 0.42);
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(17, 17, 17, 0.07);
  box-shadow: none;
}

.price-card .btn.is-disabled:hover,
.price-card .btn.is-disabled:focus-visible,
.price-card .btn:disabled:hover,
.price-card .btn:disabled:focus-visible {
  color: rgba(17, 17, 17, 0.42);
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(17, 17, 17, 0.07);
  box-shadow: none;
}

.pricing-note {
  width: min(100%, 760px);
  margin: 24px auto 0;
  color: rgba(17, 17, 17, 0.46);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.012em;
  text-align: center;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 0;
  }
}

/* Setup height polish: keep the walkthrough cinematic, but less vertically heavy. */
.setup-guide-motion.setup-story {
  min-height: auto;
  padding:
    clamp(72px, 6.6vw, 106px)
    max(22px, calc((100vw - 1480px) / 2 + 70px))
    clamp(64px, 6.6vw, 94px);
}

.setup-guide-motion .setup-guide-stage {
  min-height: 660px;
}

.setup-guide-motion .setup-guide-browser {
  min-height: 590px;
}

.setup-guide-motion .setup-guide-screen {
  min-height: 532px;
  padding: 28px;
}

.setup-guide-motion .setup-guide-modal {
  min-height: 476px;
  margin-top: 10px;
}

.setup-guide-motion .setup-device-dock {
  margin-top: 12px;
}

@media (max-width: 720px) {
  .setup-guide-motion.setup-story {
    padding:
      66px
      18px
      56px;
  }

  .setup-guide-motion .setup-guide-stage {
    min-height: 618px;
  }

  .setup-guide-motion .setup-guide-browser {
    min-height: 552px;
  }

  .setup-guide-motion .setup-guide-screen {
    min-height: 502px;
  }

  .setup-guide-motion .setup-guide-modal {
    min-height: 460px;
  }
}

/* Purchase selector: landing-native modal before Paddle checkout. */
body.purchase-modal-open {
  overflow: hidden;
}

.purchase-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.purchase-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.purchase-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(237, 255, 102, 0.16), transparent 30%),
    rgba(248, 248, 246, 0.72);
  backdrop-filter: blur(22px) saturate(1.08);
}

.purchase-dialog {
  position: relative;
  width: min(100%, 980px);
  max-height: min(92dvh, 820px);
  display: grid;
  gap: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at 92% 0%, rgba(237, 255, 102, 0.38), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 245, 0.86));
  box-shadow:
    0 44px 120px rgba(17, 18, 20, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  padding: clamp(22px, 3vw, 32px);
  transform: translateY(18px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.purchase-modal.is-open .purchase-dialog {
  transform: translateY(0) scale(1);
}

.purchase-dialog-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.purchase-eyebrow {
  margin: 0 0 10px;
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.purchase-dialog h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.058em;
}

.purchase-dialog-top p:not(.purchase-eyebrow) {
  max-width: 650px;
  margin: 12px 0 0;
  color: #757575;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.012em;
}

.purchase-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.58);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 26px rgba(17, 18, 20, 0.06);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.purchase-plan-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
}

.purchase-plan-tabs button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.58);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 560;
  letter-spacing: -0.012em;
  cursor: pointer;
}

.purchase-plan-tabs button span {
  color: rgba(17, 17, 17, 0.42);
  font-size: 12px;
  font-weight: 500;
}

.purchase-plan-tabs button.is-selected {
  color: #111111;
  background: #edff66;
  box-shadow: 0 12px 28px rgba(17, 18, 20, 0.08);
}

.purchase-plan-tabs button.is-selected span {
  color: rgba(17, 17, 17, 0.74);
}

.purchase-plan-tabs button:disabled {
  cursor: not-allowed;
  color: rgba(17, 17, 17, 0.34);
}

.purchase-plan-tabs button:disabled span {
  color: rgba(17, 17, 17, 0.3);
}

.purchase-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
  gap: 14px;
  align-items: stretch;
}

.purchase-picker {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 30px;
  background:
    radial-gradient(circle at 95% 12%, rgba(237, 255, 102, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.46);
  box-shadow:
    0 24px 58px rgba(17, 18, 20, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  padding: 12px;
}

.purchase-search {
  display: grid;
  gap: 8px;
}

.purchase-search span,
.purchase-cart-head span,
.purchase-summary span {
  color: rgba(17, 17, 17, 0.46);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.purchase-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: #111111;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(17, 18, 20, 0.045);
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.012em;
  outline: none;
  padding: 0 18px;
}

.purchase-search input::placeholder {
  color: rgba(17, 17, 17, 0.36);
}

.purchase-product-list {
  max-height: 330px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  overflow: auto;
  padding-right: 4px;
}

.purchase-product-list > .purchase-helper {
  grid-column: 1 / -1;
  padding: 10px 2px;
}

.purchase-product-option {
  width: 100%;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 92px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 24px;
  color: #111111;
  background: rgba(255, 255, 255, 0.56);
  font: inherit;
  text-align: left;
  cursor: pointer;
  padding: 12px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.purchase-product-option[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
}

.purchase-product-option.is-selected {
  border-color: rgba(17, 17, 17, 0.13);
  background: rgba(237, 255, 102, 0.18);
  box-shadow: 0 16px 36px rgba(17, 18, 20, 0.06);
}

.purchase-product-option:hover,
.purchase-product-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 42px rgba(17, 18, 20, 0.07);
  outline: none;
}

.purchase-product-option.is-selected:hover,
.purchase-product-option.is-selected:focus-visible {
  background: rgba(237, 255, 102, 0.22);
}

.purchase-product-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #111111;
  background:
    linear-gradient(135deg, rgba(237, 255, 102, 0.68), rgba(246, 215, 237, 0.68));
  font-size: 13px;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.purchase-product-option strong {
  display: block;
  color: #111111;
  font-size: 15px;
  font-weight: 560;
  line-height: 1.2;
  letter-spacing: -0.018em;
}

.purchase-product-option small {
  display: block;
  margin: 4px 0 0;
  color: #757575;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: -0.012em;
}

.purchase-product-badge {
  justify-self: end;
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.58);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: -0.012em;
  padding: 7px 10px;
}

.purchase-product-check {
  justify-self: end;
  min-width: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.58);
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: -0.012em;
  padding: 7px 10px;
}

.purchase-product-option.is-selected .purchase-product-check {
  border-color: rgba(17, 17, 17, 0.12);
  color: #111111;
  background: #edff66;
}

.purchase-cart-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  gap: 12px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 255, 102, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.56);
  box-shadow:
    0 24px 58px rgba(17, 18, 20, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.76) inset;
  padding: 14px;
}

.purchase-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.purchase-cart-head strong {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: #111111;
  background: rgba(237, 255, 102, 0.22);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: -0.012em;
  padding: 0 10px;
}

.purchase-cart-list {
  display: grid;
  align-content: start;
  gap: 8px;
  max-height: 232px;
  overflow: auto;
  padding-right: 3px;
}

.purchase-cart-empty {
  margin: 0;
  border: 1px dashed rgba(17, 17, 17, 0.12);
  border-radius: 20px;
  color: rgba(17, 17, 17, 0.5);
  background: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  padding: 14px;
}

.purchase-cart-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto 30px;
  align-items: center;
  gap: 9px;
  min-height: 68px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  padding: 10px;
}

.purchase-cart-item .purchase-product-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  font-size: 12px;
}

.purchase-cart-item strong {
  display: block;
  color: #111111;
  font-size: 13.5px;
  font-weight: 560;
  line-height: 1.18;
  letter-spacing: -0.018em;
}

.purchase-cart-item small {
  display: block;
  margin-top: 3px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.purchase-cart-price {
  color: #111111;
  font-size: 13px;
  font-weight: 560;
  letter-spacing: -0.012em;
}

.purchase-cart-remove {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.48);
  background: rgba(255, 255, 255, 0.74);
  font: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.purchase-cart-remove:hover,
.purchase-cart-remove:focus-visible {
  color: #111111;
  background: rgba(237, 255, 102, 0.34);
  outline: none;
}

.purchase-summary {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 12px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: 14px;
}

.purchase-summary strong {
  display: block;
  margin-top: 5px;
  color: #111111;
  font-size: 18px;
  font-weight: 560;
  line-height: 1.22;
  letter-spacing: -0.028em;
}

.purchase-continue {
  min-height: 48px;
  width: 100%;
  min-width: 0;
  border: 1px solid #222222;
  border-radius: 999px;
  color: #ffffff;
  background: #222222;
  box-shadow: 0 18px 34px rgba(17, 18, 20, 0.14);
  font: inherit;
  font-size: 14px;
  font-weight: 560;
  letter-spacing: -0.012em;
  cursor: pointer;
  padding: 0 22px;
}

.purchase-continue:disabled {
  cursor: not-allowed;
  color: rgba(17, 17, 17, 0.42);
  border-color: rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: none;
}

.purchase-helper {
  min-height: 20px;
  margin: -2px 0 0;
  color: #757575;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.012em;
}

@media (max-width: 720px) {
  .problem-flow,
  .owmii-hub-card,
  .data-step-card,
  .core-flow-canvas-main,
  .payment-entry {
    max-width: 100%;
    overflow: hidden;
  }

  .purchase-modal {
    align-items: end;
    padding: 12px;
  }

  .purchase-dialog {
    width: 100%;
    max-height: calc(100dvh - 24px);
    gap: 10px;
    border-radius: 30px;
    padding: 16px;
  }

  .purchase-dialog h2 {
    font-size: 32px;
  }

  .purchase-dialog-top p:not(.purchase-eyebrow) {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.38;
  }

  .purchase-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .purchase-plan-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    border-radius: 999px;
    padding: 5px;
  }

  .purchase-plan-tabs button {
    min-height: 38px;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    font-size: 12.5px;
    padding: 0 4px;
  }

  .purchase-plan-tabs button span {
    font-size: 10.5px;
  }

  .purchase-product-list {
    grid-template-columns: 1fr;
    max-height: 136px;
  }

  .purchase-product-option {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 64px;
    padding: 10px;
  }

  .purchase-product-mark {
    width: 38px;
    height: 38px;
  }

  .purchase-product-check {
    min-width: 62px;
    padding: 7px 9px;
  }

  .purchase-summary {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 14px;
  }

  .purchase-cart-panel {
    grid-template-rows: auto auto auto auto auto;
    gap: 10px;
    border-radius: 24px;
    padding: 10px;
  }

  .purchase-cart-list {
    max-height: 74px;
  }

  .purchase-cart-item {
    min-height: 58px;
    padding: 8px;
  }

  .purchase-summary strong {
    font-size: 15.5px;
  }

  .purchase-helper {
    min-height: 0;
    font-size: 12px;
    line-height: 1.35;
  }

  .purchase-policy-note {
    margin-top: -4px;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .purchase-continue {
    width: 100%;
  }

  .purchase-policy-note {
    margin-top: -6px;
    font-size: 12px;
    line-height: 1.36;
    padding-top: 10px;
  }
}

/* Search/GEO answer layer: visible plain-language copy for buyers and crawlers. */
.answer-engine {
  width: min(100% - 44px, 1340px);
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 112px);
  margin: 0 auto;
  padding:
    clamp(76px, 8vw, 124px)
    0
    clamp(76px, 8vw, 124px);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.answer-engine-intro {
  align-self: start;
}

.answer-engine-intro .eyebrow {
  margin: 0 0 16px;
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.answer-engine h2 {
  max-width: 520px;
  margin: 0;
  color: #111111;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.answer-engine-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 22px 0 0;
  color: #757575;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.014em;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.answer-grid article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 60px rgba(17, 18, 20, 0.055);
  padding: clamp(20px, 2.4vw, 28px);
}

.answer-grid h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.036em;
}

.answer-grid p {
  margin: 0;
  color: #747474;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.52;
  letter-spacing: -0.012em;
}

/* Final FAQ lock: natural page section, not a floating window. */
.faq {
  width: min(100% - 44px, 1340px);
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 128px);
  margin: 0 auto;
  padding:
    clamp(78px, 8vw, 128px)
    0
    clamp(76px, 8vw, 124px);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  box-shadow: none;
}

.faq-intro {
  align-self: start;
}

.faq-intro .eyebrow {
  margin: 0 0 16px;
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.faq h2 {
  max-width: 470px;
  margin: 0;
  color: #111111;
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.062em;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 22px 0 0;
  color: #757575;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.014em;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.faq details {
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.faq summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  color: #111111;
  cursor: pointer;
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.032em;
  list-style: none;
  padding: 20px 0;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.52);
  background: rgba(255, 255, 255, 0.58);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
  color: #111111;
  background: #edff66;
}

.faq details p {
  max-width: 720px;
  margin: -4px 56px 24px 0;
  color: #757575;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.56;
  letter-spacing: -0.012em;
}

.site-footer {
  width: min(100% - 44px, 1340px);
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 30px 0 46px;
}

.site-footer strong {
  color: #111111;
  font-size: 18px;
  font-weight: 560;
  letter-spacing: -0.032em;
}

.site-footer p {
  margin-top: 6px;
  color: rgba(17, 17, 17, 0.46);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.012em;
}

@media (max-width: 980px) {
  .answer-engine {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .answer-engine-intro > p:not(.eyebrow) {
    max-width: 640px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-intro > p:not(.eyebrow) {
    max-width: 640px;
  }
}

@media (max-width: 720px) {
  .answer-engine {
    width: min(100% - 32px, 1340px);
    padding: 68px 0 74px;
  }

  .answer-engine h2 {
    font-size: 40px;
  }

  .answer-engine-intro > p:not(.eyebrow) {
    font-size: 15px;
  }

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

  .answer-grid article {
    min-height: 0;
    border-radius: 22px;
  }

  .faq {
    width: min(100% - 32px, 1340px);
    padding: 68px 0 74px;
  }

  .faq h2 {
    font-size: 40px;
  }

  .faq-intro > p:not(.eyebrow) {
    font-size: 15px;
  }

  .faq summary {
    min-height: 70px;
    font-size: 18px;
    padding: 18px 0;
  }

  .faq details p {
    margin-right: 0;
    font-size: 14px;
  }

  .site-footer {
    width: min(100% - 32px, 1340px);
  }
}

/* Setup final stability: fixed browser, no outer card, calibrated cursor path. */
.setup-guide-motion.setup-story {
  align-items: center;
}

.setup-guide-motion .setup-guide-stage {
  min-height: 644px !important;
  display: grid !important;
  align-content: center !important;
  justify-items: center !important;
  row-gap: 10px !important;
}

.setup-guide-motion .setup-guide-stage::before {
  display: none !important;
}

.setup-guide-motion .setup-guide-browser {
  height: 596px !important;
  min-height: 596px !important;
  border-radius: 38px !important;
  animation: none !important;
  transform: none !important;
}

.setup-guide-motion .setup-guide-screen {
  height: calc(100% - 58px) !important;
  min-height: 0 !important;
  padding: 24px !important;
}

.setup-guide-motion .setup-guide-app-bg {
  inset: 24px !important;
}

.setup-guide-motion .setup-guide-modal {
  min-height: 468px !important;
  margin-top: 8px !important;
}

.setup-guide-motion .setup-device-dock {
  width: min(420px, 68%) !important;
  margin-top: 0 !important;
  animation: setup-device-dock-stable 30s cubic-bezier(0.22, 1, 0.36, 1) infinite !important;
}

.setup-guide-motion .setup-cursor {
  animation: setup-guide-cursor-stable 30s cubic-bezier(0.22, 1, 0.36, 1) infinite !important;
}

@keyframes setup-device-dock-stable {
  0%, 14% { opacity: 0; transform: translateY(8px) scale(0.98); }
  20%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes setup-guide-cursor-stable {
  0%, 5% { left: 54%; top: 34%; transform: scale(1); }
  9%, 11% { left: 92.5%; top: 4.3%; transform: scale(0.9); }
  16%, 19% { left: 50%; top: 37.1%; transform: scale(1); }
  21%, 23% { left: 50%; top: 37.1%; transform: scale(0.9); }
  30%, 37% { left: 86.2%; top: 83.7%; transform: scale(1); }
  43.5%, 45% { left: 61.7%; top: 45.6%; transform: scale(0.92); }
  47%, 49% { left: 61.7%; top: 52.4%; transform: scale(0.92); }
  50.5%, 52.5% { left: 61.7%; top: 61.1%; transform: scale(0.92); }
  53.5%, 55% { left: 61.7%; top: 69.7%; transform: scale(0.92); }
  58%, 60% { left: 86.2%; top: 83.7%; transform: scale(0.94); }
  62%, 63.5% { left: 56.5%; top: 51.7%; transform: scale(1); }
  65%, 67% { left: 82.7%; top: 51.7%; transform: scale(0.92); }
  68.8%, 70% { left: 86.2%; top: 83.7%; transform: scale(0.94); }
  73%, 78% { left: 80.8%; top: 49%; transform: scale(0.92); }
  81%, 83% { left: 86.2%; top: 83.7%; transform: scale(0.94); }
  88%, 100% { left: 86.2%; top: 83.7%; transform: scale(1); }
}

@media (max-width: 720px) {
  .setup-guide-motion .setup-guide-stage {
    min-height: 596px !important;
    row-gap: 8px !important;
  }

  .setup-guide-motion .setup-guide-browser {
    height: 542px !important;
    min-height: 542px !important;
  }

  .setup-guide-motion .setup-guide-screen {
    height: calc(100% - 50px) !important;
    padding: 18px !important;
  }

  .setup-guide-motion .setup-guide-app-bg {
    inset: 18px !important;
  }

  .setup-guide-motion .setup-guide-modal {
    min-height: 432px !important;
    margin-top: 6px !important;
  }

  .setup-guide-motion .setup-device-dock {
    width: calc(100% - 44px) !important;
    margin-top: 0 !important;
  }
}

/* Pricing CTA parity: lifetime button expands like the hero primary CTA. */
.price-card.featured .btn.primary {
  width: 178px;
  inline-size: 178px;
  flex: 0 0 auto;
  overflow: hidden;
  white-space: nowrap;
  transition:
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    inline-size 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.price-card.featured:hover .btn.primary,
.price-card.featured .btn.primary:hover,
.price-card.featured .btn.primary:focus-visible {
  width: 206px;
  inline-size: 206px;
  background: #222222;
  border-color: #222222;
  color: #ffffff;
  box-shadow: 0 20px 38px rgba(17, 18, 20, 0.17);
}

/* Purchase cart final: compact picker, item-level plans, payment-only summary rail. */
.purchase-dialog {
  width: min(100%, 920px);
  max-height: min(92dvh, 780px);
  gap: 14px;
}

.purchase-dialog h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: -0.052em;
}

.purchase-dialog-top p:not(.purchase-eyebrow) {
  max-width: 560px;
  font-size: 14px;
}

.purchase-flow {
  grid-template-columns: minmax(0, 0.96fr) minmax(310px, 350px);
  gap: 12px;
}

.purchase-picker,
.purchase-cart-panel {
  border-radius: 24px;
  padding: 10px;
}

.purchase-search {
  gap: 6px;
}

.purchase-search input {
  min-height: 40px;
  font-size: 13.5px;
  padding: 0 14px;
}

.purchase-product-list {
  max-height: 280px;
  gap: 7px;
}

.purchase-product-option {
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 10px;
  min-height: 0;
  border-radius: 18px;
  padding: 9px;
}

.purchase-product-option strong {
  font-size: 13.5px;
}

.purchase-product-option small {
  margin-top: 2px;
  font-size: 11.5px;
}

.purchase-product-option .purchase-product-mark {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  font-size: 11.5px;
}

.purchase-product-check {
  min-width: 58px;
  font-size: 11px;
  padding: 6px 8px;
}

.purchase-product-plans {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 1px;
}

.purchase-product-plans button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.62);
  background: rgba(255, 255, 255, 0.66);
  font: inherit;
  font-size: 11.5px;
  font-weight: 560;
  letter-spacing: -0.012em;
  cursor: pointer;
}

.purchase-product-plans button small {
  margin: 0;
  color: rgba(17, 17, 17, 0.42);
  font-size: 10.5px;
  font-weight: 520;
}

.purchase-product-plans button:hover,
.purchase-product-plans button:focus-visible,
.purchase-product-plans button.is-selected {
  border-color: rgba(17, 17, 17, 0.12);
  color: #111111;
  background: #edff66;
  outline: none;
}

.purchase-cart-panel {
  grid-template-rows: auto minmax(86px, 1fr) auto auto;
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 255, 102, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.62);
}

.purchase-cart-list {
  max-height: 250px;
}

.purchase-cart-item {
  grid-template-columns: 34px minmax(0, 1fr) auto 28px;
  min-height: 58px;
  border-radius: 18px;
  padding: 8px;
}

.purchase-cart-item .purchase-product-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  font-size: 11px;
}

.purchase-cart-item strong {
  font-size: 12.8px;
}

.purchase-cart-item small {
  font-size: 11px;
}

.purchase-cart-price {
  font-size: 12.5px;
}

.purchase-summary {
  gap: 10px;
  padding-top: 12px;
}

.purchase-summary strong {
  font-size: 16px;
}

.purchase-continue {
  min-height: 44px;
  font-size: 13px;
}

.purchase-helper {
  min-height: 0;
  font-size: 12px;
}

.purchase-policy-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  margin: -2px 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  color: rgba(17, 17, 17, 0.5);
  font-size: 11.5px;
  line-height: 1.35;
  padding-top: 12px;
}

.purchase-policy-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.purchase-policy-note span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #edff66;
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08);
}

@media (max-width: 720px) {
  .purchase-flow {
    grid-template-columns: 1fr;
  }

  .purchase-product-list {
    max-height: 214px;
  }

  .purchase-product-plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .purchase-product-plans button {
    min-height: 32px;
    flex-direction: column;
    gap: 0;
    font-size: 10.8px;
  }

  .purchase-cart-list {
    max-height: 110px;
  }

  .purchase-policy-note {
    justify-content: flex-start;
    gap: 7px 10px;
  }

  .purchase-policy-note span {
    white-space: normal;
  }
}

/* Purchase cart builder: plan first, workspace second, then explicit cart add. */
.purchase-dialog {
  width: min(100%, 960px);
  max-height: min(92dvh, 740px);
  padding: clamp(18px, 2.4vw, 30px);
}

.purchase-dialog-top {
  align-items: flex-start;
  gap: 20px;
}

.purchase-dialog-top p:not(.purchase-eyebrow) {
  max-width: 500px;
  color: rgba(17, 17, 17, 0.54);
}

.purchase-flow {
  grid-template-columns: minmax(0, 1fr) minmax(292px, 330px);
  gap: 18px;
  align-items: stretch;
}

.purchase-picker,
.purchase-cart-panel {
  padding: 16px;
  border-radius: 26px;
}

.purchase-picker {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.52);
}

.purchase-step-block {
  display: grid;
  gap: 8px;
}

.purchase-step-label,
.purchase-search span {
  color: rgba(17, 17, 17, 0.42);
  font-size: 10.5px;
  font-weight: 680;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.purchase-plan-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.purchase-plan-picker button {
  min-height: 56px;
  display: grid;
  align-content: center;
  gap: 3px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  color: rgba(17, 17, 17, 0.62);
  font: inherit;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.purchase-plan-picker button span {
  font-size: 12.5px;
  font-weight: 680;
}

.purchase-plan-picker button strong {
  color: rgba(17, 17, 17, 0.48);
  font-size: 12px;
  font-weight: 580;
}

.purchase-plan-picker button:hover,
.purchase-plan-picker button:focus-visible {
  color: #111111;
  background: rgba(255, 255, 255, 0.86);
  outline: none;
  transform: translateY(-1px);
}

.purchase-plan-picker button.is-selected {
  border-color: rgba(17, 17, 17, 0.16);
  background: #edff66;
  color: #111111;
}

.purchase-plan-picker button.is-selected strong {
  color: rgba(17, 17, 17, 0.68);
}

.purchase-search {
  gap: 8px;
}

.purchase-search input {
  min-height: 42px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.72);
}

.purchase-product-list {
  max-height: 214px;
  gap: 8px;
  padding-right: 2px;
}

.purchase-product-option {
  grid-template-columns: 38px minmax(0, 1fr) auto;
  min-height: 62px;
  gap: 11px;
  border-radius: 18px;
  padding: 10px 11px;
  background: rgba(255, 255, 255, 0.48);
}

.purchase-product-option:hover,
.purchase-product-option:focus-visible {
  transform: none;
}

.purchase-product-option.is-selected {
  border-color: rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.88);
}

.purchase-product-option strong {
  font-size: 13.5px;
}

.purchase-product-option small {
  font-size: 11.5px;
}

.purchase-product-check {
  min-width: 64px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.045);
  color: rgba(17, 17, 17, 0.46);
}

.purchase-product-option.is-selected .purchase-product-check {
  background: #222222;
  color: #ffffff;
}

.purchase-add-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  padding-top: 14px;
}

.purchase-add-bar span {
  min-width: 0;
  overflow: hidden;
  color: rgba(17, 17, 17, 0.62);
  font-size: 12.5px;
  font-weight: 610;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.purchase-add-bar button {
  min-height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: #222222;
  color: #ffffff;
  font: inherit;
  font-size: 12.5px;
  font-weight: 680;
  padding: 0 18px;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(17, 18, 20, 0.12);
}

.purchase-add-bar button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.purchase-cart-panel {
  grid-template-rows: auto minmax(120px, 1fr) auto auto;
}

.purchase-cart-list {
  max-height: 260px;
  gap: 8px;
}

.purchase-cart-item {
  min-height: 62px;
  background: rgba(255, 255, 255, 0.56);
}

.purchase-policy-note {
  justify-content: flex-start;
  padding-inline: 4px;
}

@media (max-width: 720px) {
  .purchase-dialog {
    max-height: min(92dvh, 780px);
    padding: 18px;
  }

  .purchase-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .purchase-picker,
  .purchase-cart-panel {
    padding: 12px;
  }

  .purchase-plan-picker {
    gap: 6px;
  }

  .purchase-plan-picker button {
    min-height: 50px;
    border-radius: 16px;
    padding: 8px 9px;
  }

  .purchase-plan-picker button span {
    font-size: 11.5px;
  }

  .purchase-plan-picker button strong {
    font-size: 10.8px;
  }

  .purchase-product-list {
    max-height: 168px;
  }

  .purchase-product-option {
    min-height: 56px;
  }

  .purchase-add-bar {
    grid-template-columns: 1fr;
  }

  .purchase-add-bar button {
    width: 100%;
  }

  .purchase-cart-list {
    max-height: 132px;
  }
}

/* Launch readiness: purchase trust row and real waitlist footer. */
.purchase-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: -4px;
}

.purchase-trust-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.58);
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.012em;
  text-align: center;
  padding: 0 10px;
}

.purchase-policy-note {
  margin: -8px 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  color: rgba(17, 17, 17, 0.46);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.012em;
  padding-top: 12px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 88px);
}

.footer-brand-block {
  align-self: start;
  position: sticky;
  top: 96px;
}

.waitlist-card {
  display: grid;
  gap: 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 10%, rgba(237, 255, 102, 0.24), transparent 26%),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    0 32px 90px rgba(17, 18, 20, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  padding: clamp(22px, 3vw, 34px);
}

.waitlist-card h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.06em;
}

.waitlist-card p:not(.purchase-eyebrow) {
  max-width: 610px;
  margin: 12px 0 0;
  color: #757575;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.012em;
}

.waitlist-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 10px;
}

.waitlist-fields label {
  display: grid;
  gap: 7px;
}

.waitlist-fields label:nth-child(3) {
  grid-column: 1 / -1;
}

.waitlist-fields span {
  color: rgba(17, 17, 17, 0.46);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.waitlist-fields input,
.waitlist-fields select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: #111111;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(17, 18, 20, 0.045);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.012em;
  outline: none;
  padding: 0 16px;
}

.waitlist-fields button {
  min-height: 48px;
  align-self: end;
  border: 1px solid #222222;
  border-radius: 999px;
  color: #ffffff;
  background: #222222;
  box-shadow: 0 18px 34px rgba(17, 18, 20, 0.14);
  font: inherit;
  font-size: 14px;
  font-weight: 560;
  letter-spacing: -0.012em;
  cursor: pointer;
  padding: 0 22px;
  transition:
    min-width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
}

.waitlist-fields button:hover,
.waitlist-fields button:focus-visible {
  min-width: 152px;
  box-shadow: 0 20px 38px rgba(17, 18, 20, 0.17);
}

.waitlist-status {
  min-height: 20px;
  margin: 0 !important;
  color: rgba(17, 17, 17, 0.5) !important;
  font-size: 13px !important;
}

.waitlist-card.is-saved .waitlist-status {
  color: #087c5a !important;
}

.footer-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.58);
  background: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.012em;
  padding: 0 13px;
}

@media (max-width: 980px) {
  .purchase-trust-row,
  .waitlist-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-brand-block {
    position: static;
  }

  .footer-links {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  .purchase-trust-row,
  .waitlist-fields {
    grid-template-columns: 1fr;
  }

  .purchase-dialog {
    overflow-y: auto;
  }

  .purchase-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purchase-trust-row span {
    min-height: 32px;
    justify-content: center;
    font-size: 11.5px;
  }

  .purchase-product-list {
    grid-template-columns: 1fr;
    max-height: 136px;
  }

  .waitlist-card {
    border-radius: 28px;
  }

  .waitlist-card h2 {
    font-size: 38px;
  }

  .waitlist-fields label:nth-child(3) {
    grid-column: auto;
  }

  .waitlist-fields button {
    width: 100%;
  }
}

/* Product detail pages: lightweight trust footer for direct-entry visitors. */
.product-footer {
  width: min(100% - 44px, 1340px);
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 64px);
  margin: 0 auto;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 30px 0 46px;
}

/* Workspace catalog page. */
.workspace-catalog-page {
  width: min(100% - 44px, 1340px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0 56px;
}

.catalog-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  margin: 0 auto clamp(28px, 4vw, 46px);
}

.catalog-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #111111;
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.074em;
}

.catalog-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: #757575;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 22px 60px rgba(17, 18, 20, 0.055);
  padding: 14px;
}

.catalog-search {
  display: grid;
  gap: 8px;
}

.catalog-search span {
  color: rgba(17, 17, 17, 0.48);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.catalog-search input {
  min-height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: #111111;
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 15px;
  outline: none;
  padding: 0 18px;
}

.catalog-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  padding: 5px;
}

.catalog-filter-group button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.58);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 560;
  letter-spacing: -0.012em;
  cursor: pointer;
  padding: 0 14px;
}

.catalog-filter-group button.is-selected {
  color: #111111;
  background: #edff66;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.catalog-card,
.catalog-empty {
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 255, 102, 0.2), transparent 30%),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 28px 78px rgba(17, 18, 20, 0.065);
  padding: 22px;
}

.catalog-card[data-card-href] {
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.catalog-card[data-card-href]:hover {
  border-color: rgba(17, 17, 17, 0.13);
  box-shadow: 0 34px 88px rgba(17, 18, 20, 0.09);
  transform: translateY(-3px);
}

.catalog-card[data-card-href]:focus-visible {
  outline: 3px solid rgba(17, 17, 17, 0.16);
  outline-offset: 4px;
}

.catalog-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-card h2 {
  margin: 4px 0 0;
  color: #111111;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.058em;
}

.catalog-card p,
.catalog-empty p {
  margin: 0;
  color: #757575;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.012em;
}

.catalog-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.catalog-empty {
  grid-column: 1 / -1;
  min-height: 160px;
}

.catalog-empty strong {
  color: #111111;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

@media (max-width: 980px) {
  .catalog-tools,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-filter-group {
    justify-content: stretch;
  }

  .catalog-filter-group button {
    flex: 1 1 auto;
  }
}

@media (max-width: 720px) {
  .workspace-catalog-page {
    width: min(100% - 28px, 1340px);
    padding-top: 92px;
  }

  .catalog-hero h1 {
    font-size: 48px;
  }

  .catalog-tools {
    border-radius: 24px;
    padding: 12px;
  }

  .catalog-card,
  .catalog-empty {
    border-radius: 24px;
    padding: 18px;
  }
}

.product-footer strong {
  color: #111111;
  font-size: 17px;
  font-weight: 560;
  letter-spacing: -0.032em;
}

.product-footer p {
  max-width: 520px;
  margin: 7px 0 0;
  color: rgba(17, 17, 17, 0.46);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.012em;
}

.product-footer .footer-links {
  grid-column: auto;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .product-footer {
    grid-template-columns: 1fr;
  }

  .product-footer .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .product-footer {
    width: min(100% - 32px, 1340px);
    padding-bottom: 38px;
  }
}

/* Core product landing shell: reusable across every niche page. */
.product-detail-page {
  min-height: 100vh;
  color: #111111;
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 20% 8%, rgba(196, 210, 255, 0.24), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(255, 235, 245, 0.42), transparent 30%),
    #f7f7f4;
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

.product-detail-main {
  width: min(100% - 44px, 1380px);
  margin: 0 auto;
  padding: clamp(104px, 10vw, 150px) 0 clamp(70px, 8vw, 120px);
}

.product-detail-hero,
.product-detail-split,
.product-detail-data {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 6vw, 92px);
}

.product-detail-copy {
  display: grid;
  align-content: center;
  gap: 20px;
}

.product-detail-eyebrow {
  width: fit-content;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.62);
  background: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0 13px;
}

.product-detail-copy h1,
.product-detail-section h2 {
  max-width: 850px;
  margin: 0;
  color: #111111;
  font-weight: 500;
  letter-spacing: -0.066em;
}

.product-detail-copy h1 {
  max-width: 780px;
  font-size: clamp(48px, 5.6vw, 82px);
  line-height: 0.96;
}

.product-detail-section h2 {
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 0.96;
}

.product-detail-lead,
.product-detail-section > p,
.product-detail-section-head p:not(.product-detail-eyebrow),
.product-detail-note,
.product-detail-faq-list p {
  max-width: 720px;
  margin: 0;
  color: #6f6f6f;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.024em;
}

.product-detail-actions,
.product-detail-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.product-detail-sample-note {
  max-width: 520px;
  margin: -8px 0 0;
  color: rgba(17, 17, 17, 0.56);
  font-size: 13px;
  font-weight: 450;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.product-detail-primary,
.product-detail-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.014em;
  text-decoration: none;
  padding: 0 22px;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.product-detail-primary {
  color: #ffffff;
  background: #222222;
  box-shadow: 0 18px 44px rgba(17, 18, 20, 0.18);
}

.product-detail-primary:hover,
.product-detail-primary:focus-visible {
  transform: scaleX(1.045);
  box-shadow: 0 24px 54px rgba(17, 18, 20, 0.2);
}

.product-detail-secondary {
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #edff66;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.product-detail-secondary:hover,
.product-detail-secondary:focus-visible {
  color: #ffffff;
  background: #222222;
  transform: translateY(-1px);
}

.product-detail-trust span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.58);
  background: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.012em;
  padding: 0 12px;
}

.product-detail-visual {
  position: relative;
  min-width: 0;
}

.product-detail-demo-visual {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.product-detail-demo-visual::after {
  content: "View demo";
  position: absolute;
  right: clamp(18px, 3vw, 44px);
  top: clamp(16px, 2.4vw, 34px);
  z-index: 3;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(17, 18, 20, 0.09);
  color: #111111;
  font-size: 12.5px;
  font-weight: 560;
  letter-spacing: -0.014em;
  padding: 0 14px;
  opacity: 0.92;
  pointer-events: none;
  transition:
    background 220ms ease,
    color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.product-detail-demo-visual:hover::after,
.product-detail-demo-visual:focus-visible::after {
  background: #222222;
  color: #ffffff;
  opacity: 1;
  transform: translateY(-2px);
}

.product-detail-demo-visual:focus-visible {
  outline: 3px solid rgba(17, 17, 17, 0.16);
  outline-offset: 6px;
  border-radius: 36px;
}

.demo-preview-page {
  min-height: 100vh;
  overflow-x: hidden;
  color: #111111;
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 22% 12%, rgba(196, 210, 255, 0.24), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(255, 235, 245, 0.42), transparent 30%),
    #f8f8f5;
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
  user-select: none;
}

.demo-preview-main {
  width: min(100% - 44px, 1260px);
  margin: 0 auto;
  padding: clamp(112px, 11vw, 154px) 0 clamp(58px, 8vw, 96px);
}

.demo-preview-hero {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.demo-preview-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #111111;
  font-size: clamp(42px, 5.3vw, 76px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.062em;
}

.demo-preview-hero p:not(.product-detail-eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.024em;
}

.demo-preview-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.demo-preview-pills span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.58);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: -0.01em;
  padding: 0 12px;
}

.demo-preview-period {
  width: min(100%, 920px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin: clamp(30px, 4vw, 48px) auto 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 64px rgba(25, 28, 35, 0.08);
  padding: 18px 20px;
}

.demo-preview-period div {
  min-width: 154px;
  display: grid;
  gap: 3px;
}

.demo-preview-period span {
  color: rgba(17, 17, 17, 0.48);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-preview-period strong {
  color: #111111;
  font-size: 24px;
  font-weight: 560;
  letter-spacing: -0.042em;
}

.demo-preview-period p {
  max-width: 640px;
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.014em;
}

.demo-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(24px, 5vw, 56px);
}

.demo-preview-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: clamp(26px, 5vw, 58px);
}

.demo-preview-sidebar,
.demo-preview-stage {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 32px 80px rgba(25, 28, 35, 0.1);
}

.demo-preview-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
}

.demo-preview-sidebar-head {
  display: grid;
  gap: 4px;
  padding: 8px 8px 14px;
}

.demo-preview-sidebar-head span,
.demo-preview-toolbar span,
.demo-preview-readout span {
  color: rgba(17, 17, 17, 0.48);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-preview-sidebar-head strong {
  color: #111111;
  font-size: 18px;
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.034em;
}

.demo-preview-sidebar button {
  display: grid;
  gap: 4px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 18px;
  color: rgba(17, 17, 17, 0.62);
  background: transparent;
  text-align: left;
  cursor: pointer;
  padding: 13px 14px;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.demo-preview-sidebar button:hover,
.demo-preview-sidebar button:focus-visible,
.demo-preview-sidebar button.is-active {
  border-color: rgba(17, 17, 17, 0.08);
  color: #111111;
  background: rgba(247, 247, 244, 0.92);
}

.demo-preview-sidebar button.is-active {
  transform: translateX(3px);
}

.demo-preview-sidebar button span {
  font-size: 15px;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.demo-preview-sidebar button small {
  color: rgba(17, 17, 17, 0.5);
  font-size: 12px;
  font-weight: 450;
  letter-spacing: -0.01em;
}

.demo-preview-stage {
  min-width: 0;
  overflow: hidden;
}

.demo-preview-toolbar {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  padding: 16px 18px;
}

.demo-preview-toolbar div {
  display: grid;
  gap: 4px;
}

.demo-preview-toolbar strong {
  color: #111111;
  font-size: 18px;
  font-weight: 560;
  letter-spacing: -0.032em;
}

.demo-preview-toolbar button {
  min-height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.5);
  background: rgba(247, 247, 244, 0.86);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: -0.01em;
  padding: 0 14px;
}

.demo-preview-panel {
  animation: demoPanelIn 260ms ease both;
}

.demo-preview-panel[hidden] {
  display: none;
}

.demo-preview-panel .demo-preview-image {
  border-radius: 0;
}

.demo-preview-readout {
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.5);
  padding: 16px 18px 18px;
}

.demo-preview-readout strong {
  max-width: 760px;
  color: rgba(17, 17, 17, 0.7);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.018em;
}

@keyframes demoPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.demo-preview-screen {
  min-width: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 32px 80px rgba(25, 28, 35, 0.1);
  overflow: hidden;
}

.demo-preview-screen.is-large {
  grid-row: span 2;
}

.demo-preview-screen-head {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.demo-preview-screen-head span {
  color: rgba(17, 17, 17, 0.54);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-preview-screen-head strong {
  color: #111111;
  font-size: 15px;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.demo-preview-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef0f5;
}

.demo-preview-screen.is-large .demo-preview-image {
  aspect-ratio: 16 / 12.5;
}

.demo-preview-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
  -webkit-user-drag: none;
}

.demo-preview-image::before {
  content: attr(data-watermark);
  position: absolute;
  inset: 16px auto auto 16px;
  z-index: 2;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.58);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 8px 11px;
}

.demo-preview-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -24deg,
      transparent 0 56px,
      rgba(255, 255, 255, 0.16) 56px 82px
    ),
    linear-gradient(180deg, transparent 72%, rgba(248, 248, 245, 0.7));
  mix-blend-mode: screen;
}

.demo-preview-lock-card {
  min-height: 230px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 34px;
  text-align: center;
}

.demo-preview-lock-card strong {
  color: #111111;
  font-size: 22px;
  font-weight: 560;
  letter-spacing: -0.04em;
}

.demo-preview-lock-card p {
  max-width: 440px;
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 14px;
  line-height: 1.48;
  letter-spacing: -0.014em;
}

@media (max-width: 820px) {
  .demo-preview-shell {
    grid-template-columns: 1fr;
  }

  .demo-preview-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .demo-preview-sidebar-head {
    grid-column: 1 / -1;
  }

  .demo-preview-grid {
    grid-template-columns: 1fr;
  }

  .demo-preview-screen.is-large {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .demo-preview-main {
    width: min(100% - 28px, 1260px);
  }

  .demo-preview-period {
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 22px;
  }

  .demo-preview-screen {
    border-radius: 22px;
  }

  .demo-preview-screen-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-preview-sidebar {
    grid-template-columns: 1fr;
  }

  .demo-preview-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

.product-detail-window {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 36px 100px rgba(17, 18, 20, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transform: rotate(-1.2deg);
}

.product-detail-window-top {
  display: grid;
  grid-template-columns: 8px 8px 8px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  padding: 14px 18px;
}

.product-detail-window-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.16);
}

.product-detail-window-top strong {
  justify-self: end;
  overflow: hidden;
  color: rgba(17, 17, 17, 0.52);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.012em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-detail-window img {
  width: 100%;
  aspect-ratio: 1.54;
  display: block;
  object-fit: cover;
  object-position: left top;
}

.product-detail-mini-card {
  position: absolute;
  right: clamp(16px, 3vw, 44px);
  bottom: clamp(-32px, -3vw, -20px);
  max-width: 280px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(17, 18, 20, 0.12);
  backdrop-filter: blur(18px);
  padding: 18px;
}

.product-detail-mini-card span,
.product-detail-data-grid span,
.product-detail-workflows span {
  color: rgba(17, 17, 17, 0.46);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-detail-mini-card strong {
  color: #111111;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.034em;
}

.product-detail-section {
  padding-top: clamp(82px, 10vw, 150px);
}

.product-detail-section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.product-detail-card-grid,
.product-detail-workflows,
.product-detail-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-detail-card-grid article,
.product-detail-workflows article,
.product-detail-data-grid article,
.product-detail-faq-list details {
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 255, 102, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 64px rgba(17, 18, 20, 0.06);
  padding: 22px;
}

.product-detail-card-grid h3,
.product-detail-workflows h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.product-detail-card-grid p,
.product-detail-workflows p {
  margin: 12px 0 0;
  color: #757575;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.012em;
}

.product-detail-workflows article {
  display: grid;
  gap: 12px;
  min-height: 210px;
}

.product-detail-data-grid article {
  min-height: 150px;
  display: grid;
  align-content: space-between;
}

.product-detail-data-grid strong {
  color: #111111;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.048em;
}

.product-detail-price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 12%, rgba(237, 255, 102, 0.55), transparent 30%),
    radial-gradient(circle at 12% 100%, rgba(196, 210, 255, 0.3), transparent 34%),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 34px 94px rgba(17, 18, 20, 0.08);
  padding: clamp(24px, 4vw, 42px);
}

.product-detail-price-card h2 {
  font-size: clamp(38px, 5vw, 72px);
}

.product-detail-price-card p {
  max-width: 640px;
  margin: 16px 0 0;
  color: #6f6f6f;
  font-size: 16px;
  line-height: 1.48;
}

.product-detail-price {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.product-detail-price strong {
  color: #111111;
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.064em;
}

.product-detail-price strong span {
  margin-right: 0.12em;
  font-size: 0.66em;
}

.product-detail-price small,
.product-detail-note {
  color: rgba(17, 17, 17, 0.48);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.product-detail-pricing .product-detail-note {
  max-width: 780px;
  margin: 18px auto 0;
  text-align: center;
}

.product-detail-faq-list {
  display: grid;
  gap: 10px;
}

.product-detail-faq-list details {
  padding: 0;
}

.product-detail-faq-list summary {
  cursor: pointer;
  color: #111111;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.024em;
  list-style: none;
  padding: 20px 22px;
}

.product-detail-faq-list summary::-webkit-details-marker {
  display: none;
}

.product-detail-faq-list p {
  padding: 0 22px 22px;
}

@media (max-width: 1020px) {
  .product-detail-hero,
  .product-detail-split,
  .product-detail-data,
  .product-detail-price-card {
    grid-template-columns: 1fr;
  }

  .product-detail-card-grid,
  .product-detail-workflows,
  .product-detail-data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-price {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .product-detail-main {
    width: min(100% - 28px, 1380px);
    padding-top: 92px;
  }

  .product-detail-copy h1 {
    font-size: 44px;
  }

  .product-detail-section h2,
  .product-detail-price-card h2 {
    font-size: 38px;
  }

  .product-detail-card-grid,
  .product-detail-workflows,
  .product-detail-data-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-mini-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .product-detail-window {
    border-radius: 26px;
    transform: none;
  }
}

/* Hero device rig correction: preserve the original one-device step transition. */
.assemble-hero .workspace-surface.hero-device-rig {
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: translate3d(-50%, -50%, 0) rotateX(0) rotateY(0) scale(1);
  transform-origin: 50% 50%;
  transition: filter 420ms ease;
  will-change: auto;
}

.assemble-hero .workspace-surface.hero-device-rig::before {
  display: none;
}

.assemble-hero[data-step="2"] .workspace-surface.hero-device-rig {
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate3d(-50%, -50%, 0) rotateX(0) rotateY(0) scale(1);
}

.assemble-hero[data-step="3"] .workspace-surface.hero-device-rig {
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate3d(-50%, -50%, 0) rotateX(0) rotateY(0) scale(1);
}

.assemble-hero .hero-device,
.assemble-hero .hero-device-desktop,
.assemble-hero .hero-device-tablet,
.assemble-hero .hero-device-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--hero-device-width);
  height: var(--hero-device-height);
  margin: 0;
  opacity: 0;
  aspect-ratio: auto;
  transform: translate3d(-50%, -50%, 0) scale(0.96);
  transform-origin: 50% 50%;
  transition:
    opacity 420ms ease,
    transform 1040ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
  contain: layout paint;
  line-height: 0;
}

.assemble-hero .hero-device-desktop {
  --hero-device-width: min(1283px, 96vw, 94svh);
  --hero-device-height: min(850px, 61svh);
  top: calc(50% - 28px);
  opacity: 1;
  filter: drop-shadow(0 42px 64px rgba(17, 18, 20, 0.15));
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.assemble-hero .hero-device-tablet {
  --hero-device-width: min(552px, 44vw, 43svh);
  --hero-device-height: min(775px, 60svh);
  top: calc(50% - 25px);
  filter: drop-shadow(0 34px 52px rgba(17, 18, 20, 0.14));
}

.assemble-hero .hero-device-phone {
  --hero-device-width: min(270px, 34vw, 27svh);
  --hero-device-height: min(552px, 56svh);
  top: calc(50% - 16px);
  filter: drop-shadow(0 30px 42px rgba(17, 18, 20, 0.15));
}

@media (min-width: 1360px) and (max-height: 1120px) {
  .assemble-hero .hero-device-desktop {
    --hero-device-width: min(1160px, 84svh);
    --hero-device-height: min(680px, 52svh);
    top: calc(50% - 70px);
  }

  .assemble-hero .hero-device-screen-desktop {
    --hero-screen-scale: 0.66;
  }
}

@media (min-width: 1360px) and (max-height: 850px) {
  .assemble-hero .hero-device-desktop {
    --hero-device-width: min(1000px, 79svh);
    --hero-device-height: min(680px, 50svh);
  }

  .assemble-hero .hero-device-tablet {
    --hero-device-width: min(500px, 40svh);
    --hero-device-height: min(720px, 56svh);
  }

  .assemble-hero .hero-device-phone {
    --hero-device-width: min(250px, 26svh);
    --hero-device-height: min(520px, 52svh);
  }
}

@media (min-width: 981px) and (max-width: 1359px),
  (min-width: 981px) and (max-height: 859px) {
  .assemble-hero {
    min-height: auto;
  }

  .assemble-hero .motion-hero-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 34px;
    overflow: visible;
    padding: 48px 0 72px;
  }

  .assemble-hero .motion-stage {
    order: -1;
    height: 560px;
    min-height: 560px;
  }

  .assemble-hero .motion-fragments {
    display: none;
  }

  .assemble-hero .motion-copy {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .assemble-hero .motion-copy-card,
  .assemble-hero .motion-copy-card.is-active {
    position: absolute;
    inset: 0 0 auto;
    left: 0;
    width: min(760px, 100%);
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .assemble-hero .motion-copy-card:not(:first-child) {
    padding-top: 18px;
    border-top: 1px solid rgba(132, 143, 160, 0.17);
  }

  .assemble-hero .motion-copy-card:not(:first-child) h1 {
    font-size: clamp(34px, 6vw, 54px);
  }

  .assemble-hero .motion-actions {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -2px auto 0;
  }

  .assemble-hero .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="2"] .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="3"] .workspace-surface.hero-device-rig {
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate3d(-50%, -50%, 0);
  }

  .assemble-hero .hero-device-desktop {
    --hero-device-width: min(760px, 88vw);
    --hero-device-height: min(504px, 58vw);
    top: 50%;
  }

  .assemble-hero .hero-device-tablet {
    --hero-device-width: min(410px, 54vw);
    --hero-device-height: min(590px, 54svh);
  }

  .assemble-hero .hero-device-phone {
    --hero-device-width: min(220px, 34vw);
    --hero-device-height: min(450px, 54svh);
  }

  .assemble-hero .hero-device-screen-desktop {
    --hero-screen-scale: 0.72;
  }

  .assemble-hero .hero-device-screen-tablet {
    --hero-screen-scale: 0.86;
  }

  .assemble-hero .hero-device-screen-phone {
    --hero-screen-scale: 0.92;
  }
}

.assemble-hero[data-step="2"] .hero-device-desktop,
.assemble-hero[data-step="3"] .hero-device-desktop,
.assemble-hero[data-step="3"] .hero-device-tablet {
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.96);
  transition-duration: 150ms, 1040ms;
  transition-timing-function: ease-out, cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0ms, 0ms;
}

.assemble-hero[data-step="2"] .hero-device-tablet,
.assemble-hero[data-step="3"] .hero-device-phone {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transition-duration: 460ms, 1040ms;
  transition-delay: 210ms, 0ms;
}

.assemble-hero .hero-device-bezel {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: contain;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.assemble-hero .hero-device-screen {
  --hero-screen-scale: 1;
  display: none;
  z-index: 0;
  background: transparent;
  box-shadow: none;
}

.assemble-hero .hero-device-screen > * {
  display: none;
}

.assemble-hero .hero-device-screen-desktop {
  position: absolute;
  left: 10.18%;
  top: 10.98%;
  width: 79.6%;
  height: 78.1%;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #eef1f6;
  pointer-events: none;
  transform: translateZ(0);
}

.assemble-hero .hero-device-screen-desktop > * {
  display: grid;
}

.assemble-hero .hero-device-screen-tablet {
  position: absolute;
  left: 5.55%;
  top: 3.9%;
  width: 88.9%;
  height: 92.25%;
  display: block;
  overflow: hidden;
  border-radius: 34px;
  background: #eef1f6;
  pointer-events: none;
  transform: translateZ(0);
}

.assemble-hero .hero-device-screen-tablet > * {
  display: grid;
}

.assemble-hero .hero-device-screen-phone {
  position: absolute;
  left: 5.45%;
  top: 2.85%;
  width: 89.1%;
  height: 94.4%;
  display: block;
  overflow: hidden;
  border-radius: 31px;
  background: #eef1f6;
  pointer-events: none;
  transform: translateZ(0);
}

.assemble-hero .hero-device-screen-phone > * {
  display: grid;
}

.assemble-hero .hero-device-screen > .hero-app-screen {
  width: calc(100% / var(--hero-screen-scale));
  height: calc(100% / var(--hero-screen-scale));
  transform: scale(var(--hero-screen-scale));
  transform-origin: 0 0;
}

.hero-app-screen,
.hero-app-screen * {
  box-sizing: border-box;
}

.hero-app-screen {
  width: 100%;
  height: 100%;
  color: #070b14;
  background:
    radial-gradient(circle at 18% 6%, rgba(139, 160, 238, 0.18), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(245, 158, 11, 0.12), transparent 28%),
    linear-gradient(135deg, #eef2fa 0%, #f6f3f7 46%, #eef1f6 100%);
  font-family: var(--owmii-body-font);
  line-height: 1.2;
  overflow: hidden;
}

.hero-app-desktop {
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.hero-app-sidebar {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  padding: 15px;
  border: 1px solid rgba(52, 64, 84, 0.12);
  border-radius: 22px;
  background: rgba(247, 249, 253, 0.74);
  box-shadow: 0 18px 42px rgba(31, 41, 55, 0.09);
  backdrop-filter: blur(16px);
}

.hero-app-brand {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.hero-app-brand span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 13px;
  color: #07101e;
  background: linear-gradient(135deg, #a6b8ff, #edf0ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 760;
}

.hero-app-brand strong {
  min-width: 0;
  overflow: hidden;
  color: #070b14;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-app-nav {
  display: grid;
  gap: 5px;
  align-content: start;
}

.hero-app-nav span {
  display: flex;
  align-items: center;
  min-height: 31px;
  padding: 0 10px;
  border-radius: 13px;
  color: #697281;
  font-size: 11px;
  font-weight: 640;
  letter-spacing: 0;
}

.hero-app-nav span.is-active {
  color: #070b14;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.08);
}

.hero-app-sync {
  display: grid;
  gap: 4px;
  padding: 11px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-app-sync small,
.hero-app-kpis small,
.hero-tablet-summary small,
.hero-phone-metrics small {
  color: #697281;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-app-sync strong {
  color: #079669;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-app-main {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 13px;
}

.hero-app-topbar {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.46fr) 112px;
  gap: 12px;
  align-items: center;
}

.hero-app-topbar p,
.hero-tablet-main header p,
.hero-app-phone header p {
  margin: 0 0 4px;
  color: #7b8493;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-app-topbar h3,
.hero-tablet-main header h3,
.hero-app-phone header h3 {
  margin: 0;
  color: #070b14;
  font-weight: 780;
  letter-spacing: 0;
}

.hero-app-topbar h3 {
  font-size: 31px;
  line-height: 1;
}

.hero-app-topbar span,
.hero-tablet-main header span,
.hero-app-phone header span {
  display: block;
  margin-top: 5px;
  color: #697281;
  font-size: 12px;
  font-weight: 470;
  letter-spacing: 0;
}

.hero-app-search,
.hero-app-topbar button {
  height: 34px;
  border: 0;
  border-radius: 999px;
  font: inherit;
}

.hero-app-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 14px;
  color: #9aa3b1;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 26px rgba(31, 41, 55, 0.07);
  font-size: 11px;
  white-space: nowrap;
}

.hero-app-topbar button {
  color: #070b14;
  background: rgba(255, 245, 237, 0.94);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.09);
  font-size: 11px;
  font-weight: 760;
}

.hero-app-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}

.hero-app-kpis article,
.hero-app-panel {
  border: 1px solid rgba(52, 64, 84, 0.1);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(31, 41, 55, 0.075);
}

.hero-app-kpis article {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 13px;
}

.hero-app-kpis strong {
  color: #070b14;
  font-size: 22px;
  font-weight: 780;
  letter-spacing: 0;
}

.hero-app-kpis article:nth-child(3) strong {
  color: #f59e0b;
}

.hero-app-kpis article span {
  color: #697281;
  font-size: 10px;
  font-weight: 520;
  letter-spacing: 0;
}

.hero-app-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-rows: minmax(0, 1fr) 152px;
  gap: 13px;
}

.hero-app-panel {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 15px;
}

.hero-app-records {
  grid-row: 1 / 3;
}

.hero-app-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(52, 64, 84, 0.1);
}

.hero-app-panel-head h4 {
  margin: 0;
  color: #070b14;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-app-panel-head p {
  max-width: 310px;
  margin: 4px 0 0;
  color: #697281;
  font-size: 10.5px;
  font-weight: 460;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-app-panel-head > span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  color: #079669;
  background: rgba(7, 150, 105, 0.11);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-app-gap-list {
  display: grid;
  gap: 9px;
  padding-top: 12px;
}

.hero-app-gap-list > div {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr) 42px;
  gap: 6px 10px;
  align-items: center;
  min-height: 66px;
  padding: 10px;
  border: 1px solid rgba(52, 64, 84, 0.08);
  border-radius: 15px;
  background: rgba(248, 250, 253, 0.62);
}

.hero-app-gap-list strong {
  color: #070b14;
  font-size: 11.5px;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-app-gap-list em {
  justify-self: end;
  padding: 4px 7px;
  border-radius: 999px;
  color: #079669;
  background: rgba(7, 150, 105, 0.1);
  font-size: 9.5px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-app-gap-list small {
  grid-column: 2 / 4;
  overflow: hidden;
  color: #079669;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-gap-bar {
  display: grid;
  grid-template-columns: 0.9fr 0.42fr 0.74fr 0.54fr 0.72fr;
  gap: 3px;
  height: 10px;
  padding: 1px;
  border: 1px solid rgba(52, 64, 84, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.hero-gap-bar b {
  display: block;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(77, 124, 254, 0.34), rgba(216, 93, 140, 0.26), rgba(245, 158, 11, 0.18));
}

.hero-gap-bar b:nth-child(2),
.hero-gap-bar b:nth-child(4) {
  background: linear-gradient(135deg, rgba(77, 124, 254, 0.2), rgba(216, 93, 140, 0.18), rgba(245, 158, 11, 0.12));
}

.hero-gap-bar.is-busy {
  grid-template-columns: 1.14fr 0.32fr 0.96fr 0.28fr 0.84fr;
}

.hero-gap-bar.is-light {
  grid-template-columns: 0.48fr 0.7fr 0.38fr 0.8fr 0.42fr;
}

.hero-app-timeline-list {
  display: grid;
  gap: 8px;
  padding-top: 12px;
}

.hero-app-timeline-list span {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  color: #070b14;
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0;
}

.hero-app-timeline-list b {
  color: #697281;
  font-size: 10px;
  font-weight: 720;
}

.hero-app-timeline-list em {
  padding: 4px 7px;
  border-radius: 999px;
  color: #697281;
  background: rgba(52, 64, 84, 0.07);
  font-size: 9px;
  font-style: normal;
  font-weight: 760;
}

.hero-app-report {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.hero-app-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  align-items: end;
  min-height: 0;
  padding: 14px 4px 0;
}

.hero-app-bars span {
  display: block;
  min-height: 26px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, rgba(127, 145, 207, 0.68), rgba(209, 154, 181, 0.54));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero-app-tablet {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  padding: 19px 15px;
}

.hero-tablet-rail {
  min-height: 0;
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: center;
  padding: 12px 6px;
  border: 1px solid rgba(52, 64, 84, 0.12);
  border-radius: 24px;
  background: rgba(247, 249, 253, 0.76);
  box-shadow: 0 18px 42px rgba(31, 41, 55, 0.09);
}

.hero-tablet-rail span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  color: #7b8493;
  background: rgba(52, 64, 84, 0.055);
  font-size: 0;
}

.hero-tablet-rail svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-tablet-rail span.is-active {
  color: #070b14;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(31, 41, 55, 0.08);
}

.hero-tablet-main {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 10px;
}

.hero-tablet-main header {
  grid-column: 1 / 3;
  min-width: 0;
}

.hero-tablet-main header h3 {
  font-size: 26px;
  line-height: 1;
}

.hero-tablet-days {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.hero-tablet-days span {
  display: grid;
  place-items: center;
  height: 30px;
  border: 1px solid rgba(52, 64, 84, 0.1);
  border-radius: 12px;
  color: #697281;
  background: rgba(255, 255, 255, 0.58);
  font-size: 9.5px;
  font-weight: 720;
}

.hero-tablet-days span.is-active {
  color: #070b14;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(31, 41, 55, 0.08);
}

.hero-tablet-board {
  grid-column: 1;
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: 7px;
  align-content: stretch;
  overflow: hidden;
}

.hero-tablet-board article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 2px 9px;
  min-height: 0;
  padding: 8px 10px;
  border: 1px solid rgba(52, 64, 84, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.07);
}

.hero-tablet-board small {
  grid-row: 1 / 3;
  align-self: center;
  color: #7b8493;
  font-size: 9.5px;
  font-weight: 760;
}

.hero-tablet-board strong {
  min-width: 0;
  overflow: hidden;
  color: #070b14;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-tablet-board span {
  min-width: 0;
  overflow: hidden;
  color: #697281;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-tablet-review {
  grid-column: 2;
  grid-row: 2 / 4;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(52, 64, 84, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.07);
}

.hero-tablet-tabs {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 4px;
}

.hero-tablet-tabs span {
  display: grid;
  place-items: center;
  min-height: 25px;
  overflow: hidden;
  border: 1px solid rgba(52, 64, 84, 0.08);
  border-radius: 999px;
  color: #697281;
  background: rgba(52, 64, 84, 0.035);
  font-size: 7.8px;
  font-weight: 760;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-tablet-tabs span.is-active {
  color: #070b14;
  background: rgba(255, 245, 237, 0.94);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.1);
}

.hero-tablet-review-list {
  min-height: 0;
  display: grid;
  grid-auto-rows: minmax(48px, max-content);
  gap: 6px;
  align-content: start;
  overflow: hidden;
}

.hero-tablet-review-list article {
  min-width: 0;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  gap: 2px 8px;
  min-height: 48px;
  padding: 7px 8px;
  border-radius: 14px;
  background: rgba(248, 250, 253, 0.66);
}

.hero-tablet-review-list strong {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  overflow: hidden;
  color: #070b14;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-tablet-review-list span {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  overflow: hidden;
  color: #697281;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-tablet-review-list em {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  min-width: 24px;
  width: 24px;
  height: 24px;
  padding: 4px 6px;
  border-radius: 999px;
  color: #079669;
  background: rgba(7, 150, 105, 0.1);
  font-size: 9px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0;
  text-align: center;
}

.hero-tablet-review-list em.warn {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
}

.hero-app-phone {
  position: relative;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  gap: 7px;
  padding: 40px 12px 10px;
}

.hero-app-phone header {
  min-width: 0;
}

.hero-app-phone header h3 {
  font-size: 25px;
  line-height: 1;
}

.hero-app-phone header span {
  max-width: 190px;
  font-size: 9.5px;
  line-height: 1.28;
}

.hero-phone-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.hero-phone-metrics article {
  min-height: 54px;
  display: grid;
  gap: 4px;
  align-content: center;
  padding: 10px;
  border: 1px solid rgba(52, 64, 84, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(31, 41, 55, 0.07);
}

.hero-phone-metrics strong {
  color: #070b14;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: 0;
}

.hero-phone-review-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.hero-phone-review-strip article {
  min-width: 0;
  min-height: 44px;
  display: grid;
  gap: 3px;
  align-content: center;
  padding: 8px 7px;
  border: 1px solid rgba(52, 64, 84, 0.08);
  border-radius: 14px;
  background: rgba(248, 250, 253, 0.7);
}

.hero-phone-review-strip small {
  min-width: 0;
  overflow: hidden;
  color: #697281;
  font-size: 7.8px;
  font-weight: 760;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-phone-review-strip strong {
  color: #070b14;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
}

.hero-phone-review-strip article:nth-child(2) strong {
  color: #f59e0b;
}

.hero-phone-review-strip article:nth-child(3) strong {
  color: #079669;
}

.hero-phone-list {
  min-height: 0;
  display: grid;
  gap: 6px;
  align-content: start;
  overflow: hidden;
}

.hero-phone-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 2px 7px;
  min-height: 47px;
  padding: 8px;
  border: 1px solid rgba(52, 64, 84, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 18px rgba(31, 41, 55, 0.06);
}

.hero-phone-list strong {
  min-width: 0;
  overflow: hidden;
  color: #070b14;
  font-size: 10.5px;
  font-weight: 760;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-phone-list span {
  min-width: 0;
  overflow: hidden;
  color: #697281;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-phone-list em {
  grid-row: 1 / 3;
  align-self: center;
  padding: 4px 5px;
  border-radius: 999px;
  color: #079669;
  background: rgba(7, 150, 105, 0.1);
  font-size: 7.8px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-phone-list em.warn {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
}

.hero-phone-add-sheet {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 58px;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(52, 64, 84, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 40px rgba(31, 41, 55, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.hero-phone-add-sheet::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(52, 64, 84, 0.1);
  border-bottom: 1px solid rgba(52, 64, 84, 0.1);
  border-radius: 0 0 4px 0;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 7px 7px 18px rgba(31, 41, 55, 0.08);
}

.hero-phone-add-title {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 18px;
  padding: 0 2px 1px;
  color: #697281;
  font-size: 8.2px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-phone-add-title::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.hero-phone-add-sheet button {
  min-width: 0;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  overflow: hidden;
  padding: 0 8px;
  border: 0;
  border-radius: 12px;
  color: #070b14;
  background: rgba(248, 250, 253, 0.78);
  font: inherit;
  font-size: 8.4px;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-phone-add-sheet button:nth-of-type(1) {
  grid-column: 1;
  background: rgba(255, 245, 237, 0.94);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.1);
}

.hero-phone-add-sheet span {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #070b14;
  background: rgba(52, 64, 84, 0.065);
  font-size: 8px;
  font-weight: 780;
}

.hero-phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-phone-actions button {
  height: 35px;
  border: 0;
  border-radius: 14px;
  color: #070b14;
  background: rgba(255, 245, 237, 0.94);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.1);
  font: inherit;
  font-size: 10px;
  font-weight: 760;
}

.hero-phone-actions button + button {
  color: #697281;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(52, 64, 84, 0.08);
}

.hero-phone-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 42px 1fr 1fr;
  gap: 5px;
  min-height: 44px;
  padding: 5px;
  border: 1px solid rgba(52, 64, 84, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(31, 41, 55, 0.08);
}

.hero-phone-nav span {
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  color: #7b8493;
  font-size: 8.2px;
  font-weight: 760;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-phone-nav span.is-active {
  color: #070b14;
  background: rgba(52, 64, 84, 0.06);
}

.hero-phone-nav span.is-add {
  width: 36px;
  height: 36px;
  align-self: center;
  justify-self: center;
  border-radius: 15px;
  color: #070b14;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.9), transparent 44%),
    linear-gradient(135deg, rgba(166, 184, 255, 0.64), rgba(255, 240, 224, 0.98));
  box-shadow:
    0 10px 20px rgba(31, 41, 55, 0.11),
    inset 0 0 0 1px rgba(245, 158, 11, 0.12);
  font-size: 22px;
  font-weight: 420;
  line-height: 1;
}

.hero-phone-nav span.is-add.is-active {
  box-shadow:
    0 0 0 4px rgba(245, 158, 11, 0.12),
    0 12px 24px rgba(31, 41, 55, 0.13),
    inset 0 0 0 1px rgba(245, 158, 11, 0.18);
}

@media (min-width: 1360px) and (max-height: 1120px) {
  .assemble-hero .hero-device-screen-desktop {
    --hero-screen-scale: 0.66;
  }
}

@media (min-width: 1360px) and (max-height: 1050px) {
  .assemble-hero .motion-copy-card {
    inset: 44px auto auto 50%;
  }
}

@media (min-width: 981px) and (max-width: 1359px),
  (min-width: 981px) and (max-height: 859px) {
  .assemble-hero .hero-device-screen-desktop {
    --hero-screen-scale: 0.72;
  }

  .assemble-hero .hero-device-screen-tablet {
    --hero-screen-scale: 0.86;
  }

  .assemble-hero .hero-device-screen-phone {
    --hero-screen-scale: 0.92;
  }
}

@media (min-width: 1360px) and (min-height: 860px) {
  .assemble-hero .motion-hero-sticky {
    grid-template-rows: clamp(350px, 39vh, 430px) minmax(0, 1fr);
  }

  .assemble-hero .motion-actions {
    top: calc(336px + clamp(0px, calc((100svh - 1080px) * 0.022), 8px));
  }
}

@media (max-width: 980px) {
  .assemble-hero .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="2"] .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="3"] .workspace-surface.hero-device-rig {
    top: 40%;
    width: min(760px, 86vw);
    height: min(500px, 48svh);
    transform: translate3d(-50%, -35%, 0);
  }

  .assemble-hero[data-step="2"] .workspace-surface.hero-device-rig {
    width: min(410px, 62vw);
    height: min(590px, 58svh);
  }

  .assemble-hero[data-step="3"] .workspace-surface.hero-device-rig {
    width: min(220px, 48vw);
    height: min(450px, 58svh);
  }

  .assemble-hero .hero-device-desktop {
    --hero-device-width: min(760px, 92vw);
    --hero-device-height: min(504px, 61vw);
  }

  .assemble-hero .hero-device-tablet {
    --hero-device-width: min(410px, 62vw);
    --hero-device-height: min(590px, 58svh);
  }

  .assemble-hero .hero-device-phone {
    --hero-device-width: min(220px, 48vw);
    --hero-device-height: min(450px, 58svh);
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  body {
    overflow-x: visible;
  }

  .assemble-hero.motion-hero {
    width: min(100% - 32px, 1180px);
    min-height: 360svh;
    margin: 24px auto 0;
  }

  .assemble-hero .motion-hero-sticky {
    position: sticky;
    top: 76px;
    width: 100%;
    margin-inline: auto;
    min-height: 0;
    height: clamp(810px, calc(100svh - 96px), 920px);
    grid-template-columns: 1fr;
    grid-template-rows: 390px minmax(0, 1fr);
    align-items: start;
    justify-items: center;
    gap: 18px;
    overflow: hidden;
    padding: 36px 0 28px;
  }

  .assemble-hero .motion-copy {
    position: relative;
    width: 100%;
    min-height: 390px;
    display: block;
    text-align: center;
    z-index: 5;
  }

  .assemble-hero .motion-copy-card {
    position: absolute;
    inset: 0 0 auto;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: grid;
    justify-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;
    transition:
      opacity 260ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 260ms;
  }

  .assemble-hero .motion-copy-card.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0ms, 0ms, 0ms;
  }

  .assemble-hero .motion-actions {
    position: absolute;
    left: 50%;
    top: 248px;
    width: clamp(128px, calc(128px + ((100vw - 721px) * 0.054)), 142px);
    align-items: center;
    gap: 8px;
    margin: 0;
    transform: translateX(-50%);
  }

  .assemble-hero .motion-copy-card:not(:first-child) {
    padding-top: 0;
    border-top: 0;
  }

  .assemble-hero .hero-pill,
  .assemble-hero .hero-announcement {
    max-width: 100%;
    min-height: 38px;
    padding-inline: 12px 15px;
    white-space: normal;
  }

  .assemble-hero .hero-announcement strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .assemble-hero .motion-copy h1,
  .assemble-hero .motion-copy-card:not(:first-child) h1 {
    width: min(720px, 100%);
    justify-self: center;
    max-width: 100%;
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(42px, 5.4vw, 58px);
    line-height: 1.02;
  }

  .assemble-hero .motion-copy .lead {
    max-width: 610px;
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    font-size: 17px;
    line-height: 1.42;
  }

  .assemble-hero .motion-actions .btn.primary,
  .assemble-hero .motion-actions:hover .btn.primary,
  .assemble-hero .motion-actions .btn.primary:hover,
  .assemble-hero .motion-actions .btn.primary:focus-visible {
    width: clamp(128px, calc(128px + ((100vw - 721px) * 0.054)), 142px);
    inline-size: clamp(128px, calc(128px + ((100vw - 721px) * 0.054)), 142px);
  }

  .assemble-hero .motion-stage {
    order: 1;
    align-self: end;
    z-index: 2;
    width: 100%;
    min-height: 0;
    height: min(450px, 44svh);
    overflow: visible;
    border-radius: 0;
  }

  .assemble-hero .motion-stage-glow {
    inset: 52px -16px 30px;
  }

  .assemble-hero .motion-fragments {
    display: block;
    left: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform: translateX(-50%);
    z-index: 4;
    opacity: 1;
    pointer-events: none;
  }

  .assemble-hero .motion-fragment {
    --card-w: clamp(78px, calc(78px + ((100vw - 721px) * 0.039)), 88px);
    --card-h: 36px;
    left: 50%;
    top: 0;
    right: auto;
    bottom: auto;
    width: var(--card-w);
    height: var(--card-h);
    padding: 0 9px;
    border-radius: 15px;
    font-size: var(--hero-card-font-size, 10.5px);
    opacity: var(--motion-card-opacity, 1);
    transition:
      opacity 120ms ease-out,
      transform 840ms cubic-bezier(0.19, 1, 0.22, 1);
    transform:
      translate3d(
        calc(var(--x) + (var(--motion-flow, 0) * var(--flow-x))),
        calc(var(--y) + (var(--motion-flow, 0) * var(--flow-y))),
        0
      )
      rotate(calc(var(--r) + (var(--motion-flow, 0) * var(--flow-r))))
      scale(calc(1 - (var(--motion-flow, 0) * 0.16)));
  }

  .assemble-hero .fragment-payment {
    --x: calc(-155px - ((100vw - 721px) * 0.815));
    --y: calc(378px - ((100vw - 721px) * 0.232));
    --r: -7deg;
    --flow-x: 172px;
    --flow-y: 156px;
    --flow-r: 4deg;
  }

  .assemble-hero .fragment-closeout {
    --x: calc(78px + ((100vw - 721px) * 0.71));
    --y: calc(378px - ((100vw - 721px) * 0.232));
    --r: 7deg;
    --flow-x: -96px;
    --flow-y: 156px;
    --flow-r: -4deg;
    --card-w: clamp(76px, calc(76px + ((100vw - 721px) * 0.054)), 90px);
  }

  .assemble-hero .fragment-note {
    --x: calc(-165px - ((100vw - 721px) * 0.544));
    --y: calc(278px - ((100vw - 721px) * 0.1));
    --r: 7deg;
    --flow-x: 190px;
    --flow-y: 226px;
    --flow-r: -5deg;
    --card-w: clamp(68px, calc(68px + ((100vw - 721px) * 0.054)), 82px);
  }

  .assemble-hero .fragment-gap {
    --x: calc(86px + ((100vw - 721px) * 0.587));
    --y: calc(278px - ((100vw - 721px) * 0.1));
    --r: -7deg;
    --flow-x: -116px;
    --flow-y: 226px;
    --flow-r: 5deg;
    --card-w: clamp(84px, calc(84px + ((100vw - 721px) * 0.069)), 102px);
  }

  .assemble-hero .fragment-file {
    --x: calc(-80px - ((100vw - 721px) * 0.378));
    --y: calc(327px - ((100vw - 721px) * 0.266));
    --r: -5deg;
    --flow-x: 94px;
    --flow-y: 184px;
    --flow-r: 3deg;
    --card-w: clamp(82px, calc(82px + ((100vw - 721px) * 0.062)), 98px);
  }

  .assemble-hero .fragment-follow {
    --x: calc(56px + ((100vw - 721px) * 0.085));
    --y: calc(327px - ((100vw - 721px) * 0.266));
    --r: 6deg;
    --flow-x: -66px;
    --flow-y: 154px;
    --flow-r: -4deg;
    --card-w: clamp(86px, calc(86px + ((100vw - 721px) * 0.069)), 104px);
  }

  .assemble-hero[data-step="1"] .motion-fragment {
    opacity: var(--motion-card-opacity, 1);
    filter: none;
    transform:
      translate3d(
        calc(var(--x) + (var(--motion-flow, 0) * var(--flow-x))),
        calc(var(--y) + (var(--motion-flow, 0) * var(--flow-y))),
        0
      )
      rotate(calc(var(--r) + (var(--motion-flow, 0) * var(--flow-r))))
      scale(calc(1 - (var(--motion-flow, 0) * 0.16)));
  }

  .assemble-hero .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="2"] .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="3"] .workspace-surface.hero-device-rig {
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate3d(-50%, -50%, 0);
  }

  .assemble-hero .hero-device,
  .assemble-hero .hero-device-desktop,
  .assemble-hero .hero-device-tablet,
  .assemble-hero .hero-device-phone {
    top: 50%;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
  }

  .assemble-hero .hero-device-desktop {
    --hero-device-width: min(clamp(352px, calc(352px + ((100vw - 721px) * 0.54)), 492px), 86vw);
    --hero-device-height: min(clamp(234px, calc(234px + ((100vw - 721px) * 0.355)), 326px), 57vw);
    top: calc(50% - clamp(28px, calc(28px + ((100vw - 721px) * 0.18)), 74px));
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  .assemble-hero .hero-device-tablet {
    --hero-device-width: min(clamp(218px, calc(218px + ((100vw - 721px) * 0.155)), 258px), 42vw);
    --hero-device-height: min(clamp(312px, calc(312px + ((100vw - 721px) * 0.224)), 370px), 56vw);
    opacity: 0;
  }

  .assemble-hero .hero-device-phone {
    --hero-device-width: min(clamp(136px, calc(136px + ((100vw - 721px) * 0.054)), 150px), 25vw);
    --hero-device-height: min(clamp(278px, calc(278px + ((100vw - 721px) * 0.108)), 306px), 48vw);
    opacity: 0;
  }

  .assemble-hero .hero-device-screen-desktop {
    --hero-screen-scale: var(--hero-narrow-screen-scale, 0.39);
    border-radius: 8px;
  }

  .assemble-hero .hero-device-screen-tablet {
    --hero-screen-scale: 0.72;
    border-radius: 18px;
  }

  .assemble-hero .hero-device-screen-phone {
    --hero-screen-scale: 0.8;
    border-radius: 19px;
  }

  .assemble-hero[data-step="2"] .hero-device-desktop,
  .assemble-hero[data-step="3"] .hero-device-desktop,
  .assemble-hero[data-step="3"] .hero-device-tablet {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
    transition-duration: 90ms, 620ms;
    transition-delay: 0ms, 0ms;
  }

  .assemble-hero[data-step="2"] .hero-device-tablet,
  .assemble-hero[data-step="3"] .hero-device-phone {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
    transition-duration: 260ms, 720ms;
    transition-delay: 55ms, 0ms;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  body {
    overflow-x: visible;
  }

  .assemble-hero.motion-hero {
    width: min(100% - 32px, 1180px);
    min-height: 360svh;
    margin: 24px auto 0;
  }

  .assemble-hero .motion-hero-sticky {
    position: sticky;
    top: 74px;
    width: 100%;
    margin-inline: auto;
    min-height: 0;
    height: clamp(670px, calc(100svh - 74px), 720px);
    grid-template-columns: 1fr;
    grid-template-rows: 294px minmax(0, 1fr);
    align-items: start;
    justify-items: center;
    gap: 12px;
    overflow: hidden;
    padding: 24px 0 22px;
  }

  .assemble-hero .motion-copy {
    position: relative;
    width: 100%;
    min-height: 294px;
    display: block;
    text-align: center;
    z-index: 5;
  }

  .assemble-hero .motion-copy-card {
    position: absolute;
    inset: 0 0 auto;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: grid;
    justify-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;
    transition:
      opacity 260ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 260ms;
  }

  .assemble-hero .motion-copy-card.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0ms, 0ms, 0ms;
  }

  .assemble-hero .motion-actions {
    position: absolute;
    left: 50%;
    top: calc(260px - ((100vw - 981px) * 0.231));
    width: clamp(136px, calc(142px - ((100vw - 981px) * 0.03)), 142px);
    align-items: center;
    gap: 7px;
    margin: 0;
    transform: translateX(-50%);
  }

  .assemble-hero .motion-copy-card:not(:first-child) {
    padding-top: 0;
    border-top: 0;
  }

  .assemble-hero .hero-pill,
  .assemble-hero .hero-announcement {
    max-width: 100%;
    min-height: 36px;
    padding-inline: 12px 15px;
    white-space: normal;
  }

  .assemble-hero .hero-announcement strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .assemble-hero .motion-copy h1,
  .assemble-hero .motion-copy-card:not(:first-child) h1 {
    width: min(760px, 100%);
    justify-self: center;
    max-width: 100%;
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(44px, 5.4vw, 58px);
    line-height: 1.02;
  }

  .assemble-hero .motion-copy .lead {
    max-width: 660px;
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    font-size: 17px;
    line-height: 1.42;
  }

  .assemble-hero .motion-actions .btn.primary,
  .assemble-hero .motion-actions:hover .btn.primary,
  .assemble-hero .motion-actions .btn.primary:hover,
  .assemble-hero .motion-actions .btn.primary:focus-visible {
    width: clamp(136px, calc(142px - ((100vw - 981px) * 0.03)), 142px);
    inline-size: clamp(136px, calc(142px - ((100vw - 981px) * 0.03)), 142px);
  }

  .assemble-hero .motion-stage {
    order: 1;
    align-self: end;
    z-index: 2;
    width: 100%;
    min-height: 0;
    height: min(370px, 45svh);
    overflow: visible;
    border-radius: 0;
  }

  .assemble-hero .motion-stage-glow {
    inset: 42px -18px 24px;
  }

  .assemble-hero .motion-fragments {
    display: block;
    left: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform: translateX(-50%);
    z-index: 4;
    opacity: 1;
    pointer-events: none;
  }

  .assemble-hero .motion-fragment {
    --card-w: 88px;
    --card-h: 34px;
    left: 50%;
    top: 0;
    right: auto;
    bottom: auto;
    width: var(--card-w);
    height: var(--card-h);
    padding: 0 9px;
    border-radius: 15px;
    font-size: var(--hero-card-font-size, 10px);
    opacity: var(--motion-card-opacity, 1);
    transition:
      opacity 120ms ease-out,
      transform 840ms cubic-bezier(0.19, 1, 0.22, 1);
    transform:
      translate3d(
        calc(var(--x) + (var(--motion-flow, 0) * var(--flow-x))),
        calc(var(--y) + (var(--motion-flow, 0) * var(--flow-y))),
        0
      )
      rotate(calc(var(--r) + (var(--motion-flow, 0) * var(--flow-r))))
      scale(calc(1 - (var(--motion-flow, 0) * 0.16)));
  }

  .assemble-hero .fragment-payment {
    --x: calc(-366px - ((100vw - 981px) * 0.809));
    --y: calc(318px - ((100vw - 981px) * 0.764));
    --r: -7deg;
    --flow-x: 205px;
    --flow-y: 88px;
    --flow-r: 4deg;
  }

  .assemble-hero .fragment-closeout {
    --x: calc(262px + ((100vw - 981px) * 0.829));
    --y: calc(318px - ((100vw - 981px) * 0.764));
    --r: 7deg;
    --flow-x: -122px;
    --flow-y: 88px;
    --flow-r: -4deg;
    --card-w: 90px;
  }

  .assemble-hero .fragment-note {
    --x: calc(-306px - ((100vw - 981px) * 0.497));
    --y: calc(252px - ((100vw - 981px) * 1.357));
    --r: 7deg;
    --flow-x: 214px;
    --flow-y: 154px;
    --flow-r: -5deg;
    --card-w: 82px;
  }

  .assemble-hero .fragment-gap {
    --x: calc(238px + ((100vw - 981px) * 0.447));
    --y: calc(252px - ((100vw - 981px) * 1.357));
    --r: -7deg;
    --flow-x: -172px;
    --flow-y: 154px;
    --flow-r: 5deg;
    --card-w: 102px;
  }

  .assemble-hero .fragment-file {
    --x: calc(-178px - ((100vw - 981px) * 1.04));
    --y: calc(258px - ((100vw - 981px) * 0.09));
    --r: -5deg;
    --flow-x: 114px;
    --flow-y: 168px;
    --flow-r: 3deg;
    --card-w: 98px;
  }

  .assemble-hero .fragment-follow {
    --x: calc(78px + ((100vw - 981px) * 0.975));
    --y: calc(258px - ((100vw - 981px) * 0.09));
    --r: 6deg;
    --flow-x: -36px;
    --flow-y: 148px;
    --flow-r: -4deg;
    --card-w: 104px;
  }

  .assemble-hero[data-step="1"] .motion-fragment {
    opacity: var(--motion-card-opacity, 1);
    transform:
      translate3d(
        calc(var(--x) + (var(--motion-flow, 0) * var(--flow-x))),
        calc(var(--y) + (var(--motion-flow, 0) * var(--flow-y))),
        0
      )
      rotate(calc(var(--r) + (var(--motion-flow, 0) * var(--flow-r))))
      scale(calc(1 - (var(--motion-flow, 0) * 0.16)));
  }

  .assemble-hero .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="2"] .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="3"] .workspace-surface.hero-device-rig {
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate3d(-50%, -50%, 0);
  }

  .assemble-hero .hero-device,
  .assemble-hero .hero-device-desktop,
  .assemble-hero .hero-device-tablet,
  .assemble-hero .hero-device-phone {
    top: 50%;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
  }

  .assemble-hero .hero-device-desktop {
    --hero-device-width: min(clamp(492px, calc(492px + ((100vw - 981px) * 0.291)), 550px), 66vw);
    --hero-device-height: min(clamp(326px, calc(326px + ((100vw - 981px) * 0.196)), 365px), 43vw);
    top: calc(50% - clamp(0px, calc((100vw - 981px) * 0.07), 14px));
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  .assemble-hero .hero-device-tablet {
    --hero-device-width: min(clamp(258px, calc(258px + ((100vw - 981px) * 0.131)), 284px), 28vw);
    --hero-device-height: min(clamp(370px, calc(370px + ((100vw - 981px) * 0.191)), 408px), 48vw);
    opacity: 0;
  }

  .assemble-hero .hero-device-phone {
    --hero-device-width: min(clamp(150px, calc(150px + ((100vw - 981px) * 0.03)), 156px), 17vw);
    --hero-device-height: min(clamp(306px, calc(306px + ((100vw - 981px) * 0.06)), 318px), 40vw);
    opacity: 0;
  }

  .assemble-hero .hero-device-screen-desktop {
    --hero-screen-scale: var(--hero-mid-screen-scale, 0.49);
    border-radius: 8px;
  }

  .assemble-hero .hero-device-screen-tablet {
    --hero-screen-scale: 0.68;
    border-radius: 18px;
  }

  .assemble-hero .hero-device-screen-phone {
    --hero-screen-scale: 0.76;
    border-radius: 19px;
  }

  .assemble-hero[data-step="2"] .hero-device-desktop,
  .assemble-hero[data-step="3"] .hero-device-desktop,
  .assemble-hero[data-step="3"] .hero-device-tablet {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
    transition-duration: 90ms, 620ms;
    transition-delay: 0ms, 0ms;
  }

  .assemble-hero[data-step="2"] .hero-device-tablet,
  .assemble-hero[data-step="3"] .hero-device-phone {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
    transition-duration: 260ms, 720ms;
    transition-delay: 55ms, 0ms;
  }
}

@media (min-width: 1181px) and (max-width: 1440px),
  (min-width: 1181px) and (max-height: 859px) {
  body {
    overflow-x: visible;
  }

  .assemble-hero.motion-hero {
    --compact-hero-lift: clamp(0px, calc((860px - 100svh) * 0.54), 50px);
    --compact-copy-lift: clamp(0px, calc((860px - 100svh) * 0.26), 24px);
    width: min(100% - 40px, 1280px);
    min-height: 360svh;
    margin: 24px auto 0;
  }

  .assemble-hero .motion-hero-sticky {
    position: sticky;
    top: 74px;
    width: 100%;
    margin-inline: auto;
    min-height: 0;
    height: clamp(700px, calc(100svh - 74px), 760px);
    grid-template-columns: 1fr;
    grid-template-rows: 304px minmax(0, 1fr);
    align-items: start;
    justify-items: center;
    gap: 12px;
    overflow: hidden;
    padding: 24px 0 22px;
  }

  .assemble-hero .motion-copy {
    position: relative;
    width: 100%;
    min-height: 304px;
    display: block;
    text-align: center;
    z-index: auto;
  }

  .assemble-hero .motion-copy-card,
  .assemble-hero .motion-copy-card.is-active {
    position: absolute;
    inset: calc(var(--compact-copy-lift) * -1) 0 auto;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: grid;
    justify-items: center;
    border-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;
    z-index: 7;
    transition:
      opacity 260ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 260ms;
  }

  .assemble-hero .motion-copy-card.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0ms, 0ms, 0ms;
  }

  .assemble-hero .motion-actions {
    position: absolute;
    left: 50%;
    top: calc(246px + clamp(0px, calc((100svh - 820px) * 0.2), 16px) - var(--compact-hero-lift));
    width: 136px;
    align-items: center;
    gap: 7px;
    margin: 0;
    transform: translateX(-50%);
    z-index: 8;
  }

  .assemble-hero .motion-copy-card:not(:first-child) {
    padding-top: 0;
    border-top: 0;
  }

  .assemble-hero .hero-pill,
  .assemble-hero .hero-announcement {
    max-width: 100%;
    min-height: 36px;
    padding-inline: 12px 15px;
    white-space: normal;
  }

  .assemble-hero .hero-announcement strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .assemble-hero .motion-copy h1,
  .assemble-hero .motion-copy-card:not(:first-child) h1 {
    width: min(780px, 100%);
    justify-self: center;
    max-width: 100%;
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(48px, 5vw, 62px);
    line-height: 1.02;
  }

  .assemble-hero .motion-copy .lead {
    max-width: 680px;
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    font-size: 17px;
    line-height: 1.42;
  }

  .assemble-hero .motion-actions .btn.primary,
  .assemble-hero .motion-actions:hover .btn.primary,
  .assemble-hero .motion-actions .btn.primary:hover,
  .assemble-hero .motion-actions .btn.primary:focus-visible {
    width: 136px;
    inline-size: 136px;
  }

  .assemble-hero .motion-stage {
    order: 1;
    align-self: end;
    z-index: 4;
    width: 100%;
    min-height: 0;
    height: min(370px, 45svh);
    overflow: visible;
    border-radius: 0;
  }

  .assemble-hero .motion-stage-glow {
    display: none;
    inset: 44px -18px 24px;
  }

  .assemble-hero .motion-fragments {
    display: block;
    left: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 1;
    pointer-events: none;
  }

  .assemble-hero .motion-fragment {
    --card-w: 92px;
    --card-h: 36px;
    left: 50%;
    top: 0;
    right: auto;
    bottom: auto;
    width: var(--card-w);
    height: var(--card-h);
    padding: 0 9px;
    border-radius: 15px;
    font-size: var(--hero-card-font-size, 10.5px);
    opacity: var(--motion-card-opacity, 1);
    transition:
      opacity 120ms ease-out,
      transform 840ms cubic-bezier(0.19, 1, 0.22, 1);
    transform:
      translate3d(
        calc(var(--x) + (var(--motion-flow, 0) * var(--flow-x))),
        calc(var(--y) + (var(--motion-flow, 0) * var(--flow-y))),
        0
      )
      rotate(calc(var(--r) + (var(--motion-flow, 0) * var(--flow-r))))
      scale(calc(1 - (var(--motion-flow, 0) * 0.16)));
  }

  .assemble-hero .fragment-payment {
    --x: -527px;
    --y: 166px;
    --r: -7deg;
    --flow-x: 395px;
    --flow-y: 236px;
    --flow-r: 4deg;
  }

  .assemble-hero .fragment-closeout {
    --x: 427px;
    --y: 166px;
    --r: 7deg;
    --flow-x: -342px;
    --flow-y: 236px;
    --flow-r: -4deg;
    --card-w: 90px;
  }

  .assemble-hero .fragment-note {
    --x: -405px;
    --y: -18px;
    --r: 7deg;
    --flow-x: 350px;
    --flow-y: 420px;
    --flow-r: -5deg;
    --card-w: 82px;
  }

  .assemble-hero .fragment-gap {
    --x: 327px;
    --y: -18px;
    --r: -7deg;
    --flow-x: -310px;
    --flow-y: 420px;
    --flow-r: 5deg;
    --card-w: 102px;
  }

  .assemble-hero .fragment-file {
    --x: -385px;
    --y: 240px;
    --r: -5deg;
    --flow-x: 320px;
    --flow-y: 170px;
    --flow-r: 3deg;
    --card-w: 98px;
  }

  .assemble-hero .fragment-follow {
    --x: 272px;
    --y: 240px;
    --r: 6deg;
    --flow-x: -265px;
    --flow-y: 170px;
    --flow-r: -4deg;
    --card-w: 104px;
  }

  .assemble-hero[data-step="1"] .motion-fragment {
    opacity: var(--motion-card-opacity, 1);
    filter: none;
    transform:
      translate3d(
        calc(var(--x) + (var(--motion-flow, 0) * var(--flow-x))),
        calc(var(--y) + (var(--motion-flow, 0) * var(--flow-y))),
        0
      )
      rotate(calc(var(--r) + (var(--motion-flow, 0) * var(--flow-r))))
      scale(calc(1 - (var(--motion-flow, 0) * 0.16)));
  }

  .assemble-hero .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="2"] .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="3"] .workspace-surface.hero-device-rig {
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate3d(-50%, -50%, 0);
  }

  .assemble-hero .hero-device,
  .assemble-hero .hero-device-desktop,
  .assemble-hero .hero-device-tablet,
  .assemble-hero .hero-device-phone {
    top: 50%;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
  }

  .assemble-hero .hero-device-desktop {
    --hero-device-width: min(clamp(550px, calc(550px + ((100vw - 1366px) * 0.8)), 610px), 54vw);
    --hero-device-height: min(clamp(365px, calc(365px + ((100vw - 1366px) * 0.54)), 405px), 36vw);
    top: calc(50% - 20px + clamp(0px, calc((100vw - 1366px) * 0.5), 38px));
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  .assemble-hero .hero-device-tablet {
    --hero-device-width: min(clamp(284px, calc(284px + ((100vw - 1366px) * 0.28)), 305px), 26vw);
    --hero-device-height: min(clamp(408px, calc(408px + ((100vw - 1366px) * 0.38)), 436px), 42vw);
    top: calc(50% - 34px + clamp(0px, calc((100vw - 1366px) * 0.38), 28px));
    opacity: 0;
  }

  .assemble-hero .hero-device-phone {
    --hero-device-width: min(clamp(156px, calc(156px + ((100vw - 1366px) * 0.16)), 168px), 15vw);
    --hero-device-height: min(clamp(318px, calc(318px + ((100vw - 1366px) * 0.31)), 341px), 36vw);
    top: calc(50% - 34px + clamp(0px, calc((100vw - 1366px) * 0.38), 28px));
    opacity: 0;
  }

  .assemble-hero .hero-device-screen-desktop {
    --hero-screen-scale: 0.57;
    border-radius: 8px;
  }

  .assemble-hero .hero-device-screen-tablet {
    --hero-screen-scale: 0.68;
    border-radius: 18px;
  }

  .assemble-hero .hero-device-screen-phone {
    --hero-screen-scale: 0.76;
    border-radius: 19px;
  }

  .assemble-hero[data-step="2"] .hero-device-desktop,
  .assemble-hero[data-step="3"] .hero-device-desktop,
  .assemble-hero[data-step="3"] .hero-device-tablet {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
    transition-duration: 90ms, 620ms;
    transition-delay: 0ms, 0ms;
  }

  .assemble-hero[data-step="2"] .hero-device-tablet,
  .assemble-hero[data-step="3"] .hero-device-phone {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
    transition-duration: 260ms, 720ms;
    transition-delay: 55ms, 0ms;
  }
}

@media (min-width: 1181px) and (max-height: 859px) {
  .assemble-hero .hero-pill,
  .assemble-hero .hero-announcement {
    min-height: 34px;
  }

  .assemble-hero .motion-copy h1,
  .assemble-hero .motion-copy-card:not(:first-child) h1 {
    margin-top: 8px;
    font-size: clamp(42px, 4.35vw, 52px);
    line-height: 1;
  }

  .assemble-hero .motion-copy .lead {
    margin-top: 9px;
    font-size: 16px;
    line-height: 1.35;
  }
}

/* Desktop hero source scene: 1440x900 is the layout source of truth. */
@media (min-width: 1441px) {
  .assemble-hero.motion-hero {
    width: min(calc(1280px * var(--hero-source-scale, 1)), calc(100% - 40px));
    min-height: 360svh;
    margin: 24px auto 0;
  }

  .assemble-hero .motion-hero-sticky {
    position: sticky;
    top: 74px;
    width: 100%;
    margin-inline: auto;
    min-height: 0;
    height: min(calc(760px * var(--hero-source-scale, 1)), calc(100svh - 74px));
    grid-template-columns: 1fr;
    grid-template-rows: calc(304px * var(--hero-source-scale, 1)) minmax(0, 1fr);
    align-items: start;
    justify-items: center;
    gap: calc(12px * var(--hero-source-scale, 1));
    overflow: hidden;
    padding: calc(24px * var(--hero-source-scale, 1)) 0 calc(22px * var(--hero-source-scale, 1));
  }

  .assemble-hero .motion-copy {
    width: 1280px;
    transform: scale(var(--hero-source-scale, 1));
    transform-origin: top center;
  }

  .assemble-hero .motion-copy {
    position: relative;
    min-height: 304px;
    display: block;
    text-align: center;
    z-index: auto;
  }

  .assemble-hero .motion-copy-card,
  .assemble-hero .motion-copy-card.is-active {
    position: absolute;
    inset: 0 0 auto;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: grid;
    justify-items: center;
    border-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;
    z-index: 7;
    transition:
      opacity 260ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 260ms;
  }

  .assemble-hero .motion-copy-card.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0ms, 0ms, 0ms;
  }

  .assemble-hero .motion-actions {
    position: absolute;
    left: 50%;
    top: 262px;
    width: 136px;
    align-items: center;
    gap: 7px;
    margin: 0;
    transform: translateX(-50%);
    z-index: 8;
  }

  .assemble-hero .motion-copy-card:not(:first-child) {
    padding-top: 0;
    border-top: 0;
  }

  .assemble-hero .hero-pill,
  .assemble-hero .hero-announcement {
    max-width: 100%;
    min-height: 36px;
    padding-inline: 12px 15px;
    white-space: normal;
  }

  .assemble-hero .hero-announcement strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .assemble-hero .motion-copy h1,
  .assemble-hero .motion-copy-card:not(:first-child) h1 {
    width: min(780px, 100%);
    justify-self: center;
    max-width: 100%;
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(48px, 5vw, 62px);
    line-height: 1.02;
  }

  .assemble-hero .motion-copy .lead {
    max-width: 680px;
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    font-size: 17px;
    line-height: 1.42;
  }

  .assemble-hero .motion-actions .btn.primary,
  .assemble-hero .motion-actions:hover .btn.primary,
  .assemble-hero .motion-actions .btn.primary:hover,
  .assemble-hero .motion-actions .btn.primary:focus-visible {
    width: 136px;
    inline-size: 136px;
  }

  .assemble-hero .motion-stage {
    order: 1;
    align-self: end;
    z-index: 4;
    width: calc(1280px * var(--hero-source-scale, 1));
    min-height: 0;
    height: calc(370px * var(--hero-source-scale, 1));
    overflow: visible;
    border-radius: 0;
  }

  .assemble-hero .motion-stage-glow {
    display: none;
    inset: 44px -18px 24px;
  }

  .assemble-hero .motion-fragments {
    display: block;
    left: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 1;
    pointer-events: none;
  }

  .assemble-hero .motion-fragment {
    --card-w: 92px;
    --card-h: 36px;
    left: 50%;
    top: 0;
    right: auto;
    bottom: auto;
    width: var(--card-w);
    height: var(--card-h);
    padding: 0 9px;
    border-radius: 15px;
    font-size: var(--hero-card-font-size, 10.5px);
    opacity: var(--motion-card-opacity, 1);
    transition:
      opacity 120ms ease-out,
      transform 840ms cubic-bezier(0.19, 1, 0.22, 1);
    transform:
      translate3d(
        calc(var(--x) + (var(--motion-flow, 0) * var(--flow-x))),
        calc(var(--y) + (var(--motion-flow, 0) * var(--flow-y))),
        0
      )
      rotate(calc(var(--r) + (var(--motion-flow, 0) * var(--flow-r))))
      scale(calc(1 - (var(--motion-flow, 0) * 0.16)));
  }

  .assemble-hero .fragment-payment {
    --x: -527px;
    --y: 166px;
    --r: -7deg;
    --flow-x: 395px;
    --flow-y: 236px;
    --flow-r: 4deg;
  }

  .assemble-hero .fragment-closeout {
    --x: 427px;
    --y: 166px;
    --r: 7deg;
    --flow-x: -342px;
    --flow-y: 236px;
    --flow-r: -4deg;
    --card-w: 90px;
  }

  .assemble-hero .fragment-note {
    --x: -405px;
    --y: -18px;
    --r: 7deg;
    --flow-x: 350px;
    --flow-y: 420px;
    --flow-r: -5deg;
    --card-w: 82px;
  }

  .assemble-hero .fragment-gap {
    --x: 327px;
    --y: -18px;
    --r: -7deg;
    --flow-x: -310px;
    --flow-y: 420px;
    --flow-r: 5deg;
    --card-w: 102px;
  }

  .assemble-hero .fragment-file {
    --x: -385px;
    --y: 240px;
    --r: -5deg;
    --flow-x: 320px;
    --flow-y: 170px;
    --flow-r: 3deg;
    --card-w: 98px;
  }

  .assemble-hero .fragment-follow {
    --x: 272px;
    --y: 240px;
    --r: 6deg;
    --flow-x: -265px;
    --flow-y: 170px;
    --flow-r: -4deg;
    --card-w: 104px;
  }

  .assemble-hero[data-step="1"] .motion-fragment {
    opacity: var(--motion-card-opacity, 1);
    filter: none;
    transform:
      translate3d(
        calc(var(--x) + (var(--motion-flow, 0) * var(--flow-x))),
        calc(var(--y) + (var(--motion-flow, 0) * var(--flow-y))),
        0
      )
      rotate(calc(var(--r) + (var(--motion-flow, 0) * var(--flow-r))))
      scale(calc(1 - (var(--motion-flow, 0) * 0.16)));
  }

  .assemble-hero .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="2"] .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="3"] .workspace-surface.hero-device-rig {
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate3d(-50%, -50%, 0);
  }

  .assemble-hero .hero-device,
  .assemble-hero .hero-device-desktop,
  .assemble-hero .hero-device-tablet,
  .assemble-hero .hero-device-phone {
    top: 50%;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
  }

  .assemble-hero .hero-device-desktop {
    --hero-device-width: calc(610px * var(--hero-source-scale, 1));
    --hero-device-height: calc(405px * var(--hero-source-scale, 1));
    top: calc(50% + (17px * var(--hero-source-scale, 1)));
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  .assemble-hero .hero-device-tablet {
    --hero-device-width: calc(305px * var(--hero-source-scale, 1));
    --hero-device-height: calc(436px * var(--hero-source-scale, 1));
    top: calc(50% - (6px * var(--hero-source-scale, 1)));
    opacity: 0;
  }

  .assemble-hero .hero-device-phone {
    --hero-device-width: calc(168px * var(--hero-source-scale, 1));
    --hero-device-height: calc(341px * var(--hero-source-scale, 1));
    top: calc(50% - (6px * var(--hero-source-scale, 1)));
    opacity: 0;
  }

  .assemble-hero .hero-device-screen-desktop {
    --hero-screen-scale: 0.57;
    border-radius: 8px;
  }

  .assemble-hero .hero-device-screen-tablet {
    --hero-screen-scale: 0.68;
    border-radius: 18px;
  }

  .assemble-hero .hero-device-screen-phone {
    --hero-screen-scale: 0.76;
    border-radius: 19px;
  }

  .assemble-hero[data-step="2"] .hero-device-desktop,
  .assemble-hero[data-step="3"] .hero-device-desktop,
  .assemble-hero[data-step="3"] .hero-device-tablet {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
    transition-duration: 90ms, 620ms;
    transition-delay: 0ms, 0ms;
  }

  .assemble-hero[data-step="2"] .hero-device-tablet,
  .assemble-hero[data-step="3"] .hero-device-phone {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
    transition-duration: 260ms, 720ms;
    transition-delay: 55ms, 0ms;
  }
}

@media (max-width: 720px) {
  .assemble-hero .hero-device-tablet,
  .assemble-hero .hero-device-phone {
    opacity: 0;
  }

  .assemble-hero[data-step="2"] .hero-device-tablet,
  .assemble-hero[data-step="3"] .hero-device-phone {
    opacity: 1;
  }
}

/* Mobile hero: the same desktop story, scaled into a narrow pinned scene. */
@media (max-width: 720px) {
  body {
    overflow-x: visible;
  }

  .site-header {
    width: min(100% - 24px, 1180px);
    top: 10px;
    margin-top: 10px;
    padding: 8px 9px;
    border-radius: 22px;
  }

  .assemble-hero.motion-hero {
    width: min(100% - 28px, 1180px);
    min-height: 360svh;
    margin: 24px auto 0;
  }

  .assemble-hero .motion-hero-sticky {
    position: sticky;
    top: 72px;
    width: 100%;
    margin-inline: auto;
    min-height: 0;
    height: clamp(650px, calc(100svh - 86px), 780px);
    grid-template-columns: 1fr;
    grid-template-rows: 342px minmax(0, 1fr);
    align-items: start;
    justify-items: center;
    gap: 14px;
    overflow: hidden;
    padding: 30px 0 22px;
  }

  .assemble-hero .motion-copy {
    position: relative;
    width: 100%;
    min-height: 342px;
    display: block;
    text-align: center;
    z-index: 5;
  }

  .assemble-hero .motion-copy-card {
    position: absolute;
    inset: 0 0 auto;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: grid;
    justify-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;
    transition:
      opacity 260ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 260ms;
  }

  .assemble-hero .motion-copy-card.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0ms, 0ms, 0ms;
  }

  .assemble-hero .motion-actions {
    position: absolute;
    left: 50%;
    top: 264px;
    width: 128px;
    align-items: center;
    gap: 8px;
    margin: 0;
    transform: translateX(-50%);
  }

  .assemble-hero .motion-copy-card:not(:first-child) {
    padding-top: 0;
    border-top: 0;
  }

  .assemble-hero .hero-pill,
  .assemble-hero .hero-announcement {
    max-width: 100%;
    min-height: 36px;
    padding-inline: 10px 13px;
    white-space: normal;
  }

  .assemble-hero .hero-announcement strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .assemble-hero .motion-copy h1,
  .assemble-hero .motion-copy-card:not(:first-child) h1 {
    width: 100%;
    justify-self: center;
    max-width: 100%;
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: 1.02;
  }

  .assemble-hero .motion-copy .lead {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.45;
  }

  .assemble-hero .motion-actions .btn.primary,
  .assemble-hero .motion-actions:hover .btn.primary,
  .assemble-hero .motion-actions .btn.primary:hover,
  .assemble-hero .motion-actions .btn.primary:focus-visible {
    width: 128px;
    inline-size: 128px;
  }

  .assemble-hero .motion-stage {
    order: 1;
    align-self: end;
    z-index: 2;
    width: 100%;
    min-height: 0;
    height: min(322px, 40svh);
    overflow: visible;
    border-radius: 0;
  }

  .assemble-hero .motion-stage-glow {
    inset: 46px -16px 30px;
  }

  .assemble-hero .motion-fragments {
    display: block;
    left: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform: translateX(-50%);
    z-index: 4;
    opacity: 1;
    pointer-events: none;
  }

  .assemble-hero .motion-fragment {
    --card-w: 78px;
    --card-h: 34px;
    left: 50%;
    top: 0;
    right: auto;
    bottom: auto;
    width: var(--card-w);
    height: var(--card-h);
    padding: 0 8px;
    border-radius: 14px;
    font-size: var(--hero-card-font-size, 9.6px);
    opacity: var(--motion-card-opacity, 1);
    box-shadow:
      8px 12px 22px rgba(17, 18, 20, 0.1),
      0 1px 0 rgba(255, 255, 255, 0.94) inset;
    transition:
      opacity 120ms ease-out,
      transform 840ms cubic-bezier(0.19, 1, 0.22, 1);
    transform:
      translate3d(
        calc(var(--x) + (var(--motion-flow, 0) * var(--flow-x))),
        calc(var(--y) + (var(--motion-flow, 0) * var(--flow-y))),
        0
      )
      rotate(calc(var(--r) + (var(--motion-flow, 0) * var(--flow-r))))
      scale(calc(1 - (var(--motion-flow, 0) * 0.16)));
  }

  .assemble-hero .fragment-payment {
    --x: -155px;
    --y: 398px;
    --r: -7deg;
    --flow-x: 75px;
    --flow-y: 69px;
    --flow-r: 4deg;
  }

  .assemble-hero .fragment-closeout {
    --x: 78px;
    --y: 398px;
    --r: 7deg;
    --flow-x: -40px;
    --flow-y: 71px;
    --flow-r: -4deg;
    --card-w: 76px;
  }

  .assemble-hero .fragment-note {
    --x: -165px;
    --y: 278px;
    --r: 7deg;
    --flow-x: 87px;
    --flow-y: 196px;
    --flow-r: -5deg;
    --card-w: 68px;
  }

  .assemble-hero .fragment-gap {
    --x: 86px;
    --y: 278px;
    --r: -7deg;
    --flow-x: -56px;
    --flow-y: 196px;
    --flow-r: 5deg;
    --card-w: 84px;
  }

  .assemble-hero .fragment-file {
    --x: -80px;
    --y: 327px;
    --r: -5deg;
    --flow-x: 38px;
    --flow-y: 178px;
    --flow-r: 3deg;
    --card-w: 82px;
  }

  .assemble-hero .fragment-follow {
    --x: 7px;
    --y: 327px;
    --r: 6deg;
    --flow-x: -7px;
    --flow-y: 136px;
    --flow-r: -4deg;
    --card-w: 86px;
  }

  .assemble-hero[data-step="1"] .motion-fragment {
    opacity: var(--motion-card-opacity, 1);
    transform:
      translate3d(
        calc(var(--x) + (var(--motion-flow, 0) * var(--flow-x))),
        calc(var(--y) + (var(--motion-flow, 0) * var(--flow-y))),
        0
      )
      rotate(calc(var(--r) + (var(--motion-flow, 0) * var(--flow-r))))
      scale(calc(1 - (var(--motion-flow, 0) * 0.16)));
  }

  .assemble-hero .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="2"] .workspace-surface.hero-device-rig,
  .assemble-hero[data-step="3"] .workspace-surface.hero-device-rig {
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate3d(-50%, -50%, 0);
  }

  .assemble-hero .hero-device,
  .assemble-hero .hero-device-desktop,
  .assemble-hero .hero-device-tablet,
  .assemble-hero .hero-device-phone {
    top: 50%;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
  }

  .assemble-hero .hero-device-desktop {
    --hero-device-width: min(352px, 92vw);
    --hero-device-height: min(234px, 61vw);
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  .assemble-hero .hero-device-tablet {
    --hero-device-width: min(218px, 56vw);
    --hero-device-height: min(312px, 76vw);
  }

  .assemble-hero .hero-device-phone {
    --hero-device-width: min(136px, 35vw);
    --hero-device-height: min(278px, 72vw);
  }

  .assemble-hero .hero-device-screen-desktop {
    --hero-screen-scale: 0.39;
    border-radius: 6px;
  }

  .assemble-hero .hero-device-screen-tablet {
    --hero-screen-scale: 0.56;
    border-radius: 18px;
  }

  .assemble-hero .hero-device-screen-phone {
    --hero-screen-scale: 0.74;
    border-radius: 19px;
  }

  .assemble-hero[data-step="2"] .hero-device-desktop,
  .assemble-hero[data-step="3"] .hero-device-desktop,
  .assemble-hero[data-step="3"] .hero-device-tablet {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
    transition-duration: 90ms, 620ms;
    transition-delay: 0ms, 0ms;
  }

  .assemble-hero[data-step="2"] .hero-device-tablet,
  .assemble-hero[data-step="3"] .hero-device-phone {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
    transition-duration: 260ms, 720ms;
    transition-delay: 55ms, 0ms;
  }

  .core-flow-viewport {
    min-height: 398px;
    padding: 14px;
  }

  .core-flow-stage .core-flow-panel {
    inset: 14px;
    align-items: center;
    justify-items: center;
    overflow: visible;
  }

  .quick-demo {
    --quick-cursor-add-x: clamp(360px, calc(100vw - 30px), 400px);
  }

  .core-flow-stage .core-flow-panel .core-flow-demo,
  .core-flow-stage .core-flow-panel[data-flow-panel="exports"] .core-flow-demo,
  .core-flow-stage .core-flow-panel[data-flow-panel="files"] .core-flow-demo {
    --core-demo-scale: 0.66;
    width: min(620px, calc(100% / var(--core-demo-scale)));
    max-width: none;
    align-self: center;
    justify-self: center;
    transform: scale(var(--core-demo-scale));
    transform-origin: 50% 50%;
  }

  .core-flow-stage .core-flow-panel[data-flow-panel="exports"] .core-flow-demo {
    width: min(760px, calc(100% / var(--core-demo-scale)));
  }

  .core-flow-stage .core-flow-panel[data-flow-panel="files"] .core-flow-demo {
    width: min(430px, calc(100% / var(--core-demo-scale)));
  }

  .setup-guide-motion .setup-guide-browser {
    height: 548px !important;
    min-height: 548px !important;
  }

  .setup-guide-motion .setup-guide-screen {
    height: calc(100% - 50px) !important;
    padding: 14px !important;
  }

  .setup-guide-motion .setup-guide-app-bg {
    inset: 14px !important;
  }

  .setup-guide-motion .setup-catalog-scene {
    top: 58px;
    width: calc(100% - 42px);
    padding: 16px;
    border-radius: 22px;
  }

  .setup-guide-motion .setup-launch-scene {
    top: 98px;
    width: calc(100% - 64px);
  }

  .setup-guide-motion .setup-guide-modal {
    min-height: 424px !important;
    margin-top: 6px !important;
    border-radius: 24px;
  }

  .setup-guide-modal-hero {
    min-height: 98px;
    padding: 16px 18px;
  }

  .setup-guide-hero-copy {
    left: 18px;
    right: 18px;
    top: 15px;
  }

  .setup-guide-hero-copy h3 {
    font-size: 20px;
    line-height: 1.08;
  }

  .setup-guide-hero-copy span {
    margin-top: 6px;
    font-size: 11.5px;
    line-height: 1.32;
  }

  .setup-guide-body {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 10px;
  }

  .setup-guide-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
  }

  .setup-guide-steps span {
    min-width: 0;
    min-height: 54px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    border-radius: 13px;
    padding: 6px 3px;
  }

  .setup-guide-steps b {
    width: 19px;
    height: 19px;
    font-size: 9px;
  }

  .setup-guide-steps strong {
    max-width: 100%;
    overflow: hidden;
    font-size: 0;
    line-height: 1.05;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .setup-guide-steps strong::before {
    color: currentColor;
    font-size: 8.5px;
    font-weight: 680;
    line-height: 1.05;
  }

  .setup-step-preview strong::before {
    content: "Preview";
  }

  .setup-step-profile strong::before {
    content: "Profile";
  }

  .setup-step-license strong::before {
    content: "License";
  }

  .setup-step-drive strong::before {
    content: "Drive";
  }

  .setup-step-ready strong::before {
    content: "Ready";
  }

  .setup-guide-card {
    min-height: 186px;
    border-radius: 20px;
  }

  .setup-card-panel {
    padding: 10px;
  }

  .setup-checklist,
  .setup-profile-fields {
    gap: 6px;
  }

  .setup-guide-motion .setup-card-profile .setup-profile-fields {
    animation: setup-mobile-profile-fields-scroll var(--setup-seq) cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }

  .setup-checklist span,
  .setup-profile-fields label,
  .setup-license-form,
  .setup-drive-card {
    min-height: 34px;
    border-radius: 13px;
    padding: 8px 9px;
    font-size: 10.5px;
  }

  .setup-profile-fields span,
  .setup-license-form span,
  .setup-drive-card span {
    font-size: 9.8px;
  }

  .setup-profile-fields strong,
  .setup-license-form strong,
  .setup-drive-card strong {
    font-size: 10.5px;
  }

  .setup-guide-motion .setup-language-row {
    min-height: 48px;
  }

  .setup-guide-motion .setup-language-row small {
    font-size: 8.8px;
    line-height: 1.2;
  }

  .setup-license-form button,
  .setup-drive-card button {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 10px;
  }

  .setup-card-license small,
  .setup-drive-card small {
    font-size: 9.8px;
  }

  .setup-guide-footer {
    gap: 6px;
    padding: 10px;
  }

  .setup-guide-footer button {
    min-height: 31px;
    padding: 0 10px;
    font-size: 10.2px;
  }
}

@keyframes setup-mobile-profile-fields-scroll {
  0%,
  34% {
    transform: translateY(0);
  }

  43%,
  51.4% {
    transform: translateY(-70px);
  }

  53%,
  100% {
    transform: translateY(-70px);
  }
}

@media (max-width: 430px) {
  .assemble-hero .motion-hero-sticky {
    padding-top: 42px;
  }

  .core-flow-stage .core-flow-panel .core-flow-demo,
  .core-flow-stage .core-flow-panel[data-flow-panel="exports"] .core-flow-demo,
  .core-flow-stage .core-flow-panel[data-flow-panel="files"] .core-flow-demo {
    --core-demo-scale: 0.6;
  }
}

/* Landing responsive finish: keep mobile sections readable without pushing the proof below the fold. */
@media (max-width: 720px) {
  .workspace-picker {
    padding: 64px 18px 52px;
  }

  .workspace-picker-head h2 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.98;
  }

  .workspace-picker-head p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 15px;
  }

  .workspace-picker-footer {
    margin-top: 22px;
    padding: 14px;
  }

  .workspace-picker-footer p {
    font-size: 13px;
  }

  .workspace-grid {
    gap: 16px;
    margin-top: 26px;
  }

  .workspace-card,
  .workspace-card-featured,
  .workspace-card.is-waitlist {
    min-height: 0;
    border-radius: 28px;
    padding: 22px;
  }

  .workspace-card h3 {
    margin-top: 16px;
    font-size: clamp(26px, 8vw, 34px);
  }

  .workspace-card p {
    margin-top: 12px;
    font-size: 14px;
  }

  .workspace-card .chips {
    margin-top: 16px;
  }

  .workspace-card .card-link {
    margin-top: 18px;
  }

  .workspace-card-featured .workspace-card-media {
    height: 196px;
    border-radius: 22px;
  }

  .preview-lift {
    width: min(196px, 78%);
  }

  .core-workflows {
    padding: 66px 18px 58px;
  }

  .core-flow-head h2 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.98;
  }

  .core-flow-head p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 15px;
  }

  .core-flow-showcase {
    gap: 14px;
    margin-top: 22px;
  }

  .core-flow-list {
    display: flex;
    gap: 8px;
    align-items: stretch;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding: 1px 2px 8px;
    margin-inline: -2px;
  }

  .core-flow-list::-webkit-scrollbar {
    display: none;
  }

  .core-flow-tab {
    flex: 0 0 148px;
    min-height: 92px;
    border: 1px solid rgba(17, 17, 17, 0.075);
    border-radius: 18px;
    padding: 10px 11px;
    background: rgba(255, 255, 255, 0.56);
    scroll-snap-align: start;
  }

  .core-flow-tab span {
    font-size: 10px;
  }

  .core-flow-tab strong {
    font-size: 18px;
    line-height: 1.02;
  }

  .core-flow-tab small {
    max-width: 126px;
    font-size: 10.5px;
    line-height: 1.24;
  }

  .core-flow-tab.is-flow-active small {
    max-height: 40px;
  }

  .core-flow-tab i {
    margin-top: 2px;
  }

  .core-flow-stage {
    border-radius: 24px;
  }

  .core-flow-stage-top {
    min-height: 38px;
    padding-inline: 14px;
  }

  .core-flow-viewport {
    min-height: 390px;
    padding: 14px;
  }

  .core-flow-stage .core-flow-panel {
    inset: 14px;
  }

  .core-flow-stage .core-flow-panel .core-flow-demo,
  .core-flow-stage .core-flow-panel[data-flow-panel="exports"] .core-flow-demo,
  .core-flow-stage .core-flow-panel[data-flow-panel="files"] .core-flow-demo {
    --core-demo-scale: 0.58;
  }

  .core-flow-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    overscroll-behavior-x: auto;
    scroll-snap-type: none;
    padding: 0;
    margin-inline: 0;
  }

  .core-flow-tab {
    flex: initial;
    width: 100%;
    min-width: 0;
    min-height: 96px;
    scroll-snap-align: none;
  }

  .core-flow-tab:last-child {
    grid-column: 1 / -1;
    min-height: 74px;
  }

  .core-flow-tab small {
    max-width: none;
  }

  .data-clarity {
    gap: 28px;
    padding: 64px 18px 54px;
  }

  .data-clarity-copy h2 {
    font-size: clamp(38px, 11.5vw, 50px);
    line-height: 1;
  }

  .data-clarity-copy p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 15px;
  }

  .data-clarity-flow {
    gap: 14px;
  }

  .data-step-card {
    gap: 16px;
    border-radius: 24px;
    padding: 18px;
  }

  .data-step-number {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: 13px;
  }

  .data-step-kicker {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .data-step-card h3 {
    font-size: 24px;
    line-height: 1.04;
  }

  .data-step-card p:not(.data-step-kicker) {
    margin-top: 11px;
    font-size: 13.5px;
  }

  .data-device-mini {
    gap: 8px;
  }

  .data-device-mini span {
    height: 32px;
    border-radius: 13px;
  }

  .data-provider-row span,
  .data-device-row span {
    min-height: 42px;
    border-radius: 15px;
    font-size: 12px;
  }
}

/* Hero responsive finish: six floating cards on roomy screens, four on mobile, with device frames kept readable. */
@media (min-width: 721px) and (max-width: 980px) {
  .assemble-hero .motion-hero-sticky {
    grid-template-rows: auto minmax(430px, 1fr);
    gap: 22px;
  }

  .assemble-hero .motion-stage {
    height: clamp(430px, 56vw, 530px);
    min-height: clamp(430px, 56vw, 530px);
  }

  .assemble-hero .hero-device-desktop {
    --hero-device-width: min(clamp(520px, 65vw, 630px), 88vw);
    --hero-device-height: min(clamp(345px, 43vw, 418px), 58vw);
  }

  .assemble-hero .hero-device-tablet {
    --hero-device-width: min(clamp(300px, 39vw, 365px), 46vw);
    --hero-device-height: min(clamp(430px, 56vw, 525px), 60svh);
  }

  .assemble-hero .hero-device-phone {
    --hero-device-width: min(clamp(158px, 21vw, 188px), 30vw);
    --hero-device-height: min(clamp(322px, 43vw, 382px), 54svh);
  }

  .assemble-hero .hero-device-screen-desktop {
    --hero-screen-scale: 0.58;
  }

  .assemble-hero .hero-device-screen-tablet {
    --hero-screen-scale: 0.76;
  }

  .assemble-hero .hero-device-screen-phone {
    --hero-screen-scale: 0.86;
  }
}

@media (min-width: 981px) and (max-width: 1359px) {
  .assemble-hero .motion-stage {
    height: clamp(520px, 45vw, 600px);
    min-height: clamp(520px, 45vw, 600px);
  }

  .assemble-hero .hero-device-desktop {
    --hero-device-width: min(clamp(680px, 60vw, 780px), 86vw);
    --hero-device-height: min(clamp(451px, 40vw, 518px), 56vw);
  }

  .assemble-hero .hero-device-tablet {
    --hero-device-width: min(clamp(380px, 34vw, 440px), 42vw);
    --hero-device-height: min(clamp(548px, 48vw, 632px), 58svh);
  }

  .assemble-hero .hero-device-phone {
    --hero-device-width: min(clamp(202px, 18vw, 230px), 26vw);
    --hero-device-height: min(clamp(412px, 36vw, 468px), 54svh);
  }
}

@media (max-width: 720px) {
  .assemble-hero .motion-hero-sticky {
    grid-template-rows: 330px minmax(300px, 1fr);
    gap: 10px;
    height: clamp(642px, calc(100svh - 78px), 760px);
    padding-top: 28px;
  }

  .assemble-hero .motion-copy {
    min-height: 330px;
  }

  .assemble-hero .motion-actions {
    top: 256px;
  }

  .assemble-hero .motion-stage {
    height: min(340px, 41svh);
  }

  .assemble-hero .hero-device-desktop {
    --hero-device-width: min(366px, 94vw);
    --hero-device-height: min(243px, 63vw);
  }

  .assemble-hero .hero-device-tablet {
    --hero-device-width: min(232px, 58vw);
    --hero-device-height: min(333px, 76vw);
  }

  .assemble-hero .hero-device-phone {
    --hero-device-width: min(146px, 36vw);
    --hero-device-height: min(298px, 72vw);
  }
}

@media (min-width: 981px) and (max-width: 1440px) {
  .assemble-hero .motion-stage {
    height: min(365px, 45svh);
    min-height: min(365px, 45svh);
    align-self: start;
  }

  .assemble-hero .hero-device-desktop {
    --hero-device-width: min(clamp(560px, 47vw, 620px), 80vw);
    --hero-device-height: min(clamp(372px, 31.2vw, 412px), 54vw);
    top: 50%;
  }

  .assemble-hero .hero-device-tablet {
    --hero-device-width: min(clamp(310px, 26vw, 355px), 42vw);
    --hero-device-height: min(clamp(446px, 37.4vw, 510px), 58svh);
  }

  .assemble-hero .hero-device-phone {
    --hero-device-width: min(clamp(168px, 14vw, 198px), 24vw);
    --hero-device-height: min(clamp(342px, 28.6vw, 402px), 54svh);
  }

  .assemble-hero .hero-device-screen-desktop {
    --hero-screen-scale: 0.6;
  }
}

/* Hero CTA final lock: keep the Assemble-style width expansion after breakpoint overrides. */
.assemble-hero .motion-actions {
  width: 168px;
  overflow: visible;
}

.assemble-hero .motion-actions .btn.primary {
  width: 118px;
  inline-size: 118px;
  transition:
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    inline-size 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.assemble-hero .motion-actions:hover .btn.primary,
.assemble-hero .motion-actions.is-hovering .btn.primary,
.assemble-hero .motion-actions .btn.primary:hover,
.assemble-hero .motion-actions .btn.primary:focus-visible,
.assemble-hero .motion-actions .btn.primary.is-hovering {
  width: 142px;
  inline-size: 142px;
  background: var(--owmii-action-bg);
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.18);
}

@media (max-width: 720px) {
  .assemble-hero .motion-actions {
    width: 160px;
  }
}

/* Purchase modal final lock: plan first, workspace second, cart preserves item-level licenses. */
.purchase-modal {
  padding: clamp(12px, 2vw, 24px);
}

.purchase-dialog {
  width: min(calc(100vw - 32px), 1000px) !important;
  max-height: min(92dvh, 760px) !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) auto !important;
  gap: 18px !important;
  overflow: hidden !important;
  border-radius: clamp(28px, 3vw, 38px) !important;
  padding: clamp(18px, 2.5vw, 30px) !important;
}

.purchase-dialog-top {
  align-items: start !important;
}

.purchase-dialog h2 {
  font-size: clamp(30px, 3.4vw, 48px) !important;
  letter-spacing: -0.056em !important;
}

.purchase-dialog-top p:not(.purchase-eyebrow) {
  max-width: 560px !important;
  margin-top: 10px !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.purchase-flow {
  min-height: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(306px, 340px) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.purchase-picker,
.purchase-cart-panel {
  min-height: 0 !important;
  border-radius: 28px !important;
  padding: 14px !important;
  box-shadow:
    0 22px 58px rgba(17, 18, 20, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.78) inset !important;
}

.purchase-picker {
  grid-template-rows: auto auto minmax(116px, 1fr) auto !important;
  gap: 12px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.5) !important;
}

.purchase-cart-panel {
  grid-template-rows: auto minmax(78px, 1fr) auto auto !important;
  gap: 12px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 255, 102, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.58) !important;
}

.purchase-step-block {
  gap: 8px !important;
}

.purchase-step-label,
.purchase-search span,
.purchase-cart-head span,
.purchase-summary span {
  color: rgba(17, 17, 17, 0.44) !important;
  font-size: 10.5px !important;
  font-weight: 640 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
}

.purchase-plan-picker {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 6px !important;
  border: 1px solid rgba(17, 17, 17, 0.07) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.5) !important;
  padding: 5px !important;
}

.purchase-plan-picker button {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: rgba(17, 17, 17, 0.58) !important;
  font: inherit !important;
  padding: 0 8px !important;
  text-align: center !important;
  cursor: pointer !important;
  transform: none !important;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease !important;
}

.purchase-plan-picker button span {
  font-size: 12px !important;
  font-weight: 620 !important;
}

.purchase-plan-picker button strong {
  color: rgba(17, 17, 17, 0.42) !important;
  font-size: 11px !important;
  font-weight: 540 !important;
}

.purchase-plan-picker button:hover,
.purchase-plan-picker button:focus-visible {
  background: rgba(255, 255, 255, 0.72) !important;
  color: #111111 !important;
  outline: none !important;
}

.purchase-plan-picker button.is-selected {
  background: #edff66 !important;
  color: #111111 !important;
  box-shadow: 0 10px 24px rgba(17, 18, 20, 0.08) !important;
}

.purchase-plan-picker button.is-selected strong {
  color: rgba(17, 17, 17, 0.68) !important;
}

.plan-price-cents {
  display: inline-block !important;
  margin-left: 0.02em !important;
  font-size: 0.78em !important;
  letter-spacing: -0.02em !important;
  transform: translateY(-0.12em) !important;
}

.plan-price-period {
  margin-left: 2px !important;
  color: rgba(17, 17, 17, 0.42) !important;
  font-size: 0.9em !important;
  font-weight: 520 !important;
}

.purchase-plan-picker button.is-selected .plan-price-period {
  color: rgba(17, 17, 17, 0.62) !important;
}

.purchase-plan-picker button.is-disabled,
.purchase-plan-picker button:disabled {
  cursor: not-allowed !important;
  opacity: 0.66 !important;
  background: transparent !important;
  color: rgba(17, 17, 17, 0.36) !important;
  box-shadow: none !important;
}

.purchase-plan-picker button.is-disabled:hover,
.purchase-plan-picker button.is-disabled:focus-visible,
.purchase-plan-picker button:disabled:hover,
.purchase-plan-picker button:disabled:focus-visible {
  color: rgba(17, 17, 17, 0.36) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.purchase-plan-picker button em {
  display: block !important;
  margin-top: 1px !important;
  color: rgba(17, 17, 17, 0.36) !important;
  font-size: 8px !important;
  font-style: normal !important;
  font-weight: 620 !important;
  letter-spacing: 0.05em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.purchase-cart-price .plan-price-cents {
  font-size: 0.72em !important;
  transform: translateY(-0.14em) !important;
}

.purchase-plan-saving-note {
  color: rgba(17, 17, 17, 0.48) !important;
  font-size: 11.5px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.012em !important;
  padding: 0 4px !important;
}

.purchase-search {
  gap: 7px !important;
}

.purchase-search input {
  min-height: 40px !important;
  border-radius: 999px !important;
  font-size: 13.5px !important;
  padding: 0 14px !important;
}

.purchase-product-list {
  max-height: none !important;
  min-height: 116px !important;
  overflow: auto !important;
  gap: 7px !important;
  padding: 0 2px 0 0 !important;
}

.purchase-product-option {
  grid-template-columns: 36px minmax(0, 1fr) auto !important;
  gap: 10px !important;
  min-height: 56px !important;
  border-radius: 18px !important;
  padding: 8px 9px !important;
  background: rgba(255, 255, 255, 0.5) !important;
  transform: none !important;
}

.purchase-product-option:hover,
.purchase-product-option:focus-visible {
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow: none !important;
  transform: none !important;
}

.purchase-product-option.is-selected {
  border-color: rgba(17, 17, 17, 0.13) !important;
  background: rgba(255, 255, 255, 0.9) !important;
}

.purchase-product-option .purchase-product-mark,
.purchase-cart-item .purchase-product-mark {
  width: 34px !important;
  height: 34px !important;
  border-radius: 13px !important;
  font-size: 11px !important;
}

.purchase-product-option strong {
  font-size: 13px !important;
  line-height: 1.18 !important;
}

.purchase-product-option small {
  margin-top: 2px !important;
  color: rgba(17, 17, 17, 0.46) !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
}

.purchase-product-check {
  min-width: 62px !important;
  border-radius: 999px !important;
  color: rgba(17, 17, 17, 0.5) !important;
  background: rgba(17, 17, 17, 0.045) !important;
  font-size: 10.5px !important;
  padding: 5px 8px !important;
  white-space: nowrap !important;
}

.purchase-product-option.is-selected .purchase-product-check {
  color: #ffffff !important;
  background: #222222 !important;
}

.purchase-product-plans {
  display: none !important;
}

.purchase-add-bar {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  border-top: 1px solid rgba(17, 17, 17, 0.07) !important;
  padding-top: 12px !important;
}

.purchase-add-bar span {
  min-width: 0 !important;
  overflow: hidden !important;
  color: rgba(17, 17, 17, 0.58) !important;
  font-size: 12px !important;
  font-weight: 560 !important;
  letter-spacing: -0.012em !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.purchase-add-bar button {
  min-height: 38px !important;
  border: 1px solid #222222 !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: #222222 !important;
  box-shadow: 0 14px 28px rgba(17, 18, 20, 0.12) !important;
  font: inherit !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  padding: 0 18px !important;
}

.purchase-add-bar button:disabled {
  border-color: rgba(17, 17, 17, 0.08) !important;
  color: rgba(17, 17, 17, 0.42) !important;
  background: rgba(255, 255, 255, 0.64) !important;
  box-shadow: none !important;
}

.purchase-cart-list {
  max-height: none !important;
  min-height: 78px !important;
  overflow: auto !important;
  gap: 7px !important;
  padding-right: 2px !important;
}

.purchase-cart-empty {
  border-radius: 18px !important;
  font-size: 12.5px !important;
  padding: 13px !important;
}

.purchase-cart-item {
  grid-template-columns: 34px minmax(0, 1fr) auto 26px !important;
  gap: 8px !important;
  min-height: 56px !important;
  border-radius: 18px !important;
  padding: 8px !important;
  background: rgba(255, 255, 255, 0.58) !important;
}

.purchase-cart-item strong {
  font-size: 12.5px !important;
}

.purchase-cart-item small {
  margin-top: 2px !important;
  font-size: 10.8px !important;
}

.purchase-cart-price {
  font-size: 12px !important;
  font-weight: 620 !important;
  white-space: nowrap !important;
}

.purchase-cart-remove {
  width: 26px !important;
  height: 26px !important;
  font-size: 16px !important;
}

.purchase-summary {
  gap: 10px !important;
  padding-top: 12px !important;
}

.purchase-summary strong {
  margin-top: 4px !important;
  font-size: 15.5px !important;
  line-height: 1.25 !important;
}

.purchase-continue {
  min-height: 44px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
}

.purchase-helper {
  min-height: 0 !important;
  margin: 0 !important;
  color: rgba(17, 17, 17, 0.5) !important;
  font-size: 11.8px !important;
  line-height: 1.42 !important;
}

.purchase-helper:empty {
  display: none !important;
}

.purchase-policy-note {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  gap: 7px 14px !important;
  margin: -4px 0 0 !important;
  border-top: 1px solid rgba(17, 17, 17, 0.07) !important;
  color: rgba(17, 17, 17, 0.46) !important;
  font-size: 11.5px !important;
  line-height: 1.35 !important;
  padding: 12px 2px 0 !important;
}

.purchase-policy-note span {
  white-space: nowrap !important;
}

@media (max-width: 820px) {
  .purchase-dialog {
    width: min(calc(100vw - 24px), 640px) !important;
    max-height: calc(100dvh - 24px) !important;
    overflow-y: auto !important;
    grid-template-rows: auto auto auto !important;
  }

  .purchase-flow {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    gap: 12px !important;
  }

  .purchase-picker,
  .purchase-cart-panel {
    height: auto !important;
  }

  .purchase-product-list {
    max-height: 184px !important;
    min-height: 116px !important;
  }

  .purchase-cart-list {
    max-height: 136px !important;
    min-height: 74px !important;
  }
}

@media (max-width: 520px) {
  .purchase-modal {
    align-items: end !important;
    padding: 10px !important;
  }

  .purchase-dialog {
    width: 100% !important;
    max-height: calc(100dvh - 20px) !important;
    gap: 12px !important;
    border-radius: 28px !important;
    padding: 16px !important;
    grid-template-rows: auto auto auto !important;
  }

  .purchase-dialog h2 {
    font-size: 30px !important;
  }

  .purchase-dialog-top p:not(.purchase-eyebrow) {
    font-size: 13px !important;
  }

  .purchase-plan-picker {
    grid-template-columns: 1fr !important;
    border-radius: 20px !important;
    padding: 6px !important;
  }

  .purchase-plan-picker button {
    justify-content: space-between !important;
    min-height: 36px !important;
    padding: 0 12px !important;
  }

  .purchase-picker,
  .purchase-cart-panel {
    border-radius: 24px !important;
    padding: 12px !important;
  }

  .purchase-product-list {
    max-height: 150px !important;
    min-height: 116px !important;
  }

  .purchase-product-option {
    grid-template-columns: 34px minmax(0, 1fr) auto !important;
  }

  .purchase-product-check {
    min-width: 54px !important;
    max-width: 92px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .purchase-add-bar {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .purchase-add-bar button {
    width: 100% !important;
  }

  .purchase-policy-note {
    gap: 6px 10px !important;
    font-size: 11px !important;
  }

  .purchase-policy-note span {
    white-space: normal !important;
  }
}

/* Final catalog checkout lock: this must stay at EOF. */
.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-dialog {
  width: min(520px, calc(100vw - 32px)) !important;
}

.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-flow {
  gap: 0 !important;
}

.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-cart-panel {
  display: none !important;
}

.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-product-list {
  max-height: 246px !important;
}

.purchase-modal.is-catalog-select.has-catalog-selection .purchase-dialog {
  width: min(560px, calc(100vw - 32px)) !important;
}

.purchase-modal.is-catalog-select.has-catalog-selection .purchase-cart-panel {
  animation: purchase-review-reveal-final 0.24s cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

@keyframes purchase-review-reveal-final {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.purchase-modal.is-catalog-select .purchase-product-check {
  display: inline-flex !important;
  min-width: 70px !important;
  min-height: 24px !important;
  align-items: center !important;
  justify-content: center !important;
  grid-column: 1 / -1 !important;
  justify-self: start !important;
  border-radius: 999px !important;
  background: rgba(17, 17, 17, 0.045) !important;
  color: rgba(17, 17, 17, 0.58) !important;
  font-size: 10.5px !important;
  font-weight: 720 !important;
  line-height: 1 !important;
  padding: 0 9px !important;
}

.purchase-modal.is-catalog-select .purchase-product-option.is-selected .purchase-product-check {
  background: #f1fd82 !important;
  color: #111111 !important;
}

.purchase-modal.is-catalog-select .purchase-product-option.is-selected {
  border-color: rgba(17, 17, 17, 0.14) !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

.purchase-modal.is-catalog-select .purchase-product-option.is-selected .purchase-product-mark {
  background: #f1fd82 !important;
}

.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-summary {
  display: none !important;
}

@media (max-width: 560px) {
  .purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-dialog,
  .purchase-modal.is-catalog-select.has-catalog-selection .purchase-dialog {
    width: 100% !important;
  }

  .purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-product-list {
    max-height: 210px !important;
  }
}

/* Final purchase behavior alignment: catalog chooses app, product/demo choose plan. */
.purchase-modal.is-catalog-select .purchase-dialog {
  width: min(560px, calc(100vw - 32px)) !important;
  max-height: min(740px, calc(100dvh - 32px)) !important;
  grid-template-rows: auto minmax(0, 1fr) auto !important;
  gap: 14px !important;
  padding: 24px !important;
}

.purchase-modal.is-catalog-select .purchase-dialog h2 {
  max-width: 420px !important;
  font-size: clamp(28px, 5vw, 38px) !important;
  letter-spacing: -0.035em !important;
}

.purchase-modal.is-catalog-select .purchase-dialog-top p:not(.purchase-eyebrow) {
  max-width: 410px !important;
  margin-top: 8px !important;
  font-size: 13.5px !important;
}

.purchase-modal.is-catalog-select .purchase-flow {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
}

.purchase-modal.is-catalog-select .purchase-picker,
.purchase-modal.is-catalog-select .purchase-cart-panel {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.purchase-modal.is-catalog-select .purchase-picker {
  grid-template-rows: auto minmax(0, 1fr) !important;
  gap: 10px !important;
}

.purchase-modal.is-catalog-select .purchase-step-block,
.purchase-modal.is-catalog-select .purchase-add-bar,
.purchase-modal.is-catalog-select .purchase-cart-head {
  display: none !important;
}

.purchase-modal.is-catalog-select .purchase-search {
  display: grid !important;
  gap: 7px !important;
}

.purchase-modal.is-catalog-select .purchase-search span {
  height: auto !important;
  overflow: visible !important;
  position: static !important;
  width: auto !important;
  color: rgba(17, 17, 17, 0.44) !important;
  font-size: 10.5px !important;
  font-weight: 760 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

.purchase-modal.is-catalog-select .purchase-search input {
  min-height: 42px !important;
  font-size: 13.5px !important;
}

.purchase-modal.is-catalog-select .purchase-product-list {
  min-height: 0 !important;
  max-height: 210px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  overflow: auto !important;
  padding-right: 2px !important;
}

.purchase-modal.is-catalog-select .purchase-product-option {
  grid-template-columns: 36px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  min-height: 86px !important;
  align-content: start !important;
  gap: 9px 10px !important;
  border-radius: 20px !important;
  padding: 11px !important;
}

.purchase-modal.is-catalog-select .purchase-product-option small {
  display: block !important;
}

.purchase-modal.is-catalog-select .purchase-product-check {
  min-width: 0 !important;
  grid-column: 1 / -1 !important;
  justify-self: start !important;
  padding: 0 !important;
  background: transparent !important;
  color: rgba(17, 17, 17, 0.52) !important;
}

.purchase-modal.is-catalog-select .purchase-product-option.is-selected .purchase-product-check {
  color: #111111 !important;
}

.purchase-modal.is-catalog-select .purchase-cart-panel {
  grid-template-rows: minmax(0, 1fr) auto auto !important;
  gap: 12px !important;
}

.purchase-modal.is-catalog-select .purchase-cart-list {
  min-height: 0 !important;
  max-height: none !important;
  display: grid !important;
  gap: 8px !important;
  overflow: visible !important;
  padding: 0 !important;
}

.purchase-modal.is-catalog-select .purchase-cart-item {
  grid-template-columns: 38px minmax(0, 1fr) auto !important;
  min-height: 64px !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.66) !important;
}

.purchase-modal.is-catalog-select .purchase-cart-remove {
  display: none !important;
}

.purchase-modal.is-catalog-select .purchase-bundle-slot--catalog {
  background: rgba(255, 255, 255, 0.46) !important;
}

.purchase-modal.is-catalog-select .purchase-summary {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  padding-top: 13px !important;
}

.purchase-modal.is-catalog-select .purchase-summary strong {
  margin-top: 0 !important;
  font-size: 24px !important;
}

.purchase-modal.is-catalog-select .purchase-continue {
  width: auto !important;
  min-width: 144px !important;
  background: #f1fd82 !important;
  color: #111111 !important;
  border-color: #d9e76f !important;
  box-shadow: 0 18px 42px rgba(188, 200, 74, 0.22) !important;
}

@media (max-width: 560px) {
  .purchase-modal.is-catalog-select .purchase-dialog {
    width: 100% !important;
    max-height: calc(100dvh - 16px) !important;
    padding: 16px !important;
  }

  .purchase-modal.is-catalog-select .purchase-product-list {
    grid-template-columns: 1fr 1fr !important;
    max-height: 168px !important;
  }

  .purchase-modal.is-catalog-select .purchase-product-option {
    min-height: 80px !important;
    padding: 10px !important;
  }

  .purchase-modal.is-catalog-select .purchase-product-option small {
    display: none !important;
  }

  .purchase-modal.is-catalog-select .purchase-summary {
    grid-template-columns: 1fr !important;
  }

  .purchase-modal.is-catalog-select .purchase-continue {
    width: 100% !important;
  }
}

/* Landing checkout package/app parity. Absolute EOF override. */
.purchase-modal.is-catalog-select .purchase-dialog {
  width: min(468px, calc(100vw - 32px)) !important;
  max-height: min(760px, calc(100dvh - 32px)) !important;
  overflow-y: auto !important;
}

.purchase-modal.is-catalog-select .purchase-dialog-top {
  align-items: start !important;
}

.purchase-modal.is-catalog-select .purchase-dialog h2 {
  font-size: 26px !important;
  letter-spacing: -0.028em !important;
}

.purchase-modal.is-catalog-select .purchase-flow {
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

.purchase-modal.is-catalog-select .purchase-picker,
.purchase-modal.is-catalog-select .purchase-cart-panel {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.purchase-modal.is-catalog-select .purchase-picker {
  gap: 13px !important;
}

.purchase-modal.is-catalog-select .purchase-step-block {
  display: grid !important;
  gap: 8px !important;
  padding-bottom: 4px !important;
}

.purchase-modal.is-catalog-select .purchase-step-label,
.purchase-modal.is-catalog-select .purchase-search span {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  color: rgba(17, 17, 17, 0.44) !important;
  font-size: 10.5px !important;
  font-weight: 760 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

.purchase-modal.is-catalog-select .purchase-plan-saving-note,
.purchase-modal.is-catalog-select .purchase-add-bar,
.purchase-modal.is-catalog-select .purchase-cart-head {
  display: none !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button {
  min-height: 46px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  justify-items: stretch !important;
  gap: 2px 12px !important;
  border-radius: 18px !important;
  padding: 12px 14px !important;
  text-align: left !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button span {
  justify-self: start !important;
  font-size: 13px !important;
  font-weight: 760 !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button strong {
  justify-self: end !important;
  font-size: 14px !important;
  font-weight: 780 !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button small {
  grid-column: 1 / -1 !important;
  color: rgba(17, 17, 17, 0.58) !important;
  font-size: 11px !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button.is-selected {
  border-color: rgba(17, 17, 17, 0.18) !important;
  background: #f1fd82 !important;
  color: #111111 !important;
  box-shadow: 0 14px 30px rgba(188, 200, 74, 0.2) !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button.is-selected span,
.purchase-modal.is-catalog-select .purchase-plan-picker button.is-selected strong,
.purchase-modal.is-catalog-select .purchase-plan-picker button.is-selected small {
  color: #111111 !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button.is-disabled,
.purchase-modal.is-catalog-select .purchase-plan-picker button:disabled {
  min-height: 46px !important;
  opacity: 0.56 !important;
  box-shadow: none !important;
}

.purchase-modal.is-catalog-select .purchase-search {
  gap: 8px !important;
  padding-top: 3px !important;
}

.purchase-modal.is-catalog-select .purchase-product-list {
  max-height: 170px !important;
}

.purchase-modal.is-catalog-select .purchase-summary {
  grid-template-columns: minmax(0, 1fr) auto !important;
}

@media (max-width: 560px) {
  .purchase-modal.is-catalog-select .purchase-dialog {
    max-height: calc(100dvh - 16px) !important;
  }

  .purchase-modal.is-catalog-select .purchase-product-list {
    max-height: 156px !important;
  }

  .purchase-modal.is-catalog-select .purchase-summary {
    grid-template-columns: 1fr !important;
  }
}

/* Landing checkout package/app parity. Absolute final override. */
.purchase-modal.is-catalog-select .purchase-dialog {
  width: min(468px, calc(100vw - 32px)) !important;
  max-height: min(760px, calc(100dvh - 32px)) !important;
  overflow-y: auto !important;
}

.purchase-modal.is-catalog-select .purchase-dialog-top {
  align-items: start !important;
}

.purchase-modal.is-catalog-select .purchase-dialog h2 {
  font-size: 26px !important;
  letter-spacing: -0.028em !important;
}

.purchase-modal.is-catalog-select .purchase-flow {
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

.purchase-modal.is-catalog-select .purchase-picker,
.purchase-modal.is-catalog-select .purchase-cart-panel {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.purchase-modal.is-catalog-select .purchase-picker {
  gap: 13px !important;
}

.purchase-modal.is-catalog-select .purchase-step-block {
  display: grid !important;
  gap: 8px !important;
  padding-bottom: 4px !important;
}

.purchase-modal.is-catalog-select .purchase-step-label,
.purchase-modal.is-catalog-select .purchase-search span {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  color: rgba(17, 17, 17, 0.44) !important;
  font-size: 10.5px !important;
  font-weight: 760 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

.purchase-modal.is-catalog-select .purchase-plan-saving-note,
.purchase-modal.is-catalog-select .purchase-add-bar,
.purchase-modal.is-catalog-select .purchase-cart-head {
  display: none !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button {
  min-height: 46px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  justify-items: stretch !important;
  gap: 2px 12px !important;
  border-radius: 18px !important;
  padding: 12px 14px !important;
  text-align: left !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button span {
  justify-self: start !important;
  font-size: 13px !important;
  font-weight: 760 !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button strong {
  justify-self: end !important;
  font-size: 14px !important;
  font-weight: 780 !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button small {
  grid-column: 1 / -1 !important;
  color: rgba(17, 17, 17, 0.58) !important;
  font-size: 11px !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button.is-selected {
  border-color: rgba(17, 17, 17, 0.18) !important;
  background: #f1fd82 !important;
  color: #111111 !important;
  box-shadow: 0 14px 30px rgba(188, 200, 74, 0.2) !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button.is-selected span,
.purchase-modal.is-catalog-select .purchase-plan-picker button.is-selected strong,
.purchase-modal.is-catalog-select .purchase-plan-picker button.is-selected small {
  color: #111111 !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button.is-disabled,
.purchase-modal.is-catalog-select .purchase-plan-picker button:disabled {
  min-height: 46px !important;
  opacity: 0.56 !important;
  box-shadow: none !important;
}

.purchase-modal.is-catalog-select .purchase-search {
  gap: 8px !important;
  padding-top: 3px !important;
}

.purchase-modal.is-catalog-select .purchase-product-list {
  max-height: 170px !important;
}

.purchase-modal.is-catalog-select .purchase-summary {
  grid-template-columns: minmax(0, 1fr) auto !important;
}

@media (max-width: 560px) {
  .purchase-modal.is-catalog-select .purchase-dialog {
    max-height: calc(100dvh - 16px) !important;
  }

  .purchase-modal.is-catalog-select .purchase-product-list {
    max-height: 156px !important;
  }

  .purchase-modal.is-catalog-select .purchase-summary {
    grid-template-columns: 1fr !important;
  }
}

/* Landing checkout package/app parity. Keep this after older catalog modal trials. */
.purchase-modal.is-catalog-select .purchase-dialog {
  width: min(468px, calc(100vw - 32px)) !important;
  max-height: min(760px, calc(100dvh - 32px)) !important;
  overflow-y: auto !important;
}

.purchase-modal.is-catalog-select .purchase-dialog-top {
  align-items: start !important;
}

.purchase-modal.is-catalog-select .purchase-dialog h2 {
  font-size: 26px !important;
  letter-spacing: -0.028em !important;
}

.purchase-modal.is-catalog-select .purchase-flow {
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

.purchase-modal.is-catalog-select .purchase-picker,
.purchase-modal.is-catalog-select .purchase-cart-panel {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.purchase-modal.is-catalog-select .purchase-picker {
  gap: 13px !important;
}

.purchase-modal.is-catalog-select .purchase-step-block {
  display: grid !important;
  gap: 8px !important;
  padding-bottom: 4px !important;
}

.purchase-modal.is-catalog-select .purchase-step-label,
.purchase-modal.is-catalog-select .purchase-search span {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  color: rgba(17, 17, 17, 0.44) !important;
  font-size: 10.5px !important;
  font-weight: 760 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

.purchase-modal.is-catalog-select .purchase-plan-saving-note,
.purchase-modal.is-catalog-select .purchase-add-bar,
.purchase-modal.is-catalog-select .purchase-cart-head {
  display: none !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button {
  min-height: 46px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  justify-items: stretch !important;
  gap: 2px 12px !important;
  border-radius: 18px !important;
  padding: 12px 14px !important;
  text-align: left !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button span {
  justify-self: start !important;
  font-size: 13px !important;
  font-weight: 760 !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button strong {
  justify-self: end !important;
  font-size: 14px !important;
  font-weight: 780 !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button small {
  grid-column: 1 / -1 !important;
  color: rgba(17, 17, 17, 0.58) !important;
  font-size: 11px !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button.is-selected {
  border-color: rgba(17, 17, 17, 0.18) !important;
  background: #f1fd82 !important;
  color: #111111 !important;
  box-shadow: 0 14px 30px rgba(188, 200, 74, 0.2) !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button.is-selected span,
.purchase-modal.is-catalog-select .purchase-plan-picker button.is-selected strong,
.purchase-modal.is-catalog-select .purchase-plan-picker button.is-selected small {
  color: #111111 !important;
}

.purchase-modal.is-catalog-select .purchase-plan-picker button.is-disabled,
.purchase-modal.is-catalog-select .purchase-plan-picker button:disabled {
  min-height: 46px !important;
  opacity: 0.56 !important;
  box-shadow: none !important;
}

.purchase-modal.is-catalog-select .purchase-search {
  gap: 8px !important;
  padding-top: 3px !important;
}

.purchase-modal.is-catalog-select .purchase-product-list {
  max-height: 170px !important;
}

.purchase-modal.is-catalog-select .purchase-summary {
  grid-template-columns: minmax(0, 1fr) auto !important;
}

@media (max-width: 560px) {
  .purchase-modal.is-catalog-select .purchase-dialog {
    max-height: calc(100dvh - 16px) !important;
  }

  .purchase-modal.is-catalog-select .purchase-product-list {
    max-height: 156px !important;
  }

  .purchase-modal.is-catalog-select .purchase-summary {
    grid-template-columns: 1fr !important;
  }
}

/* Catalog checkout is two-step: pick an app first, then reveal review. */
.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-dialog {
  width: min(520px, calc(100vw - 32px)) !important;
}

.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-flow {
  gap: 0 !important;
}

.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-cart-panel {
  display: none !important;
}

.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-product-list {
  max-height: 246px !important;
}

.purchase-modal.is-catalog-select.has-catalog-selection .purchase-dialog {
  width: min(560px, calc(100vw - 32px)) !important;
}

.purchase-modal.is-catalog-select.has-catalog-selection .purchase-cart-panel {
  animation: purchase-review-reveal 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes purchase-review-reveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.purchase-modal.is-catalog-select .purchase-product-check {
  display: inline-flex !important;
  min-width: 70px !important;
  min-height: 24px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: rgba(17, 17, 17, 0.045) !important;
  color: rgba(17, 17, 17, 0.58) !important;
  font-size: 10.5px !important;
  font-weight: 720 !important;
  line-height: 1 !important;
  padding: 0 9px !important;
}

.purchase-modal.is-catalog-select .purchase-product-option.is-selected .purchase-product-check {
  background: #f1fd82 !important;
  color: #111111 !important;
}

.purchase-modal.is-catalog-select .purchase-product-option.is-selected {
  border-color: rgba(17, 17, 17, 0.14) !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

.purchase-modal.is-catalog-select .purchase-product-option.is-selected .purchase-product-mark {
  background: #f1fd82 !important;
}

.purchase-continue:not(:disabled) {
  border-color: #d9e76f !important;
  background: #f1fd82 !important;
  color: #111111 !important;
  box-shadow: 0 18px 42px rgba(188, 200, 74, 0.22) !important;
}

.purchase-continue:not(:disabled):hover,
.purchase-continue:not(:disabled):focus-visible {
  background: #f1fd82 !important;
  color: #111111 !important;
}

.purchase-plan-picker.is-hidden {
  display: none !important;
}

.purchase-modal.is-product-locked .purchase-dialog {
  width: min(468px, calc(100vw - 32px)) !important;
  max-height: min(720px, calc(100dvh - 32px)) !important;
  padding: 24px !important;
  border-radius: 28px !important;
}

.purchase-modal.is-product-locked .purchase-dialog-top {
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 16px !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

.purchase-modal.is-product-locked .purchase-dialog h2 {
  max-width: 360px !important;
  font-size: 26px !important;
  line-height: 1.05 !important;
}

.purchase-modal.is-product-locked .purchase-dialog-top p:not(.purchase-eyebrow) {
  max-width: 390px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.purchase-modal.is-product-locked .purchase-flow {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

.purchase-modal.is-product-locked .purchase-picker,
.purchase-modal.is-product-locked .purchase-cart-panel {
  display: grid !important;
  gap: 12px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.purchase-modal.is-product-locked .purchase-step-block {
  display: grid !important;
  gap: 8px !important;
}

.purchase-modal.is-product-locked .purchase-step-label {
  display: none !important;
}

.purchase-modal.is-product-locked .purchase-plan-saving-note {
  color: rgba(17, 17, 17, 0.54) !important;
  font-size: 12px !important;
}

.purchase-modal.is-product-locked .purchase-search,
.purchase-modal.is-product-locked .purchase-add-bar,
.purchase-modal.is-product-locked .purchase-cart-head,
.purchase-modal.is-product-locked .purchase-cart-list {
  display: none !important;
}

.purchase-modal.is-product-locked .purchase-product-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

.purchase-selected-product-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.purchase-selected-product-card small {
  display: block;
  color: rgba(17, 17, 17, 0.5);
  font-size: 12px;
  font-weight: 620;
}

.purchase-selected-product-card strong {
  display: block;
  color: #111111;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
}

.purchase-modal.is-product-locked .purchase-product-mark {
  width: 42px !important;
  height: 42px !important;
  border-radius: 16px !important;
  background: #f1fd82 !important;
  color: #111111 !important;
  box-shadow: none !important;
}

.purchase-bundle-slot {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px dashed rgba(17, 17, 17, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.4);
}

.purchase-bundle-slot span {
  color: #111111;
  font-size: 12.5px;
  font-weight: 720;
}

.purchase-bundle-slot small {
  color: rgba(17, 17, 17, 0.52);
  font-size: 11.5px;
  line-height: 1.35;
}

.purchase-modal.is-product-locked .purchase-plan-picker {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}

.purchase-modal.is-product-locked .purchase-plan-picker button {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  justify-content: stretch !important;
  min-height: 0 !important;
  gap: 3px 12px !important;
  padding: 12px 14px !important;
  border-radius: 18px !important;
  text-align: left !important;
}

.purchase-modal.is-product-locked .purchase-plan-picker button span {
  font-size: 13px !important;
  font-weight: 760 !important;
}

.purchase-modal.is-product-locked .purchase-plan-picker button strong {
  font-size: 14px !important;
  font-weight: 760 !important;
}

.purchase-modal.is-product-locked .purchase-plan-picker button small {
  grid-column: 1 / -1 !important;
  color: rgba(17, 17, 17, 0.52) !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
}

.purchase-modal.is-product-locked .purchase-plan-picker button.is-selected {
  border-color: rgba(17, 17, 17, 0.2) !important;
  background: #f1fd82 !important;
  color: #111111 !important;
}

.purchase-modal.is-product-locked .purchase-plan-picker button.is-selected small {
  color: rgba(17, 17, 17, 0.68) !important;
}

.purchase-modal.is-product-locked .purchase-plan-picker button.is-disabled {
  opacity: 0.62 !important;
}

.purchase-modal.is-product-locked .purchase-plan-picker button em {
  display: inline !important;
  margin-left: 4px !important;
  color: inherit !important;
  font-size: 10px !important;
  font-style: normal !important;
  opacity: 0.62 !important;
}

.purchase-modal.is-product-locked .purchase-summary {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  border-top: 1px solid rgba(17, 17, 17, 0.08) !important;
  padding-top: 14px !important;
}

.purchase-modal.is-product-locked .purchase-summary span {
  color: rgba(17, 17, 17, 0.5) !important;
  font-size: 12px !important;
}

.purchase-modal.is-product-locked .purchase-summary strong {
  font-size: 18px !important;
}

.purchase-modal.is-product-locked .purchase-continue {
  width: auto !important;
  min-width: 156px !important;
}

.purchase-modal.is-catalog-select .purchase-step-block {
  gap: 6px !important;
}

/* Checkout product search/card final override. Keep this block at EOF. */
.purchase-plan-picker button.is-selected {
  background: #edff5f !important;
  color: #111111 !important;
  border-color: rgba(17, 17, 17, 0.16) !important;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.1) !important;
}

.purchase-plan-picker button.is-selected span,
.purchase-plan-picker button.is-selected strong,
.purchase-plan-picker button.is-selected .plan-price-period,
.purchase-plan-picker button.is-selected .plan-price-cents {
  color: #111111 !important;
}

.purchase-plan-picker button span {
  font-size: 13px !important;
}

.purchase-plan-picker button strong {
  font-size: 14px !important;
}

.purchase-product-list {
  grid-template-columns: repeat(auto-fit, minmax(188px, 1fr)) !important;
}

.purchase-product-option {
  grid-template-columns: 38px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  min-height: 94px !important;
  align-content: start !important;
  border-radius: 23px !important;
}

.purchase-product-check {
  grid-column: 1 / -1 !important;
  justify-self: start !important;
}

@media (max-width: 560px) {
  .purchase-plan-picker {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
  }

  .purchase-product-list {
    grid-template-columns: 1fr 1fr !important;
    min-height: 126px !important;
    max-height: 154px !important;
  }

  .purchase-product-option {
    grid-template-columns: 32px minmax(0, 1fr) !important;
    min-height: 86px !important;
    padding: 10px !important;
  }

  .purchase-product-option small {
    display: none !important;
  }

  .purchase-product-check {
    max-width: none !important;
  }
}

/* Final mobile checkout override. Must stay at EOF so older modal trials cannot win. */
@media (max-width: 560px) {
  .purchase-picker {
    overflow: visible !important;
  }

  .purchase-plan-picker {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 6px !important;
  }

  .purchase-plan-picker button {
    min-height: 38px !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 0 9px !important;
  }

  .purchase-plan-picker button span {
    font-size: 11px !important;
  }

  .purchase-plan-picker button strong {
    font-size: 11px !important;
  }

  .purchase-plan-picker button.is-disabled strong {
    display: none !important;
  }

  .purchase-plan-picker button em {
    font-size: 7.5px !important;
    margin-left: 1px !important;
  }

  .purchase-product-list {
    min-height: 136px !important;
    max-height: 156px !important;
  }
}

/* Purchase modal final: make the selector feel like the post-purchase review flow. */
.purchase-modal {
  background: rgba(248, 248, 246, 0.62) !important;
}

.purchase-dialog {
  width: min(calc(100vw - 32px), 980px) !important;
  max-height: min(90dvh, 740px) !important;
  gap: 16px !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at 78% 12%, rgba(237, 255, 95, 0.2), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(210, 222, 255, 0.42), transparent 32%),
    rgba(248, 248, 246, 0.94) !important;
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.11) !important;
  padding: clamp(22px, 3vw, 34px) !important;
}

.purchase-dialog-top {
  align-items: center !important;
}

.purchase-dialog h2 {
  max-width: 560px !important;
  font-size: clamp(42px, 5vw, 64px) !important;
  font-weight: 720 !important;
  line-height: 0.95 !important;
  letter-spacing: -0.045em !important;
}

.purchase-dialog-top p:not(.purchase-eyebrow) {
  max-width: 430px !important;
  margin-top: 12px !important;
  color: rgba(17, 17, 17, 0.54) !important;
  font-size: 14px !important;
}

.purchase-flow {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 342px) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.purchase-picker,
.purchase-cart-panel {
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.07) !important;
}

.purchase-picker {
  grid-template-rows: auto auto minmax(0, 1fr) auto !important;
  gap: 13px !important;
  padding: 17px !important;
}

.purchase-cart-panel {
  gap: 13px !important;
  padding: 17px !important;
}

.purchase-step-block {
  gap: 9px !important;
}

.purchase-step-label,
.purchase-search span {
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.purchase-plan-saving-note {
  display: none !important;
}

.purchase-plan-picker {
  grid-template-columns: 1fr auto auto !important;
  gap: 7px !important;
}

.purchase-plan-picker button {
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  border-radius: 999px !important;
  padding: 0 12px !important;
  text-align: center !important;
}

.purchase-plan-picker button span {
  font-size: 12px !important;
  font-weight: 720 !important;
  white-space: nowrap !important;
}

.purchase-plan-picker button strong {
  font-size: 12px !important;
  font-weight: 730 !important;
  white-space: nowrap !important;
}

.purchase-plan-picker button em {
  margin-left: 2px !important;
  font-size: 8px !important;
}

.purchase-plan-picker button.is-selected {
  background: #222222 !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.13) !important;
}

.purchase-plan-picker button.is-selected strong,
.purchase-plan-picker button.is-selected span {
  color: #ffffff !important;
}

.purchase-plan-picker button.is-disabled,
.purchase-plan-picker button:disabled {
  background: rgba(255, 255, 255, 0.44) !important;
  color: rgba(17, 17, 17, 0.44) !important;
  opacity: 1 !important;
}

.purchase-search input {
  min-height: 43px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  font-size: 13.5px !important;
}

.purchase-product-list {
  min-height: 178px !important;
  gap: 7px !important;
}

.purchase-product-option {
  grid-template-columns: 34px minmax(0, 1fr) auto !important;
  min-height: 58px !important;
  gap: 10px !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.52) !important;
  padding: 10px !important;
}

.purchase-product-option .purchase-product-mark,
.purchase-cart-item .purchase-product-mark {
  width: 33px !important;
  height: 33px !important;
  border-radius: 13px !important;
  font-size: 10px !important;
}

.purchase-product-option strong,
.purchase-cart-item strong {
  font-size: 13.5px !important;
  font-weight: 730 !important;
}

.purchase-product-option small,
.purchase-cart-item small {
  color: rgba(17, 17, 17, 0.46) !important;
  font-size: 11px !important;
}

.purchase-product-check {
  min-width: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: rgba(17, 17, 17, 0.5) !important;
  font-size: 11px !important;
  font-weight: 720 !important;
  padding: 0 !important;
}

.purchase-product-option.is-selected .purchase-product-check {
  background: transparent !important;
  color: #111111 !important;
}

.purchase-product-option.is-selected .purchase-product-check::before {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  display: inline-block !important;
  margin-right: 7px !important;
  border-radius: 999px !important;
  background: #edff66 !important;
  box-shadow: 0 0 0 4px rgba(237, 255, 95, 0.22) !important;
}

.purchase-add-bar {
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  border-top: 1px solid rgba(17, 17, 17, 0.08) !important;
  padding-top: 13px !important;
}

.purchase-add-bar span {
  color: rgba(17, 17, 17, 0.48) !important;
  font-size: 12px !important;
  font-weight: 620 !important;
  line-height: 1.35 !important;
}

.purchase-add-bar button {
  min-height: 39px !important;
  padding: 0 17px !important;
}

.purchase-add-bar button:disabled {
  border-color: rgba(17, 17, 17, 0.08) !important;
  background: rgba(255, 255, 255, 0.62) !important;
  color: rgba(17, 17, 17, 0.45) !important;
}

.purchase-cart-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.purchase-cart-head span,
.purchase-summary span {
  color: rgba(17, 17, 17, 0.42) !important;
  font-size: 10.5px !important;
}

.purchase-cart-head strong {
  background: #edff66 !important;
  font-size: 11px !important;
}

.purchase-cart-list {
  min-height: 114px !important;
  gap: 7px !important;
}

.purchase-cart-empty {
  min-height: 114px !important;
  display: grid !important;
  place-items: center !important;
  text-align: center !important;
}

.purchase-cart-item {
  grid-template-columns: 34px minmax(0, 1fr) auto 26px !important;
  min-height: 58px !important;
  border-radius: 20px !important;
  padding: 10px !important;
}

.purchase-cart-price {
  font-size: 12.5px !important;
}

.purchase-cart-remove {
  width: 26px !important;
  height: 26px !important;
}

.purchase-summary {
  display: grid !important;
  gap: 13px !important;
  border-top: 1px solid rgba(17, 17, 17, 0.08) !important;
  padding-top: 14px !important;
}

.purchase-summary > div {
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.purchase-summary strong {
  margin-top: 0 !important;
  font-size: 30px !important;
}

.purchase-continue {
  min-height: 46px !important;
}

.purchase-helper {
  min-height: 0 !important;
  margin: 0 !important;
}

.purchase-policy-note {
  justify-content: center !important;
  gap: 8px 18px !important;
}

.purchase-policy-note span {
  font-size: 11.5px !important;
}

@media (max-width: 900px) {
  .purchase-dialog {
    width: min(calc(100vw - 24px), 700px) !important;
    max-height: calc(100dvh - 24px) !important;
  }

  .purchase-flow {
    grid-template-columns: 1fr !important;
  }

  .purchase-picker,
  .purchase-cart-panel {
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.06) !important;
  }

  .purchase-product-list {
    max-height: 172px !important;
  }

  .purchase-cart-list {
    min-height: 70px !important;
    max-height: 142px !important;
  }
}

@media (max-width: 560px) {
  .purchase-modal {
    align-items: end !important;
    padding: 8px !important;
  }

  .purchase-dialog {
    width: 100% !important;
    max-height: calc(100dvh - 16px) !important;
    gap: 13px !important;
    border-radius: 28px !important;
    padding: 16px !important;
  }

  .purchase-dialog-top {
    gap: 10px !important;
  }

  .purchase-dialog h2 {
    font-size: 34px !important;
  }

  .purchase-dialog-top p:not(.purchase-eyebrow) {
    display: none !important;
  }

  .purchase-picker,
  .purchase-cart-panel {
    border-radius: 24px !important;
    padding: 13px !important;
  }

  .purchase-plan-picker {
    grid-template-columns: 1fr !important;
  }

  .purchase-plan-picker button {
    min-height: 38px !important;
    justify-content: space-between !important;
  }

  .purchase-plan-picker button.is-disabled {
    min-height: 34px !important;
  }

  .purchase-product-list {
    min-height: 124px !important;
    max-height: 150px !important;
  }

  .purchase-product-option,
  .purchase-cart-item {
    grid-template-columns: 32px minmax(0, 1fr) auto !important;
  }

  .purchase-cart-item {
    grid-template-columns: 32px minmax(0, 1fr) auto 26px !important;
  }

  .purchase-add-bar {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  .purchase-add-bar button {
    width: 100% !important;
  }

  .purchase-summary > div {
    align-items: center !important;
  }

  .purchase-summary strong {
    font-size: 28px !important;
  }

  .purchase-policy-note {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 10px !important;
    justify-content: stretch !important;
  }

  .purchase-policy-note span {
    font-size: 10.5px !important;
  }
}

@media (max-width: 560px) {
  .purchase-picker {
    overflow: visible !important;
  }

  .purchase-plan-picker {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 6px !important;
  }

  .purchase-plan-picker button {
    min-height: 38px !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 0 9px !important;
  }

  .purchase-plan-picker button span {
    font-size: 11px !important;
  }

  .purchase-plan-picker button strong {
    font-size: 11px !important;
  }

  .purchase-plan-picker button.is-disabled strong {
    display: none !important;
  }

  .purchase-plan-picker button em {
    font-size: 7.5px !important;
    margin-left: 1px !important;
  }

  .purchase-product-list {
    min-height: 136px !important;
    max-height: 156px !important;
  }
}

/* Purchase modal review pass: calm checkout selector, aligned with post-purchase review. */
.purchase-modal {
  background: rgba(248, 248, 246, 0.58) !important;
  backdrop-filter: blur(18px) !important;
}

.purchase-dialog {
  width: min(calc(100vw - 34px), 1040px) !important;
  max-height: min(90dvh, 760px) !important;
  grid-template-rows: auto minmax(0, 1fr) auto !important;
  gap: 18px !important;
  border: 1px solid rgba(17, 17, 17, 0.1) !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at 82% 12%, rgba(237, 255, 95, 0.18), transparent 28%),
    radial-gradient(circle at 18% 90%, rgba(210, 222, 255, 0.36), transparent 32%),
    rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.11) !important;
  padding: clamp(22px, 3vw, 34px) !important;
}

.purchase-dialog-top {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 18px !important;
  align-items: start !important;
}

.purchase-dialog h2 {
  max-width: 640px !important;
  font-size: clamp(38px, 4.8vw, 66px) !important;
  font-weight: 720 !important;
  line-height: 0.96 !important;
  letter-spacing: -0.052em !important;
}

.purchase-dialog-top p:not(.purchase-eyebrow) {
  max-width: 520px !important;
  margin-top: 14px !important;
  color: rgba(17, 17, 17, 0.58) !important;
  font-size: 15px !important;
  line-height: 1.52 !important;
}

.purchase-close {
  width: 36px !important;
  height: 36px !important;
  border: 1px solid rgba(17, 17, 17, 0.08) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.7) !important;
  color: rgba(17, 17, 17, 0.7) !important;
  font-size: 20px !important;
  line-height: 1 !important;
}

.purchase-close:hover,
.purchase-close:focus-visible {
  background: #222222 !important;
  color: #ffffff !important;
}

.purchase-flow {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px) !important;
  gap: 18px !important;
}

.purchase-picker,
.purchase-cart-panel {
  border: 1px solid rgba(17, 17, 17, 0.09) !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.68) !important;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.065) !important;
}

.purchase-picker {
  display: grid !important;
  grid-template-rows: auto auto minmax(0, 1fr) auto !important;
  gap: 15px !important;
  padding: 16px !important;
}

.purchase-cart-panel {
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) auto auto !important;
  gap: 14px !important;
  padding: 16px !important;
}

.purchase-step-block {
  display: grid !important;
  gap: 10px !important;
}

.purchase-step-label,
.purchase-search span,
.purchase-cart-head span,
.purchase-summary span {
  color: rgba(17, 17, 17, 0.44) !important;
  font-size: 10.5px !important;
  font-weight: 760 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

.purchase-plan-picker {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

.purchase-plan-picker button {
  min-height: 66px !important;
  display: grid !important;
  justify-items: start !important;
  align-content: center !important;
  gap: 4px !important;
  border: 1px solid rgba(17, 17, 17, 0.08) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.58) !important;
  color: rgba(17, 17, 17, 0.68) !important;
  padding: 12px !important;
  text-align: left !important;
}

.purchase-plan-picker button:hover,
.purchase-plan-picker button:focus-visible {
  border-color: rgba(17, 17, 17, 0.14) !important;
  background: rgba(255, 255, 255, 0.86) !important;
}

.purchase-plan-picker button.is-selected {
  border-color: rgba(17, 17, 17, 0.16) !important;
  background: #edff5f !important;
  color: #111111 !important;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.1) !important;
}

.purchase-plan-picker button.is-selected strong,
.purchase-plan-picker button.is-selected span,
.purchase-plan-picker button.is-selected .plan-price-period,
.purchase-plan-picker button.is-selected .plan-price-cents {
  color: #111111 !important;
}

.purchase-plan-picker button span {
  color: inherit !important;
  font-size: 13px !important;
  font-weight: 760 !important;
}

.purchase-plan-picker button strong {
  color: #111111 !important;
  font-size: 14px !important;
  font-weight: 780 !important;
}

.purchase-plan-picker button em {
  display: inline-flex !important;
  margin-left: 5px !important;
  color: rgba(17, 17, 17, 0.38) !important;
  font-size: 8.5px !important;
  font-style: normal !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.purchase-plan-saving-note {
  max-width: 560px !important;
  color: rgba(17, 17, 17, 0.5) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  padding: 0 !important;
}

.purchase-search {
  display: grid !important;
  gap: 8px !important;
}

.purchase-search input {
  min-height: 44px !important;
  border: 1px solid rgba(17, 17, 17, 0.08) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: #111111 !important;
  font-size: 14px !important;
  padding: 0 16px !important;
}

.purchase-product-list {
  min-height: 180px !important;
  max-height: none !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(188px, 1fr)) !important;
  align-content: start !important;
  gap: 8px !important;
  overflow: auto !important;
  padding-right: 3px !important;
}

.purchase-product-option {
  grid-template-columns: 38px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  min-height: 94px !important;
  gap: 10px 12px !important;
  align-content: start !important;
  border: 1px solid rgba(17, 17, 17, 0.07) !important;
  border-radius: 23px !important;
  background: rgba(255, 255, 255, 0.54) !important;
  padding: 12px !important;
  text-align: left !important;
}

.purchase-product-option:hover,
.purchase-product-option:focus-visible {
  background: rgba(255, 255, 255, 0.88) !important;
  border-color: rgba(17, 17, 17, 0.12) !important;
}

.purchase-product-option.is-selected {
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(17, 17, 17, 0.16) !important;
}

.purchase-product-option .purchase-product-mark,
.purchase-cart-item .purchase-product-mark {
  width: 38px !important;
  height: 38px !important;
  border-radius: 15px !important;
  background: rgba(237, 255, 95, 0.36) !important;
  color: #111111 !important;
  font-size: 11px !important;
  font-weight: 780 !important;
}

.purchase-product-option strong,
.purchase-cart-item strong {
  color: #111111 !important;
  font-size: 14px !important;
  font-weight: 720 !important;
  line-height: 1.2 !important;
}

.purchase-product-option small,
.purchase-cart-item small {
  margin-top: 3px !important;
  color: rgba(17, 17, 17, 0.5) !important;
  font-size: 11.5px !important;
  line-height: 1.25 !important;
}

.purchase-product-check {
  grid-column: 1 / -1 !important;
  justify-self: start !important;
  min-width: 70px !important;
  border-radius: 999px !important;
  background: rgba(17, 17, 17, 0.045) !important;
  color: rgba(17, 17, 17, 0.54) !important;
  font-size: 10.5px !important;
  font-weight: 720 !important;
  padding: 6px 9px !important;
}

.purchase-product-option.is-selected .purchase-product-check {
  background: #222222 !important;
  color: #ffffff !important;
}

.purchase-add-bar {
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 12px !important;
  border-top: 1px solid rgba(17, 17, 17, 0.08) !important;
  padding-top: 14px !important;
}

.purchase-add-bar span {
  color: rgba(17, 17, 17, 0.58) !important;
  font-size: 12.5px !important;
  font-weight: 620 !important;
}

.purchase-add-bar button,
.purchase-continue {
  border: 1px solid #222222 !important;
  border-radius: 999px !important;
  background: #222222 !important;
  color: #ffffff !important;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.16) !important;
  font-size: 13px !important;
  font-weight: 720 !important;
  transition: padding 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

.purchase-add-bar button:hover,
.purchase-add-bar button:focus-visible,
.purchase-continue:hover,
.purchase-continue:focus-visible {
  padding-left: 22px !important;
  padding-right: 22px !important;
  transform: translateY(-1px) !important;
}

.purchase-add-bar button:disabled,
.purchase-continue:disabled {
  border-color: rgba(17, 17, 17, 0.08) !important;
  background: rgba(255, 255, 255, 0.68) !important;
  color: rgba(17, 17, 17, 0.42) !important;
  box-shadow: none !important;
  transform: none !important;
}

.purchase-cart-head {
  padding-bottom: 4px !important;
}

.purchase-cart-head strong {
  border: 1px solid rgba(17, 17, 17, 0.08) !important;
  border-radius: 999px !important;
  background: rgba(237, 255, 95, 0.34) !important;
  color: #111111 !important;
  font-size: 11.5px !important;
  font-weight: 760 !important;
  padding: 7px 10px !important;
}

.purchase-cart-list {
  min-height: 142px !important;
  max-height: none !important;
  display: grid !important;
  align-content: start !important;
  gap: 8px !important;
  overflow: auto !important;
  padding-right: 3px !important;
}

.purchase-cart-empty {
  border: 1px dashed rgba(17, 17, 17, 0.14) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.45) !important;
  color: rgba(17, 17, 17, 0.48) !important;
  font-size: 13px !important;
  padding: 16px !important;
}

.purchase-cart-item {
  grid-template-columns: 38px minmax(0, 1fr) auto 28px !important;
  min-height: 64px !important;
  gap: 10px !important;
  border: 1px solid rgba(17, 17, 17, 0.07) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.58) !important;
  padding: 11px !important;
}

.purchase-cart-price {
  color: #111111 !important;
  font-size: 13px !important;
  font-weight: 760 !important;
}

.purchase-cart-remove {
  width: 28px !important;
  height: 28px !important;
  border-radius: 999px !important;
  background: rgba(17, 17, 17, 0.045) !important;
  color: rgba(17, 17, 17, 0.55) !important;
}

.purchase-summary {
  border-top: 1px solid rgba(17, 17, 17, 0.08) !important;
  padding-top: 14px !important;
}

.purchase-summary strong {
  margin-top: 5px !important;
  color: #111111 !important;
  font-size: clamp(24px, 3vw, 34px) !important;
  font-weight: 720 !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
}

.purchase-continue {
  min-height: 46px !important;
  width: 100% !important;
}

.purchase-helper {
  color: rgba(17, 17, 17, 0.5) !important;
  font-size: 12px !important;
}

.purchase-policy-note {
  border-top: 1px solid rgba(17, 17, 17, 0.08) !important;
  display: flex !important;
  gap: 8px 14px !important;
  margin-top: 0 !important;
  padding-top: 13px !important;
}

.purchase-policy-note span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  color: rgba(17, 17, 17, 0.5) !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.purchase-policy-note span::before {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 999px !important;
  background: #edff66 !important;
  box-shadow: 0 0 0 4px rgba(237, 255, 95, 0.22) !important;
}

@media (max-width: 900px) {
  .purchase-dialog {
    width: min(calc(100vw - 24px), 680px) !important;
    max-height: calc(100dvh - 24px) !important;
    overflow-y: auto !important;
  }

  .purchase-flow {
    grid-template-columns: 1fr !important;
  }

  .purchase-product-list {
    max-height: 220px !important;
  }

  .purchase-cart-list {
    min-height: 84px !important;
    max-height: 170px !important;
  }
}

@media (max-width: 560px) {
  .purchase-modal {
    align-items: end !important;
    padding: 8px !important;
  }

  .purchase-dialog {
    width: 100% !important;
    max-height: calc(100dvh - 16px) !important;
    gap: 13px !important;
    border-radius: 28px !important;
    padding: 16px !important;
  }

  .purchase-dialog h2 {
    font-size: 34px !important;
  }

  .purchase-dialog-top p:not(.purchase-eyebrow) {
    display: none !important;
  }

  .purchase-picker {
    overflow: visible !important;
  }

  .purchase-picker,
  .purchase-cart-panel {
    border-radius: 24px !important;
    padding: 13px !important;
  }

  .purchase-plan-picker {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 6px !important;
  }

  .purchase-plan-picker button {
    min-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 0 9px !important;
  }

  .purchase-plan-picker button span,
  .purchase-plan-picker button strong {
    font-size: 11px !important;
  }

  .purchase-plan-picker button.is-disabled strong {
    display: none !important;
  }

  .purchase-plan-picker button em {
    font-size: 7.5px !important;
    margin-left: 1px !important;
  }

  .purchase-product-list {
    grid-template-columns: 1fr 1fr !important;
    min-height: 136px !important;
    max-height: 156px !important;
  }

  .purchase-product-option {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    min-height: 88px !important;
  }

  .purchase-product-option small {
    display: none !important;
  }

  .purchase-cart-item {
    grid-template-columns: 36px minmax(0, 1fr) auto !important;
  }

  .purchase-cart-item {
    grid-template-columns: 36px minmax(0, 1fr) auto 28px !important;
  }

  .purchase-product-check {
    max-width: none !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .purchase-add-bar {
    grid-template-columns: 1fr !important;
  }

  .purchase-add-bar button {
    width: 100% !important;
  }

  .purchase-policy-note span {
    white-space: normal !important;
  }
}
/* Final catalog checkout lock: this must stay at EOF. */
.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-dialog {
  width: min(520px, calc(100vw - 32px)) !important;
}

.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-flow {
  gap: 0 !important;
}

.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-cart-panel {
  display: none !important;
}

.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-product-list {
  max-height: 246px !important;
}

.purchase-modal.is-catalog-select.has-catalog-selection .purchase-dialog {
  width: min(560px, calc(100vw - 32px)) !important;
}

.purchase-modal.is-catalog-select.has-catalog-selection .purchase-cart-panel {
  animation: purchase-review-reveal-final 0.24s cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

@keyframes purchase-review-reveal-final {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.purchase-modal.is-catalog-select .purchase-product-check {
  display: inline-flex !important;
  min-width: 70px !important;
  min-height: 24px !important;
  align-items: center !important;
  justify-content: center !important;
  grid-column: 1 / -1 !important;
  justify-self: start !important;
  border-radius: 999px !important;
  background: rgba(17, 17, 17, 0.045) !important;
  color: rgba(17, 17, 17, 0.58) !important;
  font-size: 10.5px !important;
  font-weight: 720 !important;
  line-height: 1 !important;
  padding: 0 9px !important;
}

.purchase-modal.is-catalog-select .purchase-product-option.is-selected .purchase-product-check {
  background: #f1fd82 !important;
  color: #111111 !important;
}

.purchase-modal.is-catalog-select .purchase-product-option.is-selected {
  border-color: rgba(17, 17, 17, 0.14) !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

.purchase-modal.is-catalog-select .purchase-product-option.is-selected .purchase-product-mark {
  background: #f1fd82 !important;
}

.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-summary {
  display: none !important;
}

@media (max-width: 560px) {
  .purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-dialog,
  .purchase-modal.is-catalog-select.has-catalog-selection .purchase-dialog {
    width: 100% !important;
  }

  .purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-product-list {
    max-height: 210px !important;
  }
}
/* Final catalog parity with Buy License modal: app choice replaces plan choice. */
.purchase-modal.is-catalog-select .purchase-dialog {
  width: min(468px, calc(100vw - 32px)) !important;
  max-height: min(720px, calc(100dvh - 32px)) !important;
  padding: 24px !important;
  border-radius: 28px !important;
}

.purchase-modal.is-catalog-select.has-catalog-selection .purchase-dialog,
.purchase-modal.is-catalog-select:not(.has-catalog-selection) .purchase-dialog {
  width: min(468px, calc(100vw - 32px)) !important;
}

.purchase-modal.is-catalog-select .purchase-dialog h2 {
  max-width: 360px !important;
  font-size: 26px !important;
  line-height: 1.05 !important;
  letter-spacing: -0.025em !important;
}

.purchase-modal.is-catalog-select .purchase-dialog-top p:not(.purchase-eyebrow) {
  max-width: 390px !important;
  display: block !important;
  margin-top: 8px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.purchase-modal.is-catalog-select .purchase-flow {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

.purchase-modal.is-catalog-select .purchase-picker,
.purchase-modal.is-catalog-select .purchase-cart-panel {
  display: grid !important;
  gap: 12px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.purchase-modal.is-catalog-select .purchase-step-block,
.purchase-modal.is-catalog-select .purchase-add-bar,
.purchase-modal.is-catalog-select .purchase-cart-head {
  display: none !important;
}

.purchase-modal.is-catalog-select .purchase-search {
  display: grid !important;
  gap: 7px !important;
}

.purchase-modal.is-catalog-select .purchase-search span {
  height: auto !important;
  overflow: visible !important;
  position: static !important;
  width: auto !important;
  color: rgba(17, 17, 17, 0.44) !important;
  font-size: 10.5px !important;
  font-weight: 760 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

.purchase-modal.is-catalog-select .purchase-search input {
  min-height: 42px !important;
  border-radius: 999px !important;
  font-size: 13.5px !important;
}

.purchase-modal.is-catalog-select .purchase-product-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  min-height: 0 !important;
  max-height: 184px !important;
  overflow: auto !important;
  padding: 0 !important;
}

.purchase-modal.is-catalog-select .purchase-product-option {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) auto !important;
  grid-template-rows: auto !important;
  align-items: center !important;
  min-height: 72px !important;
  gap: 12px !important;
  padding: 14px !important;
  border: 1px solid rgba(17, 17, 17, 0.1) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.62) !important;
}

.purchase-modal.is-catalog-select .purchase-product-option small {
  display: block !important;
}

.purchase-modal.is-catalog-select .purchase-product-check {
  grid-column: auto !important;
  justify-self: end !important;
  display: inline-flex !important;
  min-width: 70px !important;
  min-height: 26px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: rgba(17, 17, 17, 0.045) !important;
  color: rgba(17, 17, 17, 0.58) !important;
  font-size: 10.5px !important;
  font-weight: 720 !important;
  line-height: 1 !important;
  padding: 0 9px !important;
}

.purchase-modal.is-catalog-select .purchase-product-option.is-selected {
  border-color: rgba(17, 17, 17, 0.2) !important;
  background: #f1fd82 !important;
  color: #111111 !important;
}

.purchase-modal.is-catalog-select .purchase-product-option.is-selected .purchase-product-mark {
  background: rgba(255, 255, 255, 0.58) !important;
  color: #111111 !important;
}

.purchase-modal.is-catalog-select .purchase-product-option.is-selected .purchase-product-check {
  background: rgba(17, 17, 17, 0.08) !important;
  color: #111111 !important;
}

.purchase-modal.is-catalog-select .purchase-cart-list {
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  display: grid !important;
  gap: 8px !important;
  padding: 0 !important;
}

.purchase-modal.is-catalog-select .purchase-bundle-slot--catalog {
  background: rgba(255, 255, 255, 0.4) !important;
}

.purchase-modal.is-catalog-select .purchase-summary {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  border-top: 1px solid rgba(17, 17, 17, 0.08) !important;
  padding-top: 14px !important;
}

.purchase-modal.is-catalog-select .purchase-summary strong {
  margin-top: 0 !important;
  font-size: 18px !important;
  letter-spacing: -0.02em !important;
}

.purchase-modal.is-catalog-select .purchase-continue {
  width: auto !important;
  min-width: 156px !important;
  border-color: #d9e76f !important;
  background: #f1fd82 !important;
  color: #111111 !important;
  box-shadow: 0 18px 42px rgba(188, 200, 74, 0.22) !important;
}

@media (max-width: 560px) {
  .purchase-modal.is-catalog-select .purchase-dialog {
    width: 100% !important;
    max-height: calc(100dvh - 16px) !important;
    padding: 16px !important;
  }

  .purchase-modal.is-catalog-select .purchase-product-option {
    grid-template-columns: 38px minmax(0, 1fr) !important;
  }

  .purchase-modal.is-catalog-select .purchase-product-check {
    grid-column: 1 / -1 !important;
    justify-self: start !important;
  }

  .purchase-modal.is-catalog-select .purchase-summary {
    grid-template-columns: 1fr !important;
  }

  .purchase-modal.is-catalog-select .purchase-continue {
    width: 100% !important;
  }
}
