/* Corely — site styles (ported from the original build, unchanged rules) */

/* --- reset: mirrors the Tailwind preflight the original build shipped with --- */
*,*::before,*::after{box-sizing:border-box;border-width:0;border-style:solid}
html{line-height:1.5;-webkit-text-size-adjust:100%;tab-size:4}
h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd,ol,ul{margin:0}
ul,ol{padding:0;list-style:none}
img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}
img,video{max-width:100%;height:auto}
button,input,optgroup,select,textarea{font:inherit;color:inherit;letter-spacing:inherit}
button{background:none;border:0;cursor:pointer}
a{color:inherit;text-decoration:inherit}
table{border-collapse:collapse;text-indent:0;border-color:inherit}


:root {
  /* next/font supplied these on <body> in the original build; the site CSS
     references them via var(), so they must exist or every font-family
     declaration becomes invalid and the browser falls back to serif. */
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";

  --ink: #0d1930;
  --muted: #607089;
  --line: #dfe7f2;
  --paper: #f7f9fc;
  --white: #ffffff;
  --blue: #2f66f5;
  --blue-deep: #1747d5;
  --mint: #20cdaa;
  --violet: #8d6bff;
  --orange: #ffac5c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 86% 8%, rgba(47, 102, 245, 0.12), transparent 24rem),
    radial-gradient(circle at 10% 34%, rgba(32, 205, 170, 0.08), transparent 22rem),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fb 66%, #f7f9fc 100%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.wordmark-symbol {
  position: relative;
  width: 29px;
  height: 29px;
  display: inline-block;
  transform: rotate(-8deg);
}

.wordmark-symbol i {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 5px 9px 5px 9px;
  background: var(--blue);
}

.wordmark-symbol i:nth-child(1) {
  left: 1px;
  top: 8px;
  background: var(--mint);
}

.wordmark-symbol i:nth-child(2) {
  left: 12px;
  top: 1px;
  background: var(--blue);
}

.wordmark-symbol i:nth-child(3) {
  left: 13px;
  top: 14px;
  background: var(--violet);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #4b5a71;
  font-size: 14px;
  font-weight: 550;
}

.main-nav a {
  position: relative;
  padding-block: 12px;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 1px;
  content: "";
  background: var(--blue);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 650;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.text-link:focus-visible,
.wordmark:focus-visible {
  outline: 3px solid rgba(47, 102, 245, 0.27);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 10px;
  font-size: 13px;
}

.button-dark {
  color: white;
  background: var(--ink);
  box-shadow: 0 9px 24px rgba(13, 25, 48, 0.14);
}

.button-dark:hover {
  background: #172746;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #3169f7, #184bd9);
  box-shadow: 0 14px 34px rgba(47, 102, 245, 0.26);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(47, 102, 245, 0.34);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: 54px;
  padding-top: 52px;
  padding-bottom: 88px;
}

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

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid #dbe4f1;
  border-radius: 999px;
  color: #4e607a;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 5px 18px rgba(30, 53, 88, 0.05);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-spark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(32, 205, 170, 0.12);
}

.hero h1 {
  max-width: 680px;
  margin: 25px 0 24px;
  font-size: clamp(48px, 5.25vw, 76px);
  font-weight: 650;
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  margin-top: 6px;
  color: transparent;
  background: linear-gradient(100deg, var(--blue) 0%, #5968ed 55%, var(--violet) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.012em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #40516b;
  font-size: 14px;
  font-weight: 620;
}

.text-link span {
  color: var(--blue);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 535px;
  margin: 52px 0 0;
}

.hero-proof div {
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

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

.hero-proof dt {
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-proof dd {
  margin: 0;
  color: #78869a;
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-product {
  position: relative;
  min-width: 0;
  padding-block: 70px;
}

.hero-product::before {
  position: absolute;
  inset: 6% -8% 0 10%;
  z-index: -2;
  content: "";
  border-radius: 42% 58% 50% 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(47, 102, 245, 0.33), transparent 42%),
    radial-gradient(circle at 72% 60%, rgba(141, 107, 255, 0.28), transparent 39%),
    radial-gradient(circle at 55% 25%, rgba(32, 205, 170, 0.18), transparent 30%);
  filter: blur(38px);
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(47, 102, 245, 0.13);
  border-radius: 50%;
}

.orbit-one {
  width: 570px;
  height: 570px;
  top: -1px;
  right: -82px;
}

.orbit-two {
  width: 455px;
  height: 455px;
  top: 55px;
  right: -22px;
  border-style: dashed;
}

.product-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(170, 187, 211, 0.64);
  border-radius: 19px;
  background: #ffffff;
  box-shadow:
    0 42px 80px rgba(31, 55, 93, 0.2),
    0 9px 24px rgba(31, 55, 93, 0.12),
    inset 0 1px white;
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}

.browser-bar {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-bottom: 1px solid #edf1f7;
  background: rgba(252, 253, 255, 0.94);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d8e0ec;
}

.browser-dots span:first-child {
  background: #91a6c4;
}

.browser-label {
  color: #8794a8;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.03em;
}

.live-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #0c8d70;
  background: #e9fbf6;
  font-size: 8px;
  font-weight: 700;
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
}

.product-canvas {
  padding: 11px;
  background: #f4f7fb;
}

.product-canvas img {
  width: 100%;
  display: block;
  border: 1px solid #edf1f7;
  border-radius: 9px;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  border: 1px solid rgba(204, 215, 230, 0.82);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 18px 42px rgba(29, 52, 88, 0.16);
  backdrop-filter: blur(12px);
}

.floating-sla {
  top: 27px;
  right: -17px;
  width: 138px;
  flex-direction: column;
  padding: 16px;
  border-radius: 15px;
}

.floating-label {
  color: #8290a3;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.floating-sla strong {
  margin-top: 5px;
  font-size: 25px;
  letter-spacing: -0.05em;
}

.positive {
  width: fit-content;
  margin-top: 6px;
  padding: 3px 6px;
  border-radius: 999px;
  color: #098a6c;
  background: #e7fbf5;
  font-size: 8px;
  font-weight: 700;
}

.floating-signal {
  left: -31px;
  bottom: 31px;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 14px;
}

.floating-signal strong {
  display: block;
  margin-top: 3px;
  font-size: 10px;
}

.signal-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 8px 18px rgba(66, 84, 225, 0.25);
}

.connection-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.connection-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.connection-inner > p {
  flex: 0 0 auto;
  margin: 0;
  color: #8591a2;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.connection-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.connection-list span {
  min-height: 28px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  color: #4f5f76;
  font-size: 13px;
  font-weight: 620;
}

.clients-section {
  overflow: hidden;
  padding: 86px 0 24px;
  background:
    radial-gradient(circle at 80% 12%, rgba(47, 102, 245, 0.07), transparent 25rem),
    rgba(255, 255, 255, 0.32);
}

.clients-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 36px;
}

.clients-heading h2 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 630;
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.clients-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.client-marquee {
  overflow: hidden;
  padding: 6px 0 18px;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.client-track {
  width: 200%;
  display: flex;
  animation: client-scroll 24s linear infinite;
  will-change: transform;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-set {
  width: 50%;
  flex: 0 0 50%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-right: 16px;
}

.client-logo {
  min-width: 0;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(207, 218, 233, 0.86);
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 35px rgba(37, 60, 95, 0.055);
}

.client-logo img {
  width: auto;
  max-width: 74%;
  height: auto;
  max-height: 58%;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1) saturate(0.25) contrast(0.92);
  transition: opacity 260ms ease, filter 260ms ease, transform 260ms ease;
}

.client-logo:hover img {
  opacity: 0.9;
  filter: grayscale(0.15) saturate(0.82) contrast(1);
  transform: scale(1.025);
}

.client-anorbank img {
  max-width: 145px;
  max-height: 96px;
}

.client-kapital img {
  max-width: 230px;
  max-height: 42px;
}

.client-pepsico img {
  max-width: 225px;
  max-height: 70px;
}

@keyframes client-scroll {
  to {
    transform: translateX(-50%);
  }
}

.section-space {
  padding-top: 132px;
  padding-bottom: 132px;
}

.section-intro {
  max-width: 720px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 630;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-intro > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.outcome-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 46px rgba(38, 63, 101, 0.06);
}

.outcome-topline {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #93a0b2;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.outcome-dash {
  width: 35px;
  height: 1px;
  background: currentColor;
}

.outcome-value {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 48px 0 12px;
  font-size: 62px;
  font-weight: 670;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.outcome-value sup {
  margin-top: 8px;
  color: #7c899c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome-card h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.outcome-card > p:last-child {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.tone-mint .outcome-value {
  color: #0eb392;
}

.tone-blue .outcome-value {
  color: var(--blue);
}

.tone-violet .outcome-value {
  color: var(--violet);
}

.outcome-note {
  margin: 18px 0 0;
  color: #98a3b3;
  font-size: 10px;
}

.workflow-section {
  position: relative;
  overflow: hidden;
  color: #f7f9ff;
  background:
    radial-gradient(circle at 82% 16%, rgba(65, 111, 246, 0.24), transparent 25rem),
    radial-gradient(circle at 12% 86%, rgba(32, 205, 170, 0.12), transparent 24rem),
    #0d1930;
}

.workflow-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.workflow-noise {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 55px;
  right: -180px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
}

.workflow-shell {
  position: relative;
  z-index: 1;
  padding-top: 128px;
  padding-bottom: 128px;
}

.kicker-light {
  color: #79ead0;
}

.workflow-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.workflow-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 590;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.workflow-heading > p {
  max-width: 390px;
  margin: 0 0 4px;
  color: #aebad0;
  font-size: 15px;
  line-height: 1.7;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 76px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  min-width: 0;
  padding-right: 22px;
}

.workflow-marker {
  display: flex;
  align-items: center;
  gap: 14px;
}

.workflow-marker span {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #9fb2d1;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.workflow-marker i {
  width: 100%;
  height: 1px;
  display: block;
  background: linear-gradient(90deg, rgba(90, 129, 240, 0.9), rgba(255, 255, 255, 0.1));
}

.workflow-list li:nth-child(2) .workflow-marker i {
  background: linear-gradient(90deg, rgba(32, 205, 170, 0.8), rgba(255, 255, 255, 0.1));
}

.workflow-list li:nth-child(3) .workflow-marker i,
.workflow-list li:nth-child(4) .workflow-marker i {
  background: linear-gradient(90deg, rgba(141, 107, 255, 0.8), rgba(255, 255, 255, 0.1));
}

.workflow-list h3 {
  margin: 25px 0 9px;
  font-size: 15px;
  font-weight: 650;
}

.workflow-list p {
  max-width: 145px;
  margin: 0;
  color: #8797b2;
  font-size: 11px;
  line-height: 1.55;
}

.workflow-callout {
  display: flex;
  align-items: center;
  gap: 21px;
  max-width: 760px;
  margin-top: 70px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.callout-mark {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #0d1930;
  background: #79ead0;
  font-size: 22px;
}

.workflow-callout p {
  margin: 0;
  color: #9facc1;
  font-size: 12px;
  line-height: 1.55;
}

.workflow-callout strong {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-size: 13px;
}

.platform {
  background:
    radial-gradient(circle at 10% 34%, rgba(32, 205, 170, 0.08), transparent 21rem),
    radial-gradient(circle at 94% 78%, rgba(47, 102, 245, 0.1), transparent 24rem),
    #f7f9fc;
}

.platform-heading,
.industries-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.platform-heading > p,
.industries-heading > p {
  max-width: 440px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.module-explorer {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
  margin-top: 66px;
}

.module-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(33, 58, 96, 0.06);
}

.module-tab {
  width: 100%;
  min-height: 64px;
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #65748a;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.module-tab:hover {
  color: var(--ink);
  background: #f2f6fc;
}

.module-tab:focus-visible {
  outline: 3px solid rgba(47, 102, 245, 0.25);
  outline-offset: 2px;
}

.module-tab > span {
  color: #a4afbf;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.module-tab strong {
  font-size: 12px;
  font-weight: 620;
}

.module-tab i {
  color: transparent;
  font-size: 14px;
  font-style: normal;
}

.module-tab.active {
  border-color: #dce5f2;
  color: var(--ink);
  background: white;
  box-shadow: 0 9px 24px rgba(30, 54, 91, 0.08);
}

.module-tab.active > span,
.module-tab.active i {
  color: var(--blue);
}

.module-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: 44px;
  align-items: center;
  min-height: 570px;
  padding: 48px 0 48px 48px;
  overflow: hidden;
  border: 1px solid #dbe4f0;
  border-radius: 23px;
  background:
    radial-gradient(circle at 78% 24%, rgba(48, 105, 247, 0.12), transparent 22rem),
    linear-gradient(135deg, #ffffff, #eef3fa);
  box-shadow: 0 28px 70px rgba(31, 55, 93, 0.12);
  animation: panel-in 360ms ease both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.module-eyebrow,
.intel-card > span,
.intel-card-copy > span {
  margin: 0;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.module-copy h3 {
  max-width: 400px;
  margin: 17px 0 18px;
  font-size: clamp(31px, 3.3vw, 47px);
  font-weight: 630;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.module-copy > p:nth-of-type(2) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.67;
}

.module-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.module-copy li {
  padding: 7px 10px;
  border: 1px solid #d8e2f0;
  border-radius: 999px;
  color: #52647e;
  background: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 650;
}

.module-visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d6e0ee;
  border-right: 0;
  border-radius: 15px 0 0 15px;
  background: white;
  box-shadow: 0 25px 60px rgba(30, 55, 94, 0.18);
}

.module-browser-bar {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 14px;
  border-bottom: 1px solid #e7edf5;
  color: #929eaf;
  background: #fbfcfe;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.module-visual img {
  width: 110%;
  max-width: none;
  display: block;
}

.intelligence {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: 55px;
  padding-top: 20px;
  padding-bottom: 132px;
}

.intelligence-lead {
  padding-top: 34px;
}

.intelligence-lead h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 630;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.intelligence-lead > p:nth-of-type(2) {
  max-width: 390px;
  margin: 23px 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.intel-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 16px 48px rgba(39, 61, 96, 0.06);
}

.intel-wide {
  min-height: 345px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  align-items: center;
  gap: 20px;
  padding: 36px 0 36px 36px;
  background:
    radial-gradient(circle at 78% 25%, rgba(32, 205, 170, 0.11), transparent 18rem),
    white;
}

.intel-card-copy h3,
.intel-compact h3 {
  margin: 14px 0 13px;
  font-size: 26px;
  font-weight: 630;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.intel-card-copy p,
.intel-compact p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.63;
}

.intel-wide img {
  width: 122%;
  max-width: none;
  border: 1px solid #dfe7f2;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 17px 40px rgba(36, 62, 100, 0.13);
}

.intel-compact {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 29px;
}

.intel-ai {
  color: white;
  background:
    radial-gradient(circle at 70% 18%, rgba(132, 112, 255, 0.55), transparent 12rem),
    linear-gradient(145deg, #1c397b, #0d1930 66%);
}

.intel-ai > span {
  color: #88a7ff;
}

.intel-ai p {
  color: #9facc2;
}

.ai-orb {
  position: absolute;
  width: 128px;
  height: 128px;
  top: 24px;
  right: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 35px rgba(83, 119, 255, 0.22),
    0 0 0 20px rgba(255, 255, 255, 0.025),
    0 0 45px rgba(91, 107, 255, 0.25);
}

.ai-orb i {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 8px 14px 8px 14px;
  background: linear-gradient(135deg, #72e4ce, #5b6ff5);
}

.ai-orb i:nth-child(1) { left: 30px; top: 51px; }
.ai-orb i:nth-child(2) { left: 55px; top: 30px; background: linear-gradient(135deg, #5b6ff5, #a56cff); }
.ai-orb i:nth-child(3) { left: 64px; top: 64px; background: linear-gradient(135deg, #a56cff, #5b6ff5); }

.intel-flow {
  background:
    radial-gradient(circle at 90% 0%, rgba(32, 205, 170, 0.15), transparent 13rem),
    white;
}

.mini-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 7px;
  margin: 17px 0 24px;
}

.mini-flow i {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #dce5f1;
  border-radius: 10px;
  color: #5b6c84;
  background: #f6f9fd;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.mini-flow i:nth-of-type(2) {
  border-color: #ccefe7;
  color: #148b73;
  background: #edfbf7;
}

.mini-flow i:nth-of-type(3) {
  border-color: #dfe0fa;
  color: #615bd2;
  background: #f3f1ff;
}

.mini-flow b {
  color: #9ba9ba;
  font-size: 9px;
}

.enterprise {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.enterprise-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 84px;
}

.enterprise-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(40px, 5vw, 63px);
  font-weight: 630;
  line-height: 1.03;
  letter-spacing: -0.057em;
}

.enterprise-copy > p:nth-of-type(2) {
  max-width: 630px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.enterprise-image {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  padding: 12px 0 12px 12px;
  border: 1px solid #dfe6ef;
  border-radius: 18px;
  background: #f2f6fb;
}

.enterprise-image img {
  width: 112%;
  max-width: none;
  display: block;
  border-radius: 9px 0 0 9px;
  box-shadow: 0 17px 45px rgba(32, 55, 90, 0.13);
}

.enterprise-badge {
  position: absolute;
  left: 28px;
  bottom: 25px;
  padding: 8px 11px;
  border: 1px solid rgba(194, 207, 225, 0.8);
  border-radius: 9px;
  color: #3c4d65;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(35, 59, 96, 0.13);
  font-size: 9px;
  font-weight: 700;
}

.enterprise-pillars {
  border-top: 1px solid #dce4ef;
}

.enterprise-pillars article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 30px 0;
  border-bottom: 1px solid #dce4ef;
}

.enterprise-pillars article > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: #ecf2ff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.enterprise-pillars h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.enterprise-pillars article p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.enterprise-statement {
  margin-top: 28px;
  padding: 27px;
  border-radius: 16px;
  color: white;
  background:
    radial-gradient(circle at 90% 15%, rgba(116, 147, 255, 0.5), transparent 11rem),
    #172b53;
}

.enterprise-statement p {
  margin: 0 0 10px;
  color: #80e6d0;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.enterprise-statement strong {
  max-width: 330px;
  display: block;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 64px;
}

.industry-card {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 45px rgba(34, 58, 94, 0.05);
}

.industry-number {
  color: #9ca8b8;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.industry-glyph {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 42px 0 38px;
  border: 1px solid #dbe4ef;
  border-radius: 50%;
  background: #f4f7fb;
}

.industry-glyph::before,
.industry-glyph::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  border: 1px solid rgba(47, 102, 245, 0.2);
}

.industry-glyph::before { inset: 11px; }
.industry-glyph::after { inset: 23px; }

.industry-glyph i {
  position: absolute;
  z-index: 1;
  width: 13px;
  height: 13px;
  border-radius: 5px;
  background: var(--blue);
}

.industry-glyph i:nth-child(1) { left: 38px; top: 18px; }
.industry-glyph i:nth-child(2) { left: 23px; top: 48px; background: var(--mint); }
.industry-glyph i:nth-child(3) { right: 20px; top: 49px; background: var(--violet); }

.industry-mint .industry-glyph i:nth-child(1),
.industry-mint .industry-glyph i:nth-child(3) { background: var(--mint); }
.industry-violet .industry-glyph i:nth-child(1),
.industry-violet .industry-glyph i:nth-child(2) { background: var(--violet); }
.industry-orange .industry-glyph i:nth-child(1),
.industry-orange .industry-glyph i:nth-child(3) { background: var(--orange); }

.industry-card h3 {
  margin: 0 0 13px;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.industry-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.industry-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #5b6b82;
  font-size: 9px;
  font-weight: 650;
}

.industry-link i {
  color: var(--blue);
  font-style: normal;
}

.discovery {
  position: relative;
  overflow: hidden;
  color: white;
  background: #10203c;
}

.discovery::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
}

.discovery-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  top: -280px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 112, 255, 0.45), rgba(34, 202, 171, 0.08) 50%, transparent 70%);
  filter: blur(14px);
}

.discovery-inner {
  position: relative;
  z-index: 1;
  padding-top: 128px;
  padding-bottom: 128px;
}

.discovery-heading {
  max-width: 870px;
}

.discovery-heading h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 590;
  line-height: 1;
  letter-spacing: -0.062em;
}

.discovery-heading > p:last-child {
  max-width: 650px;
  margin: 25px 0 0;
  color: #a8b5ca;
  font-size: 16px;
  line-height: 1.7;
}

.discovery-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.discovery-steps li {
  min-height: 190px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
}

.discovery-steps li > span {
  color: #74e2ca;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.discovery-steps strong {
  display: block;
  margin: 46px 0 10px;
  font-size: 14px;
}

.discovery-steps p {
  margin: 0;
  color: #8f9eb6;
  font-size: 11px;
  line-height: 1.55;
}

.discovery-result {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 34px;
  margin-top: 16px;
  padding: 23px 25px;
  border-radius: 15px;
  color: var(--ink);
  background: #eefaf7;
}

.discovery-result > span {
  color: #148a74;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discovery-result > strong {
  font-size: 15px;
  line-height: 1.4;
}

.contact-panel {
  scroll-margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: 58px;
  margin-top: 48px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 30px 80px rgba(3, 11, 28, 0.22);
  backdrop-filter: blur(18px);
}

.contact-intro {
  padding-top: 8px;
}

.contact-intro h3 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.contact-intro > p:not(.kicker) {
  max-width: 420px;
  margin: 22px 0 30px;
  color: #a8b5ca;
  font-size: 14px;
  line-height: 1.72;
}

.contact-intro > a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(121, 234, 208, 0.46);
  color: #79ead0;
  font-size: 14px;
  font-weight: 650;
}

.contact-form-wrap {
  padding: 29px;
  border-radius: 18px;
  color: var(--ink);
  background: #f8fbff;
  box-shadow: 0 18px 48px rgba(3, 11, 28, 0.18);
}

.form-success {
  margin: 0 0 20px;
  padding: 13px 15px;
  border: 1px solid rgba(20, 138, 116, 0.2);
  border-radius: 11px;
  color: #0c735f;
  background: #e8f9f4;
  font-size: 12px;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.form-honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

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

.form-grid label > span,
.form-message > span {
  display: block;
  margin: 0 0 8px;
  color: #46566e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9e2ef;
  border-radius: 10px;
  color: var(--ink);
  background: white;
  font: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
  padding: 13px;
  line-height: 1.55;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ba8ba;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(47, 102, 245, 0.7);
  box-shadow: 0 0 0 3px rgba(47, 102, 245, 0.11);
}

.form-consent {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #64738a;
  font-size: 11px;
  line-height: 1.45;
}

.form-consent input {
  width: 17px;
  min-height: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 0;
  padding: 0;
  accent-color: var(--blue);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-actions .button {
  flex: 0 0 auto;
  border: 0;
}

.form-actions > p {
  max-width: 220px;
  margin: 0;
  color: #8b98aa;
  font-size: 10px;
  line-height: 1.5;
}

.button-light {
  min-height: 46px;
  color: white;
  background: var(--ink);
}

.faq {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 85px;
}

.faq-heading h2 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(39px, 5vw, 58px);
  font-weight: 630;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

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

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

.faq-list summary {
  min-height: 91px;
  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  gap: 15px;
  color: #1b2a42;
  font-size: 15px;
  font-weight: 620;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: #9aa7b8;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.faq-list summary i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe3ee;
  border-radius: 50%;
  color: var(--blue);
  font-size: 15px;
  font-style: normal;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 590px;
  margin: -7px 42px 26px 50px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.site-footer {
  color: white;
  background: #091326;
}

.footer-top {
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 90px;
}

.wordmark-inverse {
  color: white;
}

.footer-top > div > p {
  max-width: 300px;
  margin: 18px 0 0;
  color: #8391a8;
  font-size: 12px;
  line-height: 1.55;
}

.footer-top nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 16px 38px;
  color: #a9b4c6;
  font-size: 12px;
}

.footer-top nav a:hover,
.footer-back:hover {
  color: white;
}

.footer-back {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #aab5c8;
  font-size: 12px;
}

.footer-back span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #73e0c8;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #65738a;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 70px;
  }

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

  .hero-product {
    width: min(820px, 95%);
    margin-inline: auto;
  }

  .main-nav {
    display: none;
  }

  .workflow-heading,
  .platform-heading,
  .industries-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .workflow-heading > p,
  .platform-heading > p,
  .industries-heading > p {
    max-width: 620px;
  }

  .workflow-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 42px 0;
  }

  .workflow-list li:nth-child(3n) .workflow-marker i {
    display: none;
  }

  .module-explorer {
    grid-template-columns: 1fr;
  }

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

  .module-panel {
    min-height: 520px;
  }

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

  .intelligence-lead > p:nth-of-type(2) {
    max-width: 650px;
  }

  .enterprise-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

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

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

  .contact-intro > p:not(.kicker) {
    max-width: 620px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-top {
    gap: 45px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    min-height: 72px;
  }

  .site-header .button {
    min-height: 39px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .site-header .button span {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 50px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-proof {
    margin-top: 42px;
  }

  .hero-proof div {
    padding-inline: 13px;
  }

  .hero-proof dt {
    font-size: 19px;
  }

  .hero-proof dd {
    font-size: 8px;
  }

  .hero-product {
    width: calc(100% + 4px);
    padding-block: 56px 64px;
  }

  .product-frame {
    border-radius: 13px;
    transform: none;
  }

  .browser-bar {
    height: 32px;
  }

  .browser-label {
    display: none;
  }

  .floating-sla {
    top: 18px;
    right: -5px;
    width: 112px;
    padding: 11px;
  }

  .floating-sla strong {
    font-size: 20px;
  }

  .floating-signal {
    left: 10px;
    bottom: 25px;
  }

  .orbit-one,
  .orbit-two {
    display: none;
  }

  .connection-inner {
    padding-block: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .connection-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 0;
  }

  .connection-list span {
    min-height: 22px;
    justify-items: start;
    place-items: center start;
    padding-left: 12px;
    font-size: 11px;
  }

  .clients-section {
    padding-top: 68px;
  }

  .clients-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

  .clients-heading h2 {
    font-size: 36px;
  }

  .clients-heading > p {
    max-width: 530px;
  }

  .client-set {
    gap: 10px;
    padding-right: 10px;
  }

  .client-logo {
    height: 104px;
    border-radius: 14px;
  }

  .client-anorbank img {
    max-width: 100px;
    max-height: 72px;
  }

  .client-kapital img,
  .client-pepsico img {
    max-width: 78%;
    max-height: 48px;
  }

  .section-space {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-intro h2 {
    font-size: 42px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .outcome-card {
    min-height: 290px;
  }

  .workflow-shell,
  .discovery-inner {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .workflow-heading h2,
  .discovery-heading h2 {
    font-size: 43px;
  }

  .workflow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 0;
    margin-top: 50px;
  }

  .workflow-list li {
    padding-right: 15px;
  }

  .workflow-list li:nth-child(3n) .workflow-marker i {
    display: block;
  }

  .workflow-list li:nth-child(2n) .workflow-marker i {
    display: none;
  }

  .workflow-list p {
    max-width: 130px;
  }

  .workflow-callout {
    align-items: flex-start;
    margin-top: 52px;
  }

  .module-explorer {
    margin-top: 42px;
  }

  .module-tabs {
    display: flex;
    overflow-x: auto;
    flex-direction: row;
    padding: 7px;
    scroll-snap-type: x mandatory;
  }

  .module-tab {
    flex: 0 0 166px;
    scroll-snap-align: start;
  }

  .module-panel {
    grid-template-columns: 1fr;
    gap: 35px;
    min-height: 0;
    padding: 34px 0 0;
  }

  .module-copy {
    padding-inline: 25px;
  }

  .module-copy h3 {
    font-size: 37px;
  }

  .module-visual {
    margin-left: 14px;
  }

  .module-visual img {
    width: 125%;
  }

  .intelligence {
    gap: 30px;
    padding-bottom: 90px;
  }

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

  .intel-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 30px 0 0 28px;
  }

  .intel-wide img {
    width: 116%;
  }

  .intel-compact {
    min-height: 310px;
  }

  .enterprise-layout {
    gap: 55px;
  }

  .enterprise-copy h2 {
    font-size: 43px;
  }

  .enterprise-image {
    margin-top: 37px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    margin-top: 43px;
  }

  .industry-card {
    min-height: 320px;
  }

  .industry-glyph {
    width: 82px;
    height: 82px;
    margin: 31px 0 28px;
    transform: scale(0.9);
    transform-origin: left center;
  }

  .discovery-steps {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .discovery-steps li {
    min-height: 145px;
  }

  .discovery-steps strong {
    margin-top: 30px;
  }

  .discovery-result {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 12px;
  }

  .discovery-result .button {
    width: 100%;
    margin-top: 5px;
  }

  .contact-panel {
    gap: 34px;
    margin-top: 34px;
    padding: 22px;
    border-radius: 19px;
  }

  .contact-intro h3 {
    font-size: 37px;
  }

  .contact-form-wrap {
    padding: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

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

  .faq {
    gap: 42px;
  }

  .faq-heading h2 {
    font-size: 43px;
  }

  .faq-list summary {
    grid-template-columns: 25px 1fr auto;
    gap: 10px;
    min-height: 84px;
    font-size: 13px;
  }

  .faq-list details > p {
    margin: -3px 35px 24px 35px;
    font-size: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 70px;
    padding-bottom: 55px;
  }

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

  .footer-back {
    justify-content: space-between;
  }

  .footer-bottom {
    min-height: 100px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
}

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

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

  .client-track {
    width: 100%;
    animation: none;
    transform: none;
  }

  .client-set {
    width: 100%;
    flex-basis: 100%;
  }

  .client-set:nth-child(2) {
    display: none;
  }
}

/* =========================================================================
   Multipage additions — everything above this line is the original design.
   These rules cover elements the single-page build did not have:
   page heroes, breadcrumbs, mobile nav, form errors, legal pages, 404.
   They reuse the same tokens (--ink, --blue, --line…) so nothing shifts.
   ========================================================================= */

/* The site CSS sets display on elements that JS toggles with [hidden]
   (.module-panel is display:grid), and an author rule beats the UA
   [hidden]{display:none}. Without this, every module panel renders at once. */
[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 10px 0;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

/* --- page hero (subpages) --- */
.page-hero {
  padding-top: 66px;
  padding-bottom: 40px;
  max-width: 1180px;
}
.page-hero h1 {
  margin: 12px 0 0;
  font-size: clamp(32px, 4.4vw, 55px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 17ch;
}
.page-hero .page-lead {
  margin-top: 18px;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.62;
}
.page-hero .hero-actions {
  margin-top: 28px;
}

/* --- breadcrumbs --- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.breadcrumbs a {
  color: var(--muted);
  transition: color 160ms ease;
}
.breadcrumbs a:hover {
  color: var(--blue);
}
.breadcrumbs span[aria-hidden] {
  color: #b9c6da;
}
.breadcrumbs [aria-current] {
  color: var(--ink);
  font-weight: 600;
}

/* --- mobile navigation --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
}
.nav-toggle i {
  display: block;
  height: 1.8px;
  width: 100%;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 160ms ease;
}
.nav-toggle.is-open i:nth-child(1) {
  transform: translateY(6.8px) rotate(45deg);
}
.nav-toggle.is-open i:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open i:nth-child(3) {
  transform: translateY(-6.8px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(9px);
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-block: 14px;
}
.mobile-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid rgba(223, 231, 242, 0.7);
  color: #33445f;
  font-size: 16px;
  font-weight: 550;
}
.mobile-nav a[aria-current] {
  color: var(--blue);
}
.mobile-nav a:last-child {
  border-bottom: 0;
}
.mobile-nav-cta {
  margin-top: 9px;
  color: var(--blue) !important;
  font-weight: 650 !important;
}
body.nav-open {
  overflow: hidden;
}
@media (max-width: 1080px) {
  .nav-toggle {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
  .mobile-nav[hidden] {
    display: none;
  }
}

/* --- module reference grid (platform page) --- */
.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.reference-card {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: border-color 200ms ease, transform 200ms ease;
}
.reference-card:hover {
  border-color: rgba(47, 102, 245, 0.36);
  transform: translateY(-3px);
}
.reference-index {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.reference-card h3 {
  margin: 0 0 4px;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.reference-eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.reference-card > p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.62;
}
.reference-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.reference-tags li {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: #44577a;
  font-size: 12px;
  font-weight: 550;
}

/* --- industry cards used as links --- */
a.industry-card {
  display: block;
  color: inherit;
}

/* --- contact page details --- */
.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.contact-details li {
  display: grid;
  gap: 3px;
}
.contact-details span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-details a,
.contact-details p,
.contact-details address {
  color: #fff;
  font-size: 15.5px;
  font-style: normal;
  line-height: 1.5;
}
.contact-details a:hover {
  text-decoration: underline;
}

/* --- form validation states --- */
.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field-error {
  display: block;
  margin-top: 6px;
  color: #ffb4a8;
  font-size: 12.5px;
  font-weight: 550;
}
.form-error {
  margin-bottom: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 138, 118, 0.45);
  border-radius: 12px;
  background: rgba(255, 108, 84, 0.14);
  color: #ffd8d1;
  font-size: 14px;
  line-height: 1.5;
}
.contact-form [aria-invalid="true"] {
  border-color: rgba(255, 138, 118, 0.62) !important;
}
.button.is-sending {
  opacity: 0.62;
  cursor: progress;
}
.form-actions a {
  color: inherit;
  text-decoration: underline;
}

/* --- status pages (thank you, 404) --- */
.status-page {
  min-height: 52vh;
  padding-bottom: 70px;
}
.status-note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
}
.status-note a {
  color: var(--blue);
}
.notfound-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.notfound-links a {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #44577a;
  font-size: 13.5px;
  font-weight: 550;
  transition: border-color 180ms ease, color 180ms ease;
}
.notfound-links a:hover {
  border-color: rgba(47, 102, 245, 0.4);
  color: var(--blue);
}

/* --- legal / privacy --- */
.legal-body {
  max-width: 74ch;
}
.legal-body h2 {
  margin: 34px 0 10px;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.legal-body h2:first-child {
  margin-top: 0;
}
.legal-body p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.68;
}
.legal-body a {
  color: var(--blue);
  text-decoration: underline;
}
.legal-updated {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
}

/* --- about page detail cards --- */
.about-details address {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  line-height: 1.6;
}
.about-details a {
  color: var(--blue);
}

/* --- footer contact block --- */
.footer-contact {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  font-style: normal;
}
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.footer-contact a:hover {
  color: #fff;
}

@media (max-width: 760px) {
  .page-hero {
    padding-top: 40px;
    padding-bottom: 26px;
  }
  .reference-grid {
    grid-template-columns: 1fr;
  }
}
