@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #f6f0e6;
  --bg-shell: #fbf7f0;
  --surface: rgba(255, 252, 247, 0.92);
  --surface-strong: #fffdf9;
  --surface-muted: #f2e8da;
  --surface-dark: #112320;
  --surface-dark-2: #172f2b;
  --text: #162421;
  --text-soft: #576864;
  --text-on-dark: #f7f2eb;
  --text-on-dark-soft: rgba(247, 242, 235, 0.74);
  --line: rgba(22, 36, 33, 0.12);
  --line-strong: rgba(22, 36, 33, 0.2);
  --line-dark: rgba(255, 255, 255, 0.14);
  --brand: #0f5d54;
  --brand-strong: #0a433c;
  --signal: #c5662e;
  --signal-strong: #a9531e;
  --sand: #f0d8b5;
  --ok: #2d8657;
  --shadow: 0 28px 80px rgba(24, 37, 33, 0.12);
  --shadow-soft: 0 16px 40px rgba(24, 37, 33, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --section-space: 56px;
  --grid-gap: 14px;
  --hero-top-pad: 28px;
  --hero-gap: 20px;
  --panel-pad: 34px;
  --card-pad: 22px;
  --scene-pad: 22px;
  --scene-top-clearance: 52px;
  --scene-stack-gap: 16px;
  --scene-chat-height: clamp(430px, 38vw, 560px);
  --scene-chat-width: calc(100% + 68px);
  --scene-chat-shift-x: -48px;
  --scene-chat-shift-y: 12px;
  --scene-chat-rotate: -1.7deg;
  --scene-chat-float-x: 4px;
  --scene-chat-float-y: -8px;
  --scene-chat-float-rotate: 0.5deg;
  --scene-stack-right: 4px;
  --scene-stack-top: 18px;
  --scene-card-handoff-x: -12px;
  --scene-card-handoff-y: -16px;
  --scene-card-handoff-rotate: 1.8deg;
  --scene-card-handoff-float-x: -2px;
  --scene-card-handoff-float-y: -4px;
  --scene-card-handoff-float-rotate: -0.35deg;
  --scene-card-proof-x: -10px;
  --scene-card-proof-y: -32px;
  --scene-card-proof-rotate: -0.95deg;
  --scene-card-proof-float-x: -2px;
  --scene-card-proof-float-y: -4px;
  --scene-card-proof-float-rotate: 0.2deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(960px 540px at -8% -10%, rgba(197, 102, 46, 0.18), transparent 70%),
    radial-gradient(860px 500px at 108% 0%, rgba(15, 93, 84, 0.16), transparent 70%),
    linear-gradient(180deg, #fbf7f0 0%, #f6f0e6 50%, #f2eadc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 65%);
  opacity: 0.34;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 18px;
  z-index: 80;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--brand-strong);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid rgba(240, 216, 181, 0.92);
  outline-offset: 3px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.surface {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.surface--dark {
  background:
    radial-gradient(480px 280px at 100% 0%, rgba(240, 216, 181, 0.12), transparent 70%),
    linear-gradient(180deg, var(--surface-dark-2) 0%, var(--surface-dark) 100%);
  border-color: var(--line-dark);
  box-shadow: var(--shadow);
  color: var(--text-on-dark);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: max(18px, calc(env(safe-area-inset-top) + 8px)) 0 10px;
  backdrop-filter: blur(16px);
}

.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(22, 36, 33, 0.08);
  border-radius: 999px;
  background: rgba(251, 247, 240, 0.82);
  box-shadow: 0 14px 34px rgba(22, 36, 33, 0.06);
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(15, 93, 84, 0.2));
}

.brand__lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand__text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand__meta {
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav__links,
.nav__actions {
  display: flex;
  align-items: center;
}

.nav__links {
  gap: 2px;
}

.nav__actions {
  margin-left: 6px;
}

.nav__link {
  padding: 10px 14px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

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

.nav__link:focus-visible {
  color: var(--text);
  outline: 3px solid rgba(15, 93, 84, 0.26);
  outline-offset: 2px;
  border-radius: 999px;
}

.nav__label--compact,
.topbar__cta-label--compact {
  display: none;
}

.topbar__menu-toggle,
.topbar__backdrop {
  display: none;
}

.topbar__menu-toggle {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  border-radius: 999px;
  min-height: 48px;
  padding: 10px 14px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(22, 36, 33, 0.08);
  cursor: pointer;
}

.topbar__menu-toggle:focus-visible {
  outline: 3px solid rgba(15, 93, 84, 0.26);
  outline-offset: 2px;
}

.topbar__menu-toggle-icon {
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.topbar__menu-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.topbar__backdrop {
  appearance: none;
  border: 0;
  background: rgba(11, 24, 22, 0.26);
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 1;
}

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(15, 93, 84, 0.26);
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 93, 84, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 18px 36px rgba(15, 93, 84, 0.26);
}

.btn--signal {
  background: linear-gradient(135deg, var(--signal), var(--signal-strong));
  color: #fff;
  box-shadow: 0 16px 32px rgba(197, 102, 46, 0.24);
}

.btn--signal:hover {
  box-shadow: 0 20px 38px rgba(197, 102, 46, 0.3);
}

.btn--ghost,
.btn--ghost-dark {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(22, 36, 33, 0.12);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.8);
}

.btn--ghost-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text-on-dark);
}

.btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  max-width: 100%;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 93, 84, 0.08);
  border: 1px solid rgba(15, 93, 84, 0.14);
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: normal;
}

.eyebrow--soft {
  background: rgba(22, 36, 33, 0.05);
  border-color: rgba(22, 36, 33, 0.1);
  color: var(--text-soft);
}

.eyebrow--dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--sand);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(352px, 0.94fr);
  gap: var(--hero-gap);
  padding: var(--hero-top-pad) 0 calc(var(--section-space) - 16px);
  align-items: stretch;
}

.hero__copy {
  display: grid;
  gap: var(--grid-gap);
  min-width: 0;
}

.hero__main,
.hero__visual {
  padding: var(--panel-pad);
  min-width: 0;
}

.hero h1,
.section__header h2,
.footer__box h3,
.price-card h3,
.pricing-hero h1,
.enterprise-band h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(34px, 5.1vw, 58px);
  line-height: 0.98;
  max-width: none;
  text-wrap: balance;
}

.hero__lead {
  margin: 18px 0 0;
  max-width: 680px;
  font-size: 17px;
  line-height: 1.46;
  color: var(--text-soft);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero__microcopy {
  margin: 14px 0 0;
  max-width: 640px;
  color: var(--text-soft);
  font-size: 13px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.hero__chips li {
  padding: 8px 12px;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(22, 36, 33, 0.06);
  border: 1px solid rgba(22, 36, 33, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.hero__visual {
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  overflow-x: clip;
  position: relative;
}

.hero__visual::after {
  content: "";
  position: absolute;
  right: -56px;
  top: -64px;
  width: 196px;
  height: 196px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 216, 181, 0.24), transparent 70%);
  pointer-events: none;
}

.visual-flow__label,
.visual-compare__label,
.impact-panel__label,
.role-card__label,
.visual-metric__label,
.price-card__eyebrow,
.pricing-aside-card__label {
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-flow__label,
.visual-compare__label,
.visual-metric__label,
.pricing-aside-card__label {
  color: var(--brand-strong);
}

.scene-header .visual-flow__label,
.guided-demo__chat-top .visual-flow__label {
  color: var(--sand);
}

.scene-header,
.product-scene {
  position: relative;
  z-index: 1;
}

.scene-header {
  display: grid;
  gap: 10px;
}

.scene-header p {
  margin: 0;
  color: var(--text-on-dark-soft);
  font-size: 14px;
  line-height: 1.5;
}

.product-scene {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  grid-template-areas: "chat stack";
  align-items: stretch;
  align-content: stretch;
  flex: 1 1 0;
  min-height: 0;
  height: auto;
  gap: 16px 14px;
  padding: var(--scene-top-clearance) var(--scene-pad) var(--scene-pad);
  min-height: max(calc(var(--scene-chat-height) + var(--scene-top-clearance) + 8px), 600px);
  border-radius: 30px;
  overflow: hidden;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(8, 18, 17, 0.28), rgba(8, 18, 17, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 72px rgba(0, 0, 0, 0.22);
}

.product-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
  opacity: 0.34;
  pointer-events: none;
}

.product-scene__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.56;
  animation: scene-orb-float 11s ease-in-out infinite;
  pointer-events: none;
}

.product-scene__orb--amber {
  width: 150px;
  height: 150px;
  left: -24px;
  top: -8px;
  background: radial-gradient(circle, rgba(197, 102, 46, 0.34), transparent 72%);
}

.product-scene__orb--green {
  width: 208px;
  height: 208px;
  right: -62px;
  bottom: -74px;
  background: radial-gradient(circle, rgba(15, 93, 84, 0.32), transparent 72%);
  animation-delay: -4s;
}

.product-scene__signal {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 220px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(250, 245, 238, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 24px rgba(6, 13, 12, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  color: var(--text-on-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.3;
  z-index: 4;
  animation: scene-badge-float 7s ease-in-out infinite;
}

.product-scene__signal::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), #fff);
  box-shadow: 0 0 0 6px rgba(240, 216, 181, 0.08);
}

.product-scene__signal--reply {
  left: var(--scene-pad);
  top: 18px;
}

.product-scene__signal--handoff {
  right: var(--scene-pad);
  top: 18px;
  animation-delay: -3s;
}

.product-scene[data-scene-mode="dynamic"] [data-scene-accent] {
  opacity: 1;
  filter: saturate(0.88);
  transition:
    filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.product-scene[data-scene-mode="dynamic"] [data-scene-accent].is-emphasis {
  opacity: 1;
  filter: saturate(1.04);
}

.product-scene[data-scene-mode="dynamic"] .product-scene__signal.is-emphasis {
  border-color: rgba(240, 216, 181, 0.28);
  box-shadow:
    0 12px 36px rgba(6, 13, 12, 0.24),
    0 0 0 1px rgba(240, 216, 181, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.scene-device {
  position: relative;
  z-index: 1;
}

.scene-device--chat {
  grid-area: chat;
  align-self: center;
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--scene-chat-height);
  min-height: 0;
  width: var(--scene-chat-width);
  max-width: none;
  padding: 18px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(18, 36, 33, 0.96), rgba(9, 19, 17, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translate(var(--scene-chat-shift-x), var(--scene-chat-shift-y)) rotate(var(--scene-chat-rotate));
  animation: scene-device-float 10s ease-in-out infinite;
}

.scene-device__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.scene-device__lights {
  display: inline-flex;
  gap: 6px;
}

.scene-device__lights span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.scene-device__lights span:nth-child(1) {
  background: rgba(255, 255, 255, 0.34);
}

.scene-device__lights span:nth-child(2) {
  background: rgba(240, 216, 181, 0.56);
}

.scene-device__lights span:nth-child(3) {
  background: rgba(15, 93, 84, 0.74);
}

.scene-device__title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scene-device__title strong,
.floating-card h3,
.hero-outcome-card h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.scene-device__title strong {
  display: block;
  font-size: 16px;
}

.scene-device__typing {
  display: inline-flex;
  align-items: center;
  min-height: 14px;
  color: var(--text-on-dark-soft);
}

.scene-device__typing[hidden] {
  display: none;
}

.scene-row[hidden],
.chat-thread__status[hidden] {
  display: none !important;
}

.scene-device__body {
  margin-top: 14px;
  flex: 1 1 auto;
  min-height: 0;
  max-width: none;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 8px;
  margin-right: -8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.chat-thread {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  padding-bottom: 14px;
}

.scene-device__body::-webkit-scrollbar {
  display: none;
}

.scene-row {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 0.42s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.42s ease,
    visibility 0s linear 0.42s;
  will-change: opacity, transform, filter;
}

.scene-row.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition:
    opacity 0.42s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.42s ease;
}

.scene-row.is-pre-enter {
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  filter: blur(6px);
  visibility: visible;
}

.thread-row {
  display: flex;
}

.thread-row--user {
  justify-content: flex-end;
  padding-right: 6px;
}

.thread-row--assistant {
  justify-content: flex-start;
  padding-left: 6px;
}

.bubble {
  max-width: 88%;
  position: relative;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bubble p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.48;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bubble__meta {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bubble--user {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 22px 22px 8px 22px;
}

.bubble--assistant {
  background: rgba(15, 93, 84, 0.3);
  border-color: rgba(15, 93, 84, 0.28);
  border-radius: 22px 22px 22px 8px;
}

.bubble--soft {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.bubble--accent {
  background:
    linear-gradient(135deg, rgba(197, 102, 46, 0.3), rgba(15, 93, 84, 0.26));
  box-shadow:
    0 12px 28px rgba(13, 31, 28, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(247, 242, 235, 0.68);
  animation: typing-dot-bounce 0.9s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.12s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.24s;
}

.bubble--short {
  width: fit-content;
  min-width: 126px;
  max-width: min(72%, 180px);
}

.chat-thread__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 2px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-on-dark-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.chat-thread__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--signal));
  box-shadow: 0 0 0 6px rgba(197, 102, 46, 0.08);
  animation: scene-dot-pulse 2.4s ease-in-out infinite;
}

.product-scene__stack {
  grid-area: stack;
  position: relative;
  z-index: 6;
  display: grid;
  gap: var(--scene-stack-gap);
  align-content: start;
  align-self: start;
  justify-self: end;
  width: calc(100% + var(--scene-stack-right));
  margin-right: calc(var(--scene-stack-right) * -1);
  min-width: 0;
  padding-top: var(--scene-stack-top);
  padding-left: 0;
}

.floating-card {
  position: relative;
  width: calc(100% + 20px);;
  padding: 16px;
  border-radius: 24px;
  background: rgba(250, 245, 238, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 60px rgba(6, 13, 12, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.product-scene[data-scene-mode="dynamic"] .floating-card {
  opacity: 1;
  filter: none;
}

.floating-card--handoff {
  transform: translate(var(--scene-card-handoff-x), var(--scene-card-handoff-y)) rotate(var(--scene-card-handoff-rotate));
  animation: scene-card-float-a 8s ease-in-out infinite;
}

.floating-card--proof {
  transform: translate(var(--scene-card-proof-x), var(--scene-card-proof-y)) rotate(var(--scene-card-proof-rotate));
  border-radius: 24px;
  -webkit-mask-image: radial-gradient(circle at 100% 100%, transparent 0 42px, #000 43px);
  mask-image: radial-gradient(circle at 100% 100%, transparent 0 42px, #000 43px);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  animation: scene-card-float-b 10s ease-in-out infinite;
}

.floating-card__eyebrow {
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
}

.floating-card h3 {
  margin: 10px 0 0;
  font-size: 20px;
  line-height: 1.05;
}

.floating-card__copy {
  margin: 10px 0 0;
  color: var(--text-on-dark-soft);
  font-size: 14px;
  line-height: 1.5;
}

.floating-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.floating-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(247, 242, 235, 0.86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.floating-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--signal));
}

.floating-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.floating-card__footer strong {
  color: var(--text-on-dark);
}

.proof-checklist {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.proof-checklist li {
  position: relative;
  padding-left: 24px;
  color: rgba(247, 242, 235, 0.86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.proof-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92) 0 2px, transparent 3px),
    linear-gradient(135deg, var(--sand), var(--signal));
  box-shadow: 0 0 0 6px rgba(240, 216, 181, 0.07);
}

.floating-card__note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark-soft);
  font-size: 12px;
  line-height: 1.45;
}

.product-scene__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  z-index: 6;
}

.product-scene__metrics--footer {
  margin-top: auto;
  transform: none;
}

.scene-stat {
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 22px rgba(6, 13, 12, 0.14);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.scene-stat__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: rgba(240, 216, 181, 0.9);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-stat strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: var(--text-on-dark);
}

.scene-stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-on-dark-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.scene-stat__eyebrow + strong {
  margin-top: 0;
}

.product-scene[data-scene-mode="dynamic"] .scene-stat {
  opacity: 1;
  transform: translateY(6px);
}

.product-scene[data-scene-mode="dynamic"] .scene-stat.is-emphasis {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(240, 216, 181, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 30px rgba(6, 13, 12, 0.24);
}

.hero-outcomes {
  padding-top: 10px;
}

.hero-outcomes--inline {
  padding-top: 0;
}

.hero-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-outcome-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-outcome-card__label {
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero-outcome-card h3 {
  margin: 10px 0 0;
  font-size: 22px;
  line-height: 1.04;
}

.hero-outcome-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

@keyframes scene-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -14px, 0) scale(1.04);
  }
}

@keyframes scene-badge-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes scene-device-float {
  0%,
  100% {
    transform:
      translate(var(--scene-chat-shift-x), var(--scene-chat-shift-y))
      rotate(var(--scene-chat-rotate))
      translate3d(0, 0, 0);
  }
  50% {
    transform:
      translate(calc(var(--scene-chat-shift-x) + var(--scene-chat-float-x)), calc(var(--scene-chat-shift-y) + var(--scene-chat-float-y)))
      rotate(calc(var(--scene-chat-rotate) + var(--scene-chat-float-rotate)))
      translate3d(0, 0, 0);
  }
}

@keyframes scene-card-float-a {
  0%,
  100% {
    transform:
      translate(var(--scene-card-handoff-x), var(--scene-card-handoff-y))
      rotate(var(--scene-card-handoff-rotate))
      translate3d(0, 0, 0);
  }
  50% {
    transform:
      translate(calc(var(--scene-card-handoff-x) + var(--scene-card-handoff-float-x)), calc(var(--scene-card-handoff-y) + var(--scene-card-handoff-float-y)))
      rotate(calc(var(--scene-card-handoff-rotate) + var(--scene-card-handoff-float-rotate)))
      translate3d(0, 0, 0);
  }
}

@keyframes scene-card-float-b {
  0%,
  100% {
    transform:
      translate(var(--scene-card-proof-x), var(--scene-card-proof-y))
      rotate(var(--scene-card-proof-rotate))
      translate3d(0, 0, 0);
  }
  50% {
    transform:
      translate(calc(var(--scene-card-proof-x) + var(--scene-card-proof-float-x)), calc(var(--scene-card-proof-y) + var(--scene-card-proof-float-y)))
      rotate(calc(var(--scene-card-proof-rotate) + var(--scene-card-proof-float-rotate)))
      translate3d(0, 0, 0);
  }
}

@keyframes scene-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(197, 102, 46, 0.08);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(197, 102, 46, 0.04);
  }
}

@keyframes typing-dot-bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-scene__orb,
  .product-scene__signal,
  .scene-device--chat,
  .floating-card,
  .chat-thread__dot,
  .typing-dots span {
    animation: none !important;
  }
}

.section {
  padding: 40px 0 var(--section-space);
}

.section--tight {
  padding-top: 24px;
  padding-bottom: 40px;
}

.section--contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(22, 36, 33, 0.05);
  border-bottom: 1px solid rgba(22, 36, 33, 0.05);
}

.section--dark {
  padding: 56px 0;
  background:
    radial-gradient(720px 320px at 100% 0%, rgba(240, 216, 181, 0.12), transparent 70%),
    linear-gradient(180deg, #18312d 0%, #0f211f 100%);
  color: var(--text-on-dark);
}

.section__header {
  max-width: 760px;
}

.section__header h2 {
  margin-top: 14px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.02;
}

.section__header p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 17px;
}

.section__header--light p,
.section__note--light {
  color: var(--text-on-dark-soft);
}

.section__split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.section--problem-diagnostic {
  position: relative;
  isolation: isolate;
}

.section--problem-diagnostic::before {
  content: "";
  position: absolute;
  inset: 18px -26px -24px 52%;
  background:
    radial-gradient(420px 250px at 70% 12%, rgba(15, 93, 84, 0.07), transparent 72%),
    radial-gradient(340px 220px at 82% 84%, rgba(240, 216, 181, 0.13), transparent 74%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.9;
}

.section__split--problem {
  grid-template-areas: "problem impact";
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.82fr);
  column-gap: clamp(26px, 3vw, 42px);
  row-gap: 18px;
}

.problem-stage {
  grid-area: problem;
  align-self: start;
  display: grid;
  gap: 22px;
  align-content: start;
}

.problem-stage .section__header {
  max-width: 760px;
}

.problem-stage .section__header h2 {
  max-width: 17ch;
  font-size: clamp(25px, 2.45vw, 33px);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.problem-stage .section__header p {
  max-width: 28ch;
  font-size: 16px;
  line-height: 1.56;
}

.problem-list {
  --problem-step-meta-width: 106px;
  display: grid;
  gap: 0;
  margin-top: 24px;
  padding-top: 4px;
  border-top: 1px solid rgba(22, 52, 47, 0.12);
  position: relative;
}

.problem-list::before {
  content: "";
  position: absolute;
  left: calc((var(--problem-step-meta-width) / 2) - 0.5px);
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: linear-gradient(180deg, rgba(15, 93, 84, 0.16), rgba(15, 93, 84, 0.04));
}

.feature-card,
.compare-card,
.role-card,
.fit-card,
.demo-case {
  padding: var(--card-pad);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.problem-step__body h3,
.feature-card h3,
.compare-card h3,
.role-card h3,
.scenario-card h3,
.fit-card h3,
.demo-case h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.problem-step__body p,
.feature-card p,
.compare-card p,
.role-card p,
.scenario-card p,
.fit-card p,
.demo-case p,
.price-card p,
.pricing-hero p,
.enterprise-band p,
.footer__box p,
.faq p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.impact-panel {
  padding: 26px;
  align-self: stretch;
}

.impact-panel--problem {
  grid-area: impact;
  align-self: stretch;
  display: grid;
  gap: 18px;
  height: 100%;
  padding: clamp(24px, 2.2vw, 30px);
  background:
    radial-gradient(360px 220px at 100% 0%, rgba(240, 216, 181, 0.1), transparent 72%),
    linear-gradient(180deg, #16342f 0%, #112824 100%);
  color: var(--text-on-dark);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  max-width: 500px;
  justify-self: end;
}

.impact-panel--problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(240px 180px at 6% 18%, rgba(255, 255, 255, 0.05), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 44%);
  pointer-events: none;
}

.impact-panel__hero {
  display: grid;
  gap: 16px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.impact-panel--problem .impact-panel__label {
  width: 100%;
  max-width: none;
  justify-content: center;
  padding: 8px clamp(16px, 2vw, 22px);
  text-align: center;
  font-size: clamp(11px, 0.82vw, 12px);
  line-height: 1.25;
  letter-spacing: 0.07em;
  text-wrap: balance;
  color: var(--sand);
}

.impact-panel--problem .impact-panel__kicker {
  justify-content: flex-start;
}

.impact-panel__figure {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.impact-panel__figure-value {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(46px, 4.4vw, 68px);
  line-height: 0.88;
  letter-spacing: -0.06em;
  white-space: nowrap;
  color: var(--text-on-dark);
}

.impact-panel__figure-copy {
  display: grid;
  gap: 8px;
  padding-bottom: 8px;
}

.impact-panel__figure-copy strong {
  font-family: "Space Grotesk", sans-serif;
  max-width: 11ch;
  font-size: clamp(22px, 1.85vw, 28px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--text-on-dark);
}

.impact-panel__figure-copy p {
  margin: 0;
  color: rgba(247, 242, 235, 0.96);
  font-size: 14.5px;
  line-height: 1.56;
}

.impact-panel__note p {
  margin: 0;
  color: rgba(247, 242, 235, 0.92);
  font-size: 14.5px;
  line-height: 1.56;
}

.impact-panel__note {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.impact-panel__note strong {
  font-family: "Space Grotesk", sans-serif;
  max-width: 16ch;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
}

.impact-panel__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.impact-panel__list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-weight: 600;
}

.impact-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signal), var(--brand));
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.compare-card {
  background: rgba(255, 255, 255, 0.78);
}

.compare-card--accent {
  background: linear-gradient(180deg, rgba(15, 93, 84, 0.08), rgba(197, 102, 46, 0.06));
  border-color: rgba(15, 93, 84, 0.18);
}

.compare-card__label {
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.feature-grid,
.proof-grid,
.value-grid,
.role-grid,
.fit-grid,
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

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

.proof-grid--tight {
  margin-top: 0;
}

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

.feature-card,
.proof-card,
.fit-card {
  background: rgba(255, 255, 255, 0.7);
}

.proof-card {
  padding: var(--card-pad);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.proof-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.proof-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.before-after-shell {
  display: grid;
  gap: 0;
  position: relative;
  margin-top: 4px;
  padding-top: 0;
}

.before-after-shell::after {
  content: "";
  position: absolute;
  inset: 14px -12px -12px -12px;
  background:
    radial-gradient(280px 180px at 78% 16%, rgba(15, 93, 84, 0.05), transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 252, 247, 0.38) 60%, rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: -1;
}

.state-card {
  min-height: 100%;
  padding: 24px 22px 22px;
  border-radius: 24px;
  border: 1px solid rgba(22, 52, 47, 0.1);
  box-shadow: none;
  display: grid;
  align-content: start;
}

.state-card--before {
  background: rgba(255, 255, 255, 0.74);
}

.state-card--after {
  background: linear-gradient(180deg, rgba(15, 93, 84, 0.1), rgba(255, 255, 255, 0.92));
  border-color: rgba(15, 93, 84, 0.18);
}

.state-card__label {
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.state-card h3 {
  margin: 10px 0 0;
  max-width: 17ch;
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.state-card__list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.state-card__list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.46;
}

.state-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signal), var(--brand));
}

.problem-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 20px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(22, 52, 47, 0.1);
  background:
    radial-gradient(240px 160px at 100% 0%, rgba(15, 93, 84, 0.09), transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 252, 247, 0.9));
  box-shadow: 0 16px 32px rgba(22, 36, 33, 0.045);
}

.problem-cta__copy {
  display: grid;
  gap: 6px;
  max-width: 34ch;
}

.problem-cta__copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 1.8vw, 27px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
  color: var(--text);
}

.problem-cta__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
}

.problem-cta .btn {
  justify-self: end;
  white-space: nowrap;
}

.section__split .feature-grid {
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.problem-step {
  display: grid;
  grid-template-columns: var(--problem-step-meta-width) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(22, 52, 47, 0.12);
}

.problem-step:last-child {
  border-bottom: 0;
}

.problem-step__meta {
  display: grid;
  gap: 0;
  align-content: start;
  justify-items: center;
  position: relative;
  text-align: center;
  z-index: 1;
}

.problem-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 46px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 242, 239, 0.86));
  border: 1px solid rgba(15, 93, 84, 0.14);
  box-shadow: 0 8px 18px rgba(22, 36, 33, 0.05);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.problem-step__body {
  display: grid;
  gap: 0;
}

.problem-step__body p {
  margin: 8px 0 0;
  max-width: 44ch;
  line-height: 1.58;
}

.impact-panel h3 {
  margin: 12px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.impact-panel p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.feature-card ul,
.compare-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--text);
}

.role-card__label {
  color: var(--brand);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

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

.scenario-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.scenario-card p {
  color: var(--text-on-dark-soft);
}

.scenario-card__num {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--sand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.scenario-card--compact {
  padding: 20px 18px;
  display: grid;
  gap: 8px;
}

.scenario-card--compact h3 {
  font-size: 20px;
}

.scenario-card--compact p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.guided-demo {
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  gap: 24px;
  overflow: hidden;
}

.guided-demo__intro {
  display: grid;
  gap: 14px;
}

.guided-demo__note {
  margin: 0;
  max-width: 820px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.guided-demo__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.84fr) minmax(0, 1.14fr) minmax(250px, 0.86fr);
  grid-template-areas: "scenarios chat explain";
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 1101px) {
  .guided-demo__layout {
    grid-template-rows: var(--guided-demo-balanced-height, auto);
  }

  .guided-demo__scenarios {
    height: var(--guided-demo-balanced-height, 100%);
    grid-auto-rows: minmax(0, 1fr);
    align-content: stretch;
  }

  .guided-demo-scenario {
    min-height: 0;
    height: 100%;
  }
}

.guided-demo__scenarios {
  grid-area: scenarios;
  display: grid;
  gap: 12px;
  align-content: start;
}

.guided-demo__scenarios,
.guided-demo__chat,
.guided-demo__explain {
  align-self: stretch;
}

.guided-demo-scenario {
  appearance: none;
  width: 100%;
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.guided-demo-scenario:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 93, 84, 0.22);
  box-shadow: 0 20px 44px rgba(15, 93, 84, 0.1);
}

.guided-demo-scenario:focus-visible {
  outline: 3px solid rgba(15, 93, 84, 0.26);
  outline-offset: 2px;
}

.guided-demo-scenario[aria-selected="true"] {
  background:
    linear-gradient(180deg, rgba(15, 93, 84, 0.1), rgba(255, 255, 255, 0.96));
  border-color: rgba(15, 93, 84, 0.26);
  box-shadow:
    0 0 0 1px rgba(15, 93, 84, 0.1),
    0 24px 52px rgba(15, 93, 84, 0.12);
}

.guided-demo-scenario__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.guided-demo-scenario__num,
.guided-demo-scenario__outcome,
.guided-demo__panel-label,
.guided-demo__chat-channel,
.guided-demo__chat-stage {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guided-demo-scenario__num {
  color: var(--brand);
}

.guided-demo-scenario__outcome {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 93, 84, 0.08);
  color: var(--brand-strong);
}

.guided-demo-scenario__title,
.guided-demo__chat-top h3,
.guided-demo__panel-head h3,
.guided-demo__result strong {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.guided-demo-scenario__title {
  font-size: 21px;
  line-height: 1.08;
}

.guided-demo-scenario__copy {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.guided-demo__chat {
  grid-area: chat;
  min-width: 0;
  min-height: 0;
  height: var(--guided-demo-balanced-height, 100%);
  padding: 22px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
  gap: 10px;
  overflow: hidden;
}

.guided-demo__chat-top {
  display: flex;
  flex-direction: column;
}

.guided-demo__chat-copy {
  display: grid;
  gap: 4px;
  align-content: start;
}

.guided-demo__chat-top h3 {
  margin-top: 4px;
  font-size: clamp(22px, 2.7vw, 29px);
  line-height: 0.98;
}

.guided-demo__chat-top p {
  margin: 0;
  max-width: 42ch;
  color: var(--text-on-dark-soft);
  font-size: 13px;
  line-height: 1.42;
}

.guided-demo__chat-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  max-height: 100%;
  min-height: min(388px, 100%);
  padding: 16px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(6, 14, 13, 0.48), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.guided-demo__chat-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.guided-demo__chat-channel {
  color: var(--text-on-dark-soft);
}

.guided-demo__chat-stage {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(240, 216, 181, 0.12);
  color: var(--sand);
}

.guided-demo__chat-body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding-right: 4px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 216, 181, 0.28) transparent;
}

.guided-demo__chat-body::-webkit-scrollbar {
  width: 8px;
}

.guided-demo__chat-body::-webkit-scrollbar-track {
  background: transparent;
}

.guided-demo__chat-body::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(240, 216, 181, 0.28);
  background-clip: padding-box;
}

.guided-demo__chat-thread {
  flex: 1 1 auto;
  min-height: 0;
}

.guided-demo__chat-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guided-demo__chat-outcome {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
}

.guided-demo__explain {
  grid-area: explain;
  min-width: 0;
  min-height: 0;
  height: var(--guided-demo-balanced-height, 100%);
  padding: 18px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(15, 93, 84, 0.1), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(15, 93, 84, 0.16);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 12px;
  align-content: start;
}

.guided-demo__panel-label {
  color: var(--brand);
}

.guided-demo__panel-head {
  display: grid;
  gap: 5px;
}

.guided-demo__panel-head h3 {
  margin-top: 0;
  font-size: 23px;
  line-height: 1.02;
}

.guided-demo__panel-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.48;
}

.guided-demo__state-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  align-self: start;
  align-content: start;
}

.guided-demo__state {
  position: relative;
  padding: 10px 12px 10px 34px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(22, 36, 33, 0.08);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

.guided-demo__state::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(87, 104, 100, 0.3);
  box-shadow: 0 0 0 4px rgba(87, 104, 100, 0.08);
}

.guided-demo__state strong {
  display: block;
  font-size: 13px;
  line-height: 1.32;
}

.guided-demo__state p {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.42;
}

.guided-demo__state.is-current {
  background: linear-gradient(180deg, rgba(15, 93, 84, 0.14), rgba(255, 255, 255, 0.96));
  border-color: rgba(15, 93, 84, 0.24);
  box-shadow:
    0 0 0 1px rgba(15, 93, 84, 0.08),
    0 12px 24px rgba(15, 93, 84, 0.08);
}

.guided-demo__state.is-current::before {
  background: linear-gradient(135deg, var(--brand), var(--signal));
  box-shadow: 0 0 0 6px rgba(15, 93, 84, 0.1);
}

.guided-demo__state.is-done::before {
  background: linear-gradient(135deg, var(--ok), var(--brand));
  box-shadow: 0 0 0 5px rgba(45, 134, 87, 0.1);
}

.guided-demo__state.is-unused {
  opacity: 0.42;
}

.guided-demo__result {
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 36, 33, 0.1);
}

.guided-demo__result strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.08;
}

.guided-demo__result p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.46;
}

.guided-demo__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(22, 36, 33, 0.08);
}

.guided-demo__footer p {
  margin: 0;
  max-width: 720px;
  color: var(--text-soft);
}

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

.section__note {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 600;
}

.section__split--decision {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 26px;
  align-items: start;
}

.impact-panel--decision {
  position: sticky;
  top: 108px;
  padding: clamp(22px, 2.2vw, 28px);
  display: grid;
  gap: 18px;
  align-content: start;
}

.impact-panel__intro {
  display: grid;
  gap: 10px;
}

.impact-panel__kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.impact-panel__term {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
}

.impact-panel--decision h3 {
  margin-top: 0;
  max-width: 12ch;
  font-size: clamp(28px, 2.7vw, 34px);
  color: var(--text-on-dark);
}

.impact-panel--decision p {
  color: var(--text-on-dark-soft);
}

.impact-panel__signals {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.impact-signal {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 3px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.impact-signal__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  grid-column: 1;
  grid-row: 1 / span 2;
}

.impact-signal strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
  grid-column: 2;
}

.impact-signal p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(247, 242, 235, 0.9);
  grid-column: 2;
}

.before-after {
  position: relative;
  gap: 0;
  margin-top: 16px;
  padding: 14px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.34));
  border: 1px solid rgba(22, 52, 47, 0.08);
  box-shadow: 0 16px 40px rgba(22, 36, 33, 0.05);
}

.before-after::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(22, 52, 47, 0.08), rgba(15, 93, 84, 0.03), rgba(22, 52, 47, 0.08));
  transform: translateX(-0.5px);
}

.impact-panel__decision {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 8px;
}

.impact-panel__decision strong {
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
}

.impact-panel__decision p {
  margin: 0;
  color: var(--text-on-dark-soft);
}

.impact-panel--decision .btn {
  width: 100%;
}

.impact-panel--decision.impact-panel--decision--static {
  position: static;
  top: auto;
}

body[data-webchat-sticky-muted="1"] .webchat-sticky {
  display: none;
}

.pricing-aside-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.pricing-aside-card ul,
.price-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.pricing-grid--packages {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  align-items: start;
  position: relative;
}

.pricing-grid--packages.is-masonry {
  display: block;
}

.pricing-grid--packages.is-masonry .price-card {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), width 180ms ease;
}

.price-card {
  padding: calc(var(--card-pad) + 2px);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  align-content: start;
  gap: 12px;
}

.pricing-grid:not(.pricing-grid--packages) .price-card {
  display: flex;
  flex-direction: column;
}

.pricing-grid:not(.pricing-grid--packages) .price-card .btn {
  margin-top: auto;
}

.price-card--package {
  position: relative;
}

.price-card--featured {
  position: relative;
  border-color: rgba(15, 93, 84, 0.28);
  box-shadow: 0 0 0 1px rgba(15, 93, 84, 0.14), 0 20px 50px rgba(15, 93, 84, 0.12);
}

.price-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 93, 84, 0.12);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card__head {
  display: grid;
  gap: 8px;
}

.price-card__eyebrow {
  color: var(--brand);
}

.price-card__summary {
  min-height: 0;
}

.price-card__note {
  color: var(--ok);
  font-weight: 800;
}

.price-card__save {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.price-card__section {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(22, 36, 33, 0.08);
}

.price-card__section-label {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  line-height: 1.55;
}

.price-card__list--muted {
  color: var(--text-soft);
}

.price-card__list--boundaries {
  font-weight: 800;
}

.price-card__details {
  padding-top: 12px;
  border-top: 1px solid rgba(22, 36, 33, 0.08);
}

.price-card__details-summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  list-style: none;
  transition: color 180ms ease;
}

.price-card__details-summary::-webkit-details-marker {
  display: none;
}

.price-card__details-summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 93, 84, 0.08);
  color: var(--brand);
  font-size: 16px;
  line-height: 1;
  transition: transform 220ms ease, background-color 180ms ease, color 180ms ease;
}

.price-card__details[open] .price-card__details-summary::after {
  transform: rotate(135deg);
  background: rgba(15, 93, 84, 0.14);
}

.price-card__details-summary:focus-visible {
  outline: 3px solid rgba(15, 93, 84, 0.22);
  outline-offset: 4px;
  border-radius: 10px;
}

.price-card__details-body {
  display: grid;
  gap: 12px;
  padding-top: 12px;
}

.price-card__details[open] .price-card__details-summary {
  color: var(--brand);
}

@media (prefers-reduced-motion: no-preference) {
  .price-card__details[open] .price-card__details-body {
    animation: price-card-details-reveal 220ms cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: top center;
  }
}

@keyframes price-card-details-reveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price__value {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price__period {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
}

.pricing-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(22, 36, 33, 0.08);
}

.pricing-footer p {
  margin: 0;
  max-width: 720px;
  color: var(--text-soft);
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.faq details {
  padding: 18px var(--card-pad);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.faq summary:focus-visible {
  outline: 3px solid rgba(15, 93, 84, 0.26);
  outline-offset: 4px;
  border-radius: 10px;
}

.demo-box {
  padding: calc(var(--card-pad) + 8px);
}

.demo-box--compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.demo-box--compact > div:first-child {
  min-width: 0;
}

.demo-box--compact .section__header {
  max-width: 720px;
}

.demo-note {
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-soft);
}

.consultant-box {
  padding: calc(var(--card-pad) + 8px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(520px 260px at 100% 0%, rgba(15, 93, 84, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(251, 247, 240, 0.98) 0%, rgba(244, 238, 227, 0.96) 100%);
}

.consultant-box__copy {
  flex: 1 1 auto;
  min-width: 0;
}

.consultant-box__actions {
  width: min(320px, 100%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.consultant-box__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.consultant-chip {
  appearance: none;
  border: 1px solid rgba(15, 93, 84, 0.16);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(22, 36, 33, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.consultant-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 93, 84, 0.28);
  box-shadow: 0 16px 32px rgba(22, 36, 33, 0.1);
}

.consultant-chip:focus-visible {
  outline: 3px solid rgba(15, 93, 84, 0.26);
  outline-offset: 2px;
}

.consultant-box__note {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--text-soft);
}

.webchat-sticky {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 48;
}

.webchat-sticky__card {
  width: min(320px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(15, 93, 84, 0.16);
  background:
    radial-gradient(220px 120px at 100% 0%, rgba(15, 93, 84, 0.16), transparent 72%),
    rgba(255, 253, 249, 0.96);
  box-shadow: 0 22px 48px rgba(22, 36, 33, 0.16);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.webchat-sticky__eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.webchat-sticky__card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.15;
}

.webchat-sticky__card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft);
}

.offer__actions,
.footer__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 20px 0 48px;
}

.footer__box {
  padding: calc(var(--card-pad) + 6px) calc(var(--card-pad) + 8px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(540px 260px at 100% 0%, rgba(240, 216, 181, 0.15), transparent 70%),
    linear-gradient(180deg, #18312d 0%, #10211f 100%);
  color: var(--text-on-dark);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__content {
  flex: 1 1 620px;
  display: grid;
  gap: 12px;
}

.footer__box h3 {
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.02;
  max-width: 14ch;
}

.footer__box p {
  color: var(--text-on-dark-soft);
  max-width: 58ch;
}

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

.footer__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer__actions {
  align-self: flex-end;
  justify-content: flex-end;
}

.footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  color: var(--text-soft);
}

.footer__brand {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer__links a {
  color: inherit;
  text-decoration: none;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--text);
}

.footer__links a:focus-visible {
  outline: 2px solid rgba(15, 93, 84, 0.28);
  outline-offset: 3px;
  border-radius: 6px;
}

.pricing-shell {
  padding: 28px 0 54px;
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  gap: 18px;
  padding: var(--panel-pad);
}

.pricing-hero__copy {
  min-width: 0;
}

.pricing-hero h1 {
  margin-top: 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.98;
  max-width: 11ch;
}

.pricing-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pricing-hero__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 93, 84, 0.08);
  border: 1px solid rgba(15, 93, 84, 0.12);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.pricing-hero__aside {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.pricing-aside-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-aside-card p,
.pricing-aside-card li {
  color: var(--text-on-dark-soft);
}

.pricing-aside-card__decision-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.pricing-aside-card__decision-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-aside-card__decision-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

.pricing-aside-card__decision-item p {
  margin: 6px 0 0;
  line-height: 1.55;
}

.pricing-aside-card--soft {
  background: rgba(255, 255, 255, 0.04);
}

.cycle-switch {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(22, 36, 33, 0.06);
  border: 1px solid rgba(22, 36, 33, 0.08);
}

.cycle-switch .btn {
  min-height: 42px;
  padding: 10px 16px;
}

.cycle-switch .btn.is-active {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  border-color: transparent;
}

.cycle-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-soft);
}

.enterprise-band {
  margin-top: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
}

.enterprise-band__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 12px;
}

.enterprise-band__meta div {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(22, 36, 33, 0.06);
  text-align: center;
}

.enterprise-band__meta strong {
  display: block;
  font-size: 18px;
}

.enterprise-band__meta span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.pricing-compare {
  margin-top: 18px;
}

.pricing-compare .section__header + .pricing-compare__table {
  margin-top: 20px;
}

.pricing-compare__table {
  display: grid;
  gap: 0;
  overflow: auto;
  border: 1px solid rgba(22, 36, 33, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.pricing-compare__row {
  display: grid;
  grid-template-columns: minmax(190px, 1.2fr) repeat(4, minmax(180px, 1fr));
  min-width: 980px;
}

.pricing-compare__row + .pricing-compare__row {
  border-top: 1px solid rgba(22, 36, 33, 0.08);
}

.pricing-compare__cell {
  padding: 16px;
  background: var(--surface-strong);
  line-height: 1.55;
}

.pricing-compare__cell + .pricing-compare__cell {
  border-left: 1px solid rgba(22, 36, 33, 0.08);
}

.pricing-compare__cell--label {
  font-weight: 800;
  background: rgba(22, 36, 33, 0.04);
}

.pricing-compare__cell--plan {
  font-weight: 800;
}

.pricing-compare__cell--recommended {
  color: var(--brand);
}

.pricing-compare__row--head .pricing-compare__cell {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-compare__footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#how-it-works .feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1279px) {
  :root {
    --section-space: 50px;
    --hero-top-pad: 18px;
    --hero-gap: 18px;
    --panel-pad: 28px;
    --card-pad: 20px;
    --scene-pad: 20px;
    --scene-top-clearance: 48px;
    --scene-stack-gap: 14px;
    --scene-chat-height: clamp(410px, 34vw, 500px);
    --scene-chat-width: calc(100% + 40px);
    --scene-chat-shift-x: -40px;
    --scene-chat-shift-y: -10px;
    --scene-chat-rotate: -1deg;
    --scene-chat-float-x: 2px;
    --scene-chat-float-y: -5px;
    --scene-chat-float-rotate: 0.25deg;
    --scene-stack-right: 0px;
    --scene-stack-top: 14px;
    --scene-card-handoff-x: -12px;
    --scene-card-handoff-y: 4px;
    --scene-card-handoff-rotate: 1.2deg;
    --scene-card-handoff-float-x: -2px;
    --scene-card-handoff-float-y: -3px;
    --scene-card-handoff-float-rotate: -0.15deg;
    --scene-card-proof-x: -10px;
    --scene-card-proof-y: 6px;
    --scene-card-proof-rotate: -0.7deg;
    --scene-card-proof-float-x: -1px;
    --scene-card-proof-float-y: -3px;
    --scene-card-proof-float-rotate: 0.12deg;
  }

  .hero {
    grid-template-columns: minmax(0, 1.06fr) minmax(350px, 0.94fr);
  }

  .hero__visual {
    padding: 28px 28px 26px;
  }

  .hero__lead {
    margin-top: 16px;
  }

  .hero__microcopy {
    margin-top: 12px;
  }

  .product-scene {
    grid-template-columns: minmax(0, 1.48fr) minmax(0, 1.02fr);
    gap: 14px 12px;
    min-height: max(calc(var(--scene-chat-height) + var(--scene-top-clearance) + 6px), 560px);
  }

  .product-scene__orb--amber {
    width: 116px;
    height: 116px;
  }

  .product-scene__orb--green {
    width: 148px;
    height: 148px;
    right: -20px;
    bottom: -26px;
  }

  .product-scene__signal {
    max-width: 200px;
    padding: 7px 11px;
    font-size: 9px;
  }

  .product-scene__stack {
    width: calc(100% + var(--scene-stack-right));
  }

  .floating-card h3,
  .hero-outcome-card h3 {
    font-size: 20px;
  }

  .floating-list li,
  .proof-checklist li,
  .floating-card__note {
    font-size: 13px;
  }
}

@media (max-width: 1100px) {
  .guided-demo__layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
    grid-template-areas:
      "scenarios scenarios"
      "chat explain";
  }

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

  .guided-demo__chat-shell {
    min-height: 360px;
  }

  .guided-demo__footer,
  .demo-box--compact,
  .consultant-box {
    align-items: stretch;
  }
}

@media (max-width: 1023px) {
  .hero,
  .pricing-hero,
  .section__split,
  .enterprise-band {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid,
  .feature-grid,
  .proof-grid,
  .value-grid,
  .role-grid,
  .fit-grid,
  .demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-footer,
  .footer__box,
  .consultant-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    padding-top: 12px;
  }

  .topbar__row {
    gap: 12px;
    padding: 12px 14px;
    border-radius: 28px;
  }

  .nav {
    gap: 8px;
  }

  .nav__link {
    padding: 8px 10px;
    font-size: 13px;
  }

  .nav .btn {
    min-height: 46px;
    padding: 11px 16px;
    font-size: 13px;
  }

  .nav__label--full,
  .topbar__cta-label--full {
    display: none;
  }

  .nav__label--compact,
  .topbar__cta-label--compact {
    display: inline;
  }

  .hero__main,
  .hero__visual,
  .pricing-hero,
  .demo-box,
  .consultant-box,
  .footer__box {
    padding: var(--panel-pad);
  }

  .visual-stack,
  .compare-grid,
  .scenario-grid,
  .pricing-grid,
  .feature-grid,
  .proof-grid,
  .value-grid,
  .role-grid,
  .fit-grid,
  .demo-grid,
  .enterprise-band__meta,
  .before-after {
    grid-template-columns: 1fr;
  }

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

  .section__split--problem {
    grid-template-areas:
      "problem"
      "impact";
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .problem-stage .section__header h2 {
    max-width: 16ch;
    font-size: clamp(26px, 5.3vw, 33px);
  }

  .problem-list::before {
    display: none;
  }

  .section__split--decision {
    gap: 18px;
  }

  .problem-step {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .problem-step__meta {
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .before-after {
    gap: 14px;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }

  .before-after::before {
    display: none;
  }

  .problem-cta {
    grid-template-columns: 1fr;
    padding: 20px 22px;
  }

  .problem-cta .btn {
    width: 100%;
  }

  .impact-panel--decision {
    position: static;
    top: auto;
  }

  #how-it-works .feature-grid {
    grid-template-columns: 1fr;
  }

  .price-card__summary {
    min-height: auto;
  }

  .pricing-compare__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-hero__trust {
    margin-top: 16px;
  }

  .product-scene__orb--amber {
    width: 112px;
    height: 112px;
    left: -10px;
    top: 8px;
  }

  .product-scene__orb--green {
    width: 148px;
    height: 148px;
    right: -20px;
    bottom: -24px;
  }

  .product-scene {
    display: grid;
    flex: 0 0 auto;
    min-height: 0;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "chat"
      "stack";
    max-height: none;
    gap: 14px;
    padding-top: 24px;
  }

  .scene-device--chat {
    order: 1;
    align-self: stretch;
    width: 100%;
    --scene-chat-height: clamp(360px, 54vw, 500px);
    --scene-chat-shift-x: 0px;
    --scene-chat-shift-y: 0px;
    --scene-chat-rotate: -0.6deg;
    --scene-chat-float-x: 1px;
    --scene-chat-float-y: -4px;
    --scene-chat-float-rotate: 0.2deg;
  }

  .product-scene__stack {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    order: 2;
    padding-top: 0;
    padding-left: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: auto;
    grid-row: auto;
    align-content: start;
    align-self: auto;
  }

  .floating-card--handoff {
    --scene-card-handoff-x: 0px;
    --scene-card-handoff-y: 0px;
    --scene-card-handoff-rotate: 0.9deg;
    --scene-card-handoff-float-x: -1px;
    --scene-card-handoff-float-y: -2px;
    --scene-card-handoff-float-rotate: -0.08deg;
  }

  .floating-card--proof {
    --scene-card-proof-x: 0px;
    --scene-card-proof-y: 0px;
    --scene-card-proof-rotate: -0.7deg;
    --scene-card-proof-float-x: -1px;
    --scene-card-proof-float-y: -2px;
    --scene-card-proof-float-rotate: 0.08deg;
    -webkit-mask: none;
    mask: none;
  }

  .product-scene__signal {
    position: static;
    order: 4;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    animation-duration: 9s;
  }

  .product-scene__signal--reply {
    order: 4;
  }

  .product-scene__signal--handoff {
    order: 5;
  }

  .hero-outcomes__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .guided-demo {
    gap: 20px;
  }

  .guided-demo__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "scenarios"
      "chat"
      "explain";
  }

  .guided-demo__scenarios {
    grid-template-columns: 1fr;
  }

  .guided-demo__chat,
  .guided-demo__explain,
  .guided-demo__chat-shell {
    min-height: 0;
    height: auto;
  }

  .guided-demo__chat-shell {
    min-height: 336px;
    max-height: 440px;
  }

  .guided-demo__footer,
  .demo-box--compact,
  .consultant-box {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 40px;
    --hero-top-pad: 14px;
    --hero-gap: 16px;
    --panel-pad: 20px;
    --card-pad: 18px;
    --scene-pad: 18px;
  }

  .container {
    padding: 0 16px;
  }

  .topbar {
    padding-top: max(12px, calc(env(safe-area-inset-top) + 6px));
  }

  .topbar__row {
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 26px;
  }

  .topbar__menu-toggle,
  .topbar__backdrop {
    display: inline-flex;
  }

  .topbar__menu-toggle {
    flex: 0 0 auto;
  }

  .topbar__menu-toggle-text {
    white-space: nowrap;
  }

  .nav {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(22, 36, 33, 0.08);
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.995);
    box-shadow: 0 24px 54px rgba(22, 36, 33, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 3;
  }

  .nav__links,
  .nav__actions {
    width: 100%;
  }

  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav__actions {
    margin-left: 0;
  }

  .nav__link {
    display: block;
    padding: 10px 4px;
    font-size: 16px;
  }

  .brand__meta {
    display: none;
  }

  .nav .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .topbar__cta-label--full {
    display: inline;
  }

  .topbar__cta-label--compact,
  .nav__label--full {
    display: none;
  }

  .nav__label--compact {
    display: inline;
  }

  body.has-topbar-nav-open {
    overflow: hidden;
  }

  .topbar.is-nav-open {
    z-index: 80;
  }

  .topbar.is-nav-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .topbar.is-nav-open .topbar__backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .topbar.is-nav-open .topbar__menu-toggle-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .topbar.is-nav-open .topbar__menu-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-nav-open .topbar__menu-toggle-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-inline: 0;
    gap: var(--hero-gap);
  }

  body[data-track-source="landing_index"] main > .section {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  body[data-track-source="landing_index"] main > .section.section--dark {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  body[data-track-source="landing_index"] main > .section.section--contrast {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  body[data-track-source="landing_index"] .footer {
    margin-top: 18px;
  }

  .hero__main,
  .hero__visual,
  .pricing-hero,
  .pricing-hero__aside,
  .demo-box,
  .consultant-box,
  .footer__box,
  .impact-panel,
  .enterprise-band {
    padding: var(--panel-pad);
  }

  .hero h1,
  .pricing-hero h1 {
    max-width: none;
  }

  .guided-demo {
    padding: var(--panel-pad);
    gap: 18px;
  }

  .guided-demo__chat,
  .guided-demo__explain {
    padding: 20px;
  }

  .guided-demo__chat-top h3,
  .guided-demo__panel-head h3 {
    font-size: 21px;
  }

  .impact-panel--decision h3 {
    font-size: 28px;
  }

  .impact-panel__figure {
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .impact-panel__figure-copy {
    padding-bottom: 0;
  }

  .impact-panel__figure-copy strong {
    font-size: 24px;
  }

  .impact-signal strong {
    font-size: 18px;
  }

  .impact-panel--problem .impact-panel__figure-copy p {
    color: rgba(247, 242, 235, 0.98);
  }

  .impact-panel--problem .impact-panel__note p,
  .impact-panel--problem .impact-signal p {
    color: rgba(247, 242, 235, 0.98);
  }

  .guided-demo__chat-shell {
    min-height: 300px;
    padding: 16px;
  }

  .guided-demo__chat-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .guided-demo-scenario {
    min-height: 0;
    padding: 16px;
  }

  .guided-demo__state {
    padding: 11px 14px 11px 38px;
  }

  .guided-demo__state::before {
    left: 14px;
  }

  .guided-demo__result {
    padding: 14px;
  }

  .guided-demo__footer .btn,
  .demo-box--compact .btn,
  .consultant-box__actions .btn {
    width: 100%;
  }

  .scenario-grid--compact {
    grid-template-columns: 1fr;
  }

  .consultant-box__actions {
    width: 100%;
  }

  .consultant-chip {
    width: 100%;
    text-align: left;
  }

  .scene-header p {
    font-size: 14px;
  }

  .product-scene {
    gap: 12px;
  }

  .product-scene__orb--amber {
    width: 92px;
    height: 92px;
    left: -6px;
    top: 10px;
  }

  .product-scene__orb--green {
    width: 122px;
    height: 122px;
    right: -12px;
    bottom: -12px;
  }

  .floating-card h3 {
    font-size: 22px;
  }

  .product-scene__stack {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-left: 0;
    gap: 12px;
  }

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

  .floating-card {
    padding: var(--card-pad);
  }

  .scene-device--chat {
    --scene-chat-height: clamp(320px, 92vw, 380px);
    --scene-chat-rotate: 0deg;
    --scene-chat-float-x: 0px;
    --scene-chat-float-y: 0px;
    --scene-chat-float-rotate: 0deg;
    animation: none;
  }

  .floating-card--handoff {
    animation: none;
    --scene-card-handoff-rotate: 0deg;
  }

  .floating-card--proof {
    animation: none;
    --scene-card-proof-rotate: 0deg;
    margin-top: 0;
  }

  .scene-device__bar {
    gap: 10px;
  }

  .scene-device--chat {
    padding: 16px;
  }

  .bubble p {
    font-size: 13px;
  }

  .bubble {
    max-width: 100%;
  }

  .hero__actions,
  .offer__actions,
  .footer__actions {
    width: 100%;
  }

  .hero__actions .btn,
  .offer__actions .btn,
  .footer__actions .btn,
  .pricing-footer .btn {
    width: 100%;
  }

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

  .impact-panel--decision .btn {
    width: 100%;
  }

  .problem-step__meta {
    grid-auto-flow: row;
    align-items: start;
    gap: 0;
    justify-items: start;
    text-align: left;
  }

  .problem-step__index {
    min-width: 42px;
    min-height: 42px;
  }

  .impact-panel__figure {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .impact-panel__figure-copy {
    padding-bottom: 0;
  }

  .impact-panel__figure-copy strong {
    font-size: 24px;
  }

  .impact-panel--problem {
    align-self: start;
    gap: 16px;
    height: auto;
  }

  .impact-panel--problem .impact-panel__hero {
    gap: 14px;
    padding: 16px;
  }

  .impact-panel--problem .impact-panel__note strong {
    font-size: 19px;
  }

  .impact-panel--problem .impact-panel__signals {
    gap: 0;
  }

  .impact-panel--problem .impact-signal {
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding: 11px 0;
  }

  .impact-panel--problem .impact-signal__label,
  .impact-panel--problem .impact-signal strong,
  .impact-panel--problem .impact-signal p {
    grid-column: 1;
    grid-row: auto;
  }

  .problem-cta {
    padding: 18px 18px 20px;
    gap: 14px;
  }

  .problem-cta__copy strong {
    font-size: 22px;
  }

  .problem-cta__copy p {
    max-width: 34ch;
    font-size: 14px;
  }

  .state-card {
    padding: 22px 20px 20px;
    box-shadow: 0 14px 32px rgba(22, 36, 33, 0.05);
  }

  .state-card h3 {
    font-size: 22px;
  }

  .state-card__list li {
    font-size: 14px;
  }

  .pricing-footer {
    gap: 12px;
  }
}

@media (max-width: 360px) {
  .hero__visual {
    gap: 12px;
  }

  .guided-demo__chat,
  .guided-demo__explain {
    padding: 18px;
  }

  .guided-demo__chat-top h3,
  .guided-demo__panel-head h3,
  .guided-demo__result strong {
    font-size: 18px;
  }

  .guided-demo__chat-shell {
    min-height: 276px;
    padding: 14px;
  }

  .guided-demo-scenario__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .guided-demo-scenario__title {
    font-size: 19px;
  }

  .guided-demo__state {
    padding-left: 38px;
  }

  .product-scene__signal {
    padding: 6px 10px;
    font-size: 9px;
  }

  .product-scene__stack {
    gap: 10px;
  }

  .scene-device--chat {
    --scene-chat-height: 292px;
  }

  .floating-card {
    padding: 14px;
  }

  .floating-card h3 {
    font-size: 18px;
  }

  .floating-list li,
  .proof-checklist li {
    font-size: 12px;
  }

  .floating-card__footer,
  .floating-card__note {
    font-size: 11px;
  }

  .webchat-sticky {
    display: none;
  }
}
