:root {
  --black: #050505;
  --black-2: #090a0d;
  --card: #101216;
  --card-2: #14171d;
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #a1a1aa;
  --soft: #d7d9df;
  --green: #20d67b;
  --blue: #9dc9ff;
  --danger: #ff6b6b;
  --radius: 24px;
  --radius-card: 24px;
  --radius-control: 20px;
  --radius-input: 18px;
  --radius-mini: 20px;
  --radius-icon: 16px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "AbeatByKai Regular";
  src:
    url("../public/abeatbyKaiRegular.otf") format("opentype"),
    local("AbeatByKai Regular"),
    local("abeatbyKaiRegular");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 12%, rgba(157, 201, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 12% 38%, rgba(32, 214, 123, 0.08), transparent 24rem),
    var(--black);
  color: var(--text);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 30px;
  background: #050505;
  opacity: 1;
  transition: opacity 700ms ease;
}

.page-preloader.is-hiding {
  opacity: 0;
  pointer-events: none;
}

.preloader-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  opacity: 0;
  transform: scale(0.98);
  animation:
    preloaderMarkIn 500ms ease forwards,
    preloaderBreath 900ms ease-in-out 1500ms 1;
}

.preloader-mark::before {
  content: "";
  position: absolute;
  inset: -58px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(0, 255, 153, 0.18), rgba(56, 239, 125, 0.09) 34%, rgba(22, 199, 132, 0.035) 56%, transparent 72%);
  opacity: 0;
  transform: scale(0.92);
  animation: preloaderGlowSequence 3000ms ease forwards;
}

.preloader-mark img {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
  transform: translateY(0);
  animation: preloaderBarOut 420ms ease 3000ms forwards;
}

.preloader-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #16c784, #38ef7d, #00ff99);
  transform: scaleX(0);
  transform-origin: left center;
  animation: preloaderBarFill 1500ms ease-in-out 1000ms forwards;
}

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

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

button {
  cursor: pointer;
}

.logo-on-dark {
  filter: invert(1);
}

.site-header {
  position: fixed;
  top: 22px;
  left: 0;
  z-index: 100;
  width: 100%;
  pointer-events: none;
  transition:
    top 360ms ease;
}

.site-header.is-scrolled {
  top: 18px;
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1100px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background: rgba(5, 5, 5, 0.08);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(28px) saturate(135%);
  -webkit-backdrop-filter: blur(28px) saturate(135%);
  pointer-events: auto;
  transition:
    background 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease,
    backdrop-filter 360ms ease,
    -webkit-backdrop-filter 360ms ease;
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 5, 0.16);
  box-shadow:
    0 26px 76px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(32px) saturate(145%);
  -webkit-backdrop-filter: blur(32px) saturate(145%);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  max-width: none;
  object-fit: contain;
}

.brand-name {
  color: #ffffff;
  font-family: "AbeatByKai Regular", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 32px;
  color: var(--soft);
  font-size: 0.94rem;
}

.nav-cta {
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  height: 46px;
  margin-top: auto;
  margin-bottom: auto;
  transform: none;
  translate: none;
}

.navbar-consultation-button {
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  left: auto;
  display: inline-flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: auto;
  height: 46px;
  min-height: 46px;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1;
  transform: none;
  translate: none;
}

.navbar-consultation-button:hover,
.navbar-consultation-button:focus,
.navbar-consultation-button:focus-visible,
.navbar-consultation-button:active {
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  height: 46px;
  min-height: 46px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1;
  transform: none;
  translate: none;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.scroll-nav {
  position: fixed;
  top: 50%;
  right: 32px;
  z-index: 90;
  display: grid;
  gap: 14px;
  transform: translateY(-50%);
}

.scroll-nav a {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transition:
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.scroll-nav a:hover,
.scroll-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 0 18px rgba(32, 214, 123, 0.12);
  outline: none;
  transform: scale(1.28);
}

.scroll-nav a.active {
  background: var(--green);
  box-shadow: 0 0 18px rgba(32, 214, 123, 0.34);
  transform: scale(1.42);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  font-weight: 700;
  letter-spacing: 0;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  filter: brightness(1.04);
  outline: none;
}

.btn-primary {
  border-color: rgba(32, 214, 123, 0.55);
  background: linear-gradient(180deg, #35e28d, #16b967);
  color: #021009;
  box-shadow: 0 14px 36px rgba(32, 214, 123, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(157, 201, 255, 0.38);
  background: rgba(255, 255, 255, 0.085);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 116px 0 76px;
  overflow: hidden;
  isolation: isolate;
}

.hero-ambient,
.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 58% 42%, rgba(0, 255, 153, 0.055), transparent 24rem),
    radial-gradient(circle at 72% 25%, rgba(56, 239, 125, 0.085), transparent 30rem),
    radial-gradient(circle at 38% 66%, rgba(22, 199, 132, 0.075), transparent 26rem);
  z-index: -1;
}

.hero-ambient {
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-payoff {
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  font-weight: 650;
}

.hero-description {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.7;
}

.hero-description-badge {
  margin-left: 4px;
  font-size: 0.66rem;
  vertical-align: middle;
}

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

.hero-visual {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  justify-self: center;
  isolation: isolate;
  filter: drop-shadow(0 0 34px rgba(46, 204, 113, 0.08));
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-composite: intersect;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 255, 153, 0.12), rgba(56, 239, 125, 0.07) 32%, rgba(46, 204, 113, 0.03) 52%, transparent 72%);
  filter: blur(42px);
  opacity: 0.76;
  animation: heroGreenGlow 8s ease-in-out infinite;
}

#particle-symbol {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  animation: heroSymbolFade 420ms ease-out 80ms forwards;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 13%, #000 87%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 13%, #000 87%, transparent 100%);
  mask-composite: intersect;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  animation: scrollPulse 1.8s infinite;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 130px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.integrations-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding-block: clamp(48px, 8vh, 96px);
}

.integrations-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.2vh, 38px);
}

.integrations-section .section-heading {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.7vh, 18px);
  margin-bottom: 0;
}

.integrations-section .section-heading .eyebrow,
.integrations-section .section-heading p:not(.eyebrow) {
  margin: 0;
}

.section-heading h2,
.cta-content h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.cta-content p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.compare-grid,
.before-after-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-grid.single-card {
  grid-template-columns: minmax(0, 1fr);
}

.panel,
.system-card,
.list-panel,
.why-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.panel {
  min-height: 420px;
  padding: clamp(22px, 3vw, 34px);
}

.panel h3,
.system-card h3,
.list-panel h3,
.why-card h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

.panel-top,
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.status-dot.muted {
  background: #6d717b;
}

.status-dot.live {
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(32, 214, 123, 0.08), 0 0 24px rgba(32, 214, 123, 0.52);
  animation: livePulse 1.8s ease-in-out infinite;
}

.muted-panel {
  color: rgba(255, 255, 255, 0.68);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
}

.active-panel {
  border-color: rgba(32, 214, 123, 0.24);
}

.work-hero-panel {
  width: min(100%, 1100px);
  justify-self: center;
  padding: clamp(26px, 4vw, 48px);
  background:
    radial-gradient(circle at 50% 26%, rgba(32, 214, 123, 0.1), transparent 24rem),
    radial-gradient(circle at 72% 42%, rgba(157, 201, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.32),
    0 0 70px rgba(32, 214, 123, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.work-hero-panel .panel-top {
  margin-bottom: 8px;
}

.ai-work-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.ai-assistant-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(190px, 58vw);
  aspect-ratio: 1;
  margin: 0 auto;
  isolation: isolate;
}

.energy-ring {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(32, 214, 123, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(32, 214, 123, 0.08), transparent 58%),
    conic-gradient(from 0deg, transparent, rgba(157, 201, 255, 0.28), rgba(32, 214, 123, 0.32), transparent 70%);
  filter: blur(0.2px);
  animation: assistantPulse 5.8s ease-in-out infinite;
}

.energy-ring.secondary {
  inset: 0;
  border-color: rgba(157, 201, 255, 0.16);
  opacity: 0.58;
  animation:
    assistantPulse 7.4s ease-in-out infinite reverse,
    slowRotate 18s linear infinite;
}

.assistant-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(16, 18, 22, 0.9);
  box-shadow:
    0 0 42px rgba(32, 214, 123, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: assistantFloat 4.8s ease-in-out infinite;
}

.assistant-core::before,
.assistant-core::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(157, 201, 255, 0.65));
}

.assistant-core::before {
  right: 100%;
}

.assistant-core::after {
  left: 100%;
  transform: rotate(180deg);
}

.core-eye {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.14);
}

.core-line {
  width: 9px;
  height: 32px;
  margin-top: -9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.orbit-dot {
  position: absolute;
  z-index: 1;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(157, 201, 255, 0.9);
  box-shadow: 0 0 16px rgba(157, 201, 255, 0.48);
  transform-origin: 0 0;
}

.dot-1 { animation: orbitOne 10s linear infinite; }
.dot-2 { animation: orbitTwo 12s linear infinite; }
.dot-3 { animation: orbitThree 14s linear infinite; background: rgba(32, 214, 123, 0.9); }
.dot-4 { animation: orbitFour 16s linear infinite; }

.work-hero-panel .ai-work-card {
  gap: clamp(16px, 2.4vw, 24px);
}

.work-hero-panel .ai-assistant-visual {
  --orbit-one: 150px;
  --orbit-two: 124px;
  --orbit-three: 164px;
  --orbit-four: 104px;
  width: min(360px, 72vw);
  margin-top: 4px;
}

.work-hero-panel .assistant-core {
  width: clamp(118px, 13vw, 148px);
  height: clamp(118px, 13vw, 148px);
  border-radius: 36px;
  box-shadow:
    0 0 72px rgba(32, 214, 123, 0.28),
    0 0 34px rgba(157, 201, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.work-hero-panel .core-eye {
  width: clamp(40px, 4vw, 50px);
  height: clamp(40px, 4vw, 50px);
}

.work-hero-panel .core-line {
  width: 12px;
  height: clamp(44px, 4.5vw, 56px);
  margin-top: -12px;
}

.work-hero-panel .orbit-dot {
  width: 8px;
  height: 8px;
}

.ai-work-copy {
  max-width: 440px;
}

.ai-work-copy h4 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: 0;
}

.ai-work-copy p,
.workflow-description {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.workflow-pill {
  width: min(100%, 440px);
  padding: 16px 18px;
  border: 1px solid rgba(32, 214, 123, 0.42);
  border-radius: var(--radius-control);
  background:
    linear-gradient(180deg, rgba(32, 214, 123, 0.18), rgba(32, 214, 123, 0.08)),
    rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: 0 18px 46px rgba(32, 214, 123, 0.13);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  animation: workflowPillIn 7.8s ease-in-out infinite;
}

.work-hero-panel .workflow-pill {
  width: min(100%, 680px);
  padding: clamp(18px, 2.4vw, 24px) clamp(18px, 3vw, 34px);
  border-color: rgba(32, 214, 123, 0.58);
  background:
    linear-gradient(180deg, rgba(32, 214, 123, 0.24), rgba(32, 214, 123, 0.1)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 24px 74px rgba(32, 214, 123, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: clamp(1.14rem, 2vw, 1.65rem);
}

.assistant-workflow-map {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  width: min(100%, 930px);
  margin-top: 2px;
}

.assistant-workflow-map span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 64px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-mini);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  animation: workflowNodeLight 9s ease-in-out infinite;
}

.assistant-workflow-map span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  width: 11px;
  height: 2px;
  background: linear-gradient(90deg, rgba(32, 214, 123, 0.65), rgba(157, 201, 255, 0.32));
  transform: translateY(-50%);
  opacity: 0.5;
}

.assistant-workflow-map span:nth-child(1) { animation-delay: 0ms; }
.assistant-workflow-map span:nth-child(2) { animation-delay: 500ms; }
.assistant-workflow-map span:nth-child(3) { animation-delay: 1000ms; }
.assistant-workflow-map span:nth-child(4) { animation-delay: 1500ms; }
.assistant-workflow-map span:nth-child(5) { animation-delay: 2000ms; }
.assistant-workflow-map span:nth-child(6) { animation-delay: 2500ms; }
.assistant-workflow-map span:nth-child(7) { animation-delay: 3000ms; }

.workflow-description {
  max-width: 470px;
  margin-top: 0;
}

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

.work-hero-panel .ai-work-copy h4 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.work-hero-panel .ai-work-copy p,
.work-hero-panel .workflow-description {
  max-width: 760px;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.work-hero-panel .workflow-features,
.work-hero-panel .workflow-closing {
  width: min(100%, 760px);
}

@media (min-width: 981px) {
  .work-hero-panel .ai-work-card {
    grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1fr);
    grid-template-areas:
      "visual copy"
      "visual pill"
      "map map"
      "description description"
      "features features"
      "closing closing";
    align-items: center;
    column-gap: clamp(28px, 5vw, 72px);
    text-align: left;
  }

  .work-hero-panel .ai-assistant-visual {
    grid-area: visual;
    justify-self: center;
  }

  .work-hero-panel .ai-work-copy {
    grid-area: copy;
    justify-self: stretch;
  }

  .work-hero-panel .workflow-pill {
    grid-area: pill;
    justify-self: stretch;
  }

  .work-hero-panel .assistant-workflow-map {
    grid-area: map;
    justify-self: center;
  }

  .work-hero-panel .workflow-description {
    grid-area: description;
    justify-self: center;
    text-align: center;
  }

  .work-hero-panel .workflow-features {
    grid-area: features;
    justify-self: center;
  }

  .work-hero-panel .workflow-closing {
    grid-area: closing;
    justify-self: center;
  }
}

.workflow-features {
  display: grid;
  gap: 9px;
  width: min(100%, 470px);
  text-align: left;
}

.workflow-features span {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-input);
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
}

.workflow-features span:nth-child(1) { animation: featureReveal 7.8s ease-in-out infinite 1200ms; }
.workflow-features span:nth-child(2) { animation: featureReveal 7.8s ease-in-out infinite 1700ms; }
.workflow-features span:nth-child(3) { animation: featureReveal 7.8s ease-in-out infinite 2200ms; }

.workflow-closing {
  display: block;
  width: min(100%, 470px);
  padding: 16px;
  border: 1px solid rgba(157, 201, 255, 0.16);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.45;
  text-align: left;
}

.workflow-closing span {
  display: block;
  margin-top: 7px;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 650;
}

.chat-preview {
  display: grid;
  gap: 14px;
  margin: 38px 0 34px;
}

.chat-preview p {
  width: fit-content;
  max-width: 86%;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-input);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.56);
}

.terminal {
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-mini);
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  font-family: "SFMono-Regular", "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.9rem;
  line-height: 1.8;
}

.terminal.tall {
  min-height: 246px;
}

.log-line {
  display: block;
  min-height: 1.8em;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.log-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.log-time {
  color: #7f8693;
}

.log-check {
  color: var(--green);
  font-weight: 900;
}

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

.system-card {
  min-height: 384px;
  padding: clamp(20px, 3vw, 28px);
  transition:
    border-color 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
}

.system-card:hover {
  border-color: rgba(32, 214, 123, 0.32);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(32, 214, 123, 0.08);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(32, 214, 123, 0.34);
  border-radius: 999px;
  background: rgba(32, 214, 123, 0.08);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.online-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.82rem;
}

.online-label span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.dynamic-chat {
  height: 270px;
  overflow: hidden;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bubble {
  max-width: 84%;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-input);
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn 260ms ease forwards;
  white-space: pre-line;
}

.bubble.client {
  align-self: flex-end;
  background: rgba(32, 214, 123, 0.12);
  border-color: rgba(32, 214, 123, 0.22);
}

.bubble.ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.055);
}

.typing {
  width: 66px;
  padding: 12px 14px;
}

.typing span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  border-radius: 999px;
  background: var(--muted);
  animation: typingDot 1s infinite ease-in-out;
}

.typing span:nth-child(2) {
  animation-delay: 120ms;
}

.typing span:nth-child(3) {
  animation-delay: 240ms;
}

.chat-results {
  display: grid;
  gap: 8px;
  min-height: 118px;
  margin-top: 16px;
  color: var(--soft);
  font-family: "SFMono-Regular", ui-monospace, monospace;
  font-size: 0.82rem;
}

.chat-results span {
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.chat-results span.visible {
  opacity: 1;
  transform: translateX(0);
}

.chat-results span::first-letter,
.after li::before {
  color: var(--green);
}

.hr-demo,
.calendar-demo,
.drive-demo {
  --demo-duration: 9800ms;
  display: grid;
  gap: 14px;
}

.voice-panel,
.calendar-board,
.employee-card,
.hr-tasks,
.document-zone,
.folder-zone {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-mini);
  background: rgba(0, 0, 0, 0.23);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hr-demo {
  --hr-duration: 11200ms;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.hr-demo *,
.hr-demo *::before,
.hr-demo *::after {
  animation-play-state: paused !important;
}

.system-card.is-visible .hr-demo *,
.system-card.is-visible .hr-demo *::before,
.system-card.is-visible .hr-demo *::after {
  animation-play-state: running !important;
}

.employee-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 15px;
  overflow: hidden;
  animation: hrCardGlow var(--hr-duration) ease-in-out infinite;
}

.employee-top {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  animation: hrEmployeeCardIn var(--hr-duration) ease-in-out infinite;
}

.employee-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(32, 214, 123, 0.28);
  border-radius: 999px;
  background: rgba(32, 214, 123, 0.1);
  color: var(--green);
  font-family: "SFMono-Regular", "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  font-weight: 850;
}

.employee-kicker,
.employee-status span,
.employee-field span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.employee-top strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 1rem;
}

.employee-fields {
  display: grid;
  gap: 9px;
}

.employee-field {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-input);
  background: rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateY(7px);
}

.employee-field strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: var(--soft);
  font-size: 0.8rem;
  line-height: 1.25;
}

.field-name { animation: hrFieldFill var(--hr-duration) ease-in-out infinite 800ms; }
.field-role { animation: hrFieldFill var(--hr-duration) ease-in-out infinite 1350ms; }
.field-email { animation: hrFieldFill var(--hr-duration) ease-in-out infinite 1900ms; }
.field-date { animation: hrFieldFill var(--hr-duration) ease-in-out infinite 2450ms; }

.employee-status {
  position: relative;
  min-height: 50px;
  padding: 10px;
  border: 1px solid rgba(32, 214, 123, 0.2);
  border-radius: var(--radius-input);
  background: rgba(32, 214, 123, 0.06);
  opacity: 0;
  animation: hrStatusIn var(--hr-duration) ease-in-out infinite;
}

.employee-status strong {
  position: absolute;
  left: 10px;
  bottom: 9px;
  color: var(--green);
  font-size: 0.78rem;
}

.status-creating {
  animation: hrCreatingStatus var(--hr-duration) ease-in-out infinite;
}

.status-active {
  opacity: 0;
  animation: hrActiveStatus var(--hr-duration) ease-in-out infinite;
}

.hr-progress {
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hr-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(32, 214, 123, 0.72), var(--green), #7dffb5);
  box-shadow: 0 0 18px rgba(32, 214, 123, 0.2);
  animation: hrProgressFill var(--hr-duration) ease-in-out infinite;
}

.hr-success {
  min-height: 1.4em;
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(5px);
  animation: hrSuccessMessage var(--hr-duration) ease-in-out infinite;
}

.hr-tasks {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 15px;
}

.hr-analysis {
  min-height: 1.4em;
  color: var(--green);
  font-family: "SFMono-Regular", "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 800;
  opacity: 0;
  animation: hrAnalysis var(--hr-duration) ease-in-out infinite;
}

.hr-tasks ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hr-tasks li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 24px;
  color: rgba(255, 255, 255, 0.46);
  font-family: "SFMono-Regular", "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  line-height: 1.25;
  animation: hrTaskText var(--hr-duration) ease-in-out infinite;
}

.hr-tasks li span {
  position: relative;
  display: block;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 999px;
  animation: hrTaskDot var(--hr-duration) ease-in-out infinite;
}

.hr-tasks li span::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  opacity: 0;
  transform: rotate(45deg);
  animation: hrTaskCheck var(--hr-duration) ease-in-out infinite;
}

.hr-tasks li:nth-child(1),
.hr-tasks li:nth-child(1) span,
.hr-tasks li:nth-child(1) span::before { animation-delay: 3600ms; }
.hr-tasks li:nth-child(2),
.hr-tasks li:nth-child(2) span,
.hr-tasks li:nth-child(2) span::before { animation-delay: 4200ms; }
.hr-tasks li:nth-child(3),
.hr-tasks li:nth-child(3) span,
.hr-tasks li:nth-child(3) span::before { animation-delay: 4800ms; }
.hr-tasks li:nth-child(4),
.hr-tasks li:nth-child(4) span,
.hr-tasks li:nth-child(4) span::before { animation-delay: 5400ms; }
.hr-tasks li:nth-child(5),
.hr-tasks li:nth-child(5) span,
.hr-tasks li:nth-child(5) span::before { animation-delay: 6000ms; }
.hr-tasks li:nth-child(6),
.hr-tasks li:nth-child(6) span,
.hr-tasks li:nth-child(6) span::before { animation-delay: 6600ms; }
.hr-tasks li:nth-child(7),
.hr-tasks li:nth-child(7) span,
.hr-tasks li:nth-child(7) span::before { animation-delay: 7200ms; }
.hr-tasks li:nth-child(8),
.hr-tasks li:nth-child(8) span,
.hr-tasks li:nth-child(8) span::before { animation-delay: 7800ms; }

.voice-panel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  opacity: 0;
  transform: translateY(10px);
  animation: calendarVoice var(--demo-duration) ease-in-out infinite;
}

.mic-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(32, 214, 123, 0.24);
  border-radius: 999px;
  background: rgba(32, 214, 123, 0.08);
}

.mic-icon::before {
  content: "";
  width: 10px;
  height: 18px;
  border: 2px solid var(--green);
  border-radius: 999px;
}

.mic-icon::after {
  content: "";
  position: absolute;
  bottom: 9px;
  width: 14px;
  height: 7px;
  border-bottom: 2px solid var(--green);
  border-radius: 0 0 999px 999px;
}

.voice-content {
  min-width: 0;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 24px;
}

.waveform span {
  width: 3px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  animation: waveBar 820ms ease-in-out infinite;
}

.waveform span:nth-child(2) { animation-delay: 90ms; }
.waveform span:nth-child(3) { animation-delay: 180ms; }
.waveform span:nth-child(4) { animation-delay: 270ms; }
.waveform span:nth-child(5) { animation-delay: 360ms; }
.waveform span:nth-child(6) { animation-delay: 450ms; }

.transcript {
  display: inline-block;
  max-width: 100%;
  margin: 4px 0 0;
  overflow: hidden;
  color: var(--soft);
  font-size: 0.86rem;
  line-height: 1.45;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  animation: transcriptReveal var(--demo-duration) steps(56, end) infinite;
}

.analysis,
.ocr-status {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 750;
  opacity: 0;
}

.analysis {
  animation: briefStatus var(--demo-duration) ease-in-out infinite;
}

.calendar-board {
  overflow: hidden;
}

.calendar-days,
.calendar-row {
  display: grid;
  grid-template-columns: 50px repeat(4, minmax(0, 1fr));
}

.calendar-days {
  min-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-days strong,
.calendar-time,
.calendar-row > span {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.calendar-days strong {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.75rem;
}

.calendar-row {
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.calendar-time {
  display: grid;
  place-items: start center;
  padding-top: 9px;
  color: #7f8693;
  font-size: 0.72rem;
}

.calendar-row > span:last-child,
.calendar-days strong:last-child {
  border-right: 0;
}

.selected-slot {
  position: relative;
  background: rgba(32, 214, 123, 0);
  animation: selectedSlot var(--demo-duration) ease-in-out infinite;
}

.event-card {
  position: absolute;
  inset: 7px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 8px;
  border: 1px solid rgba(32, 214, 123, 0.46);
  border-radius: var(--radius-icon);
  background: linear-gradient(180deg, rgba(32, 214, 123, 0.24), rgba(32, 214, 123, 0.11));
  color: var(--text);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: eventCreate var(--demo-duration) ease-in-out infinite;
}

.event-card strong {
  font-size: 0.72rem;
  line-height: 1.15;
}

.event-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
}

.visual-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 10px;
  min-height: 80px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 650;
}

.visual-checklist span {
  opacity: 0;
  transform: translateY(7px);
}

.calendar-checks span:nth-child(1) { animation: checkIn var(--demo-duration) ease-in-out infinite 4800ms; }
.calendar-checks span:nth-child(2) { animation: checkIn var(--demo-duration) ease-in-out infinite 5400ms; }
.calendar-checks span:nth-child(3) { animation: checkIn var(--demo-duration) ease-in-out infinite 6000ms; }
.calendar-checks span:nth-child(4) { animation: checkIn var(--demo-duration) ease-in-out infinite 6600ms; }
.calendar-checks span:nth-child(5) { animation: checkIn var(--demo-duration) ease-in-out infinite 7200ms; }

.drive-demo {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.document-zone {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 14px;
  opacity: 0;
  transform: translateX(-16px);
  animation: documentArrive var(--demo-duration) ease-in-out infinite;
}

.document-source {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(32, 214, 123, 0.22);
  border-radius: 999px;
  background: rgba(32, 214, 123, 0.08);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0;
  animation: sourceReveal var(--demo-duration) ease-in-out infinite;
}

.pdf-preview {
  position: relative;
  overflow: hidden;
  height: 126px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-input);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
}

.pdf-bar,
.pdf-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.pdf-bar {
  width: 42px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: var(--radius-icon);
  background: rgba(255, 255, 255, 0.82);
}

.pdf-line {
  width: 72%;
  margin-top: 9px;
}

.pdf-line.wide {
  width: 88%;
}

.pdf-line.short {
  width: 46%;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 28px;
  background: linear-gradient(180deg, transparent, rgba(32, 214, 123, 0.42), transparent);
  opacity: 0;
  animation: scanDocument var(--demo-duration) ease-in-out infinite;
}

.ocr-status {
  animation: ocrStatus var(--demo-duration) ease-in-out infinite;
}

.extracted-data {
  display: grid;
  gap: 5px;
  color: var(--soft);
  font-size: 0.76rem;
}

.extracted-data span {
  opacity: 0;
  transform: translateY(6px);
}

.extracted-data span:nth-child(1) { animation: dataReveal var(--demo-duration) ease-in-out infinite 3600ms; }
.extracted-data span:nth-child(2) { animation: dataReveal var(--demo-duration) ease-in-out infinite 4050ms; }
.extracted-data span:nth-child(3) { animation: dataReveal var(--demo-duration) ease-in-out infinite 4500ms; }

.folder-zone {
  position: relative;
  min-height: 266px;
  padding: 16px;
}

.folder-title {
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 850;
}

.folder-tree {
  display: grid;
  gap: 11px;
  color: var(--muted);
  font-family: "SFMono-Regular", ui-monospace, monospace;
  font-size: 0.78rem;
}

.folder-line {
  transition:
    color 280ms ease,
    text-shadow 280ms ease;
}

.folder-line.indent {
  padding-left: 12px;
}

.target-folder {
  animation: folderTarget var(--demo-duration) ease-in-out infinite;
}

.archived-file {
  opacity: 0;
  animation: archivedFile var(--demo-duration) ease-in-out infinite;
}

.moving-file {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 9px 10px;
  border: 1px solid rgba(32, 214, 123, 0.36);
  border-radius: var(--radius-input);
  background: rgba(32, 214, 123, 0.12);
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0;
  animation: moveFile var(--demo-duration) ease-in-out infinite;
}

.drive-checks {
  grid-column: 1 / -1;
}

.drive-checks span:nth-child(1) { animation: checkIn var(--demo-duration) ease-in-out infinite 1900ms; }
.drive-checks span:nth-child(2) { animation: checkIn var(--demo-duration) ease-in-out infinite 3800ms; }
.drive-checks span:nth-child(3) { animation: checkIn var(--demo-duration) ease-in-out infinite 5050ms; }
.drive-checks span:nth-child(4) { animation: checkIn var(--demo-duration) ease-in-out infinite 6350ms; }
.drive-checks span:nth-child(5) { animation: checkIn var(--demo-duration) ease-in-out infinite 7350ms; }

.integration-cycle {
  --integration-block-offset: clamp(80px, 8vh, 120px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(18px, 2.4vh, 28px);
  margin-top: var(--integration-block-offset);
  margin-bottom: calc(var(--integration-block-offset) * -1);
}

.integration-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  opacity: 1;
  animation: integrationCardsFade 8s ease-in-out infinite paused;
}

.integration-cycle.is-running .integration-grid {
  animation-play-state: running;
}

.integration-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28em;
  margin: 0;
  color: var(--text);
  font: inherit;
  font-size: clamp(3.75rem, 6.75vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  animation: integrationMoreFade 8s ease-in-out infinite paused;
}

.integration-cycle.is-running .integration-more {
  animation-play-state: running;
}

.integration-more span {
  display: inline-block;
  opacity: 0;
  animation: integrationWordIn 8s ease-in-out infinite paused;
}

.integration-cycle.is-running .integration-more span {
  animation-play-state: running;
}

.integration-more span:nth-child(2) {
  animation-delay: 280ms;
}

.integration-more span:nth-child(3) {
  animation-delay: 560ms;
}

.integration-more span:nth-child(4) {
  color: var(--green);
  animation-delay: 840ms;
}

.integration {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-mini);
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  font-weight: 700;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.integration:hover {
  border-color: rgba(157, 201, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: var(--radius-icon);
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 0 22px rgba(157, 201, 255, 0.16);
}

.icon.whatsapp { border-radius: 999px; background: #20d67b; }
.icon.drive { background: conic-gradient(from 40deg, #20d67b, #f4c84f, #579bff, #20d67b); }
.icon.calendar { background: linear-gradient(135deg, #579bff 0 48%, #ffffff 48% 56%, #20d67b 56%); }
.icon.gmail { background: linear-gradient(135deg, #e85454, #ffffff 45% 55%, #579bff); }
.icon.outlook { background: #579bff; }
.icon.teams { background: linear-gradient(135deg, #7f8cff, #9dc9ff); }
.icon.notion { background: #f5f5f5; }
.icon.dropbox { background: #2f8cff; }
.icon.stripe { background: #635bff; }
.icon.hubspot { background: #ff7a59; }

.workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(9, minmax(90px, 1fr));
  gap: 12px;
  padding-top: 30px;
}

.workflow-line {
  position: absolute;
  top: 55px;
  left: 4%;
  width: var(--workflow-progress, 0%);
  max-width: 92%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  box-shadow: 0 0 26px rgba(32, 214, 123, 0.36);
  transition: width 420ms ease;
}

.workflow-step {
  position: relative;
  z-index: 1;
  min-height: 104px;
  padding: 16px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-mini);
  background: rgba(16, 18, 22, 0.92);
  color: var(--muted);
  font-weight: 750;
  text-align: center;
  transition:
    color 260ms ease,
    border-color 260ms ease,
    transform 260ms ease;
}

.workflow-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.76rem;
}

.workflow-step.active {
  color: var(--text);
  border-color: rgba(32, 214, 123, 0.36);
  transform: translateY(-4px);
}

.workflow-step.active span {
  background: var(--green);
  color: #03130b;
}

.list-panel {
  padding: clamp(22px, 3vw, 34px);
}

.list-panel.before {
  color: rgba(255, 255, 255, 0.62);
}

.list-panel.after {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(32, 214, 123, 0.24);
  background: linear-gradient(180deg, rgba(32, 214, 123, 0.09), rgba(255, 255, 255, 0.025));
  transition:
    border-color 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}

.list-panel.after::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    rgba(32, 214, 123, 0.14) 0%,
    rgba(32, 214, 123, 0.07) 38%,
    transparent 76%
  );
  opacity: 0;
  transition: opacity 250ms ease;
  pointer-events: none;
}

.list-panel.after:hover {
  border-color: rgba(32, 214, 123, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.list-panel.after:hover::before {
  opacity: 1;
}

.list-panel ul {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.list-panel li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}

.list-panel li::before {
  position: absolute;
  left: 0;
}

.before li::before {
  content: "×";
  color: #747986;
}

.after li::before {
  content: "✓";
  color: var(--green);
}

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

.why-card {
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  z-index: 0;
  padding: 28px;
  overflow: visible;
  transition:
    border-color 300ms ease,
    box-shadow 300ms ease,
    filter 300ms ease,
    transform 300ms ease;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: calc(var(--radius-card) + 18px);
  background: radial-gradient(
    circle at var(--glow-x) var(--glow-y),
    rgba(32, 214, 123, 0.18),
    rgba(32, 214, 123, 0.08) 28%,
    transparent 68%
  );
  opacity: 0;
  filter: blur(22px);
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 300ms ease,
    transform 300ms ease;
  pointer-events: none;
}

.why-card:hover,
.why-card:focus-within {
  border-color: rgba(32, 214, 123, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 48px rgba(0, 0, 0, 0.22),
    0 10px 38px rgba(32, 214, 123, 0.08);
  filter: brightness(1.06) contrast(1.04);
  transform: translateY(-5px);
}

.why-card:hover::before,
.why-card:focus-within::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.why-card p {
  color: var(--muted);
  line-height: 1.65;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid rgba(32, 214, 123, 0.28);
  border-radius: var(--radius-icon);
  background: rgba(32, 214, 123, 0.08);
  color: var(--green);
  font-weight: 900;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 150px) 16px;
  border-block: 1px solid var(--border);
  background: #050505;
  isolation: isolate;
}

.cta-content {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.cta-content .hero-actions {
  justify-content: center;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 28px;
  font-family: "JetBrains Mono", "IBM Plex Mono", "Geist Mono", "Space Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.footer-brand {
  display: grid;
  align-content: center;
  justify-items: start;
}

.footer-symbol {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.site-footer a {
  color: var(--muted);
}

.footer-contact {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 13px;
  text-align: center;
}

.footer-contact h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.footer-contact a {
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition:
    color 220ms ease,
    text-shadow 220ms ease,
    filter 220ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--green);
  text-shadow: 0 0 18px rgba(32, 214, 123, 0.14);
  filter: brightness(1.08);
  outline: none;
}

.footer-contact a {
  min-width: 0;
  font-size: 0.86rem;
  overflow-wrap: normal;
  white-space: nowrap;
}

.footer-bottom {
  display: block;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin-top: 16px;
}

.footer-legal-links a,
.footer-legal-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible,
.footer-legal-links button:hover,
.footer-legal-links button:focus-visible {
  color: var(--green);
  outline: none;
}

.cookie-preferences-backdrop[hidden] {
  display: none;
}

html.cookie-consent-pending .page-preloader {
  display: none;
}

html.cookie-consent-pending .cookie-preferences-backdrop[hidden] {
  display: grid;
}

.cookie-consent-view {
  display: grid;
  gap: 10px;
}

.cookie-consent-view[hidden],
.cookie-modal-close[hidden] {
  display: none;
}

.cookie-consent-view h2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.15;
}

.cookie-consent-view > p,
.cookie-preferences p {
  margin: 0;
  color: var(--soft);
  line-height: 1.55;
}

.cookie-kicker {
  color: var(--green) !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cookie-actions,
.cookie-preferences-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cookie-actions {
  margin-top: 16px;
}

.cookie-button {
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  border-color: var(--green);
  transform: translateY(-1px);
  outline: 2px solid rgba(32, 214, 123, 0.5);
  outline-offset: 2px;
}

.cookie-button-primary {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 8px 24px rgba(32, 214, 123, 0.18);
  color: #04110a;
}

.cookie-button-primary:hover,
.cookie-button-primary:focus-visible {
  background: #39e690;
  color: #04110a;
}

.cookie-button-reject {
  border-color: rgba(255, 255, 255, 0.3);
  background: #15181d;
}

.cookie-button-reject:hover,
.cookie-button-reject:focus-visible,
.cookie-button-secondary:hover,
.cookie-button-secondary:focus-visible {
  background: rgba(32, 214, 123, 0.09);
  color: var(--green);
}

.cookie-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 3px;
  font-size: 0.83rem;
}

.cookie-policy-links a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(32, 214, 123, 0.35);
  text-underline-offset: 4px;
}

.cookie-policy-links a:hover,
.cookie-policy-links a:focus-visible {
  color: var(--green);
  outline: none;
}

.cookie-preferences-backdrop {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cookie-preferences {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: 32px;
  border: 1px solid rgba(32, 214, 123, 0.3);
  border-radius: 20px;
  background: rgba(10, 12, 15, 0.98);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.68), inset 0 1px rgba(255, 255, 255, 0.04);
  animation: cookiePanelIn 240ms ease both;
}

.cookie-preferences h2 {
  margin: 8px 48px 10px 0;
  font-size: 1.75rem;
  line-height: 1.15;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal-close:hover,
.cookie-modal-close:focus-visible {
  border-color: var(--green);
  background: rgba(32, 214, 123, 0.1);
  color: var(--green);
  outline: 2px solid rgba(32, 214, 123, 0.5);
  outline-offset: 2px;
}

.cookie-category-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

label.cookie-category:hover {
  border-color: rgba(32, 214, 123, 0.28);
  background: rgba(32, 214, 123, 0.035);
}

.cookie-category span {
  display: grid;
  gap: 5px;
}

.cookie-category small {
  color: var(--muted);
  line-height: 1.4;
}

.cookie-always-on {
  display: inline-flex !important;
  flex: 0 0 auto;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(32, 214, 123, 0.3);
  border-radius: 999px;
  background: rgba(32, 214, 123, 0.1);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
}

.cookie-category input {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 26px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  appearance: none;
  background: #23262d;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.cookie-category input::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d7d9df;
  content: "";
  transition: transform 180ms ease;
}

.cookie-category input:checked {
  border-color: var(--green);
  background: rgba(32, 214, 123, 0.28);
}

.cookie-category input:checked::before {
  background: var(--green);
  transform: translateX(22px);
}

.cookie-category input:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.cookie-preferences-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cookie-modal-policy-links {
  justify-content: center;
  margin-top: 18px;
}

@keyframes cookiePanelIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.legal-page {
  min-height: 100vh;
  padding: 48px 20px 72px;
}

.legal-shell {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.legal-header img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.legal-header a,
.legal-content a {
  color: var(--green);
}

.legal-content h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.legal-content h2 {
  margin: 36px 0 12px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: var(--soft);
  line-height: 1.7;
}

.legal-placeholder {
  color: #ffd166;
  font-weight: 700;
}

@media (max-width: 640px) {
  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .cookie-preferences-backdrop {
    padding: 16px;
  }

  .cookie-preferences {
    max-height: calc(100dvh - 32px);
    padding: 26px 20px;
    border-radius: 16px;
  }

  .cookie-preferences-actions {
    grid-template-columns: 1fr;
  }

  .cookie-category {
    gap: 14px;
    padding: 15px;
  }

  .cookie-category small {
    font-size: 0.82rem;
  }

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

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}

.footer-social-column {
  align-self: center;
  justify-self: end;
}

.footer-social-icons a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.footer-social-icons a:hover,
.footer-social-icons a:focus-visible {
  border-color: rgba(32, 214, 123, 0.2);
  background: rgba(32, 214, 123, 0.06);
  box-shadow: 0 0 18px rgba(32, 214, 123, 0.14);
  color: var(--green);
  outline: none;
}

.footer-social-icons svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 180;
  display: grid;
  justify-items: end;
  gap: 14px;
  pointer-events: none;
}

.chat-toggle,
.chat-close,
.chat-send {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(32, 214, 123, 0.34);
  color: var(--text);
  cursor: pointer;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease,
    opacity 240ms ease,
    transform 240ms ease;
}

.chat-toggle {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(10, 12, 15, 0.9);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(32, 214, 123, 0.12);
  pointer-events: auto;
}

.chat-badge {
  position: absolute;
  top: -4px;
  right: -3px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #e53935;
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 5px 14px rgba(229, 57, 53, 0.28);
  opacity: 1;
  transform: scale(1);
  animation: chatBadgePop 280ms cubic-bezier(0.18, 0.88, 0.32, 1.18) 1;
  pointer-events: none;
}

.chat-toggle:hover,
.chat-toggle:focus-visible {
  border-color: rgba(32, 214, 123, 0.52);
  background: rgba(16, 20, 22, 0.94);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.36),
    0 0 32px rgba(32, 214, 123, 0.18);
  transform: translateY(-2px);
  outline: none;
}

.chat-toggle svg,
.chat-close svg,
.chat-send svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-popup {
  position: absolute;
  right: 0;
  bottom: 74px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(386px, calc(100vw - 32px));
  height: min(540px, calc(100vh - 116px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  background: rgba(8, 10, 12, 0.84);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.46),
    0 0 48px rgba(32, 214, 123, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transform-origin: bottom right;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    visibility 260ms ease;
}

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

.chat-popup-header {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-popup-header img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.chat-popup-header h2 {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.2;
}

.chat-popup-header p {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.chat-popup-header p span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(32, 214, 123, 0.28);
}

.chat-close {
  width: 36px;
  height: 36px;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.chat-close:hover,
.chat-close:focus-visible {
  border-color: rgba(32, 214, 123, 0.3);
  background: rgba(32, 214, 123, 0.07);
  color: var(--green);
  outline: none;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-height: 0;
  overflow-y: auto;
  padding: 16px;
  scroll-behavior: smooth;
}

.chat-bubble {
  max-width: 84%;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.48;
  white-space: pre-line;
  opacity: 0;
  transform: translateY(6px);
  animation: chatBubbleIn 220ms ease forwards;
}

.chat-bubble.assistant {
  align-self: flex-start;
  border-bottom-left-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
}

.chat-bubble.user {
  align-self: flex-end;
  border-color: rgba(32, 214, 123, 0.2);
  border-bottom-right-radius: 7px;
  background: rgba(32, 214, 123, 0.16);
}

.chat-typing-indicator,
.chat-bubble.typing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  max-width: none;
  padding: 12px 15px;
  overflow: hidden;
  font-size: 0;
}

.chat-typing-indicator span,
.chat-bubble.typing span {
  display: block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0.45;
  animation: chatTypingDot 1.1s ease-in-out infinite;
}

.chat-typing-indicator span:nth-child(2),
.chat-bubble.typing span:nth-child(2) {
  animation-delay: 150ms;
}

.chat-typing-indicator span:nth-child(3),
.chat-bubble.typing span:nth-child(3) {
  animation-delay: 300ms;
}

.chat-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

.chat-input-row input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-input);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.chat-input-row input:focus-visible {
  border-color: rgba(32, 214, 123, 0.42);
  box-shadow: 0 0 0 3px rgba(32, 214, 123, 0.1);
}

.chat-send {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(32, 214, 123, 0.12);
}

.chat-send:hover:not(:disabled),
.chat-send:focus-visible:not(:disabled) {
  border-color: rgba(32, 214, 123, 0.52);
  background: rgba(32, 214, 123, 0.2);
  box-shadow: 0 0 22px rgba(32, 214, 123, 0.16);
  color: var(--green);
  outline: none;
}

.chat-send:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(14px);
}

.modal-backdrop[hidden] {
  display: none;
}

.contact-modal {
  position: relative;
  width: min(760px, 100%);
  max-height: min(90svh, 880px);
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: #0d0f13;
  box-shadow: 0 24px 100px rgba(0, 0, 0, 0.5);
}

.contact-modal h2 {
  margin: 0 0 24px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.5rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-input);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(32, 214, 123, 0.58);
  box-shadow: 0 0 0 4px rgba(32, 214, 123, 0.08);
}

.privacy {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.privacy input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.privacy .field-error {
  grid-column: 1 / -1;
}

.field-error {
  min-height: 1.2em;
  color: var(--danger);
  font-size: 0.8rem;
  font-weight: 600;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green);
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 190ms; }
.delay-3 { transition-delay: 280ms; }
.delay-4 { transition-delay: 370ms; }

@keyframes scrollPulse {
  0%, 100% { transform: translateY(-6px); opacity: 0.4; }
  50% { transform: translateY(7px); opacity: 1; }
}

@keyframes preloaderMarkIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preloaderBreath {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes preloaderGlowSequence {
  0%, 16% {
    opacity: 0;
    transform: scale(0.9);
  }
  34%, 62% {
    opacity: 0.66;
    transform: scale(1);
  }
  78%, 100% {
    opacity: 0.84;
    transform: scale(1.06);
  }
}

@keyframes preloaderBarFill {
  to {
    transform: scaleX(1);
  }
}

@keyframes preloaderBarOut {
  to {
    opacity: 0;
    transform: translateY(2px);
  }
}

@keyframes heroGreenGlow {
  0%, 100% {
    opacity: 0.62;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@keyframes heroSymbolFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.82); }
}

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

@keyframes typingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.35; }
  40% { transform: translateY(-4px); opacity: 1; }
}

@keyframes chatTypingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}

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

@keyframes chatBadgePop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  68% {
    opacity: 1;
    transform: scale(1.12);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes chatTogglePulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.32),
      0 0 24px rgba(32, 214, 123, 0.12);
  }
  46% {
    transform: translateY(-1px) scale(1.045);
    box-shadow:
      0 20px 52px rgba(0, 0, 0, 0.34),
      0 0 34px rgba(32, 214, 123, 0.2);
  }
}

@keyframes assistantPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(0.94);
    box-shadow: 0 0 18px rgba(32, 214, 123, 0.1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
    box-shadow: 0 0 46px rgba(32, 214, 123, 0.22);
  }
}

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

@keyframes assistantFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes orbitOne {
  from { transform: rotate(0deg) translateX(var(--orbit-one, 84px)) rotate(0deg); }
  to { transform: rotate(360deg) translateX(var(--orbit-one, 84px)) rotate(-360deg); }
}

@keyframes orbitTwo {
  from { transform: rotate(80deg) translateX(var(--orbit-two, 70px)) rotate(-80deg); }
  to { transform: rotate(440deg) translateX(var(--orbit-two, 70px)) rotate(-440deg); }
}

@keyframes orbitThree {
  from { transform: rotate(180deg) translateX(var(--orbit-three, 92px)) rotate(-180deg); }
  to { transform: rotate(540deg) translateX(var(--orbit-three, 92px)) rotate(-540deg); }
}

@keyframes orbitFour {
  from { transform: rotate(260deg) translateX(var(--orbit-four, 62px)) rotate(-260deg); }
  to { transform: rotate(620deg) translateX(var(--orbit-four, 62px)) rotate(-620deg); }
}

@keyframes workflowPillIn {
  0%, 9% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  18%, 88% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0.96;
    transform: translateY(0) scale(1);
  }
}

@keyframes workflowNodeLight {
  0%, 100% {
    color: var(--muted);
    border-color: rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
    transform: translateY(0);
  }
  12%, 28% {
    color: var(--text);
    border-color: rgba(32, 214, 123, 0.44);
    background: rgba(32, 214, 123, 0.1);
    box-shadow: 0 0 28px rgba(32, 214, 123, 0.14);
    transform: translateY(-2px);
  }
}

@keyframes featureReveal {
  0%, 10% {
    opacity: 0;
    transform: translateY(8px);
  }
  20%, 86% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

@keyframes hrEmployeeCardIn {
  0%, 5% { opacity: 0; transform: translateY(8px); }
  10%, 86% { opacity: 1; transform: translateY(0); }
  96%, 100% { opacity: 0; transform: translateY(4px); }
}

@keyframes hrFieldFill {
  0%, 8% { opacity: 0; transform: translateY(7px); }
  16%, 78% { opacity: 1; transform: translateY(0); }
  92%, 100% { opacity: 0; transform: translateY(2px); }
}

@keyframes hrStatusIn {
  0%, 28% { opacity: 0; transform: translateY(6px); }
  34%, 88% { opacity: 1; transform: translateY(0); }
  96%, 100% { opacity: 0; transform: translateY(2px); }
}

@keyframes hrCreatingStatus {
  0%, 76% { opacity: 1; }
  82%, 100% { opacity: 0; }
}

@keyframes hrActiveStatus {
  0%, 76% { opacity: 0; }
  82%, 90% { opacity: 1; text-shadow: 0 0 18px rgba(32, 214, 123, 0.28); }
  96%, 100% { opacity: 0; text-shadow: none; }
}

@keyframes hrAnalysis {
  0%, 26% { opacity: 0; }
  32%, 42% { opacity: 1; }
  48%, 100% { opacity: 0; }
}

@keyframes hrTaskText {
  0%, 4% { color: rgba(255, 255, 255, 0.46); text-shadow: none; }
  8%, 16% { color: var(--soft); text-shadow: 0 0 12px rgba(32, 214, 123, 0.12); }
  22%, 74% { color: var(--text); text-shadow: 0 0 14px rgba(32, 214, 123, 0.12); }
  90%, 100% { color: rgba(255, 255, 255, 0.46); text-shadow: none; }
}

@keyframes hrTaskDot {
  0%, 4% {
    border-color: rgba(255, 255, 255, 0.23);
    background: transparent;
    box-shadow: none;
    transform: rotate(0deg);
  }
  8%, 16% {
    border-color: rgba(32, 214, 123, 0.28);
    border-top-color: var(--green);
    background: rgba(32, 214, 123, 0.06);
    box-shadow: 0 0 12px rgba(32, 214, 123, 0.12);
    transform: rotate(360deg);
  }
  22%, 74% {
    border-color: rgba(32, 214, 123, 0.5);
    background: rgba(32, 214, 123, 0.12);
    box-shadow: 0 0 18px rgba(32, 214, 123, 0.2);
    transform: rotate(360deg);
  }
  90%, 100% {
    border-color: rgba(255, 255, 255, 0.23);
    background: transparent;
    box-shadow: none;
    transform: rotate(0deg);
  }
}

@keyframes hrTaskCheck {
  0%, 16% { opacity: 0; }
  22%, 74% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

@keyframes hrProgressFill {
  0%, 28% { width: 0; opacity: 0.7; }
  38% { width: 14%; }
  48% { width: 28%; }
  58% { width: 44%; }
  68% { width: 62%; }
  78%, 88% { width: 100%; opacity: 1; }
  96%, 100% { width: 0; opacity: 0; }
}

@keyframes hrSuccessMessage {
  0%, 78% { opacity: 0; transform: translateY(5px); }
  84%, 91% { opacity: 1; transform: translateY(0); }
  96%, 100% { opacity: 0; transform: translateY(2px); }
}

@keyframes hrCardGlow {
  0%, 78% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04); }
  84%, 91% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 0 30px rgba(32, 214, 123, 0.14);
  }
  96%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04); }
}

@keyframes calendarVoice {
  0%, 6% { opacity: 0; transform: translateY(10px); }
  12%, 84% { opacity: 1; transform: translateY(0); }
  94%, 100% { opacity: 0; transform: translateY(4px); }
}

@keyframes waveBar {
  0%, 100% { height: 8px; opacity: 0.5; }
  50% { height: 22px; opacity: 1; }
}

@keyframes transcriptReveal {
  0%, 18% { clip-path: inset(0 100% 0 0); opacity: 0; }
  34%, 84% { clip-path: inset(0 0 0 0); opacity: 1; }
  94%, 100% { clip-path: inset(0 0 0 0); opacity: 0; }
}

@keyframes briefStatus {
  0%, 36% { opacity: 0; }
  42%, 52% { opacity: 1; }
  58%, 100% { opacity: 0; }
}

@keyframes selectedSlot {
  0%, 50% { background: rgba(32, 214, 123, 0); box-shadow: none; }
  58%, 82% {
    background: rgba(32, 214, 123, 0.1);
    box-shadow: inset 0 0 0 1px rgba(32, 214, 123, 0.28), 0 0 26px rgba(32, 214, 123, 0.08);
  }
  96%, 100% { background: rgba(32, 214, 123, 0); box-shadow: none; }
}

@keyframes eventCreate {
  0%, 56% { opacity: 0; transform: translateY(18px) scale(0.96); box-shadow: none; }
  64%, 84% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 28px rgba(32, 214, 123, 0.22);
  }
  96%, 100% { opacity: 0; transform: translateY(8px) scale(0.98); box-shadow: none; }
}

@keyframes checkIn {
  0%, 8% { opacity: 0; transform: translateY(7px); }
  16%, 76% { opacity: 1; transform: translateY(0); }
  92%, 100% { opacity: 0; transform: translateY(2px); }
}

@keyframes documentArrive {
  0%, 6% { opacity: 0; transform: translateX(-16px); }
  13%, 84% { opacity: 1; transform: translateX(0); }
  96%, 100% { opacity: 0; transform: translateX(-8px); }
}

@keyframes sourceReveal {
  0%, 15% { opacity: 0; transform: translateY(4px); }
  22%, 84% { opacity: 1; transform: translateY(0); }
  96%, 100% { opacity: 0; transform: translateY(2px); }
}

@keyframes ocrStatus {
  0%, 25% { opacity: 0; }
  31%, 42% { opacity: 1; }
  48%, 100% { opacity: 0; }
}

@keyframes scanDocument {
  0%, 26% { opacity: 0; top: -20%; }
  31% { opacity: 1; top: -8%; }
  46% { opacity: 1; top: 94%; }
  52%, 100% { opacity: 0; top: 110%; }
}

@keyframes dataReveal {
  0%, 8% { opacity: 0; transform: translateY(6px); }
  16%, 76% { opacity: 1; transform: translateY(0); }
  92%, 100% { opacity: 0; transform: translateY(2px); }
}

@keyframes folderTarget {
  0%, 55% { color: var(--muted); text-shadow: none; }
  62%, 84% { color: var(--green); text-shadow: 0 0 18px rgba(32, 214, 123, 0.26); }
  96%, 100% { color: var(--muted); text-shadow: none; }
}

@keyframes moveFile {
  0%, 58% { opacity: 0; transform: translate(-94%, -132px) scale(0.96); }
  66% { opacity: 1; transform: translate(-34%, -72px) scale(1); }
  76%, 84% { opacity: 1; transform: translate(0, 0) scale(1); }
  96%, 100% { opacity: 0; transform: translate(0, 0) scale(0.98); }
}

@keyframes archivedFile {
  0%, 72% { opacity: 0; color: var(--muted); text-shadow: none; }
  80%, 88% {
    opacity: 1;
    color: var(--green);
    text-shadow: 0 0 18px rgba(32, 214, 123, 0.34);
  }
  96%, 100% { opacity: 0; color: var(--muted); text-shadow: none; }
}

@keyframes integrationCardsFade {
  0%, 37% { opacity: 1; }
  45%, 84% { opacity: 0; }
  92%, 100% { opacity: 1; }
}

@keyframes integrationMoreFade {
  0%, 46% { opacity: 0; }
  54%, 78% { opacity: 1; }
  88%, 100% { opacity: 0; }
}

@keyframes integrationWordIn {
  0%, 45% {
    opacity: 0;
  }
  52%, 80% {
    opacity: 1;
  }
  89%, 100% {
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .scroll-nav {
    right: 24px;
    gap: 12px;
  }

  .scroll-nav a {
    width: 7px;
    height: 7px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 112px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(32, 214, 123, 0.2);
    border-radius: 32px;
    background:
      radial-gradient(circle at 50% 0%, rgba(32, 214, 123, 0.075), transparent 42%),
      linear-gradient(180deg, rgba(12, 15, 16, 0.96), rgba(8, 10, 12, 0.94));
    box-shadow:
      0 28px 86px rgba(0, 0, 0, 0.46),
      0 0 48px rgba(32, 214, 123, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(0.98);
    transform-origin: top center;
    backdrop-filter: blur(24px) saturate(130%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    transition:
      opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links a,
  .nav-links .nav-cta {
    width: 100%;
    min-height: 58px;
    padding: 0 14px 0 12px;
    border-radius: 20px;
    font-weight: 750;
    transition:
      background 220ms ease,
      border-color 220ms ease,
      color 220ms ease,
      box-shadow 220ms ease,
      transform 220ms ease;
  }

  .nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(32, 214, 123, 0.14);
    background:
      linear-gradient(180deg, rgba(32, 214, 123, 0.045), rgba(255, 255, 255, 0.018)),
      rgba(255, 255, 255, 0.055);
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: var(--text);
  }

  .nav-links a::before {
    content: "";
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.075);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .nav-links a:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23d7d9df' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='6' height='6' rx='1.4'/%3E%3Crect x='14' y='4' width='6' height='6' rx='1.4'/%3E%3Crect x='4' y='14' width='6' height='6' rx='1.4'/%3E%3Crect x='14' y='14' width='6' height='6' rx='1.4'/%3E%3C/svg%3E");
  }

  .nav-links a:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23d7d9df' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='2.5'/%3E%3Ccircle cx='18' cy='18' r='2.5'/%3E%3Cpath d='M8.5 6h4.5a3 3 0 0 1 3 3v6.5'/%3E%3Cpath d='M6 8.5v3a3 3 0 0 0 3 3h6.5'/%3E%3C/svg%3E");
  }

  .nav-links a:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23d7d9df' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 7h6'/%3E%3Cpath d='M9 17h6'/%3E%3Cpath d='M7 9v6'/%3E%3Cpath d='M17 9v6'/%3E%3Crect x='4' y='5' width='4' height='4' rx='1.2'/%3E%3Crect x='16' y='5' width='4' height='4' rx='1.2'/%3E%3Crect x='4' y='15' width='4' height='4' rx='1.2'/%3E%3Crect x='16' y='15' width='4' height='4' rx='1.2'/%3E%3C/svg%3E");
  }

  .nav-links a:nth-child(4)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23d7d9df' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 7.5A3.5 3.5 0 0 1 8.5 4h7A3.5 3.5 0 0 1 19 7.5v4A3.5 3.5 0 0 1 15.5 15H11l-5 4v-4.8A3.5 3.5 0 0 1 5 11.5z'/%3E%3Cpath d='M9 8h6'/%3E%3Cpath d='M9 11h4'/%3E%3C/svg%3E");
  }

  .nav-links a::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-top: 1.5px solid rgba(255, 255, 255, 0.68);
    border-right: 1.5px solid rgba(255, 255, 255, 0.68);
    transform: rotate(45deg);
    transition:
      border-color 220ms ease,
      transform 220ms ease;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    border-color: rgba(32, 214, 123, 0.28);
    background:
      linear-gradient(180deg, rgba(32, 214, 123, 0.075), rgba(255, 255, 255, 0.025)),
      rgba(255, 255, 255, 0.07);
    box-shadow:
      0 12px 26px rgba(0, 0, 0, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
    color: var(--text);
    outline: none;
  }

  .nav-links a:hover::after,
  .nav-links a:focus-visible::after {
    border-color: rgba(32, 214, 123, 0.9);
    transform: translateX(4px) rotate(45deg);
  }

  .nav-links .nav-cta {
    position: static;
    transform: none;
  }

  .nav-links .navbar-consultation-button,
  .nav-links .navbar-consultation-button:hover,
  .nav-links .navbar-consultation-button:focus,
  .nav-links .navbar-consultation-button:focus-visible,
  .nav-links .navbar-consultation-button:active {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 50px;
    margin-top: 4px;
    margin-bottom: 0;
    padding: 0 14px;
    border-radius: 20px;
    line-height: 1;
    justify-content: center;
    transform: none;
    translate: none;
    box-shadow:
      0 14px 32px rgba(32, 214, 123, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .nav-links .navbar-consultation-button:hover,
  .nav-links .navbar-consultation-button:focus,
  .nav-links .navbar-consultation-button:focus-visible,
  .nav-links .navbar-consultation-button:active {
    box-shadow:
      0 16px 38px rgba(32, 214, 123, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
    filter: brightness(1.05);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(430px, 92vw);
    order: -1;
  }

  .systems-grid,
  .compare-grid,
  .before-after-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .drive-demo {
    grid-template-columns: 1fr;
  }

  .assistant-workflow-map {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
    gap: 18px;
  }

  .assistant-workflow-map span {
    min-height: 54px;
  }

  .assistant-workflow-map span:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -18px;
    width: 2px;
    height: 18px;
    transform: translateX(50%);
    background: linear-gradient(180deg, rgba(32, 214, 123, 0.65), rgba(157, 201, 255, 0.32));
  }

  .drive-checks {
    grid-column: auto;
  }

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

  .integration-more {
    font-size: clamp(2.98rem, 7.5vw, 3.6rem);
  }

  .workflow {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 18px;
  }

  .workflow-line {
    top: 0;
    left: 18px;
    width: 2px;
    height: var(--workflow-progress, 0%);
    max-height: 100%;
  }

  .workflow-step {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .workflow-step span {
    margin: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .scroll-nav {
    display: none;
  }

  .chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .chat-popup {
    width: 100%;
    height: min(540px, calc(100dvh - 104px));
    max-height: calc(100dvh - 104px);
    bottom: 70px;
  }

  .chat-toggle {
    width: 56px;
    height: 56px;
  }

  .chat-badge {
    top: -3px;
    right: -2px;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .nav-shell {
    width: min(1100px, calc(100% - 24px));
    min-height: 64px;
    padding: 0 14px;
    border-radius: 24px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    display: none;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-title {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-actions .btn,
  .cta-content .btn {
    width: 100%;
  }

  .panel,
  .system-card,
  .list-panel,
  .why-card {
    padding: 20px;
  }

  .ai-assistant-visual {
    width: min(210px, 72vw);
  }

  .work-hero-panel .ai-assistant-visual {
    --orbit-one: 104px;
    --orbit-two: 86px;
    --orbit-three: 116px;
    --orbit-four: 74px;
    width: min(250px, 72vw);
  }

  .assistant-core {
    width: 92px;
    height: 92px;
    border-radius: 28px;
  }

  .work-hero-panel .assistant-core {
    width: 104px;
    height: 104px;
    border-radius: 30px;
  }

  .workflow-pill {
    padding: 14px 12px;
    font-size: 0.94rem;
  }

  .work-hero-panel .workflow-pill {
    padding: 16px 12px;
    font-size: clamp(1rem, 5vw, 1.24rem);
  }

  .workflow-closing,
  .workflow-features {
    text-align: left;
  }

  .hr-demo {
    grid-template-columns: 1fr;
  }

  .calendar-days,
  .calendar-row {
    grid-template-columns: 44px repeat(4, minmax(58px, 1fr));
  }

  .transcript {
    white-space: normal;
    clip-path: inset(0 0 0 0);
    animation: calendarVoice var(--demo-duration) ease-in-out infinite;
  }

  .visual-checklist {
    grid-template-columns: 1fr;
    min-height: 132px;
  }

  .folder-zone {
    min-height: 238px;
  }

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

  .integration-more {
    flex-wrap: wrap;
    gap: 0.2em 0.28em;
    font-size: clamp(2.19rem, 10vw, 2.65rem);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-brand {
    justify-items: center;
  }

  .footer-contact {
    justify-items: center;
    text-align: center;
  }

  .footer-social-column {
    justify-self: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contact a {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 768px) {
  .chat-widget {
    right: 16px;
    bottom: 16px;
  }

  .chat-popup.is-open + .chat-toggle {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.92);
  }

  .chat-popup {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    height: min(80vh, 700px);
    max-height: calc(100vh - 24px);
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
  }

  .chat-messages {
    min-width: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .chat-bubble {
    max-width: 80%;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .chat-input-row {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }
}

@supports (height: 100dvh) {
  @media (max-width: 768px) {
    .chat-popup {
      height: min(80dvh, 700px);
      max-height: calc(100dvh - 24px);
    }
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .preloader-mark,
  .preloader-mark::before,
  .preloader-bar,
  .preloader-bar span {
    animation: none !important;
  }

  .preloader-mark,
  .preloader-mark::before {
    opacity: 1;
    transform: none;
  }

  .preloader-bar span {
    transform: scaleX(1);
  }
}
