:root {
  --deep-navy: #0d1b2a;
  --navy-900: #050b14;
  --navy-800: #081422;
  --royal-purple: #4a148c;
  --electric-purple: #7b2cff;
  --vibrant-pink: #d81b60;
  --off-white: #f8f9fc;
  --white: #ffffff;
  --light-gray: #e8ebf1;
  --dark-text: #111827;
  --muted-text: #526071;
  --line: rgba(232, 235, 241, 0.18);
  --gradient: linear-gradient(90deg, #4a148c 0%, #d81b60 100%);
  --font: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(100% - 48px, 1320px);
  --radius: 8px;
  --shadow: 0 18px 40px rgba(13, 27, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark-text);
  background: var(--off-white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-dark {
  color: var(--white);
  background: radial-gradient(circle at 82% 24%, rgba(74, 20, 140, 0.28), transparent 28%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--deep-navy) 64%, #06101c 100%);
}

.section-light {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #9d57ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: 36px;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  max-width: 20ch;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--gradient);
  box-shadow: 0 14px 34px rgba(216, 27, 96, 0.24);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
}

.button::after,
.text-link::after,
.service-card a::after,
.article-card a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: currentColor;
  clip-path: polygon(58% 18%, 100% 50%, 58% 82%, 58% 58%, 0 58%, 0 42%, 58% 42%);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 0 28px rgba(216, 27, 96, 0.42), 0 16px 42px rgba(74, 20, 140, 0.34);
  filter: saturate(1.12) brightness(1.06);
  transform: translateY(-1px);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(216, 27, 96, 0.82);
  box-shadow: 0 0 0 1px rgba(123, 44, 255, 0.25), 0 0 24px rgba(123, 44, 255, 0.28);
}

.button-light:hover,
.button-light:focus-visible {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.82), 0 0 32px rgba(255, 255, 255, 0.58), 0 18px 44px rgba(5, 11, 20, 0.22);
}

.button-light {
  color: var(--dark-text);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(5, 11, 20, 0.18);
}

.button-small {
  min-height: 48px;
  padding-inline: 18px;
  font-size: 12px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 24px;
  color: var(--white);
  background: rgba(5, 11, 20, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 210px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.brand,
.brand a {
  display: inline-flex;
  align-items: center;
}

.desktop-nav,
.header-cta {
  display: none;
}

.nav-button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 19;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 104px 24px 28px;
  color: var(--white);
  background: var(--deep-navy);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  display: grid;
  gap: 14px;
}

.mobile-menu-inner > a,
.mobile-submenu > summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 30px;
  font-weight: 800;
}

.mobile-submenu {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-submenu > summary {
  justify-content: space-between;
  border-bottom: 0;
  cursor: pointer;
  list-style: none;
}

.mobile-submenu > summary::-webkit-details-marker {
  display: none;
}

.mobile-submenu > summary::after {
  content: "+";
  color: #d81b60;
  font-size: 28px;
}

.mobile-submenu[open] > summary::after {
  content: "-";
}

.mobile-submenu a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 700;
}

.mobile-menu-cta {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 34px 0 28px;
  background: var(--navy-900);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--hero-bg);
  background-repeat: no-repeat;
  background-position: 58% center;
  background-size: cover;
  opacity: 0.9;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 84% 22%, rgba(74, 20, 140, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(5, 11, 20, 0.98) 0%, rgba(8, 20, 34, 0.95) 34%, rgba(8, 20, 34, 0.54) 62%, rgba(5, 11, 20, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.2) 0%, rgba(5, 11, 20, 0.72) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.hero-subline {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.hero-stat {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
}

.hero-stat strong {
  color: #9b4cff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.hero-stat span {
  max-width: 18ch;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.trusted-row {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.trusted-row p {
  margin: 0;
  color: #a86cff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trusted-row ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trusted-row li {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trusted-row img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.problems,
.services,
.impact,
.insights {
  padding: 46px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.problem-card {
  display: grid;
  min-height: 178px;
  align-content: start;
  justify-items: center;
  gap: 12px;
  padding: 22px 12px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.problem-card-wide {
  grid-column: 1 / -1;
}

.problem-card p {
  max-width: 22ch;
  margin: 0;
  color: var(--muted-text);
}

.problem-card::after {
  width: 28px;
  height: 3px;
  content: "";
  background: var(--gradient);
}

.vector-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(123, 44, 255, 0.22));
}

.line-icon {
  position: relative;
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #862cff;
  font-weight: 800;
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
  border: 3px solid currentColor;
}

.icon-people::before {
  inset: 18px 9px 6px;
  border-radius: 16px 16px 5px 5px;
}

.icon-people::after {
  top: 3px;
  left: 17px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: -18px 16px 0 -4px var(--off-white), -18px 16px 0 -1px currentColor, 18px 16px 0 -4px var(--off-white), 18px 16px 0 -1px currentColor;
}

.icon-bars::before {
  bottom: 6px;
  left: 9px;
  width: 8px;
  height: 22px;
  border-radius: 1px;
  box-shadow: 15px -12px 0 -3px var(--off-white), 15px -12px 0 0 currentColor, 30px -24px 0 -3px var(--off-white), 30px -24px 0 0 currentColor;
}

.icon-bars::after {
  display: none;
}

.icon-ai::before {
  inset: 8px;
  border-radius: 5px;
}

.icon-ai::after {
  inset: 0;
  border-width: 0;
  background:
    linear-gradient(currentColor, currentColor) 5px 14px / 8px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 5px 26px / 8px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 39px 14px / 8px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 39px 26px / 8px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 14px 5px / 2px 8px no-repeat,
    linear-gradient(currentColor, currentColor) 26px 5px / 2px 8px no-repeat,
    linear-gradient(currentColor, currentColor) 14px 39px / 2px 8px no-repeat,
    linear-gradient(currentColor, currentColor) 26px 39px / 2px 8px no-repeat;
}

.icon-megaphone::before {
  top: 15px;
  left: 5px;
  width: 32px;
  height: 18px;
  border-radius: 5px 18px 18px 5px;
  transform: skewY(-14deg);
}

.icon-megaphone::after {
  right: 4px;
  top: 13px;
  width: 8px;
  height: 24px;
  border-left: 0;
  border-radius: 0 14px 14px 0;
  color: var(--vibrant-pink);
}

.service-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.service-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.service-card p,
.service-card li {
  color: rgba(255, 255, 255, 0.78);
}

.service-card p,
.service-card ul {
  margin: 0;
}

.service-card ul {
  padding-left: 18px;
}

.service-card a,
.article-card a,
.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  color: #b35cff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card a {
  width: max-content;
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: filter 180ms ease, transform 180ms ease;
}

.service-card a::after {
  background: var(--gradient);
}

.service-card a:hover,
.service-card a:focus-visible {
  filter: drop-shadow(0 0 12px rgba(216, 27, 96, 0.45));
  transform: translateX(2px);
}

.icon-network::before {
  inset: 8px;
  border: 0;
  background:
    radial-gradient(circle, currentColor 0 4px, transparent 5px) 0 0 / 26px 26px,
    linear-gradient(45deg, transparent 45%, currentColor 47% 53%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, currentColor 47% 53%, transparent 55%);
}

.icon-target::before {
  inset: 8px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px var(--navy-900), inset 0 0 0 11px currentColor;
}

.icon-target::after {
  right: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  color: var(--vibrant-pink);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.impact-item {
  display: grid;
  gap: 8px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--light-gray);
}

.impact-item strong {
  color: #6f27e8;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.impact-item p {
  max-width: 26ch;
  margin: 0;
  color: var(--muted-text);
  font-size: 14px;
}

.impact-icon {
  display: block;
  width: 48px;
  height: 48px;
  color: #7b2cff;
  background:
    linear-gradient(currentColor, currentColor) 6px 40px / 38px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 6px 8px / 3px 35px no-repeat;
}

.rocket {
  clip-path: polygon(50% 0, 70% 20%, 92% 16%, 76% 38%, 100% 62%, 65% 60%, 50% 100%, 35% 60%, 0 62%, 24% 38%, 8% 16%, 30% 20%);
  background: var(--gradient);
}

.globe {
  border: 3px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) center / 3px 100% no-repeat,
    linear-gradient(currentColor, currentColor) center / 100% 3px no-repeat;
}

.gauge {
  border: 3px solid currentColor;
  border-bottom-color: transparent;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(135deg, transparent 42%, var(--vibrant-pink) 44% 50%, transparent 52%);
}

img.impact-icon {
  width: 64px;
  height: 64px;
  background: none;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(216, 27, 96, 0.2));
}

.section-head {
  display: grid;
  gap: 12px;
}

.article-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.article-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 280px;
  padding: 20px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.08);
}

.article-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.38) 100%);
}

.article-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  min-height: 240px;
  align-content: start;
}

.article-card p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted-text);
  font-size: 14px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #7b2cff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-visual {
  display: none;
}

.visual-check {
  background:
    radial-gradient(circle at 70% 40%, transparent 0 26px, #7b2cff 27px 31px, transparent 32px),
    linear-gradient(135deg, transparent 44%, #d81b60 45% 50%, transparent 51%),
    repeating-linear-gradient(170deg, rgba(123, 44, 255, 0.18) 0 5px, transparent 5px 12px);
}

.visual-people {
  background:
    radial-gradient(circle at 20% 38%, #7b2cff 0 13px, transparent 14px),
    radial-gradient(circle at 48% 30%, #7b2cff 0 18px, transparent 19px),
    radial-gradient(circle at 78% 42%, #7b2cff 0 15px, transparent 16px),
    linear-gradient(90deg, rgba(123, 44, 255, 0.08), rgba(216, 27, 96, 0.22));
}

.visual-chart {
  background:
    linear-gradient(180deg, transparent 36%, rgba(123, 44, 255, 0.12) 36%),
    repeating-linear-gradient(90deg, transparent 0 15px, #7b2cff 16px 22px),
    linear-gradient(135deg, transparent 42%, #d81b60 44% 48%, transparent 50%);
}

.cta-section {
  display: grid;
  color: var(--white);
  background: var(--gradient);
}

.cta-media {
  display: block;
  min-height: 240px;
  background: var(--navy-900);
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.cta-content {
  display: grid;
  gap: 24px;
  width: var(--container);
  margin-inline: auto;
  padding: 42px 0;
}

.cta-content h2 {
  color: var(--white);
}

.cta-content p {
  max-width: 42ch;
  margin: 14px 0 0;
}

.cta-content ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cta-content li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 16px;
  font-weight: 700;
}

.cta-content li img {
  width: 36px;
  height: 36px;
  opacity: 0.86;
}

.site-footer {
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-900);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  width: 250px;
  max-height: 98px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 12px;
}

.site-footer h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 12px;
  line-height: 1.2;
}

.site-footer nav {
  display: grid;
  gap: 7px;
}

.footer-menu {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a {
  min-height: 28px;
}

.site-footer small {
  display: block;
  margin-top: 16px;
}

.linkedin {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
}

@media (min-width: 480px) {
  :root {
    --container: min(100% - 64px, 1320px);
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .trusted-row ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero::before {
    background-position: 62% center;
  }

  .problem-grid,
  .impact-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .article-grid .article-card:first-child {
    grid-column: 1 / -1;
  }

  .section-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .cta-content {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
  }

  .cta-content .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  :root {
    --container: min(100% - 80px, 1320px);
  }

  body {
    font-size: 20px;
  }

  .site-header {
    padding-inline: 56px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .nav-item {
    position: relative;
    display: flex;
    align-items: center;
  }

  .desktop-nav .nav-link {
    position: relative;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  .nav-button::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0.7;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .desktop-nav .is-active::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 3px;
    content: "";
    background: var(--gradient);
  }

  .submenu {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    width: max-content;
    min-width: 230px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(5, 11, 20, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34), 0 0 28px rgba(74, 20, 140, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .submenu a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.82);
    text-transform: none;
  }

  .submenu a:hover,
  .submenu a:focus-visible {
    color: var(--white);
    background: linear-gradient(90deg, rgba(74, 20, 140, 0.42), rgba(216, 27, 96, 0.24));
  }

  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu,
  .has-submenu.is-open .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .has-submenu:hover .nav-button::after,
  .has-submenu:focus-within .nav-button::after,
  .has-submenu.is-open .nav-button::after {
    opacity: 1;
    transform: translateY(2px) rotate(225deg);
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero {
    min-height: 710px;
    padding: 70px 0 32px;
  }

  .hero::before {
    background-position: center center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    grid-template-areas:
      "copy stat"
      "trusted trusted";
    align-items: start;
  }

  .hero-copy {
    grid-area: copy;
    align-self: start;
    padding-top: 42px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: 72px;
  }

  .hero-stat {
    grid-area: stat;
    position: relative;
    top: 220px;
    right: auto;
    justify-self: end;
    width: 210px;
  }

  .trusted-row {
    grid-area: trusted;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
  }

  .trusted-row ul {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .problems,
  .services,
  .impact,
  .insights {
    padding: 64px 0;
  }

  .problem-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .problem-card-wide {
    grid-column: auto;
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

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

  .impact-item {
    border-right: 1px solid var(--light-gray);
    border-bottom: 0;
    padding-right: 28px;
  }

  .impact-item:last-child {
    border-right: 0;
  }

  .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-grid .article-card:first-child {
    grid-column: auto;
  }

  .cta-section {
    grid-template-columns: minmax(300px, 0.38fr) 1fr;
    min-height: 270px;
  }

  .cta-media {
    min-height: 270px;
    background: var(--navy-900);
  }

  .cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cta-content {
    position: relative;
    width: auto;
    max-width: none;
    margin-inline: 0;
    grid-template-columns: minmax(280px, 0.92fr) minmax(260px, 0.82fr) minmax(220px, auto);
    align-items: center;
    gap: 54px;
    padding: 52px 72px;
  }

  .cta-content::before {
    position: absolute;
    top: 44px;
    bottom: 44px;
    left: calc(72px + 34%);
    width: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.22);
  }

  .cta-content .button {
    grid-column: auto;
    justify-self: end;
    min-width: 220px;
  }
}

@media (min-width: 1280px) {
  h1 {
    font-size: 80px;
  }

  h2 {
    font-size: 56px;
  }

  .brand img {
    width: 286px;
  }

  .hero h1 {
    font-size: 80px;
  }
}

@media (min-width: 1440px) {
  .site-header {
    padding-inline: 64px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.78fr);
  }

  .cta-section {
    grid-template-columns: minmax(360px, 0.28fr) 1fr;
  }
}

/* WordPress theme surfaces */
.custom-logo-link {
  display: inline-flex;
}

.custom-logo {
  width: 210px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.archive-hero,
.page-standard,
.single-body-section,
.related-posts {
  padding: 70px 0;
}

.archive-intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.archive-intro h1,
.page-standard h1,
.single-hero h1 {
  max-width: 16ch;
  color: var(--dark-text);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.04;
  text-transform: none;
}

.archive-intro p,
.page-lead {
  max-width: 62ch;
  color: var(--muted-text);
}

.insight-list {
  display: grid;
  gap: 28px;
}

.insight-row {
  display: grid;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--light-gray);
}

.insight-row-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-900);
}

.insight-row-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.insight-row-content {
  display: grid;
  align-content: center;
  gap: 10px;
}

.insight-row-content h2 {
  max-width: 16ch;
  color: var(--dark-text);
  font-size: clamp(28px, 4vw, 42px);
  text-transform: none;
}

.content-narrow {
  max-width: 860px;
}

.wpcf7.js {

}
.entry-content {
    color: var(--dark-text);
}

.entry-content > * {
  max-width: 70ch;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.8em;
  margin-bottom: 0.55em;
  text-transform: none;
}

.entry-content p,
.entry-content li {
  color: #243044;
}

.entry-content a {
  color: var(--royal-purple);
  font-weight: 800;
}

.single-hero {
  padding: 42px 0 56px;
  border-bottom: 1px solid var(--light-gray);
}

.breadcrumbs {
  margin-bottom: 28px;
  color: #6f27e8;
  font-size: 13px;
  font-weight: 700;
}

.single-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.single-hero header {
  display: grid;
  gap: 18px;
}

.single-hero header > p:not(.eyebrow) {
  max-width: 62ch;
  margin: 0;
  color: var(--muted-text);
}

.single-hero-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-900);
}

.single-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-row img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.author-row span {
  display: block;
  color: var(--muted-text);
  font-size: 14px;
}

.single-layout {
}

.single-content {
  min-width: 0;
}

.stat-callout {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  padding: 24px;
  border-left: 4px solid #8b2cff;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(123, 44, 255, 0.12), rgba(216, 27, 96, 0.05));
}

.stat-callout strong {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(58px, 10vw, 92px);
  font-weight: 800;
  line-height: 0.9;
}

.stat-callout p {
  margin: 0;
}

.single-sidebar {
  display: grid;
  gap: 28px;
  align-content: start;
}

.sidebar-card,
.observation-box {
  padding: 24px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.sidebar-card h2,
.observation-box h2 {
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: uppercase;
}

.toc-card {
  display: grid;
  gap: 12px;
}

.toc-card a {
  color: #273142;
  font-size: 14px;
}

.summary-card p {
  position: relative;
  padding-left: 28px;
  color: #273142;
  font-size: 14px;
}

.summary-card p::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #7b2cff;
  font-weight: 800;
}

.single-cta-band {
  padding: 36px 0;
  color: var(--white);
  background: var(--gradient);
}

.single-cta-inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.single-cta-inner h2 {
  color: var(--white);
  text-transform: none;
}

.competence-hero,
.competence-fields,
.contact-fit,
.contact-form-section {
  padding: 62px 0;
}

.competence-hero-grid,
.system-flow-grid,
.content-split,
.contact-hero-grid,
.contact-form-box {
  display: grid;
  gap: 34px;
  align-items: center;
}

.competence-hero h1,
.contact-hero h1 {
  max-width: 16ch;
  color: var(--dark-text);
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.08;
  text-transform: none;
}

.competence-hero h1 span {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.architecture-map {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 27, 42, 0.04) 0 25%, transparent 26%), repeating-radial-gradient(circle, rgba(123, 44, 255, 0.18) 0 1px, transparent 1px 36px);
}

.architecture-center,
.flow-items strong {
  display: grid;
  width: 140px;
  height: 140px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-900);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.architecture-map span {
  max-width: 18ch;
  color: var(--dark-text);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.competence-card-grid,
.contact-card-grid,
.contact-methods {
  display: grid;
  gap: 18px;
}

.competence-card,
.contact-card-grid article,
.contact-methods div,
.timeline-box,
.numbers-grid > div {
  padding: 24px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.competence-card {
  position: relative;
}

.competence-card h2 {
  font-size: 22px;
  text-transform: none;
}

.competence-card span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #b35cff;
  font-weight: 800;
}

.system-flow {
  padding: 58px 0;
}

.flow-items {
  display: grid;
  gap: 16px;
}

.flow-items span,
.flow-items strong {
  min-height: 92px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  text-align:center;
}

.flow-items strong {
  width: auto;
  height: auto;
  background: transparent;
}

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

.numbers-grid strong {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(38px, 6vw, 56px);
  font-weight: 800;
}

.contact-hero {
  padding: 60px 0;
}

.contact-hero h1,
.contact-hero p {
  color: var(--white);
}

.contact-hero img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact-fit h2,
.contact-form-section h2 {
  margin-inline: auto;
  text-align: center;
  text-transform: none;
}

.contact-form-box {
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--gradient);
}

.contact-form-box h2,
.contact-form-box p {
  color: var(--white);
  text-align: left;
}

.wpcf7-form {
  display: grid;
  gap: 14px;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
	.wpcf7 select {
	  color: black;
	}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: white !important;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.wpcf7-submit {
  color: var(--dark-text) !important;
  background: var(--white) !important;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-methods {
  margin-top: 28px;
}

.contact-methods div {
  display: none;
  grid-template-columns: 48px 1fr;
  align-items: center;
}

.contact-methods img {
  grid-row: span 2;
  width: 42px;
}

.contact-methods span {
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .insight-row,
  .single-hero-grid,
  .competence-hero-grid,
  .system-flow-grid,
  .content-split,
  .contact-hero-grid,
  .contact-form-box {
    grid-template-columns: 1fr 1fr;
  }

  .competence-card-grid,
  .contact-card-grid,
  .contact-methods {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .single-cta-inner {
    grid-template-columns: 1fr auto;
  }

  .flow-items {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .custom-logo {
    width: 286px;
  }

  .single-layout {
  }

  .single-sidebar {
    position: sticky;
    top: 96px;
  }
}
.site-footer {
	font-size:70%;
}