@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #11152d;
  --ink-soft: #51566b;
  --navy: #10162f;
  --navy-light: #1b2347;
  --paper: #f5f4ef;
  --white: #ffffff;
  --lime: #cbff5d;
  --lime-soft: #e3ff9e;
  --blue: #627cff;
  --violet: #a889ff;
  --line: rgba(17, 21, 45, 0.13);
  --container: 1180px;
  --radius-lg: 36px;
  --radius-md: 24px;
  --shadow: 0 24px 70px rgba(16, 22, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

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

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(16, 22, 47, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 5px);
  align-items: end;
  gap: 3px;
  width: 22px;
  height: 22px;
  padding: 3px;
  background: var(--lime);
  border-radius: 7px;
  transform: rotate(-4deg);
}

.brand-mark span {
  display: block;
  height: 8px;
  background: var(--navy);
  border-radius: 3px;
}

.brand-mark span:nth-child(2) {
  height: 14px;
}

.brand-mark span:nth-child(3) {
  height: 11px;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
}

.header-cta {
  margin-left: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 10px 30px rgba(203, 255, 93, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #dcff8f;
  box-shadow: 0 14px 36px rgba(203, 255, 93, 0.25);
}

.button-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-small {
  min-height: 42px;
  padding-inline: 19px;
  font-size: 13px;
}

.button-large {
  min-height: 64px;
  padding-inline: 30px;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(17, 21, 45, 0.25);
  text-underline-offset: 6px;
}

.text-link-light {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 170px 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(37, 47, 91, 0.4), transparent 45%),
    var(--navy);
}

.hero::after {
  position: absolute;
  right: -100px;
  bottom: 50px;
  width: 550px;
  height: 550px;
  content: '';
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 120px;
  left: -220px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(98, 124, 255, 0.25), transparent 68%);
}

.hero-glow-two {
  top: 180px;
  right: -150px;
  width: 670px;
  height: 670px;
  background: radial-gradient(circle, rgba(203, 255, 93, 0.1), transparent 66%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #5a6072;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow-light,
.section-kicker-light {
  color: rgba(255, 255, 255, 0.62);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(203, 255, 93, 0.12);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(52px, 5.5vw, 78px);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -4.7px;
}

.hero h1 em {
  display: block;
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-checks {
  display: flex;
  gap: 24px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-checks span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  color: var(--navy);
  background: rgba(203, 255, 93, 0.8);
  border-radius: 50%;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 580px;
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: 350px;
  height: 660px;
  padding: 12px;
  overflow: hidden;
  color: var(--ink);
  background: #f7f8fb;
  border: 8px solid #070b1c;
  border-radius: 52px;
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transform: rotate(2.5deg);
}

.phone-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 800;
}

.phone-island {
  position: absolute;
  top: 1px;
  left: 50%;
  width: 94px;
  height: 24px;
  background: #070b1c;
  border-radius: 20px;
  transform: translateX(-50%);
}

.phone-signal {
  letter-spacing: 1px;
}

.chat-header {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 2px -12px 0;
  padding: 10px 18px 12px;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid #e6e8ef;
}

.avatar {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  align-items: end;
  justify-content: center;
  gap: 2px;
  width: 38px;
  height: 38px;
  padding-bottom: 10px;
  background: var(--navy);
  border-radius: 50%;
}

.avatar span {
  height: 8px;
  background: var(--lime);
  border-radius: 2px;
}

.avatar span:nth-child(2) {
  height: 13px;
}

.avatar span:nth-child(3) {
  height: 10px;
}

.chat-header strong,
.chat-header small {
  display: block;
}

.chat-header strong {
  font-size: 13px;
}

.chat-header small {
  color: #8990a1;
  font-size: 9px;
}

.chat-header small span {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #62c875;
  border-radius: 50%;
}

.chat-more {
  color: #9095a5;
  letter-spacing: 1px;
}

.chat-body {
  position: relative;
  min-height: 485px;
  padding: 18px 2px 10px;
  background:
    radial-gradient(circle at 20% 30%, rgba(98, 124, 255, 0.04), transparent 40%),
    #f7f8fb;
}

.chat-date {
  width: max-content;
  margin: 0 auto 22px;
  padding: 4px 10px;
  color: #8a90a0;
  background: #e9ebf1;
  border-radius: 12px;
  font-size: 8px;
}

.message {
  position: relative;
  width: 89%;
  margin-bottom: 14px;
  padding: 12px 13px 17px;
  border-radius: 16px;
  font-size: 10px;
  line-height: 1.5;
}

.message time {
  position: absolute;
  right: 10px;
  bottom: 5px;
  color: #9399a7;
  font-size: 7px;
}

.message-user {
  margin-left: auto;
  background: #dff4ff;
  border-bottom-right-radius: 4px;
}

.message-agent {
  background: var(--white);
  border: 1px solid #e7e9ef;
  border-bottom-left-radius: 4px;
  box-shadow: 0 7px 20px rgba(16, 22, 47, 0.06);
}

.agent-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
  font-size: 8px;
  font-weight: 800;
}

.agent-mini-avatar {
  display: grid;
  width: 17px;
  height: 17px;
  color: var(--lime);
  background: var(--navy);
  border-radius: 50%;
  place-items: center;
}

.task-result {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
  padding: 9px;
  background: #f4f5f8;
  border-radius: 10px;
}

.doc-icon {
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
  place-items: center;
  font-size: 13px;
}

.task-result strong,
.task-result small {
  display: block;
}

.task-result strong {
  font-size: 8px;
}

.task-result small {
  color: #8f94a2;
  font-size: 7px;
}

.typing-row {
  display: flex;
  gap: 3px;
  width: max-content;
  padding: 8px 11px;
  background: var(--white);
  border: 1px solid #e7e9ef;
  border-radius: 12px;
}

.typing-row span {
  width: 4px;
  height: 4px;
  background: #9ca1ae;
  border-radius: 50%;
  animation: typing 1.2s infinite ease-in-out;
}

.typing-row span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-row span:nth-child(3) {
  animation-delay: 0.3s;
}

.chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
  padding: 4px 5px 4px 14px;
  color: #999eac;
  background: var(--white);
  border: 1px solid #e1e4eb;
  border-radius: 24px;
  font-size: 9px;
}

.chat-input button {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--navy);
  background: var(--lime);
  border: 0;
  border-radius: 50%;
  place-items: center;
}

.floating-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px 10px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
  animation: float 4s infinite ease-in-out;
}

.mini-icon {
  display: grid;
  width: 25px;
  height: 25px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 8px;
  place-items: center;
}

.mini-icon-blue {
  color: var(--white);
  background: var(--blue);
}

.badge-calendar {
  top: 150px;
  left: 4px;
}

.badge-crm {
  right: -10px;
  bottom: 145px;
  animation-delay: -2s;
}

.orbit {
  position: absolute;
  top: 45%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 500px;
  height: 500px;
}

.orbit-two {
  width: 620px;
  height: 620px;
}

.hero-metrics {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics div {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 27px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics div:first-child {
  padding-left: 0;
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  color: var(--lime);
  font-size: 23px;
  line-height: 1;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.section {
  padding: 130px 0;
}

.section-heading {
  margin-bottom: 64px;
}

.section-heading h2,
.control h2,
.integrations h2,
.responsibility h2,
.demo h2,
.faq h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -3.5px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.split-heading p,
.centered p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 16px;
}

.centered {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.centered .section-kicker {
  justify-content: center;
}

.centered p {
  max-width: 670px;
  margin: 24px auto 0;
}

.problem {
  background: var(--paper);
}

.barrier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.barrier-card {
  position: relative;
  min-height: 410px;
  padding: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.barrier-card-accent {
  background: var(--lime);
  border-color: var(--lime);
}

.card-index {
  color: #8a8e9d;
  font-size: 11px;
  font-weight: 800;
}

.barrier-card-accent .card-index {
  color: rgba(17, 21, 45, 0.54);
}

.barrier-icon {
  display: grid;
  width: 80px;
  height: 80px;
  margin: 56px 0 35px;
  background: #f3f4f7;
  border-radius: 50%;
  place-items: center;
}

.barrier-card-accent .barrier-icon {
  background: rgba(255, 255, 255, 0.45);
}

.barrier-icon svg {
  width: 34px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.barrier-card h3 {
  max-width: 280px;
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.7px;
}

.barrier-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.problem-answer {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding: 25px 30px;
  border-bottom: 1px solid var(--line);
}

.problem-answer span {
  color: var(--ink-soft);
}

.problem-answer strong {
  font-size: 18px;
}

.use-cases {
  background: #ebeae4;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.role-card {
  display: flex;
  flex-direction: column;
  min-height: 680px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.role-card-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.role-card-lime {
  background: var(--lime);
  border-color: var(--lime);
}

.role-card-light {
  background: var(--white);
}

.role-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.role-number {
  opacity: 0.5;
}

.role-tag {
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 20px;
  opacity: 0.65;
}

.role-icon,
.operations-visual,
.conversation-visual {
  height: 180px;
  margin: 40px 0 35px;
}

.executive-icon {
  position: relative;
  display: grid;
  place-items: center;
}

.executive-icon::before,
.executive-icon::after {
  position: absolute;
  content: '';
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.executive-icon::before {
  width: 150px;
  height: 150px;
}

.executive-icon::after {
  width: 105px;
  height: 105px;
}

.role-avatar {
  position: relative;
  z-index: 2;
  display: grid;
  width: 66px;
  height: 66px;
  color: var(--navy);
  background: var(--lime);
  border: 7px solid #242c52;
  border-radius: 50%;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.orbit-dot {
  position: absolute;
  top: 24px;
  right: 68px;
  z-index: 2;
  width: 24px;
  height: 24px;
  background: var(--blue);
  border: 5px solid var(--navy-light);
  border-radius: 50%;
}

.operations-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  transform: rotate(-2deg);
}

.operations-visual div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 21, 45, 0.09);
  border-radius: 11px;
  box-shadow: 0 8px 15px rgba(17, 21, 45, 0.06);
  font-size: 10px;
  font-weight: 700;
}

.operations-visual div:nth-child(2) {
  transform: translateX(20px);
}

.operations-visual b {
  padding: 4px 7px;
  color: #417344;
  background: #dff7c3;
  border-radius: 10px;
  font-size: 7px;
}

.conversation-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.conversation-avatar {
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  place-items: center;
  font-weight: 800;
}

.conversation-visual > div:last-child {
  width: 150px;
  padding: 13px;
  background: #f0f1f5;
  border-radius: 13px;
}

.conversation-visual span {
  display: block;
  width: 100%;
  height: 7px;
  margin-bottom: 7px;
  background: #d4d7e0;
  border-radius: 4px;
}

.conversation-visual span:nth-child(2) {
  width: 68%;
}

.conversation-visual small {
  color: #52a85d;
  font-size: 7px;
  font-weight: 700;
}

.role-card h3 {
  margin-bottom: 10px;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -1.2px;
}

.role-card > p {
  min-height: 52px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 13px;
}

.role-card-dark > p {
  color: rgba(255, 255, 255, 0.6);
}

.role-card ul {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.role-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(17, 21, 45, 0.1);
  font-size: 12px;
}

.role-card li::before {
  margin-right: 9px;
  content: '↗';
  color: var(--blue);
}

.role-card-dark li {
  border-color: rgba(255, 255, 255, 0.12);
}

.role-card-dark li::before {
  color: var(--lime);
}

.role-example {
  margin-top: auto;
  padding: 15px;
  background: rgba(17, 21, 45, 0.05);
  border-radius: 12px;
  font-size: 10px;
  line-height: 1.5;
}

.role-card-dark .role-example {
  background: rgba(255, 255, 255, 0.08);
}

.role-example span {
  display: block;
  margin-bottom: 5px;
  opacity: 0.5;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.control {
  color: var(--white);
  background: var(--navy);
}

.control-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.control-copy > p {
  max-width: 520px;
  margin: 26px 0 40px;
  color: rgba(255, 255, 255, 0.58);
}

.control-list {
  display: grid;
  gap: 18px;
}

.control-list > div {
  display: flex;
  gap: 14px;
}

.control-check {
  display: grid;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.control-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.control-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 14px;
}

.control-panel {
  padding: 27px;
  color: var(--ink);
  background: #f5f6f9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
  transform: rotate(1deg);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 21px;
  border-bottom: 1px solid #e1e3e9;
}

.panel-header small,
.panel-header strong {
  display: block;
}

.panel-header small {
  color: #8a8f9f;
  font-size: 9px;
}

.panel-header strong {
  font-size: 14px;
}

.panel-header strong span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #58c16a;
  border-radius: 50%;
}

.panel-time {
  padding: 5px 9px;
  color: #4e9255;
  background: #e0f3d9;
  border-radius: 12px;
  font-size: 8px;
  font-weight: 800;
}

.panel-task {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 18px 0;
  border-bottom: 1px solid #e1e3e9;
}

.task-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 12px;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}

.task-icon-blue {
  color: var(--white);
  background: var(--blue);
}

.task-icon-violet {
  color: var(--white);
  background: var(--violet);
}

.panel-task small,
.panel-task strong,
.panel-task span {
  display: block;
}

.panel-task small {
  color: #969aa8;
  font-size: 8px;
}

.panel-task strong {
  margin: 2px 0 4px;
  font-size: 11px;
}

.panel-task .approval-label {
  color: #a97c2c;
  font-size: 8px;
}

.panel-task .complete-label {
  color: #57925b;
  font-size: 8px;
}

.panel-task button {
  padding: 7px 10px;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 9px;
  font-size: 8px;
}

.task-done {
  display: grid !important;
  width: 26px;
  height: 26px;
  color: #4d9a57;
  background: #e0f3d9;
  border-radius: 50%;
  place-items: center;
  font-size: 10px;
  font-weight: 900;
}

.panel-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 10px;
  padding-top: 20px;
  font-size: 10px;
}

.panel-footer span {
  color: #8c91a0;
}

.panel-footer strong {
  font-size: 11px;
}

.progress {
  grid-column: 1 / -1;
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
  background: #e0e2e8;
  border-radius: 5px;
}

.progress span {
  display: block;
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--lime));
  border-radius: 5px;
}

.process {
  background: var(--paper);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-item {
  display: grid;
  grid-template-columns: 60px 140px 1fr 120px;
  align-items: center;
  gap: 25px;
  min-height: 165px;
  border-bottom: 1px solid var(--line);
}

.process-number {
  color: #8d91a0;
  font-size: 12px;
  font-weight: 800;
}

.process-line {
  position: relative;
  height: 1px;
  background: #d7d8d6;
}

.process-line span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

.process-item h3 {
  margin-bottom: 8px;
  font-size: 22px;
  letter-spacing: -0.7px;
}

.process-item p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.process-meta {
  justify-self: end;
  padding: 7px 12px;
  background: #e8e8e3;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
}

.integrations {
  padding-top: 0;
}

.integrations-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  min-height: 620px;
  padding: 50px 60px;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
}

.integrations-copy p {
  max-width: 430px;
  margin: 27px 0 32px;
  color: var(--ink-soft);
  font-size: 14px;
}

.integration-cloud {
  position: relative;
  height: 480px;
}

.integration-center,
.integration-chip {
  position: absolute;
  z-index: 2;
}

.integration-center {
  top: 50%;
  left: 50%;
  display: grid;
  width: 115px;
  height: 115px;
  background: var(--navy);
  border: 9px solid #eef0f3;
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(16, 22, 47, 0.2);
  transform: translate(-50%, -50%);
  place-items: center;
}

.integration-center small {
  position: absolute;
  bottom: -34px;
  width: max-content;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
}

.brand-mark-large {
  grid-template-columns: repeat(3, 7px);
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 10px;
}

.brand-mark-large span {
  height: 11px;
}

.brand-mark-large span:nth-child(2) {
  height: 19px;
}

.brand-mark-large span:nth-child(3) {
  height: 15px;
}

.integration-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid #e4e5e9;
  border-radius: 13px;
  box-shadow: 0 12px 30px rgba(16, 22, 47, 0.1);
  font-size: 10px;
  font-weight: 800;
}

.integration-chip span {
  display: grid;
  width: 26px;
  height: 26px;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
  place-items: center;
}

.chip-telegram {
  top: 38px;
  left: 20px;
}

.chip-telegram span {
  background: #38a8e8;
}

.chip-gmail {
  top: 5px;
  left: 42%;
}

.chip-gmail span {
  color: #d8584d;
  background: #fff1ee;
}

.chip-calendar {
  top: 65px;
  right: 5px;
}

.chip-calendar span {
  background: var(--blue);
}

.chip-notion {
  top: 205px;
  left: 0;
}

.chip-notion span {
  background: var(--navy);
}

.chip-hubspot {
  top: 215px;
  right: -10px;
}

.chip-hubspot span {
  background: #ff7955;
}

.chip-sheets {
  bottom: 30px;
  left: 85px;
}

.chip-sheets span {
  background: #45a76f;
}

.chip-slack {
  right: 50px;
  bottom: 20px;
}

.chip-slack span {
  background: #713c7d;
}

.integration-lines {
  position: absolute;
  inset: 20px 0 0;
  width: 100%;
  height: 440px;
}

.integration-lines path {
  fill: none;
  stroke: #dfe1e7;
  stroke-dasharray: 5 6;
  stroke-width: 1.3;
}

.responsibility {
  padding-top: 0;
}

.responsibility-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  padding: 65px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(98, 124, 255, 0.3), transparent 32%),
    var(--navy);
  border-radius: var(--radius-lg);
}

.responsibility-points {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.responsibility-points > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.responsibility-points > div > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.responsibility-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.responsibility-points strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.demo {
  padding-top: 0;
}

.demo-card {
  position: relative;
  padding: 90px 40px;
  overflow: hidden;
  text-align: center;
  background: var(--lime);
  border-radius: var(--radius-lg);
}

.demo-card::before,
.demo-card::after {
  position: absolute;
  content: '';
  border: 1px solid rgba(17, 21, 45, 0.12);
  border-radius: 50%;
}

.demo-card::before {
  top: -160px;
  left: -130px;
  width: 430px;
  height: 430px;
}

.demo-card::after {
  right: -90px;
  bottom: -210px;
  width: 500px;
  height: 500px;
}

.demo-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 27px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
}

.demo-badge span {
  width: 7px;
  height: 7px;
  background: #5aa65f;
  border-radius: 50%;
}

.demo h2 {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.demo-card > p {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 27px auto 34px;
  color: rgba(17, 21, 45, 0.68);
}

.demo-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.demo-actions .button {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 35px rgba(17, 21, 45, 0.18);
}

.demo-actions > span {
  font-size: 9px;
  font-weight: 600;
  opacity: 0.6;
}

.demo-note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 37px;
  font-size: 10px;
}

.demo-note span {
  font-weight: 800;
}

.demo-note i {
  width: 3px;
  height: 3px;
  background: var(--ink);
  border-radius: 50%;
  opacity: 0.3;
}

.faq {
  padding-top: 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro > p {
  margin: 35px 0 4px;
  color: var(--ink-soft);
  font-size: 12px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-item button {
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 27px 0;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
}

.faq-item button span {
  font-size: 16px;
  font-weight: 700;
}

.faq-item button i {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: '';
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 13px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 50px 27px 0;
}

.site-footer {
  padding: 70px 0 25px;
  color: var(--white);
  background: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 40px;
  padding-bottom: 60px;
}

.brand-light {
  color: var(--white);
}

.footer-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.32);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

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

@keyframes typing {
  0%, 60%, 100% { opacity: 0.4; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

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

  .header-cta {
    margin-left: auto;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .floating-badge {
    display: none;
  }

  .barrier-card {
    min-height: 390px;
    padding: 26px;
  }

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

  .role-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    min-height: auto;
  }

  .role-topline {
    grid-column: 1 / -1;
  }

  .role-icon,
  .operations-visual,
  .conversation-visual {
    grid-row: 2 / span 4;
    grid-column: 2;
    align-self: center;
  }

  .role-card h3 {
    grid-row: 2;
    grid-column: 1;
    margin-top: 50px;
  }

  .role-card > p {
    grid-row: 3;
    grid-column: 1;
  }

  .role-card ul {
    grid-row: 4;
    grid-column: 1;
  }

  .role-example {
    grid-row: 5;
    grid-column: 1;
  }

  .control-grid {
    gap: 45px;
  }

  .integrations-inner {
    grid-template-columns: 0.9fr 1.1fr;
    padding-inline: 40px;
  }

  .responsibility-card {
    gap: 45px;
    padding: 50px;
  }
}

@media (max-width: 800px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    height: 70px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
  }

  .menu-button span {
    width: 100%;
    height: 1px;
    background: var(--white);
    transition: transform 0.2s ease;
  }

  .menu-button[aria-expanded='true'] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded='true'] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 69px 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 16px 28px;
    visibility: hidden;
    background: rgba(16, 22, 47, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  .mobile-nav .button {
    margin-top: 12px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 0;
  }

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

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero h1 {
    max-width: 650px;
    margin-inline: auto;
    font-size: clamp(45px, 10vw, 64px);
    letter-spacing: -3.5px;
  }

  .hero-lead {
    margin-inline: auto;
  }

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

  .hero-visual {
    min-height: 630px;
    margin-top: 30px;
  }

  .hero-metrics {
    margin-top: 15px;
  }

  .hero-metrics div {
    flex-direction: column;
    gap: 7px;
    padding: 22px 14px;
  }

  .hero-metrics div:first-child {
    padding-left: 14px;
  }

  .section {
    padding: 95px 0;
  }

  .split-heading,
  .control-grid,
  .integrations-inner,
  .responsibility-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 25px;
  }

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

  .barrier-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    column-gap: 24px;
    align-items: center;
    min-height: auto;
  }

  .card-index {
    grid-column: 1 / -1;
  }

  .barrier-icon {
    grid-row: 2 / span 2;
    margin: 30px 0;
  }

  .barrier-card h3 {
    align-self: end;
    margin-top: 30px;
  }

  .barrier-card p {
    align-self: start;
    margin-bottom: 30px;
  }

  .problem-answer {
    flex-direction: column;
    gap: 8px;
  }

  .control-grid {
    gap: 55px;
  }

  .process-item {
    grid-template-columns: 42px 1fr auto;
    gap: 15px;
    padding: 30px 0;
  }

  .process-line {
    display: none;
  }

  .integrations-inner {
    padding: 50px 30px 20px;
  }

  .integration-cloud {
    margin-top: 25px;
  }

  .responsibility-card {
    gap: 45px;
  }

  .faq-grid {
    gap: 50px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 45px;
    line-height: 1.02;
    letter-spacing: -2.8px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-checks {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .hero-visual {
    min-height: 565px;
    margin-inline: -5px;
  }

  .phone-shell {
    width: 310px;
    height: 580px;
    border-radius: 44px;
  }

  .chat-body {
    min-height: 408px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .hero-metrics div,
  .hero-metrics div:first-child {
    flex-direction: row;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .hero-metrics strong {
    min-width: 75px;
  }

  .section {
    padding: 75px 0;
  }

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

  .section-heading h2,
  .control h2,
  .integrations h2,
  .responsibility h2,
  .demo h2,
  .faq h2 {
    font-size: 39px;
    letter-spacing: -2.5px;
  }

  .barrier-card {
    display: block;
    padding: 24px;
  }

  .barrier-icon {
    width: 66px;
    height: 66px;
    margin: 30px 0 25px;
  }

  .barrier-card h3 {
    margin-top: 0;
  }

  .barrier-card p {
    margin-bottom: 0;
  }

  .problem-answer {
    padding-inline: 10px;
  }

  .role-card {
    display: flex;
    min-height: 680px;
    padding: 24px;
  }

  .role-icon,
  .operations-visual,
  .conversation-visual {
    order: 1;
    width: 100%;
    margin: 28px 0 25px;
  }

  .role-topline {
    order: 0;
  }

  .role-card h3 {
    order: 2;
    margin-top: 0;
  }

  .role-card > p {
    order: 3;
  }

  .role-card ul {
    order: 4;
  }

  .role-example {
    order: 5;
  }

  .control-panel {
    padding: 18px;
    transform: none;
  }

  .panel-task {
    grid-template-columns: 38px 1fr;
  }

  .panel-task > button,
  .panel-task > .task-done {
    display: none !important;
  }

  .process-item {
    grid-template-columns: 35px 1fr;
  }

  .process-meta {
    grid-column: 2;
    justify-self: start;
  }

  .integrations-inner {
    padding: 35px 22px 0;
    border-radius: 25px;
  }

  .integration-cloud {
    height: 390px;
    margin-inline: -20px;
    transform: scale(0.82);
  }

  .responsibility-card {
    padding: 38px 25px;
    border-radius: 25px;
  }

  .demo-card {
    padding: 65px 22px;
    border-radius: 25px;
  }

  .demo-actions .button {
    width: 100%;
  }

  .demo-note {
    flex-wrap: wrap;
  }

  .faq-item button {
    padding: 22px 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

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

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

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