:root {
  --ink: #172731;
  --ink-2: #314650;
  --muted: #60737a;
  --soft: #66777d;
  --paper: #fbfcfb;
  --surface: #fff;
  --surface-2: #f3f6f5;
  --line: #dbe4e1;
  --line-strong: #c4d1ce;
  --coral: #f16852;
  --coral-dark: #b93e2f;
  --coral-soft: #fff0ec;
  --blue: #2879aa;
  --blue-soft: #eef7fc;
  --teal: #0b7c6f;
  --teal-soft: #eaf8f4;
  --amber: #a86d1e;
  --amber-soft: #fff7e8;
  --content: 1240px;
  --radius: 22px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 96px;
  --shadow-sm: 0 14px 40px rgba(23, 39, 49, 0.07);
  --shadow-lg: 0 28px 80px rgba(23, 39, 49, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
section[id] {
  scroll-margin-top: 82px;
}
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(40, 121, 170, 0.42);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.container {
  width: min(calc(100% - var(--space-6)), var(--content));
  margin-inline: auto;
}
.section {
  padding: var(--space-8) 0;
}
.section-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 0 var(--space-3);
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.section-label::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: radial-gradient(circle, var(--coral) 1.5px, transparent 1.7px) 0
    0/6px 6px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  color: var(--ink);
}
h1 {
  max-width: 650px;
  margin-bottom: var(--space-4);
  font-size: clamp(58px, 5.35vw, 78px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.01;
}
h1 .title-line {
  display: block;
}
h1 .accent {
  color: var(--coral);
}
h2 {
  margin-bottom: var(--space-4);
  font-size: clamp(40px, 4.35vw, 62px);
  font-weight: 780;
  letter-spacing: -0.043em;
  line-height: 1.04;
}
h3 {
  font-size: 21px;
  line-height: 1.25;
}
p {
  color: var(--muted);
  line-height: 1.65;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 23px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(23, 39, 49, 0);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: #243b47;
  box-shadow: 0 13px 28px rgba(23, 39, 49, 0.18);
}
.button:active {
  transform: translateY(1px) scale(0.985);
  box-shadow: 0 4px 12px rgba(23, 39, 49, 0.13);
}
.button-arrow {
  color: #8fd8ca;
  font-size: 17px;
  transition: transform 0.18s ease;
}
.button:hover .button-arrow {
  transform: translateX(3px);
}
.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 252, 251, 0.86);
  backdrop-filter: blur(18px);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.site-header.is-scrolled {
  border-color: rgba(219, 228, 225, 0.9);
  background: rgba(251, 252, 251, 0.95);
  box-shadow: 0 8px 25px rgba(23, 39, 49, 0.045);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height 0.2s ease;
}
.site-header.is-scrolled .header-inner {
  min-height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-lockup {
  display: block;
  width: auto;
  height: 32px;
}
.brand-symbol {
  display: none;
  width: 28px;
  height: 28px;
}
.embedded-brand-mark {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}
.header-cta {
  min-height: 42px;
  padding-inline: 18px;
}

.hero {
  position: relative;
  padding: 72px 0 94px;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -76px 0 0;
  background:
    linear-gradient(
      90deg,
      transparent 0 49.95%,
      rgba(23, 39, 49, 0.035) 50%,
      transparent 50.05%
    ),
    linear-gradient(rgba(23, 39, 49, 0.026) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 84px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 92%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(490px, 0.92fr) minmax(620px, 1.08fr);
  gap: clamp(38px, 4vw, 64px);
  align-items: center;
}
.hero-copy {
  position: relative;
}
.hero-copy::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -56px;
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, var(--coral) 2px, transparent 2.2px) 0
    0/12px 12px;
  opacity: 0.22;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--coral);
}
.hero-subtitle {
  max-width: 575px;
  margin-bottom: 30px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.62;
}
.workflow-wrap {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(196, 209, 206, 0.96);
  border-radius: 22px;
  padding: 22px 22px 17px;
  background-color: rgba(255, 255, 255, 0.96);
  background-image:
    linear-gradient(rgba(23, 39, 49, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 39, 49, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  box-shadow: 0 24px 60px rgba(23, 39, 49, 0.105);
  outline: none;
}
.workflow-wrap::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -52px;
  bottom: -66px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(11, 124, 111, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(11, 124, 111, 0.025),
    0 0 0 58px rgba(11, 124, 111, 0.018);
}
.workflow-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 0 2px;
}
.workflow-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 850;
}
.workflow-badge {
  border-bottom: 1px solid var(--line-strong);
  padding: 5px 0;
  color: var(--soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.workflow-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1.52fr 0.92fr 0.88fr 1fr;
  gap: 17px;
  align-items: stretch;
}
.workflow-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 14px;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--coral) 34%,
    var(--teal) 67%,
    var(--blue)
  );
  background-size: 200% 100%;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}
.workflow-wrap:is(:hover, :focus-visible) .workflow-grid::before {
  opacity: 1;
  animation: signal-flow 2.8s linear infinite;
}
@keyframes signal-flow {
  to {
    background-position: -200% 0;
  }
}
.workflow-beat {
  display: contents;
}
.workflow-node {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  border: 0;
  border-top: 2px solid var(--line-strong);
  padding: 21px 8px 9px;
  background: rgba(255, 255, 255, 0.86);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.workflow-node:hover {
  transform: translateY(-2px);
}
.direction-node {
  border-color: var(--blue);
  background: linear-gradient(
    180deg,
    rgba(238, 247, 252, 0.95),
    rgba(255, 255, 255, 0.78)
  );
}
.solution-node {
  margin-top: -7px;
  min-height: 192px;
  border: 1px solid rgba(241, 104, 82, 0.42);
  border-top: 3px solid var(--coral);
  border-radius: 12px;
  padding: 19px 13px 12px;
  background: rgba(255, 248, 246, 0.96);
  box-shadow: 0 12px 26px rgba(185, 62, 47, 0.085);
}
.build-node {
  border-color: var(--teal);
}
.signal-node {
  border-color: var(--blue);
  background: linear-gradient(
    180deg,
    rgba(238, 247, 252, 0.88),
    rgba(255, 255, 255, 0.75)
  );
}
.adapt-node {
  border-color: var(--teal);
  background: linear-gradient(
    180deg,
    rgba(234, 248, 244, 0.9),
    rgba(255, 255, 255, 0.76)
  );
}
.node-number {
  position: absolute;
  top: -15px;
  left: 8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  box-shadow: 0 0 0 1px var(--line-strong);
}
.solution-node .node-number {
  top: -17px;
  background: var(--coral);
  box-shadow: 0 0 0 1px rgba(241, 104, 82, 0.5);
}
.build-node .node-number,
.adapt-node .node-number {
  background: var(--teal);
}
.signal-node .node-number {
  background: var(--blue);
}
.node-label {
  display: block;
  margin: 0 0 8px;
  color: var(--soft);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.workflow-node > strong {
  display: block;
  font-size: 11px;
  line-height: 1.35;
}
.node-detail {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.4;
}
.direction-stack {
  display: grid;
  gap: 6px;
}
.direction-item {
  border-left: 2px solid var(--blue);
  padding: 3px 0 3px 7px;
}
.direction-item:nth-child(2) {
  border-color: var(--teal);
}
.direction-item:nth-child(3) {
  border-color: var(--coral);
}
.direction-item span {
  display: block;
  color: var(--soft);
  font-size: 6px;
  font-weight: 800;
  text-transform: uppercase;
}
.direction-item strong {
  display: block;
  margin-top: 1px;
  font-size: 7px;
  line-height: 1.25;
}
.solution-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 7px;
  align-items: center;
}
.solution-half span {
  display: block;
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.solution-half strong {
  display: block;
  font-size: 9px;
  line-height: 1.28;
}
.effect-arrow {
  color: var(--coral);
  font-size: 15px;
  font-weight: 900;
}
.choice-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 11px;
  color: var(--coral-dark);
  font-size: 7px;
  font-weight: 900;
}
.choice-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 1px var(--coral);
}
.actor-pair {
  display: grid;
  gap: 5px;
  margin-top: auto;
}
.actor-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  padding: 5px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 7px;
  font-weight: 850;
}
.actor-chip i {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--ink-2);
  font-style: normal;
  font-size: 6px;
}
.actor-chip.agent {
  border-color: #c8e2dc;
  color: var(--teal);
}
.signal-bars {
  height: 40px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: auto;
  border-bottom: 1px solid var(--line-strong);
}
.signal-bars i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: #bcd4e0;
}
.signal-bars i:nth-child(3) {
  background: var(--coral);
}
.bar-height-92 {
  height: 92%;
}
.bar-height-90 {
  height: 90%;
}
.bar-height-82 {
  height: 82%;
}
.bar-height-78 {
  height: 78%;
}
.bar-height-76 {
  height: 76%;
}
.bar-height-63 {
  height: 63%;
}
.bar-height-55 {
  height: 55%;
}
.human-check {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--teal);
  font-size: 7px;
  font-weight: 900;
}
.human-check::before {
  content: "✓";
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid #b8ddd5;
  border-radius: 50%;
  background: #fff;
}
.workflow-loop {
  position: relative;
  grid-column: 2/6;
  height: 45px;
  margin: -2px 7% 0 7%;
  border-right: 2px solid rgba(11, 124, 111, 0.72);
  border-bottom: 2px solid rgba(11, 124, 111, 0.72);
  border-left: 2px solid rgba(11, 124, 111, 0.72);
  border-radius: 0 0 16px 16px;
  color: var(--teal);
}
.workflow-loop::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  transform: rotate(45deg);
}
.workflow-loop span {
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  max-width: 90%;
  padding: 3px 9px;
  background: #fff;
  color: #3e7169;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.workflow-caption {
  position: relative;
  z-index: 2;
  margin: 21px 4px 0;
  color: var(--soft);
  font-size: 8px;
  line-height: 1.45;
  text-align: center;
}

.why-now {
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.why-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 48px;
}
.why-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}
.why-heading p {
  max-width: 530px;
  margin: 0;
  font-size: 18px;
}
.pressure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.pressure-card {
  position: relative;
  min-height: 220px;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 28px 34px 30px 0;
  background: transparent;
}
.pressure-card + .pressure-card {
  padding-left: 34px;
}
.pressure-card:last-child {
  border-right: 0;
  padding-right: 0;
}
.pressure-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--coral);
  transition: width 0.25s ease;
}
.pressure-card:hover::after {
  width: 62px;
}
.pressure-number {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--coral-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pressure-number::before {
  content: "";
  width: 15px;
  height: 15px;
  background: radial-gradient(circle, var(--coral) 1.3px, transparent 1.5px) 0
    0/5px 5px;
}
.pressure-card h3 {
  max-width: 300px;
  margin-bottom: 12px;
  font-size: 25px;
  letter-spacing: -0.028em;
}
.pressure-card p {
  margin: 0;
  font-size: 14px;
}
.mechanism-bridge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  margin: 28px 0 0;
  border-left: 3px solid var(--teal);
  padding: 20px 0 20px 24px;
  background: linear-gradient(90deg, var(--teal-soft), transparent 76%);
}
.bridge-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #b9ddd5;
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  font-size: 20px;
  font-weight: 900;
}
.mechanism-bridge p {
  max-width: 900px;
  margin: 0;
  color: #315c55;
  font-size: 17px;
}
.mechanism-bridge strong {
  color: #204940;
}

.demo {
  background: var(--paper);
}
.demo-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 42px;
}
.demo-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}
.demo-heading p {
  max-width: 510px;
  margin: 0;
  font-size: 17px;
}
.demo-shell {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.demo-topbar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 0 22px;
  background: #f9fbfa;
}
.demo-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 900;
}
.demo-case {
  color: var(--soft);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.demo-context-ribbon {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 14px 22px;
  background: linear-gradient(
    90deg,
    var(--blue-soft),
    #fff 45%,
    var(--teal-soft)
  );
}
.ribbon-item {
  min-width: 0;
}
.ribbon-item span {
  display: block;
  margin-bottom: 3px;
  color: var(--soft);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ribbon-item strong {
  display: block;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ribbon-arrow {
  color: var(--line-strong);
  font-size: 15px;
}
.ribbon-selected {
  color: var(--blue);
}
.demo-layout {
  display: grid;
  grid-template-columns: 225px minmax(0, 1fr);
  min-height: 640px;
}
.demo-nav {
  border-right: 1px solid var(--line);
  padding: 24px 16px;
  background: #f7f9f8;
}
.demo-nav-label {
  margin: 0 0 15px;
  padding-left: 10px;
  color: var(--soft);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.demo-step {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 10px;
  align-items: center;
  border: 0;
  border-radius: 11px;
  padding: 11px 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.demo-step + .demo-step {
  margin-top: 4px;
}
.demo-step:hover {
  background: #fff;
  transform: translateX(2px);
}
.demo-step.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 7px 18px rgba(23, 39, 49, 0.06);
}
.demo-step-index {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--soft);
  font-size: 8px;
  font-weight: 900;
}
.demo-step.is-active .demo-step-index {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.demo-step strong {
  display: block;
  font-size: 10px;
}
.demo-step small {
  display: block;
  margin-top: 2px;
  color: var(--soft);
  font-size: 8px;
}
.demo-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px 38px 24px;
}
.demo-panel {
  display: none;
  flex: 1;
}
.demo-panel.is-active {
  display: block;
  animation: panel-in 0.28s ease forwards;
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.demo-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 27px;
}
.demo-panel-head h3 {
  max-width: 660px;
  margin: 0 0 8px;
  font-size: 31px;
  letter-spacing: -0.045em;
}
.demo-panel-head p {
  max-width: 650px;
  margin: 0;
  font-size: 14px;
}
.demo-stage-chip {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.panel-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.context-card {
  min-height: 165px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 17px;
  background: #fbfdfc;
}
.context-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--soft);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.context-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.38;
}
.context-card p {
  margin: 13px 0 0;
  font-size: 10px;
  line-height: 1.45;
}
.source-foot {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--soft);
  font-size: 8px;
}
.source-foot i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.demo-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.demo-option {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.demo-option:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.demo-option.is-selected {
  border-color: var(--blue);
  background: var(--blue-soft);
  box-shadow: 0 0 0 2px rgba(40, 121, 170, 0.08);
}
.option-radio {
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
}
.demo-option.is-selected .option-radio {
  border: 5px solid var(--blue);
}
.demo-option h4 {
  margin: 18px 0 8px;
  font-size: 15px;
}
.demo-option p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
}
.demo-option-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--soft);
  font-size: 8px;
  font-weight: 850;
}
.demo-option.is-selected .demo-option-footer {
  color: var(--blue);
}
.expectation-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  border-left: 3px solid var(--blue);
  padding: 12px 14px;
  background: var(--blue-soft);
  color: #355b6f;
  font-size: 11px;
  line-height: 1.45;
}
.expectation-callout span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.execution-handoff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  border: 1px solid #bfe0d8;
  border-radius: 14px;
  padding: 13px 15px;
  background: var(--teal-soft);
}
.execution-handoff span {
  color: #4b756e;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}
.execution-handoff strong {
  display: block;
  margin-top: 3px;
  color: #245d53;
  font-size: 13px;
}
.handoff-status {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 6px 8px;
  background: #fff;
  color: var(--teal);
  font-size: 8px;
  font-weight: 900;
}
.work-list {
  border-top: 1px solid var(--line);
}
.work-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 120px 72px;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
  padding: 8px 5px;
}
.work-type {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
}
.work-type i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--surface-2);
  font-style: normal;
  font-size: 8px;
}
.work-type.agent i {
  background: var(--blue-soft);
  color: var(--blue);
}
.work-copy strong {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
}
.work-copy span,
.work-owner {
  color: var(--soft);
  font-size: 9px;
}
.work-state {
  justify-self: end;
  border-radius: 999px;
  padding: 6px 8px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
}
.work-state.is-done {
  background: var(--teal-soft);
  color: var(--teal);
}
.work-state.is-active {
  background: var(--blue-soft);
  color: var(--blue);
}
.signal-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}
.signal-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 19px;
  background: #fff;
}
.demo-kpi-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.demo-kpi-top span {
  display: block;
  color: var(--soft);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}
.demo-kpi-top strong {
  display: block;
  margin-top: 3px;
  font-size: 26px;
}
.demo-kpi-top b {
  color: var(--coral-dark);
  font-size: 10px;
}
.demo-chart {
  height: 185px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 16px;
  border-bottom: 1px solid var(--line);
  padding: 0 10px;
}
.demo-chart i {
  position: relative;
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: #c9dce5;
}
.demo-chart i.actual {
  background: var(--coral);
}
.demo-chart i.target {
  background: repeating-linear-gradient(
    -45deg,
    #cbd7d9 0,
    #cbd7d9 5px,
    #edf1f1 5px,
    #edf1f1 10px
  );
}
.chart-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  color: var(--soft);
  font-size: 8px;
}
.insight-card {
  border-color: #f0c5bc;
  background: var(--coral-soft);
}
.insight-card > span {
  color: var(--coral-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.insight-card h4 {
  margin: 17px 0 10px;
  font-size: 18px;
  line-height: 1.3;
}
.insight-card p {
  font-size: 11px;
}
.source-note {
  margin-top: 18px;
  border-top: 1px solid rgba(241, 104, 82, 0.25);
  padding-top: 14px;
  color: #805b54;
  font-size: 10px;
  line-height: 1.5;
}
.adapt-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 16px;
}
.selected-path {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 19px;
  background: var(--surface-2);
}
.selected-path span {
  color: var(--soft);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}
.selected-path strong {
  display: block;
  margin: 15px 0 9px;
  font-size: 17px;
}
.selected-path p {
  margin: 0;
  font-size: 11px;
}
.adapt-list {
  display: grid;
  gap: 8px;
}
.adapt-option {
  width: 100%;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
}
.adapt-option:hover {
  border-color: var(--line-strong);
}
.adapt-option.is-selected {
  border-color: var(--teal);
  background: var(--teal-soft);
}
.adapt-option .option-radio {
  margin-top: 1px;
}
.adapt-option.is-selected .option-radio {
  border: 5px solid var(--teal);
}
.adapt-option strong {
  display: block;
  font-size: 11px;
}
.adapt-option small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}
.adapt-result {
  margin-top: 15px;
  border-left: 3px solid var(--teal);
  padding: 13px 15px;
  background: var(--teal-soft);
  color: #2e6259;
  font-size: 11px;
  line-height: 1.5;
}
.human-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: var(--soft);
  font-size: 9px;
}
.human-line strong {
  color: var(--ink-2);
}
.demo-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.demo-control {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  background: #fff;
  cursor: pointer;
  color: var(--ink-2);
  font-size: 10px;
  font-weight: 850;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}
.demo-control:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}
.demo-control:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}
.demo-control.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.demo-position {
  color: var(--soft);
  font-size: 9px;
  font-weight: 850;
}
.demo-cta {
  text-align: center;
  margin-top: 30px;
}

.faq {
  border-top: 1px solid var(--line);
  background: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 108px;
}
.faq-intro p {
  max-width: 430px;
  margin: 0;
  font-size: 16px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 21px 3px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}
summary::-webkit-details-marker {
  display: none;
}
.faq-plus {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--ink-2);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
details[open] .faq-plus {
  border-color: #b7dcd4;
  background: var(--teal-soft);
  transform: rotate(90deg);
}
details[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-answer > div {
  overflow: hidden;
}
.faq-answer p {
  max-width: 670px;
  margin: 0;
  padding: 0 52px 25px 3px;
  font-size: 14px;
}
details[open] .faq-answer {
  grid-template-rows: 1fr;
}

.contact {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.contact::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(241, 104, 82, 0.09),
    rgba(241, 104, 82, 0) 68%
  );
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 82px;
  align-items: center;
}
.contact-copy h2 {
  max-width: 590px;
}
.contact-copy > p {
  max-width: 530px;
  font-size: 18px;
}
.paid-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.paid-note::before {
  content: "€";
  width: 22px;
  height: 22px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  background: var(--coral-soft);
  color: var(--coral-dark);
  font-weight: 900;
}
.contact-card {
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.form-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
}
.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  transition:
    width 0.2s ease,
    background 0.2s ease;
}
.progress-dot.is-active {
  width: 25px;
  border-radius: 999px;
  background: var(--blue);
}
.form-step {
  display: none;
}
.form-step.is-active {
  display: block;
  animation: panel-in 0.25s ease forwards;
}
.form-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-step h3 {
  margin-bottom: 8px;
  font-size: 25px;
  letter-spacing: -0.035em;
}
.form-intro {
  margin-bottom: 22px;
  font-size: 12px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  color: var(--ink-2);
  font-size: 10px;
  font-weight: 850;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.field textarea {
  min-height: 92px;
  resize: vertical;
  line-height: 1.45;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--line-strong);
}
.field [aria-invalid="true"] {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(241, 104, 82, 0.1);
}
.field-hint {
  color: var(--soft);
  font-size: 9px;
}
.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 17px;
}
.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}
.consent-field label {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}
.consent-field a,
.form-privacy a {
  color: var(--blue);
  font-weight: 800;
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}
.form-back {
  min-height: 42px;
  border: 0;
  padding: 0 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 850;
}
.form-actions .button {
  min-height: 46px;
}
.form-error {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--coral-dark);
  font-size: 10px;
}
.form-privacy {
  margin: 17px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--soft);
  font-size: 9px;
  line-height: 1.55;
}
.form-privacy strong {
  color: var(--muted);
}
.mailchimp-badge {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
  color: var(--soft);
  font-size: 9px;
}
.mailchimp-badge a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.mailchimp-badge a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f2bd2c;
  box-shadow: 0 0 0 3px #fff4c7;
}
.mailchimp-badge strong {
  color: var(--ink-2);
}
.honeypot {
  position: absolute !important;
  left: -5000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.configuration-note {
  display: none;
  margin: 14px 0 0;
  border-left: 3px solid var(--amber);
  padding: 9px 11px;
  background: var(--amber-soft);
  color: #71470e;
  font-size: 10px;
  line-height: 1.45;
}
.configuration-note.is-visible {
  display: block;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: #fff;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-copy,
.footer-note {
  margin: 0;
  color: var(--soft);
  font-size: 10px;
}
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.footer-meta a {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}
.footer-meta a:hover {
  text-decoration: underline;
}
.footer-note {
  font-weight: 750;
}
.demo-shell {
  border-top: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(23, 39, 49, 0.1);
}
.contact-card {
  border-top: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 0 22px 54px rgba(23, 39, 49, 0.09);
}

/* Editorial rhythm and hero composition */
.section {
  padding: var(--space-8) 0;
}
.section-label {
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
h1 {
  margin-bottom: var(--space-4);
}
h2 {
  margin-bottom: var(--space-4);
}
.hero {
  padding: var(--space-7) 0 88px;
}
.hero-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: var(--space-6);
  align-items: start;
}
.hero-copy {
  max-width: 590px;
}
.hero-copy::after {
  display: none;
}
.hero-eyebrow {
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.hero-subtitle {
  margin-bottom: var(--space-5);
}
.workflow-wrap {
  width: 100%;
  max-width: 580px;
  justify-self: end;
  margin-top: 40px;
  padding: var(--space-4) var(--space-4) var(--space-3);
}
.workflow-top {
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.workflow-grid {
  gap: var(--space-2);
}
.workflow-node {
  min-height: 166px;
}
.solution-node {
  min-height: 180px;
}
.workflow-loop {
  height: 40px;
  margin-top: 0;
}
.workflow-caption {
  margin-top: var(--space-3);
}
.why-heading,
.demo-heading {
  gap: var(--space-6);
}
.demo-heading {
  margin-bottom: var(--space-6);
}
.pressure-card + .pressure-card {
  padding-left: var(--space-5);
}
.mechanism-bridge {
  gap: var(--space-4);
  padding: var(--space-4) 0 var(--space-4) var(--space-4);
}
.faq-grid {
  gap: var(--space-7);
}
.contact-grid {
  gap: var(--space-7);
}
.paid-note {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
}
.site-footer {
  padding: var(--space-5) 0;
}
.mailchimp-badge {
  margin-top: 14px;
  color: inherit;
  font-size: inherit;
}
.mailchimp-badge a {
  display: block;
  width: 156px;
  border-radius: 8px;
  padding: 5px 7px;
  text-decoration: none;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.mailchimp-badge a::before {
  display: none;
}
.mailchimp-badge a:hover {
  background: var(--surface-2);
  transform: translateY(-1px);
}
.mailchimp-badge img {
  display: block;
  width: 100%;
  height: auto;
}

/* The workflow is a standalone, full-width explanation rather than a compressed hero illustration. */
.hero .hero-grid {
  display: block;
}
.hero .hero-copy {
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}
.hero h1 {
  max-width: 940px;
  margin-inline: auto;
}
.hero h1 .title-line {
  display: inline;
}
.hero .hero-subtitle {
  max-width: 720px;
  margin-inline: auto;
}
.workflow-section {
  border-top: 1px solid var(--line);
  padding: 72px 0 80px;
  background: #fff;
}
.workflow-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: var(--space-7);
  align-items: end;
  margin-bottom: var(--space-6);
}
.workflow-intro h2 {
  max-width: 760px;
  margin: 0;
}
.workflow-intro > p {
  max-width: 540px;
  margin: 0;
  font-size: 18px;
}
.workflow-section .workflow-wrap {
  width: 100%;
  max-width: none;
  justify-self: auto;
  margin-top: 0;
  padding: 30px 30px 22px;
}
.workflow-section .workflow-top {
  margin-bottom: 28px;
}
.workflow-section .workflow-title {
  font-size: 14px;
}
.workflow-section .workflow-badge {
  font-size: 10px;
}
.workflow-section .workflow-grid {
  gap: 20px;
}
.workflow-section .workflow-node {
  min-height: 210px;
  padding: 27px 15px 15px;
}
.workflow-section .solution-node {
  min-height: 224px;
  padding: 25px 17px 16px;
}
.workflow-section .node-number {
  font-size: 10px;
}
.workflow-section .node-label {
  font-size: 10px;
}
.workflow-section .workflow-node > strong {
  font-size: 14px;
}
.workflow-section .direction-item span,
.workflow-section .solution-half span {
  font-size: 10px;
}
.workflow-section .direction-item strong {
  font-size: 12px;
}
.workflow-section .solution-half strong {
  font-size: 13px;
}
.workflow-section .choice-pill,
.workflow-section .actor-chip,
.workflow-section .human-check {
  font-size: 10px;
}
.workflow-section .actor-chip i {
  font-size: 10px;
}
.workflow-section .node-detail {
  font-size: 11px;
}
.workflow-section .signal-node > strong,
.workflow-section .adapt-node > strong {
  font-size: 14px;
}
.workflow-section .workflow-loop span {
  font-size: 10px;
}

@media (max-width: 1120px) {
  .why-heading,
  .demo-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-heading p,
  .demo-heading p {
    max-width: 720px;
  }
  .demo-layout {
    grid-template-columns: 200px minmax(0, 1fr);
  }
  .demo-main {
    padding-inline: 28px;
  }
}
@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }
  .pressure-grid {
    grid-template-columns: 1fr;
  }
  .pressure-card,
  .pressure-card + .pressure-card,
  .pressure-card:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 27px 0 29px;
  }
  .pressure-card:last-child {
    border-bottom: 0;
  }
  .pressure-number {
    margin-bottom: 20px;
  }
  .demo-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .demo-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(100px, 1fr));
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px;
  }
  .demo-nav-label {
    display: none;
  }
  .demo-step {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }
  .demo-step + .demo-step {
    margin-top: 0;
  }
  .demo-step small {
    display: none;
  }
  .demo-main {
    min-height: 640px;
  }
  .context-grid,
  .demo-option-grid {
    grid-template-columns: 1fr;
  }
  .demo-option {
    min-height: 0;
  }
  .signal-grid,
  .adapt-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .faq-intro {
    position: static;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-copy {
    max-width: 720px;
  }
}
@media (max-width: 820px) {
  .workflow-grid {
    gap: 10px;
  }
  .workflow-node {
    padding-inline: 7px;
  }
  .solution-node {
    padding-inline: 10px;
  }
  .workflow-loop {
    margin-inline: 4%;
  }
  .direction-item strong {
    font-size: 6.5px;
  }
}
@media (max-width: 879px) {
  .workflow-top {
    margin-bottom: 15px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .workflow-grid::before {
    top: 9px;
    right: auto;
    bottom: 9px;
    left: 8px;
    width: 2px;
    height: auto;
    background: linear-gradient(
      var(--blue),
      var(--coral) 36%,
      var(--teal) 68%,
      var(--blue)
    );
    background-size: 100% 200%;
  }
  .workflow-beat {
    position: relative;
    display: grid;
    gap: 7px;
    border-left: 1px solid rgba(23, 39, 49, 0.08);
    padding-left: 18px;
  }
  .beat-direction {
    grid-template-columns: 1fr;
  }
  .beat-bet {
    grid-template-columns: minmax(0, 1.5fr) minmax(82px, 0.72fr);
  }
  .beat-learn {
    grid-template-columns: 1fr 1fr;
  }
  .workflow-node,
  .solution-node {
    min-height: 0;
    margin: 0;
    border: 1px solid var(--line);
    border-top: 2px solid var(--line-strong);
    border-radius: 8px;
    padding: 8px 8px 7px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
  }
  .direction-node {
    border-top-color: var(--blue);
    background: var(--blue-soft);
  }
  .solution-node {
    border-color: rgba(241, 104, 82, 0.38);
    border-top: 2px solid var(--coral);
    background: #fff8f6;
  }
  .build-node,
  .adapt-node {
    border-top-color: var(--teal);
  }
  .signal-node {
    border-top-color: var(--blue);
  }
  .node-number,
  .solution-node .node-number {
    top: 7px;
    left: 8px;
    width: 18px;
    height: 18px;
    border: 0;
    font-size: 7px;
    box-shadow: none;
  }
  .node-label {
    min-height: 18px;
    margin-bottom: 6px;
    padding-left: 24px;
    font-size: 6px;
    line-height: 1.3;
  }
  .direction-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }
  .direction-item {
    padding: 2px 3px 2px 5px;
  }
  .direction-item span {
    font-size: 5px;
  }
  .direction-item strong {
    font-size: 6.5px;
  }
  .solution-pair {
    gap: 5px;
  }
  .solution-half span {
    font-size: 5px;
  }
  .solution-half strong {
    font-size: 7.5px;
  }
  .effect-arrow {
    font-size: 12px;
  }
  .choice-pill {
    margin-top: 7px;
    font-size: 6px;
  }
  .choice-pill::before {
    width: 5px;
    height: 5px;
  }
  .node-detail {
    display: none;
  }
  .build-node > strong {
    font-size: 8px;
  }
  .actor-pair {
    gap: 4px;
    margin-top: 7px;
  }
  .actor-chip {
    gap: 3px;
    padding: 3px;
    font-size: 5.5px;
  }
  .actor-chip i {
    width: 13px;
    height: 13px;
    font-size: 5px;
  }
  .signal-node > strong,
  .adapt-node > strong {
    font-size: 9px;
  }
  .signal-bars {
    height: 25px;
  }
  .human-check {
    margin-top: 8px;
    font-size: 6px;
  }
  .human-check::before {
    width: 14px;
    height: 14px;
  }
  .workflow-loop {
    grid-column: 1;
    height: auto;
    margin: 0 0 0 18px;
    border: 1px solid #b9ddd5;
    border-radius: 8px;
    padding: 7px 10px;
    background: var(--teal-soft);
  }
  .workflow-loop::before {
    content: "↶";
    position: static;
    display: inline;
    margin-right: 6px;
    border: 0;
    font-size: 12px;
  }
  .workflow-loop span {
    position: static;
    display: inline;
    max-width: none;
    padding: 0;
    background: transparent;
    font-size: 6px;
    white-space: normal;
    transform: none;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--content));
  }
  .header-inner {
    min-height: 66px;
    gap: 12px;
  }
  .site-header.is-scrolled .header-inner {
    min-height: 58px;
  }
  .brand-lockup {
    display: block;
    height: 34px;
  }
  .brand-symbol {
    display: none;
  }
  .header-cta {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 10px;
  }
  .header-cta .button-arrow {
    display: none;
  }
  .hero {
    padding: 50px 0 68px;
  }
  .hero-copy::after {
    display: none;
  }
  h1 {
    font-size: clamp(43px, 12.8vw, 56px);
    font-weight: 800;
    letter-spacing: -0.026em;
    line-height: 1.03;
  }
  h1 .title-line {
    display: inline;
  }
  h2 {
    font-size: clamp(38px, 11.5vw, 52px);
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .workflow-wrap {
    border-radius: 16px;
    padding: 16px 12px 13px;
  }
  .workflow-badge {
    display: none;
  }
  .why-heading {
    margin-bottom: 32px;
  }
  .why-heading p {
    font-size: 16px;
  }
  .pressure-card h3 {
    font-size: 23px;
  }
  .mechanism-bridge {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px 0 0;
    padding: 18px 0 18px 18px;
  }
  .mechanism-bridge p {
    font-size: 15px;
  }
  .demo-heading {
    margin-bottom: 28px;
  }
  .demo-shell {
    border-radius: 18px;
  }
  .demo-topbar {
    min-height: 52px;
    padding: 0 14px;
  }
  .demo-case {
    font-size: 7px;
  }
  .demo-context-ribbon {
    grid-template-columns: 1fr auto 1fr;
    padding: 12px 14px;
  }
  .demo-context-ribbon .ribbon-item:last-child,
  .demo-context-ribbon .ribbon-arrow:nth-of-type(2) {
    display: none;
  }
  .demo-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow-x: visible;
    padding: 9px;
  }
  .demo-step {
    padding: 7px 2px;
  }
  .demo-step strong {
    font-size: 8px;
  }
  .demo-main {
    min-height: 670px;
    padding: 25px 16px 18px;
  }
  .demo-panel-head {
    display: block;
  }
  .demo-panel-head h3 {
    font-size: 26px;
  }
  .demo-stage-chip {
    display: inline-flex;
    margin-top: 10px;
  }
  .context-card {
    min-height: 0;
  }
  .execution-handoff {
    align-items: flex-start;
    flex-direction: column;
  }
  .work-row {
    grid-template-columns: 67px minmax(0, 1fr) 64px;
  }
  .work-owner {
    display: none;
  }
  .work-state {
    font-size: 6px;
  }
  .demo-chart {
    height: 150px;
  }
  .human-line {
    align-items: flex-start;
    flex-direction: column;
  }
  .demo-controls {
    flex-wrap: wrap;
  }
  .demo-position {
    order: -1;
    width: 100%;
    text-align: center;
  }
  .demo-control {
    flex: 1;
  }
  .faq-answer p {
    padding-right: 4px;
  }
  .contact-card {
    border-radius: 18px;
    padding: 22px 16px;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .form-actions .button {
    width: 100%;
  }
  .form-back {
    width: 100%;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 350px) {
  .container {
    width: min(calc(100% - 24px), var(--content));
  }
  .header-cta {
    padding-inline: 11px;
  }
  h1 {
    letter-spacing: -0.02em;
    line-height: 1.06;
  }
  .workflow-wrap {
    padding-inline: 9px;
  }
  .workflow-beat {
    padding-left: 15px;
  }
  .beat-bet {
    grid-template-columns: minmax(0, 1.4fr) minmax(76px, 0.72fr);
  }
  .workflow-loop {
    margin-left: 15px;
  }
  .demo-main {
    padding-inline: 12px;
  }
  .demo-control {
    padding-inline: 10px;
  }
  .contact-card {
    padding-inline: 13px;
  }
}
@media (min-width: 880px) and (max-width: 1279px) {
  .hero {
    padding: var(--space-6) 0 var(--space-7);
  }
  .hero-grid {
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    gap: var(--space-5);
    align-items: start;
  }
  .hero-copy {
    max-width: 470px;
  }
  h1 {
    max-width: 470px;
    font-size: clamp(52px, 5.4vw, 68px);
  }
  .workflow-wrap {
    max-width: 520px;
    justify-self: end;
    margin-top: 36px;
    padding: 18px var(--space-3) 14px;
  }
  .workflow-top {
    margin-bottom: var(--space-3);
  }
  .workflow-grid {
    gap: var(--space-1);
  }
  .workflow-node {
    min-height: 154px;
  }
  .solution-node {
    min-height: 168px;
    padding-inline: 10px;
  }
  .workflow-loop {
    height: 36px;
    margin-inline: 5%;
  }
  .workflow-caption {
    margin-top: var(--space-2);
  }
  .contact-grid {
    gap: var(--space-6);
  }
}
@media (max-width: 879px) {
  .hero {
    padding: var(--space-6) 0 var(--space-7);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .hero-copy {
    max-width: 720px;
  }
  .workflow-wrap {
    max-width: 720px;
    justify-self: center;
    margin-top: 0;
  }
  .contact-grid {
    gap: var(--space-6);
  }
}
@media (max-width: 900px) {
  .section {
    padding: var(--space-7) 0;
  }
  .pressure-card,
  .pressure-card + .pressure-card,
  .pressure-card:last-child {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
  }
  .pressure-number {
    margin-bottom: var(--space-4);
  }
  .faq-grid {
    gap: var(--space-6);
  }
}
@media (max-width: 700px) {
  .section {
    padding: 56px 0;
  }
  .why-heading,
  .demo-heading {
    margin-bottom: var(--space-5);
  }
  .mechanism-bridge {
    gap: var(--space-2);
    margin: var(--space-4) 0 0;
    padding: var(--space-3) 0 var(--space-3) var(--space-3);
  }
}
@media (max-width: 620px) {
  .hero {
    padding: 36px 0 56px;
  }
  .why-now.section {
    padding: 48px 0;
  }
  .why-now h2 {
    font-size: clamp(36px, 10.5vw, 42px);
  }
  .why-heading {
    margin-bottom: 24px;
  }
  .pressure-card,
  .pressure-card + .pressure-card,
  .pressure-card:last-child {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .pressure-number {
    margin-bottom: 12px;
  }
  .mechanism-bridge {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    margin-top: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.hero {
  padding: 16px 0 64px;
}
.hero .hero-grid {
  display: block;
}
@media (max-width: 1120px) {
  .workflow-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .workflow-intro > p {
    max-width: 720px;
  }
}
@media (max-width: 879px) {
  .hero {
    padding-top: 16px;
  }
  .workflow-section {
    padding: 56px 0;
  }
  .workflow-section .workflow-wrap {
    max-width: none;
    margin-top: 0;
    padding: 20px 16px 16px;
  }
  .workflow-section .workflow-top {
    margin-bottom: 18px;
  }
  .workflow-section .workflow-grid {
    gap: 10px;
  }
  .workflow-section .workflow-node,
  .workflow-section .solution-node {
    min-height: 0;
    padding: 14px 13px 12px;
  }
  .workflow-section .node-number,
  .workflow-section .solution-node .node-number {
    top: 10px;
    left: 11px;
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
  .workflow-section .node-label {
    min-height: 22px;
    margin-bottom: 9px;
    padding-left: 30px;
    font-size: 10px;
  }
  .workflow-section .direction-item span,
  .workflow-section .solution-half span {
    font-size: 10px;
  }
  .workflow-section .direction-item strong,
  .workflow-section .solution-half strong {
    font-size: 12px;
  }
  .workflow-section .workflow-node > strong,
  .workflow-section .signal-node > strong,
  .workflow-section .adapt-node > strong {
    font-size: 13px;
  }
  .workflow-section .choice-pill,
  .workflow-section .actor-chip,
  .workflow-section .human-check {
    font-size: 10px;
  }
  .workflow-section .actor-chip i {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }
  .workflow-section .workflow-loop span {
    font-size: 10px;
  }
}
@media (max-width: 620px) {
  .hero {
    padding-top: 12px;
  }
  .workflow-intro {
    margin-bottom: 28px;
  }
  .workflow-intro > p {
    font-size: 16px;
  }
  .workflow-section .beat-bet,
  .workflow-section .beat-learn {
    grid-template-columns: 1fr;
  }
  .workflow-section .direction-stack {
    grid-template-columns: 1fr;
  }
  .workflow-section .workflow-title {
    font-size: 12px;
  }
  .workflow-section .workflow-badge {
    display: none;
  }
  .workflow-section .direction-item {
    padding: 6px 7px;
  }
  .workflow-section .direction-item span,
  .workflow-section .solution-half span {
    font-size: 10px;
  }
  .workflow-section .direction-item strong,
  .workflow-section .solution-half strong {
    font-size: 12px;
  }
  .workflow-section .workflow-node > strong,
  .workflow-section .signal-node > strong,
  .workflow-section .adapt-node > strong {
    font-size: 13px;
  }
  .workflow-section .node-detail {
    display: block;
    font-size: 11px;
  }
  .workflow-section .choice-pill,
  .workflow-section .actor-chip,
  .workflow-section .human-check {
    font-size: 10px;
  }
  .workflow-section .workflow-loop span {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .workflow-wrap:is(:hover, :focus-visible) .workflow-grid::before {
    animation: none;
  }
}

/* Mailchimp signup response pages hosted on productvision.io */
.signup-status-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.status-back-link {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
}
.status-back-link:hover {
  color: var(--coral-dark);
}
.signup-status-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 72px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(40, 121, 170, 0.09), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(241, 104, 82, 0.1), transparent 30%),
    var(--paper);
}
.signup-status-shell {
  display: grid;
  justify-items: center;
}
.signup-status-card {
  width: min(100%, 680px);
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  border-radius: 22px;
  padding: 56px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}
.signup-status-card .section-label {
  margin-bottom: 20px;
}
.signup-status-card h1 {
  max-width: none;
  margin-bottom: 22px;
  font-size: clamp(48px, 6vw, 72px);
}
.signup-status-lead {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: 18px;
}
.signup-status-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 28px rgba(23, 39, 49, 0.18);
}
.signup-status-mark-check span {
  color: #8fd8ca;
  font-size: 30px;
  font-weight: 850;
}
.signup-status-mark-mail span {
  width: 28px;
  height: 20px;
  position: relative;
  display: block;
  border: 2px solid #fff;
  border-radius: 3px;
}
.signup-status-mark-mail span::after,
.signup-status-mark-mail span::before {
  content: "";
  position: absolute;
  top: 2px;
  width: 17px;
  height: 2px;
  background: #8fd8ca;
}
.signup-status-mark-mail span::before {
  left: 0;
  transform: rotate(34deg);
  transform-origin: left center;
}
.signup-status-mark-mail span::after {
  right: 0;
  transform: rotate(-34deg);
  transform-origin: right center;
}
.signup-status-note {
  display: grid;
  gap: 4px;
  margin-bottom: 32px;
  border-left: 3px solid var(--coral);
  padding: 13px 0 13px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.signup-status-note strong {
  color: var(--ink);
}
@media (max-width: 620px) {
  .status-back-link {
    font-size: 12px;
  }
  .signup-status-main {
    padding: 40px 0;
  }
  .signup-status-card {
    border-radius: 18px;
    padding: 36px 24px;
  }
  .signup-status-card h1 {
    font-size: clamp(42px, 13vw, 58px);
  }
  .signup-status-lead {
    font-size: 16px;
  }
}
