:root {
  --ink: #071325;
  --ink-2: #0d1f3b;
  --paper: #ffffff;
  --paper-blue: #f3f7fc;
  --muted: #5c6b7e;
  --line: #dce5f0;
  --blue: #306cff;
  --blue-2: #5b8cff;
  --cyan: #22d3ee;
  --mint: #38dfb2;
  --shadow: 0 24px 70px rgba(8, 28, 60, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

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

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

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

svg {
  display: block;
}

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

.section {
  padding: 116px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  border-bottom: 1px solid rgba(15, 36, 68, 0.09);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav-row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 165px;
  height: auto;
}

.brand-logo--inverse {
  filter: invert(1) grayscale(1) brightness(2.2);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #35465e;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue);
  transition: right 0.2s ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--ink);
}

.main-nav > a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--paper-blue);
  position: relative;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: var(--ink);
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-button span:first-child { top: 16px; }
.menu-button span:last-child { top: 26px; }
.menu-button--open span:first-child { top: 21px; transform: rotate(45deg); }
.menu-button--open span:last-child { top: 21px; transform: rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(63, 99, 158, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 99, 158, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #071326 0%, #0a1d3b 54%, #102a52 100%);
  background-size: 54px 54px, 54px 54px, auto;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(transparent, rgba(1, 10, 24, 0.3));
  pointer-events: none;
}

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

.hero-glow--one {
  width: 680px;
  height: 680px;
  right: -220px;
  top: -280px;
  background: radial-gradient(circle, rgba(48, 108, 255, 0.65), transparent 67%);
}

.hero-glow--two {
  width: 440px;
  height: 440px;
  left: -220px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.38), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 70px;
  min-height: 730px;
  padding-top: 80px;
  padding-bottom: 78px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: #1c5de8;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: #73dff1;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(48px, 5.1vw, 74px);
  font-weight: 720;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  font-style: normal;
  background: linear-gradient(105deg, #71a0ff 5%, #36d7ea 54%, #43e7ae 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 28px 0 0;
  max-width: 630px;
  color: #bdcce0;
  font-size: 18px;
  line-height: 1.72;
}

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

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

.button svg,
.text-link svg,
.offer-card > a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

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

.button:hover svg,
.text-link:hover svg,
.offer-card > a:hover svg {
  transform: translateX(4px);
}

.button--primary {
  background: linear-gradient(135deg, var(--blue), #568cff);
  color: #fff;
  box-shadow: 0 14px 36px rgba(48, 108, 255, 0.3);
}

.button--primary:hover {
  box-shadow: 0 18px 46px rgba(48, 108, 255, 0.4);
}

.button--dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.button--dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button--light {
  background: #fff;
  color: var(--ink);
}

.button--full {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: #9eb2cd;
  font-size: 12px;
}

.hero-proof span,
.contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg,
.contact-points svg,
.offer-card li svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.hero-product {
  position: relative;
  padding: 50px 0;
}

.product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(128, 168, 228, 0.25);
  border-radius: 22px;
  background: rgba(7, 20, 40, 0.82);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.36), 0 0 80px rgba(50, 112, 255, 0.12);
  backdrop-filter: blur(16px);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
}

.window-bar {
  min-height: 54px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(127, 160, 207, 0.16);
  color: #c2d1e6;
  font-size: 11px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #355477;
}

.window-title {
  font-weight: 650;
}

.live {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #76e7ca;
}

.live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(56, 223, 178, 0.1);
}

.window-content {
  padding: 27px;
}

.query-chip {
  margin-left: 54px;
  padding: 15px 18px;
  border-radius: 14px 14px 3px 14px;
  background: linear-gradient(135deg, #2e66f2, #427dff);
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
}

.ai-answer {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  margin-top: 24px;
}

.ai-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(73, 225, 190, 0.4);
  border-radius: 11px;
  background: rgba(56, 223, 178, 0.11);
  color: #75eacb;
  font-weight: 800;
}

.ai-answer p {
  margin: 0;
  color: #c4d0e0;
  font-size: 13px;
  line-height: 1.65;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 20px;
}

.metric-row div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(123, 161, 214, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.metric-row strong {
  display: block;
  color: #fff;
  font-size: 21px;
}

.metric-row span {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: #7f96b4;
  font-size: 9px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini-chart {
  height: 106px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 16px 0;
  border-top: 1px solid rgba(125, 159, 206, 0.14);
}

.mini-chart i {
  flex: 1;
  min-width: 8px;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(#42dcd6, #3a6feb);
  opacity: 0.82;
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 142px;
  padding: 14px 16px;
  border: 1px solid rgba(132, 171, 225, 0.22);
  border-radius: 14px;
  background: rgba(11, 30, 58, 0.94);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.floating-card span,
.floating-card small {
  display: block;
  color: #7890ae;
  font-size: 9px;
}

.floating-card strong {
  display: block;
  margin: 5px 0;
  color: #fff;
  font-size: 17px;
}

.floating-card--left { left: -35px; bottom: 35px; }
.floating-card--right { right: -26px; top: 28px; }

.industry-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 28px;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(137, 168, 209, 0.15);
}

.industry-label {
  color: #6f86a6;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.industry-strip > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.industry-strip > div span {
  color: #c5d2e3;
  font-size: 12px;
  font-weight: 600;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
}

.split-heading h2,
.section-heading h2,
.sticky-copy h2,
.consulting-grid h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.split-heading > p,
.section-heading > p,
.sticky-copy > p,
.consulting-grid > div > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.problem-section {
  background: #fff;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.pain-grid article {
  padding: 34px;
  background: #fff;
}

.pain-grid article > span,
.consulting-services article > span,
.process-grid li > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.pain-grid h3,
.outcomes-grid h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.pain-grid p,
.outcomes-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.section-heading {
  max-width: 860px;
}

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

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading > p {
  max-width: 700px;
  margin: 22px auto 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 64px;
}

.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 46px;
  border-radius: 24px;
}

.offer-card::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 380px;
  height: 380px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.07;
  box-shadow: 0 0 0 54px currentColor, 0 0 0 110px currentColor;
  pointer-events: none;
}

.offer-card--gaia {
  background: linear-gradient(145deg, #0a1930, #102c56);
  color: #fff;
}

.offer-card--consulting {
  border: 1px solid #d8e2ee;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offer-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  opacity: 0.55;
}

.pill {
  padding: 8px 12px;
  border: 1px solid rgba(111, 224, 231, 0.28);
  border-radius: 100px;
  background: rgba(55, 218, 224, 0.1);
  color: #6de7da;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill--dark {
  border-color: #d9e4f0;
  background: #eef4fb;
  color: #315987;
}

.offer-card h3 {
  margin: 62px 0 15px;
  font-size: clamp(37px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.offer-lead {
  max-width: 480px;
  margin: 0;
  color: #aabbd1;
  font-size: 16px;
  line-height: 1.7;
}

.offer-card--consulting .offer-lead {
  color: var(--muted);
}

.offer-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
  color: #d7e2f0;
  font-size: 14px;
}

.offer-card--consulting ul { color: #34455d; }

.offer-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-card > a,
.text-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #6be9d1;
  font-size: 13px;
  font-weight: 750;
}

.offer-card--consulting > a,
.text-link { color: #225fdc; }

.map-section {
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 50% 44%, rgba(64, 123, 255, 0.08), transparent 75%),
    #fff;
}

.map-frame {
  position: relative;
  aspect-ratio: 1600 / 1010;
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid #d8e3f1;
  border-radius: 24px;
  background: #f7faff;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-hint {
  position: absolute;
  left: 50%;
  bottom: 17px;
  transform: translateX(-50%);
  padding: 9px 13px;
  border: 1px solid #d7e3f1;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.9);
  color: #6d7e96;
  font-size: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(13, 33, 68, 0.08);
  backdrop-filter: blur(10px);
}

.mobile-map {
  display: none;
}

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

.capability-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 110px;
}

.sticky-copy {
  position: sticky;
  top: 125px;
}

.sticky-copy > p {
  margin-top: 22px;
}

.sticky-copy .text-link {
  margin-top: 28px;
}

.capability-list {
  display: grid;
}

.capability-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid #d8e2ed;
}

.capability-list article:first-child { padding-top: 0; }

.cap-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #d6e2f2;
  border-radius: 16px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 10px 28px rgba(20, 51, 93, 0.06);
}

.cap-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-list article span {
  color: #2d66db;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.capability-list article h3 {
  margin: 7px 0 8px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.capability-list article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.consulting-section {
  background:
    radial-gradient(680px 500px at 10% 10%, rgba(44, 103, 238, 0.22), transparent 70%),
    radial-gradient(600px 500px at 90% 90%, rgba(41, 215, 194, 0.09), transparent 70%),
    var(--ink);
  color: #fff;
}

.consulting-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 110px;
}

.consulting-grid > div > p {
  margin: 24px 0 30px;
  color: #aabbd1;
}

.consulting-services {
  overflow: hidden;
  border: 1px solid rgba(149, 178, 218, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.consulting-services article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 26px 28px;
  border-bottom: 1px solid rgba(149, 178, 218, 0.14);
}

.consulting-services article:last-child { border-bottom: 0; }
.consulting-services h3 { margin: 0 0 7px; font-size: 18px; }
.consulting-services p { margin: 0; color: #91a6c1; font-size: 13px; line-height: 1.6; }
.consulting-services article > span { color: #5ee4ce; }

.outcomes-section {
  background: #fff;
}

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

.outcomes-grid article {
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f8fafe);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.outcomes-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.outcomes-grid article > span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 100px;
  background: #ecf3ff;
  color: #2a61cf;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcomes-grid h3 {
  margin-top: 70px;
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 66px;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-grid li {
  position: relative;
  padding: 0 28px;
  border-left: 1px solid #ccdae9;
}

.process-grid li:first-child { padding-left: 0; border-left: 0; }
.process-grid li:last-child { padding-right: 0; }

.process-grid li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 18px;
  width: 28px;
  height: 1px;
  background: #8aa6cb;
}

.process-grid h3 { margin: 30px 0 10px; font-size: 20px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.faq-section {
  background: #fff;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.015em;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef4fb;
  color: #315e9c;
  font-size: 19px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

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

.faq-list details p {
  margin: -6px 55px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-section {
  padding: 72px 0;
  background: var(--paper-blue);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 75px;
  padding: 70px;
  border-radius: 28px;
  background:
    radial-gradient(580px 460px at 0 0, rgba(58, 118, 255, 0.22), transparent 68%),
    linear-gradient(145deg, #071326, #0d2649);
  color: #fff;
  box-shadow: 0 32px 90px rgba(5, 25, 57, 0.2);
}

.contact-copy > p { margin-top: 22px; color: #a9bad1; }

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 27px;
  color: #ccd8e7;
  font-size: 13px;
}

.contact-copy > a {
  display: inline-block;
  margin-top: 32px;
  color: #6be5d4;
  font-size: 14px;
  font-weight: 700;
}

.contact-actions-card {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.contact-actions-kicker {
  margin: 0;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-actions-card h3 {
  margin: 16px 0 10px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.contact-actions-card > p:not(.contact-actions-kicker) {
  margin: 0;
  color: #607087;
  font-size: 13px;
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 25px;
}

.button--email {
  border: 1px solid #d6e0ec;
  background: #f5f8fc;
  color: var(--ink);
}

.button--email:hover { background: #eaf1fa; }

.contact-actions-card small {
  display: block;
  margin-top: 14px;
  color: #7d8999;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  padding: 70px 0 24px;
  background: #050d1a;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 0.7fr);
  gap: 64px;
}

.footer-brand .brand-logo { width: 190px; }
.footer-brand p { max-width: 320px; margin: 22px 0 0; color: #7f91aa; font-size: 13px; line-height: 1.7; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 11px; }
.footer-grid h3 { margin: 0 0 8px; color: #fff; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-grid a { color: #8395ad; font-size: 12px; transition: color 0.2s ease; }
.footer-grid a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(139, 163, 198, 0.13);
  color: #687b95;
  font-size: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .main-nav { gap: 19px; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; padding-top: 90px; }
  .hero-copy { max-width: 780px; }
  .hero-product { width: min(740px, 92%); margin: 0 auto; }
  .industry-strip { grid-template-columns: 1fr; }
  .industry-strip > div { flex-wrap: wrap; justify-content: flex-start; gap: 14px 28px; }
  .capability-layout,
  .faq-layout { gap: 64px; }
  .consulting-grid { gap: 65px; }
  .contact-card { gap: 50px; padding: 55px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 0.8fr); gap: 40px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 36px, 760px); }
  .section { padding: 88px 0; }
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-nav--open { display: flex; }
  .main-nav a { padding: 13px 10px; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 8px; }
  .hero-grid { min-height: auto; padding-top: 76px; }
  .split-heading,
  .capability-layout,
  .faq-layout,
  .consulting-grid,
  .contact-card { grid-template-columns: 1fr; gap: 45px; }
  .split-heading { align-items: start; }
  .sticky-copy { position: static; }
  .offer-card { padding: 36px; }
  .map-frame { display: none; }
  .mobile-map {
    display: grid;
    gap: 12px;
    margin-top: 48px;
  }
  .mobile-map article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(12, 39, 78, 0.06);
  }
  .mobile-map article:nth-of-type(2) { background: var(--ink); color: #fff; }
  .mobile-map article > span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
  .mobile-map article:nth-of-type(2) > span { color: #5de1cf; }
  .mobile-map h3 { margin: 11px 0 7px; font-size: 25px; }
  .mobile-map p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
  .mobile-map article:nth-of-type(2) p { color: #9fb2ca; }
  .mobile-map > i { color: #8ba0ba; text-align: center; font-style: normal; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .process-grid li:nth-child(3) { padding-left: 0; border-left: 0; }
  .process-grid li::after { display: none; }
  .contact-card { padding: 48px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 560px); }
  .site-header { height: 70px; }
  .brand-logo { width: 148px; }
  .hero-grid { padding-top: 62px; padding-bottom: 40px; }
  .hero h1 { font-size: 47px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-product { width: 100%; padding: 30px 0; }
  .product-window { transform: none; border-radius: 17px; }
  .window-bar { grid-template-columns: 1fr auto; }
  .window-title { display: none; }
  .window-content { padding: 18px; }
  .query-chip { margin-left: 22px; }
  .ai-answer { grid-template-columns: 30px 1fr; gap: 9px; }
  .ai-avatar { width: 30px; height: 30px; border-radius: 9px; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .metric-row div:last-child { display: none; }
  .mini-chart { height: 86px; gap: 7px; }
  .floating-card { display: none; }
  .industry-strip { padding-top: 18px; }
  .industry-strip > div span { font-size: 11px; }
  .section { padding: 72px 0; }
  .split-heading,
  .capability-layout,
  .faq-layout,
  .consulting-grid { gap: 34px; }
  .split-heading h2,
  .section-heading h2,
  .sticky-copy h2,
  .consulting-grid h2,
  .contact-copy h2 { font-size: 37px; }
  .split-heading > p,
  .section-heading > p,
  .sticky-copy > p,
  .consulting-grid > div > p,
  .contact-copy > p { font-size: 15px; }
  .pain-grid,
  .offer-grid,
  .outcomes-grid { grid-template-columns: 1fr; }
  .pain-grid article { padding: 28px; }
  .offer-grid { margin-top: 42px; }
  .offer-card { min-height: auto; padding: 30px; border-radius: 20px; }
  .offer-card h3 { margin-top: 42px; font-size: 40px; }
  .capability-list article { grid-template-columns: 48px 1fr; gap: 16px; }
  .cap-icon { width: 46px; height: 46px; border-radius: 13px; }
  .consulting-services article { padding: 23px 20px; }
  .outcomes-grid { margin-top: 44px; }
  .outcomes-grid article { min-height: 250px; }
  .outcomes-grid h3 { margin-top: 48px; }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-grid li,
  .process-grid li:nth-child(3) { padding: 0 0 0 20px; border-left: 1px solid #ccdae9; }
  .process-grid h3 { margin-top: 16px; }
  .faq-list summary { font-size: 15px; }
  .contact-section { padding: 20px 0; background: var(--ink); }
  .contact-card { width: min(100% - 28px, 560px); padding: 42px 0; border-radius: 0; box-shadow: none; background: transparent; }
  .contact-actions-card { padding: 23px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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

.legal-page {
  min-height: 100vh;
  padding: 72px 0 110px;
  background: var(--paper-blue);
}

.legal-shell {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-back {
  display: inline-block;
  margin-bottom: 58px;
  color: #315f9f;
  font-size: 13px;
  font-weight: 700;
}

.legal-shell h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.legal-updated {
  margin: 16px 0 48px;
  color: #7a899c;
  font-size: 12px;
}

.legal-shell section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-shell section h2 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.legal-shell section p,
.legal-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.legal-shell section a {
  color: #225fdc;
  text-decoration: underline;
}

.legal-note {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #fff7e6;
  color: #7d5b18;
  font-size: 12px;
}

@media (max-width: 680px) {
  .legal-page { padding: 24px 0 60px; }
  .legal-shell { padding: 30px 23px; border-radius: 18px; }
  .legal-back { margin-bottom: 45px; }
}

/* ============================================================
   UPGRADE LAYER — tipografía + motion + marketing polish
   (appendix: overrides intencionales sobre las reglas base)
   ============================================================ */

:root {
  --font-display: "Space Grotesk", Inter, sans-serif;
  --font-body: Inter, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

body { font-family: var(--font-body); }

h1, h2, h3,
.hero h1,
.contact-copy h2,
.legal-shell h1 {
  font-family: var(--font-display);
}

.hero h1 { letter-spacing: -0.035em; font-weight: 700; }
h2 { letter-spacing: -0.03em !important; }

/* Voz "de dato": todo lo que es métrica, etiqueta o sistema va en mono
   (misma convención que los diagramas GAIA) */
.eyebrow,
.window-title,
.live,
.query-chip,
.metric-row strong,
.metric-row span,
.floating-card,
.industry-label,
.pain-grid article > span,
.offer-number,
.pill,
.process-grid li > span,
.consulting-services article > span,
.outcomes-grid article > span,
.capability-list article span:first-child,
.mobile-map article > span,
.contact-actions-kicker,
.footer-bottom {
  font-family: var(--font-mono);
}

.eyebrow { font-weight: 600; letter-spacing: 0.14em; font-size: 11.5px; }
.metric-row strong { font-weight: 700; letter-spacing: -0.02em; }
.floating-card strong { font-family: var(--font-mono); letter-spacing: -0.01em; }

/* ---------- Coreografía de entrada del hero ---------- */

@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

.hero-copy[data-reveal] { transform: none; transition: opacity 0.3s ease; }
.hero-copy > * { opacity: 0; }
.hero-copy.is-visible > * { animation: riseIn 0.9s var(--ease-out) forwards; }
.hero-copy.is-visible > .eyebrow       { animation-delay: 0.05s; }
.hero-copy.is-visible > h1             { animation-delay: 0.16s; }
.hero-copy.is-visible > .hero-lead     { animation-delay: 0.30s; }
.hero-copy.is-visible > .hero-actions  { animation-delay: 0.44s; }
.hero-copy.is-visible > .hero-proof    { animation-delay: 0.58s; }

/* Gradiente vivo en la palabra clave del H1 */
.hero h1 em {
  background: linear-gradient(105deg, #71a0ff 0%, #36d7ea 30%, #43e7ae 55%, #36d7ea 75%, #71a0ff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientSlide 6s ease-in-out infinite;
}

@keyframes gradientSlide {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Ventana de producto: entra con profundidad y respira */
@keyframes windowIn {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateY(-10deg) rotateX(5deg) translateY(44px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateY(-3deg) rotateX(2deg) translateY(0) scale(1);
  }
}

.hero-product[data-reveal] { transform: none; transition: opacity 0.2s ease; }
.hero-product .product-window { opacity: 0; }
.hero-product.is-visible .product-window {
  animation: windowIn 1.15s var(--ease-out) 0.25s forwards;
}

/* Contenido interno de la ventana: chat que "sucede" en secuencia */
.product-window .query-chip,
.product-window .ai-answer { opacity: 0; }

.hero-product.is-visible .query-chip {
  animation: riseIn 0.6s var(--ease-out) 0.9s forwards;
}

.hero-product.is-visible .ai-answer {
  animation: riseIn 0.7s var(--ease-out) 1.5s forwards;
}

/* Barras del mini-chart crecen una por una */
.mini-chart i {
  transform: scaleY(0);
  transform-origin: bottom;
}

.hero-product.is-visible .mini-chart i {
  animation: barGrow 0.7s var(--ease-out) forwards;
}

@keyframes barGrow { to { transform: scaleY(1); } }

.hero-product.is-visible .mini-chart i:nth-child(1) { animation-delay: 1.9s; }
.hero-product.is-visible .mini-chart i:nth-child(2) { animation-delay: 2.0s; }
.hero-product.is-visible .mini-chart i:nth-child(3) { animation-delay: 2.1s; }
.hero-product.is-visible .mini-chart i:nth-child(4) { animation-delay: 2.2s; }
.hero-product.is-visible .mini-chart i:nth-child(5) { animation-delay: 2.3s; }
.hero-product.is-visible .mini-chart i:nth-child(6) { animation-delay: 2.4s; }
.hero-product.is-visible .mini-chart i:nth-child(7) { animation-delay: 2.5s; }

/* Tarjetas flotantes: entran y luego flotan en bucle */
.floating-card { opacity: 0; }

.hero-product.is-visible .floating-card--left {
  animation:
    riseIn 0.8s var(--ease-out) 1.8s forwards,
    floatY 7s ease-in-out 2.6s infinite;
}

.hero-product.is-visible .floating-card--right {
  animation:
    riseIn 0.8s var(--ease-out) 2.1s forwards,
    floatY 8.5s ease-in-out 2.9s infinite reverse;
}

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

/* Punto "en vivo" pulsando */
.live i { animation: livePulse 2.2s ease-out infinite; }

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(56, 223, 178, 0.45); }
  70%  { box-shadow: 0 0 0 9px rgba(56, 223, 178, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 223, 178, 0); }
}

/* Cursor de escritura en el chip de pregunta */
.query-chip.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  vertical-align: text-bottom;
  background: #fff;
  animation: caretBlink 0.85s steps(1) infinite;
}

@keyframes caretBlink { 50% { opacity: 0; } }

/* Glows del hero con deriva lenta (ambiente) */
.hero-glow--one { animation: glowDrift 14s ease-in-out infinite alternate; }
.hero-glow--two { animation: glowDrift 18s ease-in-out infinite alternate-reverse; }

@keyframes glowDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-46px, 34px) scale(1.08); }
}

/* ---------- Marquee de industrias ---------- */

.industry-strip > div.marquee {
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow: hidden;
  gap: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  flex: 0 0 auto;
  white-space: nowrap;
  animation: marqueeScroll 26s linear infinite;
}

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

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ---------- Reveals con stagger y más carácter ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(3px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out),
    filter 0.85s var(--ease-out);
  transition-delay: var(--stagger, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* ---------- Micro-interacciones marketeras ---------- */

/* Barrido de brillo en el CTA primario */
.button--primary {
  position: relative;
  overflow: hidden;
}

.button--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}

.button--primary:hover::before,
.button--primary:focus-visible::before {
  transform: translateX(120%) skewX(-18deg);
}

/* Cards con levantón + borde que se enciende */
.offer-card,
.pain-grid article,
.outcomes-grid article,
.process-grid li,
.consulting-services article,
.capability-list article {
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    opacity 0.85s var(--ease-out),
    filter 0.85s var(--ease-out);
}

.offer-card:hover,
.pain-grid article:hover,
.outcomes-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(48, 108, 255, 0.45);
  box-shadow: 0 30px 70px rgba(8, 28, 60, 0.14);
}

.capability-list article:hover .cap-icon {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(48, 108, 255, 0.22);
}

.cap-icon { transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out); }

/* Header: sombra al hacer scroll */
.site-header {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 40px rgba(8, 28, 60, 0.1);
}

/* FAQ: apertura suave del "+" */
.faq-list summary span { transition: transform 0.3s var(--ease-out); display: inline-block; }
.faq-list details[open] summary span { transform: rotate(45deg); }

/* ---------- Accesibilidad de movimiento ---------- */

@media (prefers-reduced-motion: reduce) {
  .hero-copy > *,
  .hero-product .product-window,
  .product-window .query-chip,
  .product-window .ai-answer,
  .mini-chart i,
  .floating-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .product-window { transform: perspective(1200px) rotateY(-3deg) rotateX(2deg) !important; }
  .hero h1 em,
  .hero-glow--one,
  .hero-glow--two,
  .live i,
  .marquee-track { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
}

/* ============================================================
   HERO: ventana de GAIA en tema claro (como el mockup original)
   ============================================================ */

.product-window {
  border: 1px solid rgba(13, 31, 59, 0.08);
  background: #ffffff;
  box-shadow:
    0 50px 100px rgba(1, 10, 24, 0.5),
    0 0 90px rgba(80, 140, 255, 0.18);
  backdrop-filter: none;
}

.window-bar {
  border-bottom: 1px solid #e8eef6;
  color: #5c6b7e;
}

.window-dots i { background: #d7e0ec; }

.window-title { color: #0d1f3b; }

.live { color: #0a9d77; }

.live i {
  background: #17c99a;
  box-shadow: 0 0 0 5px rgba(23, 201, 154, 0.12);
}

.ai-avatar {
  border: none;
  background: linear-gradient(135deg, #306cff, #22d3ee);
  color: #fff;
}

.ai-answer p { color: #3a4a61; }

.metric-row div {
  border: 1px solid #e2e9f3;
  background: #f7fafd;
}

.metric-row strong { color: #0d1f3b; }
.metric-row span { color: #7c8ca0; }

.mini-chart {
  border-top: 1px solid #e8eef6;
}

.mini-chart i { opacity: 1; }

/* Tarjetas flotantes se quedan oscuras: contrastan sobre la ventana blanca
   y sobre el fondo del hero por igual */
