﻿:root {
  --bg: #0e0f11;
  --bg-soft: #141518;
  --text: #f0f2f5;
  --text-2: rgba(236, 241, 248, 0.62);
  --text-3: rgba(236, 241, 248, 0.38);
  --border: rgba(255, 255, 255, 0.1);
  --radius: 12px;
  --container: 1140px;
  --py: clamp(96px, 12vw, 140px);
  --font-brand: "Manrope", "DM Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-headline: "Inter", "Geist", "Manrope", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 150;
  opacity: 0.18;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.02' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(17, 18, 20, 0.032));
  background-size: 180px 180px, 100% 100%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat;
  background-blend-mode: multiply, normal, normal;
  mix-blend-mode: multiply;
  filter: contrast(145%) brightness(99%);
}

body::after {
  content: none;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--py) 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 0%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(200, 215, 235, 0.4));
}

.privacy-link {
  position: fixed;
  left: 22px;
  bottom: 18px;
  z-index: 160;
  color: rgba(236, 241, 248, 0.56);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.privacy-link:hover,
.privacy-link:focus-visible {
  color: rgba(247, 249, 252, 0.9);
  opacity: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-hero-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-hero-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nav {
  position: relative;
  z-index: 2;
  background: transparent;
}

.nav-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 40px;
}

.nav-brand {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
}

.nav-brand img {
  width: 30px;
  height: 30px;
}

.nav-links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(17, 18, 20, 0.68);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: rgba(17, 18, 20, 0.98);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 0;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vh, 80px) 0 clamp(72px, 10vh, 120px);
  background: #ffffff;
  color: #111214;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.34;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.02' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(17, 18, 20, 0.04));
  background-size: 180px 180px, 100% 100%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat;
  background-blend-mode: multiply, normal, normal;
  mix-blend-mode: multiply;
  filter: contrast(152%) brightness(98%);
}

.hero-frame::after {
  content: none;
}

.hero-frame > * {
  position: relative;
  z-index: 2;
}

.hero-scroll-cue {
  z-index: 2;
}

.hero-nav {
  width: auto;
  max-width: none;
  margin-right: clamp(24px, 4vw, 44px);
  margin-left: clamp(24px, 4vw, 44px);
}

.story-section {
  padding-top: clamp(164px, 18vw, 260px);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 24px;
}

.hero .btn-primary,
.hero .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hero .btn-primary {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(17, 18, 20, 0.74);
  font-size: 0.75rem;
  font-weight: 500;
}

.hero .btn-primary:hover {
  color: rgba(17, 18, 20, 0.98);
}

.hero .btn-secondary {
  padding: 11px 0;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(17, 18, 20, 0.76);
  font-size: 0.75rem;
  font-weight: 500;
}

.hero .btn-secondary:hover {
  color: rgba(17, 18, 20, 0.95);
}

.hero-copy {
  text-align: center;
  margin-bottom: clamp(48px, 7vh, 80px);
}

.hero-heading {
  font-family: var(--font-headline);
  font-size: clamp(1.85rem, 3vw, 3.3rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.038em;
  margin: 0;
}

.hero-heading__line {
  display: block;
  color: rgba(17, 18, 20, 0.94);
  white-space: nowrap;
}

.hero-heading__line--muted {
  color: rgba(17, 18, 20, 0.32);
  font-weight: 500;
}

.hero-fake-demo {
  width: min(var(--container), calc(100% - 64px));
  margin-top: clamp(48px, 7vh, 88px);
  margin-right: auto;
  margin-left: auto;
}

.hero-fake-demo-browser {
  --hero-demo-base-width: 1440;
  --hero-demo-base-height: 900;
  --hero-demo-scale: 1;
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.1);
  box-shadow: 0 8px 32px rgba(17, 18, 20, 0.08);
  background: #fff;
}

.hero-fake-demo-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: linear-gradient(180deg, #f6f6f5, #f1f2f1);
  border-bottom: 1px solid #e3e5df;
  height: 36px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.hero-fake-demo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-fake-demo-dot:nth-child(1) { background: #ff5f57; }
.hero-fake-demo-dot:nth-child(2) { background: #febc2e; }
.hero-fake-demo-dot:nth-child(3) { background: #28c840; }

.hero-fake-demo-url {
  flex: 1;
  height: 22px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  color: #8a93a1;
  background: rgba(17, 18, 20, 0.05);
  border-radius: 5px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
  margin: 0 auto;
}

.hero-fake-demo-scaler {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--hero-demo-base-width) * 1px);
  transform: scale(var(--hero-demo-scale));
  transform-origin: top left;
}

.hero-fake-demo-frame {
  display: block;
  width: calc(var(--hero-demo-base-width) * 1px);
  height: calc(var(--hero-demo-base-height) * 1px);
  border: none;
  background: #fff;
}

.hero-fake-demo-stage {
  position: relative;
  width: 100%;
  /* Match the iframe viewport so the sidepanel footer controls stay visible. */
  aspect-ratio: 8 / 5;
  aspect-ratio: var(--hero-demo-base-width) / var(--hero-demo-base-height);
  overflow: hidden;
  background: #fff;
}

.hero-scroll-cue {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: clamp(20px, 3.5vh, 36px) auto 0;
  color: rgba(17, 18, 20, 0.56);
  text-decoration: none;
  white-space: nowrap;
  transform: translateY(0);
  transition: color 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
}

.hero-scroll-cue:hover {
  color: rgba(17, 18, 20, 0.86);
}

.hero-scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.hero-scroll-cue__mouse {
  position: relative;
  width: 15px;
  height: 24px;
  border: 1px solid rgba(17, 18, 20, 0.32);
  border-radius: 999px;
  flex-shrink: 0;
}

.hero-scroll-cue__wheel {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 3px;
  height: 5px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.58);
  transform: translateX(-50%);
  animation: hero-scroll-wheel 1.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.hero-scroll-cue__label {
  display: block;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

@keyframes hero-scroll-wheel {
  0% {
    opacity: 0.18;
    transform: translateX(-50%) translateY(0);
  }

  35% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes hero-caret-blink {
  0%,
  49% {
    opacity: 1;
  }

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

.story-section {
  overflow: hidden;
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(84px, 9vw, 112px);
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
  opacity: 0.28;
}

.story-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.085;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.story-shell {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 72px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
}

.section-lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(1420px, 100%);
  gap: 24px;
  max-width: 1420px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.3);
}

.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.section-title {
  font-family: var(--font-brand);
  max-width: none;
  font-size: clamp(1.95rem, 2.65vw, 2.55rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: rgba(255, 255, 255, 0.98);
}

.section-title .title-line {
  display: block;
  white-space: nowrap;
}

.section-title .title-line--muted {
  color: rgba(255, 255, 255, 0.33);
}

.story-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 28px);
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.story-media {
  position: relative;
  aspect-ratio: 1 / 0.92;
  height: auto;
  overflow: hidden;
  border-radius: 0;
  background: #101418;
  box-shadow: none;
}

.story-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.015) 0%, rgba(6, 8, 12, 0.075) 100%),
    radial-gradient(circle at 50% 6%, rgba(255, 255, 255, 0.08), transparent 42%);
  z-index: 1;
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.25' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  opacity: 0.045;
  mix-blend-mode: screen;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(1) contrast(0.97) brightness(0.9);
  transition:
    transform 0.56s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.32s ease;
}

.story-card:hover .story-media img {
  transform: scale(1.042);
  filter: saturate(1.05) contrast(0.99) brightness(0.94);
}

.story-media--guidance img {
  object-position: center top;
  transform: scale(1);
}

.story-card:hover .story-media--guidance img {
  transform: scale(1.02);
}

.story-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.story-title {
  font-family: var(--font-brand);
  font-size: clamp(1rem, 1.02vw, 1.26rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: rgba(255, 255, 255, 0.96);
}

.story-desc {
  max-width: 38ch;
  font-size: clamp(0.84rem, 0.8vw, 0.96rem);
  line-height: 1.26;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.45);
  text-wrap: pretty;
}

.benefits-section {
  overflow: hidden;
  padding-top: clamp(84px, 9vw, 128px);
  padding-bottom: clamp(92px, 10vw, 140px);
}

.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background: transparent;
}

.benefits-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='152' viewBox='0 0 152 152'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.18' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='152' height='152' filter='url(%23n)' opacity='.58'/%3E%3C/svg%3E");
  background-size: 152px 152px;
}

.benefits-shell {
  position: relative;
  z-index: 1;
  width: min(1256px, calc(100% - 96px));
  margin: 0 auto;
}

.benefits-lead {
  width: min(980px, 100%);
  max-width: 980px;
}

.benefits-title {
  max-width: 24ch;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 0.98;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.benefit-card {
  position: relative;
  min-height: 292px;
  padding: 30px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01)),
    rgba(15, 16, 18, 0.76);
  transition:
    transform 0.26s ease,
    border-color 0.26s ease,
    background 0.26s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='112' viewBox='0 0 112 112'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.24' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='112' height='112' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
  background-size: 112px 112px;
}

.benefit-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.012)),
    rgba(17, 18, 20, 0.84);
}

.benefit-badge,
.benefit-metric,
.benefit-title,
.benefit-desc {
  position: relative;
  z-index: 1;
}

.benefit-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(236, 241, 248, 0.44);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.benefit-badge svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.benefit-metric {
  margin-top: 34px;
  color: rgba(247, 249, 252, 0.98);
  font-family: var(--font-brand);
  font-size: clamp(2.25rem, 3.35vw, 3.35rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.06em;
  transition: transform 0.24s ease, color 0.24s ease;
}

.benefit-title {
  margin-top: 18px;
  color: rgba(247, 249, 252, 0.95);
  font-family: var(--font-brand);
  font-size: clamp(1.08rem, 1.12vw, 1.34rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.benefit-desc {
  max-width: 32ch;
  margin-top: 12px;
  color: rgba(236, 241, 248, 0.46);
  font-size: clamp(0.94rem, 0.92vw, 1rem);
  line-height: 1.5;
  letter-spacing: -0.018em;
  text-wrap: pretty;
}

.benefit-card:hover .benefit-metric {
  transform: translateY(-1px) scale(1.03);
  color: rgba(255, 255, 255, 1);
}

.integrations-section {
  overflow: visible;
  padding-top: clamp(80px, 8vw, 116px);
  padding-bottom: clamp(96px, 10vw, 132px);
}

.integrations-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
  opacity: 0.24;
}

.integrations-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.12' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.56'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.integrations-shell {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

.integrations-layout {
  display: grid;
  grid-template-columns: minmax(620px, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 4vw, 72px);
}

.integrations-visual-wrap {
  position: relative;
  overflow: visible;
  width: calc(100% + 220px);
  margin-left: -220px;
}

.integrations-orbit {
  --orbit-x: 0px;
  --orbit-y: 0px;
  position: relative;
  width: min(100%, 980px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 0 -160px;
  transform: translate3d(var(--orbit-x), var(--orbit-y), 0);
  transition: transform 0.3s ease;
}

.orbit-ring,
.orbit-core,
.orbit-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.015) inset;
}

.orbit-ring--outer {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.orbit-ring--mid {
  width: 79%;
  aspect-ratio: 1 / 1;
  border-color: rgba(255, 180, 180, 0.09);
}

.orbit-ring--inner {
  width: 58%;
  aspect-ratio: 1 / 1;
  border-color: rgba(160, 210, 255, 0.1);
}

.orbit-ring--core {
  width: 31%;
  aspect-ratio: 1 / 1;
  border-color: rgba(255, 255, 255, 0.07);
}

.orbit-core {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 4;
}

.orbit-core img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: 0.96;
  filter: none;
}

.orbit-badge {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: none;
  z-index: 3;
  will-change: transform;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease;
  animation: orbit-float var(--float-duration, 8s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

.orbit-badge:hover {
  transform: translate(-50%, -50%) scale(1.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.orbit-badge img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: saturate(1.05) brightness(0.96);
}

.orbit-badge--salesforce {
  left: 27%;
  top: 22%;
  --float-delay: -0.6s;
}

.orbit-badge--google {
  left: 49%;
  top: 13%;
  --float-duration: 7.4s;
  --float-delay: -2s;
}

.orbit-badge--microsoft {
  left: 73%;
  top: 27%;
  --float-duration: 8.4s;
  --float-delay: -1.4s;
}

.orbit-badge--hubspot {
  left: 42%;
  top: 41%;
  --float-duration: 7.1s;
  --float-delay: -2.6s;
}

.orbit-badge--jira {
  left: 64%;
  top: 50%;
  --float-duration: 7.8s;
  --float-delay: -0.9s;
}

.orbit-badge--notion {
  left: 76%;
  top: 69%;
  --float-duration: 8.2s;
  --float-delay: -1.8s;
}

.orbit-badge--workday {
  left: 82%;
  top: 54%;
  --float-duration: 7s;
  --float-delay: -3s;
}

.orbit-badge--servicenow {
  left: 18%;
  top: 57%;
  --float-duration: 8.8s;
  --float-delay: -2.2s;
}

.orbit-badge--servicenow img {
  width: 42px;
  height: 12px;
}

.orbit-badge--notion img {
  width: 34px;
  height: 34px;
}

.orbit-badge--slack {
  left: 58%;
  top: 79%;
  --float-duration: 8s;
  --float-delay: -1.3s;
}

.orbit-badge--slack img {
  width: 34px;
  height: 34px;
}

.integrations-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 30rem;
}

.integrations-title {
  max-width: 13ch;
  font-family: var(--font-brand);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.045em;
  color: rgba(247, 249, 252, 0.98);
  text-wrap: balance;
}

.integrations-title span {
  display: block;
}

.integrations-desc {
  max-width: 40ch;
  color: rgba(236, 241, 248, 0.68);
  font-size: 0.98rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.integrations-desc--muted {
  color: rgba(236, 241, 248, 0.46);
}

.pricing-section {
  overflow: hidden;
  padding-top: clamp(88px, 9vw, 120px);
  padding-bottom: clamp(96px, 10vw, 132px);
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
  opacity: 0.24;
}

.pricing-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='156' height='156' viewBox='0 0 156 156'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.16' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='156' height='156' filter='url(%23n)' opacity='.56'/%3E%3C/svg%3E");
  background-size: 156px 156px;
}

.pricing-shell {
  position: relative;
  z-index: 1;
  width: min(1256px, calc(100% - 96px));
  margin: 0 auto;
}

.pricing-lead {
  width: min(1100px, 100%);
  max-width: 1100px;
}

.pricing-title {
  max-width: 24ch;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.pricing-toggle__label {
  color: rgba(236, 241, 248, 0.44);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 0.24s ease;
}

.pricing-toggle__label.is-active {
  color: rgba(247, 249, 252, 0.96);
}

.pricing-toggle__switch {
  position: relative;
  width: 52px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.24s ease, background 0.24s ease;
}

.pricing-toggle__switch.is-yearly {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.pricing-toggle__knob {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(247, 249, 252, 0.95);
  transform: translateY(-50%);
  transition: transform 0.24s ease;
}

.pricing-toggle__switch.is-yearly .pricing-toggle__knob {
  transform: translate(22px, -50%);
}

.pricing-toggle__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(247, 249, 252, 0.78);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0.008)),
    rgba(15, 16, 18, 0.76);
}

.pricing-card--featured {
  border-color: rgba(255, 255, 255, 0.16);
}

.pricing-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pricing-card__title {
  color: rgba(247, 249, 252, 0.97);
  font-family: var(--font-brand);
  font-size: clamp(1.22rem, 1.3vw, 1.45rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(247, 249, 252, 0.78);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pricing-card__price-block {
  margin-top: 32px;
}

.pricing-card__price {
  color: rgba(247, 249, 252, 0.98);
  font-family: var(--font-brand);
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.pricing-card__period {
  color: rgba(236, 241, 248, 0.42);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.pricing-card__summary {
  max-width: 24ch;
  margin-top: 18px;
  color: rgba(236, 241, 248, 0.5);
  font-size: 0.95rem;
  line-height: 1.46;
  letter-spacing: -0.02em;
}

.pricing-card__features {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
}

.pricing-card__features li {
  position: relative;
  padding-left: 18px;
  color: rgba(236, 241, 248, 0.66);
  font-size: 0.9rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(247, 249, 252, 0.68);
  transform: translateY(-50%);
}

.pricing-card__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  color: rgba(247, 249, 252, 0.88);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.pricing-card__cta:hover {
  color: rgba(255, 255, 255, 1);
}

.faq-section {
  overflow: hidden;
  padding-top: clamp(92px, 9vw, 124px);
  padding-bottom: clamp(56px, 6vw, 84px);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
  opacity: 0.24;
}

.faq-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='156' height='156' viewBox='0 0 156 156'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.16' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='156' height='156' filter='url(%23n)' opacity='.56'/%3E%3C/svg%3E");
  background-size: 156px 156px;
}

.faq-shell {
  position: relative;
  z-index: 1;
  width: min(1256px, calc(100% - 96px));
  margin: 0 auto;
}

.faq-lead {
  width: min(1080px, 100%);
  max-width: 1080px;
}

.faq-title {
  max-width: 20ch;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  margin-top: 30px;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: rgba(247, 249, 252, 0.96);
  text-align: left;
  font-family: var(--font-brand);
  font-size: clamp(1.02rem, 1.05vw, 1.22rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.03em;
  cursor: pointer;
}

.faq-plus {
  flex-shrink: 0;
  color: rgba(236, 241, 248, 0.72);
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.22s ease, color 0.22s ease;
}

.faq-question[aria-expanded="true"] .faq-plus {
  transform: rotate(45deg);
  color: rgba(247, 249, 252, 0.96);
}

.faq-answer {
  max-width: 52ch;
  padding: 0 44px 22px 0;
  color: rgba(236, 241, 248, 0.52);
  font-size: 0.95rem;
  line-height: 1.58;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.contact-section {
  overflow: hidden;
  padding-top: clamp(24px, 3vw, 36px);
  padding-bottom: clamp(96px, 10vw, 132px);
}

.contact-shell {
  position: relative;
  z-index: 1;
  width: min(1256px, calc(100% - 96px));
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  align-items: start;
  gap: clamp(40px, 6vw, 96px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-copy-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.contact-title {
  color: rgba(247, 249, 252, 0.97);
  font-family: var(--font-brand);
  font-size: clamp(2rem, 2.8vw, 2.85rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.contact-copy {
  max-width: 40ch;
  color: rgba(236, 241, 248, 0.52);
  font-size: 0.98rem;
  line-height: 1.56;
  letter-spacing: -0.02em;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  width: 100%;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field span {
  color: rgba(236, 241, 248, 0.52);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  color: rgba(247, 249, 252, 0.96);
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: vertical;
}

.contact-field input.is-invalid,
.contact-field textarea.is-invalid {
  border-color: rgba(255, 132, 132, 0.5);
}

.contact-field textarea {
  min-height: 120px;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.contact-form__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contact-submit {
  border: 0;
  background: transparent;
  color: rgba(247, 249, 252, 0.9);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.contact-submit.is-submitting {
  opacity: 0.6;
  pointer-events: none;
}

.contact-submit:hover {
  color: rgba(255, 255, 255, 1);
}

.contact-error {
  color: rgba(255, 148, 148, 0.9);
  font-size: 0.78rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.contact-success {
  color: rgba(247, 249, 252, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.closing-section {
  overflow: hidden;
  padding-top: clamp(96px, 10vw, 144px);
  padding-bottom: clamp(96px, 10vw, 144px);
}

.testimonials-section {
  overflow: hidden;
  padding-top: clamp(8px, 1vw, 24px);
  padding-bottom: clamp(72px, 8vw, 120px);
}

.testimonials-shell {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.testimonials-lead {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 72px);
  text-align: center;
  align-items: center;
}

.testimonials-title {
  max-width: none;
  color: rgba(20, 24, 32, 0.92);
  text-wrap: balance;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
}

@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 2.6vw, 38px);
  border: 1px solid rgba(20, 24, 32, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  backdrop-filter: blur(20px) saturate(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 6px 28px rgba(20, 24, 32, 0.04);
}

.testimonial-card__quote {
  flex: 1;
  margin: 0 0 28px;
  padding: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.02vw, 1.02rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: rgba(20, 24, 32, 0.86);
}

.testimonial-card__quote p {
  margin: 0;
}

.testimonial-card__quote p + p {
  margin-top: 14px;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 24, 32, 0.08);
}

.testimonial-card__logo {
  width: auto;
  height: 26px;
  max-width: 110px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0);
  opacity: 0.48;
}

.testimonial-card__logo--square {
  height: 44px;
  max-width: 56px;
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  line-height: 1.25;
}

.testimonial-card__name {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: rgba(20, 24, 32, 0.92);
}

.testimonial-card__role {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: rgba(20, 24, 32, 0.55);
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 24, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.contact-modal__panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 3.4vw, 36px);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(15, 18, 24, 0.22);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.contact-modal__panel::-webkit-scrollbar {
  display: none;
}

.contact-modal:not([hidden]) .contact-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(20, 24, 32, 0.55);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-modal__close:hover {
  background: rgba(20, 24, 32, 0.06);
  color: rgba(20, 24, 32, 0.92);
}

.contact-modal__close svg {
  width: 16px;
  height: 16px;
}

.contact-modal__view {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-modal__view[hidden] {
  display: none;
}

.contact-modal__view--success {
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 16px 0;
}

.contact-modal__title {
  margin: 0;
  font-family: "Instrument Serif", "Source Serif 4", Georgia, serif;
  font-size: clamp(1.6rem, 2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: #1c1f26;
}

.contact-modal__desc {
  margin: 0 0 4px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(20, 24, 32, 0.62);
}

.contact-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.contact-modal__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .contact-modal__field-row {
    grid-template-columns: 1fr;
  }
}

.contact-modal__field input,
.contact-modal__field select,
.contact-modal__field textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid rgba(20, 24, 32, 0.08);
  border-radius: 14px;
  background-color: rgba(20, 24, 32, 0.025);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.94rem;
  letter-spacing: -0.005em;
  line-height: 1.3;
  color: rgba(20, 24, 32, 0.92);
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-modal__field input:hover,
.contact-modal__field select:hover,
.contact-modal__field textarea:hover {
  border-color: rgba(20, 24, 32, 0.14);
  background-color: rgba(20, 24, 32, 0.04);
}

.contact-modal__field textarea {
  resize: vertical;
  min-height: 76px;
  font-family: "DM Sans", system-ui, sans-serif;
}

.contact-modal__field input::placeholder,
.contact-modal__field textarea::placeholder {
  color: rgba(20, 24, 32, 0.42);
}

.contact-modal__field input:focus,
.contact-modal__field select:focus,
.contact-modal__field textarea:focus {
  border-color: rgba(20, 24, 32, 0.28);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(20, 24, 32, 0.05);
}

.contact-modal__field input.is-invalid,
.contact-modal__field select.is-invalid,
.contact-modal__field textarea.is-invalid {
  border-color: rgba(220, 60, 60, 0.7);
  background-color: rgba(220, 60, 60, 0.05);
}

.contact-modal__field input.is-invalid:focus,
.contact-modal__field select.is-invalid:focus,
.contact-modal__field textarea.is-invalid:focus {
  border-color: rgba(220, 60, 60, 0.85);
  box-shadow: 0 0 0 4px rgba(220, 60, 60, 0.1);
}

.contact-modal__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1.5 2L6 6.5L10.5 2' stroke='%2362686f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.contact-modal__view--success {
  min-height: 280px;
  justify-content: center;
}

.contact-modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(20, 24, 32, 0.62);
  cursor: pointer;
}

.contact-modal__checkbox input {
  margin-top: 3px;
  width: 14px;
  height: 14px;
  accent-color: #1c1f26;
  cursor: pointer;
}

.contact-modal__checkbox a {
  color: rgba(20, 24, 32, 0.78);
  text-decoration: underline;
}

.contact-modal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 22px;
  margin-top: 4px;
  border: 0;
  border-radius: 12px;
  background: #1c1f26;
  color: #ffffff;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}

.contact-modal__submit:hover {
  background: #2a2e36;
}

.contact-modal__submit:disabled {
  opacity: 0.55;
  cursor: progress;
}

.contact-modal__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 8px auto 0;
}

.contact-modal__check svg {
  width: 100%;
  height: 100%;
}

.closing-shell {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
}

.closing-lead {
  max-width: 880px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.closing-title {
  max-width: none;
  color: rgba(20, 24, 32, 0.92);
  text-wrap: balance;
}

.closing-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 8px 8px 8px 28px;
  border: 1px solid rgba(20, 24, 32, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  backdrop-filter: blur(20px) saturate(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 30px rgba(20, 24, 32, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.closing-form:focus-within {
  border-color: rgba(20, 24, 32, 0.14);
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 36px rgba(20, 24, 32, 0.07);
}

.closing-form__input {
  flex: 1;
  min-width: 0;
  padding: 11px 0;
  border: 0;
  background: transparent;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.96rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1;
  color: rgba(20, 24, 32, 0.92);
  outline: none;
}

.closing-form__input::placeholder {
  color: rgba(20, 24, 32, 0.42);
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.closing-form__input.is-placeholder-fading::placeholder {
  opacity: 0;
}

.closing-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #2a2e36;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}

.closing-form__submit:hover {
  background: #353942;
}

.closing-form__submit:active {
  transform: scale(0.94);
}

.closing-form__submit-icon {
  width: 14px;
  height: 14px;
}

.closing-form__status {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(20, 24, 32, 0.7);
  text-align: center;
}

.closing-form__status[data-state="error"] {
  color: rgba(170, 40, 40, 0.85);
}

.closing-form.is-success .closing-form__input,
.closing-form.is-success .closing-form__submit {
  visibility: hidden;
}

.closing-hero__title {
  color: rgba(247, 249, 252, 0.98);
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 2.2vw, 2.35rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.closing-hero__desc {
  margin-top: 10px;
  max-width: 31ch;
  color: rgba(236, 241, 248, 0.68);
  font-size: 0.9rem;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.closing-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(247, 249, 252, 0.95);
  color: #111214;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.closing-hero__cta:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.site-footer {
  position: relative;
  padding: 0 0 86px;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  width: min(1256px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 24rem;
}

.footer-brand__logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-brand__copy {
  color: rgba(236, 241, 248, 0.46);
  font-size: 0.94rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(247, 249, 252, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-social:hover {
  color: rgba(255, 255, 255, 1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.footer-nav a {
  color: rgba(236, 241, 248, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 1);
}

@keyframes orbit-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
  }
  25% {
    transform: translate(-50%, -50%) translate3d(2px, -4px, 0);
  }
  50% {
    transform: translate(-50%, -50%) translate3d(-2px, -7px, 0);
  }
  75% {
    transform: translate(-50%, -50%) translate3d(-3px, -2px, 0);
  }
}

.use-cases-section {
  overflow: visible;
  min-height: 500vh;
  min-height: calc(100svh * 5);
  padding: 0;
}

.use-cases-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background: transparent;
}

.use-cases-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.085;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.use-cases-shell {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1256px, calc(100% - 96px));
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding-top: clamp(28px, 4vh, 44px);
  padding-bottom: clamp(28px, 4vh, 44px);
}

.use-cases-lead {
  position: absolute;
  top: clamp(28px, 4vh, 44px);
  left: 0;
  width: 100%;
  max-width: none;
  gap: 18px;
  pointer-events: none;
}

.use-cases-lead .section-title {
  width: 100%;
  max-width: none;
  font-size: clamp(0.86rem, 3.25vw, 2.55rem);
  line-height: 0.98;
}

.use-cases-lead .title-line {
  display: block;
  white-space: nowrap;
}

.use-cases-tabs {
  display: none;
}

.use-case-tab {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  padding: 0 0 2px;
  background: transparent;
  color: rgba(236, 241, 248, 0.44);
  font-family: var(--font-brand);
  font-size: clamp(0.86rem, 0.9vw, 1.02rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition: color 0.24s ease;
}

.use-case-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  height: 1px;
  background: rgba(247, 249, 252, 0.92);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.26s ease;
}

.use-case-tab:hover,
.use-case-tab:focus-visible,
.use-case-tab.is-active {
  color: rgba(247, 249, 252, 0.96);
}

.use-case-tab.is-active::after {
  transform: scaleX(1);
}

.use-cases-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
  align-items: stretch;
  gap: clamp(32px, 4vw, 64px);
  margin-top: clamp(112px, 17vh, 168px);
}

.use-cases-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 0.75;
  overflow: hidden;
  background: #101418;
}

.use-cases-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.015) 0%, rgba(6, 8, 12, 0.08) 100%),
    radial-gradient(circle at 50% 4%, rgba(255, 255, 255, 0.08), transparent 40%);
}

.use-cases-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.25' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

.use-case-visual {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 0.34s ease,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.use-case-visual.is-active {
  opacity: 1;
  transform: scale(1);
}

.use-case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1) contrast(0.98) brightness(0.92);
}

.use-case-visual--placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(236, 241, 248, 0.82)),
    #f4efe7;
}

.use-case-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}

.use-case-placeholder::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(17, 18, 20, 0.18);
}

.use-case-placeholder span {
  position: relative;
  z-index: 1;
  color: rgba(17, 18, 20, 0.54);
  font-family: var(--font-brand);
  font-size: clamp(1rem, 1.2vw, 1.28rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.use-cases-detail {
  position: relative;
  min-height: clamp(360px, 35vw, 480px);
}

.use-case-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.26s ease,
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.use-case-eyebrow {
  color: rgba(236, 241, 248, 0.5);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.use-case-title {
  max-width: 22ch;
  font-family: var(--font-brand);
  font-size: clamp(1.48rem, 1.9vw, 2.16rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: rgba(247, 249, 252, 0.97);
  text-wrap: balance;
}

.use-case-desc {
  max-width: 48ch;
  color: rgba(236, 241, 248, 0.52);
  font-size: 0.96rem;
  line-height: 1.55;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.use-case-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111214;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.24s ease;
}

.use-case-cta:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

@media (min-width: 981px) and (max-height: 820px) {
  .use-cases-lead {
    top: 24px;
    width: 100%;
  }

  .use-cases-stage {
    margin-top: 106px;
  }

  .use-cases-detail {
    min-height: 280px;
  }

  .use-case-title {
    font-size: clamp(1.38rem, 1.72vw, 1.9rem);
  }

  .use-case-desc {
    font-size: 0.92rem;
    line-height: 1.48;
  }
}

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

  .hero-frame {
    min-height: 100svh;
    padding: 24px 0 84px;
  }

  .hero-nav {
    width: min(1120px, calc(100% - 48px));
    margin-right: auto;
    margin-left: auto;
  }

  .hero-scroll-cue {
    margin-top: 10px;
  }

  .story-section {
    padding-top: clamp(136px, 16vw, 200px);
  }

  .story-shell {
    width: min(1284px, calc(100% - 56px));
    gap: 34px;
  }

  .section-title {
    max-width: 22ch;
    font-size: clamp(1.8rem, 4.2vw, 2.25rem);
  }

  .section-title .title-line {
    white-space: normal;
  }

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

  .story-media {
    max-width: 760px;
  }

  .story-desc {
    max-width: 38ch;
  }

  .benefits-shell {
    width: min(1256px, calc(100% - 56px));
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integrations-shell {
    width: min(1320px, calc(100% - 56px));
  }

  .pricing-shell {
    width: min(1256px, calc(100% - 56px));
  }

  .integrations-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .integrations-copy {
    max-width: 44rem;
  }

  .integrations-orbit {
    width: min(100%, 780px);
    margin-left: -80px;
  }

  .integrations-title {
    max-width: 18ch;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-shell,
  .contact-shell {
    width: min(1256px, calc(100% - 56px));
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .use-cases-shell {
    width: min(1256px, calc(100% - 56px));
  }

  .use-cases-lead {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    pointer-events: auto;
  }

  .use-cases-lead .section-title {
    font-size: clamp(0.76rem, 3.75vw, 2.25rem);
  }

  .use-cases-tabs {
    display: none;
  }

  .use-cases-stage {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 24px;
  }

  .use-cases-media {
    aspect-ratio: 1 / 0.74;
  }

  .use-cases-detail {
    min-height: 230px;
  }

  .use-case-title {
    max-width: 22ch;
    font-size: clamp(1.45rem, 4vw, 2rem);
  }

  .use-case-desc {
    max-width: 42ch;
  }

  .closing-shell,
  .footer-shell {
    width: min(1256px, calc(100% - 56px));
  }

  .closing-hero {
    min-height: 360px;
    padding: 32px;
    background-position: 62% center;
  }

  .closing-hero__copy {
    max-width: 21rem;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    max-width: 28rem;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 12px 28px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-frame {
    min-height: 100svh;
    padding: 18px 0 72px;
  }

  .hero-nav {
    width: min(100%, calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
  }

  .nav-inner {
    gap: 16px;
  }

  .nav-brand img {
    width: 28px;
    height: 28px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    padding: 10px 14px;
  }

  .hero-scroll-cue {
    margin-top: 8px;
  }

  .story-section {
    padding-top: clamp(112px, 20vw, 156px);
  }

  .hero-scroll-cue__label {
    font-size: 0.75rem;
  }

  .privacy-link {
    left: 14px;
    bottom: 14px;
    font-size: 0.72rem;
  }

  .section-lead {
    max-width: none;
  }

  .section-title {
    max-width: none;
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .story-media {
    border-radius: 0;
  }

  .story-desc {
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.24;
  }

  .section-kicker {
    font-size: 0.8rem;
  }

  .story-shell {
    width: min(1284px, calc(100% - 36px));
    gap: 28px;
  }

  .benefits-shell {
    width: min(1256px, calc(100% - 36px));
  }

  .benefits-title {
    max-width: none;
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .benefit-card {
    min-height: 252px;
    padding: 24px 20px 22px;
  }

  .benefit-badge {
    width: 48px;
    height: 48px;
    font-size: 0.74rem;
  }

  .benefit-metric {
    margin-top: 24px;
    font-size: clamp(2.1rem, 11vw, 2.7rem);
  }

  .benefit-title {
    margin-top: 14px;
    font-size: 1.16rem;
  }

  .benefit-desc {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .integrations-shell {
    width: min(1320px, calc(100% - 36px));
  }

  .pricing-shell {
    width: min(1256px, calc(100% - 36px));
  }

  .pricing-section {
    padding-top: 76px;
    padding-bottom: 96px;
  }

  .pricing-title {
    max-width: none;
    font-size: clamp(1.6rem, 6.4vw, 2.2rem);
  }

  .pricing-toggle {
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 24px;
  }

  .pricing-toggle__label {
    font-size: 0.9rem;
  }

  .pricing-toggle__badge {
    min-height: 30px;
    font-size: 0.76rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .pricing-card {
    padding: 22px 18px 20px;
  }

  .pricing-card__price-block {
    margin-top: 24px;
  }

  .pricing-card__price {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .pricing-card__period,
  .pricing-card__summary,
  .pricing-card__features li,
  .pricing-card__cta {
    font-size: 0.86rem;
  }

  .faq-shell,
  .contact-shell {
    width: min(1256px, calc(100% - 36px));
  }

  .faq-section {
    padding-top: 76px;
    padding-bottom: 36px;
  }

  .faq-title {
    max-width: none;
    font-size: clamp(1.6rem, 6.4vw, 2.2rem);
  }

  .faq-grid {
    margin-top: 24px;
  }

  .faq-question {
    padding: 18px 0;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 18px 18px 0;
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .contact-section {
    padding-top: 18px;
    padding-bottom: 92px;
  }

  .contact-layout {
    gap: 14px;
    padding-top: 24px;
  }

  .contact-title {
    font-size: clamp(1.55rem, 6.8vw, 2.15rem);
  }

  .contact-copy {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .contact-field--full,
  .contact-form__actions {
    grid-column: auto;
  }

  .contact-field input,
  .contact-field textarea,
  .contact-submit {
    font-size: 0.88rem;
  }

  .contact-form__actions {
    gap: 12px 16px;
  }

  .integrations-section {
    padding-top: 72px;
    padding-bottom: 92px;
  }

  .integrations-layout {
    gap: 28px;
  }

  .integrations-visual-wrap {
    width: calc(100% + 96px);
    margin-left: -96px;
  }

  .integrations-orbit {
    width: min(100%, 550px);
    margin-left: -88px;
  }

  .orbit-core {
    width: 42px;
    height: 42px;
  }

  .orbit-core img {
    width: 24px;
    height: 24px;
  }

  .orbit-badge {
    width: 40px;
    height: 40px;
  }

  .orbit-badge img {
    width: 18px;
    height: 18px;
  }

  .integrations-title {
    max-width: none;
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .integrations-desc {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .use-cases-shell {
    width: min(1256px, calc(100% - 36px));
  }

  .use-cases-tabs {
    display: none;
  }

  .use-case-tab {
    font-size: 0.92rem;
  }

  .use-case-tab::after {
    bottom: -14px;
  }

  .use-cases-media {
    aspect-ratio: 1 / 0.82;
  }

  .use-cases-detail {
    min-height: auto;
  }

  .use-case-copy {
    position: relative;
    inset: auto;
    justify-content: flex-start;
  }

  .use-case-copy:not(.is-active) {
    display: none;
  }

  .use-case-title {
    max-width: none;
    font-size: clamp(1.26rem, 5vw, 1.58rem);
  }

  .use-case-desc {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .closing-section {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .closing-shell,
  .footer-shell {
    width: min(1256px, calc(100% - 36px));
  }

  .closing-hero {
    min-height: 300px;
    align-items: flex-end;
    padding: 24px 22px;
    background-position: 68% center;
  }

  .closing-hero__copy {
    max-width: 100%;
  }

  .closing-hero__title {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 0.98;
  }

  .closing-hero__desc {
    max-width: 28ch;
    font-size: 0.88rem;
  }

  .closing-hero__cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .site-footer {
    padding-bottom: 74px;
  }

  .footer-shell {
    gap: 24px;
    padding-top: 22px;
  }

  .footer-brand {
    gap: 14px;
  }

  .footer-brand__copy {
    font-size: 0.9rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .use-case-cta {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

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

}

.policy-page {
  background: var(--bg);
  color: var(--text);
}

.policy-shell {
  width: min(1180px, calc(100% - 2.2rem));
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}

.policy-topbar {
  margin-bottom: 2rem;
}

.policy-back {
  color: var(--text-3);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
}

.policy-back:hover {
  color: var(--text);
}

.policy-doc {
  max-width: 1120px;
}

.policy-header {
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
}

.policy-kicker {
  margin: 0 0 0.7rem;
  color: var(--text-3);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.policy-header h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.policy-meta {
  margin: 0.95rem 0 0;
  color: var(--text-3);
  font-size: 0.84rem;
  line-height: 1.6;
}

.policy-intro {
  max-width: 62ch;
  margin: 1.25rem 0 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.78;
}

.policy-section {
  padding-top: 2rem;
}

.policy-section h2 {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 600;
}

.policy-section p,
.policy-section li {
  color: var(--text-2);
  font-size: 0.94rem;
  line-height: 1.78;
}

.policy-section p {
  margin: 0.7rem 0 0;
}

.policy-section a {
  color: var(--text);
  text-underline-offset: 0.14em;
}

.policy-list {
  margin: 0.9rem 0 0;
  padding-left: 1.15rem;
}

.policy-list li + li {
  margin-top: 0.5rem;
}

.policy-table {
  margin-top: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.policy-table-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--border);
}

.policy-table-row:first-child {
  border-top: 0;
}

.policy-table-head {
  background: rgba(255, 255, 255, 0.07);
}

.policy-table-head div {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .policy-table-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .policy-header h1 {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
  }
}

/* Light theme overrides for the static landing page */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f3ed;
  --text: #121315;
  --text-2: rgba(17, 18, 20, 0.72);
  --text-3: rgba(17, 18, 20, 0.46);
  --border: rgba(17, 18, 20, 0.1);
}

body {
  color: var(--text);
  background: var(--bg);
}

body::before {
  content: none;
}

body::after {
  content: none;
}

.scroll-progress {
  background: linear-gradient(90deg, rgba(17, 18, 20, 0.64), rgba(17, 18, 20, 0.16));
}

.privacy-link {
  color: rgba(17, 18, 20, 0.52);
}

.privacy-link:hover,
.privacy-link:focus-visible {
  color: rgba(17, 18, 20, 0.86);
}

.hero-frame,
.story-section,
.benefits-section,
.use-cases-section,
.integrations-section,
.pricing-section,
.faq-section,
.contact-section,
.closing-section,
.site-footer {
  position: relative;
  background: transparent;
}

.hero-frame::before,
.benefits-section::before,
.story-section::before,
.use-cases-section::before,
.integrations-section::before,
.pricing-section::before,
.faq-section::before,
.contact-section::before,
.closing-section::before,
.site-footer::before {
  content: none;
}

.hero-frame::after,
.story-section::after,
.benefits-section::after,
.use-cases-section::after,
.integrations-section::after,
.pricing-section::after,
.faq-section::after,
.contact-section::after,
.closing-section::after,
.site-footer::after {
  content: none;
}

.hero-frame > *,
.story-section > *,
.benefits-section > *,
.use-cases-section > *,
.integrations-section > *,
.pricing-section > *,
.faq-section > *,
.contact-section > *,
.closing-section > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.use-cases-section > .use-cases-shell {
  position: sticky;
  top: 0;
}

.section-kicker {
  color: rgba(17, 18, 20, 0.5);
}

.section-kicker::before {
  background: rgba(17, 18, 20, 0.28);
}

.section-title {
  color: rgba(17, 18, 20, 0.96);
}

.section-title .title-line--muted {
  color: rgba(17, 18, 20, 0.52);
}

.story-media,
.use-cases-media {
  background: #f4efe7;
}

.story-media::before,
.use-cases-media::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(17, 18, 20, 0.04) 100%),
    radial-gradient(circle at 50% 6%, rgba(255, 255, 255, 0.34), transparent 42%);
}

.story-media::after,
.use-cases-media::after {
  opacity: 0.025;
  mix-blend-mode: multiply;
}

.story-media img,
.use-case-visual img {
  filter: saturate(1) contrast(0.98) brightness(0.98);
}

.story-card:hover .story-media img {
  filter: saturate(1.03) contrast(1) brightness(1);
}

.story-title,
.benefit-title,
.integrations-title,
.pricing-card__title,
.pricing-card__price,
.faq-question,
.contact-title,
.closing-hero__title,
.use-case-title {
  color: rgba(17, 18, 20, 0.96);
}

.story-desc,
.benefit-desc,
.integrations-desc,
.integrations-desc--muted,
.pricing-card__summary,
.faq-answer,
.contact-copy,
.footer-brand__copy,
.use-case-desc {
  color: rgba(17, 18, 20, 0.66);
}

.benefit-card,
.pricing-card {
  border-color: rgba(17, 18, 20, 0.12);
  background: transparent;
  box-shadow: none;
}

.benefit-card:hover {
  border-color: rgba(17, 18, 20, 0.14);
  background: transparent;
}

.benefit-card::before {
  opacity: 0.01;
}

.benefit-badge {
  border-color: rgba(17, 18, 20, 0.1);
  color: rgba(17, 18, 20, 0.64);
  background: rgba(255, 255, 255, 0.72);
}

.benefit-metric {
  color: rgba(17, 18, 20, 0.98);
}

.benefit-card:hover .benefit-metric {
  color: rgba(17, 18, 20, 1);
}

.orbit-ring {
  border-color: rgba(17, 18, 20, 0.08);
  box-shadow: 0 0 0 1px rgba(17, 18, 20, 0.015) inset;
}

.orbit-ring--mid {
  border-color: rgba(191, 150, 150, 0.16);
}

.orbit-ring--inner {
  border-color: rgba(129, 162, 190, 0.16);
}

.orbit-ring--core {
  border-color: rgba(17, 18, 20, 0.08);
}

.orbit-core,
.orbit-badge {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(17, 18, 20, 0.08);
  box-shadow: 0 18px 34px rgba(17, 18, 20, 0.08);
}

.orbit-badge:hover {
  border-color: rgba(17, 18, 20, 0.14);
}

@media (max-width: 700px) {
  .orbit-core,
  .orbit-badge {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(17, 18, 20, 0.055);
    box-shadow: 0 8px 18px rgba(17, 18, 20, 0.045);
  }

  .orbit-ring {
    border-color: rgba(17, 18, 20, 0.055);
  }

  .orbit-ring--mid,
  .orbit-ring--inner,
  .orbit-ring--core {
    border-color: rgba(17, 18, 20, 0.045);
  }
}

.pricing-toggle__label,
.pricing-card__period,
.pricing-toggle__badge,
.pricing-card__tag,
.contact-field span,
.use-case-eyebrow,
.footer-nav a {
  color: rgba(17, 18, 20, 0.58);
}

.pricing-toggle__label.is-active,
.pricing-card__cta,
.contact-submit,
.footer-social {
  color: rgba(17, 18, 20, 0.9);
}

.pricing-toggle__switch {
  border-color: rgba(17, 18, 20, 0.12);
  background: rgba(17, 18, 20, 0.04);
}

.pricing-toggle__switch.is-yearly {
  background: rgba(17, 18, 20, 0.08);
  border-color: rgba(17, 18, 20, 0.18);
}

.pricing-toggle__knob {
  background: rgba(17, 18, 20, 0.92);
}

.pricing-toggle__badge,
.pricing-card__tag {
  border-color: rgba(17, 18, 20, 0.08);
}

.pricing-card__features {
  border-top-color: rgba(17, 18, 20, 0.08);
}

.pricing-card__features li {
  color: rgba(17, 18, 20, 0.64);
}

.pricing-card__features li::before {
  background: rgba(17, 18, 20, 0.42);
}

.pricing-card__cta:hover,
.contact-submit:hover,
.footer-social:hover,
.footer-nav a:hover {
  color: rgba(17, 18, 20, 1);
}

.faq-item,
.contact-layout,
.footer-shell,
.use-cases-tabs {
  border-color: rgba(17, 18, 20, 0.08);
}

.use-case-placeholder::before {
  border-color: rgba(17, 18, 20, 0.18);
}

.use-case-placeholder span {
  color: rgba(17, 18, 20, 0.54);
}

.faq-plus {
  color: rgba(17, 18, 20, 0.56);
}

.faq-question[aria-expanded="true"] .faq-plus {
  color: rgba(17, 18, 20, 0.92);
}

.contact-field input,
.contact-field textarea {
  border-color: rgba(17, 18, 20, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(17, 18, 20, 0.96);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(17, 18, 20, 0.16);
  background: #ffffff;
}

.contact-submit.is-submitting {
  opacity: 0.6;
}

.contact-success {
  color: rgba(17, 18, 20, 0.82);
}

.closing-hero {
  background:
    linear-gradient(90deg, rgba(10, 11, 14, 0.62) 0%, rgba(10, 11, 14, 0.28) 44%, rgba(10, 11, 14, 0.42) 100%),
    linear-gradient(180deg, rgba(11, 12, 15, 0.08) 0%, rgba(11, 12, 15, 0.26) 100%),
    url("./nexora.jpg");
  background-position: center center;
  background-size: cover;
  border-color: rgba(255, 255, 255, 0.08);
}

.closing-hero__title {
  color: rgba(247, 249, 252, 0.98);
}

.closing-hero__desc {
  color: rgba(236, 241, 248, 0.68);
}

.closing-hero__cta {
  background: rgba(247, 249, 252, 0.95);
  color: #111214;
}

.use-case-cta {
  background: #111214;
  color: #ffffff;
}

.closing-hero__cta:hover {
  background: #ffffff;
}

.use-case-cta:hover {
  background: #000000;
}

.use-case-tab {
  color: rgba(17, 18, 20, 0.44);
}

.use-case-tab::after {
  background: rgba(17, 18, 20, 0.92);
}

.use-case-tab:hover,
.use-case-tab:focus-visible,
.use-case-tab.is-active {
  color: rgba(17, 18, 20, 0.96);
}

.policy-table {
  background: rgba(255, 255, 255, 0.92);
}

.policy-table-head {
  background: rgba(17, 18, 20, 0.04);
}

/* Startup hero refresh */
body::before {
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.02' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  background-repeat: repeat;
  background-blend-mode: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  overflow: visible;
}

.hero-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(96px, 13vh, 132px) 0 clamp(36px, 6vh, 72px);
  overflow: hidden;
  background: transparent;
  color: #111214;
}

.hero-frame > * {
  position: relative;
  z-index: 1;
}

.page-dots {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.page-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(20, 24, 32, 0.04) 0.6px, transparent 0.8px);
  background-size: 24px 24px;
}

.page-dots::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(20, 30, 60, 0.32) 0.85px, transparent 1.05px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(
    circle 200px at var(--mouse-x) var(--mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: radial-gradient(
    circle 200px at var(--mouse-x) var(--mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-frame > * {
  position: relative;
  z-index: 1;
}

.hero-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 400;
  width: min(1020px, calc(100% - 32px));
  margin: 0;
  padding: 6px 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 12px 30px rgba(28, 35, 45, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  transform: translateX(-50%);
}

.hero-nav .nav-inner {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 30px;
  gap: 12px;
}

.hero-nav .nav-brand {
  grid-column: 1;
  justify-self: start;
  color: rgba(17, 18, 20, 0.92);
}

.hero-nav .nav-brand img {
  width: 24px;
  height: 24px;
}

.hero-nav .nav-link {
  color: rgba(22, 25, 31, 0.58);
  font-size: 0.64rem;
  line-height: 1;
}

.hero-nav .nav-links {
  grid-column: 2;
  justify-self: center;
  gap: 15px;
}

.hero-nav .nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-nav .nav-link:hover {
  color: rgba(17, 18, 20, 0.94);
}

.hero-nav .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: #2a2e36;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 4px 14px rgba(35, 38, 45, 0.12);
  transition: background 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-nav .btn-primary:hover {
  background: #353942;
  color: #ffffff;
  text-decoration: none;
}

.hero-nav .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 6px;
  background: transparent;
  border: 0;
  color: rgba(17, 18, 20, 0.62);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.hero-nav .btn-secondary:hover {
  color: rgba(17, 18, 20, 0.95);
  text-decoration: none;
}

.hero-startup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(1760px, calc(100% - 32px));
  min-height: min(680px, calc(100svh - 246px));
  margin: clamp(20px, 4vh, 56px) auto 0;
  text-align: center;
}

.hero-try-now-button {
  position: absolute;
  top: clamp(26px, 4vw, 44px);
  right: clamp(24px, 4vw, 46px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5a5a 0%, #db1717 100%);
  box-shadow:
    0 22px 44px rgba(186, 20, 20, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.hero-try-now-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 52px rgba(186, 20, 20, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: saturate(1.04);
}

.hero-copy {
  max-width: 1700px;
  margin: 0;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(23, 28, 35, 0.58);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-heading {
  position: relative;
  isolation: isolate;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #1c1f26;
  font-family: "Instrument Serif", "Source Serif 4", Georgia, serif;
  font-size: clamp(1.95rem, 6.6vw, 6.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-heading .hero-heading__line {
  display: block;
  transform: scaleY(1.1);
  transform-origin: 50% 60%;
  text-wrap: balance;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-emblem {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 14px;
}

.hero-emblem img {
  display: block;
  width: clamp(88px, 7.5vw, 112px);
  height: clamp(88px, 7.5vw, 112px);
}

.hero-thinking {
  margin: 0 0 38px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1;
  color: rgba(96, 102, 116, 0.5);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-thinking[data-state="out"],
.hero-thinking[data-state="in"] {
  opacity: 0;
}

.hero-thinking[data-state="in"] {
  transition: none;
}

.hero-thinking__char {
  display: inline-block;
  color: rgba(96, 102, 116, 0.5);
  animation: hero-thinking-char 2.2s cubic-bezier(0.65, 0, 0.35, 1) both;
  animation-delay: calc(var(--i, 0) * 100ms);
}

@keyframes hero-thinking-char {
  0%, 100% { color: rgba(96, 102, 116, 0.5); }
  40% { color: rgba(32, 40, 56, 0.95); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-thinking,
  .hero-thinking__char {
    animation: none;
    transition: none;
  }
  .hero-thinking__char {
    color: rgba(96, 102, 116, 0.7);
  }
}

.hero-heading::before {
  content: "";
  position: absolute;
  inset: -22% -14%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(58% 62% at 28% 38%, rgba(255, 214, 168, 0.32), transparent 64%),
    radial-gradient(48% 54% at 72% 64%, rgba(186, 208, 240, 0.28), transparent 66%),
    radial-gradient(40% 44% at 50% 50%, rgba(238, 220, 250, 0.18), transparent 70%);
  filter: blur(42px);
  opacity: 0.85;
  animation: hero-heading-aura 11s ease-in-out infinite;
}

@keyframes hero-heading-aura {
  0%, 100% {
    opacity: 0.72;
    transform: translate3d(-1.2%, 0.4%, 0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate3d(1.4%, -0.8%, 0) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-heading::before {
    animation: none;
    opacity: 0.78;
  }
}

.hero-subtitle {
  max-width: 720px;
  margin: clamp(32px, 3.4vw, 44px) auto 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: rgba(70, 78, 92, 0.78);
}

.hero-subtitle__line {
  display: block;
}

.hero-conversion {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(470px, 100%);
  margin-top: clamp(20px, 3vw, 30px);
}

.hero-email-form {
  width: 100%;
}

.hero-email-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 54px;
  padding: 7px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.22);
  box-shadow:
    0 16px 48px rgba(23, 32, 44, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.hero-email-field input {
  min-width: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: rgba(19, 23, 30, 0.86);
  font: inherit;
  font-size: 0.88rem;
  line-height: 1;
  letter-spacing: -0.02em;
  outline: none;
  padding: 0 12px 0 16px;
}

.hero-email-field input::placeholder {
  color: rgba(19, 23, 30, 0.42);
}

.hero-email-field button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 19, 24, 0.78);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 38, 58, 0.14);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.02em;
  cursor: pointer;
  transform: none !important;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.hero-email-field button:hover {
  background: #050609;
  box-shadow: 0 14px 32px rgba(31, 38, 58, 0.2);
}

.hero-email-field button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.hero-email-status {
  margin: 10px 0 0;
  color: rgba(19, 23, 30, 0.58);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: center;
}

.hero-demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: clamp(32px, 5vh, 56px);
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #2a2e36;
  color: #ffffff;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  text-decoration: none;
  transition:
    background 0.22s ease,
    transform 0.22s ease;
}

.hero-demo-link:hover {
  background: #353942;
  color: #ffffff;
  text-decoration: none;
}

.hero-clients {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 88px);
  width: 100%;
  margin-top: clamp(24px, 3.5vh, 44px);
  padding: 0 24px;
}

.hero-clients__logo {
  height: clamp(20px, 2.2vw, 30px);
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.42;
  transition: opacity 0.3s ease;
}

.hero-clients__logo:hover {
  opacity: 0.7;
}

.hero-clients__logo--square {
  height: clamp(160px, 16vw, 220px);
}

.trust-badges-section {
  padding: clamp(24px, 4vh, 56px) 0;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.2vw, 16px);
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

.trust-badges__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid rgba(20, 24, 32, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  backdrop-filter: blur(16px) saturate(1.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(0.8rem, 0.92vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  color: rgba(20, 24, 32, 0.72);
  white-space: nowrap;
  text-transform: uppercase;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.trust-badges__item:hover {
  border-color: rgba(20, 24, 32, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(20, 24, 32, 0.92);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-clients {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 56px;
  }
}

.trust-badges__icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  opacity: 0.85;
}

.hero-clients__logo--multiply {
  filter: none;
  mix-blend-mode: multiply;
  opacity: 0.68;
}

.hero-clients__logo--multiply:hover {
  opacity: 0.95;
}

.hero-email-status.is-error {
  color: rgba(166, 54, 54, 0.9);
}

.hero-scroll-cue {
  position: absolute;
  bottom: clamp(18px, 3.2vh, 34px);
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0;
  transform: translateX(-50%);
}

.hero-scroll-cue[data-hero-reveal] {
  transform: translateX(-50%) translateY(32px);
}

.hero-scroll-cue[data-hero-reveal].is-visible {
  transform: translateX(-50%);
}

.hero-scroll-cue.is-hidden {
  transform: translateX(-50%) translateY(8px);
}

.hero-scroll-cue[data-hero-reveal].is-visible.is-hidden {
  transform: translateX(-50%) translateY(8px);
}

@media (min-width: 1200px) and (min-height: 820px) {
  .hero-frame::after {
    height: clamp(108px, 13vh, 178px);
  }

  .hero-startup {
    min-height: min(720px, calc(100svh - 278px));
  }
}

@media (max-width: 980px) {
  .hero-frame {
    min-height: 100svh;
    padding-top: 104px;
    padding-bottom: clamp(88px, 16vh, 140px);
  }

  .hero-frame::after {
    height: clamp(90px, 12vh, 150px);
  }

  .hero-startup {
    min-height: min(620px, calc(100svh - 244px));
  }

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

  .hero-nav .nav-links {
    gap: 12px;
  }

  .hero-try-now-button {
    top: 24px;
    right: 24px;
    min-height: 58px;
    padding: 0 24px;
    font-size: 0.92rem;
  }
}

@media (max-width: 700px) {
  .hero-frame {
    min-height: 100svh;
    padding: 76px 0 clamp(76px, 12vh, 104px);
    background-position: 50% center;
  }

  .hero-frame::after {
    height: clamp(82px, 11vh, 128px);
  }

  .hero-startup {
    width: min(100% - 30px, 500px);
    min-height: min(520px, calc(100svh - 180px));
  }

  .hero-try-now-button {
    top: 18px;
    right: auto;
    bottom: auto;
    left: 50%;
    min-height: 56px;
    padding: 0 22px;
    font-size: 0.88rem;
    transform: translateX(-50%);
  }

  .hero-try-now-button:hover {
    transform: translateX(-50%) translateY(-2px);
  }

  .hero-nav {
    top: 10px;
    width: min(236px, calc(100% - 32px));
    padding: 4px 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow:
      0 8px 22px rgba(28, 35, 45, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.54);
  }

  .hero-nav .nav-links {
    display: none;
  }

  .hero-nav .nav-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 26px;
    gap: 10px;
  }

  .hero-nav .nav-brand img {
    width: 19px;
    height: 19px;
  }

  .hero-nav .nav-actions {
    grid-column: 2;
  }

  .hero-nav .btn-primary {
    min-height: 28px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .hero-nav .btn-secondary {
    min-height: 28px;
    padding: 0 4px;
    font-size: 0.72rem;
  }

  .hero-nav .nav-actions {
    gap: 6px;
  }

  .hero-heading {
    max-width: 15ch;
    font-size: clamp(2rem, 8.8vw, 3.05rem);
    line-height: 1.04;
  }

  .hero-subtitle {
    max-width: 34rem;
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .hero-conversion {
    width: min(360px, 100%);
    margin-top: 22px;
  }

  .hero-email-field {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 46px;
    gap: 5px;
    padding: 5px;
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2)),
      rgba(255, 255, 255, 0.18);
    box-shadow:
      0 10px 30px rgba(23, 32, 44, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
  }

  .hero-email-field input {
    min-height: 36px;
    padding: 0 6px 0 12px;
    font-size: 0.78rem;
    text-align: left;
  }

  .hero-email-field button {
    width: auto;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.72rem;
    box-shadow: 0 8px 18px rgba(31, 38, 58, 0.12);
  }

  .hero-demo-link {
    min-height: 34px;
    margin-top: 34px;
    padding: 0 15px;
    font-size: 0.72rem;
  }

}


/* ───────── Capture workflow animation (story card 1) ─────────
   Smooth & professional. Loop: 14.4s.
   Eight clicks, six captured steps. All easing tuned for buttery
   movement — no aggressive scale pulses, no jittery elements.
*/

.story-media--capture {
  background: #efe9dc;
}

.story-media--capture::before,
.story-media--capture::after {
  display: none !important;
}

.capture-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.cap-stage {
  animation: cap-stage-fade 14.4s linear infinite;
}

@keyframes cap-stage-fade {
  0%, 93%   { opacity: 1; }
  97%, 100% { opacity: 0; }
}

.story-card:hover .story-media--capture .capture-svg { transform: none; }

/* ── Title input ── */
.cap-input--title {
  animation: cap-input-title 14.4s ease-out infinite;
}
@keyframes cap-input-title {
  0%, 10%   { stroke: #11121414; }
  12%, 18%  { stroke: #11121466; }
  22%       { stroke: #11121430; }
  26%, 100% { stroke: #11121414; }
}

.cap-fill--title {
  animation: cap-fill-title 14.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes cap-fill-title {
  0%, 12%  { width: 0; }
  19%      { width: 130px; }
  100%     { width: 130px; }
}

.cap-caret--title {
  animation: cap-caret-title 14.4s linear infinite;
}
@keyframes cap-caret-title {
  0%, 11%  { x: 44px; opacity: 0; }
  12%      { x: 44px; opacity: 1; }
  15%      { x: 90px; opacity: 1; }
  19%      { x: 174px; opacity: 1; }
  20%      { opacity: 0; }
  100%     { x: 44px; opacity: 0; }
}

/* ── Priority field ── */
.cap-input--priority {
  animation: cap-input-priority 14.4s ease-out infinite;
}
@keyframes cap-input-priority {
  0%, 22%   { stroke: #11121414; }
  23%, 26%  { stroke: #11121466; }
  30%, 31%  { stroke: #11121466; }
  34%       { stroke: #11121430; }
  38%, 100% { stroke: #11121414; }
}

.cap-fill--priority {
  animation: cap-fill-priority 14.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes cap-fill-priority {
  0%, 30%  { width: 34px; fill: #11121438; }
  33%      { width: 56px; fill: #11121499; }
  100%     { width: 56px; fill: #11121499; }
}

.cap-drop--priority {
  animation: cap-drop-priority 14.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  transform-origin: 84px 130px;
  transform-box: fill-box;
}
@keyframes cap-drop-priority {
  0%, 23%   { opacity: 0; transform: translateY(-3px) scale(0.97); }
  26%, 31%  { opacity: 1; transform: translateY(0) scale(1); }
  34%, 100% { opacity: 0; transform: translateY(-3px) scale(0.97); }
}

.cap-pick--priority {
  animation: cap-pick-priority 14.4s ease-out infinite;
}
@keyframes cap-pick-priority {
  0%, 29%   { fill: #11121420; }
  30%, 31%  { fill: #11121480; }
  33%, 100% { fill: #11121420; }
}

/* ── Category field ── */
.cap-input--category {
  animation: cap-input-category 14.4s ease-out infinite;
}
@keyframes cap-input-category {
  0%, 39%   { stroke: #11121414; }
  40%, 43%  { stroke: #11121466; }
  47%, 48%  { stroke: #11121466; }
  51%       { stroke: #11121430; }
  55%, 100% { stroke: #11121414; }
}

.cap-fill--category {
  animation: cap-fill-category 14.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes cap-fill-category {
  0%, 47%  { width: 30px; fill: #11121438; }
  50%      { width: 60px; fill: #11121499; }
  100%     { width: 60px; fill: #11121499; }
}

.cap-drop--category {
  animation: cap-drop-category 14.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  transform-origin: 188px 130px;
  transform-box: fill-box;
}
@keyframes cap-drop-category {
  0%, 40%   { opacity: 0; transform: translateY(-3px) scale(0.97); }
  43%, 48%  { opacity: 1; transform: translateY(0) scale(1); }
  51%, 100% { opacity: 0; transform: translateY(-3px) scale(0.97); }
}

.cap-pick--category {
  animation: cap-pick-category 14.4s ease-out infinite;
}
@keyframes cap-pick-category {
  0%, 46%   { fill: #11121420; }
  47%, 48%  { fill: #11121480; }
  50%, 100% { fill: #11121420; }
}

/* ── Description textarea ── */
.cap-input--desc {
  animation: cap-input-desc 14.4s ease-out infinite;
}
@keyframes cap-input-desc {
  0%, 56%   { stroke: #11121414; }
  58%, 60%  { stroke: #11121466; }
  68%       { stroke: #11121430; }
  72%, 100% { stroke: #11121414; }
}

.cap-line--1 { animation: cap-line-1 14.4s cubic-bezier(0.65, 0, 0.35, 1) infinite; }
.cap-line--2 { animation: cap-line-2 14.4s cubic-bezier(0.65, 0, 0.35, 1) infinite; }
.cap-line--3 { animation: cap-line-3 14.4s cubic-bezier(0.65, 0, 0.35, 1) infinite; }

@keyframes cap-line-1 {
  0%, 58%  { width: 0; }
  63%      { width: 156px; }
  100%     { width: 156px; }
}
@keyframes cap-line-2 {
  0%, 63%  { width: 0; }
  67%      { width: 130px; }
  100%     { width: 130px; }
}
@keyframes cap-line-3 {
  0%, 67%  { width: 0; }
  71%      { width: 88px; }
  100%     { width: 88px; }
}

/* ── Attach button ── */
.cap-attach {
  animation: cap-attach-press 14.4s cubic-bezier(0.45, 0, 0.15, 1) infinite;
  transform-origin: 51px 233px;
  transform-box: fill-box;
}
@keyframes cap-attach-press {
  0%, 76%   { fill: #f7f4ec; stroke: #11121414; transform: scale(1); }
  78%       { fill: #11121412; stroke: #11121466; transform: scale(0.95); }
  82%       { fill: #11121408; stroke: #11121430; transform: scale(1); }
  86%, 100% { fill: #f7f4ec; stroke: #11121414; transform: scale(1); }
}

/* ── Submit button ── */
.cap-submit {
  animation: cap-submit-press 14.4s cubic-bezier(0.45, 0, 0.15, 1) infinite;
  transform-origin: 152px 233px;
  transform-box: fill-box;
}
@keyframes cap-submit-press {
  0%, 86%  { fill: #111214e6; transform: scale(1); }
  88%      { fill: #111214ff; transform: scale(0.96); }
  91%      { fill: #111214f5; transform: scale(1); }
  100%     { fill: #111214e6; transform: scale(1); }
}

/* ── Recording dot — gentle opacity pulse only, no scale ── */
.cap-rec {
  animation: cap-rec-pulse 2.304s ease-in-out infinite;
}
@keyframes cap-rec-pulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

/* ── Captured steps — smooth gentle entrance ── */
.cap-step { transform-box: fill-box; }

.cap-step--1 { transform-origin: 318px 70px;  animation: cap-step-1 14.4s cubic-bezier(0.25, 1, 0.3, 1) infinite; }
.cap-step--2 { transform-origin: 318px 104px; animation: cap-step-2 14.4s cubic-bezier(0.25, 1, 0.3, 1) infinite; }
.cap-step--3 { transform-origin: 318px 138px; animation: cap-step-3 14.4s cubic-bezier(0.25, 1, 0.3, 1) infinite; }
.cap-step--4 { transform-origin: 318px 172px; animation: cap-step-4 14.4s cubic-bezier(0.25, 1, 0.3, 1) infinite; }
.cap-step--5 { transform-origin: 318px 206px; animation: cap-step-5 14.4s cubic-bezier(0.25, 1, 0.3, 1) infinite; }
.cap-step--6 { transform-origin: 318px 240px; animation: cap-step-6 14.4s cubic-bezier(0.25, 1, 0.3, 1) infinite; }

@keyframes cap-step-1 {
  0%, 13%   { opacity: 0; transform: translateY(4px) scale(0.97); }
  17%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cap-step-2 {
  0%, 31%   { opacity: 0; transform: translateY(4px) scale(0.97); }
  35%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cap-step-3 {
  0%, 48%   { opacity: 0; transform: translateY(4px) scale(0.97); }
  52%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cap-step-4 {
  0%, 70%   { opacity: 0; transform: translateY(4px) scale(0.97); }
  74%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cap-step-5 {
  0%, 79%   { opacity: 0; transform: translateY(4px) scale(0.97); }
  83%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cap-step-6 {
  0%, 89%   { opacity: 0; transform: translateY(4px) scale(0.97); }
  93%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Cursor — slow buttery travel + subtle click pulses ── */
.cap-cursor {
  animation: cap-cursor-path 14.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes cap-cursor-path {
  0%   { transform: translate(380px, 360px) scale(0.85); opacity: 0; }
  3%   { transform: translate(380px, 360px) scale(1);    opacity: 1; }

  /* Click 1: Title input @ 12% */
  10%  { transform: translate(136px,  76px) scale(1);    opacity: 1; }
  12%  { transform: translate(136px,  76px) scale(0.85); opacity: 1; }
  14%  { transform: translate(136px,  76px) scale(1);    opacity: 1; }

  /* Click 2: Priority trigger @ 24% */
  21%  { transform: translate( 84px, 116px) scale(1);    opacity: 1; }
  24%  { transform: translate( 84px, 116px) scale(0.85); opacity: 1; }
  26%  { transform: translate( 84px, 116px) scale(1);    opacity: 1; }

  /* Click 3: Priority pick @ 30% */
  29%  { transform: translate( 84px, 153px) scale(1);    opacity: 1; }
  30%  { transform: translate( 84px, 153px) scale(0.85); opacity: 1; }
  32%  { transform: translate( 84px, 153px) scale(1);    opacity: 1; }

  /* Click 4: Category trigger @ 41% */
  38%  { transform: translate(188px, 116px) scale(1);    opacity: 1; }
  41%  { transform: translate(188px, 116px) scale(0.85); opacity: 1; }
  43%  { transform: translate(188px, 116px) scale(1);    opacity: 1; }

  /* Click 5: Category pick @ 47% */
  46%  { transform: translate(188px, 165px) scale(1);    opacity: 1; }
  47%  { transform: translate(188px, 165px) scale(0.85); opacity: 1; }
  49%  { transform: translate(188px, 165px) scale(1);    opacity: 1; }

  /* Click 6: Description area @ 57% */
  54%  { transform: translate(136px, 178px) scale(1);    opacity: 1; }
  57%  { transform: translate(136px, 178px) scale(0.85); opacity: 1; }
  59%  { transform: translate(136px, 178px) scale(1);    opacity: 1; }
  72%  { transform: translate(136px, 178px) scale(1);    opacity: 1; }

  /* Click 7: Attach button @ 78% */
  76%  { transform: translate( 51px, 233px) scale(1);    opacity: 1; }
  78%  { transform: translate( 51px, 233px) scale(0.85); opacity: 1; }
  80%  { transform: translate( 51px, 233px) scale(1);    opacity: 1; }

  /* Click 8: Submit @ 88% */
  86%  { transform: translate(152px, 233px) scale(1);    opacity: 1; }
  88%  { transform: translate(152px, 233px) scale(0.82); opacity: 1; }
  90%  { transform: translate(152px, 233px) scale(1);    opacity: 1; }

  /* Hold + soft exit */
  93%  { transform: translate(152px, 233px) scale(1);    opacity: 1; }
  96%  { transform: translate(152px, 233px) scale(0.85); opacity: 0; }
  100% { transform: translate(380px, 360px) scale(0.85); opacity: 0; }
}
/* ───────── Card 2: Execute automation animation ─────────
   Three panels: Prompt → SaaS → Agent steps.
   Loop: 11.52s. Sequence:
     0-9%   :  Prompt line 1 types
     9-16%  :  Prompt line 2 types
     17-19% :  "Send task" button press
     20-22% :  Agent panel wakes up (status badge appears)
     22-32% :  Step 1 active — Account field fills at 30%, check at 32%
     32-45% :  Step 2 active — Invoice field fills at 43%, check at 45%
     45-58% :  Step 3 active — Status field fills at 56%, check at 58%
     58-71% :  Step 4 active — Message line 1 appears at 69%, check at 71%
     71-83% :  Step 5 active — CRM chip + msg 2 at 80-82%, check at 83%
     83-92% :  Step 6 active — Notify chip at 89%, check at 92%
     92-100%:  Hold then crossfade
*/

.story-media--guidance {
  background: #efe9dc;
}

.story-media--guidance::before,
.story-media--guidance::after {
  display: none !important;
}

.execute-anim {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  background: linear-gradient(180deg, #f8f5ed 0%, #ece6d8 100%);
  overflow: hidden;
}

.execute-anim__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 16% 22%, rgba(255, 240, 210, 0.6), transparent 70%),
    radial-gradient(45% 55% at 88% 80%, rgba(220, 230, 245, 0.55), transparent 70%),
    radial-gradient(35% 45% at 80% 18%, rgba(255, 222, 200, 0.4), transparent 70%);
  filter: blur(28px);
  opacity: 0.9;
}

.execute-anim__stage {
  position: relative;
  width: 92%;
  height: 88%;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 1fr;
  gap: 2.4%;
  z-index: 1;
  animation: exec-stage-fade 14s linear infinite;
}

@keyframes exec-stage-fade {
  0%, 92%   { opacity: 1; }
  96%, 100% { opacity: 0; }
}

/* ── Shared card chrome ── */
.exec-prompt,
.exec-saas,
.exec-agent {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 10px;
  padding: 7% 6%;
  min-width: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 36px rgba(28, 35, 45, 0.06),
    0 2px 6px rgba(28, 35, 45, 0.03);
}

/* ── Prompt panel (left) ── */
.exec-prompt {
  gap: 8%;
}

.exec-prompt__top {
  display: flex;
  gap: 4px;
}

.exec-prompt__top span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(17, 18, 20, 0.1);
}

.exec-prompt__label {
  font-size: 6.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 18, 20, 0.42);
  font-weight: 700;
}

.exec-prompt__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(17, 18, 20, 0.86);
  line-height: 1.45;
  flex: 1;
}

.exec-type {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
}

.exec-type--1 { animation: exec-type-1 14s steps(28, end) infinite; }
.exec-type--2 { animation: exec-type-2 14s steps(28, end) infinite; }

@keyframes exec-type-1 {
  0%, 1%   { width: 0; }
  9%, 92%  { width: 100%; }
  93%, 100% { width: 0; }
}

@keyframes exec-type-2 {
  0%, 9%   { width: 0; }
  16%, 92% { width: 100%; }
  93%, 100% { width: 0; }
}

.exec-prompt__run {
  align-self: flex-start;
  padding: 5px 10px;
  background: rgba(17, 18, 20, 0.88);
  color: #ffffff;
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  margin-top: auto;
  animation: exec-run-press 14s linear infinite;
}

@keyframes exec-run-press {
  0%, 17%   { background: rgba(17, 18, 20, 0.88); transform: scale(1); }
  19%       { background: rgba(17, 18, 20, 1);    transform: scale(0.93); }
  21%       { background: rgba(17, 18, 20, 0.95); transform: scale(1); }
  92%       { background: rgba(17, 18, 20, 0.88); transform: scale(1); }
  100%      { background: rgba(17, 18, 20, 0.88); transform: scale(1); }
}

/* ── SaaS panel (middle) ── */
.exec-saas {
  padding: 6% 5%;
}

.exec-saas__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6%;
  padding-bottom: 4%;
  border-bottom: 1px solid rgba(17, 18, 20, 0.06);
  flex-shrink: 0;
}

.exec-saas__title {
  width: 38%;
  height: 5px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.18);
}

.exec-saas__status {
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2d8a55;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  animation: exec-saas-active 14s linear infinite;
}

.exec-saas__status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5cb185;
  box-shadow: 0 0 5px rgba(92, 177, 133, 0.7);
}

@keyframes exec-saas-active {
  0%, 19%   { opacity: 0; }
  22%, 92%  { opacity: 1; }
  93%, 100% { opacity: 0; }
}

.exec-saas__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-height: 0;
}

.exec-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 5px 7px;
  background: rgba(247, 244, 236, 0.6);
  border: 1px solid rgba(17, 18, 20, 0.05);
  border-radius: 4px;
  flex-shrink: 0;
}

.exec-field__label {
  font-size: 6.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 18, 20, 0.4);
  font-weight: 700;
}

.exec-field__value {
  font-size: 8.5px;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: rgba(17, 18, 20, 0.86);
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  height: 9px;
}

.exec-field--customer .exec-field__value { animation: exec-fill-customer 14s steps(20, end) infinite; }
.exec-field--reason   .exec-field__value { animation: exec-fill-reason   14s steps(20, end) infinite; }
.exec-field--amount   .exec-field__value { animation: exec-fill-amount   14s steps(20, end) infinite; }

@keyframes exec-fill-customer {
  0%, 26%   { width: 0; }
  31%, 92%  { width: 100%; }
  93%, 100% { width: 0; }
}

@keyframes exec-fill-reason {
  0%, 39%   { width: 0; }
  44%, 92%  { width: 100%; }
  93%, 100% { width: 0; }
}

@keyframes exec-fill-amount {
  0%, 52%   { width: 0; }
  57%, 92%  { width: 100%; }
  93%, 100% { width: 0; }
}

.exec-message {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 7px;
  background: rgba(247, 244, 236, 0.5);
  border: 1px dashed rgba(17, 18, 20, 0.12);
  border-radius: 4px;
  margin-top: 4px;
  flex-shrink: 0;
}

.exec-message > span {
  font-size: 7.5px;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: rgba(17, 18, 20, 0.7);
  line-height: 1.35;
  opacity: 0;
}

.exec-message > span:first-child { animation: exec-msg-1 14s linear infinite; }
.exec-message > span:nth-child(2) { animation: exec-msg-2 14s linear infinite; }

@keyframes exec-msg-1 {
  0%, 67%   { opacity: 0; transform: translateY(2px); }
  71%, 92%  { opacity: 1; transform: translateY(0); }
  93%, 100% { opacity: 0; }
}

@keyframes exec-msg-2 {
  0%, 78%   { opacity: 0; transform: translateY(2px); }
  82%, 92%  { opacity: 1; transform: translateY(0); }
  93%, 100% { opacity: 0; }
}

.exec-actions {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.exec-action {
  font-size: 6.5px;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 3px;
  background: rgba(17, 18, 20, 0.06);
  color: rgba(17, 18, 20, 0.45);
  white-space: nowrap;
  text-transform: uppercase;
}

.exec-action--crm    { animation: exec-action-crm    14s linear infinite; }
.exec-action--notify { animation: exec-action-notify 14s linear infinite; }

@keyframes exec-action-crm {
  0%, 78%   { background: rgba(17, 18, 20, 0.06); color: rgba(17, 18, 20, 0.45); }
  81%, 92%  { background: rgba(17, 18, 20, 0.88); color: #ffffff; }
  93%, 100% { background: rgba(17, 18, 20, 0.06); color: rgba(17, 18, 20, 0.45); }
}

@keyframes exec-action-notify {
  0%, 88%   { background: rgba(17, 18, 20, 0.06); color: rgba(17, 18, 20, 0.45); }
  90%, 92%  { background: rgba(17, 18, 20, 0.88); color: #ffffff; }
  93%, 100% { background: rgba(17, 18, 20, 0.06); color: rgba(17, 18, 20, 0.45); }
}

/* ── Agent panel (right) ── */
.exec-agent {
  padding: 7% 5%;
}

.exec-agent__head {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8%;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 18, 20, 0.55);
  flex-shrink: 0;
}

.exec-agent__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d94a4a;
  box-shadow: 0 0 6px rgba(217, 74, 74, 0.6);
  animation: exec-rec-pulse 1.6s ease-in-out infinite;
}

@keyframes exec-rec-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.18); }
}

.exec-step {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding: 4px 6px;
  margin-bottom: 4px;
  background: #ffffff;
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(28, 35, 45, 0.02);
  flex-shrink: 0;
}

.exec-check {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(17, 18, 20, 0.08);
  border: 1px solid rgba(17, 18, 20, 0.18);
  position: relative;
  margin-top: 1px;
}

.exec-check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 2px;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: translate(-55%, -70%) rotate(-45deg);
  opacity: 0;
}

.exec-step .cap-step-text {
  display: grid;
  gap: 1px;
  min-width: 0;
  line-height: 1.15;
  flex: 1;
}

.exec-step .cap-step-text strong,
.exec-step .cap-step-text small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.exec-step .cap-step-text strong {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(17, 18, 20, 0.85);
}

.exec-step .cap-step-text small {
  font-size: 6.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(17, 18, 20, 0.42);
}

/* Each step animates: idle → active (yellow) → done (check) */
.exec-step--1 { animation: exec-step-1 14s linear infinite; }
.exec-step--2 { animation: exec-step-2 14s linear infinite; }
.exec-step--3 { animation: exec-step-3 14s linear infinite; }
.exec-step--4 { animation: exec-step-4 14s linear infinite; }
.exec-step--5 { animation: exec-step-5 14s linear infinite; }
.exec-step--6 { animation: exec-step-6 14s linear infinite; }

@keyframes exec-step-1 {
  0%, 21%   { background: #ffffff; border-color: rgba(17, 18, 20, 0.06); }
  23%, 30%  { background: rgba(255, 246, 225, 0.95); border-color: rgba(217, 165, 60, 0.5); }
  33%, 92%  { background: #ffffff; border-color: rgba(17, 18, 20, 0.1); }
  93%, 100% { background: #ffffff; border-color: rgba(17, 18, 20, 0.06); }
}

@keyframes exec-step-2 {
  0%, 34%   { background: #ffffff; border-color: rgba(17, 18, 20, 0.06); }
  36%, 43%  { background: rgba(255, 246, 225, 0.95); border-color: rgba(217, 165, 60, 0.5); }
  46%, 92%  { background: #ffffff; border-color: rgba(17, 18, 20, 0.1); }
  93%, 100% { background: #ffffff; border-color: rgba(17, 18, 20, 0.06); }
}

@keyframes exec-step-3 {
  0%, 47%   { background: #ffffff; border-color: rgba(17, 18, 20, 0.06); }
  49%, 56%  { background: rgba(255, 246, 225, 0.95); border-color: rgba(217, 165, 60, 0.5); }
  59%, 92%  { background: #ffffff; border-color: rgba(17, 18, 20, 0.1); }
  93%, 100% { background: #ffffff; border-color: rgba(17, 18, 20, 0.06); }
}

@keyframes exec-step-4 {
  0%, 60%   { background: #ffffff; border-color: rgba(17, 18, 20, 0.06); }
  62%, 69%  { background: rgba(255, 246, 225, 0.95); border-color: rgba(217, 165, 60, 0.5); }
  72%, 92%  { background: #ffffff; border-color: rgba(17, 18, 20, 0.1); }
  93%, 100% { background: #ffffff; border-color: rgba(17, 18, 20, 0.06); }
}

@keyframes exec-step-5 {
  0%, 72%   { background: #ffffff; border-color: rgba(17, 18, 20, 0.06); }
  74%, 80%  { background: rgba(255, 246, 225, 0.95); border-color: rgba(217, 165, 60, 0.5); }
  83%, 92%  { background: #ffffff; border-color: rgba(17, 18, 20, 0.1); }
  93%, 100% { background: #ffffff; border-color: rgba(17, 18, 20, 0.06); }
}

@keyframes exec-step-6 {
  0%, 83%   { background: #ffffff; border-color: rgba(17, 18, 20, 0.06); }
  85%, 90%  { background: rgba(255, 246, 225, 0.95); border-color: rgba(217, 165, 60, 0.5); }
  92%       { background: #ffffff; border-color: rgba(17, 18, 20, 0.1); }
  93%, 100% { background: #ffffff; border-color: rgba(17, 18, 20, 0.06); }
}

/* Each step's check completes after its active phase */
.exec-step--1 .exec-check { animation: exec-check-1 14s linear infinite; }
.exec-step--2 .exec-check { animation: exec-check-2 14s linear infinite; }
.exec-step--3 .exec-check { animation: exec-check-3 14s linear infinite; }
.exec-step--4 .exec-check { animation: exec-check-4 14s linear infinite; }
.exec-step--5 .exec-check { animation: exec-check-5 14s linear infinite; }
.exec-step--6 .exec-check { animation: exec-check-6 14s linear infinite; }

@keyframes exec-check-1 {
  0%, 30%   { background: rgba(17, 18, 20, 0.08); border-color: rgba(17, 18, 20, 0.18); }
  33%, 92%  { background: rgba(17, 18, 20, 0.88); border-color: transparent; }
  93%, 100% { background: rgba(17, 18, 20, 0.08); border-color: rgba(17, 18, 20, 0.18); }
}

@keyframes exec-check-2 {
  0%, 43%   { background: rgba(17, 18, 20, 0.08); border-color: rgba(17, 18, 20, 0.18); }
  46%, 92%  { background: rgba(17, 18, 20, 0.88); border-color: transparent; }
  93%, 100% { background: rgba(17, 18, 20, 0.08); border-color: rgba(17, 18, 20, 0.18); }
}

@keyframes exec-check-3 {
  0%, 56%   { background: rgba(17, 18, 20, 0.08); border-color: rgba(17, 18, 20, 0.18); }
  59%, 92%  { background: rgba(17, 18, 20, 0.88); border-color: transparent; }
  93%, 100% { background: rgba(17, 18, 20, 0.08); border-color: rgba(17, 18, 20, 0.18); }
}

@keyframes exec-check-4 {
  0%, 69%   { background: rgba(17, 18, 20, 0.08); border-color: rgba(17, 18, 20, 0.18); }
  72%, 92%  { background: rgba(17, 18, 20, 0.88); border-color: transparent; }
  93%, 100% { background: rgba(17, 18, 20, 0.08); border-color: rgba(17, 18, 20, 0.18); }
}

@keyframes exec-check-5 {
  0%, 80%   { background: rgba(17, 18, 20, 0.08); border-color: rgba(17, 18, 20, 0.18); }
  83%, 92%  { background: rgba(17, 18, 20, 0.88); border-color: transparent; }
  93%, 100% { background: rgba(17, 18, 20, 0.08); border-color: rgba(17, 18, 20, 0.18); }
}

@keyframes exec-check-6 {
  0%, 90%   { background: rgba(17, 18, 20, 0.08); border-color: rgba(17, 18, 20, 0.18); }
  92%       { background: rgba(17, 18, 20, 0.88); border-color: transparent; }
  93%, 100% { background: rgba(17, 18, 20, 0.08); border-color: rgba(17, 18, 20, 0.18); }
}

.exec-step--1 .exec-check::after { animation: exec-tick-1 14s linear infinite; }
.exec-step--2 .exec-check::after { animation: exec-tick-2 14s linear infinite; }
.exec-step--3 .exec-check::after { animation: exec-tick-3 14s linear infinite; }
.exec-step--4 .exec-check::after { animation: exec-tick-4 14s linear infinite; }
.exec-step--5 .exec-check::after { animation: exec-tick-5 14s linear infinite; }
.exec-step--6 .exec-check::after { animation: exec-tick-6 14s linear infinite; }

@keyframes exec-tick-1 { 0%, 30% { opacity: 0; } 33%, 92% { opacity: 1; } 93%, 100% { opacity: 0; } }
@keyframes exec-tick-2 { 0%, 43% { opacity: 0; } 46%, 92% { opacity: 1; } 93%, 100% { opacity: 0; } }
@keyframes exec-tick-3 { 0%, 56% { opacity: 0; } 59%, 92% { opacity: 1; } 93%, 100% { opacity: 0; } }
@keyframes exec-tick-4 { 0%, 69% { opacity: 0; } 72%, 92% { opacity: 1; } 93%, 100% { opacity: 0; } }
@keyframes exec-tick-5 { 0%, 80% { opacity: 0; } 83%, 92% { opacity: 1; } 93%, 100% { opacity: 0; } }
@keyframes exec-tick-6 { 0%, 90% { opacity: 0; } 92%, 92% { opacity: 1; } 93%, 100% { opacity: 0; } }

/* Hide legacy cursor — agent runs autonomously */
.exec-cursor { display: none; }

/* Disable hover scale on this card */
.story-card:hover .story-media--guidance .execute-anim { transform: none; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .execute-anim__stage { gap: 2%; }
  .exec-step .cap-step-text strong { font-size: 7px; }
  .exec-step .cap-step-text small  { font-size: 6px; }
}

@media (max-width: 700px) {
  .execute-anim__stage { width: 96%; height: 92%; }
}

/* Autonomous card: single glass surface, prompt first, then agent actions. */
.story-media--guidance {
  background: #eef3f8;
}

.execute-anim {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: var(--font-brand);
  background:
    linear-gradient(135deg, rgba(247, 250, 255, 0.92), rgba(237, 244, 250, 0.88)),
    #eef3f8;
}

.execute-anim__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(42% 52% at 18% 18%, rgba(188, 214, 246, 0.58), transparent 72%),
    radial-gradient(48% 58% at 86% 78%, rgba(220, 231, 246, 0.7), transparent 74%),
    radial-gradient(38% 46% at 70% 20%, rgba(248, 232, 222, 0.42), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(238, 243, 248, 0.18));
  filter: blur(34px);
  opacity: 0.96;
  transform: scale(1.08);
}

.exec-card {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(78%, 390px);
  min-height: 72%;
  flex-direction: column;
  padding: clamp(18px, 5.5%, 30px);
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 22px 54px rgba(28, 35, 45, 0.08),
    0 4px 16px rgba(28, 35, 45, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: exec-card-presence 15s ease-in-out infinite;
}

.exec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0.02)),
    radial-gradient(70% 45% at 50% 0%, rgba(255, 255, 255, 0.62), transparent 72%);
  opacity: 0.85;
}

.exec-card > * {
  position: relative;
  z-index: 1;
}

@keyframes exec-card-presence {
  0% { opacity: 0; transform: translateY(10px) scale(0.985); }
  5%, 92% { opacity: 1; transform: translateY(0) scale(1); }
  97%, 100% { opacity: 0; transform: translateY(-6px) scale(0.985); }
}

.exec-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(17, 18, 20, 0.54);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.exec-brand {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 18, 20, 0.86);
  box-shadow: 0 0 0 5px rgba(17, 18, 20, 0.06);
}

.exec-brand::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(17, 18, 20, 0.14);
  opacity: 0;
  animation: exec-agent-pulse-min 15s ease-out infinite;
}

@keyframes exec-agent-pulse-min {
  0%, 34%, 100% { opacity: 0; transform: scale(0.8); }
  38%, 88% { opacity: 0.75; transform: scale(1.16); }
}

.exec-prompt-row {
  position: absolute;
  top: 50%;
  right: clamp(18px, 5.5%, 30px);
  left: clamp(18px, 5.5%, 30px);
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(17, 18, 20, 0.07);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 12px 28px rgba(28, 35, 45, 0.06);
  transform: translateY(-50%);
  animation: exec-prompt-shell 15s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

@keyframes exec-prompt-shell {
  0% { opacity: 0; transform: translateY(-42%) scale(0.985); filter: blur(4px); }
  5%, 31% { opacity: 1; transform: translateY(-50%) scale(1); filter: blur(0); }
  37%, 100% { opacity: 0; transform: translateY(-58%) scale(0.965); filter: blur(5px); }
}

.exec-prompt-text {
  display: inline-block;
  width: 0;
  max-width: 100%;
  overflow: hidden;
  color: rgba(17, 18, 20, 0.78);
  font-size: clamp(9px, 1vw, 11px);
  font-weight: 580;
  letter-spacing: 0;
  line-height: 1.25;
  white-space: nowrap;
  animation: exec-prompt-type-min 15s steps(54, end) infinite;
}

@keyframes exec-prompt-type-min {
  0%, 7% { width: 0; }
  28.5%, 100% { width: 100%; }
}

.exec-caret {
  width: 1px;
  height: 15px;
  margin-left: 2px;
  background: rgba(17, 18, 20, 0.62);
  animation: exec-caret-min 15s linear infinite;
}

@keyframes exec-caret-min {
  0%, 7%, 28.5%, 100% { opacity: 0; }
  8%, 27.8% { opacity: 1; }
}

.exec-send {
  position: absolute;
  right: clamp(18px, 5.5%, 30px);
  bottom: 26%;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(17, 18, 20, 0.9);
  color: #ffffff;
  font-size: 7px;
  font-weight: 760;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(28, 35, 45, 0.12);
  animation: exec-send-min 15s linear infinite;
}

@keyframes exec-send-min {
  0%, 28.4% { opacity: 0; transform: translateY(3px) scale(0.96); }
  28.8%, 29.6% { opacity: 1; transform: translateY(0) scale(1); }
  30.2% { opacity: 1; transform: translateY(0) scale(0.9); }
  32.4%, 100% { opacity: 0; transform: translateY(-4px) scale(0.96); }
}

.exec-divider {
  width: 100%;
  height: 1px;
  margin: 17px 0 14px;
  background: linear-gradient(90deg, transparent, rgba(17, 18, 20, 0.1), transparent);
  opacity: 0;
  animation: exec-agent-content-in 15s linear infinite;
}

.exec-actions-list {
  display: grid;
  gap: 8px;
  margin-top: auto;
  opacity: 0;
  animation: exec-agent-content-in 15s linear infinite;
}

@keyframes exec-agent-content-in {
  0%, 36% { opacity: 0; transform: translateY(8px); }
  41%, 92% { opacity: 1; transform: translateY(0); }
  97%, 100% { opacity: 0; transform: translateY(-4px); }
}

.exec-act {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  opacity: 0.34;
  transform: translateY(3px);
}

.exec-status {
  position: relative;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  border: 1px solid rgba(17, 18, 20, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.exec-status::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: rgba(17, 18, 20, 0.2);
}

.exec-status::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 2.5px;
  border-bottom: 1.3px solid #ffffff;
  border-left: 1.3px solid #ffffff;
  opacity: 0;
  transform: translate(-52%, -68%) rotate(-45deg);
}

.exec-act-text {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.exec-act-text strong,
.exec-act-text small {
  display: block;
  overflow: hidden;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.exec-act-text strong {
  color: rgba(17, 18, 20, 0.82);
  font-size: clamp(8px, 0.82vw, 9.5px);
  font-weight: 680;
}

.exec-act-text small {
  color: rgba(17, 18, 20, 0.46);
  font-size: clamp(6.5px, 0.66vw, 7.5px);
  font-weight: 540;
}

.exec-act--1 { animation: exec-act-1-min 15s linear infinite; }
.exec-act--2 { animation: exec-act-2-min 15s linear infinite; }
.exec-act--3 { animation: exec-act-3-min 15s linear infinite; }
.exec-act--4 { animation: exec-act-4-min 15s linear infinite; }
.exec-act--5 { animation: exec-act-5-min 15s linear infinite; }
.exec-act--1 .exec-status { animation: exec-status-1-min 15s linear infinite; }
.exec-act--2 .exec-status { animation: exec-status-2-min 15s linear infinite; }
.exec-act--3 .exec-status { animation: exec-status-3-min 15s linear infinite; }
.exec-act--4 .exec-status { animation: exec-status-4-min 15s linear infinite; }
.exec-act--5 .exec-status { animation: exec-status-5-min 15s linear infinite; }
.exec-act--1 .exec-status::after { animation: exec-tick-1-min 15s linear infinite; }
.exec-act--2 .exec-status::after { animation: exec-tick-2-min 15s linear infinite; }
.exec-act--3 .exec-status::after { animation: exec-tick-3-min 15s linear infinite; }
.exec-act--4 .exec-status::after { animation: exec-tick-4-min 15s linear infinite; }
.exec-act--5 .exec-status::after { animation: exec-tick-5-min 15s linear infinite; }

@keyframes exec-act-1-min {
  0%, 39%, 93%, 100% { opacity: 0.34; transform: translateY(3px); border-color: rgba(17, 18, 20, 0.06); background: rgba(255, 255, 255, 0.5); }
  41%, 47% { opacity: 1; transform: translateY(0); border-color: rgba(17, 18, 20, 0.18); background: rgba(255, 255, 255, 0.78); }
  50%, 92% { opacity: 0.88; transform: translateY(0); border-color: rgba(17, 18, 20, 0.08); background: rgba(255, 255, 255, 0.58); }
}

@keyframes exec-act-2-min {
  0%, 48%, 93%, 100% { opacity: 0.34; transform: translateY(3px); border-color: rgba(17, 18, 20, 0.06); background: rgba(255, 255, 255, 0.5); }
  50%, 56% { opacity: 1; transform: translateY(0); border-color: rgba(17, 18, 20, 0.18); background: rgba(255, 255, 255, 0.78); }
  59%, 92% { opacity: 0.88; transform: translateY(0); border-color: rgba(17, 18, 20, 0.08); background: rgba(255, 255, 255, 0.58); }
}

@keyframes exec-act-3-min {
  0%, 57%, 93%, 100% { opacity: 0.34; transform: translateY(3px); border-color: rgba(17, 18, 20, 0.06); background: rgba(255, 255, 255, 0.5); }
  59%, 66% { opacity: 1; transform: translateY(0); border-color: rgba(17, 18, 20, 0.18); background: rgba(255, 255, 255, 0.78); }
  69%, 92% { opacity: 0.88; transform: translateY(0); border-color: rgba(17, 18, 20, 0.08); background: rgba(255, 255, 255, 0.58); }
}

@keyframes exec-act-4-min {
  0%, 67%, 93%, 100% { opacity: 0.34; transform: translateY(3px); border-color: rgba(17, 18, 20, 0.06); background: rgba(255, 255, 255, 0.5); }
  69%, 76% { opacity: 1; transform: translateY(0); border-color: rgba(17, 18, 20, 0.18); background: rgba(255, 255, 255, 0.78); }
  79%, 92% { opacity: 0.88; transform: translateY(0); border-color: rgba(17, 18, 20, 0.08); background: rgba(255, 255, 255, 0.58); }
}

@keyframes exec-act-5-min {
  0%, 77%, 93%, 100% { opacity: 0.34; transform: translateY(3px); border-color: rgba(17, 18, 20, 0.06); background: rgba(255, 255, 255, 0.5); }
  79%, 86% { opacity: 1; transform: translateY(0); border-color: rgba(17, 18, 20, 0.18); background: rgba(255, 255, 255, 0.78); }
  89%, 92% { opacity: 0.88; transform: translateY(0); border-color: rgba(17, 18, 20, 0.08); background: rgba(255, 255, 255, 0.58); }
}

@keyframes exec-status-1-min { 0%, 47%, 93%, 100% { background: rgba(255, 255, 255, 0.72); border-color: rgba(17, 18, 20, 0.16); } 41%, 47% { background: rgba(17, 18, 20, 0.12); border-color: rgba(17, 18, 20, 0.34); } 50%, 92% { background: rgba(17, 18, 20, 0.86); border-color: transparent; } }
@keyframes exec-status-2-min { 0%, 56%, 93%, 100% { background: rgba(255, 255, 255, 0.72); border-color: rgba(17, 18, 20, 0.16); } 50%, 56% { background: rgba(17, 18, 20, 0.12); border-color: rgba(17, 18, 20, 0.34); } 59%, 92% { background: rgba(17, 18, 20, 0.86); border-color: transparent; } }
@keyframes exec-status-3-min { 0%, 66%, 93%, 100% { background: rgba(255, 255, 255, 0.72); border-color: rgba(17, 18, 20, 0.16); } 59%, 66% { background: rgba(17, 18, 20, 0.12); border-color: rgba(17, 18, 20, 0.34); } 69%, 92% { background: rgba(17, 18, 20, 0.86); border-color: transparent; } }
@keyframes exec-status-4-min { 0%, 76%, 93%, 100% { background: rgba(255, 255, 255, 0.72); border-color: rgba(17, 18, 20, 0.16); } 69%, 76% { background: rgba(17, 18, 20, 0.12); border-color: rgba(17, 18, 20, 0.34); } 79%, 92% { background: rgba(17, 18, 20, 0.86); border-color: transparent; } }
@keyframes exec-status-5-min { 0%, 86%, 93%, 100% { background: rgba(255, 255, 255, 0.72); border-color: rgba(17, 18, 20, 0.16); } 79%, 86% { background: rgba(17, 18, 20, 0.12); border-color: rgba(17, 18, 20, 0.34); } 89%, 92% { background: rgba(17, 18, 20, 0.86); border-color: transparent; } }

@keyframes exec-tick-1-min { 0%, 47%, 93%, 100% { opacity: 0; } 50%, 92% { opacity: 1; } }
@keyframes exec-tick-2-min { 0%, 56%, 93%, 100% { opacity: 0; } 59%, 92% { opacity: 1; } }
@keyframes exec-tick-3-min { 0%, 66%, 93%, 100% { opacity: 0; } 69%, 92% { opacity: 1; } }
@keyframes exec-tick-4-min { 0%, 76%, 93%, 100% { opacity: 0; } 79%, 92% { opacity: 1; } }
@keyframes exec-tick-5-min { 0%, 86%, 93%, 100% { opacity: 0; } 89%, 92% { opacity: 1; } }

.exec-cursor,
.execute-anim__stage,
.exec-prompt,
.exec-saas,
.exec-agent {
  display: none !important;
}

.story-card:hover .story-media--guidance .execute-anim {
  transform: none;
}

@media (max-width: 700px) {
  .exec-card {
    width: 86%;
    min-height: 74%;
    padding: 18px;
  }

  .exec-prompt-row {
    right: 18px;
    left: 18px;
  }

  .exec-send {
    right: 18px;
  }

  .exec-act {
    min-height: 38px;
    padding: 8px;
  }
}

/* Final autonomous motion: prompt alone, then one minimal glass action at a time. */
.exec-prompt-alone,
.exec-flow {
  position: absolute;
  left: 50%;
  z-index: 2;
  width: min(78%, 390px);
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 24px 58px rgba(28, 35, 45, 0.08),
    0 4px 16px rgba(28, 35, 45, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.exec-prompt-alone {
  top: 50%;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 5.6%, 28px);
  transform: translate(-50%, -50%);
  animation: exec-prompt-alone-motion 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

@keyframes exec-prompt-alone-motion {
  0% { opacity: 0; transform: translate(-50%, -44%) scale(0.985); filter: blur(5px); }
  5%, 30.8% { opacity: 1; transform: translate(-50%, -50%) scale(1); filter: blur(0); }
  33.8%, 100% { opacity: 0; transform: translate(-50%, -58%) scale(0.965); filter: blur(6px); }
}

.exec-prompt-alone__head,
.exec-flow__head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(17, 18, 20, 0.5);
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.exec-prompt-alone .exec-prompt-row {
  position: relative;
  inset: auto;
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  animation: none;
}

.exec-prompt-alone .exec-prompt-text {
  width: 0;
  max-width: 100%;
  animation: exec-prompt-type-final 11.52s steps(54, end) infinite;
}

@keyframes exec-prompt-type-final {
  0%, 7% { width: 0; }
  28.5%, 100% { width: 100%; }
}

.exec-prompt-alone .exec-caret {
  display: none !important;
  animation: exec-caret-final 11.52s linear infinite;
}

@keyframes exec-caret-final {
  0%, 7%, 28.5%, 100% { opacity: 0; }
  8%, 27.8% { opacity: 1; }
}

.exec-prompt-alone .exec-send {
  position: relative;
  right: auto;
  bottom: auto;
  justify-self: end;
  animation: exec-send-final 11.52s linear infinite;
}

@keyframes exec-send-final {
  0%, 28.4% { opacity: 0; transform: translateY(3px) scale(0.96); }
  28.8%, 29.6% { opacity: 1; transform: translateY(0) scale(1); }
  30.2% { opacity: 1; transform: translateY(0) scale(0.9); }
  32.4%, 100% { opacity: 0; transform: translateY(-4px) scale(0.96); }
}

.exec-flow {
  top: 50%;
  display: flex;
  min-height: 172px;
  flex-direction: column;
  padding: clamp(18px, 5.6%, 28px);
  transform: translate(-50%, -50%);
  animation: exec-flow-motion 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

@keyframes exec-flow-motion {
  0%, 33.2% { opacity: 0; transform: translate(-50%, -42%) scale(0.985); filter: blur(6px); }
  35.4%, 93% { opacity: 1; transform: translate(-50%, -50%) scale(1); filter: blur(0); }
  98%, 100% { opacity: 0; transform: translate(-50%, -56%) scale(0.985); filter: blur(5px); }
}

.exec-flow__head {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
}

.exec-flow__state {
  margin-left: auto;
  color: rgba(45, 138, 85, 0.82);
  font-size: 7px;
}

.exec-flow__state::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: #5cb185;
  box-shadow: 0 0 7px rgba(92, 177, 133, 0.55);
  vertical-align: 1px;
}

.exec-flow-list {
  position: relative;
  flex: 1;
  min-height: 86px;
  margin-top: 4px;
}

.exec-flow-list::before,
.exec-flow-list::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 18, 20, 0.08), transparent);
}

.exec-flow-list::before { top: 0; }
.exec-flow-list::after { bottom: 0; }

.exec-flow .exec-act {
  position: absolute;
  inset: 1px 0;
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 13px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translateY(10px);
}

.exec-flow .exec-status {
  width: 15px;
  height: 15px;
  flex-basis: 15px;
  background: rgba(255, 255, 255, 0.52);
}

.exec-flow .exec-status::before {
  inset: 4px;
}

.exec-flow .exec-act-text {
  gap: 5px;
}

.exec-flow .exec-act-text strong {
  font-size: clamp(9px, 0.92vw, 10.5px);
  font-weight: 700;
}

.exec-flow .exec-act-text small {
  font-size: clamp(7px, 0.72vw, 8px);
}

.exec-act--1 { animation: exec-row-1-final 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.exec-act--2 { animation: exec-row-2-final 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.exec-act--3 { animation: exec-row-3-final 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.exec-act--4 { animation: exec-row-4-final 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.exec-act--5 { animation: exec-row-5-final 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }

@keyframes exec-row-1-final {
  0%, 43%, 55%, 100% { opacity: 0; transform: translateY(10px); }
  45%, 52% { opacity: 1; transform: translateY(0); }
  54% { opacity: 0; transform: translateY(-10px); }
}

@keyframes exec-row-2-final {
  0%, 53%, 65%, 100% { opacity: 0; transform: translateY(10px); }
  55%, 62% { opacity: 1; transform: translateY(0); }
  64% { opacity: 0; transform: translateY(-10px); }
}

@keyframes exec-row-3-final {
  0%, 63%, 75%, 100% { opacity: 0; transform: translateY(10px); }
  65%, 72% { opacity: 1; transform: translateY(0); }
  74% { opacity: 0; transform: translateY(-10px); }
}

@keyframes exec-row-4-final {
  0%, 73%, 85%, 100% { opacity: 0; transform: translateY(10px); }
  75%, 82% { opacity: 1; transform: translateY(0); }
  84% { opacity: 0; transform: translateY(-10px); }
}

@keyframes exec-row-5-final {
  0%, 83%, 95%, 100% { opacity: 0; transform: translateY(10px); }
  85%, 92% { opacity: 1; transform: translateY(0); }
  94% { opacity: 0; transform: translateY(-10px); }
}

.exec-act--1 .exec-status { animation: exec-status-1-final 11.52s linear infinite; }
.exec-act--2 .exec-status { animation: exec-status-2-final 11.52s linear infinite; }
.exec-act--3 .exec-status { animation: exec-status-3-final 11.52s linear infinite; }
.exec-act--4 .exec-status { animation: exec-status-4-final 11.52s linear infinite; }
.exec-act--5 .exec-status { animation: exec-status-5-final 11.52s linear infinite; }
.exec-act--1 .exec-status::after { animation: exec-check-1-final 11.52s linear infinite; }
.exec-act--2 .exec-status::after { animation: exec-check-2-final 11.52s linear infinite; }
.exec-act--3 .exec-status::after { animation: exec-check-3-final 11.52s linear infinite; }
.exec-act--4 .exec-status::after { animation: exec-check-4-final 11.52s linear infinite; }
.exec-act--5 .exec-status::after { animation: exec-check-5-final 11.52s linear infinite; }

@keyframes exec-status-1-final { 0%, 43%, 55%, 100% { border-color: rgba(17, 18, 20, 0.16); background: rgba(255, 255, 255, 0.52); } 45%, 50% { border-color: rgba(17, 18, 20, 0.34); background: rgba(17, 18, 20, 0.1); } 52%, 54% { border-color: transparent; background: rgba(17, 18, 20, 0.88); } }
@keyframes exec-status-2-final { 0%, 53%, 65%, 100% { border-color: rgba(17, 18, 20, 0.16); background: rgba(255, 255, 255, 0.52); } 55%, 60% { border-color: rgba(17, 18, 20, 0.34); background: rgba(17, 18, 20, 0.1); } 62%, 64% { border-color: transparent; background: rgba(17, 18, 20, 0.88); } }
@keyframes exec-status-3-final { 0%, 63%, 75%, 100% { border-color: rgba(17, 18, 20, 0.16); background: rgba(255, 255, 255, 0.52); } 65%, 70% { border-color: rgba(17, 18, 20, 0.34); background: rgba(17, 18, 20, 0.1); } 72%, 74% { border-color: transparent; background: rgba(17, 18, 20, 0.88); } }
@keyframes exec-status-4-final { 0%, 73%, 85%, 100% { border-color: rgba(17, 18, 20, 0.16); background: rgba(255, 255, 255, 0.52); } 75%, 80% { border-color: rgba(17, 18, 20, 0.34); background: rgba(17, 18, 20, 0.1); } 82%, 84% { border-color: transparent; background: rgba(17, 18, 20, 0.88); } }
@keyframes exec-status-5-final { 0%, 83%, 95%, 100% { border-color: rgba(17, 18, 20, 0.16); background: rgba(255, 255, 255, 0.52); } 85%, 90% { border-color: rgba(17, 18, 20, 0.34); background: rgba(17, 18, 20, 0.1); } 92%, 94% { border-color: transparent; background: rgba(17, 18, 20, 0.88); } }

@keyframes exec-check-1-final { 0%, 50%, 55%, 100% { opacity: 0; } 52%, 54% { opacity: 1; } }
@keyframes exec-check-2-final { 0%, 60%, 65%, 100% { opacity: 0; } 62%, 64% { opacity: 1; } }
@keyframes exec-check-3-final { 0%, 70%, 75%, 100% { opacity: 0; } 72%, 74% { opacity: 1; } }
@keyframes exec-check-4-final { 0%, 80%, 85%, 100% { opacity: 0; } 82%, 84% { opacity: 1; } }
@keyframes exec-check-5-final { 0%, 90%, 95%, 100% { opacity: 0; } 92%, 94% { opacity: 1; } }

@media (max-width: 700px) {
  .exec-prompt-alone,
  .exec-flow {
    width: 86%;
    padding: 18px;
  }

  .exec-flow {
    min-height: 158px;
  }

  .exec-flow .exec-act {
    min-height: 76px;
  }
}

/* Polished minimal pass: small AI prompt, then unboxed glass action sequence. */
.exec-prompt-alone {
  width: min(62%, 292px);
  gap: 9px;
  padding: 12px 14px;
  border-color: rgba(17, 18, 20, 0.055);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 16px 42px rgba(28, 35, 45, 0.075),
    0 3px 10px rgba(28, 35, 45, 0.035);
  backdrop-filter: blur(22px) saturate(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
}

.exec-prompt-alone__head {
  gap: 7px;
  font-size: 6.8px;
  color: rgba(17, 18, 20, 0.42);
}

.exec-prompt-alone .exec-brand {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 4px rgba(17, 18, 20, 0.05);
}

.exec-prompt-alone .exec-prompt-row {
  min-height: 24px;
}

.exec-prompt-alone .exec-prompt-text {
  font-size: clamp(7.2px, 0.76vw, 8.4px);
  font-weight: 580;
  line-height: 1.2;
}

.exec-prompt-alone .exec-caret {
  height: 12px;
}

.exec-prompt-alone .exec-send {
  padding: 4.5px 8px;
  border-radius: 5px;
  font-size: 6px;
  box-shadow: 0 5px 12px rgba(28, 35, 45, 0.12);
}

.exec-flow {
  width: min(64%, 315px);
  min-height: 156px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-heading.is-typing {
  display: block;
}

.hero-heading__word {
  display: inline-block;
  white-space: nowrap;
}

.hero-heading__space {
  opacity: 0;
  transition: opacity 0.18s ease;
}

.hero-heading__char {
  opacity: 0;
  transition:
    opacity 0.46s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.46s cubic-bezier(0.16, 1, 0.3, 1);
  color: rgba(17, 20, 26, 0.3);
  will-change: opacity;
}

.hero-heading__space.is-visible,
.hero-heading__char.is-visible {
  opacity: 1;
}

.hero-heading__char.is-visible {
  color: rgba(17, 20, 26, 0.9);
}

.exec-flow__head {
  justify-content: center;
  gap: 7px;
  padding: 0;
  border: 0;
  color: rgba(17, 18, 20, 0.38);
  font-size: 6.8px;
}

.exec-flow__head .exec-brand {
  width: 6px;
  height: 6px;
  background: rgba(17, 18, 20, 0.72);
  box-shadow: 0 0 0 4px rgba(17, 18, 20, 0.045);
}

.exec-flow__state {
  margin-left: 4px;
  font-size: 6.5px;
  color: rgba(45, 138, 85, 0.72);
}

.exec-flow__state::before {
  width: 4px;
  height: 4px;
  margin-right: 4px;
  box-shadow: 0 0 6px rgba(92, 177, 133, 0.42);
}

.exec-flow-list {
  min-height: 104px;
  margin-top: 12px;
}

.exec-flow-list::before,
.exec-flow-list::after {
  display: none;
}

.exec-flow .exec-act {
  inset: 0;
  min-height: 46px;
  padding: 0 13px;
  gap: 10px;
  border: 1px solid rgba(17, 18, 20, 0.055);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 14px 34px rgba(28, 35, 45, 0.07);
  backdrop-filter: blur(18px) saturate(1.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.04);
}

.exec-flow .exec-status {
  width: 12px;
  height: 12px;
  flex-basis: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.exec-flow .exec-status::before {
  inset: 3px;
}

.exec-flow .exec-status::after {
  width: 4.5px;
  height: 2px;
}

.exec-flow .exec-act-text {
  gap: 3px;
}

.exec-flow .exec-act-text strong {
  font-size: clamp(7.6px, 0.78vw, 8.6px);
  font-weight: 700;
}

.exec-flow .exec-act-text small {
  color: rgba(17, 18, 20, 0.43);
  font-size: clamp(6.1px, 0.62vw, 7px);
}

@keyframes exec-row-1-final {
  0%, 43%, 55%, 100% { opacity: 0; transform: translateY(18px) scale(0.985); filter: blur(4px); }
  45%, 51% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  54% { opacity: 0; transform: translateY(-18px) scale(0.985); filter: blur(4px); }
}

@keyframes exec-row-2-final {
  0%, 53%, 65%, 100% { opacity: 0; transform: translateY(18px) scale(0.985); filter: blur(4px); }
  55%, 61% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  64% { opacity: 0; transform: translateY(-18px) scale(0.985); filter: blur(4px); }
}

@keyframes exec-row-3-final {
  0%, 63%, 75%, 100% { opacity: 0; transform: translateY(18px) scale(0.985); filter: blur(4px); }
  65%, 71% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  74% { opacity: 0; transform: translateY(-18px) scale(0.985); filter: blur(4px); }
}

@keyframes exec-row-4-final {
  0%, 73%, 85%, 100% { opacity: 0; transform: translateY(18px) scale(0.985); filter: blur(4px); }
  75%, 81% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  84% { opacity: 0; transform: translateY(-18px) scale(0.985); filter: blur(4px); }
}

@keyframes exec-row-5-final {
  0%, 83%, 95%, 100% { opacity: 0; transform: translateY(18px) scale(0.985); filter: blur(4px); }
  85%, 91% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  94% { opacity: 0; transform: translateY(-18px) scale(0.985); filter: blur(4px); }
}

@media (max-width: 700px) {
  .exec-prompt-alone {
    width: 78%;
    padding: 11px 12px;
  }

  .exec-flow {
    width: 78%;
    min-height: 142px;
  }

  .exec-flow .exec-act {
    min-height: 42px;
    padding: 0 11px;
  }
}

/* Final proportion pass: ChatGPT-like input and compact stacked action list. */
.exec-prompt-alone {
  display: flex;
  width: min(54%, 250px);
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 6px 7px 6px 12px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 12px 32px rgba(28, 35, 45, 0.07);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.exec-prompt-alone__head,
.exec-flow__head {
  display: none !important;
}

.exec-prompt-alone .exec-prompt-row {
  flex: 1;
  min-width: 0;
  min-height: 20px;
}

.exec-prompt-alone .exec-prompt-text {
  color: rgba(17, 18, 20, 0.72);
  font-size: clamp(6.4px, 0.66vw, 7.4px);
  line-height: 1;
}

.exec-prompt-alone .exec-caret {
  height: 10px;
}

.exec-prompt-alone .exec-send {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: rgba(17, 18, 20, 0.9);
  color: #ffffff;
  font-size: 12px;
  font-weight: 720;
  line-height: 1;
  box-shadow: 0 5px 13px rgba(28, 35, 45, 0.12);
}

.exec-flow {
  width: min(58%, 270px);
  min-height: 0;
}

.exec-flow-list {
  display: grid;
  min-height: 152px;
  gap: 6px;
  margin-top: 0;
}

.exec-flow .exec-act {
  position: relative;
  inset: auto;
  min-height: 25px;
  padding: 0 9px;
  gap: 8px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 8px 20px rgba(28, 35, 45, 0.045);
  opacity: 0;
  transform: translateY(8px);
}

.exec-flow .exec-status {
  width: 9px;
  height: 9px;
  flex-basis: 9px;
}

.exec-flow .exec-status::before {
  inset: 2.5px;
}

.exec-flow .exec-status::after {
  width: 3.8px;
  height: 1.8px;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.exec-flow .exec-act-text {
  gap: 2px;
}

.exec-flow .exec-act-text strong {
  font-size: clamp(6.5px, 0.66vw, 7.4px);
  font-weight: 680;
}

.exec-flow .exec-act-text small {
  font-size: clamp(5.4px, 0.55vw, 6.2px);
}

@keyframes exec-row-1-final {
  0%, 34.8%, 100% { opacity: 0; transform: translateY(8px); filter: blur(3px); }
  36.4%, 92% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes exec-row-2-final {
  0%, 44%, 100% { opacity: 0; transform: translateY(8px); filter: blur(3px); }
  46%, 92% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes exec-row-3-final {
  0%, 52%, 100% { opacity: 0; transform: translateY(8px); filter: blur(3px); }
  54%, 92% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes exec-row-4-final {
  0%, 60%, 100% { opacity: 0; transform: translateY(8px); filter: blur(3px); }
  62%, 92% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes exec-row-5-final {
  0%, 68%, 100% { opacity: 0; transform: translateY(8px); filter: blur(3px); }
  70%, 92% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (max-width: 700px) {
  .exec-prompt-alone {
    width: 72%;
    min-height: 32px;
    padding: 6px 7px 6px 10px;
  }

  .exec-flow {
    width: 72%;
  }

  .exec-flow-list {
    min-height: 146px;
    gap: 5px;
  }

  .exec-flow .exec-act {
    min-height: 24px;
  }
}

@keyframes exec-status-1-final { 0%, 34.8%, 93%, 100% { border-color: rgba(17, 18, 20, 0.14); background: rgba(255, 255, 255, 0.58); } 36.4%, 39.4% { border-color: rgba(17, 18, 20, 0.3); background: rgba(17, 18, 20, 0.12); } 40.4%, 92% { border-color: transparent; background: rgba(17, 18, 20, 0.86); } }
@keyframes exec-status-2-final { 0%, 44%, 93%, 100% { border-color: rgba(17, 18, 20, 0.14); background: rgba(255, 255, 255, 0.58); } 46%, 49% { border-color: rgba(17, 18, 20, 0.3); background: rgba(17, 18, 20, 0.12); } 50%, 92% { border-color: transparent; background: rgba(17, 18, 20, 0.86); } }
@keyframes exec-status-3-final { 0%, 52%, 93%, 100% { border-color: rgba(17, 18, 20, 0.14); background: rgba(255, 255, 255, 0.58); } 54%, 57% { border-color: rgba(17, 18, 20, 0.3); background: rgba(17, 18, 20, 0.12); } 58%, 92% { border-color: transparent; background: rgba(17, 18, 20, 0.86); } }
@keyframes exec-status-4-final { 0%, 60%, 93%, 100% { border-color: rgba(17, 18, 20, 0.14); background: rgba(255, 255, 255, 0.58); } 62%, 65% { border-color: rgba(17, 18, 20, 0.3); background: rgba(17, 18, 20, 0.12); } 66%, 92% { border-color: transparent; background: rgba(17, 18, 20, 0.86); } }
@keyframes exec-status-5-final { 0%, 68%, 93%, 100% { border-color: rgba(17, 18, 20, 0.14); background: rgba(255, 255, 255, 0.58); } 70%, 73% { border-color: rgba(17, 18, 20, 0.3); background: rgba(17, 18, 20, 0.12); } 74%, 92% { border-color: transparent; background: rgba(17, 18, 20, 0.86); } }

@keyframes exec-check-1-final { 0%, 39.4%, 93%, 100% { opacity: 0; } 40.4%, 92% { opacity: 1; } }
@keyframes exec-check-2-final { 0%, 49%, 93%, 100% { opacity: 0; } 50%, 92% { opacity: 1; } }
@keyframes exec-check-3-final { 0%, 57%, 93%, 100% { opacity: 0; } 58%, 92% { opacity: 1; } }
@keyframes exec-check-4-final { 0%, 65%, 93%, 100% { opacity: 0; } 66%, 92% { opacity: 1; } }
@keyframes exec-check-5-final { 0%, 73%, 93%, 100% { opacity: 0; } 74%, 92% { opacity: 1; } }

/* Execute card refinement: cooler glass, visible handoff, clearer completion state. */
.story-media--guidance {
  background: #edf3f8;
}

.execute-anim {
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(249, 252, 255, 0.96) 0%, rgba(235, 242, 248, 0.92) 54%, rgba(226, 235, 243, 0.96) 100%),
    #edf3f8;
}

.execute-anim__bg {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 38%),
    linear-gradient(225deg, rgba(205, 219, 236, 0.76), rgba(205, 219, 236, 0) 52%),
    linear-gradient(15deg, rgba(214, 230, 225, 0.62), rgba(214, 230, 225, 0) 48%);
  filter: blur(22px);
  opacity: 0.9;
}

.execute-anim__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 18, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 20, 0.038) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 76%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 76%, transparent 100%);
  opacity: 0.34;
  animation: exec-mesh-drift 18s linear infinite;
}

@keyframes exec-mesh-drift {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-44px, -44px, 0); }
}

.exec-signal-line {
  display: none;
  position: absolute;
  left: 19%;
  right: 19%;
  top: 50%;
  z-index: 1;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(17, 18, 20, 0.16), transparent);
  opacity: 0;
  transform: translateY(-50%);
  animation: exec-signal-line 11.52s linear infinite;
}

.exec-signal-line span {
  position: absolute;
  top: -1px;
  left: 0;
  width: 34%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(92, 177, 133, 0.78), transparent);
  filter: blur(0.2px);
  transform: translateX(-110%);
  animation: exec-signal-run 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

@keyframes exec-signal-line {
  0%, 31%, 47%, 100% { opacity: 0; }
  35%, 43% { opacity: 1; }
}

@keyframes exec-signal-run {
  0%, 32% { transform: translateX(-110%); }
  43% { transform: translateX(320%); }
  44%, 100% { transform: translateX(320%); }
}

.exec-prompt-alone {
  display: flex;
  box-sizing: border-box;
  width: min(78%, 340px);
  min-height: 32px;
  align-items: center;
  gap: 7px;
  padding: 5px 7px 5px 10px;
  border: 1px solid rgba(17, 18, 20, 0.055);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 12px 32px rgba(28, 35, 45, 0.07);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.exec-prompt-alone__head,
.exec-flow__head {
  display: none !important;
  align-items: center;
  gap: 7px;
  color: rgba(17, 18, 20, 0.42);
  font-size: 6.7px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.exec-prompt-alone .exec-brand,
.exec-flow__head .exec-brand {
  width: 6px;
  height: 6px;
  background: rgba(17, 18, 20, 0.76);
  box-shadow: 0 0 0 4px rgba(17, 18, 20, 0.045);
}

.exec-prompt-alone .exec-prompt-row {
  flex: 1;
  min-width: 0;
  min-height: 20px;
}

.exec-prompt-alone .exec-prompt-text {
  color: rgba(17, 18, 20, 0.74);
  font-size: clamp(5.9px, 0.58vw, 6.7px);
  line-height: 1;
}

.exec-prompt-alone .exec-send {
  position: relative;
  right: auto;
  bottom: auto;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.exec-flow {
  width: min(70%, 344px);
  min-height: 210px;
  padding: 13px 14px 12px;
  border: 1px solid rgba(17, 18, 20, 0.055);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86) inset,
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 24px 58px rgba(28, 35, 45, 0.085);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
}

.exec-flow__head {
  justify-content: flex-start;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(17, 18, 20, 0.065);
}

.exec-flow__state {
  margin-left: auto;
  color: rgba(45, 138, 85, 0.78);
  font-size: 6.3px;
}

.exec-flow__state::before {
  width: 4px;
  height: 4px;
  margin-right: 4px;
}

.exec-flow-list {
  min-height: 152px;
  margin-top: 9px;
  gap: 6px;
}

.exec-flow .exec-act {
  min-height: 25px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 9px 22px rgba(28, 35, 45, 0.045);
}

@media (max-width: 700px) {
  .exec-prompt-alone,
  .exec-flow {
    width: 86%;
  }

  .exec-flow {
    min-height: 206px;
    padding: 12px;
  }
}

/* Capture card refinement: minimal glass workflow, no footer-button motion. */
.story-media--capture {
  background: #eef3f8;
}

.story-media--capture .capture-svg {
  background: #eef3f8;
}

.story-media--capture .capture-svg rect[fill="url(#capBgGrad)"] {
  fill: #eef3f8;
}

.story-media--capture .capture-svg g[filter="url(#capBlobBlur)"] {
  opacity: 0.72;
}

.story-media--capture .capture-svg g[filter="url(#capBlobBlur)"] circle:nth-child(1) {
  fill: #e9f1fb;
}

.story-media--capture .capture-svg g[filter="url(#capBlobBlur)"] circle:nth-child(2) {
  fill: #dfe9f5;
}

.story-media--capture .capture-svg g[filter="url(#capBlobBlur)"] circle:nth-child(3) {
  fill: #f6e7dc;
}

.story-media--capture .capture-svg rect[x="24"][y="24"] {
  fill: rgba(255, 255, 255, 0.54);
  stroke: rgba(17, 18, 20, 0.055);
  filter: url(#capCardShadow);
}

.story-media--capture .capture-svg rect[x="260"][y="24"] {
  fill: rgba(255, 255, 255, 0.28);
  stroke: rgba(17, 18, 20, 0.085);
  stroke-dasharray: 0;
}

.story-media--capture .capture-svg .cap-input {
  fill: rgba(255, 255, 255, 0.34);
  stroke: rgba(17, 18, 20, 0.055);
}

.story-media--capture .capture-svg .cap-fill,
.story-media--capture .capture-svg .cap-line {
  fill: rgba(17, 18, 20, 0.55);
}

.story-media--capture .capture-svg rect[fill="#11121430"],
.story-media--capture .capture-svg rect[fill="#11121438"] {
  fill: rgba(17, 18, 20, 0.16);
}

.story-media--capture .capture-svg .cap-drop > rect:first-child {
  fill: rgba(255, 255, 255, 0.62);
  stroke: rgba(17, 18, 20, 0.07);
}

.story-media--capture .capture-svg .cap-pick {
  fill: rgba(17, 18, 20, 0.12);
}

.story-media--capture .capture-svg .cap-attach,
.story-media--capture .capture-svg .cap-submit {
  animation: none !important;
  transform: none !important;
  fill: rgba(255, 255, 255, 0.34);
  stroke: rgba(17, 18, 20, 0.055);
}

.story-media--capture .capture-svg .cap-submit + rect,
.story-media--capture .capture-svg .cap-submit + rect + rect {
  fill: rgba(17, 18, 20, 0.2);
}

.story-media--capture .capture-svg .cap-step rect {
  fill: rgba(255, 255, 255, 0.48);
  stroke: rgba(17, 18, 20, 0.055);
}

.story-media--capture .capture-svg .cap-step circle {
  fill: rgba(17, 18, 20, 0.82);
}

.story-media--capture .capture-svg .cap-step text {
  fill: rgba(17, 18, 20, 0.66);
  font-size: 7.4px;
}

.story-media--capture .capture-svg .cap-rec {
  fill: #5cb185;
  animation: cap-rec-refined 2.8s ease-in-out infinite;
}

@keyframes cap-rec-refined {
  0%, 100% { opacity: 0.44; }
  50% { opacity: 0.82; }
}

@keyframes cap-attach-press {
  0%, 100% { fill: rgba(255, 255, 255, 0.34); stroke: rgba(17, 18, 20, 0.055); transform: scale(1); }
}

@keyframes cap-submit-press {
  0%, 100% { fill: rgba(255, 255, 255, 0.34); transform: scale(1); }
}

@keyframes cap-cursor-path {
  0% { transform: translate(380px, 360px) scale(0.86); opacity: 0; }
  4% { transform: translate(380px, 360px) scale(1); opacity: 1; }

  10% { transform: translate(136px, 76px) scale(1); opacity: 1; }
  12% { transform: translate(136px, 76px) scale(0.86); opacity: 1; }
  14% { transform: translate(136px, 76px) scale(1); opacity: 1; }

  21% { transform: translate(84px, 116px) scale(1); opacity: 1; }
  24% { transform: translate(84px, 116px) scale(0.86); opacity: 1; }
  26% { transform: translate(84px, 116px) scale(1); opacity: 1; }

  29% { transform: translate(84px, 153px) scale(1); opacity: 1; }
  30% { transform: translate(84px, 153px) scale(0.86); opacity: 1; }
  32% { transform: translate(84px, 153px) scale(1); opacity: 1; }

  38% { transform: translate(188px, 116px) scale(1); opacity: 1; }
  41% { transform: translate(188px, 116px) scale(0.86); opacity: 1; }
  43% { transform: translate(188px, 116px) scale(1); opacity: 1; }

  46% { transform: translate(188px, 165px) scale(1); opacity: 1; }
  47% { transform: translate(188px, 165px) scale(0.86); opacity: 1; }
  49% { transform: translate(188px, 165px) scale(1); opacity: 1; }

  54% { transform: translate(136px, 178px) scale(1); opacity: 1; }
  57% { transform: translate(136px, 178px) scale(0.86); opacity: 1; }
  60% { transform: translate(136px, 178px) scale(1); opacity: 1; }
  72% { transform: translate(136px, 178px) scale(1); opacity: 1; }

  76% { transform: translate(51px, 233px) scale(1); opacity: 0.92; }
  78% { transform: translate(51px, 233px) scale(0.86); opacity: 0.92; }
  81% { transform: translate(51px, 233px) scale(1); opacity: 0.86; }

  86% { transform: translate(152px, 233px) scale(1); opacity: 0.82; }
  88% { transform: translate(152px, 233px) scale(0.86); opacity: 0.82; }
  91% { transform: translate(152px, 233px) scale(1); opacity: 0.72; }
  94% { transform: translate(152px, 233px) scale(0.94); opacity: 0; }
  100% { transform: translate(380px, 360px) scale(0.86); opacity: 0; }
}

/* Memory card: tool context becomes a living operational brain. */
.story-media--memory {
  background: #eef3f8;
}

.story-media--memory::before,
.story-media--memory::after {
  display: none !important;
}

.memory-anim {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-family: var(--font-brand);
  background:
    linear-gradient(135deg, rgba(247, 250, 255, 0.92), rgba(237, 244, 250, 0.88)),
    #eef3f8;
}

.memory-anim__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(42% 52% at 18% 18%, rgba(188, 214, 246, 0.5), transparent 72%),
    radial-gradient(48% 58% at 86% 78%, rgba(220, 231, 246, 0.68), transparent 74%),
    radial-gradient(34% 42% at 72% 20%, rgba(248, 232, 222, 0.38), transparent 72%);
  filter: blur(34px);
  opacity: 0.94;
  transform: scale(1.08);
}

.memory-source,
.memory-core,
.memory-update {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid rgba(17, 18, 20, 0.055);
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.76) inset,
    0 12px 32px rgba(28, 35, 45, 0.065);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.memory-source {
  top: 29%;
  min-width: 92px;
  height: 25px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(17, 18, 20, 0.58);
  font-size: clamp(6.5px, 0.68vw, 7.6px);
  font-weight: 680;
  line-height: 1;
  opacity: 0;
}

.memory-source--crm {
  left: 18%;
  animation: memory-source-crm 15s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-source--slack {
  left: 50%;
  animation: memory-source-slack 15s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-source--sop {
  right: 18%;
  animation: memory-source-sop 15s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-core {
  top: 50%;
  left: 50%;
  min-width: 190px;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  color: rgba(17, 18, 20, 0.74);
  font-size: clamp(8px, 0.86vw, 9.5px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  animation: memory-core 15s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-core::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(17, 18, 20, 0.82);
  box-shadow: 0 0 0 5px rgba(17, 18, 20, 0.045);
}

.memory-update {
  top: 64%;
  left: 50%;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(17, 18, 20, 0.62);
  font-size: clamp(6.8px, 0.7vw, 7.8px);
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, 8px) scale(0.98);
  animation: memory-update 15s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-update span {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: #5cb185;
  box-shadow: 0 0 7px rgba(92, 177, 133, 0.45);
}

@keyframes memory-source-crm {
  0%, 8%, 58%, 100% { opacity: 0; transform: translate(-8px, 14px) scale(0.97); filter: blur(4px); }
  12%, 28% { opacity: 1; transform: translate(0, 0) scale(1); filter: blur(0); }
  40%, 48% { opacity: 0.28; transform: translate(86px, 63px) scale(0.82); filter: blur(3px); }
}

@keyframes memory-source-slack {
  0%, 12%, 58%, 100% { opacity: 0; transform: translate(-50%, 14px) scale(0.97); filter: blur(4px); }
  16%, 30% { opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
  40%, 48% { opacity: 0.28; transform: translate(-50%, 63px) scale(0.82); filter: blur(3px); }
}

@keyframes memory-source-sop {
  0%, 16%, 58%, 100% { opacity: 0; transform: translate(8px, 14px) scale(0.97); filter: blur(4px); }
  20%, 32% { opacity: 1; transform: translate(0, 0) scale(1); filter: blur(0); }
  40%, 48% { opacity: 0.28; transform: translate(-86px, 63px) scale(0.82); filter: blur(3px); }
}

@keyframes memory-core {
  0%, 36%, 96%, 100% { opacity: 0; transform: translate(-50%, -46%) scale(0.96); filter: blur(5px); }
  44%, 78% { opacity: 1; transform: translate(-50%, -50%) scale(1); filter: blur(0); }
  84%, 92% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.99); filter: blur(0); }
}

@keyframes memory-update {
  0%, 58%, 96%, 100% { opacity: 0; transform: translate(-50%, 8px) scale(0.98); filter: blur(4px); }
  66%, 92% { opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
}

@media (max-width: 700px) {
  .memory-source {
    min-width: 76px;
    height: 23px;
    padding: 0 8px;
    font-size: 6px;
  }

  .memory-source--crm { left: 10%; }
  .memory-source--sop { right: 10%; }

  .memory-core {
    min-width: 170px;
    height: 36px;
    padding: 0 14px;
  }
}

/* Memory animation enrichment: more signals, logo to knowledge pulse. */
.memory-source {
  min-width: auto;
  height: 23px;
  padding: 0 9px;
  font-size: clamp(6.1px, 0.64vw, 7.2px);
  transform: translate(-50%, 0) scale(1);
  transform-origin: 50% 50%;
}

.memory-source--crm {
  top: 23%;
  left: 15%;
  right: auto;
  animation: memory-source-left-a 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-source--slack {
  top: 21%;
  left: 50%;
  right: auto;
  animation: memory-source-center-a 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-source--sop {
  top: 23%;
  right: auto;
  left: 85%;
  animation: memory-source-right-a 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-source--docs {
  top: 35%;
  left: 19%;
  right: auto;
  animation: memory-source-left-b 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-source--support {
  top: 35%;
  left: 50%;
  right: auto;
  animation: memory-source-center-b 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-source--finance {
  top: 35%;
  right: auto;
  left: 81%;
  animation: memory-source-right-b 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-core {
  width: clamp(26px, 3.2vw, 34px);
  min-width: 0;
  height: clamp(26px, 3.2vw, 34px);
  padding: 0;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: memory-core-final 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-core img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(28, 35, 45, 0.16));
}

.memory-core::before {
  display: none;
}

.memory-link {
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  z-index: 1;
  width: 5px;
  height: 34px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-50%);
  animation: memory-link-final 11.52s linear infinite;
}

.memory-link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(122, 164, 255, 0.34), transparent);
  transform: translateX(-50%) scaleY(0);
  transform-origin: 50% 0;
  animation: memory-link-line-final 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-link::after {
  display: none;
}

.memory-link span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(122, 164, 255, 0.82) 30%, rgba(122, 164, 255, 0.82) 70%, transparent);
  box-shadow: none;
  transform: translate(-50%, -120%);
  animation: memory-pulse-final 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.memory-update {
  top: 68%;
  height: 22px;
  padding: 0 9px;
  border-color: rgba(17, 18, 20, 0.045);
  background: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.66) inset,
    0 10px 24px rgba(28, 35, 45, 0.045);
  color: rgba(17, 18, 20, 0.56);
  font-size: clamp(5.8px, 0.58vw, 6.8px);
  font-weight: 680;
  animation: memory-update-final 11.52s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

@keyframes memory-source-left-a {
  0%, 6%, 51%, 100% { top: 23%; left: 15%; opacity: 0; transform: translate(-50%, 10px) scale(0.96); filter: blur(4px); }
  10%, 31% { top: 23%; left: 15%; opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
  40% { top: 42%; left: 38%; opacity: 0.78; transform: translate(-50%, -50%) scale(0.78); filter: blur(1px); }
  47% { top: 50%; left: 50%; opacity: 0.24; transform: translate(-50%, -50%) scale(0.26); filter: blur(5px); }
  50% { top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%) scale(0.16); filter: blur(7px); }
}

@keyframes memory-source-center-a {
  0%, 9%, 51%, 100% { top: 21%; left: 50%; opacity: 0; transform: translate(-50%, 10px) scale(0.96); filter: blur(4px); }
  13%, 32% { top: 21%; left: 50%; opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
  40% { top: 42%; left: 50%; opacity: 0.78; transform: translate(-50%, -50%) scale(0.78); filter: blur(1px); }
  47% { top: 50%; left: 50%; opacity: 0.24; transform: translate(-50%, -50%) scale(0.26); filter: blur(5px); }
  50% { top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%) scale(0.16); filter: blur(7px); }
}

@keyframes memory-source-right-a {
  0%, 12%, 51%, 100% { top: 23%; left: 85%; opacity: 0; transform: translate(-50%, 10px) scale(0.96); filter: blur(4px); }
  16%, 33% { top: 23%; left: 85%; opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
  40% { top: 42%; left: 62%; opacity: 0.78; transform: translate(-50%, -50%) scale(0.78); filter: blur(1px); }
  47% { top: 50%; left: 50%; opacity: 0.24; transform: translate(-50%, -50%) scale(0.26); filter: blur(5px); }
  50% { top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%) scale(0.16); filter: blur(7px); }
}

@keyframes memory-source-left-b {
  0%, 15%, 51%, 100% { top: 35%; left: 19%; opacity: 0; transform: translate(-50%, 9px) scale(0.96); filter: blur(4px); }
  19%, 34% { top: 35%; left: 19%; opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
  40% { top: 46%; left: 39%; opacity: 0.72; transform: translate(-50%, -50%) scale(0.78); filter: blur(1px); }
  47% { top: 50%; left: 50%; opacity: 0.22; transform: translate(-50%, -50%) scale(0.26); filter: blur(5px); }
  50% { top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%) scale(0.16); filter: blur(7px); }
}

@keyframes memory-source-center-b {
  0%, 18%, 51%, 100% { top: 35%; left: 50%; opacity: 0; transform: translate(-50%, 9px) scale(0.96); filter: blur(4px); }
  22%, 36% { top: 35%; left: 50%; opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
  40% { top: 46%; left: 50%; opacity: 0.72; transform: translate(-50%, -50%) scale(0.78); filter: blur(1px); }
  47% { top: 50%; left: 50%; opacity: 0.22; transform: translate(-50%, -50%) scale(0.26); filter: blur(5px); }
  50% { top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%) scale(0.16); filter: blur(7px); }
}

@keyframes memory-source-right-b {
  0%, 21%, 51%, 100% { top: 35%; left: 81%; opacity: 0; transform: translate(-50%, 9px) scale(0.96); filter: blur(4px); }
  25%, 38% { top: 35%; left: 81%; opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
  40% { top: 46%; left: 61%; opacity: 0.72; transform: translate(-50%, -50%) scale(0.78); filter: blur(1px); }
  47% { top: 50%; left: 50%; opacity: 0.22; transform: translate(-50%, -50%) scale(0.26); filter: blur(5px); }
  50% { top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%) scale(0.16); filter: blur(7px); }
}

@keyframes memory-core-final {
  0%, 49%, 96%, 100% { opacity: 0; transform: translate(-50%, -47%) scale(0.9); filter: blur(5px); }
  53%, 82% { opacity: 1; transform: translate(-50%, -50%) scale(1); filter: blur(0); }
  64%, 68% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); filter: blur(0); }
  88%, 92% { opacity: 0.58; transform: translate(-50%, -50%) scale(0.99); filter: blur(0); }
}

@keyframes memory-link-final {
  0%, 58%, 90%, 100% { opacity: 0; }
  61%, 82% { opacity: 1; }
}

@keyframes memory-link-line-final {
  0%, 58.5%, 76%, 100% { transform: translateX(-50%) scaleY(0); opacity: 0; }
  60%, 72% { transform: translateX(-50%) scaleY(1); opacity: 0.78; }
}

@keyframes memory-pulse-final {
  0%, 59% { opacity: 0; transform: translate(-50%, -120%) scaleY(0.82); }
  60.5% { opacity: 1; transform: translate(-50%, -70%) scaleY(1); }
  65.5% { opacity: 1; transform: translate(-50%, 190%) scaleY(1); }
  68.5%, 100% { opacity: 0; transform: translate(-50%, 250%) scaleY(0.82); }
}

@keyframes memory-update-final {
  0%, 64%, 96%, 100% { opacity: 0; transform: translate(-50%, 7px) scale(0.97); filter: blur(4px); }
  68%, 92% { opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
}

@media (max-width: 700px) {
  .memory-source {
    height: 21px;
    padding: 0 7px;
    font-size: 5.5px;
  }

  .memory-source--crm,
  .memory-source--docs {
    left: 12%;
  }

  .memory-source--sop,
  .memory-source--finance {
    right: auto;
    left: 88%;
  }

  .memory-core {
    width: 28px;
    min-width: 0;
    height: 28px;
  }
}

/* Story animations are intentionally idle until hover/focus, then restart from frame zero. */
.story-media--capture:not(.is-animating) *,
.story-media--capture:not(.is-animating) *::before,
.story-media--capture:not(.is-animating) *::after,
.story-media--guidance:not(.is-animating) *,
.story-media--guidance:not(.is-animating) *::before,
.story-media--guidance:not(.is-animating) *::after,
.story-media--memory:not(.is-animating) *,
.story-media--memory:not(.is-animating) *::before,
.story-media--memory:not(.is-animating) *::after {
  animation: none !important;
}

.story-media--capture:not(.is-animating) .cap-stage {
  opacity: 1;
}

.story-media--capture:not(.is-animating) .cap-rec {
  opacity: 0.48;
}

.story-media--capture:not(.is-animating) .cap-cursor {
  opacity: 0 !important;
  transform: translate(380px, 360px) scale(0.86) !important;
}

.story-media--guidance:not(.is-animating) .exec-prompt-alone {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: none;
}

.story-media--guidance:not(.is-animating) .exec-prompt-text {
  width: 0;
}

.story-media--guidance:not(.is-animating) .exec-caret {
  opacity: 0;
}

.story-media--guidance:not(.is-animating) .exec-send {
  opacity: 1;
  transform: none;
}

.story-media--guidance:not(.is-animating) .exec-flow {
  opacity: 0;
  transform: translate(-50%, -42%) scale(0.985);
  filter: blur(6px);
}

.story-media--memory:not(.is-animating) .memory-source {
  opacity: 1;
  filter: none;
}

.story-media--memory:not(.is-animating) .memory-source--crm,
.story-media--memory:not(.is-animating) .memory-source--sop,
.story-media--memory:not(.is-animating) .memory-source--docs,
.story-media--memory:not(.is-animating) .memory-source--finance,
.story-media--memory:not(.is-animating) .memory-source--slack,
.story-media--memory:not(.is-animating) .memory-source--support {
  transform: translate(-50%, 0) scale(1);
}

.story-media--memory:not(.is-animating) .memory-core,
.story-media--memory:not(.is-animating) .memory-link,
.story-media--memory:not(.is-animating) .memory-update {
  opacity: 0;
  filter: blur(4px);
}

.story-media--memory:not(.is-animating) .memory-core {
  transform: translate(-50%, -46%) scale(0.96);
}

.story-media--memory:not(.is-animating) .memory-update {
  transform: translate(-50%, 9px) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .story-media--capture .cap-cursor {
    opacity: 0 !important;
  }

  .story-media--guidance .exec-prompt-alone,
  .story-media--memory .memory-source {
    opacity: 1;
  }
}


/* ──────────────────────────────────────────────────────────
   Operational impact — Tab 1 · Execution standard
   Glassy SaaS ticket with Aevra annotations · 14s loop
   ────────────────────────────────────────────────────────── */
.standard-anim {
  position: absolute;
  inset: 0;
  font-family: var(--font-brand);
  background: linear-gradient(180deg, #f5f7fb 0%, #eaeef5 100%);
  overflow: hidden;
}

.standard-anim__bg {
  position: absolute;
  inset: -8%;
  pointer-events: none;
  background:
    radial-gradient(38% 46% at 18% 22%, rgba(196, 214, 240, 0.7), transparent 72%),
    radial-gradient(46% 54% at 84% 78%, rgba(220, 214, 240, 0.6), transparent 74%),
    radial-gradient(34% 42% at 78% 18%, rgba(214, 232, 230, 0.55), transparent 72%),
    radial-gradient(40% 48% at 12% 82%, rgba(232, 220, 230, 0.5), transparent 72%);
  filter: blur(64px);
  opacity: 0.95;
  animation: std-bg-drift 24s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes std-bg-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.04); }
  50%      { transform: translate3d(-1.2%, 1%, 0) scale(1.07); }
}

.standard-anim__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}

.std-ticket {
  position: relative;
  width: 78%;
  height: 86%;
  display: flex;
  flex-direction: column;
  padding: 3.4% 4%;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  backdrop-filter: blur(28px) saturate(1.12);
  -webkit-backdrop-filter: blur(28px) saturate(1.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 0 0 1px rgba(255, 255, 255, 0.42) inset,
    0 24px 60px rgba(40, 50, 70, 0.075),
    0 4px 14px rgba(40, 50, 70, 0.04);
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  filter: blur(6px);
  animation: std-ticket-in 14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

@keyframes std-ticket-in {
  0%       { opacity: 0; transform: translateY(8px) scale(0.985); filter: blur(6px); }
  4%       { opacity: 1; transform: translateY(0)  scale(1);     filter: blur(0); }
  93%      { opacity: 1; transform: translateY(0)  scale(1);     filter: blur(0); }
  98%, 100%{ opacity: 0; transform: translateY(0)  scale(0.99);  filter: blur(2px); }
}

/* Header */
.std-ticket__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(17, 18, 20, 0.05);
  flex-shrink: 0;
}

.std-ticket__heading {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.std-ticket__title {
  font-size: clamp(9.5px, 1.05vw, 11.5px);
  font-weight: 700;
  letter-spacing: -0.012em;
  color: rgba(17, 18, 20, 0.92);
  line-height: 1;
}

.std-ticket__meta {
  font-size: clamp(6.5px, 0.7vw, 7.6px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(17, 18, 20, 0.42);
  line-height: 1;
}

.std-ticket__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px 3px 7px;
  border-radius: 999px;
  background: rgba(92, 177, 133, 0.13);
  color: #2d8a55;
  font-size: clamp(5.8px, 0.62vw, 6.6px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.std-ticket__status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5cb185;
  box-shadow: 0 0 6px rgba(92, 177, 133, 0.55);
}

/* Body */
.std-ticket__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 0;
}

.std-field {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 7px 10px 8px;
  background: rgba(247, 244, 236, 0.55);
  border: 1px solid rgba(17, 18, 20, 0.05);
  border-radius: 6px;
  overflow: visible;
}

.std-field__bracket {
  position: absolute;
  left: -1px;
  top: 18%;
  bottom: 18%;
  width: 2.5px;
  border-radius: 999px;
  background: rgba(108, 152, 200, 0);
  transform-origin: 50% 50%;
  transform: scaleY(0.5);
  transition: none;
}

.std-field__label {
  grid-column: 1;
  grid-row: 1;
  font-size: clamp(5.8px, 0.62vw, 6.6px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 18, 20, 0.42);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3px;
}

.std-field__value {
  grid-column: 1;
  grid-row: 2;
  font-size: clamp(8px, 0.85vw, 9px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(17, 18, 20, 0.86);
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  height: 1em;
  line-height: 1;
  display: inline-block;
}

/* Chip — annotation */
.std-chip {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px 4px 6px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 999px;
  font-size: clamp(5.8px, 0.62vw, 6.6px);
  font-weight: 600;
  letter-spacing: 0.005em;
  color: rgba(17, 18, 20, 0.7);
  white-space: nowrap;
  line-height: 1;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 14px rgba(40, 50, 70, 0.07),
    0 2px 4px rgba(40, 50, 70, 0.04);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  opacity: 0;
  transform: translateX(8px) scale(0.96);
  filter: blur(2px);
  pointer-events: none;
}

.std-chip__dot {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #3a3f47 0%, #14171c 70%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.65),
    0 0 0 3px rgba(17, 18, 20, 0.04);
  flex-shrink: 0;
}

.std-chip__check,
.std-chip__warn {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
}

.std-chip__check {
  background: rgba(92, 177, 133, 0.18);
  box-shadow: 0 0 0 1.5px rgba(92, 177, 133, 0.32);
}

.std-chip__warn {
  background: rgba(217, 153, 89, 0.18);
  box-shadow: 0 0 0 1.5px rgba(217, 153, 89, 0.32);
}

.std-chip__check svg,
.std-chip__warn svg {
  width: 8px;
  height: 8px;
  display: block;
}

.std-chip__text {
  position: relative;
  display: inline-block;
}

/* chip-3 uses a grid stack for its two text variants so width
   is determined by the longer (warn) text and they overlap cleanly */
.std-chip--3 {
  display: inline-grid;
  grid-template-columns: 9px 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 6px;
  padding: 4px 11px 4px 6px;
}

.std-chip--3 .std-chip__dot {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
}

.std-chip--3 .std-chip__warn {
  position: relative;
  left: auto;
  top: auto;
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  transform: scale(0.7);
}

.std-chip--3 .std-chip__text--initial,
.std-chip--3 .std-chip__text--warn {
  grid-column: 2;
  grid-row: 1;
}

/* Footer — banner + button */
.std-ticket__foot {
  position: relative;
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-shrink: 0;
}

.std-banner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 4px 10px 4px 8px;
  background: rgba(92, 177, 133, 0.10);
  border: 1px solid rgba(92, 177, 133, 0.22);
  border-radius: 999px;
  color: #2d8a55;
  font-size: clamp(5.8px, 0.62vw, 6.6px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  filter: blur(3px);
  animation: std-banner-in 14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

.std-banner__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5cb185;
  box-shadow: 0 0 6px rgba(92, 177, 133, 0.5);
  flex-shrink: 0;
}

@keyframes std-banner-in {
  0%, 75%   { opacity: 0; transform: translateY(6px) scale(0.98); filter: blur(3px); }
  79%, 92%  { opacity: 1; transform: translateY(0)   scale(1);    filter: blur(0); }
  96%, 100% { opacity: 0; transform: translateY(0)   scale(1);    filter: blur(2px); }
}

.std-button {
  position: relative;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  min-width: 110px;
  padding: 0 14px;
  border-radius: 6px;
  background: rgba(17, 18, 20, 0.86);
  color: #ffffff;
  font-size: clamp(7px, 0.74vw, 8px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 6px 14px rgba(17, 18, 20, 0.16);
  animation: std-button-flux 14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

@keyframes std-button-flux {
  0%, 50%  { background: rgba(17, 18, 20, 0.86); transform: scale(1); }
  52%      { background: rgba(17, 18, 20, 0.40); transform: scale(1); }
  76%      { background: rgba(17, 18, 20, 0.40); transform: scale(1); }
  82%      { background: rgba(17, 18, 20, 0.86); transform: scale(1); }
  84%      { background: rgba(17, 18, 20, 0.96); transform: scale(1.025); }
  87%      { background: rgba(17, 18, 20, 0.86); transform: scale(1); }
  93%, 100%{ background: rgba(17, 18, 20, 0.86); transform: scale(1); }
}

.std-button__text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.std-button__text--initial {
  animation: std-button-text-initial 14s linear infinite;
}

.std-button__text--final {
  opacity: 0;
  animation: std-button-text-final 14s linear infinite;
}

@keyframes std-button-text-initial {
  0%, 78%  { opacity: 1; }
  80%      { opacity: 0; }
  100%     { opacity: 0; }
}

@keyframes std-button-text-final {
  0%, 80%  { opacity: 0; }
  82%, 95% { opacity: 1; }
  98%, 100%{ opacity: 0; }
}

/* ── Field 1 — Customer ── */
.std-field--1 .std-field__bracket { animation: std-bracket-1     14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.std-field--1 .std-field__value   { animation: std-type-1        14s steps(22, end) infinite; }
.std-chip--1                       { animation: std-chip-1        14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.std-chip--1 .std-chip__dot        { animation: std-chip-dot-pos  14s linear infinite; }
.std-chip--1 .std-chip__check      { animation: std-chip-check-1  14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }

@keyframes std-bracket-1 {
  0%, 6%    { background: rgba(108, 152, 200, 0);    transform: scaleY(0.5); }
  9%        { background: rgba(108, 152, 200, 0.85); transform: scaleY(1); }
  19%       { background: rgba(108, 152, 200, 0.85); transform: scaleY(1); }
  21%       { background: rgba(92, 177, 133, 0.85);  transform: scaleY(1); }
  93%       { background: rgba(92, 177, 133, 0.55);  transform: scaleY(1); }
  98%, 100% { background: rgba(92, 177, 133, 0);     transform: scaleY(0.5); }
}

@keyframes std-type-1 {
  0%, 12%   { width: 0; }
  19%, 95%  { width: 100%; }
  97%, 100% { width: 0; }
}

@keyframes std-chip-1 {
  0%, 8%    { opacity: 0; transform: translateX(8px) scale(0.96); filter: blur(2px); }
  11%, 21%  { opacity: 1; transform: translateX(0)   scale(1);    filter: blur(0); }
  24%, 100% { opacity: 0; transform: translateX(-4px) scale(0.97); filter: blur(2px); }
}

@keyframes std-chip-check-1 {
  0%, 18%   { opacity: 0; transform: translateY(-50%) scale(0.7); }
  20%, 23%  { opacity: 1; transform: translateY(-50%) scale(1); }
  26%, 100% { opacity: 0; transform: translateY(-50%) scale(0.7); }
}

@keyframes std-chip-dot-pos {
  0%, 18%   { opacity: 1; transform: scale(1); }
  20%, 23%  { opacity: 0; transform: scale(0.6); }
  26%, 100% { opacity: 0; transform: scale(1); }
}

/* ── Field 2 — Invoice ── */
.std-field--2 .std-field__bracket { animation: std-bracket-2     14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.std-field--2 .std-field__value   { animation: std-type-2        14s steps(8, end)  infinite; }
.std-chip--2                       { animation: std-chip-2        14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.std-chip--2 .std-chip__dot        { animation: std-chip-dot-2    14s linear infinite; }
.std-chip--2 .std-chip__check      { animation: std-chip-check-2  14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }

@keyframes std-bracket-2 {
  0%, 23%   { background: rgba(108, 152, 200, 0);    transform: scaleY(0.5); }
  26%       { background: rgba(108, 152, 200, 0.85); transform: scaleY(1); }
  34%       { background: rgba(108, 152, 200, 0.85); transform: scaleY(1); }
  36%       { background: rgba(92, 177, 133, 0.85);  transform: scaleY(1); }
  93%       { background: rgba(92, 177, 133, 0.55);  transform: scaleY(1); }
  98%, 100% { background: rgba(92, 177, 133, 0);     transform: scaleY(0.5); }
}

@keyframes std-type-2 {
  0%, 29%   { width: 0; }
  34%, 95%  { width: 100%; }
  97%, 100% { width: 0; }
}

@keyframes std-chip-2 {
  0%, 25%   { opacity: 0; transform: translateX(8px) scale(0.96); filter: blur(2px); }
  28%, 36%  { opacity: 1; transform: translateX(0)   scale(1);    filter: blur(0); }
  39%, 100% { opacity: 0; transform: translateX(-4px) scale(0.97); filter: blur(2px); }
}

@keyframes std-chip-check-2 {
  0%, 33%   { opacity: 0; transform: translateY(-50%) scale(0.7); }
  35%, 38%  { opacity: 1; transform: translateY(-50%) scale(1); }
  41%, 100% { opacity: 0; transform: translateY(-50%) scale(0.7); }
}

@keyframes std-chip-dot-2 {
  0%, 33%   { opacity: 1; transform: scale(1); }
  35%, 38%  { opacity: 0; transform: scale(0.6); }
  41%, 100% { opacity: 0; transform: scale(1); }
}

/* ── Field 3 — Amount (STOP) ── */
.std-field--3                       { animation: std-field-stop   14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.std-field--3 .std-field__bracket  { animation: std-bracket-3     14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.std-field--3 .std-field__value    { animation: std-type-3        14s steps(9, end)  infinite; }
.std-chip--3                        { animation: std-chip-3        14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.std-chip--3 .std-chip__dot         { animation: std-chip-dot-3    14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.std-chip--3 .std-chip__warn        { animation: std-chip-warn-3   14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.std-chip--3 .std-chip__text--initial { animation: std-chip-text-3-initial 14s linear infinite; }
.std-chip--3 .std-chip__text--warn    { animation: std-chip-text-3-warn    14s linear infinite; }

@keyframes std-field-stop {
  0%, 50%   { background: rgba(247, 244, 236, 0.55); border-color: rgba(17, 18, 20, 0.05); }
  54%       { background: rgba(255, 235, 210, 0.65); border-color: rgba(217, 153, 89, 0.32); }
  93%       { background: rgba(255, 235, 210, 0.5);  border-color: rgba(217, 153, 89, 0.24); }
  98%, 100% { background: rgba(247, 244, 236, 0.55); border-color: rgba(17, 18, 20, 0.05); }
}

@keyframes std-bracket-3 {
  0%, 39%   { background: rgba(108, 152, 200, 0);    transform: scaleY(0.5); }
  42%       { background: rgba(108, 152, 200, 0.85); transform: scaleY(1); }
  51%       { background: rgba(108, 152, 200, 0.85); transform: scaleY(1); }
  54%       { background: rgba(217, 153, 89, 0.95);  transform: scaleY(1); }
  56%       { background: rgba(217, 153, 89, 1);     transform: scaleY(1.05); }
  58%       { background: rgba(217, 153, 89, 0.95);  transform: scaleY(1); }
  93%       { background: rgba(217, 153, 89, 0.7);   transform: scaleY(1); }
  98%, 100% { background: rgba(217, 153, 89, 0);     transform: scaleY(0.5); }
}

@keyframes std-type-3 {
  0%, 45%   { width: 0; }
  51%, 95%  { width: 100%; }
  97%, 100% { width: 0; }
}

@keyframes std-chip-3 {
  0%, 41%   { opacity: 0; transform: translateX(8px) scale(0.96); filter: blur(2px); }
  44%, 84%  { opacity: 1; transform: translateX(0)   scale(1);    filter: blur(0); }
  87%, 100% { opacity: 0; transform: translateX(-4px) scale(0.97); filter: blur(2px); }
}

/* The chip-3 slightly enlarges and re-emphasises when the warning fires */
.std-chip--3 {
  border-color: rgba(17, 18, 20, 0.06);
}

@keyframes std-chip-dot-3 {
  0%, 51%   { opacity: 1; transform: scale(1); }
  53%, 56%  { opacity: 0; transform: scale(0.6); }
  58%, 100% { opacity: 0; transform: scale(1); }
}

@keyframes std-chip-warn-3 {
  0%, 52%   { opacity: 0; transform: scale(0.7); }
  54%       { opacity: 1; transform: scale(1.08); }
  56%       { opacity: 1; transform: scale(1); }
  60%       { opacity: 1; transform: scale(1.06); }
  62%       { opacity: 1; transform: scale(1); }
  84%       { opacity: 1; transform: scale(1); }
  87%, 100% { opacity: 0; transform: scale(0.7); }
}

@keyframes std-chip-text-3-initial {
  0%, 51%  { opacity: 1; }
  53%      { opacity: 0; }
  100%     { opacity: 0; }
}

@keyframes std-chip-text-3-warn {
  0%, 52%  { opacity: 0; color: rgba(190, 110, 50, 0.92); }
  54%, 84% { opacity: 1; color: rgba(190, 110, 50, 0.92); }
  87%, 100%{ opacity: 0; color: rgba(190, 110, 50, 0.92); }
}

/* ── Field 4 — Reason ── */
.std-field--4 .std-field__bracket { animation: std-bracket-4     14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.std-field--4 .std-field__value   { animation: std-type-4        14s steps(35, end) infinite; }
.std-chip--4                       { animation: std-chip-4        14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }
.std-chip--4 .std-chip__dot        { animation: std-chip-dot-4    14s linear infinite; }
.std-chip--4 .std-chip__check      { animation: std-chip-check-4  14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite; }

@keyframes std-bracket-4 {
  0%, 58%   { background: rgba(108, 152, 200, 0);    transform: scaleY(0.5); }
  60%       { background: rgba(108, 152, 200, 0.85); transform: scaleY(1); }
  71%       { background: rgba(108, 152, 200, 0.85); transform: scaleY(1); }
  73%       { background: rgba(92, 177, 133, 0.85);  transform: scaleY(1); }
  93%       { background: rgba(92, 177, 133, 0.55);  transform: scaleY(1); }
  98%, 100% { background: rgba(92, 177, 133, 0);     transform: scaleY(0.5); }
}

@keyframes std-type-4 {
  0%, 63%   { width: 0; }
  72%, 95%  { width: 100%; }
  97%, 100% { width: 0; }
}

@keyframes std-chip-4 {
  0%, 60%   { opacity: 0; transform: translateX(8px) scale(0.96); filter: blur(2px); }
  62%, 73%  { opacity: 1; transform: translateX(0)   scale(1);    filter: blur(0); }
  76%, 100% { opacity: 0; transform: translateX(-4px) scale(0.97); filter: blur(2px); }
}

@keyframes std-chip-check-4 {
  0%, 71%   { opacity: 0; transform: translateY(-50%) scale(0.7); }
  73%, 75%  { opacity: 1; transform: translateY(-50%) scale(1); }
  78%, 100% { opacity: 0; transform: translateY(-50%) scale(0.7); }
}

@keyframes std-chip-dot-4 {
  0%, 71%   { opacity: 1; transform: scale(1); }
  73%, 75%  { opacity: 0; transform: scale(0.6); }
  78%, 100% { opacity: 0; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .std-ticket,
  .std-field__bracket,
  .std-field__value,
  .std-chip,
  .std-chip__dot,
  .std-chip__check,
  .std-chip__warn,
  .std-chip__text--initial,
  .std-chip__text--warn,
  .std-field--3,
  .std-banner,
  .std-button,
  .std-button__text--initial,
  .std-button__text--final {
    animation: none !important;
  }

  .std-ticket { opacity: 1; transform: none; filter: none; }
  .std-field__value { width: 100%; }
  .std-chip { opacity: 0; }
  .std-button__text--final { opacity: 0; }
}

/* Operational impact first panel: minimal glass decision flow. */
.standard-anim {
  background:
    linear-gradient(135deg, rgba(249, 252, 255, 0.98), rgba(233, 241, 248, 0.94) 58%, rgba(224, 234, 242, 0.98)),
    #eef3f8;
}

.standard-anim__bg {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 38%),
    linear-gradient(225deg, rgba(198, 214, 234, 0.74), rgba(198, 214, 234, 0) 52%),
    linear-gradient(15deg, rgba(214, 230, 225, 0.58), rgba(214, 230, 225, 0) 48%);
  filter: blur(34px);
}

.standard-anim__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 18, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 20, 0.034) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
  opacity: 0.26;
  animation: std-mesh-drift 22s linear infinite;
}

@keyframes std-mesh-drift {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-46px, -46px, 0); }
}

.std-ticket {
  width: 78%;
  height: 82%;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.68);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 0 0 1px rgba(255, 255, 255, 0.34) inset,
    0 26px 64px rgba(28, 35, 45, 0.08),
    0 5px 18px rgba(28, 35, 45, 0.045);
  backdrop-filter: blur(30px) saturate(1.12);
  -webkit-backdrop-filter: blur(30px) saturate(1.12);
}

.std-ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0)),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.38) 48%, transparent 58%);
  opacity: 0.72;
  transform: translateX(-48%);
  animation: std-glass-sheen 14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

@keyframes std-glass-sheen {
  0%, 12% { transform: translateX(-48%); opacity: 0.28; }
  38% { transform: translateX(42%); opacity: 0.64; }
  64%, 100% { transform: translateX(42%); opacity: 0.18; }
}

.std-field {
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(17, 18, 20, 0.055);
}

.std-chip {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(17, 18, 20, 0.055);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.std-motion-lane {
  position: absolute;
  left: 17%;
  right: 18%;
  top: 52%;
  z-index: 0;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(17, 18, 20, 0.14), transparent);
  opacity: 0;
  animation: std-lane-presence 14s linear infinite;
}

.std-motion-lane span {
  position: absolute;
  top: -1px;
  left: 0;
  width: 28%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(92, 177, 133, 0.78), transparent);
  transform: translateX(-120%);
  animation: std-lane-run 14s cubic-bezier(0.32, 0.72, 0.26, 1) infinite;
}

@keyframes std-lane-presence {
  0%, 50%, 78%, 100% { opacity: 0; }
  55%, 72% { opacity: 1; }
}

@keyframes std-lane-run {
  0%, 51% { transform: translateX(-120%); }
  72% { transform: translateX(430%); }
  73%, 100% { transform: translateX(430%); }
}

@media (max-width: 700px) {
  .std-ticket {
    width: 82%;
    height: 82%;
  }
}

/* ──────────────────────────────────────────────────────────────────
   Hero AI chat — glass minimal, smooth morph
   ────────────────────────────────────────────────────────────────── */

.hero-conversion--chat {
  width: min(1024px, 100%);
  align-items: stretch;
  margin-top: clamp(28px, 4vw, 44px);
}

.hero-chat {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 0;
  border-radius: 30px;
  background: rgba(244, 247, 251, 0.22);
  -webkit-backdrop-filter: blur(36px) saturate(1.4);
  backdrop-filter: blur(36px) saturate(1.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 0 0 1px rgba(20, 24, 32, 0.035),
    0 30px 80px -24px rgba(28, 38, 60, 0.1),
    0 3px 10px -3px rgba(28, 38, 60, 0.05);
  overflow: hidden;
  font-family: "DM Sans", system-ui, sans-serif;
  color: rgba(20, 24, 32, 0.84);
  text-align: left;
}

/* Thread — the only thing that morphs */

.hero-chat__thread {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-height: 0;
  padding: 0 32px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  transition:
    max-height 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-chat[data-state="active"] .hero-chat__thread {
  max-height: min(720px, 78vh);
  padding: 32px 32px 14px;
}

.hero-chat__thread::-webkit-scrollbar {
  display: none;
}

/* Form */

.hero-chat__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 54px;
  padding: 5px 5px 5px 24px;
  position: relative;
}

.hero-chat[data-state="active"] .hero-chat__form::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: rgba(20, 24, 32, 0.05);
  opacity: 0;
  animation: hero-chat-divider 0.6s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-chat-divider {
  to { opacity: 1; }
}

.hero-chat__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.hero-chat__input {
  width: 100%;
  min-width: 0;
  padding: 10px 0;
  border: 0;
  background: transparent;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1;
  color: rgba(20, 24, 32, 0.88);
  outline: none;
  position: relative;
  z-index: 2;
}

.hero-chat__input::placeholder {
  color: transparent;
}

.hero-chat__placeholder {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1;
  color: rgba(20, 24, 32, 0.3);
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-chat__placeholder[data-state="out"],
.hero-chat__placeholder[data-state="in"] {
  opacity: 0;
}

.hero-chat__placeholder[data-state="in"] {
  transition: none;
}

.hero-chat__placeholder.is-hidden {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.hero-chat__placeholder-char {
  display: inline-block;
  color: rgba(20, 24, 32, 0.3);
  animation: hero-chat-placeholder-char 5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  animation-delay: calc(var(--i, 0) * 100ms);
}

@keyframes hero-chat-placeholder-char {
  0% { color: rgba(20, 24, 32, 0.3); }
  8% { color: rgba(20, 24, 32, 0.82); }
  22%, 100% { color: rgba(20, 24, 32, 0.3); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-chat__placeholder,
  .hero-chat__placeholder-char {
    animation: none;
    transition: none;
  }
  .hero-chat__placeholder-char {
    color: rgba(20, 24, 32, 0.5);
  }
}

.hero-chat__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 24, 32, 0.05);
  color: rgba(20, 24, 32, 0.35);
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.18s ease;
}

.hero-chat__submit svg {
  width: 12px;
  height: 12px;
}

.hero-chat__submit:not(:disabled) {
  background: rgba(20, 24, 32, 0.92);
  color: rgba(255, 255, 255, 0.96);
}

.hero-chat__submit:hover:not(:disabled) {
  background: rgba(20, 24, 32, 1);
}

.hero-chat__submit:active:not(:disabled) {
  transform: scale(0.92);
}

.hero-chat[data-busy="true"] .hero-chat__submit {
  background: rgba(20, 24, 32, 0.05);
  color: rgba(20, 24, 32, 0.35);
}

/* Messages */

.hero-chat__msg {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(3px);
  animation: hero-chat-msg-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-chat-msg-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-chat__msg--user {
  align-items: flex-end;
}

.hero-chat__msg-bubble {
  max-width: 70%;
  padding: 8px 14px;
  border-radius: 16px 16px 4px 16px;
  background: rgba(20, 24, 32, 0.7);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: -0.002em;
  line-height: 1.45;
}

.hero-chat__msg--assistant {
  align-items: stretch;
}

.hero-chat__msg-body {
  width: 100%;
  min-width: 0;
}

/* Workflow card */

.hero-chat__workflow-card {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 14px;
  margin: 0 0 22px;
  border-radius: 12px;
  background: rgba(20, 24, 32, 0.035);
  opacity: 0;
  transform: translateY(3px);
  animation: hero-chat-card-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-chat-card-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-chat__workflow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  color: rgba(20, 24, 32, 0.55);
}

.hero-chat__workflow-icon svg {
  width: 12px;
  height: 12px;
}

.hero-chat__workflow-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.hero-chat__workflow-title {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.3;
  color: rgba(20, 24, 32, 0.9);
}

.hero-chat__workflow-meta {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  color: rgba(20, 24, 32, 0.48);
}

/* Summary */

.hero-chat__summary {
  margin: 24px 0 0;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: -0.002em;
  line-height: 1.5;
  color: rgba(20, 24, 32, 0.52);
  opacity: 0;
  transform: translateY(3px);
  animation: hero-chat-summary-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-chat-summary-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Streaming narration — AI continues speaking after the graph */

.hero-chat__narration {
  margin: 24px 0 0;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.005em;
  color: rgba(20, 24, 32, 0.82);
  text-wrap: pretty;
}

.hero-chat__narration-word {
  display: inline;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-chat__narration-word.is-visible {
  opacity: 1;
}

/* Reasoning ticker */

.hero-chat__reasoning {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 28px;
}

.hero-chat__reasoning::before {
  content: "";
  position: absolute;
  left: 2.5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(20, 24, 32, 0.06);
}

.hero-chat__reasoning-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 20px;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: -0.002em;
  line-height: 1.35;
  color: rgba(20, 24, 32, 0.28);
  opacity: 0;
  transform: translateY(2px);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-chat__reasoning-step[data-state="active"],
.hero-chat__reasoning-step[data-state="done"] {
  opacity: 1;
  transform: translateY(0);
}

.hero-chat__reasoning-step[data-state="active"] {
  color: rgba(20, 24, 32, 0.82);
}

.hero-chat__reasoning-step[data-state="done"] {
  color: rgba(20, 24, 32, 0.42);
}

.hero-chat__reasoning-bullet {
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(244, 247, 251, 0.6);
  border: 1px solid rgba(20, 24, 32, 0.16);
  transform: translateY(-50%);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.hero-chat__reasoning-step[data-state="active"] .hero-chat__reasoning-bullet {
  background: rgba(20, 24, 32, 0.92);
  border-color: rgba(20, 24, 32, 0.92);
  animation: hero-chat-bullet 1.4s ease-in-out infinite;
}

.hero-chat__reasoning-step[data-state="done"] .hero-chat__reasoning-bullet {
  background: rgba(20, 24, 32, 0.92);
  border-color: rgba(20, 24, 32, 0.92);
}

@keyframes hero-chat-bullet {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20, 24, 32, 0); }
  50% { box-shadow: 0 0 0 4px rgba(20, 24, 32, 0.08); }
}

/* Assistant response */

/* Graph canvas — DAG, n8n-style */

.hero-chat__graph {
  display: block;
  margin: 6px -4px 0;
  padding: 0;
  border-radius: 16px;
  background:
    radial-gradient(circle at 1px 1px, rgba(20, 24, 32, 0.085) 1px, transparent 1.4px) 0 0 / 18px 18px,
    rgba(244, 247, 251, 0.22);
  opacity: 0;
  transform: translateY(4px);
  animation: hero-chat-graph-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  overflow: hidden;
}

@keyframes hero-chat-graph-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-chat__graph-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
}

.hero-chat__graph-canvas {
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  transform-style: preserve-3d;
  touch-action: none;
}

.hero-chat__graph-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.hero-chat__graph-edge {
  fill: none;
  stroke: rgba(20, 24, 32, 0.14);
  stroke-width: 1.25;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  transition: stroke 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-chat__graph-edge[data-state="active"] {
  stroke: rgba(20, 24, 32, 0.62);
}

.hero-chat__graph-edge[data-state="done"] {
  stroke: rgba(20, 24, 32, 0.28);
}

/* Node */

.hero-chat__graph-node {
  position: absolute;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 4px;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.38);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  will-change: opacity, background, box-shadow;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-sizing: border-box;
}

.hero-chat__graph-node.is-materialized {
  opacity: 1;
}

.hero-chat__graph-node[data-state="pending"] {
  background: rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(20, 24, 32, 0.04);
}

.hero-chat__graph-node[data-state="running"] {
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 0 0 1.4px rgba(20, 24, 32, 0.85),
    0 4px 14px -4px rgba(20, 24, 32, 0.18);
}

.hero-chat__graph-node[data-state="done"] {
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(20, 24, 32, 0.06);
}

.hero-chat__graph-num {
  position: absolute;
  top: 6px;
  right: 10px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(20, 24, 32, 0.32);
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}

.hero-chat__graph-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: rgba(20, 24, 32, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 22px;
}

.hero-chat__graph-meta {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: rgba(20, 24, 32, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Edge data label — ephemeral, fades during packet flight */

/* Flying data packet */

.hero-chat__graph-packet {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(20, 24, 32, 1);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.9),
    0 0 14px 1px rgba(20, 24, 32, 0.38),
    0 0 28px 4px rgba(20, 24, 32, 0.12);
  pointer-events: none;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-chat__graph-packet {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-chat__graph {
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .hero-chat__graph::-webkit-scrollbar { display: none; }
}

/* Footer slot — swaps suggestions ↔ reset */

.hero-chat-footer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 18px;
  min-height: 32px;
}

.hero-chat-suggestions,
.hero-chat-reset {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-chat-suggestions {
  flex-wrap: nowrap;
  gap: 6px;
}

.hero-chat-suggestions[data-state="hidden"] {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.hero-chat-suggestions__pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 24, 32, 0.04);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: -0.002em;
  line-height: 1;
  color: rgba(20, 24, 32, 0.6);
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.hero-chat-suggestions__pill:hover {
  background: rgba(20, 24, 32, 0.08);
  color: rgba(20, 24, 32, 0.92);
}

/* Reset / start over */

.hero-chat-reset {
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: -0.002em;
  line-height: 1;
  color: rgba(20, 24, 32, 0.48);
  cursor: pointer;
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s ease;
}

.hero-chat-reset svg {
  width: 12px;
  height: 12px;
}

.hero-chat-reset[data-state="visible"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0.15s;
}

.hero-chat-reset:hover {
  color: rgba(20, 24, 32, 0.92);
}

/* Responsive */

@media (max-width: 720px) {
  .hero-chat-suggestions {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .hero-conversion--chat {
    width: 100%;
  }

  .hero-chat[data-state="active"] .hero-chat__thread {
    max-height: 380px;
    padding: 28px 22px 12px;
  }

  .hero-chat__thread {
    padding: 0 22px;
    gap: 30px;
  }

  .hero-chat__form {
    padding: 4px 4px 4px 20px;
    min-height: 50px;
  }

  .hero-chat[data-state="active"] .hero-chat__form::before {
    left: 18px;
    right: 18px;
  }

  .hero-chat__submit {
    width: 34px;
    height: 34px;
  }

  .hero-chat__action {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-chat,
  .hero-chat__thread,
  .hero-chat__form,
  .hero-chat__msg,
  .hero-chat__action,
  .hero-chat__reasoning-step,
  .hero-chat-suggestions,
  .hero-chat-reset,
  .hero-chat[data-state="active"] .hero-chat__form::before {
    animation: none !important;
    transition: none !important;
  }
  .hero-chat__msg,
  .hero-chat__action,
  .hero-chat__reasoning-step[data-state="active"],
  .hero-chat__reasoning-step[data-state="done"] {
    opacity: 1;
    transform: none;
  }
  .hero-chat__reasoning-step[data-state="active"] .hero-chat__reasoning-bullet {
    animation: none;
  }
}

/* ═══ Workflow runner — hero (minimal product window) ═══════════════════════ */

.hero-conversion--runner {
  width: min(1000px, 100%);
  margin-top: clamp(26px, 4vw, 46px);
}

.wf {
  --wf-ink: 20, 24, 32;
  width: 100%;
}

.wf__window {
  position: relative;
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(var(--wf-ink), 0.05);
  background: rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
  backdrop-filter: blur(22px) saturate(1.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 22px 60px -30px rgba(var(--wf-ink), 0.16);
  overflow: hidden;
  font-family: var(--font-body);
  color: rgba(var(--wf-ink), 0.86);
  text-align: left;
}

/* ── Body: rail + canvas ───────────────────────────────────────────────────── */

.wf__body {
  display: grid;
  grid-template-columns: 222px 1fr;
}

.wf__rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px;
}

/* gliding active highlight — whisper soft, no hard edges */
.wf__rail-marker {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 0;
  border-radius: 13px;
  background: rgba(var(--wf-ink), 0.045);
  opacity: 0;
  transform: translateY(0);
  transition:
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
  pointer-events: none;
}

.wf__rail-marker.is-active {
  opacity: 1;
}

.wf__nav {
  all: unset;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border-radius: 13px;
  cursor: pointer;
  color: rgba(var(--wf-ink), 0.46);
  transition: color 0.26s ease;
}

.wf__nav:hover {
  color: rgba(var(--wf-ink), 0.8);
}

.wf__nav.is-active {
  color: rgba(var(--wf-ink), 0.96);
}

.wf__nav-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.26s ease;
}

.wf__nav:hover .wf__nav-icon,
.wf__nav.is-active .wf__nav-icon {
  opacity: 1;
}

.wf__nav-label {
  flex: 1;
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.wf__canvas {
  position: relative;
  height: 580px;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 24px 28px 26px;
  border-left: 1px solid rgba(var(--wf-ink), 0.04);
  scroll-behavior: smooth;
}

.wf__canvas::-webkit-scrollbar { display: none; }

.wf__hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
  color: rgba(var(--wf-ink), 0.24);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.wf[data-state="idle"] .wf__hint {
  opacity: 1;
}

/* reused graph/reasoning/narration render light + monochrome already */
.wf__canvas .hero-chat__reasoning { margin: 0 0 22px; }
.wf__canvas .hero-chat__graph { margin: 0; background: transparent; }
.wf__canvas .hero-chat__narration { margin: 20px 0 0; }

/* ── Pre-run conversation ──────────────────────────────────────────────────── */

.wf-chat {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wf-chat:not(:empty) {
  margin-bottom: 24px;
}

.wf-chat__msg {
  display: flex;
  flex-direction: column;
  max-width: 82%;
  opacity: 0;
  transform: translateY(7px);
  animation: wf-msg-in 0.44s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes wf-msg-in {
  to { opacity: 1; transform: none; }
}

.wf-chat__msg--user {
  align-self: flex-end;
  align-items: flex-end;
  gap: 8px;
}

.wf-chat__bubble {
  padding: 11px 16px;
  border-radius: 18px 18px 6px 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(var(--wf-ink), 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 22px -14px rgba(var(--wf-ink), 0.22);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  backdrop-filter: blur(12px) saturate(1.1);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(var(--wf-ink), 0.82);
}

.wf-chat__attach {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 13px;
  border: 1px solid rgba(var(--wf-ink), 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.wf-chat__attach svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(var(--wf-ink), 0.5);
}

.wf-chat__attach-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.wf-chat__attach-name {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(var(--wf-ink), 0.82);
}

.wf-chat__attach-meta {
  font-size: 0.71rem;
  color: rgba(var(--wf-ink), 0.4);
}

.wf-chat__msg--ai {
  align-self: flex-start;
  max-width: 94%;
  gap: 7px;
}

.wf-chat__intro {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(var(--wf-ink), 0.46);
}

.wf-chat__q {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: rgba(var(--wf-ink), 0.88);
}

.wf-chat__typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 13px 16px;
  border-radius: 17px 17px 17px 5px;
  background: rgba(var(--wf-ink), 0.04);
}

.wf-chat__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(var(--wf-ink), 0.32);
  animation: wf-typing 1.2s ease-in-out infinite;
}

.wf-chat__typing span:nth-child(2) { animation-delay: 0.16s; }
.wf-chat__typing span:nth-child(3) { animation-delay: 0.32s; }

@keyframes wf-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .wf-chat__msg { animation: none; opacity: 1; transform: none; }
  .wf-chat__typing span { animation: none; }
}

/* ── Responsive: rail becomes a top strip ──────────────────────────────────── */

@media (max-width: 700px) {
  .wf__body { grid-template-columns: 1fr; }
  .wf__rail {
    flex-direction: row;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 12px;
  }
  .wf__rail::-webkit-scrollbar { display: none; }
  .wf__rail-marker { display: none; }
  .wf__nav {
    flex-shrink: 0;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(var(--wf-ink), 0.07);
    background: rgba(255, 255, 255, 0.5);
  }
  .wf__nav-label { flex: 0 0 auto; }
  .wf__nav.is-active {
    color: rgba(247, 249, 252, 0.96);
    background: rgba(var(--wf-ink), 0.92);
    border-color: rgba(var(--wf-ink), 0.92);
  }
  .wf__nav.is-active .wf__nav-icon { opacity: 1; }
  .wf__canvas {
    height: 500px;
    padding: 16px;
    border-left: 0;
    border-top: 1px solid rgba(var(--wf-ink), 0.05);
  }
}

@media (max-width: 460px) {
  .wf__nav-label { display: none; }
  .wf__nav { padding: 10px; }
  .wf-chat__msg { max-width: 90%; }
}

@media (prefers-reduced-motion: reduce) {
  .wf__rail-marker, .wf__nav { transition: none !important; }
}
