:root {
  --bg: #ffffff;
  --ink: #17171a;
  --muted: #5f626b;
  --line: #e8e8ee;
  --soft: #f6f6f8;
  --soft-2: #f0f1f4;
  --accent: #7f2cff;
  --accent-dark: #4d148c;
  --charcoal: #242329;
  --max: 1440px;
  --shadow: 0 24px 80px rgba(23, 23, 26, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  animation: pageFade 420ms ease both;
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 0;
  height: 3px;
  background: var(--accent);
  transform-origin: left;
}

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

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.icon-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(127, 44, 255, 0.22);
  background: rgba(127, 44, 255, 0.055);
  color: var(--accent-dark);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.service-card:hover .icon-badge,
.approach-card:hover .icon-badge,
.deliverable-card:hover .icon-badge,
.engagement-card:hover .icon-badge,
.why-item:hover .icon-badge,
.insight-card:hover .icon-badge,
.industry-card:hover .icon-badge {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.service-card.tall .icon-badge,
.engagement-card.featured .icon-badge {
  border-color: rgba(199, 157, 255, 0.32);
  background: rgba(127, 44, 255, 0.16);
  color: #c79dff;
}

.service-card.tall:hover .icon-badge,
.engagement-card.featured:hover .icon-badge {
  border-color: #c79dff;
  background: #c79dff;
  color: var(--charcoal);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    padding 220ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(23, 23, 26, 0.06);
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 182px;
  height: auto;
}

.brand-mark {
  width: 18px;
  height: 28px;
  background: var(--accent);
  clip-path: polygon(46% 0, 100% 0, 56% 100%, 0 100%);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #33333a;
  font-size: 0.9rem;
  font-weight: 650;
}

.nav a {
  position: relative;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-block;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transition: width 200ms ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a.is-active {
  color: var(--accent-dark);
}

.nav a.is-active::after {
  width: 100%;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(760px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(23, 23, 26, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-intro {
  padding: 30px;
  background: var(--charcoal);
  color: #fff;
}

.mega-intro span {
  display: block;
  margin-bottom: 18px;
  color: #c79dff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mega-intro p {
  margin-bottom: 0;
  color: #d8d6df;
  font-size: 0.95rem;
}

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

.mega-links a {
  min-height: 120px;
  padding: 24px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mega-links a::after {
  display: none;
}

.mega-links strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.mega-links span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.mega-links a:hover {
  background: var(--soft);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink);
}

.nav-cta.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.section-pad {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 5vw, 86px);
  padding-top: 132px;
  padding-bottom: 92px;
}

.hero > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.75rem, 6.4vw, 7.8rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.08rem, 1.4vw, 1.34rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-subtitle,
.split-copy p,
.beyond-copy p,
.why-panel p,
.cta-inner p {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.28rem);
}

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

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}

.hero-note span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: #34343b;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  font-weight: 800;
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

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

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

.button.primary:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.button.secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hero-visual {
  position: relative;
  overflow: visible;
  min-height: 660px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.stats-band {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: #fff;
}

.hero-stat-card {
  position: absolute;
  left: clamp(-54px, -4vw, -32px);
  right: clamp(26px, 5vw, 72px);
  bottom: -54px;
  box-shadow: 0 26px 70px rgba(23, 23, 26, 0.16);
}

.stat {
  min-height: 146px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat-value {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2.25rem, 3.7vw, 4.1rem);
  font-weight: 850;
  line-height: 0.92;
}

.stat-value::after {
  content: "+";
  color: var(--accent);
}

.stat-label {
  color: var(--muted);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.86fr);
  gap: clamp(48px, 8vw, 120px);
  border-bottom: 1px solid var(--line);
  padding-top: 154px;
}

.priorities-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.55fr) minmax(0, 0.85fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.visual-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.52fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: end;
  padding-top: 78px;
}

.story-image-large {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-image-large img,
.growth-image-wrap img,
.industry-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-large img {
  min-height: 520px;
}

.story-copy {
  padding: clamp(28px, 4vw, 48px) 0;
}

.story-copy p:not(.eyebrow),
.growth-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.3vw, 1.18rem);
}

.story-proof {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.story-proof span {
  padding: 15px 16px;
  border-left: 3px solid var(--accent);
  background: var(--soft);
  font-weight: 850;
}

.priorities-lead {
  position: sticky;
  top: 112px;
}

.priorities-lead h2 {
  max-width: 620px;
}

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

.priority-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.priority-number {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  color: var(--accent);
  font-weight: 900;
}

.priority-number .line-icon {
  width: 30px;
  height: 30px;
  color: var(--accent-dark);
}

.priority-item h3 {
  max-width: 660px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
}

.priority-item p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 46px;
}

.section-heading h2 {
  max-width: 980px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1fr;
  grid-auto-rows: minmax(245px, auto);
  gap: 16px;
}

.service-card,
.approach-card,
.insight-card,
.why-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card {
  padding: 28px;
}

.service-card h3,
.approach-card h3,
.why-item h3,
.engagement-card h3 {
  max-width: 360px;
}

.service-card::before,
.insight-card::before {
  position: absolute;
  inset: auto 24px 0 24px;
  height: 3px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover,
.approach-card:hover,
.insight-card:hover,
.why-item:hover {
  border-color: rgba(127, 44, 255, 0.45);
  box-shadow: 0 22px 56px rgba(23, 23, 26, 0.08);
  transform: translateY(-5px);
}

.service-card:hover::before,
.insight-card:hover::before {
  transform: scaleX(1);
}

.service-card.tall {
  grid-row: span 2;
  background: var(--charcoal);
  color: #fff;
}

.service-card.wide {
  grid-column: span 2;
  background: var(--soft);
}

.card-index,
.approach-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 850;
}

.service-card p,
.approach-card p,
.why-item p,
.insight-card p {
  color: var(--muted);
}

.service-card.tall p {
  color: #d8d6df;
}

.mini-dashboard {
  position: relative;
  min-height: 92px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(23, 23, 26, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 23, 26, 0.05) 1px, transparent 1px),
    #fff;
  background-size: 22px 22px;
  overflow: hidden;
}

.service-card.tall .mini-dashboard {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 22px 22px;
}

.brand-system span,
.campaign-bars span,
.growth-curve span {
  position: absolute;
  bottom: 18px;
  width: 12%;
  background: var(--accent);
}

.brand-system span:nth-child(1) {
  left: 18px;
  height: 34px;
}

.brand-system span:nth-child(2) {
  left: 38%;
  height: 54px;
  background: #c79dff;
}

.brand-system span:nth-child(3) {
  right: 20px;
  height: 44px;
}

.insight-map span {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid var(--accent);
  background: #fff;
}

.insight-map span:nth-child(1) {
  left: 18%;
  top: 62%;
}

.insight-map span:nth-child(2) {
  left: 42%;
  top: 32%;
}

.insight-map span:nth-child(3) {
  left: 68%;
  top: 48%;
}

.insight-map span:nth-child(4) {
  left: 82%;
  top: 22%;
  background: var(--accent);
}

.campaign-bars span:nth-child(1) {
  left: 18px;
  height: 26px;
}

.campaign-bars span:nth-child(2) {
  left: 64px;
  height: 46px;
}

.campaign-bars span:nth-child(3) {
  left: 110px;
  height: 36px;
  background: #c79dff;
}

.campaign-bars span:nth-child(4) {
  left: 156px;
  height: 66px;
}

.campaign-bars span:nth-child(5) {
  left: 202px;
  height: 54px;
}

.positioning-plane i {
  position: absolute;
  border: 1px solid rgba(127, 44, 255, 0.4);
}

.positioning-plane i:nth-child(1) {
  inset: 18px 24px 18px 24px;
}

.positioning-plane i:nth-child(2) {
  width: 34px;
  height: 34px;
  left: 34%;
  top: 20px;
  background: rgba(127, 44, 255, 0.14);
}

.positioning-plane i:nth-child(3) {
  width: 12px;
  height: 12px;
  right: 28%;
  bottom: 28px;
  background: var(--accent);
}

.growth-curve span:nth-child(1) {
  left: 18px;
  height: 18px;
}

.growth-curve span:nth-child(2) {
  left: 25%;
  height: 34px;
}

.growth-curve span:nth-child(3) {
  left: 48%;
  height: 52px;
  background: #c79dff;
}

.growth-curve span:nth-child(4) {
  right: 20px;
  height: 70px;
}

.service-tabs {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.86fr);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 20px 60px rgba(23, 23, 26, 0.06);
}

.service-tab-controls {
  display: grid;
  border-right: 1px solid var(--line);
}

.service-tab-controls button {
  min-height: 72px;
  padding: 0 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.service-tab-controls button:last-child {
  border-bottom: 0;
}

.service-tab-controls button.active {
  background: var(--charcoal);
  color: #fff;
}

.service-tab-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.56fr);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
}

.service-tab-copy span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-tab-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.tab-dashboard {
  position: relative;
  min-height: 300px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(23, 23, 26, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 23, 26, 0.06) 1px, transparent 1px),
    var(--soft);
  background-size: 28px 28px;
  overflow: hidden;
}

.tab-dashboard .axis {
  position: absolute;
  background: rgba(23, 23, 26, 0.22);
}

.tab-dashboard .horizontal {
  left: 34px;
  right: 34px;
  top: 52%;
  height: 1px;
}

.tab-dashboard .vertical {
  top: 34px;
  bottom: 34px;
  left: 52%;
  width: 1px;
}

.matrix-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--accent);
  box-shadow: 0 0 0 14px rgba(127, 44, 255, 0.12);
  transition:
    left 280ms ease,
    top 280ms ease,
    transform 280ms ease;
}

.matrix-dot.one {
  left: 24%;
  top: 58%;
}

.matrix-dot.two {
  left: 52%;
  top: 30%;
  background: #c79dff;
}

.matrix-dot.three {
  left: 72%;
  top: 66%;
  transform: scale(0.8);
}

.tab-dashboard[data-state="insight"] .matrix-dot.one {
  left: 18%;
  top: 34%;
}

.tab-dashboard[data-state="insight"] .matrix-dot.two {
  left: 48%;
  top: 62%;
}

.tab-dashboard[data-state="insight"] .matrix-dot.three {
  left: 80%;
  top: 28%;
}

.tab-dashboard[data-state="engagement"] .matrix-dot.one {
  left: 30%;
  top: 72%;
}

.tab-dashboard[data-state="engagement"] .matrix-dot.two {
  left: 58%;
  top: 48%;
}

.tab-dashboard[data-state="engagement"] .matrix-dot.three {
  left: 76%;
  top: 20%;
}

.tab-dashboard[data-state="growth"] .matrix-dot.one {
  left: 22%;
  top: 76%;
}

.tab-dashboard[data-state="growth"] .matrix-dot.two {
  left: 50%;
  top: 52%;
}

.tab-dashboard[data-state="growth"] .matrix-dot.three {
  left: 78%;
  top: 24%;
}

.deliverables-section {
  background: var(--soft);
}

.deliverables-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 0.98fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

.deliverables-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.3vw, 1.18rem);
}

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

.deliverable-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.deliverable-card:hover {
  border-color: rgba(127, 44, 255, 0.45);
  box-shadow: 0 22px 52px rgba(23, 23, 26, 0.08);
  transform: translateY(-4px);
}

.deliverable-card span {
  display: block;
  max-width: 320px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.18;
}

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

.beyond-section {
  background: var(--charcoal);
  color: #fff;
}

.beyond-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.72fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.beyond-section .eyebrow {
  color: #c79dff;
}

.beyond-copy p {
  color: #dbdbe1;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.proof-list span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 16px;
  font-weight: 800;
}

.growth-visual-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.5fr) minmax(0, 0.9fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.growth-copy h2 {
  max-width: 620px;
}

.growth-image-wrap {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.growth-image-wrap img {
  min-height: 520px;
}

.image-caption {
  position: absolute;
  left: 28px;
  right: auto;
  bottom: 28px;
  width: min(420px, calc(100% - 56px));
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 232, 238, 0.88);
  backdrop-filter: blur(16px);
}

.image-caption span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-caption p {
  margin-bottom: 0;
  color: var(--muted);
}

.industries-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.44fr);
  gap: 16px;
  align-items: stretch;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.05fr 0.95fr;
  gap: 12px;
}

.industry-page-grid {
  align-items: stretch;
}

.industry-hero {
  width: min(1720px, calc(100% - 40px));
  grid-template-columns: minmax(480px, 0.58fr) minmax(760px, 1fr);
  align-items: center;
}

.industry-hero h1 {
  max-width: 820px;
}

.industry-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.industry-hero-proof span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-hero-visual {
  position: relative;
  min-height: clamp(620px, 42vw, 760px);
}

.industry-hero-visual img {
  min-height: clamp(620px, 42vw, 760px);
}

.industry-hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(23, 23, 26, 0.02), rgba(23, 23, 26, 0.62));
}

.industry-hero-panel {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 28px;
  background: rgba(23, 23, 26, 0.88);
  color: #fff;
  backdrop-filter: blur(16px);
}

.industry-hero-panel > span {
  display: block;
  grid-column: 1 / -1;
  color: #c79dff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.industry-hero-panel p {
  margin: 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}

.industry-hero-metrics {
  min-width: 132px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.industry-hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 3rem;
  line-height: 0.9;
}

.industry-hero-metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.industry-card {
  min-height: 182px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-color: var(--line);
  background: var(--soft);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.industry-card:hover {
  border-color: rgba(127, 44, 255, 0.42);
  background: #fff;
  box-shadow: 0 20px 46px rgba(23, 23, 26, 0.07);
  transform: translateY(-4px);
}

.industry-card .icon-badge {
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
}

.industry-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.industry-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.38;
}

.industry-visual {
  min-height: 258px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.industry-visual img {
  height: 260px;
  opacity: 0.78;
  filter: saturate(0.86) contrast(1.05);
}

.industry-visual figcaption {
  padding: 20px;
  color: #fff;
  font-weight: 750;
  line-height: 1.35;
}

.approach-section {
  border-top: 1px solid var(--line);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr 0.95fr 1.05fr;
  gap: 16px;
}

.approach-card {
  min-height: 280px;
  padding: 28px;
  background: linear-gradient(180deg, #fff, #f8f8fa);
}

.approach-timeline {
  position: relative;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 36px;
}

.timeline-line {
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(127, 44, 255, 0.12));
}

.timeline-step {
  position: relative;
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.timeline-step::before {
  position: absolute;
  top: -27px;
  left: 28px;
  width: 18px;
  height: 18px;
  content: "";
  background: #fff;
  border: 3px solid var(--accent);
}

.timeline-step:hover,
.timeline-step.active {
  border-color: rgba(127, 44, 255, 0.45);
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-4px);
}

.timeline-step span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 900;
}

.timeline-step strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.timeline-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.timeline-step:hover p,
.timeline-step.active p {
  color: #d8d6df;
}

.engagement-section {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(360px, 0.48fr) minmax(0, 0.92fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.engagement-header h2 {
  max-width: 560px;
}

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

.engagement-card {
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.engagement-card .icon-badge {
  margin-bottom: 34px;
}

.engagement-card:hover {
  border-color: rgba(127, 44, 255, 0.45);
  box-shadow: 0 22px 56px rgba(23, 23, 26, 0.08);
  transform: translateY(-5px);
}

.engagement-card.featured {
  background: var(--charcoal);
  color: #fff;
}

.engagement-card span {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.engagement-card.featured span {
  color: #c79dff;
}

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

.engagement-card.featured p {
  color: #d8d6df;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
}

.why-panel {
  min-height: 420px;
  padding: 42px;
  background: var(--soft);
}

.why-grid {
  display: grid;
  gap: 18px;
}

.why-item {
  padding: 30px;
}

.why-item .icon-badge {
  margin-bottom: 24px;
}

.executive-section {
  background: #111116;
  color: #fff;
}

.executive-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.56fr) minmax(0, 0.84fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.executive-copy h2 {
  max-width: 720px;
}

.executive-copy p:not(.eyebrow) {
  max-width: 640px;
  color: #d6d6de;
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
}

.executive-section .eyebrow {
  color: #c79dff;
}

.executive-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.executive-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 17, 22, 0.8), rgba(17, 17, 22, 0.08) 56%),
    linear-gradient(0deg, rgba(17, 17, 22, 0.72), transparent 52%);
}

.executive-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(0.82) contrast(1.08);
}

.framework-panel {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 17, 22, 0.78);
  backdrop-filter: blur(18px);
}

.framework-panel > span {
  display: block;
  margin-bottom: 18px;
  color: #c79dff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.framework-grid p {
  min-height: 74px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
}

.question-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.question-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.question-card:hover {
  border-color: rgba(199, 157, 255, 0.45);
  background: rgba(127, 44, 255, 0.1);
  transform: translateY(-5px);
}

.question-card span {
  display: block;
  margin-bottom: 46px;
  color: #c79dff;
  font-weight: 900;
}

.question-card h3 {
  max-width: 420px;
  color: #fff;
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
}

.scenarios-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.48fr) minmax(0, 0.92fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.scenarios-intro {
  position: sticky;
  top: 112px;
}

.scenarios-intro h2 {
  max-width: 620px;
}

.scenarios-intro p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.scenario-card {
  min-height: 500px;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.scenario-card:hover {
  border-color: rgba(127, 44, 255, 0.45);
  box-shadow: 0 22px 56px rgba(23, 23, 26, 0.08);
  transform: translateY(-5px);
}

.scenario-card.featured {
  background: var(--charcoal);
  color: #fff;
}

.scenario-card span {
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scenario-card.featured span {
  color: #c79dff;
}

.scenario-card h3 {
  margin-bottom: 32px;
  font-size: clamp(1.18rem, 1.8vw, 1.7rem);
}

.scenario-card ul {
  display: grid;
  gap: 14px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.scenario-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.42;
}

.scenario-card li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--accent);
}

.scenario-card.featured li {
  color: #d8d6df;
}

.insights-section {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(340px, 0.42fr) minmax(0, 0.78fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.insights-intro {
  position: sticky;
  top: 112px;
}

.insights-intro h2 {
  max-width: 520px;
  margin-bottom: 24px;
}

.insights-intro p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
  font-size: 1.08rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 16px;
}

.insight-card {
  min-height: 360px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

.insight-card .icon-badge {
  margin-bottom: 30px;
}

.insight-card p {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-card a {
  width: fit-content;
  font-weight: 850;
  border-bottom: 2px solid var(--accent);
}

.cta-section {
  width: min(1720px, calc(100% - 40px));
  margin: 0 auto 20px;
  background: var(--charcoal);
  color: #fff;
  overflow: hidden;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(420px, 0.82fr);
  align-items: stretch;
  min-height: 620px;
}

.cta-copy {
  padding: clamp(58px, 7vw, 112px);
}

.cta-inner p {
  color: #d9d9df;
}

.cta-copy h2 {
  max-width: 780px;
}

.cta-copy p:not(.eyebrow) {
  max-width: 650px;
}

.cta-points {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 34px;
}

.cta-points span {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 800;
}

.contact-form {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(34px, 4.6vw, 72px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(127, 44, 255, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #dcdce4;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  outline: none;
  padding: 15px 16px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #c79dff;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 3px rgba(127, 44, 255, 0.18);
}

.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-status {
  min-height: 22px;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.contact-form .button.primary {
  width: fit-content;
}

.cta-visual {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(36, 35, 41, 0.42), rgba(127, 44, 255, 0.18)),
    #18171d;
}

.cta-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, var(--charcoal), rgba(36, 35, 41, 0.18) 42%, rgba(127, 44, 255, 0.15));
}

.cta-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.82) contrast(1.08);
}

.cta-section .eyebrow {
  color: #c79dff;
}

.cta-section .button.primary {
  margin-top: 22px;
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.cta-section .button.primary:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 56px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(260px, 0.5fr);
  align-items: start;
  gap: clamp(28px, 5vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 850;
}

.footer-brand .brand-logo {
  width: 210px;
}

.site-footer p {
  max-width: 360px;
  margin-bottom: 0;
}

.footer-links,
.footer-note {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: var(--ink);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--accent-dark);
}

.footer-note span {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.footer-address {
  margin: 8px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.footer-address strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-social-link,
.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-weight: 850;
}

.footer-social-link {
  margin-top: 4px;
}

.footer-social-link img,
.contact-social-link img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.footer-social-link:hover,
.contact-social-link:hover {
  color: var(--accent-dark);
}

.legal-content {
  max-width: 920px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

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

.legal-content a {
  color: var(--accent-dark);
  font-weight: 850;
}

.subpage-main {
  padding-top: 92px;
}

.page-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 86px;
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(420px, 0.82fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.page-hero.compact {
  align-items: center;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--accent-dark);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 6vw, 7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
}

.page-visual {
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.page-hero.industry-hero {
  width: min(1720px, calc(100% - 40px));
  grid-template-columns: minmax(480px, 0.58fr) minmax(760px, 1fr);
}

.page-visual.industry-hero-visual,
.page-visual.industry-hero-visual img {
  min-height: clamp(620px, 42vw, 760px);
}

.page-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.page-section.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.5fr) minmax(0, 0.9fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.image-led-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.48fr) minmax(0, 0.92fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.image-led-section.reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.48fr);
}

.image-led-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
}

.image-led-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-led-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.image-led-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(17, 17, 22, 0.54));
  pointer-events: none;
}

.floating-insight-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  width: min(420px, calc(100% - 56px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 17, 22, 0.78);
  color: #fff;
  backdrop-filter: blur(18px);
}

.floating-insight-card span {
  display: block;
  margin-bottom: 10px;
  color: #c79dff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-insight-card p {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.page-section.dark {
  width: 100%;
  max-width: none;
  background: var(--charcoal);
  color: #fff;
}

.page-section.dark > .page-section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 0.88fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.page-section.dark .eyebrow {
  color: #c79dff;
}

.page-section.dark p {
  color: #d8d6df;
}

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

.editorial-card {
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.editorial-card:hover {
  border-color: rgba(127, 44, 255, 0.45);
  box-shadow: 0 22px 56px rgba(23, 23, 26, 0.08);
  transform: translateY(-5px);
}

.editorial-card.dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.editorial-card span,
.page-marker {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-card.dark span {
  color: #c79dff;
}

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

.editorial-card.dark p {
  color: #d8d6df;
}

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

.service-detail {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
}

.service-detail h3 {
  margin-top: 26px;
}

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

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.54fr) minmax(480px, 0.88fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.contact-hero {
  align-items: center;
}

.contact-hero h1 {
  max-width: 780px;
}

.contact-hero-visual {
  position: relative;
  min-height: 560px;
}

.contact-hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(23, 23, 26, 0.04), rgba(23, 23, 26, 0.58));
}

.contact-hero-panel {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  max-width: 520px;
  padding: 26px;
  background: rgba(23, 23, 26, 0.86);
  color: #fff;
  backdrop-filter: blur(16px);
}

.contact-hero-panel span {
  display: block;
  margin-bottom: 16px;
  color: #c79dff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-hero-panel p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-signal-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.contact-signal-section article {
  min-height: 210px;
  padding: clamp(30px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.contact-signal-section article:first-child {
  border-left: 1px solid var(--line);
}

.contact-signal-section span,
.contact-process-grid span,
.contact-brief-list span {
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-signal-section h3 {
  margin: 24px 0 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.contact-signal-section p,
.contact-process-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-page-layout .contact-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(127, 44, 255, 0.18), transparent 40%),
    var(--charcoal);
  box-shadow: 0 32px 90px rgba(23, 23, 26, 0.16);
}

.contact-aside {
  position: sticky;
  top: 116px;
  padding: clamp(34px, 4vw, 56px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  background: #fff;
}

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

.contact-brief-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-brief-list div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-brief-list p {
  margin: 8px 0 0;
}

.form-intro {
  max-width: 640px;
  padding-bottom: 10px;
}

.form-intro h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.form-intro p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.contact-process-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.52fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-process-section h2 {
  max-width: 660px;
}

.contact-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-process-grid article {
  min-height: 270px;
  padding: clamp(28px, 3vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.contact-process-grid h3 {
  margin: 74px 0 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.5fr) minmax(0, 0.9fr);
  gap: clamp(42px, 7vw, 110px);
  border-top: 1px solid var(--line);
}

.faq-intro h2 {
  max-width: 620px;
}

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

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

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 28px 52px 28px 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.6vw, 1.42rem);
  font-weight: 900;
}

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

.faq-list summary::after {
  position: absolute;
  right: 0;
  top: 30px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  content: "+";
  border: 1px solid var(--line);
  color: var(--accent-dark);
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
  border-color: var(--accent);
}

.faq-list p {
  max-width: 760px;
  margin: -8px 0 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-family-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

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

.service-family-card {
  min-height: 390px;
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-family-card:hover {
  border-color: rgba(127, 44, 255, 0.45);
  box-shadow: 0 22px 56px rgba(23, 23, 26, 0.08);
  transform: translateY(-5px);
}

.service-family-card.featured {
  background: var(--charcoal);
  color: #fff;
}

.service-family-card span {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-family-card.featured span {
  color: #c79dff;
}

.service-family-card p {
  color: var(--muted);
}

.service-family-card.featured p {
  color: #d8d6df;
}

.service-family-card a {
  width: fit-content;
  margin-top: 24px;
  border-bottom: 2px solid var(--accent);
  font-weight: 900;
}

.outcomes-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.5fr) minmax(0, 0.9fr);
  gap: clamp(42px, 7vw, 110px);
  border-top: 1px solid var(--line);
}

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

.outcome-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-item span {
  color: var(--accent);
  font-weight: 900;
}

.outcome-item p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.assessment-section {
  width: min(1720px, calc(100% - 40px));
  margin: 0 auto 20px;
  background:
    linear-gradient(90deg, rgba(127, 44, 255, 0.14), transparent 50%),
    var(--charcoal);
  color: #fff;
}

.assessment-inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(360px, 0.52fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  padding: clamp(48px, 7vw, 92px);
}

.assessment-inner .eyebrow {
  color: #c79dff;
}

.assessment-inner p {
  max-width: 680px;
  color: #d8d6df;
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
}

.assessment-panel {
  display: grid;
  gap: 12px;
}

.assessment-panel span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 850;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  width: min(680px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(23, 23, 26, 0.92);
  color: #fff;
  box-shadow: 0 22px 70px rgba(23, 23, 26, 0.2);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(140%);
  transition: transform 260ms ease;
}

.sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}

.sticky-cta span {
  font-weight: 850;
}

.sticky-cta a {
  flex: 0 0 auto;
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.logo-showcase {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.logo-showcase-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.55fr) minmax(0, 0.85fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

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

.logo-asset-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo-asset-card.dark-card {
  background: var(--charcoal);
}

.logo-asset-card img {
  width: 100%;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
}

.logo-asset-card .mark-preview {
  width: 76px;
  height: 76px;
}

.logo-asset-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-mosaic {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: stretch;
}

.visual-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
}

.visual-tile.large {
  min-height: 560px;
}

.visual-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 900ms ease;
}

.visual-tile:hover img {
  transform: scale(1.045);
}

.visual-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(17, 17, 22, 0.58));
  opacity: 0.72;
}

.visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
}

.visual-caption span {
  display: block;
  margin-bottom: 8px;
  color: #c79dff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-caption p {
  margin: 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.28;
}

.motion-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.motion-track {
  display: flex;
  width: max-content;
  animation: premiumMarquee 28s linear infinite;
}

.motion-track span {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  padding: 0 34px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.animated-framework {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.framework-step {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.framework-step::before {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 3px;
  content: "";
  background: var(--accent);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 320ms ease;
}

.framework-step:hover::before {
  transform: scaleX(1);
}

.framework-step span {
  display: block;
  margin-bottom: 54px;
  color: var(--accent-dark);
  font-weight: 900;
}

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

@keyframes premiumMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero,
  .beyond-inner,
  .why-section,
  .insights-section,
  .cta-inner,
  .priorities-section,
  .deliverables-inner,
  .engagement-section,
  .visual-story-section,
  .growth-visual-section,
  .industries-layout,
  .executive-inner,
  .scenarios-section,
  .page-hero,
  .page-section.split,
  .image-led-section,
  .image-led-section.reverse,
  .page-section.dark > .page-section-inner,
  .contact-page-layout,
  .contact-signal-section,
  .contact-process-section,
  .contact-process-grid,
  .outcomes-section,
  .assessment-inner {
    grid-template-columns: 1fr;
  }

  .logo-showcase-grid,
  .logo-asset-grid,
  .faq-section,
  .service-family-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 430px;
  }

  .hero-stat-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -1px;
    box-shadow: none;
  }

  .split-section {
    padding-top: 104px;
  }

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

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

  .insights-intro {
    position: static;
  }

  .priorities-lead {
    position: static;
  }

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

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

  .scenarios-intro {
    position: static;
  }

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

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

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .visual-mosaic,
  .animated-framework,
  .service-tabs,
  .service-tab-stage,
  .approach-timeline {
    grid-template-columns: 1fr;
  }

  .service-tab-controls {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-timeline {
    gap: 0;
  }

  .timeline-line {
    top: 0;
    bottom: 0;
    left: 12px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-step {
    margin-left: 28px;
    border-bottom: 0;
  }

  .timeline-step:last-child {
    border-bottom: 1px solid var(--line);
  }

  .timeline-step::before {
    top: 28px;
    left: -27px;
  }

  .contact-form {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .contact-aside {
    position: static;
  }

  .contact-signal-section article,
  .contact-signal-section article:first-child {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .cta-visual {
    min-height: 340px;
  }

  .cta-visual img {
    min-height: 340px;
  }

  .story-image-large,
  .story-image-large img,
  .growth-image-wrap,
  .growth-image-wrap img {
    min-height: 390px;
  }

  .page-hero.industry-hero {
    width: min(var(--max), calc(100% - 40px));
    grid-template-columns: 1fr;
  }

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

  .industry-hero-metrics {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 16px 20px;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
  }

  .nav {
    position: fixed;
    inset: 77px 14px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .nav-item > a {
    display: block;
  }

  .mega-menu {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .section-pad {
    width: min(100% - 32px, var(--max));
    padding: 76px 0;
  }

  .hero {
    gap: 34px;
    padding-top: 116px;
    width: min(100% - 32px, var(--max));
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 330px;
  }

  .story-image-large,
  .story-image-large img,
  .growth-image-wrap,
  .growth-image-wrap img {
    min-height: 300px;
  }

  .image-caption {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -1px 0 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .hero-visual {
    overflow: hidden;
  }

  .hero-stat-card {
    width: auto;
    grid-template-columns: 1fr;
  }

  .split-section,
  .service-grid,
  .approach-grid,
  .industry-grid,
  .insights-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .priority-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .stat:last-child {
    border-bottom: 0;
  }

  .split-section {
    gap: 20px;
  }

  .service-card.tall,
  .service-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }

  .why-panel,
  .cta-copy {
    padding: 34px 24px;
  }

  .cta-section {
    width: min(100% - 32px, var(--max));
  }

  .cta-inner {
    min-height: auto;
  }

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

  .contact-form .button.primary {
    width: 100%;
  }

  .contact-signal-section {
    width: min(100% - 32px, var(--max));
  }

  .contact-signal-section article,
  .contact-process-grid article {
    min-height: auto;
    padding: 28px 24px;
  }

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

  .cta-visual,
  .cta-visual img {
    min-height: 280px;
  }

  .executive-visual,
  .executive-visual img {
    min-height: 360px;
  }

  .page-visual,
  .page-visual img {
    min-height: 330px;
  }

  .page-visual.industry-hero-visual,
  .page-visual.industry-hero-visual img {
    min-height: 360px;
  }

  .contact-hero-visual {
    overflow: visible;
  }

  .industry-hero-visual {
    overflow: visible;
  }

  .contact-hero-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -1px 0 0;
  }

  .industry-hero-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -1px 0 0;
    padding: 24px;
  }

  .industry-hero-proof span {
    width: 100%;
    text-align: center;
  }

  .image-led-visual,
  .image-led-visual img {
    min-height: 340px;
  }

  .floating-insight-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -1px 0 0;
  }

  .visual-tile,
  .visual-tile.large {
    min-height: 320px;
  }

  .motion-track span {
    min-height: 64px;
    padding: 0 22px;
    font-size: 0.82rem;
  }

  .brand-logo {
    width: 160px;
  }

  .framework-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -1px 0 0;
  }

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

  .outcome-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-family-card,
  .assessment-inner,
  .assessment-panel {
    padding: 28px 24px;
  }

  .sticky-cta {
    bottom: 12px;
    width: calc(100% - 24px);
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .sticky-cta a {
    text-align: center;
  }
}
