/**
 * Post-hero landing: block rhythm, glass, DS typography.
 * Accent: --color-accent-primary from variables.css (neutral, no green).
 */
.landing-main,
#financial-workflows-copy {
  --landing-canvas: var(--color-bg-canvas, #020203);
  --landing-accent: var(--color-accent-primary, #d4d4d4);
  --landing-accent-soft: color-mix(in srgb, var(--landing-accent) 22%, transparent);
  --landing-accent-line: color-mix(in srgb, var(--landing-accent) 38%, transparent);
  --landing-block-gap: clamp(var(--spacing-10xl, 5rem), 9vw, var(--spacing-14xl, 7.5rem));
  --landing-block-head-gap: clamp(var(--spacing-6xl, 3rem), 5vw, var(--spacing-8xl, 4.25rem));
  --landing-split-gap: clamp(var(--spacing-4xl, 2rem), 4vw, var(--spacing-6xl, 3rem));
  --landing-glass-bg: color-mix(in srgb, var(--landing-canvas) 72%, transparent);
  --landing-glass-border: var(--color-border-secondary, rgba(238, 238, 238, 0.1));
  --landing-device-glass-border: color-mix(in srgb, var(--landing-text) 16%, transparent);
  --landing-device-glass-background:
    radial-gradient(circle at 70% 16%, color-mix(in srgb, var(--landing-text) 5%, transparent), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--landing-text) 4%, transparent), transparent 38%),
    rgba(2, 2, 3, 0.3);
  --landing-app-card-glass-background:
    radial-gradient(circle at 70% 16%, color-mix(in srgb, var(--landing-text) 5%, transparent), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--landing-text) 4%, transparent), transparent 38%),
    rgba(2, 2, 3, 0.58);
  --landing-device-glass-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 14%, transparent),
    0 2rem 5rem color-mix(in srgb, var(--landing-canvas) 52%, transparent);
  --landing-device-glass-filter: blur(18px) saturate(1.08);
  --landing-text: var(--color-text-primary, #eeeeee);
  --landing-text-muted: var(--color-text-secondary, rgba(238, 238, 238, 0.7));
  --landing-accent-line: color-mix(in srgb, var(--landing-text) 14%, transparent);
  --landing-band: color-mix(in srgb, var(--landing-text) 2.5%, var(--landing-canvas));
  --landing-section-divider-line: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--landing-text) 6%, transparent) 12%,
    color-mix(in srgb, var(--landing-text) 14%, transparent) 30%,
    color-mix(in srgb, var(--landing-text) 14%, transparent) 70%,
    color-mix(in srgb, var(--landing-text) 6%, transparent) 88%,
    transparent 100%
  );
  --landing-section-divider-width: min(1120px, calc(100% - 2rem));
  background-color: var(--landing-canvas);
  color: var(--landing-text);
  font-family: var(--font-primary);
}

/* Final CTA background (root path — var() with relative url breaks on hosting) */
#landing-final-cta.landing-section-photo {
  --landing-section-photo: url('../../img/FinancialMirror.png');
}

/* Photo sections: image, scrim, 32px transparent top edge */
.landing-section-photo {
  --landing-section-photo-opacity: 0.5;
  --landing-section-photo-top-fade: 32px;
  --landing-section-scrim: linear-gradient(
    180deg,
    rgba(2, 2, 3, 0.68) 0%,
    rgba(2, 2, 3, 0.48) 38%,
    rgba(2, 2, 3, 0.62) 100%
  );
  position: relative;
  overflow: hidden;
  background-color: #020203;
}

.landing-section-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--landing-section-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: var(--landing-section-photo-opacity);
  transform: scale(1.06);
  transform-origin: center center;
  will-change: transform;
  /* Transparent top: image fades in over the first 32px */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    rgba(0, 0, 0, 0.2) calc(var(--landing-section-photo-top-fade) * 0.35),
    #000 var(--landing-section-photo-top-fade),
    #000 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    rgba(0, 0, 0, 0.2) calc(var(--landing-section-photo-top-fade) * 0.35),
    #000 var(--landing-section-photo-top-fade),
    #000 100%
  );
}

.landing-section-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  /* ::before holds the photo — top divider matches .landing-main > section::before */
  background-image: var(--landing-section-divider-line), var(--landing-section-scrim);
  background-size: var(--landing-section-divider-width) 1px, cover;
  background-position: top center, center;
  background-repeat: no-repeat, no-repeat;
  pointer-events: none;
}

.landing-section-photo > .landing-grid-container {
  position: relative;
  z-index: 2;
}

.landing-main > section {
  position: relative;
}

/* Section divider: soft horizontal gradient (no long straight bar). */
.landing-main > section:not(.landing-section-photo)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--landing-section-divider-width);
  height: 1px;
  transform: translateX(-50%);
  pointer-events: none;
  background: var(--landing-section-divider-line);
}

.landing-main > section:first-child {
  padding-block-start: clamp(var(--spacing-8xl, 4rem), 7vw, var(--spacing-11xl, 5.5rem)) !important;
}

.landing-main > .landing-section {
  padding-block: var(--landing-block-gap) !important;
}

.landing-main > .landing-section-xl {
  padding-block: clamp(var(--spacing-11xl, 5.5rem), 10vw, var(--spacing-14xl, 8.5rem)) !important;
}

/* —— Section heading —— */
.landing-block-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-lg);
  max-width: 40rem;
  margin-inline: auto;
  margin-block-end: var(--landing-block-head-gap);
}

.landing-block-head--compact {
  margin-block-end: clamp(var(--spacing-4xl, 2rem), 4vw, var(--spacing-6xl, 3rem));
}

/* Eyebrows are kept in markup for semantics/anchors, but hidden in the landing direction. */
.landing-eyebrow {
  display: none;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: var(--font-size-xs, 11px);
  font-weight: var(--font-weight-medium, 500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--landing-text) 52%, transparent);
  background: color-mix(in srgb, var(--landing-text) 2.5%, var(--landing-canvas));
  border: 1px solid color-mix(in srgb, var(--landing-text) 5%, transparent);
  box-shadow: none;
}

.landing-block-title {
  margin: 0;
  font-family: var(--font-serif, 'Instrument Serif', ui-serif, Georgia, serif);
  font-size: clamp(2.05rem, 4.4vw, 3.2rem);
  font-weight: var(--font-weight-medium, 500);
  letter-spacing: -0.022em;
  line-height: var(--line-height-tight, 1.2);
  color: color-mix(in srgb, var(--landing-text) 98%, transparent);
  text-wrap: balance;
}

.landing-block-lead {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(var(--font-size-md, 14px), 1.35vw, var(--font-size-lg, 16px));
  line-height: var(--line-height-relaxed, 1.6);
  letter-spacing: -0.003em;
  color: color-mix(in srgb, var(--landing-text) 54%, transparent);
  text-wrap: pretty;
}

.landing-block-lead strong {
  color: var(--landing-text);
  font-weight: var(--font-weight-medium, 500);
}

.landing-main a:not([class*='landing-glass']):not(.app-card) {
  color: color-mix(in srgb, var(--landing-text) 78%, var(--landing-accent) 22%);
  text-underline-offset: 0.2em;
  transition: color var(--transition-fast);
}

.landing-main a:not([class*='landing-glass']):not(.app-card):hover {
  color: var(--landing-text);
}

/* —— Section bands —— */
.landing-main > .landing-section:nth-of-type(even),
.landing-main > .landing-section-xl:nth-of-type(even) {
  background-color: var(--landing-band);
}

.landing-main > #apps.landing-section-xl {
  background-color: var(--landing-canvas);
}

#financial-workflows-copy {
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--landing-block-gap);
  background-color: #020203;
}

#financial-workflows-copy > .landing-grid-container {
  position: relative;
  z-index: 1;
  padding-top: clamp(1.5rem, 4vw, 3.25rem);
}

#financial-workflows-copy > .landing-workflow-copy-preview-wrap {
  width: min(100%, 86rem);
  max-width: none;
}

/* Read-only product iframes must never leak app overlays into the landing DOM. */
html[data-landing-page] .appsuite-command-palette {
  display: none !important;
}

#financial-workflows-copy .landing-workflow-copy-head {
  max-width: 74rem;
  margin-bottom: clamp(3rem, 7vw, 5.25rem);
}

#financial-workflows-copy .landing-workflow-copy-eyebrow {
  margin: 0 auto var(--spacing-sm, 0.75rem);
  color: var(--muted-foreground, var(--landing-text-muted));
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

#financial-workflows-copy .landing-workflow-copy-head .landing-hero-title {
  max-width: 74rem;
  margin: 0 auto;
  color: var(--foreground, var(--landing-text));
  font-family: var(--font-serif, 'Instrument Serif', ui-serif, Georgia, serif);
  font-size: clamp(3.05rem, 7.2vw, 5.35rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 1.04;
  text-align: center;
  text-wrap: balance;
}

#financial-workflows-copy .landing-workflow-copy-lead {
  max-width: 46rem;
  margin: var(--spacing-lg, 1.5rem) auto 0;
  color: var(--muted-foreground, var(--landing-text-muted));
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  text-align: center;
  text-wrap: pretty;
}

#financial-workflows-copy .landing-workflow-copy-outcomes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm, 0.75rem) var(--spacing-xl, 2rem);
  margin: var(--spacing-lg, 1.5rem) auto 0;
  padding: 0;
  color: var(--foreground, var(--landing-text));
  font-size: var(--font-size-sm, 0.875rem);
  list-style: none;
}

#financial-workflows-copy .landing-workflow-copy-outcomes li {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs, 0.375rem);
}

#financial-workflows-copy .landing-workflow-copy-outcomes li::before {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: var(--radius-full, 999px);
  background: var(--color-success, var(--primary));
  content: '';
  flex: 0 0 auto;
}

#financial-workflows-copy .landing-workflow-copy-waitlist {
  width: min(100%, 26rem);
  margin: clamp(0.65rem, 1.8vw, 1rem) auto 0;
}

#financial-workflows-copy .landing-workflow-copy-waitlist__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

#financial-workflows-copy .landing-workflow-copy-waitlist__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--spacing-xs, 0.375rem);
  padding: var(--spacing-xs, 0.375rem);
  border: 1px solid var(--landing-device-glass-border);
  border-radius: var(--radius-full, 999px);
  background: var(--landing-device-glass-background);
  box-shadow: var(--landing-device-glass-shadow);
  -webkit-backdrop-filter: var(--landing-device-glass-filter);
  backdrop-filter: var(--landing-device-glass-filter);
  transition:
    border-color var(--transition-fast, 160ms ease),
    box-shadow var(--transition-fast, 160ms ease);
}

#financial-workflows-copy .landing-workflow-copy-waitlist:focus-within .landing-workflow-copy-waitlist__row {
  border-color: color-mix(in srgb, var(--landing-text) 28%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 16%, transparent),
    0 2rem 5rem color-mix(in srgb, var(--landing-canvas) 44%, transparent);
}

#financial-workflows-copy .landing-workflow-copy-waitlist__input {
  min-width: 0;
  min-height: var(--control-height-md, 2.625rem);
  padding-inline: var(--spacing-lg, 1rem);
  border: 0;
  background: transparent;
  color: var(--landing-text);
  font: inherit;
  font-size: 1rem;
  outline: 0;
}

#financial-workflows-copy .landing-workflow-copy-waitlist__input::placeholder {
  color: color-mix(in srgb, var(--landing-text) 46%, transparent);
  transition: color var(--transition-fast, 160ms ease);
}

#financial-workflows-copy .landing-workflow-copy-waitlist__input:focus::placeholder {
  color: transparent;
}

#financial-workflows-copy .landing-workflow-copy-waitlist__input:user-invalid,
#financial-workflows-copy .landing-workflow-copy-waitlist__input.is-invalid {
  color: var(--landing-text);
}

#financial-workflows-copy .landing-workflow-copy-waitlist:has(.landing-workflow-copy-waitlist__input:user-invalid) .landing-workflow-copy-waitlist__row,
#financial-workflows-copy .landing-workflow-copy-waitlist:has(.landing-workflow-copy-waitlist__input.is-invalid) .landing-workflow-copy-waitlist__row {
  border-color: color-mix(in srgb, var(--color-error, #ef4444) 72%, transparent);
}

#financial-workflows-copy .landing-workflow-copy-waitlist__submit {
  min-height: var(--control-height-md, 2.625rem);
  padding-inline: clamp(var(--spacing-xl, 1.25rem), 2vw, var(--spacing-2xl, 1.5rem));
  border: 0;
  border-radius: var(--radius-full, 999px);
  background: var(--landing-text);
  color: var(--landing-canvas);
  font: inherit;
  font-size: var(--font-size-md, 0.875rem);
  font-weight: var(--font-weight-semibold, 600);
  white-space: nowrap;
  cursor: pointer;
  transition:
    background var(--transition-fast, 160ms ease),
    opacity var(--transition-fast, 160ms ease);
}

#financial-workflows-copy .landing-workflow-copy-waitlist__submit:hover:not(:disabled) {
  background: color-mix(in srgb, var(--landing-text) 88%, var(--landing-canvas));
}

#financial-workflows-copy .landing-workflow-copy-waitlist__submit:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--landing-text) 60%, transparent);
  outline-offset: 2px;
}

#financial-workflows-copy .landing-workflow-copy-waitlist__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

#financial-workflows-copy .landing-workflow-copy-waitlist__status {
  min-height: 1.25rem;
  margin: var(--spacing-xs, 0.375rem) 0 0;
  color: color-mix(in srgb, var(--landing-text) 48%, transparent);
  font-size: var(--font-size-xs, 0.75rem);
  line-height: 1.4;
  text-align: center;
}

#financial-workflows-copy .landing-workflow-copy-waitlist__status:empty {
  display: none;
}

#financial-workflows-copy .landing-workflow-copy-waitlist.is-success .landing-workflow-copy-waitlist__status {
  color: var(--color-success, #36d399);
}

#financial-workflows-copy .landing-workflow-copy-waitlist.is-duplicate .landing-workflow-copy-waitlist__status {
  color: var(--color-warning, #fbbf24);
}

#financial-workflows-copy .landing-workflow-copy-waitlist.is-error .landing-workflow-copy-waitlist__status {
  color: var(--color-error, #fb7185);
}

#financial-workflows-copy .landing-workflow-copy-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.4rem);
  width: min(100%, 72rem);
  margin: 0 auto clamp(1rem, 2.3vw, 1.6rem);
  padding-inline: clamp(0.25rem, 1vw, 0.75rem);
}

#financial-workflows-copy .landing-workflow-copy-switch {
  display: inline-grid;
  grid-template-columns: max-content minmax(2.8rem, 4.6rem);
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
  min-height: 2.15rem;
  padding: 0;
  border: 0;
  color: color-mix(in srgb, var(--landing-text) 48%, transparent);
  background: transparent;
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
  font-size: var(--font-size-sm, 0.8125rem);
  font-weight: var(--font-weight-semibold, 600);
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 160ms ease;
}

#financial-workflows-copy .landing-workflow-copy-switch span {
  min-inline-size: max-content;
  white-space: nowrap;
  text-wrap: nowrap;
}

#financial-workflows-copy .landing-workflow-copy-switch i {
  position: relative;
  display: block;
  height: 10px;
  overflow: hidden;
  opacity: 0.88;
}

#financial-workflows-copy .landing-workflow-copy-switch svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

#financial-workflows-copy .landing-workflow-copy-switch path {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

#financial-workflows-copy .landing-workflow-wave-track {
  stroke: color-mix(in srgb, var(--landing-text) 14%, transparent);
  stroke-width: 1.15;
}

#financial-workflows-copy .landing-workflow-wave-active {
  stroke: color-mix(in srgb, var(--landing-text) 82%, transparent);
  stroke-width: 1.25;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

#financial-workflows-copy .landing-workflow-copy-switch:hover {
  color: color-mix(in srgb, var(--landing-text) 86%, transparent);
}

#financial-workflows-copy .landing-workflow-copy-switch:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--landing-text) 44%, transparent);
  outline-offset: 3px;
}

#financial-workflows-copy .landing-workflow-copy-switch.is-active,
#financial-workflows-copy .landing-workflow-copy-switch[aria-pressed="true"] {
  color: color-mix(in srgb, var(--landing-text) 92%, transparent);
}

#financial-workflows-copy .landing-workflow-copy-switch.is-active .landing-workflow-wave-active,
#financial-workflows-copy .landing-workflow-copy-switch[aria-pressed="true"] .landing-workflow-wave-active {
  animation: landing-workflow-switch-wave 4.8s linear infinite;
}

#financial-workflows-copy .landing-product-shot {
  display: grid;
}

#financial-workflows-copy .landing-product-shot--workflow {
  --landing-product-shot-device-radius: calc(var(--radius-xl) + var(--radius-lg));
  --landing-product-shot-image-radius: var(--radius-2xl);
  width: min(100%, 82rem);
}

#financial-workflows-copy .landing-product-shot__window,
#financial-workflows-copy .landing-product-shot__window :where(span, p, strong, b, button) {
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
}

#financial-workflows-copy .landing-workflow-copy-switcher {
  grid-column: 1;
  grid-row: 1;
}

#financial-workflows-copy .landing-product-shot__glass-shell {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  isolation: isolate;
  padding: var(--landing-product-shot-frame-inset);
  overflow: hidden;
  border: 1px solid var(--landing-device-glass-border);
  border-radius: var(--landing-product-shot-device-radius);
  background: var(--landing-device-glass-background);
  box-shadow: var(--landing-device-glass-shadow);
  -webkit-backdrop-filter: var(--landing-device-glass-filter);
  backdrop-filter: var(--landing-device-glass-filter);
}

#financial-workflows-copy .landing-workflow-preview-panel {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

#financial-workflows-copy .landing-workflow-preview-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#financial-workflows-copy .landing-workflow-preview-lines {
  position: absolute;
  inset: auto 1.15rem 1.15rem;
  display: grid;
  gap: 0.55rem;
}

#financial-workflows-copy .landing-workflow-preview-lines i {
  display: block;
  width: var(--line-width, 72%);
  height: 0.55rem;
  border-radius: var(--radius-full, 999px);
  background: color-mix(in srgb, var(--landing-text) 12%, transparent);
}

#financial-workflows-copy .landing-workflow-preview-total {
  display: block;
  margin: 1rem 0 1.5rem;
  color: color-mix(in srgb, var(--landing-text) 92%, transparent);
  font-size: clamp(1.5rem, 3cqi, 2rem);
  line-height: 1;
}

#financial-workflows-copy .landing-product-card strong {
  letter-spacing: -0.032em;
}

#financial-workflows-copy .landing-product-card--hero strong {
  font-size: clamp(1.5rem, calc(4cqi - 0.25rem), 2.65rem);
  line-height: 1.06;
}

#financial-workflows-copy .landing-product-shot__caption {
  display: none;
}

.landing-workflow-copy-video-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.landing-workflow-copy-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.landing-workflow-copy-video-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.54) 42%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(92% 52% at 50% 14%, rgba(0, 0, 0, 0.3) 0%, transparent 58%);
}

/* Product blocks without photos — flat canvas tone, no nth-of-type bands */
.landing-main > #features,
.landing-main > #calculator-suite,
.landing-main > #nucleus-workspace,
.landing-main > #assistant-workspace {
  background-color: var(--landing-canvas);
}

/* Composition spacing: features, nucleus, assistant, use cases */
.landing-main > #features,
.landing-main > #nucleus-workspace,
.landing-main > #assistant-workspace {
  padding-block: clamp(var(--spacing-11xl, 5.5rem), 11vw, var(--spacing-14xl, 7rem)) !important;
}

.landing-main > #what-you-can {
  padding-block: clamp(var(--spacing-12xl, 6rem), 12vw, var(--spacing-15xl, 7.5rem)) !important;
}

.landing-main > #features .landing-block-head,
.landing-main > #nucleus-workspace .landing-block-head,
.landing-main > #assistant-workspace .landing-block-head,
.landing-main > #what-you-can .landing-block-head {
  gap: var(--spacing-xl, 1.25rem);
  margin-block-end: clamp(var(--spacing-7xl, 3.25rem), 6vw, var(--spacing-10xl, 5rem));
}

.landing-main > #features .landing-block-split,
.landing-main > #nucleus-workspace .landing-block-split,
.landing-main > #assistant-workspace .landing-block-split {
  gap: clamp(var(--spacing-5xl, 2.5rem), 5.5vw, var(--spacing-9xl, 4.5rem));
}

@media (min-width: 768px) {
  .landing-main > #features .landing-block-split,
  .landing-main > #nucleus-workspace .landing-block-split,
  .landing-main > #assistant-workspace .landing-block-split {
    gap: clamp(var(--spacing-6xl, 3rem), 6.5vw, var(--spacing-11xl, 5.5rem));
  }
}

.landing-main > #features .landing-block-split__copy > p:first-of-type,
.landing-main > #nucleus-workspace .landing-block-split__copy > p:first-of-type,
.landing-main > #assistant-workspace .landing-block-split__copy > p:first-of-type {
  margin-block-end: var(--spacing-3xl, 2rem);
}

.landing-main > #features .landing-feature-list,
.landing-main > #nucleus-workspace .landing-feature-list,
.landing-main > #assistant-workspace .landing-feature-list {
  gap: var(--spacing-lg, 1rem);
}

.landing-main > #what-you-can .landing-tile-grid {
  gap: clamp(var(--spacing-3xl, 2rem), 4vw, var(--spacing-5xl, 2.5rem));
  row-gap: clamp(var(--spacing-4xl, 2rem), 5vw, var(--spacing-7xl, 3.25rem));
}

.landing-main > #what-you-can .landing-use-case-tile {
  padding: var(--spacing-2xl, 1.25rem) 0 0 !important;
}

/* —— Fintech workflow illustration cards —— */
.landing-fintech-flow {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 68rem;
  border-radius: 2rem;
  border: 1px solid color-mix(in srgb, var(--landing-text) 9%, transparent);
  background:
    radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--landing-accent) 10%, transparent), transparent 40%),
    radial-gradient(circle at 12% 92%, color-mix(in srgb, var(--landing-text) 7%, transparent), transparent 34%),
    color-mix(in srgb, var(--landing-canvas) 78%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 8%, transparent),
    0 1.8rem 5rem color-mix(in srgb, var(--landing-canvas) 76%, transparent);
}

.landing-fintech-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 36%, color-mix(in srgb, var(--landing-text) 4%, transparent) 48%, transparent 62%),
    radial-gradient(circle at 50% 50%, transparent 0 52%, color-mix(in srgb, var(--landing-canvas) 58%, transparent) 100%);
}

.landing-fintech-flow__svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  min-height: 22rem;
  color: var(--landing-text);
}

.landing-fintech-grid path {
  fill: none;
  stroke: color-mix(in srgb, var(--landing-text) 7%, transparent);
  stroke-width: 1;
}

.landing-fintech-flow-line {
  fill: none;
  stroke: color-mix(in srgb, var(--landing-text) 42%, transparent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  animation: landing-fintech-dash 8s linear infinite;
}

.landing-fintech-flow-line--soft {
  stroke: color-mix(in srgb, var(--landing-text) 24%, transparent);
  stroke-width: 1;
  animation-duration: 10s;
}

.landing-fintech-orbit circle {
  fill: color-mix(in srgb, var(--landing-text) 86%, transparent);
  filter: drop-shadow(0 0 0.75rem color-mix(in srgb, var(--landing-text) 35%, transparent));
}

.landing-fintech-core rect,
.landing-fintech-node rect {
  fill: url(#fintechNodeFill);
  stroke: color-mix(in srgb, var(--landing-text) 13%, transparent);
  stroke-width: 1;
}

.landing-fintech-core {
  animation: landing-fintech-float 7s ease-in-out infinite;
}

.landing-fintech-core text,
.landing-fintech-node text {
  fill: color-mix(in srgb, var(--landing-text) 82%, transparent);
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
  font-size: 16px;
  font-weight: 500;
}

.landing-fintech-core__value {
  font-size: 28px !important;
  font-weight: 650 !important;
  letter-spacing: -0.05em;
  fill: color-mix(in srgb, var(--landing-text) 94%, transparent) !important;
}

.landing-fintech-core__caption,
.landing-fintech-node__muted {
  font-size: 13px !important;
  font-weight: 400 !important;
  fill: color-mix(in srgb, var(--landing-text) 45%, transparent) !important;
}

.landing-fintech-core path,
.landing-fintech-node path {
  fill: none;
  stroke: color-mix(in srgb, var(--landing-text) 22%, transparent);
  stroke-width: 3;
  stroke-linecap: round;
}

.landing-fintech-node {
  animation: landing-fintech-node-pulse 7s ease-in-out infinite;
}

.landing-fintech-node--checkout {
  animation-delay: -1.4s;
}

.landing-fintech-node--payout {
  animation-delay: -2.8s;
}

.landing-fintech-node--close {
  animation-delay: -4.2s;
}

.landing-fintech-node__value {
  font-size: 22px !important;
  letter-spacing: -0.035em;
}

.landing-fintech-miniqr rect {
  fill: color-mix(in srgb, var(--landing-text) 80%, transparent);
  stroke: none;
}

.landing-fintech-miniqr path {
  fill: var(--landing-canvas);
  stroke: none;
}

.landing-fintech-flow__caption {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spacing-sm, 0.5rem);
  padding: 0 var(--spacing-2xl, 1.25rem) var(--spacing-2xl, 1.25rem);
  color: color-mix(in srgb, var(--landing-text) 52%, transparent);
  font-size: var(--font-size-sm, 0.8125rem);
}

.landing-fintech-flow__caption span {
  display: grid;
  gap: 0.2rem;
  min-height: 4.25rem;
  padding: var(--spacing-md, 0.75rem);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--landing-text) 4%, transparent);
}

.landing-fintech-flow__caption strong {
  color: color-mix(in srgb, var(--landing-text) 84%, transparent);
  font-weight: var(--font-weight-medium, 500);
}

@keyframes landing-fintech-dash {
  to {
    stroke-dashoffset: -72;
  }
}

@keyframes landing-fintech-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes landing-fintech-node-pulse {
  0%,
  100% {
    opacity: 0.78;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

@media (max-width: 720px) {
  .landing-fintech-flow {
    border-radius: 1.5rem;
  }

  .landing-fintech-flow__svg {
    min-width: 46rem;
  }

  .landing-fintech-flow {
    overflow-x: auto;
  }

  .landing-fintech-flow__caption {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-fintech-flow-line,
  .landing-fintech-core,
  .landing-fintech-node {
    animation: none !important;
  }
}

.landing-fintech-product-canvas {
  position: relative;
  min-height: clamp(27rem, 48vw, 34rem);
  overflow: hidden;
  border-radius: inherit;
}

.landing-fintech-product-canvas::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--landing-text) 8%, transparent), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--landing-text) 5%, transparent), transparent);
  border: 1px solid color-mix(in srgb, var(--landing-text) 6%, transparent);
}

.landing-fintech-product-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--landing-text);
}

.landing-fintech-product-line {
  fill: none;
  stroke: color-mix(in srgb, var(--landing-text) 22%, transparent);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  animation: landing-fintech-dash 8s linear infinite;
}

.landing-fintech-product-line--soft {
  stroke: color-mix(in srgb, var(--landing-text) 13%, transparent);
  animation-duration: 10s;
}

.landing-fintech-product-dot {
  position: absolute;
  z-index: 3;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--landing-text) 86%, transparent);
  box-shadow:
    0 0 0 0.45rem color-mix(in srgb, var(--landing-text) 7%, transparent),
    0 0 1.4rem color-mix(in srgb, var(--landing-text) 32%, transparent);
}

.landing-fintech-product-dot--one {
  animation: landing-fintech-product-dot-one 7s ease-in-out infinite;
}

.landing-fintech-product-dot--two {
  animation: landing-fintech-product-dot-two 8s ease-in-out infinite;
}

.landing-fintech-product-card,
.landing-fintech-product-core {
  position: absolute;
  z-index: 2;
  border: 1px solid color-mix(in srgb, var(--landing-text) 12%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--landing-text) 7%, transparent), color-mix(in srgb, var(--landing-canvas) 76%, transparent)),
    color-mix(in srgb, var(--landing-canvas) 82%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 10%, transparent),
    0 1.25rem 3rem color-mix(in srgb, var(--landing-canvas) 72%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.landing-fintech-product-card {
  width: min(17rem, 31%);
  min-height: 8.5rem;
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 1.25rem;
  animation: landing-fintech-product-float 8s ease-in-out infinite;
}

.landing-fintech-product-card--invoice {
  top: 12%;
  left: 7%;
}

.landing-fintech-product-card--checkout {
  top: 13%;
  right: 7%;
  animation-delay: -1.4s;
}

.landing-fintech-product-card--payouts {
  left: 8%;
  bottom: 14%;
  animation-delay: -2.8s;
}

.landing-fintech-product-card--close {
  right: 8%;
  bottom: 14%;
  animation-delay: -4.2s;
}

.landing-fintech-product-card__label,
.landing-fintech-product-card span,
.landing-fintech-product-card b,
.landing-fintech-product-core span,
.landing-fintech-product-core em {
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
}

.landing-fintech-product-card__label {
  color: color-mix(in srgb, var(--landing-text) 48%, transparent);
  font-size: var(--font-size-xs, 0.75rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-fintech-product-card strong,
.landing-fintech-product-core strong {
  color: color-mix(in srgb, var(--landing-text) 92%, transparent);
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.landing-fintech-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: color-mix(in srgb, var(--landing-text) 58%, transparent);
  font-size: var(--font-size-sm, 0.8125rem);
}

.landing-fintech-product-row b {
  color: color-mix(in srgb, var(--landing-text) 82%, transparent);
  font-weight: var(--font-weight-medium, 500);
  white-space: nowrap;
}

.landing-fintech-product-bar {
  height: 0.45rem;
  width: 82%;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--landing-text) 12%, transparent);
}

.landing-fintech-product-bar--short {
  width: 54%;
}

.landing-fintech-product-checkout {
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: center;
  gap: 0.85rem;
}

.landing-fintech-product-checkout div:last-child {
  display: grid;
  gap: 0.3rem;
}

.landing-fintech-product-checkout div:last-child span {
  color: color-mix(in srgb, var(--landing-text) 46%, transparent);
  font-size: var(--font-size-xs, 0.75rem);
}

.landing-fintech-product-qr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  aspect-ratio: 1;
  padding: 0.45rem;
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--landing-text) 82%, transparent);
}

.landing-fintech-product-qr i {
  border-radius: 0.18rem;
  background: var(--landing-canvas);
}

.landing-fintech-product-qr i:nth-child(2),
.landing-fintech-product-qr i:nth-child(6),
.landing-fintech-product-qr i:nth-child(8) {
  opacity: 0.18;
}

.landing-fintech-product-core {
  top: 50%;
  left: 50%;
  width: min(18rem, 34%);
  min-height: 13rem;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border-radius: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--landing-text) 12%, transparent), transparent 52%),
    color-mix(in srgb, var(--landing-canvas) 80%, transparent);
}

.landing-fintech-product-core span {
  color: color-mix(in srgb, var(--landing-text) 52%, transparent);
  font-size: var(--font-size-sm, 0.8125rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-fintech-product-core strong {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -0.06em;
}

.landing-fintech-product-core em {
  color: color-mix(in srgb, var(--landing-text) 48%, transparent);
  font-size: var(--font-size-sm, 0.8125rem);
  font-style: normal;
}

.landing-fintech-flow__caption {
  display: block;
  max-width: 42rem;
  margin: -0.25rem auto 0;
  padding: 0 var(--spacing-2xl, 1.25rem) var(--spacing-2xl, 1.25rem);
  text-align: center;
  color: color-mix(in srgb, var(--landing-text) 52%, transparent);
  font-size: var(--font-size-sm, 0.8125rem);
  line-height: var(--line-height-relaxed, 1.6);
}

@keyframes landing-fintech-product-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.45rem);
  }
}

@keyframes landing-fintech-product-dot-one {
  0%,
  100% {
    left: 18%;
    top: 27%;
    opacity: 0;
  }
  15%,
  82% {
    opacity: 1;
  }
  50% {
    left: 50%;
    top: 50%;
  }
  86% {
    left: 82%;
    top: 28%;
    opacity: 0;
  }
}

@keyframes landing-fintech-product-dot-two {
  0%,
  100% {
    left: 20%;
    top: 72%;
    opacity: 0;
  }
  18%,
  84% {
    opacity: 1;
  }
  50% {
    left: 50%;
    top: 51%;
  }
  88% {
    left: 80%;
    top: 72%;
    opacity: 0;
  }
}

@media (max-width: 860px) {
  .landing-fintech-product-canvas {
    min-height: 44rem;
  }

  .landing-fintech-product-lines,
  .landing-fintech-product-dot {
    display: none;
  }

  .landing-fintech-product-core,
  .landing-fintech-product-card {
    position: relative;
    inset: auto;
    transform: none;
    width: auto;
    margin: 0;
  }

  .landing-fintech-product-canvas {
    display: grid;
    gap: 1rem;
    padding: 1rem;
  }

  .landing-fintech-product-canvas::before {
    inset: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-fintech-product-line,
  .landing-fintech-product-dot,
  .landing-fintech-product-card {
    animation: none !important;
  }
}

/* Financial command center — final concept */
.landing-fintech-flow--console {
  max-width: 72rem;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background:
    radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--landing-text) 9%, transparent), transparent 34%),
    color-mix(in srgb, var(--landing-canvas) 84%, transparent);
}

.landing-finance-console {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  min-height: clamp(31rem, 50vw, 38rem);
  padding: clamp(1rem, 2.5vw, 1.65rem);
  border: 1px solid color-mix(in srgb, var(--landing-text) 8%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--landing-text) 5%, transparent), transparent 34%),
    color-mix(in srgb, var(--landing-canvas) 88%, transparent);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--landing-text) 8%, transparent);
}

.landing-finance-console::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 52%, color-mix(in srgb, var(--landing-text) 10%, transparent), transparent 30%),
    linear-gradient(90deg, transparent, color-mix(in srgb, var(--landing-text) 3%, transparent), transparent);
}

.landing-finance-console__topbar,
.landing-finance-console__grid {
  position: relative;
  z-index: 1;
}

.landing-finance-console__topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.2rem;
}

.landing-finance-console__topbar div:first-child,
.landing-finance-console__status,
.landing-finance-panel__label,
.landing-finance-panel__head span,
.landing-finance-core-label,
.landing-finance-core-caption {
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
}

.landing-finance-console__topbar div:first-child {
  display: grid;
  gap: 0.25rem;
}

.landing-finance-console__topbar div:first-child span,
.landing-finance-panel__head span,
.landing-finance-panel__label,
.landing-finance-core-label {
  color: color-mix(in srgb, var(--landing-text) 44%, transparent);
  font-size: var(--font-size-xs, 0.75rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-finance-console__topbar div:first-child strong {
  color: color-mix(in srgb, var(--landing-text) 82%, transparent);
  font-weight: var(--font-weight-medium, 500);
  letter-spacing: -0.02em;
}

.landing-finance-console__tabs {
  display: inline-flex;
  padding: 0.25rem;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--landing-text) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--landing-text) 7%, transparent);
}

.landing-finance-console__tabs span {
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-full);
  color: color-mix(in srgb, var(--landing-text) 48%, transparent);
  font-size: var(--font-size-xs, 0.75rem);
}

.landing-finance-console__tabs .is-active {
  color: color-mix(in srgb, var(--landing-canvas) 92%, transparent);
  background: color-mix(in srgb, var(--landing-text) 88%, transparent);
}

.landing-finance-console__status {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--landing-text) 58%, transparent);
  font-size: var(--font-size-xs, 0.75rem);
}

.landing-finance-console__status span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--landing-text) 82%, transparent);
  box-shadow: 0 0 0 0.35rem color-mix(in srgb, var(--landing-text) 7%, transparent);
  animation: landing-finance-status 2.8s ease-in-out infinite;
}

.landing-finance-console__grid {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 1.05fr;
  grid-template-rows: minmax(13rem, auto) minmax(12rem, auto);
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.landing-finance-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid color-mix(in srgb, var(--landing-text) 9%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--landing-text) 6%, transparent), transparent 46%),
    color-mix(in srgb, var(--landing-canvas) 82%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 8%, transparent),
    0 1rem 2.5rem color-mix(in srgb, var(--landing-canvas) 66%, transparent);
}

.landing-finance-panel--core {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  min-height: 28rem;
}

.landing-finance-panel--payouts {
  grid-column: 1;
}

.landing-finance-panel--close {
  display: grid;
  grid-template-columns: 7rem 1fr;
  align-items: center;
  gap: 1rem;
}

.landing-finance-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.landing-finance-panel__head strong,
.landing-finance-invoice strong,
.landing-finance-link b,
.landing-finance-row b,
.landing-finance-panel--close strong {
  color: color-mix(in srgb, var(--landing-text) 88%, transparent);
  font-weight: var(--font-weight-semibold, 600);
  letter-spacing: -0.025em;
}

.landing-finance-invoice {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--landing-text) 4%, transparent);
}

.landing-finance-invoice span,
.landing-finance-invoice em,
.landing-finance-link span,
.landing-finance-row span,
.landing-finance-row em,
.landing-finance-panel--close li,
.landing-finance-core-caption {
  color: color-mix(in srgb, var(--landing-text) 48%, transparent);
  font-style: normal;
  font-size: var(--font-size-sm, 0.8125rem);
}

.landing-finance-link {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 0.9rem;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--landing-text) 6%, transparent);
}

.landing-finance-link::after {
  content: '';
  position: absolute;
  inset-block: 0;
  width: 28%;
  left: -35%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--landing-text) 10%, transparent), transparent);
  animation: landing-finance-shimmer 4.5s ease-in-out infinite;
}

.landing-finance-core-value {
  margin-top: 0.6rem;
  color: color-mix(in srgb, var(--landing-text) 94%, transparent);
  font-size: clamp(3.2rem, 6.6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.landing-finance-chart {
  width: min(100%, 18rem);
  margin-top: 2rem;
}

.landing-finance-chart path:first-child {
  fill: none;
  stroke: color-mix(in srgb, var(--landing-text) 70%, transparent);
  stroke-width: 3;
  stroke-linecap: round;
}

.landing-finance-chart path:last-child {
  fill: color-mix(in srgb, var(--landing-text) 6%, transparent);
}

.landing-finance-close-ring {
  width: 6.75rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  background:
    radial-gradient(circle at center, var(--landing-canvas) 58%, transparent 59%),
    conic-gradient(color-mix(in srgb, var(--landing-text) 82%, transparent) 0 82%, color-mix(in srgb, var(--landing-text) 10%, transparent) 82% 100%);
  animation: landing-finance-ring 5s ease-in-out infinite;
}

.landing-finance-close-ring span {
  color: color-mix(in srgb, var(--landing-text) 88%, transparent);
  font-weight: var(--font-weight-semibold, 600);
  letter-spacing: -0.03em;
}

.landing-finance-panel--close ul {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.landing-finance-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.78rem 0;
  border-top: 1px solid color-mix(in srgb, var(--landing-text) 7%, transparent);
}

.landing-fintech-flow--console .landing-fintech-flow__caption {
  display: block;
  padding: 1rem 0.5rem 0.1rem;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.landing-product-shot {
  --landing-product-shot-frame-inset: clamp(0.75rem, 1.9vw, 1.5rem);
  --landing-product-shot-wide-size: 82rem;
  width: min(100%, 72rem);
  margin: 0 auto;
}

.landing-product-shot--section {
  width: min(100%, 34rem);
  min-inline-size: 0;
  margin: 0;
  container: landing-product-section / inline-size;
}

.landing-product-shot__window {
  position: relative;
  display: grid;
  grid-template-columns: 9.5rem minmax(0, 1fr);
  min-height: clamp(27rem, 46vw, 34rem);
  overflow: hidden;
  border-radius: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid color-mix(in srgb, var(--landing-text) 10%, transparent);
  background:
    radial-gradient(circle at 70% 16%, color-mix(in srgb, var(--landing-text) 5%, transparent), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--landing-text) 5%, transparent), transparent 38%),
    color-mix(in srgb, var(--landing-canvas) 94%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 8%, transparent),
    0 2rem 5rem color-mix(in srgb, var(--landing-canvas) 70%, transparent);
}

#financial-workflows-copy .landing-product-shot__window--real {
  display: block;
  aspect-ratio: 2 / 1;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--landing-product-shot-image-radius);
  background: color-mix(in srgb, var(--landing-canvas) 96%, transparent);
}

#financial-workflows-copy .landing-product-shot__live-preview {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border: 0;
  border-radius: inherit;
  background: #050505;
  opacity: 1;
  transition: opacity 280ms ease;
}

.landing-preview-loader {
  position: absolute !important;
  inset: 0;
  z-index: 3 !important;
  display: grid;
  place-items: center;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--landing-text) 5%, transparent), transparent 24%),
    color-mix(in srgb, var(--landing-canvas) 97%, transparent);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.landing-preview-loader__orb {
  position: relative;
  display: block;
  width: clamp(2.25rem, 5cqi, 3.25rem);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-full, 999px);
  background-image: radial-gradient(
    circle,
    color-mix(in srgb, var(--landing-text) 82%, transparent) 0 0.075rem,
    transparent 0.095rem
  );
  background-position: 0 0;
  background-size: 0.34rem 0.34rem;
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--landing-text) 10%, transparent),
    0 0 1.75rem color-mix(in srgb, var(--landing-text) 8%, transparent);
  -webkit-mask-image: radial-gradient(circle, #000 0 54%, transparent 74%);
  mask-image: radial-gradient(circle, #000 0 54%, transparent 74%);
  animation:
    landing-preview-orb-drift 1.65s linear infinite,
    landing-preview-orb-breathe 2.4s ease-in-out infinite;
}

.landing-preview-loader__orb::before,
.landing-preview-loader__orb::after {
  position: absolute;
  inset: 12% 2%;
  border: 1px dotted color-mix(in srgb, var(--landing-text) 48%, transparent);
  border-radius: 50%;
  content: "";
}

.landing-preview-loader__orb::before {
  transform: rotate(58deg) scaleX(0.62);
}

.landing-preview-loader__orb::after {
  transform: rotate(-58deg) scaleX(0.62);
}

.landing-product-shot__window.is-preview-loading .landing-product-shot__live-preview {
  opacity: 0;
}

.landing-product-shot__window.is-preview-loading .landing-preview-loader,
.landing-product-shot__window.is-preview-error .landing-preview-loader {
  opacity: 1;
  visibility: visible;
}

.landing-product-shot__window.is-preview-error .landing-preview-loader__orb {
  opacity: 0.35;
  animation: none;
}

@keyframes landing-preview-orb-drift {
  to {
    background-position: 0.68rem 0.34rem;
    rotate: 360deg;
  }
}

@keyframes landing-preview-orb-breathe {
  0%,
  100% {
    scale: 0.92;
    opacity: 0.62;
  }

  50% {
    scale: 1;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-preview-loader__orb {
    opacity: 0.72;
    animation: none;
  }
}

/* Real product surfaces for below-the-fold feature stories. */
.landing-product-shot--live {
  content-visibility: auto;
  contain-intrinsic-size: auto 34rem;
}

.landing-product-shot__glass-shell--section {
  position: relative;
  isolation: isolate;
  padding: var(--landing-product-shot-frame-inset);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--landing-text) 12%, transparent);
  border-radius: clamp(1.35rem, 2.6vw, 2rem);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--landing-text) 7%, transparent), transparent 52%),
    color-mix(in srgb, var(--landing-canvas) 90%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 9%, transparent),
    0 1.5rem 4rem color-mix(in srgb, var(--landing-canvas) 72%, transparent);
}

.landing-product-shot--section .landing-product-shot__window--section-real {
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: clamp(1rem, 2vw, 1.45rem);
  background: #050505;
  box-shadow: none;
}

.landing-product-shot--section .landing-product-shot__window--section-real .landing-product-shot__live-preview {
  display: block;
  width: 200%;
  height: 200%;
  border: 0;
  border-radius: 0;
  background: #050505;
  pointer-events: none;
  transform: scale(0.5);
  transform-origin: left top;
}

.landing-product-shot__preview-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-product-shot--section .landing-product-shot__window {
  grid-template-columns: 7.75rem minmax(0, 1fr);
  min-height: 24rem;
  border-radius: clamp(1.25rem, 2.5vw, 1.75rem);
}

.landing-product-shot--section .landing-product-shot__sidebar {
  padding-block-start: 1.2rem;
}

.landing-product-shot--section .landing-product-shot__brand {
  margin-block-end: 0.9rem;
}

.landing-product-shot--section .landing-product-shot__sidebar span:not(.landing-product-shot__brand) {
  padding: 0.42rem 0.58rem;
  font-size: 0.62rem;
}

.landing-product-shot--section .landing-product-shot__app {
  padding: 0.85rem;
}

.landing-product-shot--section .landing-product-shot__topbar {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.62rem;
}

.landing-product-shot--section .landing-product-shot__user {
  display: none;
}

.landing-product-shot__window::before {
  content: none;
}

.landing-product-shot__window > * {
  position: relative;
  z-index: 1;
}

.landing-product-shot__sidebar {
  display: grid;
  align-content: start;
  gap: 0.28rem;
  padding: 1.45rem 0.85rem 1.15rem;
  border-right: 1px solid color-mix(in srgb, var(--landing-text) 7%, transparent);
  background: color-mix(in srgb, var(--landing-text) 2%, transparent);
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
}

.landing-product-shot__brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0.75rem 0.15rem;
  color: color-mix(in srgb, var(--landing-text) 86%, transparent);
  font-family: var(--font-serif, 'Instrument Serif', serif);
  font-size: 0.95rem;
  font-weight: var(--font-weight-normal, 400);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-product-shot__brand--ds {
  font-family: var(--font-serif, 'Instrument Serif', ui-serif, Georgia, serif);
  font-size: 1.1rem;
  font-weight: var(--font-weight-normal, 400);
  line-height: 1.2;
  letter-spacing: 0;
  margin-left: calc(0.15rem + 8px);
  text-transform: none;
}

#financial-workflows-copy .landing-product-shot__window .landing-product-shot__brand--ds,
.landing-product-shot__window .landing-product-shot__brand--ds {
  font-family: var(--font-serif, 'Instrument Serif', ui-serif, Georgia, serif);
  font-weight: var(--font-weight-normal, 400);
  letter-spacing: 0;
  text-transform: none;
}

.landing-product-shot__sidebar span:not(.landing-product-shot__brand) {
  padding: 0.48rem 0.68rem;
  border-radius: var(--radius-full, 999px);
  color: color-mix(in srgb, var(--landing-text) 46%, transparent);
  font-size: 0.68rem;
  line-height: 1.2;
}

.landing-product-shot__sidebar .is-active {
  color: color-mix(in srgb, var(--landing-text) 88%, transparent) !important;
  background: color-mix(in srgb, var(--landing-text) 7%, transparent);
}

.landing-product-shot__app {
  min-width: 0;
  padding: 1rem;
}

.landing-product-shot__topbar {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto auto;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
}

.landing-product-shot__search,
.landing-product-shot__pill,
.landing-product-shot__user {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-full, 999px);
  border: 1px solid color-mix(in srgb, var(--landing-text) 7%, transparent);
  background: color-mix(in srgb, var(--landing-text) 4%, transparent);
  color: color-mix(in srgb, var(--landing-text) 50%, transparent);
  font-size: var(--font-size-xs, 0.75rem);
}

.landing-product-shot__search {
  padding-inline: 1rem;
}

.landing-product-shot__pill {
  padding-inline: 1rem;
  color: color-mix(in srgb, var(--landing-canvas) 92%, transparent);
  background: color-mix(in srgb, var(--landing-text) 88%, transparent);
  font-weight: var(--font-weight-semibold, 600);
}

.landing-product-shot__user {
  padding-inline: 0.9rem;
}

.landing-product-shot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(13.5rem, 0.58fr);
  grid-template-areas:
    "hero cash"
    "invoice close"
    "payouts close";
  gap: 0.85rem;
}

.landing-product-shot--section .landing-product-shot__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: none;
  gap: 0.7rem;
}

.landing-product-shot__grid--ops,
.landing-product-shot__grid--tools,
.landing-product-shot__grid--nucleus,
.landing-product-shot__grid--ai {
  align-content: start;
}

.landing-product-shot__grid--ops .landing-product-card,
.landing-product-shot__grid--tools .landing-product-card,
.landing-product-shot__grid--nucleus .landing-product-card,
.landing-product-shot__grid--ai .landing-product-card {
  grid-area: auto;
}

.landing-product-card--metric {
  min-height: 7.2rem;
}

.landing-product-shot__grid--ops .landing-product-card--metric,
.landing-product-shot__grid--tools .landing-product-card--metric,
.landing-product-shot__grid--nucleus .landing-product-card--metric,
.landing-product-shot__grid--ai .landing-product-card--metric {
  padding-inline-end: clamp(4.8rem, 22%, 6.25rem);
}

.landing-product-shot__grid--ops .landing-product-card--metric::before,
.landing-product-shot__grid--tools .landing-product-card--metric::before,
.landing-product-shot__grid--nucleus .landing-product-card--metric::before,
.landing-product-shot__grid--ai .landing-product-card--metric::before {
  content: "";
  position: absolute;
  right: 0.95rem;
  top: 50%;
  width: clamp(3.2rem, 18%, 4.6rem);
  height: 0.34rem;
  border-radius: var(--radius-full, 999px);
  opacity: 0.78;
  transform: translateY(-50%);
  background: color-mix(in srgb, var(--landing-text) 18%, transparent);
  box-shadow:
    0 0.74rem 0 color-mix(in srgb, var(--landing-text) 14%, transparent),
    0 1.48rem 0 color-mix(in srgb, var(--landing-text) 10%, transparent);
}

.landing-product-shot__grid--tools .landing-product-card--wide:last-child {
  padding-bottom: 3.2rem;
}

.landing-product-shot__grid--tools .landing-product-card--wide:last-child::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 1.05rem;
  height: 0.45rem;
  border-radius: var(--radius-full, 999px);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--landing-text) 68%, transparent) 0 62%, color-mix(in srgb, var(--landing-text) 12%, transparent) 62% 100%);
}

.landing-product-card--metric strong {
  margin-block: 0.28rem 0.12rem;
  font-size: clamp(1.1rem, 4cqi, 1.65rem);
}

.landing-product-card--wide {
  grid-column: 1 / -1;
}

.landing-product-card {
  position: relative;
  overflow: hidden;
  min-height: 8rem;
  padding: 0.95rem;
  border-radius: 1.1rem;
  border: 1px solid color-mix(in srgb, var(--landing-text) 7%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--landing-text) 4%, transparent), transparent 50%),
    color-mix(in srgb, var(--landing-text) 3%, transparent);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--landing-text) 6%, transparent);
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
}

.landing-product-card p,
.landing-product-card span {
  margin: 0;
  color: color-mix(in srgb, var(--landing-text) 48%, transparent);
  font-size: var(--font-size-xs, 0.75rem);
  line-height: var(--line-height-relaxed, 1.6);
}

.landing-product-card strong {
  display: block;
  color: color-mix(in srgb, var(--landing-text) 92%, transparent);
  font-weight: var(--font-weight-semibold, 600);
  letter-spacing: -0.045em;
}

.landing-product-card--hero {
  grid-area: hero;
  min-height: 16.5rem;
}

.landing-product-card--hero strong {
  margin-top: 0.25rem;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.landing-product-card--hero > span {
  display: inline-flex;
  margin-top: 0.7rem;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-full, 999px);
  color: color-mix(in srgb, var(--landing-text) 76%, transparent);
  background: color-mix(in srgb, var(--landing-text) 8%, transparent);
}

.landing-product-chart {
  position: absolute;
  inset: auto 0.95rem 1rem;
  height: 8rem;
}

.landing-product-chart svg {
  width: 100%;
  height: 100%;
}

.landing-product-chart path:first-child {
  fill: none;
  stroke: color-mix(in srgb, var(--landing-text) 84%, transparent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 720;
  stroke-dashoffset: 0;
}

.landing-product-chart path:last-child {
  fill: color-mix(in srgb, var(--landing-text) 8%, transparent);
  transform-origin: center bottom;
}

.landing-product-card--cash {
  grid-area: cash;
  min-height: 16.5rem;
}

.landing-product-card--invoice {
  grid-area: invoice;
}

.landing-product-card--payouts {
  grid-area: payouts;
}

.landing-product-card--close {
  grid-area: close;
}

.landing-product-card__head,
.landing-product-row,
.landing-product-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.landing-product-card__head {
  margin-bottom: 1rem;
}

.landing-product-card__head p {
  color: color-mix(in srgb, var(--landing-text) 82%, transparent);
  font-weight: var(--font-weight-semibold, 600);
}

.landing-product-donut {
  position: relative;
  width: clamp(7.6rem, 11cqi, 8.2rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0.85rem auto 1.35rem;
  border-radius: var(--radius-full, 999px);
}

.landing-product-donut::before {
  content: "";
  position: absolute;
  inset: 1.72rem;
  border-radius: inherit;
  background: transparent;
}

.landing-product-donut::after {
  content: none;
}

.landing-product-donut span {
  position: relative;
  z-index: 1;
  color: color-mix(in srgb, var(--landing-text) 92%, transparent);
  font-size: 0.82rem;
  font-weight: var(--font-weight-semibold, 600);
}

.landing-product-donut svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.landing-product-donut circle {
  fill: none;
  stroke-linecap: round;
}

.landing-product-donut__track {
  display: none;
  stroke: transparent;
  stroke-width: 10;
}

.landing-product-donut__segment {
  stroke-width: 10;
}

.landing-product-donut__segment--income {
  stroke: color-mix(in srgb, var(--landing-text) 88%, transparent);
  stroke-dasharray: 54 46;
  stroke-dashoffset: 0;
}

.landing-product-donut__segment--expenses {
  stroke: color-mix(in srgb, var(--landing-text) 56%, transparent);
  stroke-dasharray: 14 86;
  stroke-dashoffset: -62;
}

.landing-product-donut__segment--transfers {
  stroke: color-mix(in srgb, var(--landing-text) 32%, transparent);
  stroke-dasharray: 7 93;
  stroke-dashoffset: -84;
}

.landing-product-list,
.landing-product-card--payouts {
  display: grid;
  gap: 0.65rem;
}

.landing-product-list span {
  min-width: 0;
}

.landing-product-list i {
  flex: 0 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: var(--radius-full, 999px);
  background: color-mix(in srgb, var(--landing-text) 76%, transparent);
}

.landing-product-list em {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.52rem;
  color: color-mix(in srgb, var(--landing-text) 48%, transparent);
  font-style: normal;
}

.landing-product-list b,
.landing-product-row b {
  margin-inline-start: auto;
  color: color-mix(in srgb, var(--landing-text) 78%, transparent);
  font-size: var(--font-size-xs, 0.75rem);
  text-align: end;
}

.landing-product-invoice-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--spacing-md, 0.75rem);
  margin-top: 1rem;
}

.landing-product-invoice-action > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-product-card--invoice button {
  justify-self: end;
  padding: 0.62rem 0.9rem;
  border: 1px solid color-mix(in srgb, var(--landing-text) 14%, transparent);
  border-radius: var(--radius-full, 999px);
  color: color-mix(in srgb, var(--landing-text) 82%, transparent);
  background: color-mix(in srgb, var(--landing-text) 6%, transparent);
  font: inherit;
  font-size: var(--font-size-xs, 0.75rem);
  font-weight: var(--font-weight-semibold, 600);
  white-space: nowrap;
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--landing-text) 8%, transparent);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.landing-product-card--invoice button:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--landing-text) 22%, transparent);
  color: color-mix(in srgb, var(--landing-text) 92%, transparent);
  background: color-mix(in srgb, var(--landing-text) 10%, transparent);
}

.landing-product-card--invoice button:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--landing-text) 42%, transparent);
  outline-offset: 3px;
}

.landing-product-shot__grid--tools .landing-product-card--wide .landing-product-invoice-action button {
  justify-self: end;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: color-mix(in srgb, var(--landing-text) 80%, transparent);
  background: transparent;
  box-shadow: none;
  font: inherit;
  font-size: var(--font-size-xs, 0.75rem);
  font-weight: var(--font-weight-semibold, 600);
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
  text-decoration-color: color-mix(in srgb, var(--landing-text) 24%, transparent);
}

.landing-product-shot__grid--tools .landing-product-card--wide .landing-product-invoice-action button:hover:not(:disabled) {
  color: color-mix(in srgb, var(--landing-text) 92%, transparent);
  background: transparent;
  text-decoration-color: color-mix(in srgb, var(--landing-text) 48%, transparent);
}

.landing-product-card--close strong {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.landing-product-close-meter {
  position: relative;
  height: 0.42rem;
  margin-top: 1.1rem;
  overflow: hidden;
  border-radius: var(--radius-full, 999px);
  background: color-mix(in srgb, var(--landing-text) 8%, transparent);
}

.landing-product-close-meter i {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: color-mix(in srgb, var(--landing-text) 72%, transparent);
}

.landing-product-close-list {
  display: grid;
  gap: 0.58rem;
  margin-top: 1.05rem;
}

.landing-product-close-list .landing-product-row {
  padding-top: 0.58rem;
  border-top: 1px solid color-mix(in srgb, var(--landing-text) 6%, transparent);
}

.landing-product-shot__caption {
  max-width: 46rem;
  margin: var(--spacing-xl, 1.25rem) auto 0;
  color: color-mix(in srgb, var(--landing-text) 48%, transparent);
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
  font-size: var(--font-size-sm, 0.8125rem);
  line-height: var(--line-height-relaxed, 1.6);
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  .landing-product-card--invoice,
  .landing-product-card--close {
    animation: landing-product-shot-float 8s ease-in-out infinite;
  }

  .landing-product-card--payouts {
    animation: landing-product-shot-float 9s ease-in-out infinite reverse;
  }

  .landing-product-shot__sidebar .is-active,
  .landing-product-shot__pill,
  .landing-product-card--invoice button {
    animation: landing-product-soft-pulse 5.8s ease-in-out infinite;
  }

  .landing-product-chart path:first-child {
    animation: landing-product-chart-draw 7.5s ease-in-out infinite;
  }

  .landing-product-chart path:last-child {
    animation: landing-product-chart-fill 7.5s ease-in-out infinite;
  }

  .landing-product-donut::after {
    animation: landing-product-donut-glow 6.5s ease-in-out infinite;
  }

  .landing-product-card--hero,
  .landing-product-card--cash {
    animation: landing-product-card-breathe 10s ease-in-out infinite;
  }
}

@keyframes landing-product-shot-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.35rem);
  }
}

@keyframes landing-product-soft-pulse {
  0%,
  100% {
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--landing-text) 10%, transparent);
  }

  50% {
    box-shadow:
      inset 0 1px 0 color-mix(in srgb, var(--landing-text) 18%, transparent),
      0 0 1.4rem color-mix(in srgb, var(--landing-text) 10%, transparent);
  }
}

@keyframes landing-product-chart-draw {
  0% {
    stroke-dashoffset: 720;
    opacity: 0.48;
  }

  28%,
  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0.72;
  }
}

@keyframes landing-product-chart-fill {
  0% {
    opacity: 0;
    transform: scaleY(0.72);
  }

  32%,
  74% {
    opacity: 1;
    transform: scaleY(1);
  }

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

@keyframes landing-product-donut-glow {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes landing-product-card-breathe {
  0%,
  100% {
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--landing-text) 6%, transparent);
  }

  50% {
    box-shadow:
      inset 0 1px 0 color-mix(in srgb, var(--landing-text) 10%, transparent),
      0 1rem 2.5rem color-mix(in srgb, var(--landing-text) 4%, transparent);
  }
}

@media (prefers-reduced-motion: no-preference) {
  #financial-workflows-copy .landing-product-card--cash .landing-product-donut svg {
    transform-origin: 50% 50%;
    animation: landing-workflow-copy-donut-rotate 9s linear infinite;
  }

  #financial-workflows-copy .landing-product-card--cash .landing-product-donut span {
    animation: landing-workflow-copy-donut-label 4s ease-in-out infinite;
  }

  #financial-workflows-copy .landing-product-card--close {
    animation: landing-workflow-copy-close-focus 5.5s ease-in-out infinite;
  }

  #financial-workflows-copy .landing-product-card--close .landing-product-close-meter i {
    transform-origin: left center;
    animation: landing-workflow-copy-meter-progress 3.8s ease-in-out infinite;
  }
}

@keyframes landing-workflow-copy-donut-rotate {
  from {
    transform: rotate(-90deg);
  }

  to {
    transform: rotate(270deg);
  }
}

@keyframes landing-workflow-copy-donut-label {
  0%,
  100% {
    opacity: 0.78;
  }

  50% {
    opacity: 1;
  }
}

@keyframes landing-workflow-copy-close-focus {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--landing-text) 7%, transparent);
  }

  50% {
    transform: translateY(-0.25rem);
    box-shadow:
      inset 0 1px 0 color-mix(in srgb, var(--landing-text) 12%, transparent),
      0 1rem 2rem color-mix(in srgb, var(--landing-text) 5%, transparent);
  }
}

@keyframes landing-workflow-copy-meter-progress {
  0%,
  100% {
    transform: scaleX(0.78);
  }

  50% {
    transform: scaleX(0.96);
  }
}

@keyframes landing-workflow-switch-wave {
  0% {
    stroke-dashoffset: 100;
    opacity: 0.68;
  }

  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  #financial-workflows-copy .landing-workflow-copy-switch.is-active .landing-workflow-wave-active,
  #financial-workflows-copy .landing-workflow-copy-switch[aria-pressed="true"] .landing-workflow-wave-active {
    animation: none;
    stroke-dashoffset: 0;
  }
}

@media (max-width: 900px) {
  .landing-product-shot__window {
    grid-template-columns: 1fr;
  }

  .landing-product-shot__sidebar {
    display: none;
  }

  .landing-product-shot__topbar,
  .landing-product-shot__grid {
    grid-template-columns: 1fr;
  }

  .landing-product-shot__grid {
    grid-template-areas:
      "hero"
      "cash"
      "invoice"
      "payouts"
      "close";
  }
}

@container landing-product-section (max-width: 32rem) {
  .landing-product-shot--section .landing-product-shot__window {
    grid-template-columns: 1fr;
  }

  .landing-product-shot--section .landing-product-shot__sidebar {
    display: none;
  }
}

@container landing-product-section (max-width: 22rem) {
  .landing-product-shot--section .landing-product-shot__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  #financial-workflows-copy > .landing-workflow-copy-preview-wrap {
    width: 100%;
  }

  #financial-workflows-copy .landing-product-shot {
    width: min(100%, 48rem);
  }

  #financial-workflows-copy .landing-product-shot__window {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  #financial-workflows-copy .landing-product-shot__app {
    padding: clamp(0.7rem, 2.8vw, 1rem);
  }

  #financial-workflows-copy .landing-product-shot__topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(0.45rem, 1.8vw, 0.7rem);
    margin-bottom: clamp(0.55rem, 1.8vw, 0.85rem);
  }

  #financial-workflows-copy .landing-product-shot__user {
    display: none;
  }

  #financial-workflows-copy .landing-product-shot__grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(8.75rem, 0.72fr);
    grid-template-areas:
      "hero cash"
      "invoice close"
      "payouts close";
    gap: clamp(0.45rem, 1.8vw, 0.75rem);
  }

  #financial-workflows-copy .landing-product-card {
    min-height: clamp(5.8rem, 15vw, 8rem);
    padding: clamp(0.62rem, 1.9vw, 0.9rem);
    border-radius: clamp(0.8rem, 2.5vw, 1.1rem);
  }

  #financial-workflows-copy .landing-product-card--hero,
  #financial-workflows-copy .landing-product-card--cash {
    min-height: clamp(10.8rem, 29vw, 15rem);
  }

  #financial-workflows-copy .landing-product-card--close {
    min-height: clamp(10.8rem, 29vw, 15rem);
  }

  #financial-workflows-copy .landing-product-card--hero strong {
    font-size: clamp(1.8rem, 5.7cqi, 2.4rem);
  }

  #financial-workflows-copy .landing-product-chart {
    inset-inline: clamp(0.62rem, 1.9vw, 0.9rem);
    bottom: clamp(0.58rem, 1.8vw, 0.85rem);
    height: clamp(4.7rem, 12vw, 6.5rem);
  }

  #financial-workflows-copy .landing-product-donut {
    width: clamp(4.8rem, 13vw, 6.6rem);
    margin-block: 0.45rem 0.7rem;
  }

  #financial-workflows-copy .landing-product-list span,
  #financial-workflows-copy .landing-product-row {
    gap: 0.45rem;
  }
}

/* Keep the embedded product in its desktop composition on portrait tablets.
   The iframe gets a wider layout viewport and is scaled back into the frame,
   so app-level mobile navigation never replaces the dashboard preview. */
@media (max-width: 860px) {
  #financial-workflows-copy {
    --landing-product-shot-frame-inset: clamp(0.55rem, 2.4vw, 0.8rem);
  }

  #financial-workflows-copy .landing-product-shot__glass-shell {
    border-radius: var(--landing-product-shot-device-radius);
  }

  #financial-workflows-copy .landing-product-shot__window--real {
    border-radius: var(--landing-product-shot-image-radius);
  }

  #financial-workflows-copy .landing-product-shot__live-preview {
    width: 200%;
    height: 200%;
    border-radius: 0;
    transform: scale(0.5);
    transform-origin: left top;
  }
}

@media (max-width: 700px) {
  #financial-workflows-copy .landing-workflow-copy-head {
    max-width: 34rem;
    margin-bottom: clamp(2rem, 7vw, 2.75rem);
  }

  #financial-workflows-copy .landing-workflow-copy-head .landing-hero-title {
    font-size: clamp(2.65rem, 8.3vw, 3.05rem);
    line-height: 1.02;
  }

  #financial-workflows-copy .landing-workflow-copy-waitlist {
    width: min(100%, 26rem);
  }
}

@media (max-width: 560px) {
  #financial-workflows-copy .landing-workflow-copy-head {
    margin-bottom: clamp(1.65rem, 9vw, 2.5rem);
  }

  #financial-workflows-copy .landing-workflow-copy-head .landing-hero-title {
    font-size: clamp(2.45rem, 11.2vw, 2.8rem);
    text-wrap: balance;
  }

  #financial-workflows-copy .landing-workflow-copy-lead {
    margin-top: var(--spacing-md, 1rem);
    font-size: 0.98rem;
  }

  #financial-workflows-copy .landing-workflow-copy-outcomes {
    align-items: flex-start;
    flex-direction: column;
    width: fit-content;
    margin-top: var(--spacing-md, 1rem);
    text-align: left;
  }

  #financial-workflows-copy .landing-workflow-copy-switcher {
    gap: 0.55rem 0.85rem;
    margin-bottom: 0.75rem;
  }

  #financial-workflows-copy .landing-workflow-copy-switch {
    grid-template-columns: auto minmax(1.6rem, 2.4rem);
    gap: 0.42rem;
    min-height: 1.8rem;
    font-size: 0.68rem;
  }

  #financial-workflows-copy .landing-product-shot__search,
  #financial-workflows-copy .landing-product-shot__pill {
    min-height: 1.9rem;
    padding-inline: 0.65rem;
    font-size: 0.62rem;
  }

  #financial-workflows-copy .landing-product-shot__grid {
    grid-template-columns: minmax(0, 1.32fr) minmax(6.7rem, 0.68fr);
    gap: 0.45rem;
  }

  #financial-workflows-copy .landing-product-card p,
  #financial-workflows-copy .landing-product-card span,
  #financial-workflows-copy .landing-product-list b,
  #financial-workflows-copy .landing-product-row b {
    font-size: 0.62rem;
    line-height: 1.35;
  }

  #financial-workflows-copy .landing-product-card--hero,
  #financial-workflows-copy .landing-product-card--cash,
  #financial-workflows-copy .landing-product-card--close {
    min-height: 9.6rem;
  }

  #financial-workflows-copy .landing-product-card--hero strong {
    font-size: clamp(1.45rem, 8.6cqi, 1.95rem);
    letter-spacing: -0.026em;
  }

  #financial-workflows-copy .landing-product-card--invoice strong,
  #financial-workflows-copy .landing-product-card--payouts strong,
  #financial-workflows-copy .landing-product-card--close strong {
    font-size: 1rem;
  }

  #financial-workflows-copy .landing-product-donut {
    width: clamp(4rem, 18vw, 5rem);
  }

  #financial-workflows-copy .landing-product-invoice-action {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  #financial-workflows-copy .landing-product-invoice-action button {
    justify-self: start;
    padding: 0.44rem 0.62rem;
    font-size: 0.62rem;
  }

  #financial-workflows-copy .landing-product-close-list {
    display: grid;
    gap: 0.35rem;
  }

  .landing-product-shot--section .landing-product-shot__window {
    min-height: auto;
  }

  .landing-product-shot--section .landing-product-shot__app {
    padding: 0.7rem;
  }

  .landing-product-shot--section .landing-product-shot__grid {
    gap: 0.5rem;
  }

  .landing-product-shot--section .landing-product-card {
    min-height: 6.6rem;
    padding: 0.7rem;
  }

  .landing-product-shot--section .landing-product-card--metric {
    min-height: 6.6rem;
  }
}

@media (max-width: 420px) {
  #financial-workflows-copy > .landing-grid-container {
    padding-top: 1rem;
  }

  #financial-workflows-copy .landing-workflow-copy-head {
    margin-bottom: 1.75rem;
  }

  #financial-workflows-copy .landing-workflow-copy-waitlist__input {
    padding-inline: 0.85rem;
  }

  #financial-workflows-copy .landing-workflow-copy-waitlist__submit {
    padding-inline: 1.15rem;
  }

  #financial-workflows-copy .landing-product-shot__live-preview {
    width: 250%;
    height: 250%;
    transform: scale(0.4);
  }
}

@media (max-width: 360px) {
  #financial-workflows-copy .landing-workflow-copy-switcher {
    flex-wrap: nowrap;
    gap: 1.1rem;
  }

  #financial-workflows-copy .landing-workflow-copy-switch {
    display: inline-flex;
    min-width: 0;
  }

  #financial-workflows-copy .landing-workflow-copy-switch i {
    display: none;
  }
}

@media (max-width: 340px) {
  #financial-workflows-copy .landing-product-shot__live-preview {
    width: 320%;
    height: 320%;
    transform: scale(0.3125);
  }
}

.landing-workflow-asset {
  width: min(100%, 70rem);
  margin: 0 auto;
}

.landing-workflow-asset__frame {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid color-mix(in srgb, var(--landing-text) 8%, transparent);
  background:
    radial-gradient(circle at 50% 34%, color-mix(in srgb, var(--color-success) 11%, transparent), transparent 38%),
    color-mix(in srgb, var(--landing-canvas) 96%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 7%, transparent),
    0 2rem 5rem color-mix(in srgb, var(--landing-canvas) 64%, transparent);
}

.landing-workflow-asset__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 76%, color-mix(in srgb, var(--landing-canvas) 46%, transparent)),
    radial-gradient(circle at 50% 50%, transparent 58%, color-mix(in srgb, var(--landing-canvas) 34%, transparent));
}

.landing-workflow-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  color: var(--landing-text);
}

.landing-workflow-svg__shell,
.landing-workflow-svg__inner,
.landing-workflow-svg__node rect,
.landing-workflow-svg__core rect {
  fill: url("#workflowPanel");
  stroke: color-mix(in srgb, var(--landing-text) 15%, transparent);
  stroke-width: 1.2;
}

.landing-workflow-svg__shell {
  fill: transparent;
  stroke: color-mix(in srgb, var(--landing-text) 9%, transparent);
}

.landing-workflow-svg__inner {
  fill: color-mix(in srgb, var(--landing-text) 2%, transparent);
}

.landing-workflow-svg__inner {
  stroke-opacity: 0.54;
}

.landing-workflow-svg__glow {
  fill: url("#workflowGlow");
}

.landing-workflow-svg__paths path {
  fill: none;
  stroke: url("#workflowLine");
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 16;
  opacity: 0.9;
}

.landing-workflow-svg__pulse circle {
  fill: color-mix(in srgb, var(--color-success) 88%, var(--landing-text) 12%);
  filter: drop-shadow(0 0 14px color-mix(in srgb, var(--color-success) 48%, transparent));
}

.landing-workflow-svg__core circle {
  fill: none;
  stroke: color-mix(in srgb, var(--landing-text) 22%, transparent);
  stroke-width: 1.2;
}

.landing-workflow-svg__core path {
  fill: color-mix(in srgb, var(--color-success) 5%, transparent);
  stroke: color-mix(in srgb, var(--color-success) 52%, var(--landing-text) 26%);
  stroke-width: 1.2;
}

.landing-workflow-svg text {
  fill: color-mix(in srgb, var(--landing-text) 64%, transparent);
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
  font-size: 14px;
  font-weight: var(--font-weight-medium, 500);
  letter-spacing: 0.18em;
}

.landing-workflow-svg__node path {
  fill: none;
  stroke: color-mix(in srgb, var(--landing-text) 62%, transparent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-workflow-svg__node rect:not(:first-child) {
  fill: color-mix(in srgb, var(--landing-text) 15%, transparent);
  stroke: none;
}

.landing-workflow-svg__node circle {
  fill: color-mix(in srgb, var(--landing-text) 8%, transparent);
  stroke: color-mix(in srgb, var(--landing-text) 18%, transparent);
  stroke-width: 1;
}

.landing-workflow-svg__node circle:not(:first-child) {
  fill: color-mix(in srgb, var(--color-success) 68%, var(--landing-text) 18%);
  stroke: none;
}

.landing-workflow-svg__ring {
  fill: none;
  stroke: color-mix(in srgb, var(--color-success) 70%, var(--landing-text) 22%);
  stroke-width: 8;
  stroke-linecap: round;
}

.landing-workflow-svg__node > rect:first-child,
.landing-workflow-svg__core > rect:first-child {
  fill:
    color-mix(in srgb, var(--landing-text) 3%, transparent);
  stroke: color-mix(in srgb, var(--landing-text) 17%, transparent);
}

.landing-workflow-svg__core > rect:first-child {
  fill: color-mix(in srgb, var(--landing-text) 5%, transparent);
  stroke: color-mix(in srgb, var(--color-success) 28%, var(--landing-text) 12%);
}

@media (prefers-reduced-motion: no-preference) {
  .landing-workflow-svg__paths path {
    animation: landing-workflow-svg-flow 9s linear infinite;
  }

  .landing-workflow-svg__node {
    animation: landing-workflow-svg-float 8s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
  }

  .landing-workflow-svg__node--checkout,
  .landing-workflow-svg__node--payouts {
    animation-delay: -3s;
  }

  .landing-workflow-svg__core {
    animation: landing-workflow-svg-core 7s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
  }

  .landing-workflow-svg__pulse {
    animation: landing-workflow-svg-pulse 3.8s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
  }

  .landing-workflow-svg__pulse--two {
    animation-delay: -0.9s;
  }

  .landing-workflow-svg__pulse--three {
    animation-delay: -1.8s;
  }

  .landing-workflow-svg__pulse--four {
    animation-delay: -2.7s;
  }
}

@keyframes landing-workflow-svg-flow {
  to {
    stroke-dashoffset: -96;
  }
}

@keyframes landing-workflow-svg-float {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.86;
  }

  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

@keyframes landing-workflow-svg-core {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.018);
  }
}

@keyframes landing-workflow-svg-pulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.72);
  }

  44%,
  56% {
    opacity: 1;
    transform: scale(1.45);
  }
}

.landing-workflow-asset__caption {
  max-width: 46rem;
  margin: var(--spacing-xl, 1.25rem) auto 0;
  color: color-mix(in srgb, var(--landing-text) 48%, transparent);
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
  font-size: var(--font-size-sm, 0.8125rem);
  line-height: var(--line-height-relaxed, 1.6);
  text-align: center;
}

.landing-workflow-shot {
  --workflow-line: color-mix(in srgb, var(--landing-text) 14%, transparent);
  --workflow-line-strong: color-mix(in srgb, var(--landing-text) 28%, transparent);
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: clamp(var(--spacing-lg, 1rem), 2vw, var(--spacing-2xl, 1.5rem));
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid color-mix(in srgb, var(--landing-text) 9%, transparent);
  background:
    radial-gradient(circle at 50% 28%, color-mix(in srgb, var(--landing-text) 12%, transparent), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--landing-text) 5%, transparent), transparent 38%),
    color-mix(in srgb, var(--landing-canvas) 90%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 10%, transparent),
    0 2rem 5rem color-mix(in srgb, var(--landing-canvas) 64%, transparent);
}

.landing-workflow-shot__chrome {
  display: grid;
  grid-template-columns: auto auto auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.6rem;
  padding: 0 clamp(var(--spacing-md, 0.75rem), 1.8vw, var(--spacing-xl, 1.25rem)) var(--spacing-lg, 1rem);
  color: color-mix(in srgb, var(--landing-text) 48%, transparent);
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
}

.landing-workflow-shot__chrome span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--landing-text) 16%, transparent);
}

.landing-workflow-shot__chrome strong {
  margin-left: var(--spacing-md, 0.75rem);
  color: color-mix(in srgb, var(--landing-text) 74%, transparent);
  font-size: var(--font-size-sm, 0.8125rem);
  font-weight: var(--font-weight-medium, 500);
  letter-spacing: -0.01em;
}

.landing-workflow-shot__chrome em {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--font-size-xs, 0.75rem);
  font-style: normal;
}

.landing-workflow-shot__chrome em::before {
  content: '';
  width: 0.52rem;
  height: 0.52rem;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--landing-text) 84%, transparent);
  box-shadow: 0 0 0 0.38rem color-mix(in srgb, var(--landing-text) 8%, transparent);
}

.landing-workflow-shot__scene {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(34rem, 52vw, 42rem);
  border-radius: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid color-mix(in srgb, var(--landing-text) 8%, transparent);
  background:
    radial-gradient(circle at 50% 48%, color-mix(in srgb, var(--landing-text) 12%, transparent), transparent 27%),
    linear-gradient(180deg, color-mix(in srgb, var(--landing-text) 4%, transparent), transparent 45%),
    color-mix(in srgb, var(--landing-canvas) 88%, transparent);
}

.landing-workflow-shot__scene::before {
  content: '';
  position: absolute;
  inset: 9% 7%;
  z-index: -1;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 17%, var(--workflow-line) 17% 83%, transparent 83% 100%),
    linear-gradient(0deg, transparent 0 23%, var(--workflow-line) 23% 77%, transparent 77% 100%);
  mask-image: radial-gradient(ellipse at center, black 0 55%, transparent 74%);
  opacity: 0.9;
}

.landing-workflow-shot__scene::after {
  content: '';
  position: absolute;
  inset: auto -10% -28% -10%;
  height: 42%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--landing-text) 9%, transparent), transparent 62%);
  pointer-events: none;
}

.landing-workflow-shot__rail {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.landing-workflow-shot__rail span {
  position: absolute;
  left: 22%;
  right: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--workflow-line-strong), transparent);
}

.landing-workflow-shot__rail span:first-child {
  top: 32%;
}

.landing-workflow-shot__rail span:last-child {
  bottom: 32%;
}

.landing-workflow-card,
.landing-workflow-core {
  position: absolute;
  z-index: 1;
  border: 1px solid color-mix(in srgb, var(--landing-text) 12%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--landing-text) 7%, transparent), transparent 54%),
    color-mix(in srgb, var(--landing-canvas) 82%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 9%, transparent),
    0 1.4rem 3rem color-mix(in srgb, var(--landing-canvas) 70%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
  backdrop-filter: blur(16px) saturate(1.05);
}

.landing-workflow-card {
  width: min(25rem, 31%);
  min-height: 11rem;
  padding: clamp(var(--spacing-lg, 1rem), 2vw, var(--spacing-2xl, 1.5rem));
  border-radius: 1.5rem;
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
}

.landing-workflow-card--invoice {
  top: 12%;
  left: 6%;
}

.landing-workflow-card--checkout {
  top: 12%;
  right: 6%;
}

.landing-workflow-card--payouts {
  left: 6%;
  bottom: 12%;
}

.landing-workflow-card--close {
  right: 6%;
  bottom: 12%;
}

.landing-workflow-card__kicker {
  display: block;
  margin-bottom: var(--spacing-md, 0.75rem);
  color: color-mix(in srgb, var(--landing-text) 42%, transparent);
  font-size: var(--font-size-xs, 0.75rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-workflow-card__line,
.landing-workflow-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--spacing-md, 0.75rem);
}

.landing-workflow-card strong,
.landing-workflow-card b,
.landing-workflow-core strong {
  color: color-mix(in srgb, var(--landing-text) 92%, transparent);
  font-weight: var(--font-weight-semibold, 600);
  letter-spacing: -0.035em;
}

.landing-workflow-card strong {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
}

.landing-workflow-card b {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.landing-workflow-card p,
.landing-workflow-card span,
.landing-workflow-card__row {
  color: color-mix(in srgb, var(--landing-text) 48%, transparent);
}

.landing-workflow-card p {
  margin: var(--spacing-sm, 0.5rem) 0 0;
  font-size: var(--font-size-sm, 0.8125rem);
  line-height: var(--line-height-relaxed, 1.6);
}

.landing-workflow-bars {
  display: grid;
  gap: 0.5rem;
  margin-top: var(--spacing-lg, 1rem);
}

.landing-workflow-bars i {
  display: block;
  height: 0.45rem;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--landing-text) 12%, transparent);
}

.landing-workflow-bars i:last-child {
  width: 58%;
}

.landing-workflow-checkout {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  align-items: center;
  gap: var(--spacing-lg, 1rem);
}

.landing-workflow-qr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.28rem;
  aspect-ratio: 1;
  padding: 0.45rem;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--landing-text) 88%, transparent);
}

.landing-workflow-qr i {
  border-radius: 0.24rem;
  background: color-mix(in srgb, var(--landing-canvas) 96%, transparent);
}

.landing-workflow-qr i:nth-child(2),
.landing-workflow-qr i:nth-child(5),
.landing-workflow-qr i:nth-child(7) {
  opacity: 0.22;
}

.landing-workflow-card__row {
  padding-block: 0.68rem;
  border-top: 1px solid color-mix(in srgb, var(--landing-text) 8%, transparent);
  font-size: var(--font-size-sm, 0.8125rem);
}

.landing-workflow-card__row b {
  font-size: var(--font-size-sm, 0.8125rem);
}

.landing-workflow-core {
  left: 50%;
  top: 50%;
  width: min(25rem, 32%);
  min-height: 19rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: var(--spacing-sm, 0.5rem);
  padding: clamp(var(--spacing-xl, 1.25rem), 2.4vw, var(--spacing-3xl, 1.75rem));
  border-radius: 2rem;
  text-align: center;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 26%, color-mix(in srgb, var(--landing-text) 14%, transparent), transparent 54%),
    color-mix(in srgb, var(--landing-canvas) 82%, transparent);
}

.landing-workflow-core span {
  color: color-mix(in srgb, var(--landing-text) 46%, transparent);
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
  font-size: var(--font-size-xs, 0.75rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-workflow-core strong {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 0.95;
}

.landing-workflow-core p {
  margin: 0;
  color: color-mix(in srgb, var(--landing-text) 46%, transparent);
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
  font-size: var(--font-size-sm, 0.8125rem);
}

.landing-workflow-shot__caption {
  max-width: 46rem;
  margin: var(--spacing-xl, 1.25rem) auto 0;
  color: color-mix(in srgb, var(--landing-text) 48%, transparent);
  font-family: var(--font-primary, Inter, ui-sans-serif, system-ui, sans-serif);
  font-size: var(--font-size-sm, 0.8125rem);
  line-height: var(--line-height-relaxed, 1.6);
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  .landing-workflow-card--invoice,
  .landing-workflow-card--close {
    animation: landing-workflow-float 8s ease-in-out infinite;
  }

  .landing-workflow-card--checkout,
  .landing-workflow-card--payouts {
    animation: landing-workflow-float 9s ease-in-out infinite reverse;
  }

  .landing-workflow-shot__rail span {
    animation: landing-workflow-line 5s ease-in-out infinite;
  }
}

@keyframes landing-workflow-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -0.35rem;
  }
}

@keyframes landing-workflow-line {
  0%,
  100% {
    opacity: 0.34;
  }

  50% {
    opacity: 0.86;
  }
}

@media (max-width: 980px) {
  .landing-workflow-shot__scene {
    min-height: auto;
    display: grid;
    gap: var(--spacing-lg, 1rem);
    padding: var(--spacing-lg, 1rem);
  }

  .landing-workflow-shot__scene::before,
  .landing-workflow-shot__rail {
    display: none;
  }

  .landing-workflow-card,
  .landing-workflow-core {
    position: relative;
    inset: auto;
    width: auto;
    min-height: auto;
    transform: none;
  }

  .landing-workflow-core {
    min-height: 13rem;
  }
}

@keyframes landing-finance-status {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes landing-finance-shimmer {
  0%,
  48% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(520%);
  }
}

@keyframes landing-finance-ring {
  0%,
  100% {
    filter: drop-shadow(0 0 0 color-mix(in srgb, var(--landing-text) 0%, transparent));
  }
  50% {
    filter: drop-shadow(0 0 1rem color-mix(in srgb, var(--landing-text) 12%, transparent));
  }
}

@media (max-width: 900px) {
  .landing-finance-console__topbar,
  .landing-finance-console__grid {
    grid-template-columns: 1fr;
  }

  .landing-finance-console__tabs,
  .landing-finance-console__status {
    justify-self: start;
  }

  .landing-finance-panel--core,
  .landing-finance-panel--payouts {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-finance-console__status span,
  .landing-finance-link::after,
  .landing-finance-close-ring {
    animation: none !important;
  }
}

.landing-fintech-illustration-grid {
  display: grid;
  gap: clamp(var(--spacing-xl, 1.25rem), 3vw, var(--spacing-3xl, 2rem));
}

@media (min-width: 768px) {
  .landing-fintech-illustration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.landing-fintech-card {
  position: relative;
  overflow: hidden;
  min-height: 25rem;
  display: grid;
  align-content: space-between;
  gap: var(--spacing-3xl, 2rem);
  padding: clamp(var(--spacing-2xl, 1.5rem), 3vw, var(--spacing-4xl, 2.5rem));
  border-radius: 1.75rem;
  border: 1px solid color-mix(in srgb, var(--landing-text) 9%, transparent);
  background:
    radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--landing-accent) 10%, transparent), transparent 34%),
    color-mix(in srgb, var(--landing-canvas) 74%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 7%, transparent),
    0 1.5rem 4rem color-mix(in srgb, var(--landing-canvas) 72%, transparent);
}

.landing-fintech-card__copy {
  max-width: 29rem;
}

.landing-fintech-card__eyebrow {
  margin: 0 0 var(--spacing-md, 0.75rem);
  font-size: var(--font-size-xs, 0.75rem);
  font-weight: var(--font-weight-medium, 500);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--landing-text) 44%, transparent);
}

.landing-fintech-card h3 {
  margin: 0 0 var(--spacing-md, 0.75rem);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: var(--font-weight-medium, 500);
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: color-mix(in srgb, var(--landing-text) 92%, transparent);
}

.landing-fintech-card p:not(.landing-fintech-card__eyebrow) {
  margin: 0;
  max-width: 34rem;
  font-size: var(--font-size-md, 0.875rem);
  line-height: var(--line-height-relaxed, 1.6);
  color: color-mix(in srgb, var(--landing-text) 52%, transparent);
}

.landing-fintech-visual {
  margin: 0;
  min-height: 13.75rem;
  display: grid;
  place-items: center;
}

.landing-fintech-invoice,
.landing-fintech-checkout,
.landing-fintech-payouts,
.landing-fintech-close {
  width: min(100%, 25rem);
  border-radius: 1.375rem;
  border: 1px solid color-mix(in srgb, var(--landing-text) 10%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--landing-text) 5%, transparent), transparent),
    color-mix(in srgb, var(--landing-canvas) 78%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 8%, transparent),
    0 1rem 2.5rem color-mix(in srgb, var(--landing-canvas) 66%, transparent);
}

.landing-fintech-invoice {
  padding: var(--spacing-xl, 1.25rem);
}

.landing-fintech-invoice__top,
.landing-fintech-invoice__client,
.landing-fintech-line,
.landing-fintech-payout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg, 1rem);
}

.landing-fintech-invoice__top span,
.landing-fintech-invoice__client em,
.landing-fintech-line span,
.landing-fintech-payout em,
.landing-fintech-checkout__panel span,
.landing-fintech-checkout__panel em,
.landing-fintech-close__steps span {
  color: color-mix(in srgb, var(--landing-text) 46%, transparent);
}

.landing-fintech-invoice__top strong {
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.landing-fintech-invoice__client {
  margin-block: var(--spacing-xl, 1.25rem);
  padding-block: var(--spacing-md, 0.75rem);
  border-block: 1px solid color-mix(in srgb, var(--landing-text) 8%, transparent);
}

.landing-fintech-line {
  padding-block: var(--spacing-sm, 0.5rem);
  font-size: var(--font-size-sm, 0.8125rem);
}

.landing-fintech-status {
  margin-block-start: var(--spacing-lg, 1rem);
  display: inline-flex;
  border-radius: var(--radius-full);
  padding: 0.35rem 0.65rem;
  font-size: var(--font-size-xs, 0.75rem);
  color: color-mix(in srgb, var(--landing-text) 78%, transparent);
  background: color-mix(in srgb, var(--landing-text) 7%, transparent);
}

.landing-fintech-checkout {
  display: grid;
  grid-template-columns: 8.75rem 1fr;
  gap: var(--spacing-lg, 1rem);
  align-items: center;
  padding: var(--spacing-xl, 1.25rem);
}

.landing-fintech-qr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  aspect-ratio: 1;
  padding: 0.75rem;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--landing-text) 86%, transparent);
}

.landing-fintech-qr span {
  border-radius: 0.2rem;
  background: var(--landing-canvas);
}

.landing-fintech-qr span:nth-child(2n),
.landing-fintech-qr span:nth-child(7),
.landing-fintech-qr span:nth-child(11) {
  opacity: 0.18;
}

.landing-fintech-checkout__panel {
  display: grid;
  gap: var(--spacing-sm, 0.5rem);
}

.landing-fintech-checkout__panel strong {
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.landing-fintech-payouts {
  display: grid;
  gap: var(--spacing-sm, 0.5rem);
  padding: var(--spacing-lg, 1rem);
}

.landing-fintech-payout {
  padding: var(--spacing-md, 0.75rem);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--landing-text) 5%, transparent);
}

.landing-fintech-payout strong {
  white-space: nowrap;
}

.landing-fintech-payout em {
  min-width: 4.75rem;
  text-align: end;
  font-style: normal;
}

.landing-fintech-close {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: var(--spacing-xl, 1.25rem);
  align-items: center;
  padding: var(--spacing-xl, 1.25rem);
}

.landing-fintech-close__ring {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  font-size: 1.35rem;
  font-weight: var(--font-weight-semibold, 600);
  color: color-mix(in srgb, var(--landing-text) 90%, transparent);
  background:
    radial-gradient(circle at center, var(--landing-canvas) 52%, transparent 53%),
    conic-gradient(var(--landing-accent) 0 82%, color-mix(in srgb, var(--landing-text) 12%, transparent) 82% 100%);
}

.landing-fintech-close__steps {
  display: grid;
  gap: var(--spacing-sm, 0.5rem);
  font-size: var(--font-size-sm, 0.8125rem);
}

.landing-fintech-close__steps span {
  padding: var(--spacing-sm, 0.5rem) var(--spacing-md, 0.75rem);
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--landing-text) 5%, transparent);
}

@media (max-width: 520px) {
  .landing-fintech-checkout,
  .landing-fintech-close {
    grid-template-columns: 1fr;
  }

  .landing-fintech-qr,
  .landing-fintech-close__ring {
    width: 8rem;
    justify-self: center;
  }
}

/* —— Split feature rows —— */
.landing-block-split {
  display: grid;
  gap: var(--landing-split-gap);
  align-items: center;
}

@media (min-width: 768px) {
  .landing-block-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(var(--spacing-5xl, 2.5rem), 5vw, var(--spacing-8xl, 4rem));
  }
}

.landing-block-split__copy h3 {
  margin-block: 0 var(--spacing-md);
  font-family: var(--font-primary);
  font-size: clamp(var(--font-size-xl, 18px), 2.35vw, 1.72rem);
  font-weight: var(--font-weight-medium, 500);
  letter-spacing: -0.012em;
  line-height: 1.32;
  color: color-mix(in srgb, var(--landing-text) 86%, transparent);
}

.landing-block-split__copy > p {
  margin-block: 0 var(--spacing-2xl);
  font-size: clamp(var(--font-size-md, 14px), 1.25vw, var(--font-size-lg, 16px));
  line-height: var(--line-height-relaxed, 1.6);
  color: color-mix(in srgb, var(--landing-text) 50%, transparent);
}

.landing-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.landing-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  font-size: var(--font-size-md, 14px);
  line-height: var(--line-height-normal, 1.4);
  color: color-mix(in srgb, var(--landing-text) 42%, transparent);
}

.landing-feature-list li svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-block-start: 0.2rem;
  animation: none !important;
  color: var(--landing-accent) !important;
  opacity: 0.92;
}

/* —— Editorial product stories —— */
.landing-grid-container--product-story {
  max-width: 78rem;
}

.landing-product-story--stage .landing-grid-container--product-story {
  max-width: 86rem;
}

.landing-product-story .landing-block-split__copy {
  min-inline-size: 0;
}

.landing-block-split--product .landing-product-shot--section {
  width: 100%;
  max-width: 48rem;
}

.landing-product-shot--stage {
  --landing-product-shot-stage-device-radius: calc(var(--radius-xl) + var(--radius-sm));
  --landing-product-shot-stage-image-radius: var(--radius-xl);
  width: min(100%, var(--landing-product-shot-wide-size));
  max-width: none;
  margin-inline: auto;
}

.landing-product-shot--stage .landing-product-shot__glass-shell--section {
  border-radius: var(--landing-product-shot-stage-device-radius);
}

.landing-product-shot--stage .landing-product-shot__window--section-real {
  border-radius: var(--landing-product-shot-stage-image-radius);
}

#calculator-suite .landing-product-shot--section,
#nucleus-workspace .landing-product-shot--section,
#assistant-workspace .landing-product-shot--section {
  --landing-product-shot-frame-inset: var(--spacing-lg);
  --landing-product-shot-feature-device-radius: var(--radius-xl);
  --landing-product-shot-feature-image-radius: var(--radius-lg);
}

#calculator-suite .landing-product-shot__glass-shell--section,
#nucleus-workspace .landing-product-shot__glass-shell--section,
#assistant-workspace .landing-product-shot__glass-shell--section {
  border-radius: var(--landing-product-shot-feature-device-radius);
}

#calculator-suite .landing-product-shot__window--section-real,
#nucleus-workspace .landing-product-shot__window--section-real,
#assistant-workspace .landing-product-shot__window--section-real {
  border-radius: var(--landing-product-shot-feature-image-radius);
}

@media (min-width: 768px) {
  .landing-block-split--product {
    gap: clamp(var(--spacing-5xl, 2.5rem), 5vw, var(--spacing-9xl, 4.5rem));
  }

  .landing-block-split--media-first {
    grid-template-columns: minmax(0, 1.62fr) minmax(17rem, 0.78fr);
  }

  .landing-block-split--copy-first {
    grid-template-columns: minmax(17rem, 0.78fr) minmax(0, 1.62fr);
  }

  .landing-block-split--product .landing-block-split__copy {
    max-width: 25rem;
  }

  .landing-block-split--media-first .landing-product-shot--section {
    justify-self: start;
  }

  .landing-block-split--copy-first .landing-product-shot--section {
    justify-self: end;
  }

  .landing-block-split--stage {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    row-gap: clamp(var(--spacing-5xl, 2.5rem), 5vw, var(--spacing-8xl, 4rem));
    align-items: start;
  }

  .landing-block-split--stage .landing-product-shot--stage {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .landing-block-split--stage .landing-block-split__copy {
    grid-column: 2 / -2;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    column-gap: clamp(var(--spacing-4xl, 2rem), 5vw, var(--spacing-7xl, 3.5rem));
    align-items: start;
  }

  .landing-block-split--stage .landing-block-split__copy > h3,
  .landing-block-split--stage .landing-block-split__copy > p {
    grid-column: 1;
  }

  .landing-block-split--stage .landing-block-split__copy > h3 {
    grid-row: 1;
  }

  .landing-block-split--stage .landing-block-split__copy > p {
    grid-row: 2;
    margin-block-end: 0;
  }

  .landing-block-split--stage .landing-feature-list {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-xl, 1.25rem) var(--spacing-2xl, 1.5rem);
  }

  .landing-product-shot--stage .landing-product-shot__window--section-real {
    aspect-ratio: 2 / 1;
  }

  .landing-product-shot--stage .landing-product-shot__window--section-real .landing-product-shot__live-preview {
    width: 125%;
    height: 125%;
    transform: scale(0.8);
  }
}

@media (min-width: 1180px) {
  .landing-grid-container--product-story {
    padding-inline: var(--spacing-2xl, 1.5rem);
  }
}

@media (max-width: 767px) {
  .landing-block-split--stage,
  .landing-block-split--product {
    gap: var(--spacing-4xl, 2rem);
  }

  .landing-block-split--stage .landing-block-split__copy {
    display: block;
  }
}

/* —— Glass: illustrations and panels —— */
.landing-main .landing-surface-tile--pad {
  border-radius: var(--radius-xl) !important;
  padding: var(--spacing-xl) var(--spacing-2xl) !important;
  background: var(--landing-glass-bg) !important;
  border: 1px solid var(--landing-glass-border) !important;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 6%, transparent),
    var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.2)) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  backdrop-filter: blur(14px) saturate(1.05);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.landing-main .landing-surface-tile--pad:hover {
  border-color: color-mix(in srgb, var(--landing-text) 16%, transparent) !important;
}

.landing-main .snapshot-analysis-inner {
  background: var(--landing-glass-bg) !important;
  border: 1px solid var(--landing-glass-border) !important;
  border-radius: var(--radius-xl) !important;
  padding: var(--spacing-2xl) !important;
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--landing-text) 5%, transparent);
  transition:
    border-color var(--transition-base),
    background var(--transition-base);
}

.landing-main .snapshot-analysis-inner:hover {
  border-color: color-mix(in srgb, var(--landing-accent) 28%, var(--landing-glass-border)) !important;
}

.landing-main .snapshot-analysis-card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  width: 100%;
  max-width: 25rem;
}

.landing-main .landing-illu-analysis-stack.snapshot-analysis-card {
  max-width: none;
}

/* —— Card grids —— */
.landing-tile-grid {
  container-type: inline-size;
  display: grid;
  gap: clamp(var(--spacing-xl, 1.25rem), 2.5vw, var(--spacing-3xl, 2rem));
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .landing-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .landing-tile-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .landing-tile-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@container (min-width: 22rem) {
  .landing-tile-grid--4 .landing-use-case-tile {
    padding-block-start: var(--spacing-xl) !important;
  }
}

/* Use cases: pale rail + white fill for active segment */
.landing-use-case-playback {
  --use-case-count: 4;
  --use-case-step: 0;
  --use-case-dim: 0.38;
  --use-case-cycle-ms: 4500ms;
  --use-case-segment: calc(100% / var(--use-case-count));
  position: relative;
}

.landing-use-case-playback__rail {
  position: relative;
  width: 100%;
  height: 1px;
  margin-block-end: 0;
}

.landing-use-case-playback__track {
  position: absolute;
  inset: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--landing-text) 7%, transparent) 12%,
    color-mix(in srgb, var(--landing-text) 16%, transparent) 30%,
    color-mix(in srgb, var(--landing-text) 16%, transparent) 70%,
    color-mix(in srgb, var(--landing-text) 7%, transparent) 88%,
    transparent 100%
  );
}

.landing-use-case-playback__fill {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: calc(var(--use-case-step) * var(--use-case-segment));
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--landing-text) 56%, transparent) 0%,
    var(--landing-text, #f4f4f5) 45%,
    var(--landing-text, #f4f4f5) 55%,
    color-mix(in srgb, var(--landing-text) 56%, transparent) 100%
  );
  box-shadow: 0 0 10px color-mix(in srgb, var(--landing-text) 42%, transparent);
  transform: translateZ(0);
}

.landing-use-case-playback.is-segment-running .landing-use-case-playback__fill {
  animation: landing-use-case-segment-fill var(--use-case-cycle-ms) linear forwards;
}

@keyframes landing-use-case-segment-fill {
  from {
    width: 0;
  }

  to {
    width: var(--use-case-segment);
  }
}

.landing-main #what-you-can .landing-use-case-playback .landing-tile-grid {
  margin-block-start: 0;
}

.landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile {
  border-block-start: none !important;
  margin: 0;
  padding: var(--spacing-xl) 0 0 !important;
  text-align: start;
  cursor: pointer;
  position: relative;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--landing-text) 8%, transparent) 16%,
    color-mix(in srgb, var(--landing-text) 20%, transparent) 50%,
    color-mix(in srgb, var(--landing-text) 8%, transparent) 84%,
    transparent 100%
  );
}

.landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile:hover {
  border-block-start: none !important;
}

.landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile:focus {
  outline: none;
}

.landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--landing-accent) 55%, transparent);
  outline-offset: 4px;
  border-radius: var(--radius-sm, 6px);
}

.landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile.is-use-case-muted {
  opacity: var(--use-case-dim);
}

.landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile.is-use-case-muted::before {
  color: color-mix(in srgb, var(--landing-text) 38%, transparent);
}

.landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile.is-use-case-muted h3 {
  color: color-mix(in srgb, var(--landing-text) 52%, transparent) !important;
}

.landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile.is-use-case-muted p {
  color: color-mix(in srgb, var(--landing-text) 28%, transparent) !important;
}

.landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile.is-use-case-active {
  opacity: 1;
  transform: translateY(-2px);
}

.landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile.is-use-case-active::before {
  color: color-mix(in srgb, var(--landing-accent) 78%, var(--landing-text) 22%);
}

.landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile.is-use-case-active h3 {
  color: color-mix(in srgb, var(--landing-text) 90%, transparent) !important;
}

.landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile.is-use-case-active p {
  color: color-mix(in srgb, var(--landing-text) 48%, transparent) !important;
}

.landing-use-case-playback.is-paused.is-segment-running .landing-use-case-playback__fill {
  animation-play-state: paused;
}

.landing-use-case-playback.is-reduced-motion .landing-use-case-playback__fill {
  width: var(--use-case-segment);
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .landing-use-case-playback__fill {
    width: var(--use-case-segment);
    animation: none !important;
  }

  .landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile {
    opacity: 1 !important;
    border-block-start-color: color-mix(in srgb, var(--landing-text) 20%, transparent) !important;
  }

  .landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile::before,
  .landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile h3,
  .landing-main #what-you-can .landing-use-case-playback .landing-use-case-tile p {
    color: inherit;
  }
}

/* Use cases: editorial 01–04 */
.landing-main #what-you-can .landing-tile-grid {
  counter-reset: usecase;
}

.landing-main #what-you-can .landing-use-case-tile {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  border-block-start: 1px solid color-mix(in srgb, var(--landing-text) 20%, transparent) !important;
  box-shadow: none !important;
  padding: var(--spacing-xl) 0 0 !important;
  display: block;
  counter-increment: usecase;
  transition: border-color var(--transition-base);
}

.landing-main #what-you-can .landing-use-case-tile:hover {
  border-block-start-color: color-mix(in srgb, var(--landing-accent) 42%, transparent) !important;
}

.landing-main #what-you-can .landing-use-case-tile::before {
  content: '0' counter(usecase);
  display: block;
  font-family: var(--font-primary);
  font-size: var(--font-size-sm, 12px);
  font-weight: var(--font-weight-semibold, 600);
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--landing-accent) 70%, var(--landing-text-muted) 30%);
  margin-block-end: var(--spacing-lg);
}

.landing-main #what-you-can .landing-use-case-tile h3 {
  font-family: var(--font-primary);
  font-size: var(--font-size-xl, 18px);
  line-height: 1.22;
  letter-spacing: -0.018em;
  font-weight: var(--font-weight-medium, 500);
  color: color-mix(in srgb, var(--landing-text) 84%, transparent) !important;
  margin-block-end: var(--spacing-md) !important;
}

.landing-main #what-you-can .landing-use-case-tile p {
  font-size: var(--font-size-md, 14px);
  line-height: var(--line-height-relaxed, 1.6);
  color: color-mix(in srgb, var(--landing-text) 40%, transparent) !important;
  margin: 0;
}

/* Hierarchy over html.dark: section h2 → lead; split h3 → paragraph → list */
html.dark .landing-main section.landing-section .landing-block-title,
html.dark .landing-main section.landing-section-xl .landing-block-title {
  color: color-mix(in srgb, var(--landing-text) 99%, transparent) !important;
}

html.dark .landing-main section.landing-section .landing-block-lead,
html.dark .landing-main section.landing-section-xl .landing-block-lead {
  color: color-mix(in srgb, var(--landing-text) 54%, transparent) !important;
}

html.dark .landing-main section.landing-section .landing-block-split__copy h3,
html.dark .landing-main section.landing-section-xl .landing-block-split__copy h3 {
  color: color-mix(in srgb, var(--landing-text) 86%, transparent) !important;
}

html.dark .landing-main section.landing-section .landing-block-split__copy > p,
html.dark .landing-main section.landing-section-xl .landing-block-split__copy > p,
html.dark .landing-main section.landing-section .landing-block-split__copy > p.text-muted-foreground,
html.dark .landing-main section.landing-section-xl .landing-block-split__copy > p.text-muted-foreground {
  color: color-mix(in srgb, var(--landing-text) 50%, transparent) !important;
}

html.dark .landing-main section.landing-section .landing-block-split__copy .landing-feature-list li,
html.dark .landing-main section.landing-section-xl .landing-block-split__copy .landing-feature-list li {
  color: color-mix(in srgb, var(--landing-text) 42%, transparent) !important;
}

html.dark .landing-main #what-you-can .landing-use-case-tile h3 {
  color: color-mix(in srgb, var(--landing-text) 84%, transparent) !important;
}

html.dark .landing-main #what-you-can .landing-use-case-tile p {
  color: color-mix(in srgb, var(--landing-text) 40%, transparent) !important;
}

/* Apps */
.landing-main #apps .apps-tools-by-category {
  display: flex;
  flex-direction: column;
  gap: clamp(var(--spacing-8xl, 4rem), 5.5vw, var(--spacing-11xl, 5.5rem));
}

.landing-main #apps .apps-tool-category > h3 {
  margin-block-end: var(--spacing-lg);
  font-size: var(--font-size-lg, 16px);
  letter-spacing: -0.02em;
  color: color-mix(in srgb, var(--landing-text) 92%, transparent);
}

.landing-main #apps .apps-tool-category > .landing-tile-grid {
  grid-auto-rows: 1fr;
}

@media (prefers-reduced-motion: no-preference) {
  .landing-main #apps .apps-tool-category > .landing-tile-grid:has(a.app-card:hover) a.app-card:not(:hover) {
    filter: blur(3px);
    opacity: 0.5;
    transition:
      filter var(--transition-slow),
      opacity var(--transition-slow);
  }
}

/* Pricing */
.landing-main .landing-pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(var(--spacing-xl, 1.25rem), 2.4vw, var(--spacing-3xl, 1.75rem));
  max-width: min(34rem, 100%);
  margin-inline: auto;
  align-items: stretch;
}

.landing-main #pricing .landing-pricing-plan-card--app-surface,
.landing-main #pricing .landing-pricing-premium-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: clamp(44rem, 55vw, 46rem);
  overflow: hidden;
  border-top-color: transparent !important;
  padding: var(--spacing-2xl, 1.5rem) !important;
  container-type: inline-size;
}

.landing-main #pricing .landing-pricing-plan-card--app-surface::before,
.landing-main #pricing .landing-pricing-premium-card::before {
  content: none !important;
  display: none !important;
}

@media (min-width: 1180px) {
  .landing-main .landing-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 73rem;
    align-items: stretch;
  }
}

@media (max-width: 1179px) {
  .landing-main #pricing .landing-pricing-plan-card--app-surface,
  .landing-main #pricing .landing-pricing-premium-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .landing-main #pricing .landing-pricing-plan-card--app-surface,
  .landing-main #pricing .landing-pricing-premium-card {
    padding: var(--spacing-xl, 1.25rem) !important;
    border-radius: 1.5rem !important;
  }

  .landing-main #pricing .landing-pricing-visual {
    flex-basis: 8rem;
    min-height: 8rem;
    width: calc(100% + (var(--spacing-xl, 1.25rem) * 2));
    margin:
      calc(var(--spacing-xl, 1.25rem) * -1)
      calc(var(--spacing-xl, 1.25rem) * -1)
      var(--spacing-xl, 1.25rem);
  }

  .landing-main #pricing .landing-pricing-plan-card--pro > .absolute.-top-3 {
    left: var(--spacing-lg, 1rem) !important;
    max-width: calc(100% - 2rem);
  }
}

.landing-main #pricing .landing-pricing-premium-card {
  border-color: color-mix(in srgb, var(--landing-text) 56%, transparent) !important;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--landing-text) 10%, transparent),
    0 0 0 1px color-mix(in srgb, var(--landing-text) 18%, transparent),
    var(--shadow-lg) !important;
}

.landing-main #pricing .landing-pricing-plan-card--app-surface > .mb-6,
.landing-main #pricing .landing-pricing-premium-card > .mb-6 {
  margin-bottom: var(--spacing-xl, 1.25rem) !important;
}

.landing-main #pricing .landing-pricing-plan-card--app-surface > .mb-6:first-of-type,
.landing-main #pricing .landing-pricing-premium-card > .mb-6:first-of-type {
  min-height: 4.35rem;
}

.landing-main #pricing .landing-pricing-plan-card--app-surface > .mb-6:nth-of-type(2),
.landing-main #pricing .landing-pricing-premium-card > .mb-6:nth-of-type(2) {
  min-height: 4rem;
}

.landing-main #pricing .landing-feature-list {
  flex: 1 1 auto;
  display: grid;
  align-content: start;
  gap: 1rem;
  margin-top: 0.25rem;
}

.landing-main #pricing .landing-pricing-plan-card--pro > .absolute.-top-3 {
  top: var(--spacing-md, 0.75rem) !important;
  left: var(--spacing-xl, 1.25rem) !important;
  right: auto !important;
  z-index: 4;
  max-width: calc(100% - (var(--spacing-xl, 1.25rem) * 2));
  transform: none !important;
  translate: none !important;
  background: color-mix(in srgb, var(--landing-text) 92%, var(--landing-canvas) 8%) !important;
  color: var(--landing-canvas) !important;
  box-shadow: 0 0.45rem 1.4rem color-mix(in srgb, var(--landing-canvas) 38%, transparent);
}

.landing-main #pricing .landing-pricing-visual {
  position: relative;
  flex: 0 0 clamp(8.8rem, 15cqi, 10.4rem);
  min-height: clamp(8.8rem, 15cqi, 10.4rem);
  width: calc(100% + (var(--spacing-2xl, 1.5rem) * 2));
  margin:
    calc(var(--spacing-2xl, 1.5rem) * -1)
    calc(var(--spacing-2xl, 1.5rem) * -1)
    var(--spacing-2xl, 1.5rem);
  overflow: hidden;
  border-radius: inherit;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background-image:
    linear-gradient(180deg, color-mix(in srgb, var(--landing-canvas) 0%, transparent), color-mix(in srgb, var(--landing-canvas) 66%, transparent)),
    url("../../img/pro-cosmos.webp");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.86;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%),
    linear-gradient(180deg, black 0%, black 48%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%),
    linear-gradient(180deg, black 0%, black 48%, transparent 100%);
  mask-composite: intersect;
}

.landing-main #pricing .landing-pricing-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--landing-text) 12%, transparent), transparent 32%),
    linear-gradient(180deg, transparent 0 52%, color-mix(in srgb, var(--landing-canvas) 72%, transparent));
}

.landing-main #pricing .landing-pricing-visual,
.landing-main #pricing .landing-pricing-visual:hover {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.landing-main #pricing .landing-pricing-plan-card--free .landing-pricing-visual {
  background-position: 50% 74%;
  filter: grayscale(1) brightness(0.72) contrast(1.06);
}

.landing-main #pricing .landing-pricing-plan-card--pro .landing-pricing-visual {
  opacity: 0.95;
  background-position: 50% 36%;
  filter: grayscale(0.18) brightness(0.98) contrast(1.16);
  box-shadow: none;
}

.landing-main #pricing .landing-pricing-plan-card--pro .landing-pricing-visual::after {
  background:
    radial-gradient(circle at 50% 16%, color-mix(in srgb, var(--landing-text) 30%, transparent), transparent 28%),
    radial-gradient(circle at 76% 34%, color-mix(in srgb, var(--landing-text) 9%, transparent), transparent 30%),
    linear-gradient(180deg, transparent 0 52%, color-mix(in srgb, var(--landing-canvas) 68%, transparent));
}

.landing-main #pricing .landing-pricing-plan-card--team .landing-pricing-visual {
  background-position: 50% 18%;
  filter: grayscale(0.72) brightness(0.82) contrast(1.1);
}

.landing-main #pricing .absolute.bg-primary {
  background: var(--color-button-primary, #eeeeee) !important;
  color: var(--color-button-primary-text, #0a0a0a) !important;
}

.landing-main #pricing .landing-pricing-plan-card--app-surface > .mt-auto,
.landing-main #pricing .landing-pricing-premium-card > .mt-auto {
  width: 100%;
  margin-top: auto !important;
  padding-top: var(--spacing-2xl, 1.5rem) !important;
}

.landing-main #pricing .landing-pricing-plan-card--app-surface > .mt-auto > a,
.landing-main #pricing .landing-pricing-premium-card > .mt-auto > a {
  display: inline-flex !important;
  width: 100%;
  height: 3rem !important;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full, 999px);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 150ms ease,
    background-color 150ms ease,
    color 150ms ease,
    border-color 150ms ease;
}

.landing-main #pricing .landing-pricing-plan-card--app-surface > .mt-auto > a:hover,
.landing-main #pricing .landing-pricing-premium-card > .mt-auto > a:hover {
  transform: translateY(-1px);
}

.landing-main #pricing .landing-pricing-plan-card--free > .mt-auto > a {
  border: 1px solid color-mix(in srgb, var(--landing-text) 12%, transparent) !important;
  background: color-mix(in srgb, var(--landing-text) 6%, transparent) !important;
  color: color-mix(in srgb, var(--landing-text) 84%, transparent) !important;
  box-shadow: none !important;
}

.landing-main #pricing .landing-pricing-plan-card--free > .mt-auto > a:hover {
  border-color: color-mix(in srgb, var(--landing-text) 22%, transparent) !important;
  background: color-mix(in srgb, var(--landing-text) 10%, transparent) !important;
}

.landing-main #pricing .landing-pricing-plan-card--pro > .mt-auto > a,
.landing-main #pricing .landing-pricing-plan-card--team > .mt-auto > a {
  border: 0 !important;
  background: var(--color-button-primary) !important;
  color: var(--color-button-primary-text) !important;
  box-shadow: none !important;
}

.landing-main #pricing .landing-pricing-plan-card--app-surface > .mt-auto > a::before,
.landing-main #pricing .landing-pricing-premium-card > .mt-auto > a::before {
  content: none !important;
  display: none !important;
}

.landing-main #pricing .landing-pricing-plan-card--app-surface > .mt-auto > a span,
.landing-main #pricing .landing-pricing-premium-card > .mt-auto > a span {
  color: inherit !important;
}

.landing-main #pricing .landing-pricing-plan-card--pro > .mt-auto > a:hover,
.landing-main #pricing .landing-pricing-plan-card--team > .mt-auto > a:hover {
  background: color-mix(in srgb, var(--color-button-primary) 92%, var(--landing-canvas) 8%) !important;
}

.landing-main #pricing .text-center.text-xs {
  margin-block-start: var(--spacing-3xl);
  color: color-mix(in srgb, var(--landing-text) 38%, transparent);
}

/* Final CTA */
.landing-main #landing-final-cta .landing-block-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

/* FAQ inside main — column already narrowed in markup */
.landing-main #faq {
  overflow-anchor: none;
}

.landing-main #faq .landing-block-head {
  max-width: 36rem;
}

@media (max-width: 800px) {
  .landing-main > .landing-section {
    padding-block: clamp(var(--spacing-6xl, 3rem), 8vw, 3.75rem) !important;
  }

  .landing-main > .landing-section-xl {
    padding-block: clamp(var(--spacing-7xl, 3.25rem), 9vw, 4.25rem) !important;
  }

  .landing-block-head {
    margin-block-end: clamp(var(--spacing-4xl, 2rem), 5vw, 2.75rem);
  }

  .landing-main #what-you-can .landing-tile-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* Background photos: light Ken Burns, only when section is in viewport */
@media (prefers-reduced-motion: no-preference) {
  .landing-section-photo.is-photo-motion::before {
    animation: landing-section-photo-drift 34s ease-in-out infinite alternate;
  }

  #landing-final-cta.landing-section-photo.is-photo-motion::before {
    animation-name: landing-section-photo-drift-a;
    animation-duration: 38s;
  }
}

@keyframes landing-section-photo-drift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.12) translate3d(-1.25%, -0.85%, 0);
  }
}

@keyframes landing-section-photo-drift-a {
  from {
    transform: scale(1.04) translate3d(0.6%, 0.4%, 0);
  }

  to {
    transform: scale(1.11) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes landing-section-photo-drift-b {
  from {
    transform: scale(1.06) translate3d(-0.8%, 0, 0);
  }

  to {
    transform: scale(1.13) translate3d(1%, -0.9%, 0);
  }
}

@keyframes landing-section-photo-drift-c {
  from {
    transform: scale(1.05) translate3d(0, -0.5%, 0);
  }

  to {
    transform: scale(1.1) translate3d(-0.9%, 0.7%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-section-photo::before {
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }

  .landing-main .use-case-icon,
  .landing-main ul.space-y-3 li svg,
  .landing-main .landing-feature-list li svg {
    animation: none !important;
  }

  .landing-main #apps .apps-tool-category > .landing-tile-grid:has(a.app-card:hover) a.app-card:not(:hover) {
    filter: none;
    opacity: 1;
  }
}

/* Pricing — Vercel-style cards, no artwork */
.landing-main #pricing .landing-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl, 1.5rem);
  align-items: stretch;
  width: min(100%, 74rem);
  max-width: 74rem;
  margin-inline: auto;
}

.landing-main #pricing .landing-pricing-visual {
  display: none !important;
}

.landing-main #pricing .landing-pricing-plan-card--app-surface,
.landing-main #pricing .landing-pricing-premium-card {
  --landing-pricing-card-background: linear-gradient(
    180deg,
    var(--landing-quick-surface) 0%,
    color-mix(in srgb, var(--landing-quick-surface) 72%, transparent) 48%,
    transparent 100%
  );
  box-sizing: border-box;
  isolation: isolate;
  contain: paint;
  min-height: 36rem !important;
  height: 100%;
  padding: clamp(1.5rem, 2vw, 2rem) !important;
  border: 0 !important;
  border-radius: 1.75rem !important;
  background: var(--landing-pricing-card-background) !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: hidden !important;
  clip-path: inset(0 round 1.75rem);
}

.landing-main #pricing .landing-pricing-plan-card--app-surface::before,
.landing-main #pricing .landing-pricing-plan-card--app-surface::after,
.landing-main #pricing .landing-pricing-premium-card::before,
.landing-main #pricing .landing-pricing-premium-card::after {
  display: none !important;
}

.landing-main #pricing .landing-pricing-premium-card {
  overflow: visible !important;
  contain: layout style !important;
  clip-path: none !important;
  z-index: 1;
  border: 0 !important;
  background: var(--landing-pricing-card-background) !important;
  box-shadow: none !important;
}

.landing-main #pricing .landing-pricing-badge {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
  align-self: auto;
  width: fit-content;
  margin: 0;
  padding: 0.42rem 0.72rem;
  border: 1px solid color-mix(in srgb, var(--landing-text, #fff) 18%, transparent);
  border-radius: 999px;
  background: var(--color-button-primary, #ededed);
  color: var(--color-button-primary-text, #050505);
  font: 700 0.75rem/1 var(--font-ui, Inter, system-ui, sans-serif);
  letter-spacing: -0.01em;
}

.landing-main #pricing .landing-pricing-plan-card--app-surface > .mb-6:first-of-type,
.landing-main #pricing .landing-pricing-premium-card > .mb-6:first-of-type {
  min-height: 4.1rem;
  margin-block-end: 1.25rem;
}

.landing-main #pricing .landing-pricing-plan-card--app-surface > .mb-6:nth-of-type(2),
.landing-main #pricing .landing-pricing-premium-card > .mb-6:nth-of-type(2) {
  min-height: 4.8rem;
  margin-block-end: 1.4rem;
}

.landing-main #pricing h3 {
  color: var(--landing-text, #f5f5f5);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.landing-main #pricing .text-muted-foreground {
  color: color-mix(in srgb, var(--landing-text, #fff) 58%, transparent);
}

.landing-main #pricing .text-4xl {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.landing-main #pricing .landing-feature-list {
  display: grid;
  gap: 0.95rem;
  flex: 1;
  margin-block: 0;
  padding: 0;
}

.landing-main #pricing .landing-feature-list li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.8rem;
  align-items: start;
  color: color-mix(in srgb, var(--landing-text, #fff) 64%, transparent);
  font-size: 0.96rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.landing-main #pricing .landing-feature-list li svg {
  width: 1rem;
  height: 1rem;
  margin-block-start: 0.16rem;
  color: color-mix(in srgb, var(--landing-text, #fff) 82%, transparent);
}

.landing-main #pricing .mt-auto {
  padding-block-start: 2rem !important;
}

.landing-main #pricing .landing-glass-secondary-cta,
.landing-main #pricing .landing-glass-pricing-soon {
  height: 2.9rem !important;
  border-radius: 999px !important;
  font-size: var(--font-size-md, 0.875rem) !important;
  font-weight: var(--font-weight-semibold, 600) !important;
  letter-spacing: -0.02em !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.landing-main #pricing .landing-glass-secondary-cta {
  border: 1px solid color-mix(in srgb, var(--landing-text, #fff) 14%, transparent) !important;
  background: color-mix(in srgb, var(--landing-text, #fff) 4%, transparent) !important;
  color: var(--landing-text, #fff) !important;
}

.landing-main #pricing .landing-glass-pricing-soon {
  border: 1px solid var(--color-button-primary, #ededed) !important;
  background: var(--color-button-primary, #ededed) !important;
  color: var(--color-button-primary-text, #050505) !important;
}

.landing-main #pricing .landing-glass-secondary-cta::before,
.landing-main #pricing .landing-glass-secondary-cta::after,
.landing-main #pricing .landing-glass-pricing-soon::before,
.landing-main #pricing .landing-glass-pricing-soon::after {
  display: none !important;
}

.landing-main #pricing .landing-glass-secondary-cta:hover {
  background: color-mix(in srgb, var(--landing-text, #fff) 8%, transparent) !important;
}

.landing-main #pricing .landing-glass-pricing-soon:hover {
  background: color-mix(in srgb, var(--color-button-primary, #ededed) 92%, var(--landing-canvas, #050505) 8%) !important;
}

@media (min-width: 1180px) {
  .landing-main #pricing .landing-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.9rem, 1.4vw, 1.35rem);
  }

  .landing-main #pricing .landing-pricing-plan-card--app-surface,
  .landing-main #pricing .landing-pricing-premium-card {
    margin: 0 !important;
    min-height: 36rem !important;
    height: 100% !important;
    border-radius: 1.75rem !important;
    clip-path: inset(0 round 1.75rem);
  }

  .landing-main #pricing .landing-pricing-plan-card--free {
    border-radius: 1.75rem !important;
  }

  .landing-main #pricing .landing-pricing-plan-card--pro {
    margin-inline: 0;
    border-radius: 1.75rem !important;
  }

  .landing-main #pricing .landing-pricing-plan-card--team {
    border-radius: 1.75rem !important;
  }
}
