@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 400 900;
  font-display: optional;
  src: url("assets/fonts/heebo-hebrew-400-900.woff2") format("woff2");
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 400 900;
  font-display: optional;
  src: url("assets/fonts/heebo-latin-400-900.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url("assets/fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url("assets/fonts/ibm-plex-mono-latin-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f4f1e7;
  --paper-bright: #fffdf5;
  --sage: #e3e6d8;
  --sage-deep: #cbd2bd;
  --ink: #171913;
  --ink-soft: #4f5248;
  --line: #aeb1a4;
  --lime: #d5ff45;
  --coral: #ff6847;
  --coral-text-on-light: #c43c20;
  --blue: #4a6fff;
  --blue-surface: #3151d5;
  --white: #fffef9;
  --font-body: "Heebo", "Arial Hebrew", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --shell: 1220px;
  --border: 1.5px solid var(--ink);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.22em;
}

img,
svg {
  max-width: 100%;
}

p,
h1,
h2,
h3,
ul,
ol,
pre {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(3.3rem, 7.1vw, 6.5rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 1.3rem;
  font-size: clamp(2.55rem, 5.1vw, 5rem);
  font-weight: 900;
}

h3 {
  font-size: 1.55rem;
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ink);
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.section--sage {
  background: var(--sage);
  border-block: var(--border);
}

.section--ink {
  color: var(--paper-bright);
  background: var(--ink);
}

.section--coral {
  background: var(--coral);
  border-block: var(--border);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 0.75rem;
  inset-inline-start: 0.75rem;
  padding: 0.7rem 1rem;
  border: var(--border);
  background: var(--lime);
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.mono,
.eyebrow span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.eyebrow span {
  display: inline-flex;
  direction: ltr;
  padding: 0.28rem 0.45rem;
  border: 1px solid currentColor;
  border-radius: 3px;
}

.announcement {
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--ink);
  border-bottom: 1px solid var(--paper);
  font-size: 0.9rem;
  font-weight: 600;
}

.announcement__viewport {
  overflow: hidden;
  direction: ltr;
}

.announcement__track {
  display: flex;
  width: 100%;
  direction: ltr;
}

.announcement__group {
  display: flex;
  flex: 1 0 100%;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 0.75rem;
  padding-inline: 1rem;
  direction: rtl;
  text-align: center;
  white-space: nowrap;
}

.announcement__group[aria-hidden="true"] {
  display: none;
}

.announcement__group a,
.announcement__link-copy {
  color: var(--lime);
  font-weight: 800;
}

.announcement__divider {
  color: var(--coral);
  font-family: var(--font-mono);
  font-weight: 800;
}

.announcement__badge {
  flex: 0 0 auto;
  padding: 0.12rem 0.45rem;
  color: var(--ink);
  background: var(--lime);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  z-index: 100;
  inset-block-start: 0;
  background: rgba(244, 241, 231, 0.96);
  border-bottom: var(--border);
  backdrop-filter: blur(10px);
}

.nav {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 2rem;
}

.wordmark {
  display: inline-block;
  width: fit-content;
  color: var(--ink);
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.105em;
  text-decoration: none;
  transition: color 150ms ease;
}

.wordmark::after {
  content: ".";
  color: var(--coral);
}

.wordmark:hover {
  color: var(--coral-text-on-light);
}

.wordmark--footer:hover {
  color: var(--coral);
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.7rem;
}

.nav__menu a,
.text-link {
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav__menu a:hover,
.text-link:hover {
  color: var(--coral-text-on-light);
  text-decoration: underline;
}

.site-footer nav a:hover {
  color: var(--coral);
  text-decoration: underline;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-toggle {
  display: inline-grid;
  min-width: 42px;
  min-height: 38px;
  padding-inline: 0.55rem;
  place-items: center;
  color: var(--ink);
  background: var(--paper-bright);
  border: var(--border);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.language-toggle:hover {
  background: var(--lime);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
}

.menu-toggle {
  display: none;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border: var(--border);
  border-radius: 5px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition:
    color 150ms ease,
    transform 150ms ease,
    box-shadow 150ms ease;
}

.button:hover {
  color: var(--coral-text-on-light);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.button--dark:hover {
  color: var(--coral);
}

.button:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.button--dark {
  color: var(--paper-bright);
  background: var(--ink);
}

.button--paper {
  color: var(--ink);
  background: var(--paper-bright);
}

.button--small {
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.9rem;
}

.hero {
  overflow: hidden;
  padding-block-start: clamp(4.8rem, 8vw, 8rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
}

.hero__copy {
  min-width: 0;
}

.hero h1 {
  line-height: 1.1;
}

.hero-title__lead {
  display: block;
  margin-bottom: 0.04em;
}

.highlight {
  display: inline;
  padding-inline: 0.12em;
  background: var(--lime);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.55;
}

.hero__lead strong {
  color: var(--ink);
  font-weight: 900;
  box-shadow: inset 0 -0.38em 0 var(--lime);
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.plain-list {
  padding: 0;
  list-style: none;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
  margin: 1.7rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero__proof li::before {
  content: "✓";
  margin-inline-end: 0.35rem;
  color: var(--ink);
  font-weight: 900;
}

.workbench {
  position: relative;
  background: var(--paper-bright);
  border: 2px solid var(--ink);
  border-radius: 7px;
  box-shadow: 9px 9px 0 var(--ink);
}

.workbench::before {
  content: "מותאם לעסק";
  position: absolute;
  z-index: 2;
  inset-block-start: -1.3rem;
  inset-inline-end: -1.3rem;
  padding: 0.45rem 0.75rem;
  color: var(--ink);
  background: var(--coral);
  border: 2px solid var(--ink);
  font-weight: 900;
  transform: rotate(3deg);
}

.workbench__bar {
  display: flex;
  min-height: 107px;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  background: var(--sage);
  border-bottom: var(--border);
}

.workbench__bar > div {
  display: grid;
  gap: 0.25rem;
}

.workbench__bar strong {
  font-size: 1.05rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
}

.status__dot {
  width: 0.55rem;
  height: 0.55rem;
  background: #25a55f;
  border: 1px solid var(--ink);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.45;
  }
}

.chat {
  display: grid;
  grid-template-rows: auto minmax(230px, 1fr) auto;
  min-height: 342px;
  overflow: hidden;
  background: #f5f1eb;
}

.whatsapp-window,
.workflow-scene--whatsapp {
  color: #0a0a0a;
  font-family: "Roboto Variable", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.whatsapp-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 58px;
  gap: 0.7rem;
  padding: 0.55rem 0.75rem;
  color: #0a0a0a;
  background: #f7f5f3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.whatsapp-avatar {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 50%;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.whatsapp-avatar::after {
  content: "";
  position: absolute;
  inset-inline-end: 2px;
  inset-block-end: 2px;
  width: 7px;
  height: 7px;
  background: #25d366;
  border: 2px solid #f7f5f3;
  border-radius: 50%;
}

.whatsapp-header__contact {
  display: grid;
  min-width: 0;
  gap: 0.05rem;
  text-align: start;
}

.whatsapp-header__contact strong {
  overflow: hidden;
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whatsapp-header__contact small {
  overflow: hidden;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whatsapp-header__actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: rgba(0, 0, 0, 0.6);
}

.whatsapp-ui-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  font-style: normal;
}

.whatsapp-ui-icon--search::before {
  content: "";
  position: absolute;
  inset: 1px 4px 4px 1px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.whatsapp-ui-icon--search::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  inset-inline-end: 0;
  inset-block-end: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: rotate(45deg);
  transform-origin: center;
}

.whatsapp-ui-icon--menu::before {
  content: "";
  position: absolute;
  inset: 7px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.whatsapp-thread {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: start;
  min-width: 0;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background-color: #f5f1eb;
}

.whatsapp-thread::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image: url("assets/whatsapp-chat-wallpaper.webp");
  background-position: center top;
  background-repeat: repeat;
  background-size: 540px 960px;
  opacity: 0.1;
}

.whatsapp-thread--workbench {
  min-height: 230px;
}

.message {
  position: relative;
  width: fit-content;
  max-width: 88%;
  padding: 0.62rem 0.7rem 0.35rem;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07), 0 0 3px rgba(0, 0, 0, 0.04);
}

.message p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.42;
}

.message--user {
  justify-self: start;
  background: #d9fdd3;
}

.message--gimmi {
  justify-self: end;
  background: #ffffff;
}

.message::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  width: 10px;
  height: 12px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.message--user::before {
  right: -7px;
}

.message--gimmi::before {
  left: -7px;
  transform: scaleX(-1);
}

.message__label {
  display: block;
  margin-bottom: 0.2rem;
  color: #128c7e;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-align: start;
}

.whatsapp-message__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.22rem;
  min-height: 0.8rem;
  margin-top: 0.18rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.58rem;
  line-height: 1;
}

.whatsapp-checks {
  color: #007bfc;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: -0.28em;
  padding-inline-end: 0.22em;
}

.whatsapp-composer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  min-height: 52px;
  gap: 0.6rem;
  padding: 0.45rem 0.7rem;
  color: rgba(0, 0, 0, 0.6);
  background: #f7f5f3;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.whatsapp-composer__emoji,
.whatsapp-composer__attach {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  font-size: 1.18rem;
  line-height: 1;
}

.whatsapp-composer__field {
  min-width: 0;
  padding: 0.55rem 0.8rem;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.6);
  background: #ffffff;
  border-radius: 999px;
  font-size: 0.72rem;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whatsapp-composer__mic {
  display: block;
  width: 22px;
  height: 22px;
  flex: none;
  margin-inline: 0.15rem;
  fill: currentColor;
}

.task-log {
  min-height: 184px;
  margin: 0 1.35rem 1.35rem;
  border: var(--border);
}

.task-log__head {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0.7rem;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: 0.75rem;
}

.task-log ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.task-log li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
}

.task-log li:last-child {
  border-bottom: 0;
}

.task-log li span {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.task-log li b {
  color: #13783e;
  font-size: 0.72rem;
}

.demo-switcher {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--border);
}

.demo-switcher button {
  min-height: 47px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 0;
  border-inline-end: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.demo-switcher button:first-child {
  border-inline-end: 0;
}

.demo-switcher button:hover {
  color: var(--coral);
}

.demo-switcher button.is-active {
  color: var(--ink);
  background: var(--coral);
}

.ticker {
  overflow: hidden;
  padding-block: 1rem;
  color: var(--paper-bright);
  background: var(--ink);
  border-block: 1px solid var(--paper);
  direction: ltr;
}

.ticker__track {
  display: flex;
  width: 100%;
  margin-inline: auto;
  direction: ltr;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 800;
}

.ticker__group {
  display: flex;
  flex: 1 0 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2.2vw, 2rem);
  min-width: 0;
  padding-inline: 1rem;
  direction: rtl;
  white-space: nowrap;
}

.ticker__group[aria-hidden="true"] {
  display: none;
}

.ticker__group i {
  color: var(--coral);
  font-family: var(--font-mono);
  font-style: normal;
}

.ticker__joint {
  display: none;
}

.announcement.is-overflowing .announcement__track,
.ticker.is-overflowing .ticker__track {
  width: max-content;
  will-change: transform;
  animation: marquee-forward 22s linear infinite;
}

.ticker.is-overflowing .ticker__track {
  animation-duration: 26s;
}

.announcement.is-overflowing .announcement__group,
.ticker.is-overflowing .ticker__group {
  flex: 0 0 auto;
}

.announcement.is-overflowing .announcement__group[aria-hidden="true"],
.ticker.is-overflowing .ticker__group[aria-hidden="true"] {
  display: flex;
}

.ticker.is-overflowing .ticker__joint {
  display: inline;
}

.announcement.is-overflowing:hover .announcement__track,
.announcement.is-overflowing:focus-within .announcement__track,
.ticker.is-overflowing:hover .ticker__track {
  animation-play-state: paused;
}

@keyframes marquee-forward {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.section-heading {
  max-width: 840px;
  margin-bottom: 3.2rem;
}

.section-heading > p:last-child,
.section-lead {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  max-width: none;
  gap: 3rem;
}

.section-heading--split > p {
  padding-block-end: 0.35rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.section-heading--light > p:last-child {
  color: var(--sage-deep);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: var(--border);
  border-inline-start: var(--border);
}

.metric {
  min-height: 340px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-inline-end: var(--border);
}

.metric--lime {
  background: var(--lime);
}

.metric--coral {
  background: var(--coral);
}

.metric--paper {
  background: var(--paper-bright);
}

.metric strong {
  display: block;
  margin-block: 1.8rem 1rem;
  font-family: "Arial Black", var(--font-body);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.metric strong.metric__comparison {
  max-width: 300px;
  font-size: clamp(2.5rem, 4.7vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.metric strong.metric__duo {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.metric p {
  max-width: 290px;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
}

.claim-note {
  max-width: 850px;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  background: var(--sage);
  border: var(--border);
}

.section-cta p {
  max-width: 590px;
  margin: 0;
  font-weight: 700;
}

.section-cta .button {
  flex: 0 0 auto;
}

.bespoke-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-block: var(--border);
  border-inline-start: var(--border);
}

.bespoke-card {
  min-height: 330px;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-inline-end: var(--border);
  border-bottom: var(--border);
}

.bespoke-card:nth-child(n + 3) {
  border-bottom: 0;
}

.bespoke-card--lime {
  background: var(--lime);
}

.bespoke-card--paper {
  background: var(--paper-bright);
}

.bespoke-card--coral {
  background: var(--coral);
}

.bespoke-card--blue {
  color: var(--paper-bright);
  background: var(--blue-surface);
}

.bespoke-card .mono {
  display: block;
  margin-bottom: 3.1rem;
  direction: ltr;
  text-align: start;
}

.bespoke-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.bespoke-card p {
  max-width: 490px;
  margin-bottom: 0;
  font-size: 1.08rem;
  font-weight: 600;
}

.consultation-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--paper-bright);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.consultation-strip h3 {
  margin: 0.55rem 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.consultation-strip p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.consultation-strip .button {
  min-width: 210px;
}

.connectors {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(23, 25, 19, 0.035) 50%, transparent 50.1%),
    var(--paper);
  background-size: 72px 72px;
}

.connector-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.55fr);
  align-items: stretch;
  gap: 1.25rem;
}

.connector-hub {
  position: relative;
  display: grid;
  min-height: 470px;
  padding: 1rem;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 9px 9px 0 var(--coral);
}

.connector-hub__top,
.connector-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.connector-hub__top {
  align-self: start;
  padding: 0.15rem 0.2rem 0.9rem;
  border-bottom: 1px solid rgba(255, 253, 245, 0.32);
  font-size: 0.72rem;
}

.connector-hub__live,
.connector-card__state {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.connector-hub__live i,
.connector-card__state i {
  display: block;
  width: 0.52rem;
  height: 0.52rem;
  background: #25a55f;
  border: 1px solid currentColor;
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

.connector-hub__core {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 235px;
  margin-block: 1rem;
  padding: 1.6rem;
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--paper-bright);
  border-radius: 7px;
  box-shadow: 5px 5px 0 var(--paper-bright);
}

.connector-hub__core strong,
.connector-hub__core p {
  position: relative;
  z-index: 1;
}

.connector-hub__core strong {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.1em;
}

.connector-hub__core strong span {
  color: var(--coral);
}

.connector-hub__core p {
  max-width: 300px;
  margin: 1.2rem 0 0;
  font-weight: 800;
}

.connector-hub__orbit {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: -3.5rem;
  width: 190px;
  height: 190px;
  border: 2px dashed rgba(23, 25, 19, 0.35);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: connector-orbit-spin 12s linear infinite;
}

.connector-hub__orbit::before,
.connector-hub__orbit::after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.connector-hub__orbit::before {
  inset-block-start: 0.75rem;
  inset-inline-start: 1.5rem;
}

.connector-hub__orbit::after {
  inset-block-end: 1rem;
  inset-inline-end: 1.1rem;
  background: var(--blue);
}

@keyframes connector-orbit-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.connector-route {
  align-self: end;
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.connector-route li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  gap: 0.6rem;
  padding-block-start: 0.55rem;
  border-top: 1px solid rgba(255, 253, 245, 0.28);
  font-size: 0.82rem;
  font-weight: 700;
}

.connector-route span {
  color: var(--lime);
  font-size: 0.68rem;
}

.connector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.connector-card {
  display: grid;
  align-content: space-between;
  min-height: 225px;
  padding: 1.15rem;
  background: var(--paper-bright);
  border: var(--border);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.connector-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}

.connector-card--lime {
  background: var(--lime);
}

.connector-card--coral {
  background: var(--coral);
}

.connector-card--blue {
  color: var(--paper-bright);
  background: var(--blue-surface);
}

.connector-card__icon {
  display: grid;
  min-width: 48px;
  height: 48px;
  padding-inline: 0.55rem;
  place-items: center;
  color: var(--paper-bright);
  background: var(--ink);
  border: 1px solid currentColor;
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
}

.connector-card--blue .connector-card__icon {
  color: var(--ink);
  background: var(--paper-bright);
}

.connector-card h3 {
  margin: 2.4rem 0 0.35rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.connector-card p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.connector-swipe-hint {
  display: none;
}

.connector-custom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--sage);
  border: 2px solid var(--ink);
  border-radius: 7px;
  box-shadow: 8px 8px 0 var(--ink);
}

.connector-custom h3 {
  margin: 0.5rem 0 0.45rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.connector-custom p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.connector-custom ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 320px;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.connector-custom li {
  padding: 0.42rem 0.6rem;
  background: var(--paper-bright);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
}

.connector-custom .button {
  max-width: 240px;
}

.workflow-demo {
  border-block: 1px solid var(--paper);
}

.automation-demo {
  --workflow-duration: 11s;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-bright);
  border: 2px solid var(--paper-bright);
  border-radius: 9px;
  box-shadow: 10px 10px 0 var(--coral);
}

.automation-demo__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--sage);
  border-bottom: 2px solid var(--ink);
}

.automation-demo__bar > div {
  display: grid;
  gap: 0.25rem;
}

.automation-demo__bar strong {
  font-size: 1.02rem;
}

.automation-demo__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  direction: ltr;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.automation-demo__status i {
  width: 0.58rem;
  height: 0.58rem;
  background: var(--coral);
  border: 1px solid var(--ink);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

.automation-demo__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) 82px minmax(350px, 0.88fr);
  min-height: 650px;
  background:
    radial-gradient(circle at 20% 15%, rgba(74, 111, 255, 0.1), transparent 28%),
    var(--paper);
}

.workflow-screen {
  align-self: center;
  min-width: 0;
  margin: 1.5rem;
  overflow: hidden;
  background: var(--paper-bright);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 8px 8px 0 var(--ink);
}

.workflow-screen__chrome {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 48px;
  gap: 1rem;
  padding: 0.65rem 0.8rem;
  direction: ltr;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: 0.66rem;
}

.workflow-screen__chrome > .mono {
  justify-self: center;
  white-space: nowrap;
}

.workflow-screen__dots {
  display: inline-flex;
  gap: 0.3rem;
}

.workflow-screen__dots i {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--paper-bright);
  border-radius: 50%;
  opacity: 0.55;
}

.workflow-screen__dots i:first-child {
  background: var(--coral);
  opacity: 1;
}

.workflow-screen__timer {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-weight: 800;
  white-space: nowrap;
}

.workflow-screen__timer i {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

.workflow-screen__viewport {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: var(--sage);
  isolation: isolate;
}

.workflow-scene {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  opacity: 0;
  transform: translateX(18px) scale(0.99);
  will-change: opacity, transform;
}

.workflow-scene__appbar {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 72px;
  padding: 0.8rem;
  color: var(--paper-bright);
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
}

.workflow-scene__appbar > span:nth-child(2) {
  display: grid;
  min-width: 0;
}

.workflow-scene__appbar strong {
  overflow: hidden;
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workflow-scene__appbar small {
  overflow: hidden;
  color: var(--sage-deep);
  font-size: 0.65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workflow-scene__appbar > b {
  padding: 0.3rem 0.5rem;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.62rem;
  white-space: nowrap;
}

.workflow-scene__appbar.whatsapp-header {
  grid-template-columns: 44px minmax(0, 1fr) auto;
  min-height: 64px;
  padding: 0.6rem 0.8rem;
  color: #0a0a0a;
  background: #f7f5f3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.workflow-scene__appbar.whatsapp-header small {
  color: rgba(0, 0, 0, 0.6);
}

.workflow-scene__app-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--paper-bright);
  border-radius: 9px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 900;
}

.workflow-scene__app-icon--sheet {
  background: var(--lime);
}

.workflow-scene__app-icon--calendar {
  background: var(--coral);
}

.workflow-scene__body {
  min-height: 0;
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.workflow-scene__body--chat {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 0;
  padding: 0;
  background: #f5f1eb;
}

.whatsapp-thread--workflow {
  grid-template-rows: max-content minmax(0, 1fr);
  align-content: stretch;
  min-height: 0;
  gap: 0.55rem;
  padding: 0.8rem 1rem 0.65rem;
  overflow: hidden;
}

.screen-message--request {
  grid-row: 1;
  align-self: start;
  margin: 0;
  animation: none !important;
  transform: none !important;
}

.screen-message {
  position: relative;
  width: min(86%, 390px);
  padding: 0.65rem 0.75rem 0.38rem;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07), 0 0 3px rgba(0, 0, 0, 0.04);
}

.screen-message p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.38;
}

.screen-message--user {
  justify-self: start;
  background: #d9fdd3;
}

.screen-message--gimmi {
  justify-self: end;
  width: min(88%, 390px);
  background: #ffffff;
  opacity: 0;
}

.screen-message::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  width: 10px;
  height: 12px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.screen-message--user::before {
  right: -7px;
}

.screen-message--gimmi::before {
  left: -7px;
  transform: scaleX(-1);
}

.screen-message__brand {
  display: block;
  margin-bottom: 0.2rem;
  color: #128c7e;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.screen-message--gimmi ul {
  display: grid;
  gap: 0.2rem;
  margin: 0.42rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.65rem;
  font-weight: 500;
}

.screen-message--gimmi li::before {
  content: "✓";
  margin-inline-end: 0.35rem;
}

.pdf-attachment {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.75rem;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(17, 27, 33, 0.12);
  border-radius: 6px;
}

.pdf-attachment__icon {
  display: grid;
  width: 42px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: var(--coral);
  border: 0;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
}

.pdf-attachment > span:last-child {
  display: grid;
  min-width: 0;
}

.pdf-attachment strong {
  overflow: hidden;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pdf-attachment small {
  color: var(--ink-soft);
  font-size: 0.62rem;
}

.pdf-attachment--compact {
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 0.5rem;
  margin-top: 0.4rem;
  padding: 0.38rem;
}

.pdf-attachment--compact .pdf-attachment__icon {
  width: 28px;
  height: 32px;
  font-size: 0.52rem;
}

.pdf-attachment--compact strong {
  font-size: 0.66rem;
}

.pdf-attachment--compact small {
  font-size: 0.55rem;
}

.scene-working {
  justify-self: end;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 0.28rem;
  padding: 0.58rem 0.7rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07), 0 0 3px rgba(0, 0, 0, 0.04);
}

.scene-working i {
  width: 0.42rem;
  height: 0.42rem;
  background: var(--ink-soft);
  border-radius: 50%;
  animation: typing-dot 900ms ease-in-out infinite alternate;
}

.scene-working i:nth-child(2) {
  animation-delay: 150ms;
}

.scene-working i:nth-child(3) {
  animation-delay: 300ms;
}

.scene-working span {
  margin-inline-start: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 800;
}

.whatsapp-response-slot {
  display: grid;
  grid-row: 2;
  min-width: 0;
}

.whatsapp-response-slot > * {
  grid-area: 1 / 1;
  align-self: start;
}

.whatsapp-response-complete {
  display: grid;
  min-width: 0;
  gap: 0.45rem;
}

.workflow-scene__body--sheet,
.workflow-scene__body--reminders {
  display: grid;
  align-content: center;
  gap: 1rem;
  background: var(--paper-bright);
}

.sheet-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem;
  background: var(--sage);
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-size: 0.67rem;
}

.sheet-toolbar strong {
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sheet-toolbar span:last-child {
  padding: 0.2rem 0.4rem;
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.sheet-grid {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 5px;
}

.sheet-row {
  display: grid;
  grid-template-columns: minmax(105px, 1.35fr) 0.55fr 0.75fr 0.75fr;
  min-height: 45px;
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
}

.sheet-row:last-child {
  border-bottom: 0;
}

.sheet-row > * {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 0.45rem 0.55rem;
  overflow: hidden;
  border-inline-end: 1px solid var(--line);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sheet-row > *:last-child {
  border-inline-end: 0;
}

.sheet-row--head {
  min-height: 38px;
  color: var(--paper-bright);
  background: var(--ink);
}

.sheet-row--new {
  background: rgba(197, 255, 45, 0.35);
}

.sheet-row--more {
  grid-template-columns: 1fr;
  min-height: 38px;
  color: var(--ink-soft);
  background: var(--sage);
  font-weight: 700;
}

.sheet-row--more > span {
  justify-content: center;
  border: 0;
}

.scene-toast {
  justify-self: end;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  width: min(100%, 320px);
  gap: 0.7rem;
  padding: 0.7rem;
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 6px;
  box-shadow: 4px 4px 0 var(--ink);
}

.scene-toast > i,
.workflow-complete-badge > i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.scene-toast > span,
.workflow-complete-badge > span {
  display: grid;
}

.scene-toast strong,
.workflow-complete-badge strong {
  font-size: 0.76rem;
}

.scene-toast small,
.workflow-complete-badge small {
  color: var(--ink-soft);
  font-size: 0.64rem;
}

.scene-toast--coral {
  background: var(--coral);
}

.reminder-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem;
  background: var(--paper-bright);
  border: 1px solid var(--ink);
  border-radius: 7px;
  box-shadow: 4px 4px 0 var(--ink);
}

.reminder-card--primary {
  background: rgba(255, 118, 87, 0.2);
}

.reminder-card__date {
  display: grid;
  min-height: 58px;
  place-items: center;
  align-content: center;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 5px;
  line-height: 1;
}

.reminder-card__date b {
  font-size: 1.35rem;
}

.reminder-card__date small {
  margin-top: 0.18rem;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.reminder-card > div {
  display: grid;
  min-width: 0;
  gap: 0.18rem;
}

.reminder-card > div > small,
.reminder-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.64rem;
}

.reminder-card strong {
  overflow: hidden;
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reminder-card__check {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.workflow-complete-badge {
  justify-self: center;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  width: min(100%, 280px);
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(11, 20, 26, 0.2);
  opacity: 0;
}

.workflow-complete-badge > i {
  width: 28px;
  height: 28px;
  background: #128c7e;
  font-size: 0.72rem;
}

@keyframes typing-dot {
  to {
    opacity: 0.3;
    transform: translateY(-3px);
  }
}

.workflow-replay-rail {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  place-items: center;
  gap: 0.7rem;
  padding: 1rem 0.45rem;
  background: var(--sage);
  border-inline: 2px solid var(--ink);
}

.workflow-replay-rail > span {
  width: 2px;
  height: 100%;
  background: var(--ink);
  opacity: 0.35;
}

.workflow-replay-rail button {
  display: grid;
  width: 66px;
  min-height: 76px;
  place-items: center;
  align-content: center;
  gap: 0.15rem;
  padding: 0.45rem;
  color: var(--paper-bright);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--coral);
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.workflow-replay-rail button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--coral);
}

.workflow-replay-rail button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.workflow-replay-rail button b {
  font-size: 1.7rem;
  line-height: 1;
}

.workflow-replay-rail button small {
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.workflow-feed {
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.workflow-feed__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: var(--border);
}

.workflow-feed__head > span:last-child {
  color: #13783e;
  font-size: 0.72rem;
  font-weight: 800;
}

.workflow-action {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 105px;
  padding: 1rem;
  border: var(--border);
  border-radius: 6px;
  box-shadow: 4px 4px 0 var(--ink);
  opacity: 1;
  transform: none;
  will-change: transform, box-shadow, filter;
}

.workflow-action--paper {
  background: var(--paper-bright);
}

.workflow-action--lime {
  background: var(--lime);
}

.workflow-action--coral {
  background: var(--coral);
}

.workflow-action--blue {
  color: var(--paper-bright);
  background: var(--blue-surface);
}

.workflow-action__number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 4px;
  font-size: 0.68rem;
}

.workflow-action--blue .workflow-action__number {
  color: var(--ink);
  background: var(--paper-bright);
}

.workflow-action > div {
  min-width: 0;
}

.workflow-action strong {
  display: block;
  margin-bottom: 0.2rem;
}

.workflow-action p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
}

.workflow-action__done {
  padding: 0.28rem 0.45rem;
  background: var(--paper-bright);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
}

.workflow-action--blue .workflow-action__done {
  color: var(--ink);
}

.automation-demo__footer {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  color: var(--paper-bright);
  background: var(--ink);
  border-top: 2px solid var(--ink);
}

.automation-demo__progress {
  height: 0.45rem;
  overflow: hidden;
  background: rgba(255, 253, 245, 0.18);
  border: 1px solid var(--paper-bright);
  border-radius: 999px;
}

.automation-demo__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lime);
}

.automation-demo__footer p {
  margin: 0;
  color: var(--sage-deep);
  font-size: 0.7rem;
  text-align: center;
}

.automation-demo.is-ready .workflow-scene {
  opacity: 0;
  transform: translateX(18px) scale(0.99);
}

.automation-demo.is-ready .workflow-scene--whatsapp {
  opacity: 1;
  transform: none;
}

.automation-demo.is-playing .workflow-scene,
.automation-demo.is-playing .workflow-action,
.automation-demo.is-playing .sheet-row--new,
.automation-demo.is-playing .scene-toast,
.automation-demo.is-playing .reminder-card,
.automation-demo.is-playing .screen-message--gimmi,
.automation-demo.is-playing .scene-working,
.automation-demo.is-playing .workflow-complete-badge {
  animation-duration: var(--workflow-duration);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.automation-demo.is-playing .workflow-scene--whatsapp {
  animation-name: workflow-scene-whatsapp;
}

.automation-demo.is-playing .workflow-scene--sheet {
  animation-name: workflow-scene-sheet;
}

.automation-demo.is-playing .workflow-scene--reminders {
  animation-name: workflow-scene-reminders;
}

.automation-demo.is-playing .workflow-action--phase-one {
  animation-name: workflow-action-one;
}

.automation-demo.is-playing .workflow-action--phase-two {
  animation-name: workflow-action-two;
}

.automation-demo.is-playing .workflow-action--phase-three {
  animation-name: workflow-action-three;
}

.automation-demo.is-playing .workflow-action--phase-four {
  animation-name: workflow-action-four;
}

.automation-demo.is-playing .sheet-row--new:nth-child(3) {
  animation-name: sheet-row-one;
}

.automation-demo.is-playing .sheet-row--new:nth-child(4) {
  animation-name: sheet-row-two;
}

.automation-demo.is-playing .workflow-scene--sheet .scene-toast {
  animation-name: sheet-toast-in;
}

.automation-demo.is-playing .reminder-card:first-child {
  animation-name: reminder-one-in;
}

.automation-demo.is-playing .reminder-card:nth-child(2) {
  animation-name: reminder-two-in;
}

.automation-demo.is-playing .workflow-scene--reminders .scene-toast {
  animation-name: reminder-toast-in;
}

.automation-demo.is-playing .workflow-scene--whatsapp .scene-working {
  animation-name: whatsapp-working-state;
}

.automation-demo.is-playing .workflow-scene--whatsapp .screen-message--gimmi {
  animation-name: complete-message-in;
}

.automation-demo.is-playing .workflow-complete-badge {
  animation-name: complete-badge-in;
}

.automation-demo.is-playing .automation-demo__progress span {
  animation: workflow-progress var(--workflow-duration) linear 1 both;
}

@keyframes workflow-scene-whatsapp {
  0%, 20% {
    opacity: 1;
    transform: none;
  }
  27%, 68% {
    opacity: 0;
    transform: none;
  }

  73%, 100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes workflow-scene-sheet {
  0%, 19% {
    opacity: 0;
    transform: translateX(10px) scale(0.995);
  }
  24%, 46% {
    opacity: 1;
    transform: none;
  }
  53%, 100% {
    opacity: 0;
    transform: translateX(-10px) scale(0.995);
  }
}

@keyframes workflow-scene-reminders {
  0%, 45% {
    opacity: 0;
    transform: translateX(10px) scale(0.995);
  }
  50%, 69% {
    opacity: 1;
    transform: none;
  }
  76%, 100% {
    opacity: 0;
    transform: translateX(-10px) scale(0.995);
  }
}

@keyframes workflow-action-one {
  0%, 20% {
    opacity: 1;
    filter: brightness(1.04) saturate(1.08);
    transform: translateY(-3px);
    box-shadow: 7px 7px 0 var(--ink), 0 0 0 3px var(--paper-bright);
  }
  24%, 100% {
    opacity: 1;
    filter: none;
    transform: none;
    box-shadow: 4px 4px 0 var(--ink);
  }
}

@keyframes workflow-action-two {
  0%, 19% {
    opacity: 1;
    filter: none;
    transform: none;
    box-shadow: 4px 4px 0 var(--ink);
  }
  23%, 46% {
    opacity: 1;
    filter: brightness(1.04) saturate(1.08);
    transform: translateY(-3px);
    box-shadow: 7px 7px 0 var(--ink), 0 0 0 3px var(--paper-bright);
  }
  50%, 100% {
    opacity: 1;
    filter: none;
    transform: none;
    box-shadow: 4px 4px 0 var(--ink);
  }
}

@keyframes workflow-action-three {
  0%, 45% {
    opacity: 1;
    filter: none;
    transform: none;
    box-shadow: 4px 4px 0 var(--ink);
  }
  49%, 69% {
    opacity: 1;
    filter: brightness(1.04) saturate(1.08);
    transform: translateY(-3px);
    box-shadow: 7px 7px 0 var(--ink), 0 0 0 3px var(--paper-bright);
  }
  73%, 100% {
    opacity: 1;
    filter: none;
    transform: none;
    box-shadow: 4px 4px 0 var(--ink);
  }
}

@keyframes workflow-action-four {
  0%, 68% {
    opacity: 1;
    filter: none;
    transform: none;
    box-shadow: 4px 4px 0 var(--ink);
  }
  72%, 100% {
    opacity: 1;
    filter: brightness(1.04) saturate(1.08);
    transform: translateY(-3px);
    box-shadow: 7px 7px 0 var(--ink), 0 0 0 3px var(--paper-bright);
  }
}

@keyframes sheet-row-one {
  0%, 24% {
    opacity: 0;
    transform: translateY(8px);
  }
  29%, 100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes sheet-row-two {
  0%, 29% {
    opacity: 0;
    transform: translateY(8px);
  }
  34%, 100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes sheet-toast-in {
  0%, 37% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  42%, 100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes reminder-one-in {
  0%, 48% {
    opacity: 0;
    transform: translateY(10px);
  }
  53%, 100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes reminder-two-in {
  0%, 54% {
    opacity: 0;
    transform: translateY(10px);
  }
  59%, 100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes reminder-toast-in {
  0%, 62% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  67%, 100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes whatsapp-working-state {
  0%, 68% {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  73%, 100% {
    visibility: hidden;
    opacity: 0;
    transform: translateY(6px);
  }
}

@keyframes complete-message-in {
  0%, 70% {
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  75%, 100% {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
}

@keyframes complete-badge-in {
  0%, 78% {
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  83%, 100% {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
}

@keyframes workflow-progress {
  0% {
    width: 0;
  }
  94%, 100% {
    width: 100%;
  }
}

.process__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem 6rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: var(--border);
}

.steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: var(--border);
}

.steps h3 {
  margin-bottom: 0.45rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.steps__number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--lime);
  border: var(--border);
}

.handoff-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1.15fr;
  border: 2px solid var(--ink);
  background: var(--sage);
  box-shadow: 8px 8px 0 var(--ink);
}

.handoff-card__head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  color: var(--paper-bright);
  background: var(--ink);
}

.handoff-card__head > span:last-child {
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 800;
}

.handoff-card pre,
.handoff-card__list {
  min-height: 230px;
  margin: 0;
  padding: 2rem;
  color: var(--lime);
  background: #22251e;
  border-inline-end: var(--border);
}

.handoff-card pre {
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.7vw, 1.05rem);
  line-height: 1.8;
  text-align: left;
}

.handoff-card__list {
  display: grid;
  align-content: center;
  gap: 0;
  list-style: none;
}

.handoff-card__list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 0.8rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid rgba(213, 255, 69, 0.28);
  color: var(--paper-bright);
  font-weight: 750;
}

.handoff-card__list li:last-child {
  border-bottom: 0;
}

.handoff-card__list .mono {
  color: var(--lime);
}

.handoff-card__copy {
  align-self: center;
  padding: 2rem;
}

.handoff-card__copy p {
  max-width: 550px;
  margin: 0 0 1.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.memory {
  border-block: 1px solid var(--paper);
}

.memory__heading {
  max-width: 1000px;
}

.memory__heading h2 {
  max-width: 900px;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--paper);
}

.memory-card {
  min-height: 340px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--ink);
  border-inline-end: 1px solid var(--ink);
}

.memory-card:last-child {
  border-inline-end: 0;
}

.memory-card--lime {
  background: var(--lime);
}

.memory-card--paper {
  background: var(--paper-bright);
}

.memory-card--coral {
  background: var(--coral);
}

.memory-card .mono {
  display: block;
  margin-bottom: 4rem;
  direction: ltr;
  text-align: start;
}

.memory-card h3 {
  max-width: 360px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.memory-card p {
  max-width: 390px;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.memory-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin-top: 1rem;
  border: 1px solid var(--paper);
}

.memory-trust span {
  min-width: 0;
  padding: 1rem 1.1rem;
  border-inline-end: 1px solid rgba(255, 253, 245, 0.42);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.memory-trust span:last-child {
  border-inline-end: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: var(--border);
  border-inline-start: var(--border);
}

.timeline article {
  min-height: 330px;
  padding: 1.5rem;
  border-inline-end: var(--border);
}

.timeline time {
  display: block;
  margin-bottom: 2.4rem;
  direction: ltr;
  font-size: 1.25rem;
}

.timeline article > span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.18rem 0.5rem;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
}

.timeline h3 {
  margin-bottom: 1rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.measurement__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 4rem;
}

.measurement__list {
  border-block: var(--border);
}

.measurement__intro {
  max-width: 520px;
  margin: 1.25rem 0 0;
  font-size: 1.05rem;
  font-weight: 650;
}

.measurement__list p {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding-block: 1.1rem;
  border-bottom: var(--border);
  font-size: 1.15rem;
  font-weight: 800;
}

.measurement__list p:last-child {
  border-bottom: 0;
}

.measurement__list p > span:last-child {
  display: grid;
  gap: 0.18rem;
}

.measurement__list strong {
  font-size: 1.08rem;
}

.measurement__list small {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.measurement__closing {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  color: var(--paper-bright);
  background: var(--ink);
  font-weight: 800;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 5rem;
}

.faq__grid > div:first-child > p:last-child {
  color: var(--ink-soft);
}

.faq__items {
  border-top: var(--border);
}

.faq details {
  border-bottom: var(--border);
}

.faq summary {
  position: relative;
  padding: 1.4rem 3rem 1.4rem 0;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::before {
  content: "+";
  position: absolute;
  inset-inline-start: 0.25rem;
  inset-block-start: 50%;
  font-family: var(--font-mono);
  font-size: 1.7rem;
  transform: translateY(-50%);
}

.faq details[open] summary::before {
  content: "−";
}

.faq details p {
  max-width: 690px;
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
}

.final-cta {
  padding-block-start: 1rem;
}

.final-cta__card {
  padding: clamp(2rem, 6vw, 5.5rem);
  background: var(--lime);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.final-cta__card > p:not(.mono) {
  max-width: 680px;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.site-footer {
  padding-block: 3rem;
  color: var(--paper-bright);
  background: var(--ink);
  border-top: 1px solid var(--paper);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 3rem;
}

.wordmark--footer {
  color: var(--paper-bright);
}

.site-footer__grid > div > p {
  max-width: 350px;
  margin: 1rem 0 0;
  color: var(--sage-deep);
}

.site-footer nav {
  display: grid;
  gap: 0.55rem;
}

.site-footer__links {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
}

.info-footer__legal {
  max-width: 460px;
  color: var(--sage-deep);
  font-size: 0.78rem;
}

.site-footer nav a {
  font-weight: 700;
  text-decoration: none;
}

.site-footer__meta {
  margin: 0;
  color: var(--sage-deep);
  font-size: 0.82rem;
  text-align: end;
}

@media (max-width: 620px) {
  .site-footer__links {
    grid-template-columns: 1fr;
  }
}

html.has-consultation-dialog,
html.has-consultation-dialog body {
  overflow: hidden;
}

.consultation-dialog {
  width: min(760px, calc(100% - 2rem));
  max-width: none;
  max-height: calc(100dvh - 2rem);
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-bright);
  border: 2px solid var(--ink);
  border-radius: 9px;
  box-shadow: 12px 12px 0 var(--coral);
}

.consultation-dialog[open] {
  animation: questionnaire-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.consultation-dialog::backdrop {
  background: rgba(23, 25, 19, 0.72);
  backdrop-filter: blur(5px);
}

.questionnaire {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  max-height: calc(100dvh - 2rem);
}

.questionnaire__header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 66px;
  gap: 1rem;
  padding: 0.75rem 1rem;
  color: var(--paper-bright);
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
}

.questionnaire__wordmark {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.09em;
}

.questionnaire__wordmark span {
  color: var(--coral);
}

.questionnaire__header > .mono {
  justify-self: center;
  color: var(--lime);
  font-size: 0.66rem;
  white-space: nowrap;
}

.questionnaire__close {
  justify-self: end;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--paper-bright);
  background: transparent;
  border: 1px solid var(--paper-bright);
  border-radius: 5px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.questionnaire__close:hover,
.questionnaire__close:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.questionnaire__form {
  min-height: 0;
  padding: clamp(1.2rem, 3.5vw, 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.questionnaire-panel {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.questionnaire-panel[hidden],
.questionnaire-success[hidden] {
  display: none !important;
}

.questionnaire-panel legend {
  width: 100%;
  padding: 0;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.questionnaire-panel > p {
  max-width: 620px;
  margin: 0.65rem 0 1.25rem;
  color: var(--ink-soft);
  font-weight: 650;
}

.questionnaire-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.questionnaire-field {
  display: grid;
  min-width: 0;
  gap: 0.4rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.questionnaire-field--wide {
  grid-column: 1 / -1;
}

.questionnaire-field > span b {
  color: var(--coral-text-on-light);
}

.questionnaire-field > span small {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 650;
}

.questionnaire-field input,
.questionnaire-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 5px;
  font: inherit;
  font-weight: 650;
  line-height: 1.4;
}

.questionnaire-field input {
  min-height: 50px;
}

.questionnaire-field textarea {
  min-height: 104px;
  resize: vertical;
}

.questionnaire-field input:focus,
.questionnaire-field textarea:focus {
  outline: 3px solid var(--lime);
  outline-offset: 1px;
  background: var(--paper-bright);
}

.questionnaire-field input::placeholder,
.questionnaire-field textarea::placeholder {
  color: var(--ink-soft);
  opacity: 0.72;
}

.questionnaire-field--honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.questionnaire__privacy {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.questionnaire__privacy a {
  color: var(--ink);
  font-weight: 800;
}

.questionnaire__controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ink);
}

.questionnaire__controls .button:disabled {
  color: var(--ink-soft);
  background: var(--sage);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.questionnaire__status {
  min-height: 1.5em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.questionnaire__form[aria-busy="true"] {
  cursor: wait;
}

.questionnaire-success {
  display: grid;
  min-height: 430px;
  place-items: center;
  align-content: center;
  gap: 0.8rem;
  text-align: center;
}

.questionnaire-success__mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--ink);
}

.questionnaire-success .mono {
  margin: 0.8rem 0 0;
}

.questionnaire-success h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.questionnaire-success > p:not(.mono) {
  max-width: 500px;
  margin: 0 0 0.7rem;
  color: var(--ink-soft);
  font-weight: 650;
}

@keyframes questionnaire-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
}

[dir="ltr"] .announcement__group,
[dir="ltr"] .ticker__group {
  direction: ltr;
}

[lang="en"] .workbench::before {
  content: "BUILT FOR YOU";
}

[lang="en"] .hero h1 {
  line-height: 1.14;
}

[lang="en"] .demo-switcher button:first-child {
  border-inline-end: 1px solid var(--ink);
}

[lang="en"] .demo-switcher button:last-child {
  border-inline-end: 0;
}

[lang="en"] .message--user,
[lang="en"] .screen-message--user {
  justify-self: end;
}

[lang="en"] .message--gimmi,
[lang="en"] .screen-message--gimmi,
[lang="en"] .scene-working {
  justify-self: start;
}

[lang="en"] .faq summary {
  padding: 1.4rem 0 1.4rem 3rem;
}

[dir="ltr"] .timeline h3,
[dir="ltr"] .automation-demo__footer p {
  text-align: start;
}

@media (max-width: 1020px) {
  .nav {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav__menu {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    align-items: stretch;
    padding: 1rem;
    background: var(--paper);
    border: var(--border);
    border-top: 0;
  }

  .nav__menu.is-open {
    display: grid;
  }

  .nav__menu a {
    padding: 0.75rem;
    border-bottom: 1px solid var(--line);
  }

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

  .workbench {
    max-width: 680px;
    margin-inline: auto;
  }

  .connector-visual {
    grid-template-columns: 1fr;
  }

  .connector-hub {
    min-height: 390px;
  }

  .connector-custom {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .connector-custom > div {
    grid-column: 1 / -1;
  }

  .automation-demo__stage {
    grid-template-columns: 1fr;
  }

  .workflow-screen {
    width: min(100% - 3rem, 680px);
    margin-inline: auto;
  }

  .workflow-replay-rail {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
    padding: 0.75rem 1rem;
    border-block: 2px solid var(--ink);
    border-inline: 0;
  }

  .workflow-replay-rail > span {
    width: 100%;
    height: 2px;
  }

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

  .timeline article:nth-child(-n + 2) {
    border-bottom: var(--border);
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  .announcement__group {
    min-height: 48px;
  }

  .nav {
    min-height: 68px;
    gap: 0.75rem;
  }

  .wordmark {
    font-size: 1.7rem;
  }

  .nav__actions {
    justify-self: end;
    gap: 0.55rem;
  }

  .nav__actions .text-link {
    display: none;
  }

  .button--small {
    min-height: 38px;
    padding-inline: 0.7rem;
    font-size: 0.78rem;
  }

  .language-toggle {
    min-width: 38px;
    min-height: 36px;
    padding-inline: 0.4rem;
  }

  .section-heading--split,
  .process__grid,
  .measurement__grid,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .metrics,
  .bespoke-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 270px;
  }

  .metric strong {
    margin-block: 1.2rem 0.7rem;
  }

  .bespoke-card {
    border-bottom: var(--border) !important;
  }

  .bespoke-card:last-child {
    border-bottom: 0 !important;
  }

  .section-cta,
  .consultation-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .consultation-strip .button {
    width: fit-content;
  }

  .connector-grid {
    display: flex;
    gap: 0.85rem;
    padding: 0.25rem 0.25rem 0.8rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--ink) transparent;
    scrollbar-width: thin;
  }

  .connector-card {
    flex: 0 0 min(76vw, 290px);
    min-height: 215px;
    scroll-snap-align: start;
  }

  .connector-swipe-hint {
    display: block;
    margin: 0.7rem 0 0;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .connector-custom,
  .connector-custom > div {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .connector-custom ul {
    justify-content: flex-start;
    max-width: none;
  }

  .automation-demo__bar {
    align-items: flex-start;
  }

  .automation-demo__footer {
    grid-template-columns: 1fr;
  }

  .automation-demo__progress {
    grid-column: auto;
  }

  .automation-demo__footer p {
    text-align: start;
  }

  .handoff-card {
    grid-template-columns: 1fr;
  }

  .handoff-card pre,
  .handoff-card__list {
    min-height: 0;
    border-inline-end: 0;
    border-bottom: var(--border);
  }

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

  .memory-card {
    min-height: 280px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--ink);
  }

  .memory-card:last-child {
    border-bottom: 0;
  }

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

  .memory-trust span {
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 253, 245, 0.42);
  }

  .memory-trust span:last-child {
    border-bottom: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__meta {
    grid-column: 1 / -1;
    text-align: start;
  }
}

@media (max-width: 540px) {
  .shell {
    width: min(calc(100% - 1.2rem), var(--shell));
  }

  .section {
    padding-block: 4.5rem;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .hero__actions,
  .final-cta__actions {
    display: grid;
  }

  .hero__actions .button,
  .final-cta__actions .button {
    width: 100%;
  }

  .workbench::before {
    inset-inline-end: 0.5rem;
    font-size: 0.74rem;
  }

  .workbench__bar {
    height: 107px;
    min-height: 107px;
    align-items: flex-start;
    padding-block: 0.75rem;
  }

  .status {
    padding-inline: 0.4rem;
    font-size: 0.58rem;
  }

  .chat {
    grid-template-rows: auto minmax(0, 1fr) auto;
    height: 362px;
    min-height: 362px;
    padding: 0;
  }

  .whatsapp-header {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 0.55rem;
    padding-inline: 0.65rem;
  }

  .whatsapp-avatar {
    width: 38px;
    height: 38px;
  }

  .whatsapp-header__actions {
    gap: 0.85rem;
  }

  .whatsapp-thread--workbench {
    min-height: 0;
    padding: 0.8rem;
    overflow: hidden;
  }

  .message {
    max-width: 94%;
  }

  .task-log {
    height: 184px;
    min-height: 184px;
    margin: 0 0.8rem 0.8rem;
    overflow: hidden;
  }

  .demo-switcher button {
    font-size: 0.72rem;
  }

  .connector-hub {
    min-height: 0;
    padding: 0.8rem;
    box-shadow: 6px 6px 0 var(--coral);
  }

  .connector-hub__core {
    min-height: 215px;
    padding: 1.25rem;
  }

  .connector-hub__core strong {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .connector-card {
    flex-basis: min(82vw, 280px);
  }

  .connector-custom .button {
    width: 100%;
    max-width: none;
  }

  .automation-demo {
    border-radius: 7px;
    box-shadow: 7px 7px 0 var(--coral);
  }

  .automation-demo__bar {
    display: grid;
    gap: 0.7rem;
  }

  .workflow-screen {
    width: calc(100% - 1.2rem);
    margin-block: 0.8rem;
    border-radius: 8px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .workflow-screen__chrome {
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
    padding-inline: 0.65rem;
  }

  .workflow-screen__chrome > .mono {
    overflow: hidden;
    font-size: 0.58rem;
    text-overflow: ellipsis;
  }

  .workflow-screen__viewport {
    min-height: 510px;
  }

  .workflow-scene__appbar {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    min-height: 66px;
    gap: 0.55rem;
    padding: 0.65rem;
  }

  .workflow-scene__app-icon {
    width: 38px;
    height: 38px;
  }

  .workflow-scene__body {
    padding: 0.75rem;
  }

  .workflow-scene__body--chat {
    padding: 0;
  }

  .workflow-scene__appbar.whatsapp-header {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    min-height: 62px;
    padding: 0.55rem 0.65rem;
  }

  .whatsapp-thread--workflow {
    gap: 0.42rem;
    padding: 0.65rem 0.72rem 0.5rem;
  }

  .screen-message {
    width: 94%;
  }

  .screen-message p {
    font-size: 0.73rem;
  }

  .screen-message--gimmi {
    width: 94%;
  }

  .screen-message--gimmi ul {
    margin-top: 0.32rem;
    font-size: 0.61rem;
  }

  .whatsapp-response-complete {
    gap: 0.35rem;
  }

  .workflow-complete-badge {
    width: min(88%, 260px);
    padding-block: 0.38rem;
  }

  .whatsapp-composer {
    min-height: 48px;
    padding-block: 0.35rem;
  }

  .sheet-row {
    grid-template-columns: minmax(92px, 1.25fr) 0.5fr 0.75fr 0.72fr;
  }

  .sheet-row > * {
    padding-inline: 0.35rem;
    font-size: 0.61rem;
  }

  .reminder-card {
    grid-template-columns: 54px minmax(0, 1fr) 30px;
    gap: 0.6rem;
    padding: 0.65rem;
  }

  .reminder-card__date {
    min-height: 52px;
  }

  .workflow-replay-rail button {
    width: 74px;
    min-height: 64px;
  }

  .workflow-feed {
    padding: 0.8rem;
  }

  .workflow-action {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 0.6rem;
    padding: 0.75rem;
  }

  .workflow-action__number {
    width: 36px;
    height: 36px;
  }

  .automation-demo__footer {
    grid-template-columns: 1fr;
  }

  .automation-demo__progress {
    grid-column: auto;
  }

  .bespoke-card {
    min-height: 0;
  }

  .memory-card {
    min-height: 0;
  }

  .memory-card .mono {
    margin-bottom: 2.5rem;
  }

  .section-cta .button,
  .consultation-strip .button {
    width: 100%;
  }

  .timeline {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--ink) transparent;
    scrollbar-width: thin;
  }

  .timeline article {
    flex: 0 0 min(82vw, 320px);
    min-height: 300px;
    border-bottom: 0 !important;
    scroll-snap-align: start;
  }

  .timeline article:last-child {
    border-inline-end: var(--border);
  }

  .final-cta__card {
    width: calc(100% - 1.5rem);
    margin-inline: auto;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__meta {
    grid-column: auto;
  }

  .consultation-dialog {
    width: calc(100% - 1rem);
    max-height: calc(100dvh - 1rem);
    border-radius: 7px;
    box-shadow: 6px 6px 0 var(--coral);
  }

  .questionnaire {
    max-height: calc(100dvh - 1rem);
  }

  .questionnaire__header {
    grid-template-columns: 1fr auto;
    min-height: 58px;
    padding: 0.55rem 0.7rem;
  }

  .questionnaire__header > .mono {
    display: none;
  }

  .questionnaire__form {
    padding: 1rem;
  }

  .questionnaire-fields {
    grid-template-columns: 1fr;
  }

  .questionnaire-field--wide {
    grid-column: auto;
  }

  .questionnaire__controls {
    grid-template-columns: 1fr;
    margin-top: 1rem;
    padding-top: 0.85rem;
  }

  .questionnaire__controls .button {
    width: 100%;
    min-width: 0;
    padding-inline: 0.7rem;
  }

  .questionnaire-success {
    min-height: 390px;
  }
}

@media (max-width: 360px) {
  .workbench__bar strong {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .workbench__bar .mono {
    font-size: 0.58rem;
  }

  .task-log li {
    gap: 0.35rem;
    padding: 0.5rem 0.45rem;
    font-size: 0.72rem;
  }

  .task-log li span {
    font-size: 0.56rem;
  }

  .task-log li b {
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .announcement.is-overflowing .announcement__track,
  .ticker.is-overflowing .ticker__track {
    width: max-content;
    animation: none !important;
    transform: none !important;
  }

  .announcement.is-overflowing .announcement__viewport,
  .ticker.is-overflowing {
    overflow-x: auto;
  }

  .announcement.is-overflowing .announcement__group[aria-hidden="true"],
  .ticker.is-overflowing .ticker__group[aria-hidden="true"] {
    display: none;
  }

  .automation-demo.is-ready .workflow-scene {
    opacity: 0;
    transform: none;
    animation: none !important;
  }

  .automation-demo.is-ready .workflow-scene:not(.workflow-scene--whatsapp) {
    opacity: 0;
  }

  .automation-demo.is-ready .workflow-scene--whatsapp,
  .automation-demo .workflow-action,
  .automation-demo .sheet-row--new,
  .automation-demo .scene-toast,
  .automation-demo .reminder-card,
  .automation-demo .screen-message,
  .automation-demo .workflow-complete-badge {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none !important;
  }

  .automation-demo .scene-working {
    visibility: hidden;
    opacity: 0;
    animation: none !important;
  }

  .automation-demo__progress span {
    width: 100%;
    animation: none !important;
  }
}
