@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap");

:root {
  --ink: #132B3F;
  --muted: #5f7180;
  --line: #D8E6F0;
  --paper: #ffffff;
  --navy: #102A43;
  --navy-2: #163B5C;
  --soft-blue: #EAF4FB;
  --secondary: #F5F7FA;
  --brand: #00A8D8;
  --brand-dark: #007fa3;
  --accent-soft: #CFF4FF;
  --green: #52b788;
  --red: #e25d5d;
  --shadow: 0 24px 70px rgba(16, 42, 67, 0.16);
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3.1rem, 8vw, 6.9rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

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

.section {
  position: relative;
  padding: 96px 0;
  background: var(--paper);
  color: var(--navy);
  transition: background-color 260ms ease, color 260ms ease;
}

.intro {
  padding-top: 58px;
  padding-bottom: 48px;
}

.section p {
  color: var(--muted);
}

.section-kicker,
.eyebrow {
  color: #6F8FB3;
}

.section.is-dark,
.intro,
.services {
  background: var(--navy);
  color: white;
}

.section.is-dark p,
.intro p,
.services p {
  color: rgba(255, 255, 255, 0.68);
}

.section.is-dark .section-kicker,
.intro .section-kicker,
.services .section-kicker {
  color: var(--accent-soft);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(16, 42, 67, 0.1);
  box-shadow: 0 16px 40px rgba(16, 42, 67, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  display: block;
  width: clamp(148px, 15vw, 214px);
  height: auto;
}

.footer-brand .brand-logo {
  width: clamp(170px, 17vw, 238px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 700;
}

.nav-cta,
.button-primary {
  background: var(--navy);
  color: white;
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--brand);
  color: white;
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--secondary);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero {
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 0;
  background: var(--paper);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.56;
  background-image: linear-gradient(to right, rgba(216, 230, 240, 0.8) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(216, 230, 240, 0.8) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, #000 0%, transparent 70%);
}

.hero-content {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(1500px, calc(100% - 40px));
  text-align: center;
}

.eyebrow,
.section-kicker {
  color: #6F8FB3;
  font-family: "Roboto Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section.is-dark .section-kicker,
.intro .section-kicker,
.services .section-kicker {
  color: var(--accent-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft-blue);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.hero h1 {
  margin-top: 30px;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  font-family: "Space Grotesk", "Avenir Next", "Avenir Next Heavy", Gotham, "Gotham Bold", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3.105rem, 7.92vw, 6.84rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.hero-copy {
  width: 100%;
  max-width: 1014px;
  margin-inline: auto;
  margin-top: 28px;
  font-size: 1.14rem;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  padding-inline: 26px;
}

.screen-stage {
  position: relative;
  justify-self: center;
  width: min(calc(100vw - 40px), 1680px);
  max-width: 100%;
  height: clamp(520px, 58vw, 670px);
  margin-top: 72px;
  margin-inline: auto;
  perspective: 1600px;
}

.screen-stage::before {
  position: absolute;
  inset: 8% 5% 0;
  content: "";
  border-radius: 28px;
  background: var(--accent-soft);
  filter: blur(42px);
}

.screen-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(360px, 38%) minmax(0, 62%);
  gap: clamp(24px, 3vw, 56px);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(24%) rotateY(-14deg) scale(0.94);
  pointer-events: none;
  transition: opacity 820ms cubic-bezier(0.16, 1, 0.3, 1), transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  z-index: 1;
}

.screen-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) rotateY(0deg) scale(1);
  z-index: 3;
}

.screen-card.is-entering-left {
  transform: translateX(-24%) rotateY(14deg) scale(0.94);
}

.screen-card.is-entering-right {
  transform: translateX(24%) rotateY(-14deg) scale(0.94);
}

.screen-card.is-exiting-left {
  opacity: 0;
  transform: translateX(-24%) rotateY(14deg) scale(0.94);
  z-index: 2;
}

.screen-card.is-exiting-right {
  opacity: 0;
  transform: translateX(24%) rotateY(-14deg) scale(0.94);
  z-index: 2;
}

.screen-copy {
  display: grid;
  align-content: center;
  min-height: 100%;
  min-width: 0;
  padding: clamp(30px, 4vw, 64px);
  padding-left: clamp(76px, 6vw, 104px);
  text-align: left;
}

.screen-copy span {
  color: var(--brand-dark);
  font-family: "Roboto Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.screen-copy h2 {
  max-width: 12ch;
  margin-top: 18px;
  font-size: clamp(2rem, 4.2vw, 4.25rem);
  line-height: 0.98;
}

.screen-copy p {
  max-width: 430px;
  margin-top: 22px;
  font-size: 1.02rem;
}

.screen-image {
  position: relative;
  overflow: hidden;
  height: calc(100% - 44px);
  margin: 22px 22px 22px 0;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--navy);
}

.screen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 230, 240, 0.76);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy);
  font: 700 1.42rem/1 Inter, system-ui, sans-serif;
  opacity: 0.42;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px rgba(16, 42, 67, 0.14);
  transition: opacity 180ms ease, background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.screen-control:hover,
.screen-control:focus-visible {
  border-color: rgba(0, 168, 216, 0.55);
  background: rgba(255, 255, 255, 0.9);
  opacity: 1;
  transform: translateY(-50%) scale(1.04);
}

.screen-control:focus-visible {
  outline: 3px solid rgba(0, 168, 216, 0.22);
  outline-offset: 3px;
}

.screen-control-prev {
  left: clamp(12px, 1.8vw, 28px);
}

.screen-control-next {
  right: clamp(12px, 1.8vw, 28px);
}

.console-card {
  position: relative;
  overflow: hidden;
  margin-top: 72px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Roboto Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.window-dots i,
.live-dot i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-dot i {
  width: 7px;
  height: 7px;
  background: var(--green);
}

.console-card img {
  width: 100%;
  height: clamp(310px, 45vw, 560px);
  object-fit: cover;
}

.console-tags {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 42, 67, 0.72);
  color: white;
  backdrop-filter: blur(14px);
}

.console-tags li {
  min-height: 68px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.console-tags li:last-child {
  border-right: 0;
}

.market-strip {
  margin-top: 28px;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: "Roboto Mono", monospace;
  font-size: 0.8rem;
}

.ticker b {
  color: rgba(255, 255, 255, 0.46);
}

.ticker em {
  font-style: normal;
}

.up {
  color: var(--green);
}

.down {
  color: var(--red);
}

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

.split,
.report-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  column-gap: 72px;
  row-gap: 58px;
  align-items: center;
}

.intro .split {
  row-gap: 46px;
}

.split h2,
.section-heading h2,
.report-layout h2,
.contact-panel h2 {
  margin-top: 16px;
}

.split p:not(.section-kicker),
.report-layout p,
.contact-panel p {
  margin-top: 22px;
  max-width: 650px;
}

.pill-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(176px, 16vw, 220px);
  border: 1px solid rgba(207, 244, 255, 0.28);
  border-radius: 999px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  white-space: nowrap;
}

.metric-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(207, 244, 255, 0.28);
  background: white;
  color: var(--navy);
}

.metric-panel article {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.metric-panel article:last-child {
  border-right: 0;
}

.metric-panel span {
  color: var(--brand-dark);
  font-size: 3rem;
  font-weight: 800;
}

.metric-panel p {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

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

#method .section-heading {
  max-width: 1120px;
}

#method .section-kicker {
  color: #6F8FB3;
}

.reports .section-kicker,
.why .section-kicker {
  color: #6F8FB3;
}

#method .section-heading h2 {
  font-size: clamp(2.25rem, 3.6vw, 3.75rem);
  white-space: nowrap;
}

.process-grid,
.card-grid,
.why-grid {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
}

.process-grid {
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 22px;
  padding: 0;
  background: transparent;
}

.process-grid li,
.card-grid article {
  min-height: 260px;
  background: var(--secondary);
  color: var(--navy);
  padding: 28px;
}

.process-grid li {
  position: relative;
  min-height: 232px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.process-grid li:hover,
.process-grid li:focus-visible,
.process-grid li.is-expanded,
.process-grid li.is-pulsing {
  border-color: rgba(0, 168, 216, 0.46);
  box-shadow: 0 18px 50px rgba(16, 42, 67, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .process-grid li:hover,
  .process-grid li:focus-visible {
    transform: translateY(-2px);
  }

  .process-grid li:hover .process-chevron,
  .process-grid li:focus-visible .process-chevron {
    color: var(--brand);
  }
}

.process-grid li:focus-visible {
  outline: 3px solid rgba(0, 168, 216, 0.18);
  outline-offset: 4px;
}

.process-grid li:not(:last-child)::before,
.process-grid li:not(:last-child)::after {
  position: absolute;
  top: 52px;
  left: calc(100% + 3px);
  z-index: 2;
  content: "";
  pointer-events: none;
  transition: background-color 260ms ease, border-color 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.process-grid li:not(:last-child)::before {
  width: 16px;
  height: 1px;
  background: rgba(16, 42, 67, 0.22);
}

.process-grid li:not(:last-child)::after {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  margin-left: 10px;
  border-top: 1px solid rgba(16, 42, 67, 0.22);
  border-right: 1px solid rgba(16, 42, 67, 0.22);
  opacity: 0;
  transform: rotate(45deg) translateX(-4px);
}

.process-grid.progress-2 li:nth-child(1)::before,
.process-grid.progress-3 li:nth-child(-n+2)::before,
.process-grid.progress-4 li:nth-child(-n+3)::before,
.process-grid.progress-5 li:nth-child(-n+4)::before,
.process-grid.pulse-2 li:nth-child(1)::before,
.process-grid.pulse-3 li:nth-child(2)::before,
.process-grid.pulse-4 li:nth-child(3)::before,
.process-grid.pulse-5 li:nth-child(4)::before {
  background: var(--brand);
}

.process-grid.progress-2 li:nth-child(1)::after,
.process-grid.progress-3 li:nth-child(-n+2)::after,
.process-grid.progress-4 li:nth-child(-n+3)::after,
.process-grid.progress-5 li:nth-child(-n+4)::after,
.process-grid.pulse-2 li:nth-child(1)::after,
.process-grid.pulse-3 li:nth-child(2)::after,
.process-grid.pulse-4 li:nth-child(3)::after,
.process-grid.pulse-5 li:nth-child(4)::after {
  border-color: var(--brand);
  opacity: 1;
  transform: rotate(45deg) translateX(0);
}

.process-grid span {
  color: var(--brand-dark);
  font-family: "Roboto Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 220ms ease, text-shadow 220ms ease;
}

.process-grid li.is-pulsing > span {
  color: var(--brand);
  text-shadow: 0 0 18px rgba(0, 168, 216, 0.32);
}

.process-grid h3,
.card-grid h3,
.why-grid h3 {
  margin-top: 28px;
}

.process-grid h3 {
  margin-top: 24px;
}

.process-grid p,
.card-grid p,
.why-grid p {
  margin-top: 12px;
  font-size: 0.95rem;
}

.process-grid p,
.card-grid p {
  color: var(--muted);
}

.process-grid .process-summary {
  color: var(--ink);
}

.process-detail {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 280ms ease, opacity 240ms ease, margin-top 280ms ease;
}

.process-grid li.is-expanded .process-detail {
  max-height: 260px;
  margin-top: 18px;
  opacity: 1;
}

.process-chevron {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 240ms ease, color 180ms ease, transform 260ms ease;
}

.process-grid.is-method-ready .process-chevron {
  opacity: 0.64;
}

.process-grid li.is-expanded .process-chevron {
  color: var(--brand);
  transform: rotate(180deg);
}

.card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.services .section-heading {
  max-width: 1040px;
}

.capabilities-intro {
  max-width: 640px;
  margin-top: 18px;
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.services .card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services .card-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 147px;
  padding: 22px 26px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .services .card-grid article:hover,
  .services .card-grid article:focus-visible {
    border-color: rgba(0, 168, 216, 0.46);
    box-shadow: 0 18px 50px rgba(16, 42, 67, 0.12);
    transform: translateY(-2px);
  }

  .services .card-grid article:hover .capability-chevron,
  .services .card-grid article:focus-visible .capability-chevron {
    color: var(--brand);
  }
}

.services .card-grid article.is-expanded {
  border-color: rgba(0, 168, 216, 0.46);
  box-shadow: 0 18px 50px rgba(16, 42, 67, 0.12);
}

.services .card-grid article:focus-visible {
  outline: 3px solid rgba(0, 168, 216, 0.18);
  outline-offset: 4px;
}

.capability-summary {
  color: var(--muted);
}

.capability-detail {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 280ms ease, opacity 240ms ease, margin-top 280ms ease;
}

.services .card-grid article.is-expanded .capability-detail {
  max-height: 320px;
  margin-top: 16px;
  opacity: 1;
}

.capability-detail p {
  margin-top: 0;
}

.capability-detail ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.capability-chevron {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.64;
  transform: rotate(0deg);
  transition: color 180ms ease, transform 260ms ease;
}

.services .card-grid article.is-expanded .capability-chevron {
  color: var(--brand);
  transform: rotate(180deg);
}

.capabilities-note {
  max-width: 760px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 0.98rem;
  font-weight: 400;
}

.reports {
  background: white;
  padding-top: 72px;
  padding-bottom: 72px;
}

.report-layout .button {
  margin-top: 30px;
}

.report-capability-strip {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.65;
}

.report-preview {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.report-workflow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.report-workflow::before {
  position: absolute;
  width: 34%;
  height: 30%;
  border-radius: 999px;
  background: var(--brand);
  content: "";
  filter: blur(34px);
  opacity: 0;
  mix-blend-mode: screen;
  transform: translate3d(8%, 18%, 0) scale(0.92);
  transition: opacity 680ms ease-in-out, transform 820ms ease-in-out;
}

.report-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(285px, 42%);
  border: 1px solid rgba(216, 230, 240, 0.32);
  border-radius: 999px;
  background: rgba(16, 42, 67, 0.76);
  color: white;
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(8px);
  box-shadow: 0 14px 36px rgba(16, 42, 67, 0.16);
  backdrop-filter: blur(14px);
  transition: opacity 420ms ease, transform 420ms ease-in-out, border-color 420ms ease-in-out, background-color 420ms ease-in-out, box-shadow 420ms ease-in-out;
}

.report-chip::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 168, 216, 0.16);
  content: "";
}

.report-chip:nth-child(1) {
  top: 9%;
  left: 6%;
}

.report-chip:nth-child(2) {
  top: 24%;
  right: 6%;
}

.report-chip:nth-child(3) {
  left: 7%;
  bottom: 22%;
}

.report-chip:nth-child(4) {
  right: 6%;
  bottom: 9%;
}

.report-preview.is-workflow-visible .report-chip {
  opacity: 0.72;
  transform: translateY(0);
}

.report-preview.is-workflow-visible .report-chip.is-active {
  border-color: rgba(216, 230, 240, 0.56);
  background: rgba(16, 42, 67, 0.88);
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 18px 42px rgba(16, 42, 67, 0.22);
}

.report-preview.is-workflow-visible .report-chip.is-active::before {
  box-shadow: 0 0 0 5px rgba(0, 168, 216, 0.2), 0 0 18px rgba(0, 168, 216, 0.28);
}

.report-preview.is-workflow-visible.workflow-step-1 .report-workflow::before {
  opacity: 0.12;
  transform: translate3d(2%, 10%, 0) scale(0.9);
}

.report-preview.is-workflow-visible.workflow-step-2 .report-workflow::before {
  opacity: 0.14;
  transform: translate3d(92%, 42%, 0) scale(1);
}

.report-preview.is-workflow-visible.workflow-step-3 .report-workflow::before {
  opacity: 0.12;
  transform: translate3d(40%, 120%, 0) scale(1.04);
}

.report-preview.is-workflow-visible.workflow-step-4 .report-workflow::before {
  opacity: 0.1;
  transform: translate3d(122%, 132%, 0) scale(0.96);
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
  background: transparent;
  padding: 0;
  gap: 18px;
}

.why-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  border: 1px solid rgba(207, 244, 255, 0.24);
  border-radius: 14px;
  background: var(--navy-2);
  color: white;
  padding: 30px;
}

.why-grid article p {
  color: rgba(255, 255, 255, 0.68);
}

.why-grid article h3 {
  margin-top: 0;
}

.testimonials .section-heading {
  max-width: 1040px;
}

.testimonials .section-heading p:not(.section-kicker) {
  max-width: 1040px;
  margin-top: 18px;
  font-size: 0.98rem;
}

.testimonial-stage {
  position: relative;
  min-height: 370px;
  margin-top: 52px;
  outline: none;
}

.testimonial-stage:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 10px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 44px;
  width: min(930px, calc(100% - 140px));
  margin-inline: auto;
  padding: 48px 0;
  border-top: 1px solid rgba(207, 244, 255, 0.22);
  border-bottom: 1px solid rgba(207, 244, 255, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.testimonial-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.testimonial-stage.is-previous .testimonial-slide {
  transform: translateX(-18px);
}

.testimonial-stage.is-previous .testimonial-slide.is-active {
  transform: translateX(0);
}

.testimonial-portrait {
  display: block;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(207, 244, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  object-fit: cover;
  overflow: hidden;
}

.testimonial-copy blockquote {
  margin: 0;
  color: white;
  font-size: clamp(0.96rem, 1.6vw, 1.24rem);
  line-height: 1.58;
  letter-spacing: 0;
}

.testimonial-author {
  margin-top: 28px;
}

.testimonial-author p {
  margin: 0;
}

.testimonial-author strong {
  color: white;
  font-weight: 700;
}

.testimonial-author span {
  display: inline-block;
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.58);
}

.testimonial-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.testimonial-links a {
  color: var(--accent-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.testimonial-links a:hover,
.testimonial-links a:focus-visible {
  color: white;
}

.testimonial-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(207, 244, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.testimonial-control:hover,
.testimonial-control:focus-visible {
  border-color: rgba(207, 244, 255, 0.62);
  background: rgba(255, 255, 255, 0.13);
  color: white;
  transform: translateY(-50%) scale(1.04);
}

.testimonial-control-prev {
  left: 0;
}

.testimonial-control-next {
  right: 0;
}

#executive-market-intelligence .section-heading {
  max-width: 1040px;
}

#executive-market-intelligence .section-heading p:not(.section-kicker) {
  max-width: 1040px;
  margin-top: 18px;
  font-size: 0.98rem;
}

.market-offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin-inline: auto;
  margin-top: 0;
}

.market-offerings article {
  padding: 0 28px;
  border-right: 1px solid rgba(207, 244, 255, 0.28);
  text-align: center;
}

.market-offerings article:last-child {
  border-right: 0;
}

.market-offerings h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.market-offerings p {
  margin-top: 10px;
  font-size: 0.92rem;
}

.market-offerings span {
  display: block;
  margin-top: 8px;
  color: var(--accent-soft);
  font-family: "Roboto Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#executive-market-intelligence .hero-actions {
  margin-top: 42px;
  justify-content: flex-start;
}

#executive-market-intelligence .button-primary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: white;
  color: var(--navy);
}

#executive-market-intelligence .button-primary:hover,
#executive-market-intelligence .button-primary:focus-visible {
  background: var(--accent-soft);
  color: var(--navy);
}

.contact {
  background: white;
  color: var(--navy);
  text-align: center;
}

.contact p,
.contact .section-kicker {
  color: var(--muted);
}

.contact .section-kicker {
  color: #6F8FB3;
}

.contact-panel {
  display: grid;
  justify-items: center;
}

.contact-panel p {
  margin-inline: auto;
}

.contact .button-primary {
  margin-top: 32px;
  background: var(--navy);
  color: white;
}

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

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid,
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  color: white;
}

.site-footer p {
  margin-top: 16px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .brand-logo {
    width: 156px;
  }

  .split,
  .report-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .report-chip {
    max-width: min(310px, 44%);
    font-size: 0.68rem;
  }

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

  .market-offerings {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .market-offerings article:nth-child(2) {
    border-right: 0;
  }

  .market-offerings article:nth-child(3) {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .testimonial-slide {
    width: min(820px, calc(100% - 112px));
  }

  #method .section-heading h2 {
    white-space: normal;
  }

  .process-grid li:not(:last-child)::before,
  .process-grid li:not(:last-child)::after {
    display: none;
  }

  .screen-stage {
    width: min(94vw, 980px);
  }

  .screen-card {
    grid-template-columns: minmax(300px, 40%) minmax(0, 60%);
    gap: 28px;
  }

  .screen-copy {
    padding: 34px;
    padding-left: 78px;
  }

  .metric-panel,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .metric-panel article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-panel article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 112px;
  }

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

  .brand-logo {
    width: 132px;
  }

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

  .screen-stage {
    height: auto;
    margin-top: 48px;
  }

  .screen-stage::before {
    inset: 4% 0 0;
  }

  .screen-card {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    margin-bottom: 18px;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .screen-copy {
    min-height: 0;
    padding: 28px;
  }

  .screen-copy h2 {
    font-size: clamp(2rem, 13vw, 3.45rem);
  }

  .screen-image {
    height: 320px;
    margin: 0 16px 16px;
  }

  .screen-control {
    display: none;
  }

  .console-top {
    font-size: 0.62rem;
  }

  .console-card img {
    height: 360px;
  }

  .console-tags {
    position: static;
    grid-template-columns: 1fr;
  }

  .console-tags li {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .market-offerings {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 32px;
  }

  .testimonial-stage {
    min-height: 560px;
    margin-top: 36px;
    padding-bottom: 64px;
  }

  .testimonial-slide {
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
    gap: 24px;
    padding: 36px 0;
    text-align: center;
  }

  .testimonial-portrait {
    width: 88px;
    height: 88px;
  }

  .testimonial-copy blockquote {
    font-size: 0.86rem;
  }

  .testimonial-author span {
    display: block;
    margin: 6px 0 0;
  }

  .testimonial-links {
    justify-content: center;
  }

  .testimonial-control {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .testimonial-control:hover,
  .testimonial-control:focus-visible {
    transform: scale(1.04);
  }

  .testimonial-control-prev {
    left: calc(50% - 52px);
  }

  .testimonial-control-next {
    right: calc(50% - 52px);
  }

  .market-offerings article,
  .market-offerings article:nth-child(3) {
    grid-column: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(207, 244, 255, 0.28);
  }

  .market-offerings article:last-child {
    border-bottom: 0;
  }

  .report-chip {
    max-width: calc(100% - 32px);
    padding: 7px 10px;
    font-size: 0.62rem;
  }

  .report-chip:nth-child(1),
  .report-chip:nth-child(2),
  .report-chip:nth-child(3),
  .report-chip:nth-child(4) {
    left: 16px;
    right: auto;
  }

  .report-chip:nth-child(1) {
    top: 10px;
  }

  .report-chip:nth-child(2) {
    top: 48px;
  }

  .report-chip:nth-child(3) {
    top: 86px;
    bottom: auto;
  }

  .report-chip:nth-child(4) {
    top: auto;
    bottom: 12px;
  }

  .pill-row {
    flex-wrap: wrap;
  }

  .footer-grid,
  .footer-bottom,
  .site-footer nav {
    flex-direction: column;
  }
}

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

  .screen-card,
  .ticker {
    animation: none;
  }

  .screen-card {
    transition: none;
  }

  .process-detail,
  .process-chevron,
  .capability-detail,
  .capability-chevron,
  .testimonial-slide,
  .testimonial-control,
  .report-chip,
  .services .card-grid article,
  .process-grid li {
    transition: none;
  }

  .process-chevron {
    opacity: 0.64;
  }

  .screen-stage {
    display: grid;
    height: auto;
    gap: 18px;
  }

  .screen-card {
    position: relative;
    opacity: 1;
    transform: none;
  }
}
