:root {
  --ink: #102033;
  --text: #314158;
  --muted: #6a7789;
  --paper: #f4f8fb;
  --white: #ffffff;
  --line: #d9e3ee;
  --line-strong: #b8c7d8;
  --teal: #007f86;
  --teal-soft: #dff5f4;
  --blue: #2254d6;
  --gold: #c8942e;
  --green: #23855f;
  --rose: #b84a62;
  --shadow: 0 22px 70px rgba(24, 45, 72, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.55;
}

::selection {
  color: #fff;
  background: var(--teal);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(16, 32, 51, .1);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(16, 32, 51, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 8px;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(0, 127, 134, .22);
}

.brand-logo-mark {
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: #102033;
  border: 1px solid rgba(16, 32, 51, .12);
  box-shadow: 0 14px 30px rgba(0, 127, 134, .2), inset 0 0 0 1px rgba(255,255,255,.18);
}

.brand-logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.brand-text {
  display: grid;
  gap: 1px;
  color: var(--ink);
  line-height: 1.08;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 850;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.site-nav a:not(.nav-cta):hover:after {
  transform: scaleX(1);
}

.login-link {
  color: var(--teal);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lang-switch button {
  min-width: 40px;
  height: 30px;
  padding: 0 9px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.lang-switch button.is-active {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(16, 32, 51, .14);
}

.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.btn-primary,
.nav-cta {
  color: #fff;
  background: #102033;
  border-color: #102033;
  box-shadow: 0 16px 32px rgba(16, 32, 51, .2);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line-strong);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary:hover,
.nav-cta:hover {
  box-shadow: 0 20px 42px rgba(16, 32, 51, .24);
}

.btn-secondary:hover {
  border-color: var(--teal);
  box-shadow: 0 14px 32px rgba(0, 127, 134, .12);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, #f8fbff 0%, #eef7f6 46%, #f9fbff 100%);
}

.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 32, 51, .16), transparent);
}

.hero-bg {
  position: absolute;
  top: 84px;
  right: max(-120px, calc((100vw - 1180px) / 2 - 160px));
  width: min(58vw, 880px);
  height: min(68vh, 620px);
  object-fit: cover;
  opacity: .9;
  border: 1px solid rgba(16, 32, 51, .12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: saturate(.9) brightness(1.08);
  transform: rotate(-1.2deg);
  animation: productFloat 12s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 251, 255, .98) 0%, rgba(248, 251, 255, .92) 44%, rgba(248, 251, 255, .28) 76%, rgba(248, 251, 255, .62) 100%),
    repeating-linear-gradient(90deg, rgba(16, 32, 51, .035) 0 1px, transparent 1px 88px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-grid:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 118px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,127,134,0), rgba(0,127,134,.42), rgba(200,148,46,.34), rgba(0,127,134,0));
  animation: sweepLine 7s ease-in-out infinite;
}

.stream {
  position: absolute;
  left: 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 127, 134, .45), transparent);
  opacity: .7;
  animation: streamDrift 9s linear infinite;
}

.stream-a {
  top: 32%;
}

.stream-b {
  top: 54%;
  animation-delay: -3s;
}

.stream-c {
  top: 74%;
  animation-delay: -6s;
}

.metric-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(24, 45, 72, .1);
  font-size: 12px;
  font-weight: 850;
  animation: chipLift 6s ease-in-out infinite;
}

.chip-a {
  top: 24%;
  right: 30%;
}

.chip-b {
  top: 42%;
  right: 9%;
  animation-delay: -2s;
}

.chip-c {
  bottom: 24%;
  right: 25%;
  animation-delay: -3.5s;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 142px 0 82px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

body[data-lang="en"] .hero-content h1 {
  max-width: 560px;
  font-size: 38px;
  line-height: 1.14;
}

body[data-lang="en"] .nowrap {
  white-space: normal;
}

body[data-lang="en"] .hero-lede {
  max-width: 560px;
}

.nowrap {
  white-space: nowrap;
}

.hero-lede {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 650px;
  margin-top: 46px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(24, 45, 72, .08);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.proof-strip span {
  min-height: 82px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.proof-strip span:last-child {
  border-right: 0;
}

.proof-strip b {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
}

.crm-live-panel {
  position: absolute;
  z-index: 2;
  top: 138px;
  right: max(24px, calc((100vw - 1180px) / 2));
  width: min(420px, 35vw);
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(16, 32, 51, .12);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(24, 45, 72, .16);
  backdrop-filter: blur(18px);
  animation: livePanelFloat 10s ease-in-out infinite;
}

.crm-live-panel.reveal-item {
  opacity: 1;
  transform: none;
}

.live-panel-head,
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.live-panel-head div {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.live-panel-head b,
.panel-title b {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.live-panel-head em,
.panel-title span {
  color: var(--teal);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(35, 133, 95, .12);
}

.live-dot:after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(35, 133, 95, .32);
  border-radius: inherit;
  animation: livePulse 1.8s ease-out infinite;
}

.live-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.live-metrics span {
  min-width: 0;
  padding: 12px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.live-metrics b {
  display: block;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
}

.live-metrics small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.pipeline-card,
.event-card,
.flow-card {
  margin-top: 10px;
  padding: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pipeline-row {
  display: grid;
  grid-template-columns: 68px 1fr 38px;
  gap: 9px;
  align-items: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.pipeline-row div {
  position: relative;
  height: 8px;
  overflow: hidden;
  background: #e8eef5;
  border-radius: 999px;
}

.pipeline-row i {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: linear-gradient(90deg, var(--teal), var(--blue));
  border-radius: inherit;
  animation: progressBreath 3.8s ease-in-out infinite;
}

.pipeline-row i:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  transform: translateX(-100%);
  animation: progressSweep 2.7s ease-in-out infinite;
}

.pipeline-row em {
  color: var(--ink);
  font-style: normal;
  text-align: right;
}

.flow-card {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 7px;
}

.flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 9px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  transition: color .28s ease, background .28s ease, border-color .28s ease, transform .28s ease;
}

.flow-step.is-active {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.flow-connector {
  height: 2px;
  min-width: 18px;
  overflow: hidden;
  background: var(--line);
  border-radius: 999px;
}

.flow-connector:after {
  content: "";
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  animation: connectorMove 2.4s linear infinite;
}

.event-card ul {
  display: grid;
  gap: 8px;
  min-height: 68px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.event-card li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 30px;
  padding: 6px 8px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid rgba(217, 227, 238, .7);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  animation: eventIn .38s ease both;
}

.event-card li span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
}

.ops-band {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: center;
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  color: var(--text);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.ops-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
}

.ops-tape {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.ops-tape-track {
  display: flex;
  gap: 10px;
  min-width: max-content;
  animation: tickerMove 25s linear infinite;
}

.ops-tape span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.76);
}

.ops-tape b {
  color: var(--teal);
}

.ops-tape em {
  color: var(--green);
  font-style: normal;
}

.section {
  padding: 92px 0;
}

.value-section {
  background: #fff;
}

.section-copy {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 34px;
}

.section-copy.compact {
  margin-bottom: 30px;
}

.section-copy h2,
.cta-section h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.cta-section p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.value-grid,
.module-grid,
.team-grid {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  gap: 14px;
}

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

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

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

.value-grid article,
.module-grid article,
.team-grid article,
.security-grid article {
  position: relative;
  min-width: 0;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(24, 45, 72, .07);
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}

.value-grid article {
  min-height: 254px;
}

.value-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.value-grid h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.module-grid article:before,
.team-grid article:before,
.value-grid article:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.module-grid article:hover,
.team-grid article:hover,
.value-grid article:hover {
  background: #fbfdff;
  box-shadow: inset 0 0 0 1px rgba(0, 127, 134, .08);
}

.module-grid article:hover:before,
.team-grid article:hover:before,
.value-grid article:hover:before {
  transform: scaleX(1);
}

.module-grid article {
  min-height: 304px;
}

.module-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.module-grid h3,
.team-grid h3,
.security-grid h3,
.workflow-steps h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}

.module-grid p,
.team-grid p,
.security-grid p,
.workflow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.module-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--blue);
  font-size: 14px;
}

.workflow-section {
  background: #102033;
  color: #dce7f2;
}

.workflow-layout,
.security-layout,
.cta-section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: start;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.workflow-section .section-copy {
  width: auto;
  margin: 0;
}

.workflow-section h2 {
  color: #fff;
}

.workflow-section .section-copy p:not(.eyebrow) {
  color: #b8c7d8;
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.workflow-steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 132px;
  padding: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
}

.workflow-steps span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  font-weight: 950;
}

.workflow-steps h3 {
  margin-top: 0;
  color: #fff;
}

.workflow-steps p {
  color: #b8c7d8;
}

.teams-section {
  background: var(--paper);
}

.team-grid article {
  min-height: 238px;
}

.team-grid article.featured {
  background: #eef7f6;
  box-shadow: inset 0 4px 0 var(--teal);
}

.team-grid b {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 19px;
}

.security-section {
  background: #fff;
}

.security-layout .section-copy {
  width: auto;
  margin: 0;
}

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

.security-grid article {
  min-height: 172px;
  background: var(--paper);
}

.security-grid h3 {
  margin-top: 0;
}

.cta-section {
  align-items: center;
}

.demo-points {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-top: 24px;
}

.demo-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.demo-points span:before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 0 4px var(--teal-soft);
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form:before {
  content: "CRM Demo Request";
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #263248;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: 2px solid rgba(0, 127, 134, .24);
  border-color: var(--teal);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.is-success {
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 38px 42px;
  color: #cbd5e1;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  color: #b8c7d8;
  font-size: 13px;
}

.site-footer .brand-text {
  color: #fff;
}

.site-footer .brand-text small {
  color: #b8c7d8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #e7edf7;
  font-size: 13px;
  font-weight: 850;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@keyframes productFloat {
  0%, 100% {
    transform: rotate(-1.2deg) translate3d(calc(var(--mx, 0) * 8px), calc(var(--my, 0) * 6px), 0);
  }

  50% {
    transform: rotate(.2deg) translate3d(calc(-10px + var(--mx, 0) * 10px), calc(8px + var(--my, 0) * 8px), 0);
  }
}

@keyframes sweepLine {
  0%, 100% {
    transform: translateX(-12%);
    opacity: .35;
  }

  50% {
    transform: translateX(12%);
    opacity: .82;
  }
}

@keyframes streamDrift {
  0% {
    transform: translateX(-44vw);
    opacity: 0;
  }

  20% {
    opacity: .7;
  }

  100% {
    transform: translateX(120vw);
    opacity: 0;
  }
}

@keyframes chipLift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(8px, -12px, 0);
  }
}

@keyframes tickerMove {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes livePanelFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-6px, 9px, 0);
  }
}

@keyframes livePulse {
  0% {
    transform: scale(.6);
    opacity: .9;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes progressBreath {
  0%, 100% {
    filter: saturate(.95);
  }

  50% {
    filter: saturate(1.24) brightness(1.08);
  }
}

@keyframes progressSweep {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes connectorMove {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(220%);
  }
}

@keyframes eventIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1080px) {
  .site-header {
    padding: 0 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .lang-switch {
    margin: 8px 0;
    align-self: flex-start;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero-content h1 {
    max-width: 560px;
    font-size: 34px;
    line-height: 1.15;
  }

  .hero-bg {
    right: -120px;
    width: 680px;
    max-width: 82vw;
    opacity: .24;
  }

  .crm-live-panel {
    position: relative;
    top: auto;
    right: auto;
    width: min(100% - 48px, 620px);
    margin: -42px auto 54px;
  }

  .ops-band,
  .workflow-layout,
  .security-layout,
  .cta-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .site-nav {
    top: 64px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    top: 96px;
    right: -38px;
    width: 360px;
    max-width: 92vw;
    height: 250px;
    opacity: .28;
    transform: rotate(-1deg);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(248, 251, 255, .96) 0%, rgba(248, 251, 255, .92) 58%, rgba(248, 251, 255, .98) 100%),
      repeating-linear-gradient(90deg, rgba(16, 32, 51, .035) 0 1px, transparent 1px 70px);
  }

  .stream,
  .metric-chip {
    display: none;
  }

  .brand-logo-mark {
    width: 42px;
    height: 42px;
  }

  .brand-logo-mark img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .brand-text {
    max-width: 178px;
    font-size: 14px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .crm-live-panel {
    width: min(100% - 32px, 520px);
    margin: 16px auto 44px;
    padding: 13px;
    animation: none;
  }

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

  .live-metrics span {
    display: grid;
    grid-template-columns: 76px 1fr;
    align-items: center;
    gap: 10px;
  }

  .live-metrics small {
    margin-top: 0;
  }

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

  .flow-connector {
    width: 2px;
    min-width: 0;
    height: 14px;
    margin-left: 18px;
  }

  .hero-content {
    width: auto;
    max-width: 340px;
    margin: 0 16px;
    min-height: auto;
    padding: 116px 0 58px;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: 23px;
    line-height: 1.2;
    word-break: normal;
  }

  body[data-lang="en"] .hero-content h1 {
    font-size: 26px;
    line-height: 1.16;
  }

  .nowrap {
    display: block;
    white-space: normal;
    word-break: normal;
  }

  .hero-lede,
  .section-copy p:not(.eyebrow),
  .cta-section p:not(.eyebrow) {
    max-width: 100%;
    font-size: 15px;
    word-break: break-all;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .nav-cta {
    min-height: 44px;
    padding: 10px 15px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip span {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip span:last-child {
    border-bottom: 0;
  }

  .ops-band {
    padding: 24px 16px;
    overflow: hidden;
  }

  .ops-band h2 {
    font-size: 21px;
  }

  .ops-tape {
    max-width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .section-copy,
  .value-grid,
  .module-grid,
  .team-grid,
  .workflow-layout,
  .security-layout,
  .cta-section {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
  }

  .section-copy {
    margin-bottom: 34px;
  }

  .section-copy h2,
  .cta-section h2 {
    font-size: 30px;
  }

  .value-grid,
  .module-grid,
  .team-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .value-grid article,
  .module-grid article,
  .team-grid article {
    min-height: auto;
  }

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

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 20px;
  }
}
