:root {
  --black: #000000;
  --graphite: #111111;
  --warm: #181516;
  --neutral: #211d1e;
  --off: #f4f2ef;
  --soft: #faf9f7;
  --muted: #858181;
  --line: rgba(244, 242, 239, 0.16);
  --dark-line: rgba(33, 29, 30, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--neutral);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 3vw, 42px);
  background: rgba(0, 0, 0, 0.9);
  color: var(--off);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0;
}

.brand span {
  font-size: 22px;
  font-weight: 900;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  color: rgba(244, 242, 239, 0.74);
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--off);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(244, 242, 239, 0.62);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 4px 2px;
  font-size: inherit;
  font-weight: inherit;
}

.lang-switch button.active {
  color: var(--off);
}

.lang-switch button:hover {
  color: var(--off);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--off);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  background: var(--off);
  color: var(--black);
  border-color: var(--off);
}

.button-ghost {
  color: var(--off);
  background: transparent;
  border-color: rgba(244, 242, 239, 0.34);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.section,
.hero {
  padding: clamp(68px, 8vw, 118px) clamp(18px, 4vw, 56px);
}

.section-dark {
  background: var(--black);
  color: var(--off);
}

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 420px);
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 54px);
  overflow: hidden;
}

.hero-copy,
.section-heading,
.split-layout,
.package-panel,
.calculator-panel,
.final-cta,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
}

.hero-copy {
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: 72px;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: 66px;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.12;
}

.hero-text,
.section-heading > p:not(.eyebrow),
.large-copy,
.contact-copy > p:not(.eyebrow) {
  max-width: 710px;
  color: rgba(244, 242, 239, 0.72);
  font-size: 21px;
  line-height: 1.48;
}

.problem .large-copy,
.trust p,
.calculator .section-heading p,
.integrations .section-heading p {
  color: rgba(33, 29, 30, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 18px;
}

.value-line {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  min-height: 390px;
  position: relative;
}

.flow-stage {
  position: absolute;
  inset: 0;
  min-width: 440px;
}

.flow-stage svg {
  width: 100%;
  height: 100%;
}

.flow-line {
  fill: none;
  stroke: rgba(244, 242, 239, 0.22);
  stroke-width: 1.4;
  stroke-dasharray: 7 12;
  animation: lineMove 14s linear infinite;
}

.line-two {
  animation-delay: -2s;
}

.line-three {
  animation-delay: -4s;
}

.pulse {
  fill: var(--off);
  opacity: 0.8;
  animation: pulse 3.8s ease-in-out infinite;
}

.p2,
.p4 {
  animation-delay: 0.8s;
}

.flow-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(244, 242, 239, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 242, 239, 0.1), rgba(24, 21, 22, 0.32));
  color: var(--off);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.node-store { left: 20px; top: 70px; }
.node-orders { right: 40px; top: 70px; }
.node-auto { left: calc(50% - 58px); top: calc(50% - 58px); width: 116px; height: 116px; background: var(--off); color: var(--black); }
.node-ops { left: 20px; bottom: 78px; }
.node-customer { right: 40px; bottom: 78px; }

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--warm);
  color: var(--off);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-strip article {
  min-height: 178px;
  padding: 30px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.outcome-strip span,
.task-grid span,
.workflow-grid span,
.outcome-grid span,
.steps span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.outcome-strip p {
  max-width: 260px;
  margin: 34px 0 0;
  font-size: 26px;
  line-height: 1.08;
}

.section-heading {
  margin-bottom: clamp(36px, 5vw, 72px);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 94px);
  align-items: center;
}

@media (min-width: 981px) {
  .problem .split-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  }
}

.task-grid,
.feature-grid,
.outcome-grid,
.benefit-list,
.principles,
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
}

.task-grid {
  grid-template-columns: repeat(3, 1fr);
}

.task-grid article,
.feature-grid article,
.outcome-grid article,
.benefit-list article,
.principles article,
.workflow-grid article {
  background: var(--soft);
  padding: clamp(22px, 3vw, 36px);
}

.task-grid p,
.feature-grid p,
.outcome-grid p,
.benefit-list p,
.principles p,
.workflow-grid p,
.faq-answer {
  color: rgba(33, 29, 30, 0.68);
}

.feature-grid,
.outcome-grid,
.benefit-list,
.workflow-grid {
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

.solutions .section-heading p {
  color: rgba(244, 242, 239, 0.72);
}

.package-tabs {
  max-width: var(--max);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.package-tabs button {
  min-height: 72px;
  border: 0;
  background: var(--graphite);
  color: rgba(244, 242, 239, 0.66);
  cursor: pointer;
  font-weight: 900;
}

.package-tabs button.active {
  background: var(--off);
  color: var(--black);
}

.package-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  border: 1px solid var(--line);
  background: var(--graphite);
}

.package-summary,
.package-detail {
  padding: clamp(26px, 4vw, 46px);
}

.package-summary {
  border-right: 1px solid var(--line);
}

.package-summary p,
.package-detail li,
.package-detail p {
  color: rgba(244, 242, 239, 0.72);
}

.price-row {
  display: grid;
  gap: 7px;
  margin: 26px 0 6px;
}

.price-row strong {
  font-size: 50px;
  line-height: 1;
}

.price-row span {
  color: var(--muted);
  font-weight: 800;
}

.price-note {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.package-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.package-detail h4 {
  margin-bottom: 12px;
  color: var(--off);
  font-size: 13px;
  text-transform: uppercase;
}

ul {
  margin: 0;
  padding-left: 18px;
}

.ongoing-note {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.calculator-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  border: 1px solid var(--dark-line);
}

.calc-form,
.calc-results,
.lead-form {
  display: grid;
  gap: 16px;
}

.calc-form {
  grid-template-columns: repeat(2, 1fr);
  padding: clamp(24px, 4vw, 44px);
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(133, 129, 129, 0.32);
  border-radius: 4px;
  background: var(--soft);
  color: var(--neutral);
  padding: 13px 14px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--neutral);
}

.calc-results {
  padding: clamp(24px, 4vw, 44px);
  background: var(--neutral);
  color: var(--off);
}

.calc-results article {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.calc-results span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.calc-results strong {
  display: block;
  margin-top: 10px;
  font-size: 44px;
}

.steps {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}

.steps article {
  min-height: 230px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.steps p {
  margin-top: 58px;
  color: rgba(244, 242, 239, 0.78);
  font-size: 20px;
  line-height: 1.16;
}

.integration-cloud {
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.integration-track {
  display: flex;
  width: max-content;
  animation: integrationScroll 34s linear infinite;
}

.integration-cloud:hover .integration-track,
.integration-cloud:focus-within .integration-track {
  animation-play-state: paused;
}

.integration-set {
  display: flex;
  gap: 10px;
  padding-right: 10px;
}

.integration-cloud span {
  border: 1px solid var(--dark-line);
  padding: 13px 18px;
  color: var(--neutral);
  font-weight: 800;
  white-space: nowrap;
}

@keyframes integrationScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.workflow-grid p {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.workflow-grid strong {
  display: block;
  margin-top: 20px;
}

.faq-list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--dark-line);
}

.faq-item {
  border-bottom: 1px solid var(--dark-line);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  padding: 24px 0;
  color: var(--neutral);
  cursor: pointer;
  text-align: left;
  font-size: 23px;
  font-weight: 900;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
  max-width: 760px;
}

.faq-item.open .faq-answer {
  display: block;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.lead-form {
  border: 1px solid var(--line);
  background: var(--graphite);
  padding: clamp(22px, 4vw, 38px);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: var(--black);
  border-color: var(--line);
  color: var(--off);
}

.lead-form select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23858181" d="M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.lead-form select:focus {
  border-color: var(--off);
}

.lead-form select option {
  background-color: var(--graphite);
  color: var(--off);
  padding: 10px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.selected-solution {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0 20px;
  border-bottom: 1px solid var(--line);
}

.selected-solution span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-success {
  margin: 0;
  color: var(--off);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 30px;
  padding: 42px clamp(18px, 4vw, 56px) 22px;
  color: var(--off);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.site-footer p,
.footer-meta {
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand p {
  margin: 0;
}

.footer-brand .footer-site {
  margin-top: 10px;
  color: rgba(244, 242, 239, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.footer-brand .footer-location {
  color: var(--muted);
  font-size: 13px;
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  align-content: center;
}

.footer-origin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(244, 242, 239, 0.5);
  cursor: pointer;
  outline: none;
}

.origin-flag {
  display: block;
  opacity: 0.8;
  transition: opacity 240ms ease, filter 240ms ease, transform 240ms ease;
}

.flags-caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
  transition: color 240ms ease;
}

.footer-origin:hover,
.footer-origin:focus-visible {
  color: var(--off);
}

.footer-origin:hover .origin-flag,
.footer-origin:focus-visible .origin-flag {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(244, 242, 239, 0.35));
  transform: translateY(-1px);
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lineMove {
  to { stroke-dashoffset: -120; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.28; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.45); }
}


.motion-section {
  background: var(--soft);
  overflow: hidden;
}

.motion-gallery {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
}

.motion-card {
  background: var(--soft);
  min-height: 520px;
  display: grid;
  grid-template-rows: 1fr auto;
}

.motion-image {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(rgba(244, 242, 239, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 239, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(244, 242, 239, 0.16), transparent 42%),
    var(--black);
  background-size: 34px 34px, 34px 34px, auto, auto;
  border-bottom: 1px solid var(--dark-line);
}

.motion-copy {
  padding: 28px;
}

.motion-copy > span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.motion-copy p {
  color: rgba(33, 29, 30, 0.68);
}

.mock-window {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 42px;
  border: 1px solid rgba(244, 242, 239, 0.18);
  background: rgba(250, 249, 247, 0.05);
}

.mock-window span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 16px 0 0 10px;
  border-radius: 50%;
  background: rgba(244, 242, 239, 0.55);
}

.lane {
  position: absolute;
  left: 28px;
  right: 28px;
  height: 54px;
  border: 1px solid rgba(244, 242, 239, 0.14);
}

.lane-top { top: 106px; }
.lane-mid { top: 184px; }

.lane i {
  display: block;
  height: 8px;
  width: 44%;
  margin: 10px 14px;
  background: rgba(244, 242, 239, 0.18);
}

.scanner {
  position: absolute;
  top: 84px;
  bottom: 34px;
  width: 1px;
  left: 28%;
  background: rgba(244, 242, 239, 0.85);
  box-shadow: 0 0 28px rgba(244, 242, 239, 0.4);
  animation: scanAcross 5.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.moving-token {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--off);
  top: 125px;
  left: 34px;
  animation: tokenMove 4.6s ease-in-out infinite;
}

.token-two {
  top: 203px;
  animation-delay: 1.4s;
}

.inbox-line {
  position: absolute;
  left: 28px;
  width: 50%;
  height: 18px;
  border: 1px solid rgba(244, 242, 239, 0.16);
  top: 56px;
  animation: lineGlow 4s ease-in-out infinite;
}

.inbox-line.active { top: 92px; width: 62%; animation-delay: 0.6s; }
.inbox-line.short { top: 128px; width: 42%; animation-delay: 1.2s; }

.agent-orbit {
  position: absolute;
  right: 46px;
  top: 78px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(244, 242, 239, 0.2);
  border-radius: 50%;
  animation: softRotate 12s linear infinite;
}

.agent-orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--off);
}

.agent-orbit span:nth-child(1) { top: -6px; left: 48px; }
.agent-orbit span:nth-child(2) { bottom: 10px; right: 4px; opacity: 0.7; }
.agent-orbit span:nth-child(3) { bottom: 10px; left: 4px; opacity: 0.45; }

.reply-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 36px;
  height: 64px;
  background: var(--off);
  animation: replyRise 4.8s ease-in-out infinite;
}

.data-motion svg {
  position: absolute;
  inset: 48px 22px 42px;
  width: calc(100% - 44px);
  height: calc(100% - 90px);
}

.data-motion path {
  fill: none;
  stroke: rgba(244, 242, 239, 0.62);
  stroke-width: 1.4;
  stroke-dasharray: 5 10;
  animation: lineMove 11s linear infinite;
}

.data-column {
  position: absolute;
  top: 54px;
  width: 58px;
  display: grid;
  gap: 28px;
}

.data-column.left { left: 26px; }
.data-column.right { right: 26px; }

.data-column b {
  display: block;
  height: 30px;
  border: 1px solid rgba(244, 242, 239, 0.2);
  background: rgba(244, 242, 239, 0.08);
  animation: dataBlink 3.8s ease-in-out infinite;
}

.data-column b:nth-child(2) { animation-delay: 0.7s; }
.data-column b:nth-child(3) { animation-delay: 1.4s; }

@keyframes scanAcross {
  0%, 100% { left: 18%; opacity: 0.28; }
  50% { left: 82%; opacity: 0.92; }
}

@keyframes tokenMove {
  0% { transform: translateX(0); opacity: 0; }
  18% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(260px); opacity: 0; }
}

@keyframes lineGlow {
  0%, 100% { background: rgba(244, 242, 239, 0.04); }
  50% { background: rgba(244, 242, 239, 0.16); }
}

@keyframes softRotate {
  to { transform: rotate(360deg); }
}

@keyframes replyRise {
  0%, 100% { transform: translateY(18px); opacity: 0.3; }
  45%, 70% { transform: translateY(0); opacity: 1; }
}

@keyframes dataBlink {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
@media (max-width: 980px) {
  h1 {
    font-size: 56px;
    line-height: 1.04;
  }

  h2 {
    font-size: 46px;
    line-height: 1.04;
  }

  h3 {
    font-size: 23px;
  }

  .hero-text,
  .section-heading > p:not(.eyebrow),
  .large-copy,
  .contact-copy > p:not(.eyebrow) {
    font-size: 19px;
    line-height: 1.5;
  }

  .outcome-strip p {
    font-size: 22px;
    line-height: 1.14;
  }

  .price-row strong {
    font-size: 38px;
  }

  .calc-results strong {
    font-size: 32px;
  }

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

  .menu-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 77px 0 auto 0;
    display: none;
    grid-column: 1 / -1;
    padding: 20px;
    background: var(--black);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: grid;
    justify-items: start;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .button {
    display: none;
  }

  .hero,
  .split-layout,
  .package-panel,
  .calculator-panel,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  .hero-copy {
    margin-left: auto;
  }

  .hero-visual {
    min-height: 360px;
    overflow: hidden;
  }

  .flow-stage {
    left: 50%;
    transform: translateX(-50%) scale(0.58);
  }

  .outcome-strip,
  .feature-grid,
  .outcome-grid,
  .benefit-list,
  .workflow-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-summary {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps article {
    border-bottom: 1px solid var(--line);
  }

  .footer-meta {
    justify-items: start;
  }
}
@media (max-width: 680px) {
  h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  h3 {
    font-size: 21px;
  }

  .section,
  .hero {
    padding: 58px 18px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-text,
  .section-heading > p:not(.eyebrow),
  .large-copy,
  .contact-copy > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.55;
  }

  .outcome-strip p {
    font-size: 20px;
    line-height: 1.16;
  }

  .price-row strong {
    font-size: 31px;
  }

  .calc-results strong {
    font-size: 27px;
  }

  .faq-question {
    font-size: 18px;
  }

  .site-header {
    gap: 14px;
  }

  .brand span {
    font-size: 18px;
  }

  .hero-actions,
  .button,
  .form-row,
  .calc-form,
  .package-detail,
  .package-tabs,
  .task-grid,
  .outcome-strip,
  .feature-grid,
  .outcome-grid,
  .benefit-list,
  .workflow-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .outcome-strip article {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-visual {
    min-height: 280px;
  }

  .flow-stage {
    transform: translateX(-50%) scale(0.43);
  }

  .site-footer nav {
    display: grid;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .integration-track {
    animation: none !important;
    flex-wrap: wrap;
    width: auto;
  }

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

/* Refinements: brand logo, calmer hero scale, and workflow-native motion visuals. */
.brand {
  width: 158px;
  min-width: 138px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(1) brightness(1.35) contrast(1.08);
}

.hero {
  min-height: calc(100vh - 77px);
  grid-template-columns: minmax(0, 650px) minmax(360px, 540px);
  gap: clamp(44px, 7vw, 112px);
}

.hero-copy {
  max-width: 650px;
}

h1 {
  max-width: 650px;
  font-size: clamp(56px, 4.7vw, 74px);
  line-height: 1.02;
}

.hero-text {
  max-width: 640px;
  color: rgba(244, 242, 239, 0.68);
}

.value-line {
  max-width: 620px;
  color: rgba(244, 242, 239, 0.58);
  font-weight: 750;
}

.hero-visual {
  min-height: 480px;
}

.flow-stage {
  min-width: 0;
  isolation: isolate;
}

.flow-stage::before {
  content: "";
  position: absolute;
  inset: 48px 28px;
  background:
    linear-gradient(rgba(244, 242, 239, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 239, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, #000 0 42%, transparent 72%);
  opacity: 0.75;
}

.command-core {
  position: absolute;
  left: calc(50% - 58px);
  top: calc(50% - 58px);
  width: 116px;
  height: 116px;
  border: 1.5px solid var(--off);
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px var(--black), 0 0 0 1px rgba(244, 242, 239, 0.12), 0 0 42px rgba(244, 242, 239, 0.11);
  animation: coreBreathe 5.6s ease-in-out infinite;
  z-index: 2;
}

.command-core::after {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1.5px solid rgba(244, 242, 239, 0.82);
  border-radius: 50%;
}

.anchor-dot {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--off);
  z-index: 2;
  animation: nodeSignal 4.8s ease-in-out infinite;
}

.dot-a { left: 112px; top: 105px; }
.dot-b { right: 112px; top: 105px; animation-delay: 0.7s; }
.dot-c { left: 152px; bottom: 76px; animation-delay: 1.3s; }
.dot-d { right: 152px; bottom: 76px; animation-delay: 1.9s; }
.dot-e { left: calc(50% - 8px); bottom: 70px; animation-delay: 2.5s; }

.flow-line {
  stroke: rgba(244, 242, 239, 0.42);
  stroke-width: 1.45;
  stroke-dasharray: none;
  animation: lineGlowPath 4.8s ease-in-out infinite;
}

.line-two { animation-delay: 0.55s; }
.line-three { animation-delay: 1.1s; }
.line-four { animation-delay: 1.65s; }
.line-five { animation-delay: 2.2s; }

.data-packet {
  fill: var(--off);
  opacity: 0.86;
  transform-box: fill-box;
  transform-origin: center;
  animation: packetPing 3.8s ease-in-out infinite;
}

.packet-two { animation-delay: 1.1s; }
.packet-three { animation-delay: 2.2s; }

.motion-card {
  min-height: 500px;
}

.motion-image {
  min-height: 310px;
  background:
    radial-gradient(circle at 52% 42%, rgba(244, 242, 239, 0.16), transparent 34%),
    linear-gradient(rgba(244, 242, 239, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 239, 0.045) 1px, transparent 1px),
    #050505;
  background-size: auto, 36px 36px, 36px 36px, auto;
}

.motion-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 242, 239, 0.08);
  pointer-events: none;
}

.mock-window,
.lane,
.inbox-line,
.data-column b {
  border-color: rgba(244, 242, 239, 0.22);
  background: rgba(244, 242, 239, 0.075);
}

.lane i {
  border-radius: 0;
  background: linear-gradient(90deg, rgba(244, 242, 239, 0.42), rgba(244, 242, 239, 0.42), rgba(244, 242, 239, 0.12));
}

.moving-token,
.agent-orbit span {
  box-shadow: 0 0 18px rgba(244, 242, 239, 0.42);
}

.reply-card {
  background:
    linear-gradient(rgba(5, 5, 5, 0.08) 12px, transparent 12px) 18px 18px / 62% 22px no-repeat,
    var(--off);
}

.data-motion path {
  stroke: rgba(244, 242, 239, 0.68);
  stroke-dasharray: 7 11;
}

@keyframes coreBreathe {
  0%, 100% { transform: scale(0.98); opacity: 0.88; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes nodeSignal {
  0%, 100% { opacity: 0.62; box-shadow: 0 0 0 0 rgba(244, 242, 239, 0); }
  50% { opacity: 1; box-shadow: 0 0 0 10px rgba(244, 242, 239, 0.08); }
}

@keyframes lineGlowPath {
  0%, 100% { opacity: 0.42; }
  50% { opacity: 0.92; }
}

@keyframes packetPing {
  0%, 100% { opacity: 0.24; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.65); }
}

@media (max-width: 980px) {
  .brand { width: 132px; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  h1 { font-size: clamp(44px, 8vw, 58px); }
  .hero-visual { min-height: 360px; }
  .flow-stage { left: auto; transform: none; }
  .dot-a { left: 15%; }
  .dot-b { right: 15%; }
  .dot-c { left: 18%; }
  .dot-d { right: 18%; }
}

@media (max-width: 680px) {
  .brand { width: 112px; min-width: 108px; }
  h1 { font-size: clamp(34px, 11vw, 42px); }
  .hero-visual { min-height: 260px; }
  .command-core {
    left: calc(50% - 42px);
    top: calc(50% - 42px);
    width: 84px;
    height: 84px;
    box-shadow: inset 0 0 0 20px var(--black), 0 0 34px rgba(244, 242, 239, 0.12);
  }
  .command-core::after { inset: 24px; }
  .anchor-dot { width: 13px; height: 13px; }
  .motion-gallery { grid-template-columns: 1fr; }
}

/* Final logo and hero proportion pass after visual QA. */
.site-header {
  padding-top: 11px;
  padding-bottom: 11px;
}

.brand {
  width: 150px;
  min-width: 126px;
  overflow: visible;
}

.brand img {
  width: 100%;
  height: auto;
  filter: none;
}

.hero {
  grid-template-columns: minmax(0, 720px) minmax(340px, 520px);
}

.hero-copy {
  max-width: 720px;
}

h1 {
  max-width: 750px;
  font-size: clamp(52px, 4.35vw, 72px);
}

@media (max-width: 980px) {
  .brand { width: 126px; }
  h1 { font-size: clamp(42px, 7.4vw, 56px); }
}

@media (max-width: 680px) {
  .site-header { padding-top: 12px; padding-bottom: 12px; }
  .brand { width: 112px; min-width: 102px; }
}

/* Fix legacy hero offset so the copy stays left and does not compress on wide screens. */
.hero {
  justify-content: space-between;
}

.hero-copy {
  margin-left: 0;
}

@media (max-width: 980px) {
  .hero { justify-content: center; }
  .hero-copy { margin-left: auto; margin-right: auto; }
}

/* Keep the hero composition compact on very wide screens. */
.hero {
  justify-content: center;
}

.hero-copy {
  width: 100%;
}

/* Responsive correction after final desktop overrides. */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .hero-copy,
  .hero-visual {
    max-width: none;
  }
}

/* Repair pass: original logo asset, balanced sections, clean workflow grid, and full-width dark footer. */
body {
  background: var(--black);
}

main {
  background: var(--soft);
  overflow: hidden;
}

.section,
.hero {
  padding-top: clamp(72px, 7vw, 108px);
  padding-bottom: clamp(72px, 7vw, 108px);
}

.section-dark,
.hero,
.process,
.solutions,
.final-cta {
  background: var(--black);
}

.site-header {
  height: 70px;
  padding-top: 0;
  padding-bottom: 0;
}

.brand {
  width: 190px;
  height: 70px;
  min-width: 190px;
  display: block;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: invert(1) brightness(1.45) contrast(1.05);
  mix-blend-mode: screen;
}

.hero {
  min-height: calc(100vh - 70px);
  grid-template-columns: minmax(0, 700px) minmax(340px, 500px);
  gap: clamp(42px, 6vw, 86px);
}

.hero-copy {
  width: 100%;
  max-width: 700px;
  margin: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(48px, 4.15vw, 68px);
  line-height: 1.03;
}

h2 {
  font-size: clamp(44px, 4.8vw, 64px);
}

.section-heading {
  margin-bottom: clamp(30px, 4vw, 54px);
}

.workflows .section-heading,
.integrations .section-heading,
.faq .section-heading {
  margin-bottom: clamp(28px, 3vw, 42px);
}

.workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: transparent;
  gap: 1px;
}

.workflow-grid article {
  min-height: 270px;
  border: 1px solid var(--dark-line);
}

.workflow-grid article + article {
  border-left: 0;
}

.final-cta {
  max-width: none;
  margin: 0;
}

.final-cta > .contact-copy,
.final-cta > .lead-form {
  min-width: 0;
}

.site-footer {
  max-width: none;
  margin: 0;
  width: 100%;
  background: var(--black);
}

.ongoing-note p {
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-grid article + article {
    border-left: 1px solid var(--dark-line);
  }
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    min-height: 68px;
  }

  .brand {
    width: 132px;
    height: 48px;
    min-width: 132px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 680px) {
  .section,
  .hero {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .brand {
    width: 116px;
    height: 42px;
    min-width: 116px;
  }

  h1 {
    font-size: clamp(35px, 10.5vw, 42px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 38px);
  }

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

  .workflow-grid article {
    min-height: 220px;
  }
}

/* ============================================================
   Hero background — interactive particle field (final)
   ============================================================ */
.hero {
  position: relative;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.05) 68%, transparent 82%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
  .hero-particles {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 78%);
  }
}

/* ============================================================
   Card entrance on scroll + hover interactions (final)
   No accent colour, no border-radius change — corners stay sharp.
   ============================================================ */
.task-grid article,
.feature-grid article,
.outcome-grid article,
.benefit-list article,
.split-layout .principles article,
.workflow-grid article,
.steps article,
.outcome-strip article,
.motion-gallery > article,
.integration-cloud span {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.task-grid.visible article,
.feature-grid.visible article,
.outcome-grid.visible article,
.benefit-list.visible article,
.split-layout.visible .principles article,
.workflow-grid.visible article,
.steps.visible article,
.outcome-strip.visible article,
.motion-gallery.visible > article,
.integration-cloud.visible span {
  opacity: 1;
  transform: translateY(0);
}

.task-grid article:nth-child(1), .feature-grid article:nth-child(1), .outcome-grid article:nth-child(1), .benefit-list article:nth-child(1), .split-layout .principles article:nth-child(1), .workflow-grid article:nth-child(1), .steps article:nth-child(1), .outcome-strip article:nth-child(1), .motion-gallery > article:nth-child(1), .integration-cloud span:nth-child(1) { transition-delay: 0ms; }
.task-grid article:nth-child(2), .feature-grid article:nth-child(2), .outcome-grid article:nth-child(2), .benefit-list article:nth-child(2), .split-layout .principles article:nth-child(2), .workflow-grid article:nth-child(2), .steps article:nth-child(2), .outcome-strip article:nth-child(2), .motion-gallery > article:nth-child(2), .integration-cloud span:nth-child(2) { transition-delay: 60ms; }
.task-grid article:nth-child(3), .feature-grid article:nth-child(3), .outcome-grid article:nth-child(3), .benefit-list article:nth-child(3), .split-layout .principles article:nth-child(3), .workflow-grid article:nth-child(3), .steps article:nth-child(3), .outcome-strip article:nth-child(3), .motion-gallery > article:nth-child(3), .integration-cloud span:nth-child(3) { transition-delay: 120ms; }
.task-grid article:nth-child(4), .feature-grid article:nth-child(4), .outcome-grid article:nth-child(4), .benefit-list article:nth-child(4), .split-layout .principles article:nth-child(4), .workflow-grid article:nth-child(4), .steps article:nth-child(4), .outcome-strip article:nth-child(4), .motion-gallery > article:nth-child(4), .integration-cloud span:nth-child(4) { transition-delay: 180ms; }
.task-grid article:nth-child(5), .feature-grid article:nth-child(5), .outcome-grid article:nth-child(5), .benefit-list article:nth-child(5), .steps article:nth-child(5), .integration-cloud span:nth-child(5) { transition-delay: 240ms; }
.task-grid article:nth-child(6), .feature-grid article:nth-child(6), .outcome-grid article:nth-child(6), .benefit-list article:nth-child(6), .integration-cloud span:nth-child(6) { transition-delay: 300ms; }

.task-grid article:hover,
.feature-grid article:hover,
.outcome-grid article:hover,
.benefit-list article:hover,
.split-layout .principles article:hover,
.workflow-grid article:hover {
  background: var(--off);
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(17, 15, 15, 0.12);
  z-index: 1;
  position: relative;
}

.steps article:hover,
.outcome-strip article:hover {
  background: rgba(244, 242, 239, 0.055);
  transform: translateY(-6px);
  position: relative;
}

.steps article:hover span,
.outcome-strip article:hover span {
  color: var(--off);
}

.motion-gallery > article:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(17, 15, 15, 0.12);
  z-index: 1;
  position: relative;
}

.integration-cloud span:hover {
  background: var(--neutral);
  border-color: var(--neutral);
  color: var(--off);
  transform: translateY(-4px);
}

/* ============================================================
   Hero — typewriter code snippet filling the empty right side
   ============================================================ */
.hero-code {
  position: absolute;
  top: 50%;
  right: max(18px, calc((100vw - var(--max)) / 2 - 20px));
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  max-width: 420px;
  min-height: 6.4em;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(15px, 1.6vw, 21px);
  line-height: 1.55;
  color: rgba(244, 242, 239, 0.34);
  white-space: pre-wrap;
  pointer-events: none;
}

.hero-code-cursor {
  display: inline-block;
  margin-left: 2px;
  color: rgba(244, 242, 239, 0.55);
  animation: heroCodeBlink 1s steps(1) infinite;
}

@keyframes heroCodeBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@media (max-width: 980px) {
  .hero-code {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-code-cursor {
    animation: none;
    opacity: 1;
  }
}
