:root {
  --e-global-color-7f637da8: #4054b2;
  --e-global-color-20c3084b: #23a455;
  --e-global-color-376698aa: #000;
  --e-global-color-accent: #61ce70;
  --e-global-color-primary: #6ec1e4;
  --e-global-color-secondary: #54595f;
  --e-global-color-text: #7a7a7a;
  --paper: #f7f8f6;
  --paper-deep: #e8ecea;
  --ink: #101214;
  --muted: #5f666b;
  --line: rgba(16, 18, 20, 0.14);
  --white: #fff;
  --container: 1440px;
  --gutter: 32px;
  --header-h: 82px;
  --ticker-h: 64px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

img,
canvas {
  display: block;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--e-global-color-primary), var(--e-global-color-accent));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-h);
  padding: 0 var(--gutter);
  color: var(--ink);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    transform 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 248, 246, 0.86);
  border-bottom: 1px solid rgba(16, 18, 20, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 800;
  color: var(--e-global-color-20c3084b);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: rgba(16, 18, 20, 0.76);
}

.site-nav a::after {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  background: currentColor;
  transition: transform 240ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-nav .nav-cta {
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid rgba(16, 18, 20, 0.22);
  border-radius: 4px;
}

.site-nav .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 18, 20, 0.12);
  border-radius: 4px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: calc(100svh - var(--ticker-h));
  min-height: 0;
  padding: calc(var(--header-h) + clamp(32px, 5svh, 56px)) var(--gutter) 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.44;
  mix-blend-mode: screen;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(247, 248, 246, 0.96) 0%, rgba(247, 248, 246, 0.84) 36%, rgba(247, 248, 246, 0.2) 72%),
    linear-gradient(0deg, rgba(247, 248, 246, 0.94) 0%, rgba(247, 248, 246, 0) 35%),
    linear-gradient(180deg, rgba(247, 248, 246, 0.92) 0%, rgba(247, 248, 246, 0) 24%);
}

.hero-content {
  width: min(930px, 100%);
  align-self: center;
  padding-bottom: clamp(36px, 7svh, 74px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--e-global-color-20c3084b);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 930px;
  margin-bottom: 26px;
  font-size: clamp(62px, 6.1vw, 88px);
  line-height: 1.08;
  font-weight: 800;
}

h2 {
  margin-bottom: 0;
  font-size: 58px;
  line-height: 1.02;
  font-weight: 800;
}

h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: clamp(20px, 3svh, 34px);
  color: #30363a;
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions,
.button {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  justify-content: center;
  min-height: 52px;
  gap: 10px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 4px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(16, 18, 20, 0.2);
  backdrop-filter: blur(12px);
}

.hero-index {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  width: min(var(--container), 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(16, 18, 20, 0.16);
  background: rgba(247, 248, 246, 0.72);
  backdrop-filter: blur(16px);
}

.hero-index div {
  min-height: clamp(88px, 11svh, 106px);
  padding: 20px 28px;
  border-right: 1px solid rgba(16, 18, 20, 0.14);
}

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

.hero-index strong {
  display: block;
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 1;
}

.hero-index span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.intro-band {
  position: relative;
  overflow: hidden;
  height: var(--ticker-h);
  padding: 0;
  color: var(--white);
  background: var(--ink);
  contain: paint;
}

.marquee {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.marquee-track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  width: max-content;
  gap: 36px;
  white-space: nowrap;
  transform: translateY(-50%);
  will-change: transform;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
}

.marquee-track span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 36px;
  content: "";
  background: var(--e-global-color-accent);
}

.section {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 136px var(--gutter);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.36fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 78px;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
  gap: 72px;
  align-items: start;
}

.manifesto-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.manifesto-copy p {
  margin-bottom: 26px;
}

.services {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.services .section-heading {
  width: min(var(--container), 100%);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

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

.service-row {
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 220ms ease;
}

.service-row:hover,
.service-row.is-active {
  background: rgba(255, 255, 255, 0.48);
}

.service-row button {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 48px;
  align-items: center;
  width: min(var(--container), 100%);
  min-height: 112px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  cursor: pointer;
  text-align: left;
  background: transparent;
}

.service-number {
  color: var(--e-global-color-7f637da8);
  font-size: 13px;
  font-weight: 800;
}

.service-title {
  overflow-wrap: anywhere;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 800;
}

.service-row svg {
  justify-self: end;
  transition: transform 220ms ease;
}

.service-row.is-active svg {
  transform: rotate(45deg);
}

.service-panel {
  display: grid;
  grid-template-rows: 0fr;
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  transition:
    grid-template-rows 260ms ease,
    padding-bottom 260ms ease;
}

.service-panel p {
  min-height: 0;
  width: min(680px, 100%);
  margin: 0 0 0 96px;
  overflow: hidden;
}

.service-row.is-active .service-panel {
  grid-template-rows: 1fr;
  padding-bottom: 34px;
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 80px;
}

.process-sticky {
  position: sticky;
  top: 116px;
  align-self: start;
}

.process-track {
  display: grid;
  gap: 24px;
}

.process-step {
  min-height: 230px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(110, 193, 228, 0.18), rgba(97, 206, 112, 0.08)),
    #111416;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.process-step span {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--e-global-color-primary);
  font-weight: 800;
}

.process-step p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.68;
}

.sectors {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sectors .section-heading {
  width: min(var(--container), 100%);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}

.sector-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 22px;
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 220ms ease,
    background 220ms ease;
}

.sector-grid span:hover {
  color: var(--white);
  background: var(--e-global-color-7f637da8);
}

.insight {
  display: grid;
  grid-template-columns: minmax(200px, 0.34fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.insight-number {
  position: sticky;
  top: 120px;
  color: var(--e-global-color-primary);
  font-size: 136px;
  line-height: 0.86;
  font-weight: 800;
}

.reason-list {
  display: grid;
  gap: 0;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.reason-list li {
  padding: 26px 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}

.knowledge {
  color: var(--white);
  background: var(--ink);
  max-width: none;
  width: 100%;
}

.knowledge .section-heading,
.knowledge .article-strip {
  width: min(var(--container), 100%);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.knowledge .section-lead,
.knowledge .section-kicker {
  color: var(--e-global-color-accent);
}

.article-strip {
  display: grid;
}

.article-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 28px;
  font-weight: 800;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.article-link:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.article-link::after {
  content: "↗";
  color: var(--e-global-color-primary);
  font-size: 24px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 82px;
}

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

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

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 86px;
  gap: 22px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  background: transparent;
}

.faq-item button span {
  font-size: 22px;
  font-weight: 800;
}

.faq-item svg {
  flex: 0 0 auto;
  transition: transform 220ms ease;
}

.faq-item p {
  display: none;
  max-width: 740px;
  margin: -6px 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.faq-item.is-open p {
  display: block;
}

.faq-item.is-open svg {
  transform: rotate(180deg);
}

.final-cta {
  display: grid;
  place-items: center;
  min-height: 76svh;
  padding: 128px var(--gutter);
  text-align: center;
  background:
    linear-gradient(120deg, rgba(110, 193, 228, 0.3), rgba(97, 206, 112, 0.18)),
    var(--paper-deep);
}

.final-cta h2 {
  width: min(970px, 100%);
  margin-bottom: 34px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 124px;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.split-word {
  display: inline-block;
  overflow: hidden;
  padding-top: 0.04em;
  padding-bottom: 0.08em;
  margin-top: -0.04em;
  margin-bottom: -0.08em;
  vertical-align: top;
}

.split-word > span {
  display: inline-block;
}

.has-js .reveal {
  transform: translateY(18px);
  opacity: 0;
}

@keyframes marquee {
  from {
    transform: translate3d(0, -50%, 0);
  }
  to {
    transform: translate3d(-50%, -50%, 0);
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 44px;
  }

  .section-heading,
  .manifesto-grid,
  .process,
  .insight,
  .faq {
    grid-template-columns: 1fr;
  }

  .process-sticky,
  .insight-number {
    position: static;
  }

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

@media (max-width: 820px) {
  :root {
    --gutter: 20px;
    --header-h: 70px;
    --ticker-h: 56px;
  }

  .site-header {
    min-height: var(--header-h);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px var(--gutter) 24px;
    background: rgba(247, 248, 246, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 260ms ease;
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 58px;
    border-bottom: 1px solid rgba(16, 18, 20, 0.08);
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 16px;
    border-bottom: 1px solid rgba(16, 18, 20, 0.22);
  }

  .hero {
    height: calc(100svh - var(--ticker-h));
    padding-top: calc(var(--header-h) + clamp(18px, 4svh, 34px));
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(247, 248, 246, 0.97) 0%, rgba(247, 248, 246, 0.82) 68%, rgba(247, 248, 246, 0.48) 100%),
      linear-gradient(0deg, rgba(247, 248, 246, 0.97) 0%, rgba(247, 248, 246, 0) 42%);
  }

  .hero-content {
    padding-bottom: clamp(18px, 4svh, 34px);
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(38px, 10.7vw, 48px);
    line-height: 1.1;
  }

  h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-copy,
  .section-lead,
  .manifesto-copy {
    font-size: 17px;
  }

  .hero-copy {
    line-height: 1.55;
  }

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

  .hero-index div {
    min-height: 82px;
    padding: 15px 12px;
    border-right: 1px solid rgba(16, 18, 20, 0.12);
    border-bottom: 0;
  }

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

  .hero-index strong {
    font-size: 26px;
  }

  .hero-index span {
    font-size: 12px;
  }

  .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-heading {
    gap: 28px;
    margin-bottom: 50px;
  }

  .service-row button {
    grid-template-columns: 54px minmax(0, 1fr) 36px;
    min-height: 96px;
  }

  .service-title {
    font-size: 28px;
  }

  .service-panel p {
    width: auto;
    margin-left: 54px;
    font-size: 16px;
  }

  .process-step {
    min-height: auto;
    padding: 26px;
  }

  .sector-grid span {
    min-height: 104px;
    font-size: 22px;
  }

  .insight-number {
    font-size: 86px;
  }

  .article-link {
    min-height: 74px;
    font-size: 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 27px;
  }

  h1 {
    font-size: clamp(34px, 10.5vw, 42px);
  }

  h2 {
    font-size: 31px;
  }

  .button {
    width: 100%;
  }

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

  .faq-item button span {
    font-size: 19px;
  }
}

@media (max-height: 760px) {
  :root {
    --ticker-h: 48px;
  }

  .hero {
    padding-top: calc(var(--header-h) + 12px);
  }

  .hero-content {
    padding-bottom: 14px;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 8.2vh, 68px);
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 560px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.45;
  }

  .button {
    min-height: 44px;
  }

  .hero-index div {
    min-height: 66px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-index strong {
    margin-bottom: 4px;
    font-size: 24px;
  }

  .hero-index span {
    font-size: 11px;
  }
}

@media (max-width: 520px) and (max-height: 760px) {
  .brand {
    font-size: 23px;
  }

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

  :root {
    --header-h: 62px;
  }

  h1 {
    font-size: clamp(31px, 9.1vw, 36px);
  }

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

  .hero-actions {
    gap: 10px;
  }
}

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

  .has-js .reveal {
    transform: none;
    opacity: 1;
  }
}
