:root {
  --black: #09090b;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --surface: #f5f5f7;
  --white: #fff;
  --blue: #1554ee;
  --sky: #19bce9;
  --navy-brand: #08055f;
  --radius: 30px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Alexandria', sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.skip-link {
  position: fixed;
  top: -60px;
  right: 20px;
  z-index: 100;
  padding: 12px 18px;
  color: #fff;
  background: #000;
  border-radius: 12px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(250, 250, 252, 0.78);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: saturate(180%) blur(20px);
}
.nav-shell {
  width: min(1024px, calc(100% - 40px));
  height: 48px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  direction: ltr;
  color: var(--navy-brand);
  font:
    700 17px/1 'Manrope',
    sans-serif;
  letter-spacing: 0.2em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-inline: auto;
  font-size: 12px;
}
.nav-links a,
.language {
  color: #424245;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.language:hover {
  color: #000;
}
.services-menu {
  position: relative;
}
.services-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  color: #424245;
  border: 0;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}
.services-dropdown {
  position: absolute;
  top: calc(100% + 7px);
  inset-inline-start: 50%;
  width: 520px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(50%) translateY(-8px);
  transition: 0.22s ease;
}
html[dir='ltr'] .services-dropdown {
  transform: translateX(-50%) translateY(-8px);
}
.services-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}
html[dir='ltr'] .services-dropdown.open {
  transform: translateX(-50%) translateY(0);
}
.services-dropdown a {
  display: block;
  padding: 15px 16px;
  border-radius: 14px;
  transition: background 0.2s ease;
}
.services-dropdown a:hover,
.services-dropdown a:focus-visible {
  background: #f2f2f7;
}
.services-dropdown strong,
.services-dropdown small {
  display: block;
}
.services-dropdown strong {
  color: #1d1d1f;
  font-size: 13px;
}
.services-dropdown small {
  margin-top: 4px;
  color: #86868b;
  font-size: 10px;
  line-height: 1.5;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.language {
  padding: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: 600 11px 'Manrope';
}
.nav-cta {
  padding: 8px 15px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 11px;
}
.menu-toggle {
  display: none;
  width: 30px;
  height: 30px;
  padding: 7px;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px 0;
  background: #111;
  transition: 0.25s;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 145px 24px 60px;
  overflow: hidden;
  text-align: center;
  background: #fff;
}
.hero-glow {
  position: absolute;
  top: -280px;
  left: 50%;
  width: 900px;
  height: 620px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 146, 255, 0.16), transparent 68%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  margin: auto;
}
.eyebrow {
  margin: 0 0 17px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}
.hero h1 {
  margin: 0;
  font-size: clamp(58px, 8.3vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 600;
}
.hero-lead {
  width: min(680px, 100%);
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.75;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.button:hover {
  transform: scale(1.025);
}
.primary {
  color: #fff;
  background: var(--blue);
}
.primary:hover {
  background: #0b42ca;
}
.text-button {
  padding-inline: 4px;
  color: var(--blue);
}
.product-stage {
  position: relative;
  width: min(920px, 100%);
  min-height: 500px;
  margin: 65px auto 0;
  perspective: 1200px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.orb-one {
  top: 20px;
  right: 3%;
  width: 220px;
  height: 220px;
  background: linear-gradient(145deg, #19c5e9, #1554ee 55%, #08055f);
  box-shadow: 0 35px 80px rgba(31, 104, 255, 0.28);
}
.orb-two {
  bottom: 15px;
  left: 5%;
  width: 165px;
  height: 165px;
  background: linear-gradient(145deg, #d9f8ff, #19bce9 50%, #1554ee);
  opacity: 0.9;
}
.glass-window {
  position: relative;
  z-index: 2;
  width: 82%;
  min-height: 470px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(248, 250, 255, 0.68);
  box-shadow: 0 40px 110px rgba(25, 70, 130, 0.18);
  backdrop-filter: blur(25px);
  transform: rotateX(2deg);
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 4px 16px;
  direction: ltr;
  color: #73737a;
  font: 600 10px 'Manrope';
  letter-spacing: 0.1em;
}
.window-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow:
    16px 0 #febc2e,
    32px 0 #28c840;
}
.window-bar span {
  margin-left: 32px;
}
.window-bar em {
  margin-left: auto;
  color: #20a75a;
  font-style: normal;
}
.assistant-card {
  min-height: 330px;
  display: grid;
  place-content: center;
  justify-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, #10141c, #050608);
  color: #fff;
}
.pulse-logo {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: linear-gradient(145deg, #1554ee, #19bce9);
  box-shadow: 0 0 50px rgba(56, 151, 255, 0.45);
  font: 700 34px 'Manrope';
}
.assistant-card p {
  margin: 8px 0 0;
  font-size: 18px;
}
.workflow-preview {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(18px, 4vw, 36px);
  text-align: start;
}
.workflow-message {
  width: min(620px, 100%);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
.workflow-message small {
  color: #8dcfff;
  font-size: 11px;
  font-weight: 700;
}
.workflow-message p {
  font-size: clamp(13px, 1.7vw, 17px);
  line-height: 1.65;
}
.user-message {
  background: rgba(255, 255, 255, 0.08);
}
.ai-message {
  margin-inline-start: auto;
  background: rgba(21, 84, 238, 0.2);
  border-color: rgba(71, 145, 255, 0.32);
}
.workflow-search {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #aeb8ca;
  font-size: 11px;
}
.search-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  animation: workflow-pulse 1.6s ease-in-out infinite;
}
.workflow-source {
  display: block;
  margin-top: 12px;
  color: #8dcfff;
  font-size: 11px;
}
@keyframes workflow-pulse {
  50% {
    box-shadow: 0 0 0 7px rgba(25, 188, 233, 0.12);
  }
}
.signal {
  direction: ltr;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 26px;
}
.signal span {
  width: 3px;
  height: 9px;
  border-radius: 5px;
  background: #64bdff;
  animation: signal 1s ease-in-out infinite alternate;
}
.signal span:nth-child(2),
.signal span:nth-child(4) {
  animation-delay: 0.2s;
}
.signal span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes signal {
  to {
    height: 25px;
  }
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 12px;
}
.metric-row div {
  min-width: 0;
  padding: 8px;
  text-align: start;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
}
.metric-row small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}
.metric-row strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(11px, 1.5vw, 16px);
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.statement {
  padding: 150px 24px;
  text-align: center;
}
.statement h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(45px, 6.5vw, 88px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}
.statement h2 span {
  color: #a1a1a6;
}
.statement > p:last-child {
  width: min(650px, 100%);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}
.solutions {
  width: min(1320px, calc(100% - 32px));
  margin: auto;
}
.solutions-heading {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 30px 20px 70px;
  text-align: center;
}
.solutions-heading h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}
.feature {
  position: relative;
  min-height: 690px;
  padding: clamp(42px, 6vw, 80px);
  overflow: hidden;
  border-radius: var(--radius);
}
.feature + .feature,
.feature-grid + .feature {
  margin-top: 16px;
}
.feature-dark {
  min-height: 360px;
  padding-block: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #060608;
}
.feature-dark .feature-copy {
  width: min(780px, 100%);
  margin-inline: auto;
  text-align: center;
}
.feature-dark .feature-copy > p:not(.eyebrow) {
  width: min(620px, 100%);
  margin-inline: auto;
}
.feature-copy {
  position: relative;
  z-index: 3;
  width: min(540px, 100%);
}
.feature h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 5.3vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}
.feature-copy > p:not(.eyebrow) {
  color: #a1a1a6;
  font-size: 18px;
  line-height: 1.8;
}
.feature-copy > a {
  display: inline-block;
  margin-top: 10px;
  color: #2d7cff;
  font-size: 17px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.feature-grid .feature {
  min-height: 720px;
  margin: 0;
}
.feature-blue {
  color: #fff;
  background: linear-gradient(145deg, #1554ee, #08055f);
}
.feature-blue .eyebrow,
.feature-blue a {
  color: #fff;
}
.chat-stack {
  position: absolute;
  inset: auto 45px 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chat-stack span {
  width: fit-content;
  padding: 18px 22px;
  border-radius: 20px 20px 5px 20px;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}
.chat-stack span:last-child {
  margin-inline-start: auto;
  border-radius: 20px 20px 20px 5px;
  background: rgba(14, 31, 65, 0.75);
  color: #fff;
}
.feature-light {
  background: #fff;
}
.data-visual {
  position: absolute;
  inset: auto 50px 60px;
  height: 280px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 18px;
  padding: 40px 40px 0;
  border-bottom: 1px solid #d2d2d7;
}
.data-visual div {
  width: 13%;
  height: var(--h);
  border-radius: 12px 12px 0 0;
  background: linear-gradient(#19bce9, #1554ee 65%, #08055f);
}
.data-visual span {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--blue);
  padding: 8px 13px;
  border-radius: 999px;
  background: #eef4ff;
  font-size: 13px;
  font-weight: 700;
}
.core-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0;
}
.core-card {
  min-height: 300px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.core-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}
.core-card > span {
  color: var(--blue);
  font: 700 12px 'Manrope';
}
.core-card h3 {
  margin: 70px 0 14px;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.15;
}
.core-card p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.trust-section,
.faq-section,
.pricing-note {
  width: min(1180px, calc(100% - 40px));
  margin: 120px auto;
}
.section-intro {
  width: min(780px, 100%);
  margin-bottom: 44px;
}
.section-intro h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.trust-grid div {
  min-height: 132px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  background: #fff;
}
.trust-grid b {
  font-size: 15px;
}
.faq-list {
  border-top: 1px solid #d2d2d7;
}
.faq-list details {
  border-bottom: 1px solid #d2d2d7;
}
.faq-list summary {
  padding: 23px 4px;
  font-size: 18px;
  font-weight: 650;
  cursor: pointer;
}
.faq-list p {
  max-width: 780px;
  margin: -5px 4px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.pricing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: 28px;
  background: #fff;
}
.pricing-note p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.feature-industry {
  margin-bottom: 16px;
  color: #fff;
  background: linear-gradient(145deg, #16171b, #08090b);
}
.center-copy {
  width: min(720px, 100%);
  margin: auto;
  text-align: center;
}
.industry-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 62px;
}
.industry-cards a {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.07);
  transition:
    background 0.25s,
    transform 0.25s;
}
.industry-cards a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.industry-cards span {
  display: block;
  color: #6ebeff;
  font: 600 12px 'Manrope';
}
.industry-cards strong {
  display: block;
  margin-top: 35px;
  font-size: 28px;
}
.industry-cards small {
  display: block;
  margin-top: 8px;
  color: #a1a1a6;
  font-size: 14px;
}
.industry-cards b {
  position: absolute;
  top: 28px;
  inset-inline-end: 28px;
  font-size: 22px;
}
.final-cta {
  padding: 170px 24px;
  text-align: center;
  background: #fff;
}
.final-cta .button {
  margin-top: 38px;
}
footer {
  padding: 55px max(24px, calc((100% - 1080px) / 2));
  color: #6e6e73;
  background: var(--surface);
  font-size: 12px;
}
.footer-top,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-top {
  padding-bottom: 35px;
  border-bottom: 1px solid #d2d2d7;
}
.footer-top .brand {
  color: #1d1d1f;
}
.footer-links {
  padding-top: 18px;
}
.footer-links nav {
  display: flex;
  gap: 20px;
}
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

html[dir='ltr'] .hero h1,
html[dir='ltr'] .statement h2,
html[dir='ltr'] .feature h2,
html[dir='ltr'] .final-cta h2 {
  letter-spacing: -0.045em;
  font-family: 'Manrope', sans-serif;
}
html[dir='ltr'] .button b {
  transform: rotate(180deg);
}

html[dir='rtl'] .hero h1,
html[dir='rtl'] .statement h2,
html[dir='rtl'] .feature h2,
html[dir='rtl'] .final-cta h2 {
  letter-spacing: 0;
  line-height: 1.3;
  overflow-wrap: normal;
  word-break: normal;
}
html[dir='rtl'] .hero h1 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(44px, 6.5vw, 82px);
}
html[dir='rtl'] .statement h2,
html[dir='rtl'] .feature h2,
html[dir='rtl'] .final-cta h2 {
  font-size: clamp(38px, 5vw, 66px);
}

@media (max-width: 800px) {
  :root {
    --radius: 26px;
  }
  .nav-shell {
    width: calc(100% - 28px);
  }
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 15px 24px 26px;
    background: rgba(250, 250, 252, 0.97);
    border-bottom: 1px solid #ddd;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e7;
    font-size: 16px;
  }
  .services-menu {
    width: 100%;
    border-bottom: 1px solid #e5e5e7;
  }
  .services-trigger {
    width: 100%;
    padding: 15px 0;
    justify-content: space-between;
    font-size: 16px;
  }
  .services-dropdown,
  html[dir='ltr'] .services-dropdown {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
    transition:
      max-height 0.3s ease,
      padding 0.3s ease;
  }
  .services-dropdown.open,
  html[dir='ltr'] .services-dropdown.open {
    max-height: 680px;
    padding: 0 0 12px;
    transform: none;
  }
  .services-dropdown a {
    padding: 11px 14px;
    border: 0;
  }
  .hero {
    padding-top: 120px;
  }
  .hero h1 {
    font-size: clamp(49px, 15vw, 72px);
  }
  .hero-actions {
    gap: 12px;
  }
  .product-stage {
    min-height: 690px;
    margin-top: 50px;
  }
  .glass-window {
    width: 100%;
    min-height: 660px;
  }
  .orb-one {
    right: -90px;
  }
  .orb-two {
    left: -65px;
  }
  .assistant-card {
    min-height: 350px;
  }
  .metric-row {
    grid-template-columns: 1fr;
  }
  .metric-row small {
    display: block;
  }
  .statement {
    padding: 110px 24px;
  }
  .solutions {
    width: calc(100% - 20px);
  }
  .feature {
    min-height: 670px;
    padding: 42px 28px;
  }
  .feature-dark {
    min-height: 390px;
    padding-block: 42px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid .feature {
    min-height: 620px;
  }
  .chat-stack,
  .data-visual {
    inset-inline: 25px;
    bottom: 35px;
  }
  .industry-cards {
    grid-template-columns: 1fr;
  }
  .core-secondary-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-section,
  .faq-section,
  .pricing-note {
    margin-block: 85px;
  }
  .pricing-note {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }
  .pricing-note .button {
    width: 100%;
  }
  .feature-industry {
    padding-inline: 20px;
  }
  .footer-top,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

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