:root {
  --color-primary: #6c3bd1;
  --color-primary-dark: #5426b8;
  --color-surface: #f5f0ff;
  --color-background: #faf8ff;
  --color-text-primary: #171717;
  --color-text-secondary: #566078;
  --color-white: #ffffff;
  --color-border: rgba(23, 23, 23, 0.08);
  --color-shadow: 0 24px 80px rgba(108, 59, 209, 0.10);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-size-base: 16px;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.75rem;
  --font-size-4xl: 3.75rem;
  --line-height-base: 1.65;
  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --container-max-width: 1280px;
  --radius-base: 20px;
  --transition-base: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

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

::selection {
  background: rgba(108, 59, 209, 0.15);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
}

p,
span,
label {
  color: var(--color-text-secondary);
}

p {
  margin: 0;
}

.container {
  width: min(100%, var(--container-max-width));
  margin-inline: auto;
  padding-inline: 32px;
}

@media (max-width: 980px) {
  .container {
    padding-inline: 24px;
  }
}

/* Hero */
.hero-section {
  position: relative;
  min-height: calc(100svh - 88px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 44%, rgba(108, 59, 209, 0.12), transparent 29%),
    radial-gradient(circle at 91% 76%, rgba(255, 148, 83, 0.08), transparent 22%),
    linear-gradient(135deg, #fdfcff 0%, #f4efff 54%, #fbf9ff 100%);
}

.hero-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  animation: backgroundReveal 1.4s ease 0.15s forwards;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  animation: blobDrift 10s ease-in-out infinite alternate;
}

.hero-blob-purple {
  top: 8%;
  right: 4%;
  width: clamp(260px, 31vw, 470px);
  aspect-ratio: 1;
  background: rgba(121, 68, 211, 0.12);
}

.hero-blob-orange {
  right: 31%;
  bottom: -20%;
  width: clamp(220px, 27vw, 400px);
  aspect-ratio: 1;
  background: rgba(255, 149, 84, 0.085);
  animation-delay: -4s;
}

.hero-grid-texture {
  position: absolute;
  top: 8%;
  right: 0;
  width: 46%;
  height: 76%;
  opacity: 0.24;
  background-image: radial-gradient(rgba(108, 59, 209, 0.25) 0.75px, transparent 0.75px);
  background-size: 21px 21px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000, transparent 72%);
}

.hero-wave {
  position: absolute;
  right: -8%;
  bottom: -24%;
  width: 72%;
  height: 52%;
  border: 1px solid rgba(108, 59, 209, 0.1);
  border-radius: 50% 50% 0 0;
  transform: rotate(-4deg);
  box-shadow: 0 -22px 70px rgba(108, 59, 209, 0.035);
}

.hero-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(108, 59, 209, 0.7);
  box-shadow: 0 0 12px rgba(108, 59, 209, 0.65);
  animation: sparkTwinkle 3.6s ease-in-out infinite;
}

.hero-spark-one { top: 22%; left: 43%; }
.hero-spark-two { top: 68%; left: 52%; animation-delay: -1.1s; }
.hero-spark-three { top: 17%; right: 9%; animation-delay: -2.2s; }
.hero-spark-four { bottom: 22%; right: 4%; animation-delay: -0.6s; background: rgba(255, 141, 74, 0.7); }

@keyframes backgroundReveal {
  to { opacity: 1; }
}

@keyframes blobDrift {
  from { transform: translate3d(0, 0, 0) scale(0.97); }
  to { transform: translate3d(-12px, 9px, 0) scale(1.03); }
}

@keyframes sparkTwinkle {
  0%, 100% { opacity: 0.22; transform: scale(0.75); }
  50% { opacity: 0.85; transform: scale(1.15); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  min-height: calc(100svh - 88px);
  padding-top: clamp(2.5rem, 5vh, 4rem);
  padding-bottom: clamp(5.5rem, 9vh, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.hero-eyebrow {
  margin-bottom: 1.25rem;
  color: var(--color-primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3.25rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.hero-title > span {
  display: block;
  color: var(--color-text-primary);
}

.hero-title .hero-highlight {
  margin-top: 0.12em;
  color: var(--color-primary);
  background: linear-gradient(105deg, var(--color-primary-dark), #7c4cdb 72%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 550px;
  margin-top: 1.8rem;
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.hero-button.secondary {
  border: 1px solid rgba(86, 96, 120, 0.18);
  background: transparent;
  color: var(--color-text-primary);
}

.hero-button.secondary:hover,
.hero-button.secondary:focus-visible {
  background: rgba(108, 59, 209, 0.08);
  color: var(--color-primary-dark);
}

.hero-button:not(.secondary) {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--color-primary-dark), var(--color-primary) 62%, #7d4cda);
  box-shadow: 0 12px 30px rgba(108, 59, 209, 0.18);
}

.hero-button:not(.secondary)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.2) 46%, transparent 64%);
  transform: translateX(-130%);
  transition: transform 650ms ease;
}

.hero-button:not(.secondary):hover,
.hero-button:not(.secondary):focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(108, 59, 209, 0.23);
}

.hero-button:not(.secondary):hover::after,
.hero-button:not(.secondary):focus-visible::after {
  transform: translateX(130%);
}

.hero-visual-wrapper {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  padding-top: clamp(1.5rem, 4vh, 3rem);
}

.portrait-glow {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 59, 209, 0.2), rgba(108, 59, 209, 0.055) 48%, transparent 72%);
  filter: blur(25px);
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: portraitGlowReveal 1s ease 0.35s forwards, portraitGlowPulse 6.5s ease-in-out 1.4s infinite;
  pointer-events: none;
}

.portrait-ring {
  position: absolute;
  z-index: 0;
  top: 52%;
  left: 50%;
  width: 67%;
  aspect-ratio: 1;
  border: 1px solid rgba(108, 59, 209, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 600px);
  height: 100%;
  max-height: 640px;
  align-items: flex-end;
  justify-content: center;
  transform-origin: center bottom;
}

.hero-woman-image {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.025) contrast(1.01) drop-shadow(0 22px 38px rgba(69, 39, 109, 0.12));
}

.hero-portrait.is-visible {
  animation: portraitFloat 6s ease-in-out 1.15s infinite;
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  bottom: 1.15rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  transform: translateX(-50%);
  color: var(--color-text-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  position: relative;
  width: 1px;
  height: 25px;
  overflow: hidden;
  background: rgba(108, 59, 209, 0.18);
}

.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  transform: translateY(-100%);
  animation: scrollLine 1.8s ease-in-out infinite;
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-portrait.reveal-item {
  transform: scale(0.97);
}

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

.hero-portrait.reveal-item.is-visible {
  transform: scale(1);
}

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

@keyframes portraitGlowReveal {
  to { opacity: 0.66; }
}

@keyframes portraitGlowPulse {
  0%, 100% { opacity: 0.58; transform: translate(-50%, -50%) scale(0.96); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.025); }
}

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

/* Existing header */
.site-header {
  position: relative;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--color-surface);
  border-bottom: 1px solid rgba(86, 96, 120, 0.12);
}

.site-header.scrolled {
  box-shadow: 0 18px 45px rgba(23, 23, 23, 0.08);
  background: rgba(245, 240, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  min-height: 88px;
}

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

.brand-logo {
  width: clamp(160px, 11vw, 190px);
  height: auto;
  display: block;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 0;
}

.nav-list a {
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: color var(--transition-base);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--color-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 var(--space-lg);
  border-radius: calc(var(--radius-base) + 4px);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  background: var(--color-primary-dark);
  box-shadow: 0 18px 40px rgba(108, 59, 209, 0.18);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 16px;
  transition: background-color var(--transition-base);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(108, 59, 209, 0.08);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-text-primary);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before {
  position: absolute;
  top: -0.45rem;
}

.nav-toggle-icon::after {
  position: absolute;
  top: 0.45rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: translateY(0.45rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  transform: translateY(-0.45rem) rotate(-45deg);
}

.section {
  padding: var(--space-2xl) 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 var(--space-lg);
  border: none;
  border-radius: calc(var(--radius-base) + 4px);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base);
}

button:hover,
.button:hover {
  transform: translateY(-1px);
  background: var(--color-primary-dark);
  box-shadow: 0 18px 40px rgba(108, 59, 209, 0.18);
}

button:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(108, 59, 209, 0.22);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  :root {
    --container-max-width: 960px;
  }

  body {
    font-size: 0.95rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 49fr) minmax(0, 51fr);
    gap: 1.5rem;
  }

  .hero-title {
    font-size: clamp(2.75rem, 5.8vw, 4.15rem);
  }

  .hero-portrait {
    width: min(100%, 510px);
    max-height: 560px;
  }

  .hero-woman-image {
    max-height: 560px;
  }
}

@media (max-width: 880px) {
  .header-inner {
    min-height: 72px;
  }

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

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: min(100%, 320px);
    margin: 0;
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    box-shadow: var(--color-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
    background: transparent;
  }

  .nav-list a {
    padding: 0.35rem 0;
    display: block;
  }

  .nav-cta {
    width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
  }

  .container {
    padding-inline: 20px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-copy {
    max-width: 630px;
  }

  .hero-title {
    font-size: clamp(2.55rem, 11vw, 3.8rem);
    line-height: 1.04;
  }

  .hero-description {
    margin-top: 1.4rem;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 1.75rem;
  }

  .hero-visual-wrapper {
    align-self: auto;
    min-height: 0;
    padding-top: 0;
  }

  .hero-portrait,
  .hero-woman-image {
    width: min(92vw, 520px);
    height: auto;
    max-height: none;
  }

  .portrait-glow {
    width: 76%;
  }

  .hero-portrait.is-visible {
    animation: none;
  }

  .hero-grid-texture,
  .hero-wave,
  .hero-spark-three,
  .hero-spark-four {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

/* Tools and platforms marquee */
.tools-marquee {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 0;
  align-content: center;
  overflow: hidden;
  padding: 38px 0 34px;
  border-top: 1px solid rgba(108, 59, 209, 0.1);
  border-bottom: 1px solid rgba(108, 59, 209, 0.1);
  background: var(--color-white);
}

.tools-marquee-label {
  margin: 0 1.5rem 30px;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
}

.tools-marquee-window {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.tools-marquee-track {
  display: flex;
  width: max-content;
  animation: toolsMarquee 40s linear infinite;
  will-change: transform;
}

.tools-marquee-window:hover .tools-marquee-track {
  animation-play-state: paused;
}

.tools-logo-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(2.5rem, 4vw, 4.75rem);
  margin: 0;
  padding: 0 clamp(2.5rem, 4vw, 4.75rem) 0 0;
  list-style: none;
}

.tools-logo-group li {
  display: grid;
  min-width: 86px;
  height: 50px;
  place-items: center;
  opacity: 0.78;
  transition: opacity 220ms ease, transform 220ms ease;
}

.tools-logo-group img {
  display: block;
  width: auto;
  max-width: 142px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  user-select: none;
}

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

@media (hover: hover) and (pointer: fine) {
  .tools-logo-group li:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.03);
  }
}

@media (max-width: 640px) {
  .tools-marquee {
    min-height: 0;
    padding: 34px 0 32px;
  }

  .tools-marquee-label {
    margin: 0 1.25rem 24px;
    font-size: clamp(1.3125rem, 6vw, 1.5rem);
  }

  .tools-logo-group {
    gap: 2.25rem;
    padding-right: 2.25rem;
  }

  .tools-logo-group li {
    min-width: 74px;
    height: 40px;
  }

  .tools-logo-group img {
    max-width: 124px;
    max-height: 32px;
  }
}

/* Services */
.services-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(108, 59, 209, 0.055), transparent 24%),
    var(--color-surface);
}

.services-section::after {
  content: '';
  position: absolute;
  right: -9rem;
  bottom: 8%;
  width: 24rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(108, 59, 209, 0.055);
  filter: blur(65px);
  pointer-events: none;
}

.services-container {
  position: relative;
  z-index: 1;
}

.services-heading {
  max-width: 680px;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.services-eyebrow {
  margin-bottom: 1.25rem;
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.services-title {
  font-size: clamp(2.875rem, 4.2vw, 3.625rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.services-title span {
  display: block;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.services-title .services-highlight {
  color: var(--color-primary);
}

.services-intro {
  max-width: 650px;
  margin-top: 1.5rem;
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.72;
}

.services-channels {
  margin-top: 1.35rem;
  color: var(--color-text-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.services-channels i {
  margin-inline: 0.35rem;
  color: #df8c61;
  font-style: normal;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(1.6rem, 2.5vw, 2.15rem);
  overflow: hidden;
  border: 1px solid rgba(108, 59, 209, 0.11);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(245, 240, 255, 0.68));
  box-shadow: 0 18px 50px rgba(62, 38, 101, 0.055);
  backdrop-filter: blur(10px);
  transition: transform 240ms ease, border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 85% 12%, rgba(108, 59, 209, 0.11), transparent 35%);
  transition: opacity 240ms ease;
  pointer-events: none;
}

.service-card-featured {
  border-color: rgba(108, 59, 209, 0.2);
  box-shadow: 0 22px 55px rgba(82, 46, 139, 0.085);
}

.service-card-featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  width: 4.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), rgba(108, 59, 209, 0.12));
}

.service-card-ai {
  background: linear-gradient(145deg, rgba(248, 244, 255, 0.94), rgba(235, 224, 255, 0.72));
}

.service-card-performance {
  background: linear-gradient(145deg, rgba(255, 251, 248, 0.9), rgba(252, 229, 216, 0.65));
}

.service-card-email {
  background: linear-gradient(145deg, rgba(248, 251, 255, 0.92), rgba(226, 237, 252, 0.7));
}

@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.service-number {
  color: rgba(84, 38, 184, 0.55);
  font-family: var(--font-heading);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(108, 59, 209, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--color-primary);
  box-shadow: 0 9px 24px rgba(108, 59, 209, 0.07);
  transition: transform 240ms ease, background-color 240ms ease;
}

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

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 290px;
  margin-bottom: 0.85rem;
  min-height: 3.25rem;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.service-card > p {
  position: relative;
  z-index: 1;
  max-width: 330px;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--color-primary);
  font-size: 1.3rem;
  transition: transform 240ms ease;
}

.service-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease-out, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.service-card.service-reveal {
  transform: translate3d(-10px, 24px, 0) scale(0.98);
}

.service-card:nth-child(even).service-reveal {
  transform: translate3d(10px, 24px, 0) scale(0.98);
}

.service-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.service-card.service-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .service-card.service-reveal.is-visible:hover {
    transform: translate3d(0, -5px, 0) scale(1);
    border-color: rgba(108, 59, 209, 0.32);
    background-color: rgba(245, 238, 255, 0.92);
    box-shadow: 0 24px 58px rgba(91, 49, 158, 0.13), 0 0 30px rgba(108, 59, 209, 0.055);
  }

  .service-card:hover::before {
    opacity: 1;
  }

  .service-card:hover .service-icon {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.9);
  }

  .service-card:hover .service-arrow {
    transform: translateX(4px);
  }
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-section {
    padding: 4.5rem 0;
  }

  .services-heading {
    margin-bottom: 3rem;
  }

  .services-title {
    font-size: clamp(2rem, 9vw, 2.375rem);
  }

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

  .service-card {
    min-height: 300px;
    padding: 1.5rem;
  }

  .service-card h3 {
    min-height: 0;
  }
}

/* Featured work */
.work-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6.5rem, 11vw, 10rem) 0;
  background:
    radial-gradient(circle at 92% 9%, rgba(255, 150, 83, 0.08), transparent 20%),
    linear-gradient(180deg, #fbf9ff 0%, #fff 38%, #f8f4ff 100%);
}

.work-heading {
  max-width: 820px;
  margin-bottom: clamp(4rem, 8vw, 6.5rem);
}

.work-eyebrow {
  margin-bottom: 1.1rem;
  color: var(--color-primary-dark);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.28em;
}

.work-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.work-title span {
  display: block;
  color: var(--color-primary);
}

.work-intro {
  max-width: 660px;
  margin-top: 1.6rem;
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.72;
}

.case-studies-list {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(108, 59, 209, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(58, 34, 94, 0.07);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.case-study-reverse {
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
}

.case-study-reverse .case-study-visual {
  order: 2;
}

.case-study-reverse .case-study-content {
  order: 1;
}

.case-study-visual {
  position: relative;
  min-width: 0;
  min-height: 510px;
  overflow: hidden;
  background: #eee8f7;
}

.case-study-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.case-study-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4.5vw, 4.5rem);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease 100ms, transform 700ms cubic-bezier(0.22, 1, 0.36, 1) 100ms;
}

.case-category {
  margin-bottom: 1.25rem;
  color: var(--color-primary-dark);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-study-content h3 {
  max-width: 520px;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: clamp(2rem, 4vw, 3rem) 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(108, 59, 209, 0.11);
}

.case-metric {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 550ms ease 380ms, transform 550ms cubic-bezier(0.22, 1, 0.36, 1) 380ms;
}

.case-metric + .case-metric {
  transition-delay: 480ms;
}

.case-metric strong,
.case-metric span {
  display: block;
}

.case-metric strong {
  color: var(--color-primary);
  font: 700 clamp(1.6rem, 2.6vw, 2.35rem) var(--font-heading);
  letter-spacing: -0.04em;
}

.case-metric span {
  margin-top: 0.18rem;
  color: var(--color-text-secondary);
  font-size: 0.82rem;
}

.case-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.55rem;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
}

.case-link span {
  color: var(--color-primary);
  font-size: 1.1rem;
  transition: transform 220ms ease;
}

.case-study.is-visible .case-study-image,
.case-study.is-visible .case-study-content,
.case-study.is-visible .case-metric,
.work-heading-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.work-heading-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.work-all-link {
  gap: 0.65rem;
  padding-inline: 2rem;
}

.work-all-link span {
  color: currentColor;
  transition: transform 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .case-study:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 59, 209, 0.25);
    box-shadow: 0 30px 75px rgba(67, 38, 110, 0.11);
  }

  .case-study:hover .case-study-image {
    transform: scale(1.025);
  }

  .case-study:hover .case-link span,
  .work-all-link:hover span {
    transform: translateX(4px);
  }
}

@media (max-width: 900px) {
  .case-study,
  .case-study-reverse {
    grid-template-columns: 1fr;
  }

  .case-study-reverse .case-study-visual,
  .case-study-reverse .case-study-content {
    order: initial;
  }

  .case-study-visual {
    min-height: 440px;
  }
}

@media (max-width: 640px) {
  .work-section {
    padding: 5.5rem 0;
  }

  .work-heading {
    margin-bottom: 3rem;
  }

  .work-title {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
  }

  .case-study {
    min-height: 0;
    border-radius: 24px;
  }

  .case-study-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
    background: #f2edf9;
  }

  .case-study-image {
    object-fit: contain;
  }

  .case-study-content {
    padding: 2rem 1.5rem 2.25rem;
  }

  .case-study-content h3 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .case-metrics {
    gap: 1rem;
  }

}

/* Case studies: editorial portfolio */
.work-section {
  isolation: isolate;
  padding: clamp(6rem, 8vw, 7.5rem) 0;
  background: var(--color-white);
}

.work-section::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 8%;
  right: 0;
  width: min(34vw, 470px);
  height: 320px;
  opacity: 0;
  background-image: radial-gradient(rgba(108, 59, 209, 0.28) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(135deg, transparent, #000 42%, transparent);
  mask-image: linear-gradient(135deg, transparent, #000 42%, transparent);
  pointer-events: none;
}

.work-container {
  position: relative;
  z-index: 1;
}

.work-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  max-width: none;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.work-heading-copy {
  max-width: 650px;
}

.work-eyebrow {
  margin-bottom: 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.work-title {
  max-width: 650px;
  font-size: clamp(2.875rem, 4.2vw, 3.625rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.work-title-line {
  display: block;
  color: var(--color-text-primary);
}

.work-title-highlight {
  color: var(--color-primary);
}

.work-intro {
  max-width: 500px;
  margin-top: 1.5rem;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
}

.work-index {
  flex: 0 0 auto;
  margin-bottom: 0.35rem;
  color: var(--color-text-secondary);
  text-align: right;
}

.work-index span,
.work-index strong {
  display: block;
}

.work-index span {
  margin-bottom: 0.45rem;
  color: var(--color-primary-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.work-index strong {
  color: var(--color-text-primary);
  font: 600 1rem var(--font-heading);
  letter-spacing: 0.08em;
}

.case-studies-list {
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.case-study {
  position: relative;
  grid-template-columns: minmax(0, 1.16fr) minmax(350px, 0.84fr);
  min-height: 530px;
  padding: 12px;
  border-color: rgba(108, 59, 209, 0.12);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(249, 246, 255, 0.96), rgba(255, 255, 255, 0.82));
  box-shadow: 0 24px 72px rgba(58, 34, 94, 0.075);
}

.case-study:nth-child(2) {
  grid-template-columns: minmax(350px, 0.84fr) minmax(0, 1.16fr);
  background: linear-gradient(135deg, rgba(255, 249, 245, 0.95), rgba(247, 242, 255, 0.9));
}

.case-study:nth-child(3) {
  background: linear-gradient(135deg, rgba(241, 234, 255, 0.94), rgba(253, 251, 255, 0.9));
}

.case-study-visual {
  min-height: 506px;
  border-radius: 24px;
  background: #eee8f7;
  box-shadow: 0 16px 38px rgba(45, 25, 77, 0.11);
}

.case-study-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(69, 31, 125, 0.06), transparent 36%);
  pointer-events: none;
}

.case-study-image {
  object-position: center center;
  transform: translateX(-10px) scale(1.04);
}

.case-study-reverse .case-study-image {
  transform: translateX(10px) scale(1.04);
}

.case-study-content {
  position: relative;
  z-index: 1;
  padding: clamp(2.3rem, 4vw, 4rem);
}

.case-number {
  position: absolute;
  z-index: -1;
  top: clamp(1rem, 2.5vw, 2rem);
  right: clamp(1rem, 2.5vw, 2.2rem);
  color: rgba(108, 59, 209, 0.075);
  font: 700 clamp(5rem, 9vw, 8rem) var(--font-heading);
  line-height: 0.8;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.case-category {
  position: relative;
  margin-bottom: 1.2rem;
  padding-left: 1.35rem;
}

.case-category::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.75rem;
  height: 2px;
  background: var(--color-primary);
  transform: translateY(-50%);
}

.case-study-content h3 {
  max-width: 480px;
  font-size: clamp(2rem, 3.1vw, 3.05rem);
}

.case-metrics {
  gap: 0;
  margin: clamp(2rem, 3.5vw, 2.8rem) 0;
  padding-top: 0;
  border-top: 0;
}

.case-metric {
  padding-right: 1.25rem;
}

.case-metric + .case-metric {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(108, 59, 209, 0.17);
}

.case-metric strong {
  font-size: clamp(1.85rem, 2.8vw, 2.55rem);
}

.case-link {
  color: var(--color-primary-dark);
  transition: color 220ms ease;
}

.work-footer {
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

.work-footer p {
  color: var(--color-text-secondary);
  font-size: 0.94rem;
}

.work-all-link {
  overflow: hidden;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 12px 28px rgba(108, 59, 209, 0.22);
}

@media (hover: hover) and (pointer: fine) {
  .case-study:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 59, 209, 0.3);
    box-shadow: 0 30px 82px rgba(67, 38, 110, 0.13), 0 0 0 1px rgba(108, 59, 209, 0.04);
  }

  .case-study:hover .case-link {
    color: var(--color-primary);
  }

  .case-study:hover .case-link span {
    transform: translateX(5px);
  }

  .work-all-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(108, 59, 209, 0.28);
  }
}

@media (max-width: 980px) {
  .work-heading {
    align-items: flex-start;
  }

  .case-study,
  .case-study:nth-child(2) {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    min-height: 470px;
  }

  .case-study-visual {
    min-height: 446px;
  }

  .case-study-reverse .case-study-visual {
    order: 2;
  }

  .case-study-reverse .case-study-content {
    order: 1;
  }
}

@media (max-width: 760px) {
  .work-section {
    padding: 4.5rem 0;
  }

  .work-heading {
    display: block;
    margin-bottom: 3.5rem;
  }

  .work-index {
    display: none;
  }

  .work-title {
    font-size: clamp(2rem, 9vw, 2.375rem);
  }

  .case-study,
  .case-study:nth-child(2) {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 8px;
    border-radius: 26px;
  }

  .case-study-reverse .case-study-visual {
    order: 1;
  }

  .case-study-reverse .case-study-content {
    order: 2;
  }

  .case-study-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }

  .case-study-image {
    object-fit: cover;
  }

  .case-study-content {
    padding: 2.25rem 1.25rem 2rem;
  }

  .case-number {
    top: 1rem;
    right: 1rem;
    font-size: 4.5rem;
  }

  .case-study-content h3 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }
}

/* Why RUDVED */
.why-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6.5rem, 11vw, 10rem) 0;
  background:
    radial-gradient(circle at 48% 58%, rgba(108, 59, 209, 0.1), transparent 35%),
    linear-gradient(180deg, #f8f4ff 0%, #fdfcff 46%, #f5f0ff 100%);
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 12% 0 auto 46%;
  width: 54%;
  height: 60%;
  opacity: 0.2;
  background-image: radial-gradient(rgba(108, 59, 209, 0.22) 0.75px, transparent 0.75px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse, #000, transparent 70%);
  mask-image: radial-gradient(ellipse, #000, transparent 70%);
  pointer-events: none;
}

.why-container {
  position: relative;
  z-index: 1;
}

.why-heading {
  max-width: 820px;
  margin-bottom: clamp(3.25rem, 6vw, 5rem);
}

.why-eyebrow {
  margin-bottom: 1.1rem;
  color: var(--color-primary-dark);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.28em;
}

.why-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.why-title span {
  display: block;
  color: var(--color-primary);
}

.why-intro {
  max-width: 700px;
  margin-top: 1.6rem;
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.72;
}

.why-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: minmax(220px, auto);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.why-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.6rem, 2.7vw, 2.25rem);
  overflow: hidden;
  border: 1px solid rgba(108, 59, 209, 0.11);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(245, 240, 255, 0.72));
  box-shadow: 0 18px 50px rgba(59, 35, 96, 0.055);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: radial-gradient(circle at 88% 9%, rgba(108, 59, 209, 0.11), transparent 34%);
  transition: opacity 240ms ease;
  pointer-events: none;
}

.why-card-featured {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 464px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 157, 93, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(236, 225, 255, 0.78));
}

.why-card-seo,
.why-card-ai {
  grid-column: span 5;
}

.why-card-reporting,
.why-card-conversion,
.why-stat-primary {
  grid-column: span 4;
}

.why-card-optimization {
  grid-column: span 6;
}

.why-stat:not(.why-stat-primary) {
  grid-column: span 3;
}

.why-card-ai {
  background: linear-gradient(145deg, rgba(249, 246, 255, 0.95), rgba(231, 218, 255, 0.83));
}

.why-card-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.2rem;
}

.why-number {
  color: rgba(84, 38, 184, 0.55);
  font-family: var(--font-heading);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.why-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(108, 59, 209, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-primary);
  box-shadow: 0 9px 25px rgba(108, 59, 209, 0.07);
  transition: transform 240ms ease;
}

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

.why-strategy-visual {
  position: absolute;
  z-index: 0;
  top: 23%;
  right: 4%;
  width: 72%;
  opacity: 0.19;
  pointer-events: none;
}

.why-strategy-visual svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  fill: rgba(108, 59, 209, 0.12);
  stroke: rgba(108, 59, 209, 0.62);
  stroke-width: 2;
}

.why-strategy-visual .strategy-route {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
}

.why-strategy-visual .strategy-route-soft {
  stroke: rgba(108, 59, 209, 0.18);
  stroke-width: 18;
  stroke-dasharray: none;
}

.why-strategy-visual circle {
  fill: rgba(255, 255, 255, 0.76);
  stroke-width: 2;
}

.why-strategy-visual .strategy-marker {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card-copy {
  position: relative;
  z-index: 1;
}

.why-card-copy h3 {
  max-width: 500px;
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.why-card-featured .why-card-copy h3 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.why-card-copy p {
  max-width: 540px;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.why-stat {
  justify-content: flex-end;
  min-height: 240px;
  background: linear-gradient(145deg, rgba(247, 242, 255, 0.96), rgba(230, 216, 255, 0.84));
}

.why-stat::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e88b5d;
  box-shadow: 0 0 18px rgba(232, 139, 93, 0.3);
}

.why-stat-primary {
  color: var(--color-white);
  background: linear-gradient(145deg, var(--color-primary-dark), #7d51d5);
}

.why-stat-primary::before {
  opacity: 0.65;
  background: radial-gradient(circle at 80% 10%, rgba(255, 181, 133, 0.28), transparent 35%);
}

.why-stat strong,
.why-stat span {
  position: relative;
  z-index: 1;
  display: block;
}

.why-stat strong {
  color: var(--color-primary-dark);
  font: 700 clamp(2.8rem, 5vw, 4.8rem) / 0.95 var(--font-heading);
  letter-spacing: -0.06em;
}

.why-stat span {
  max-width: 190px;
  margin-top: 0.8rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.why-stat-primary strong,
.why-stat-primary span {
  color: var(--color-white);
}

.why-reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.99);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card-featured.why-reveal {
  transition-duration: 820ms;
}

.why-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 59, 209, 0.28);
    box-shadow: 0 24px 58px rgba(71, 40, 117, 0.11);
  }

  .why-card:hover::before {
    opacity: 0.72;
  }

  .why-card:hover .why-icon {
    transform: translateY(-2px) scale(1.045);
  }
}

@media (max-width: 980px) {
  .why-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .why-card,
  .why-card-featured,
  .why-card-seo,
  .why-card-ai,
  .why-card-reporting,
  .why-card-conversion,
  .why-card-optimization,
  .why-stat-primary,
  .why-stat:not(.why-stat-primary) {
    grid-column: span 1;
    grid-row: auto;
    min-height: 280px;
  }

  .why-card-featured {
    grid-column: 1 / -1;
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .why-section {
    padding: 5.5rem 0;
  }

  .why-section::before {
    display: none;
  }

  .why-heading {
    margin-bottom: 3rem;
  }

  .why-title {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
  }

  .why-bento {
    grid-template-columns: 1fr;
  }

  .why-card,
  .why-card-featured {
    grid-column: 1;
    min-height: 270px;
    padding: 1.5rem;
  }

  .why-card-featured .why-card-copy h3 {
    font-size: 2rem;
  }

  .why-strategy-visual {
    top: 28%;
    right: -8%;
    width: 82%;
    opacity: 0.13;
  }

  .why-stat {
    min-height: 230px;
  }
}

/* Why RUDVED: Growth Control Room */
.why-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 74% 44%, rgba(108, 59, 209, 0.24), transparent 27%),
    radial-gradient(circle at 96% 12%, rgba(223, 140, 97, 0.07), transparent 18%),
    #15101f;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 42%;
  width: 58%;
  height: 82%;
  opacity: 0.14;
  background-image: linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse, #000, transparent 72%);
  mask-image: radial-gradient(ellipse, #000, transparent 72%);
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -68px;
  left: -5%;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50% 50% 0 0;
  background: rgba(245, 240, 255, 0.035);
  pointer-events: none;
}

.why-container {
  position: relative;
  z-index: 1;
  width: min(100%, 1220px);
  margin-inline: auto;
  padding-inline: 32px;
}

.why-control-layout {
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  align-items: center;
  column-gap: 56px;
}

.why-heading {
  max-width: 550px;
  margin: 0;
}

.why-eyebrow,
.why-title-line,
.why-intro,
.why-pillars {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.why-eyebrow {
  margin-bottom: 1.25rem;
  color: #bda5ef;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.why-title {
  font-size: clamp(2.875rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.why-title-line {
  display: block;
  color: var(--color-white);
  white-space: nowrap;
}

.why-title-line + .why-title-line {
  margin-top: 0.1em;
}

.why-title-line:first-child {
  color: var(--color-white);
}

.why-title-line:nth-child(2) {
  color: #bda5ff;
}

.why-intro {
  max-width: 445px;
  margin-top: 22px;
  color: rgba(231, 225, 241, 0.72);
  font-size: 0.96rem;
  line-height: 1.65;
}

.why-pillars {
  max-width: 445px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-pillars i {
  margin-inline: 0.35rem;
  color: #df8c61;
  font-style: normal;
}

.growth-control-room {
  position: relative;
  min-width: 0;
}

.growth-system-stage {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}

.growth-system-visual {
  width: min(100%, 430px);
  margin-inline: auto;
}

.growth-system-map {
  position: relative;
  width: min(100%, 430px);
  height: 350px;
  margin-inline: auto;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 850ms ease 280ms, transform 850ms cubic-bezier(0.22, 1, 0.36, 1) 280ms;
}

.growth-system-map::before {
  content: '';
  position: absolute;
  inset: 17% 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 93, 244, 0.34), rgba(108, 59, 209, 0.09) 47%, transparent 72%);
  filter: blur(22px);
}

.growth-connectors {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.system-orbit {
  fill: none;
  stroke: rgba(211, 194, 247, 0.18);
  stroke-width: 1;
  stroke-dasharray: 4 8;
}

.system-connector {
  fill: none;
  stroke: rgba(196, 171, 246, 0.3);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  transition: stroke 300ms ease, stroke-width 300ms ease, filter 300ms ease, stroke-dashoffset 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.system-connector.is-active {
  stroke: rgba(181, 145, 255, 0.9);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 4px rgba(108, 59, 209, 0.3));
}

.growth-hub {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: 138px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(204, 181, 255, 0.3);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(62, 43, 84, 0.96), rgba(33, 24, 47, 0.96));
  box-shadow: 0 20px 52px rgba(108, 59, 209, 0.28), inset 0 0 0 7px rgba(255, 255, 255, 0.035);
  transform: translate(-50%, -50%);
  text-align: center;
  animation: growthHubBreathe 7s ease-in-out 1.8s infinite;
}

.growth-hub::before,
.growth-hub::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(207, 185, 255, 0.16);
  border-radius: 50%;
}

.growth-hub::before { inset: -12px; }
.growth-hub::after { inset: -23px; border-style: dashed; }

.growth-hub > span {
  color: #c8b0f6;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.growth-hub strong {
  margin-top: 0.45rem;
  color: var(--color-white);
  font: 700 1rem/1.05 var(--font-heading);
  letter-spacing: -0.03em;
}

.growth-hub i {
  width: 7px;
  height: 7px;
  margin-top: 0.75rem;
  border-radius: 50%;
  background: #df8c61;
  box-shadow: 0 0 15px rgba(223, 140, 97, 0.5);
}

@keyframes growthHubBreathe {
  0%, 100% { box-shadow: 0 25px 65px rgba(108, 59, 209, 0.22), inset 0 0 0 7px rgba(255, 255, 255, 0.035); }
  50% { box-shadow: 0 25px 72px rgba(137, 85, 239, 0.34), inset 0 0 0 7px rgba(255, 255, 255, 0.055); }
}

.growth-module-wrap {
  --module-delay: 620ms;
  position: absolute;
  z-index: 3;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition: opacity 620ms ease var(--module-delay), transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--module-delay);
}

.module-strategy { top: 15%; left: 2%; }
.module-seo { top: 0; left: 50%; --module-delay: 720ms; transform: translate(-50%, 14px) scale(0.96); }
.module-ai { top: 15%; right: 2%; --module-delay: 820ms; }
.module-reporting { top: 58%; right: 1%; --module-delay: 920ms; }
.module-conversion { right: 21%; bottom: 0; --module-delay: 1020ms; }
.module-optimization { bottom: 9%; left: 2%; --module-delay: 1120ms; }

.growth-module {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 300ms ease, border-color 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
}

.growth-module span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(181, 145, 255, 0.14);
  color: #c3a8ff;
  font-size: 0.65rem;
  font-weight: 800;
}

.growth-module i {
  display: none;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--color-primary);
  font-style: normal;
}

.growth-module i svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.growth-module strong {
  color: inherit;
  font: 700 0.66rem var(--font-heading);
  white-space: nowrap;
}

.growth-module-wrap.is-active .growth-module,
.growth-module:hover,
.growth-module:focus-visible {
  transform: scale(1.04);
  border-color: rgba(190, 159, 255, 0.44);
  background: rgba(142, 93, 244, 0.14);
  color: var(--color-white);
  box-shadow: 0 17px 39px rgba(0, 0, 0, 0.24);
}

.growth-module:focus-visible {
  outline: 3px solid rgba(108, 59, 209, 0.2);
  outline-offset: 3px;
}

.module-mobile-copy {
  display: none;
}

.module-covers {
  display: none;
}

.system-stat {
  --stat-delay: 1280ms;
  position: absolute;
  z-index: 2;
  display: flex;
  min-width: 96px;
  align-items: center;
  gap: 0.38rem;
  padding: 0.42rem 0.52rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(10px);
  backdrop-filter: blur(12px);
  transition: opacity 600ms ease var(--stat-delay), transform 600ms ease var(--stat-delay);
}

.stat-360 { top: 43%; left: 1%; }
.stat-channels { top: 44%; right: 1%; --stat-delay: 1380ms; }
.stat-data { right: 38%; bottom: 16%; --stat-delay: 1480ms; }

.system-stat strong {
  color: #c3a8ff;
  font: 700 0.94rem var(--font-heading);
  letter-spacing: -0.04em;
}

.system-stat span {
  max-width: 64px;
  color: rgba(235, 230, 243, 0.66);
  font-size: 0.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.growth-detail {
  position: relative;
  z-index: 4;
  right: auto;
  bottom: auto;
  display: grid;
  width: min(100%, 390px);
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  margin: 16px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  backdrop-filter: blur(14px);
  transition: opacity 600ms ease 1580ms, transform 600ms cubic-bezier(0.22, 1, 0.36, 1) 1580ms;
}

.growth-detail.is-updating {
  opacity: 0.45;
  transform: translateY(4px);
}

.growth-detail-number {
  color: #df8c61;
  font: 700 0.72rem var(--font-heading);
  letter-spacing: 0.12em;
}

.growth-detail h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  line-height: 1.15;
  color: var(--color-white);
}

.growth-detail-covers {
  display: block;
  margin-bottom: 0.45rem;
  color: #c3a8ff;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.growth-detail p {
  color: rgba(235, 230, 243, 0.68);
  font-size: 0.83rem;
  line-height: 1.58;
}

.why-section.is-visible .why-eyebrow,
.why-section.is-visible .why-title-line,
.why-section.is-visible .why-intro,
.why-section.is-visible .why-pillars,
.why-section.is-visible .growth-system-map,
.why-section.is-visible .growth-module-wrap,
.why-section.is-visible .system-stat,
.why-section.is-visible .growth-detail {
  opacity: 1;
  transform: none;
}

.why-section.is-visible .why-title-line:first-child { transition-delay: 100ms; }
.why-section.is-visible .why-title-line:nth-child(2) { transition-delay: 190ms; }
.why-section.is-visible .why-title-line:nth-child(3) { transition-delay: 280ms; }
.why-section.is-visible .why-intro { transition-delay: 370ms; }
.why-section.is-visible .why-pillars { transition-delay: 460ms; }
.why-section.is-visible .growth-detail { transform: none; }
.why-section.is-visible .module-seo { transform: translateX(-50%); }
.why-section.is-visible .system-connector { stroke-dashoffset: 0; transition-delay: 450ms, 450ms, 450ms, 430ms; }

@media (max-width: 1280px) and (min-width: 981px) {
  .why-control-layout {
    column-gap: 36px;
  }

  .why-title {
    font-size: clamp(2.55rem, 3.7vw, 2.875rem);
  }

  .growth-system-stage {
    max-width: 450px;
  }

  .growth-system-visual,
  .growth-system-map {
    width: min(100%, 400px);
  }

  .growth-system-map {
    height: 330px;
  }
}

@media (max-width: 980px) {
  .why-container {
    padding-inline: 24px;
  }

  .why-control-layout {
    grid-template-columns: 1fr;
  }

  .why-heading {
    max-width: 760px;
  }

  .growth-control-room {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .why-container {
    padding-inline: 20px;
  }

  .why-section {
    padding: 4.5rem 0;
  }

  .why-section::before {
    display: none;
  }

  .why-title {
    font-size: clamp(2rem, 9vw, 2.375rem);
  }

  .why-title-line,
  .services-title span {
    white-space: normal;
  }

  .why-pillars {
    line-height: 1.8;
  }

  .growth-control-room {
    padding-bottom: 0;
  }

  .growth-system-visual {
    width: 100%;
  }

  .growth-system-map {
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 3rem;
  }

  .growth-system-map::before,
  .growth-connectors {
    display: none;
  }

  .growth-hub {
    position: relative;
    top: auto;
    left: auto;
    width: 165px;
    margin: 0 auto 2rem;
    transform: none;
  }

  .growth-module-wrap,
  .module-seo,
  .module-ai,
  .module-reporting,
  .module-conversion,
  .module-optimization {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    transform: translateY(14px) scale(0.98);
  }

  .why-section.is-visible .module-seo {
    transform: none;
  }

  .growth-module {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
  }

  .growth-module i {
    display: grid;
  }

  .growth-module::after {
    content: '›';
    margin-left: auto;
    color: var(--color-primary);
    font-size: 1.3rem;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 250ms ease;
  }

  .growth-module-wrap.is-active .growth-module::after {
    transform: rotate(90deg);
  }

  .growth-module strong {
    white-space: normal;
  }

  .growth-module-wrap.is-active .growth-module,
  .growth-module:hover,
  .growth-module:focus-visible {
    transform: none;
  }

  .module-mobile-copy,
  .module-covers {
    display: block;
    max-height: 0;
    margin: 0 0.9rem;
    overflow: hidden;
    color: rgba(235, 230, 243, 0.72);
    font-size: 0.86rem;
    line-height: 1.6;
    opacity: 0;
    transition: max-height 350ms ease, margin 350ms ease, opacity 300ms ease;
  }

  .module-covers {
    color: #c3a8ff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .growth-module-wrap.is-active .module-mobile-copy,
  .growth-module-wrap.is-active .module-covers {
    max-height: 130px;
    margin-top: 0.7rem;
    margin-bottom: 0.8rem;
    opacity: 1;
  }

  .system-stat {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    min-width: 0;
    margin-top: 0.25rem;
  }

  .stat-360 {
    margin-top: 1.5rem;
  }

  .system-stat span {
    max-width: none;
  }

  .growth-detail {
    display: none;
  }
}

/* How we work */
.process-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 12% 28%, rgba(108, 59, 209, 0.055), transparent 25%),
    radial-gradient(circle at 76% 55%, rgba(223, 140, 97, 0.045), transparent 22%),
    var(--color-surface);
}

.process-section::after {
  content: '';
  position: absolute;
  z-index: 0;
  right: -5%;
  bottom: -62px;
  left: -5%;
  height: 120px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(226, 212, 250, 0.42), rgba(250, 248, 255, 0.92));
  pointer-events: none;
}

.process-background,
.process-glow,
.process-dots,
.process-curve {
  position: absolute;
  pointer-events: none;
}

.process-background {
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.process-glow {
  border-radius: 50%;
  filter: blur(80px);
}

.process-glow-purple {
  top: 22%;
  left: -9%;
  width: 34vw;
  aspect-ratio: 1;
  background: rgba(108, 59, 209, 0.055);
}

.process-glow-blue {
  top: 8%;
  right: -7%;
  width: 31vw;
  aspect-ratio: 1;
  background: rgba(104, 167, 220, 0.05);
}

.process-glow-peach {
  bottom: 5%;
  left: 38%;
  width: 27vw;
  aspect-ratio: 1;
  background: rgba(238, 154, 111, 0.05);
}

.process-dots {
  top: 13%;
  right: 4%;
  width: 33%;
  height: 47%;
  opacity: 0.12;
  background-image: radial-gradient(rgba(108, 59, 209, 0.24) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse, #000, transparent 72%);
  mask-image: radial-gradient(ellipse, #000, transparent 72%);
}

.process-curve {
  bottom: 5%;
  left: -8%;
  width: 53%;
  height: 24%;
  border: 1px solid rgba(108, 59, 209, 0.08);
  border-radius: 50%;
  transform: rotate(7deg);
}

.process-container {
  position: relative;
  z-index: 1;
}

.process-heading {
  max-width: 900px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-eyebrow {
  margin-bottom: 1.25rem;
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.process-title {
  font-size: clamp(2.875rem, 4.2vw, 3.625rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.process-title span {
  display: block;
  color: var(--color-primary);
}

.process-intro {
  margin-top: 1.5rem;
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.72;
}

.journey-stage {
  position: relative;
  height: 620px;
  margin-top: clamp(3rem, 5vw, 4rem);
}

.journey-path {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.journey-path-line,
.journey-path-glow {
  fill: none;
  stroke: url(#journeyGradient);
  stroke-linecap: round;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}

.journey-path-line {
  stroke-width: 3;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.22, 1, 0.36, 1) 420ms;
}

.journey-path-glow {
  stroke-width: 11;
  opacity: 0.1;
  filter: url(#journeyGlow);
  transition: stroke-dashoffset 1.8s cubic-bezier(0.22, 1, 0.36, 1) 420ms;
}

.process-step {
  --step-accent: #8b63d8;
  --step-soft: rgba(139, 99, 216, 0.13);
  position: absolute;
  z-index: 1;
  width: min(21%, 250px);
  opacity: 0;
  transform: translateY(18px) scale(0.95);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step-discover { left: 1%; top: 44%; }
.process-step-strategize { left: 20%; top: 16%; --step-accent: #689ed2; --step-soft: rgba(104, 158, 210, 0.14); }
.process-step-create { left: 40.5%; top: 47%; --step-accent: #df8c61; --step-soft: rgba(223, 140, 97, 0.14); }
.process-step-launch { left: 62.5%; top: 12%; --step-accent: #c65c99; --step-soft: rgba(198, 92, 153, 0.13); }
.process-step-optimize { right: 0; top: 38%; --step-accent: #6740b4; --step-soft: rgba(103, 64, 180, 0.14); }

.process-marker {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--step-accent) 42%, white);
  border-radius: 50%;
  background: color-mix(in srgb, var(--step-accent) 10%, white);
  color: var(--step-accent);
  box-shadow: 0 13px 32px var(--step-soft);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.process-marker::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid color-mix(in srgb, var(--step-accent) 24%, transparent);
  border-radius: 50%;
}

.process-marker::after {
  content: '';
  position: absolute;
  right: -3px;
  bottom: 7px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  background: var(--step-accent);
}

.process-marker span {
  color: currentColor;
  font: 700 0.78rem var(--font-heading);
  letter-spacing: 0.08em;
}

.process-panel {
  position: relative;
  margin-top: 0.85rem;
  padding: 1.35rem;
  border: 1px solid color-mix(in srgb, var(--step-accent) 17%, transparent);
  border-radius: 20px 20px 20px 7px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(62, 38, 101, 0.07);
  backdrop-filter: blur(12px);
  transition: background-color 240ms ease, box-shadow 240ms ease;
}

.process-step:nth-of-type(even) .process-panel {
  border-radius: 20px 7px 20px 20px;
}

.process-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--step-soft);
  color: var(--step-accent);
  transition: transform 240ms ease;
}

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

.process-panel h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.2rem, 1.6vw, 1.48rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.process-panel p {
  color: var(--color-text-secondary);
  font-size: 0.86rem;
  line-height: 1.62;
}

.process-section.is-visible .process-heading,
.process-section.is-visible .process-step {
  opacity: 1;
  transform: none;
}

.process-section.is-visible .journey-path-line,
.process-section.is-visible .journey-path-glow {
  stroke-dashoffset: 0;
}

.process-section.is-visible .process-step-discover { transition-delay: 620ms; }
.process-section.is-visible .process-step-strategize { transition-delay: 760ms; }
.process-section.is-visible .process-step-create { transition-delay: 900ms; }
.process-section.is-visible .process-step-launch { transition-delay: 1040ms; }
.process-section.is-visible .process-step-optimize { transition-delay: 1180ms; }

@keyframes processDotPulse {
  0% { box-shadow: 0 0 0 0 var(--step-soft); }
  100% { box-shadow: 0 0 0 10px transparent; }
}

@media (hover: hover) and (pointer: fine) {
  .process-step:hover .process-marker {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px color-mix(in srgb, var(--step-accent) 22%, transparent);
  }

  .process-step:hover .process-marker::after {
    animation: processDotPulse 650ms ease-out 1;
  }

  .process-step:hover .process-icon {
    transform: scale(1.06);
  }

  .process-step:hover .process-panel {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 48px color-mix(in srgb, var(--step-accent) 12%, transparent);
  }
}

@media (max-width: 980px) {
  .journey-stage {
    display: grid;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .journey-path {
    display: none;
  }

  .process-step {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    display: grid;
    width: auto;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.9rem;
  }

  .process-step-create,
  .process-step-optimize {
    transform: translateY(18px) scale(0.95);
  }

  .process-panel {
    min-height: 240px;
    margin-top: 0;
  }

  .process-step-optimize {
    grid-column: 1 / -1;
    width: calc(50% - 0.75rem);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .process-section {
    padding: 4.5rem 0;
  }

  .process-dots,
  .process-curve {
    display: none;
  }

  .process-title {
    font-size: clamp(2rem, 9vw, 2.375rem);
  }

  .journey-stage {
    position: relative;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding-left: 0;
  }

  .journey-stage::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 29px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, #8b63d8, #72a8df, #e9a07a, #cf6aa7, #6840b5);
    opacity: 0.45;
  }

  .process-step,
  .process-step-optimize {
    grid-column: 1;
    width: 100%;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .process-marker {
    width: 58px;
    height: 58px;
  }

  .process-panel {
    min-height: 0;
    padding: 1.25rem;
  }
}

/* Ways to work with us */
.engagement-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 8vw, 7.5rem) 0;
  background: var(--color-white);
}

.engagement-container {
  position: relative;
}

.engagement-heading {
  max-width: 720px;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.engagement-eyebrow {
  margin-bottom: 1.25rem;
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.engagement-title {
  font-size: clamp(2.875rem, 4.2vw, 3.625rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.engagement-title span {
  display: block;
}

.engagement-highlight {
  color: var(--color-primary);
}

.engagement-intro {
  max-width: 620px;
  margin-top: 1.55rem;
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.72;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.25rem, 2.3vw, 2rem);
}

.engagement-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 610px;
  overflow: hidden;
  flex-direction: column;
  padding: clamp(1.65rem, 2.8vw, 2.35rem);
  border: 1px solid rgba(108, 59, 209, 0.14);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(57, 35, 92, 0.08);
  transition: opacity 260ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, background-color 280ms ease, box-shadow 280ms ease;
}

.engagement-panel-partnership {
  background: linear-gradient(145deg, rgba(240, 232, 255, 0.93), rgba(253, 251, 255, 0.88));
}

.engagement-panel-project {
  min-height: 590px;
  margin-top: 28px;
  background: linear-gradient(145deg, rgba(255, 247, 241, 0.95), rgba(252, 249, 255, 0.9));
}

.engagement-panel-sprint {
  min-height: 600px;
  margin-top: 10px;
  background: linear-gradient(145deg, rgba(235, 243, 255, 0.92), rgba(247, 241, 255, 0.9));
}

.engagement-art {
  position: absolute;
  z-index: -1;
  top: 62px;
  right: -42px;
  width: 92%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  opacity: 0.12;
  transition: opacity 300ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.engagement-art-loop { color: var(--color-primary); }
.engagement-art-target { color: #df8c61; }
.engagement-art-sprint { color: #6594cf; }

.engagement-panel-top {
  display: flex;
  min-height: 46px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.engagement-number {
  color: var(--color-primary-dark);
  font: 700 1rem var(--font-heading);
  letter-spacing: 0.08em;
}

.engagement-badge {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(108, 59, 209, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--color-primary-dark);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-align: center;
}

.engagement-panel h3 {
  max-width: 310px;
  margin-top: clamp(4.8rem, 8vw, 7rem);
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.engagement-copy {
  margin-top: 1.15rem;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

.engagement-fit {
  margin-top: 1.8rem;
}

.engagement-fit h4 {
  margin-bottom: 0.8rem;
  color: var(--color-text-primary);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.engagement-fit ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.engagement-fit li {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(108, 59, 209, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--color-text-primary);
  font-size: 0.7rem;
  font-weight: 600;
}

.engagement-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 2rem;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
}

.engagement-link span,
.engagement-trust-button span {
  transition: transform 220ms ease;
}

.engagement-trust {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(4rem, 7vw, 6rem);
  padding: 1.5rem clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(108, 59, 209, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 45px rgba(58, 34, 94, 0.06);
}

.engagement-trust > p {
  color: var(--color-primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.engagement-trust h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.engagement-trust-button {
  gap: 0.6rem;
  white-space: nowrap;
}

.engagement-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.engagement-panel.engagement-reveal {
  transform: translateY(24px) scale(0.98);
}

.engagement-section.is-visible .engagement-reveal {
  opacity: 1;
  transform: none;
}

.engagement-section.is-visible .engagement-eyebrow { transition-delay: 0ms; }
.engagement-section.is-visible .engagement-title { transition-delay: 90ms; }
.engagement-section.is-visible .engagement-intro { transition-delay: 180ms; }
.engagement-section.is-visible .engagement-panel:nth-child(1) { transition-delay: 300ms; }
.engagement-section.is-visible .engagement-panel:nth-child(2) { transition-delay: 410ms; }
.engagement-section.is-visible .engagement-panel:nth-child(3) { transition-delay: 520ms; }
.engagement-section.is-visible .engagement-trust { transition-delay: 610ms; }

@media (hover: hover) and (pointer: fine) {
  .engagement-grid:hover .engagement-panel {
    opacity: 0.94;
  }

  .engagement-grid .engagement-panel:hover {
    z-index: 2;
    opacity: 1;
    transform: translateY(-6px);
    border-color: rgba(108, 59, 209, 0.28);
    box-shadow: 0 30px 72px rgba(62, 36, 103, 0.13);
  }

  .engagement-panel:hover .engagement-art {
    opacity: 0.18;
    transform: translate3d(-5px, -3px, 0) scale(1.025);
  }

  .engagement-panel:hover .engagement-link span,
  .engagement-trust-button:hover span {
    transform: translateX(5px);
  }
}

@media (max-width: 980px) {
  .engagement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .engagement-panel,
  .engagement-panel-project,
  .engagement-panel-sprint {
    min-height: 580px;
    margin-top: 0;
  }

  .engagement-panel-sprint {
    grid-column: 1 / -1;
    width: min(100%, calc(50% - 0.65rem));
    justify-self: center;
  }

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

  .engagement-trust > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .engagement-section {
    padding: 4.5rem 0;
  }

  .engagement-heading {
    margin-bottom: 3.25rem;
  }

  .engagement-title {
    font-size: clamp(2rem, 9vw, 2.375rem);
  }

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

  .engagement-panel,
  .engagement-panel-sprint {
    grid-column: auto;
    width: 100%;
    min-height: 0;
    padding: 1.5rem;
  }

  .engagement-panel h3 {
    margin-top: 4.5rem;
  }

  .engagement-link {
    margin-top: 2rem;
  }

  .engagement-trust {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .engagement-trust-button {
    justify-self: center;
  }
}

/* FAQ */
.faq-section {
  position: relative;
  overflow: clip;
  padding: clamp(6.5rem, 8vw, 7.25rem) 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(108, 59, 209, 0.055), transparent 25%),
    var(--color-background);
}

.faq-container {
  display: block;
}

.faq-heading {
  position: relative;
  top: auto;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.faq-eyebrow {
  margin-bottom: 1.25rem;
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.faq-title {
  font-size: clamp(3rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.faq-intro {
  max-width: 680px;
  margin-top: 1.5rem;
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
}

.faq-list {
  width: min(100%, 1100px);
  margin: clamp(3.5rem, 5vw, 4rem) auto 0;
}

.faq-item {
  margin-bottom: 0.95rem;
  overflow: hidden;
  border: 1px solid rgba(108, 59, 209, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 26px rgba(67, 38, 107, 0.035);
  transition: border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.faq-item.is-open {
  border-color: rgba(108, 59, 209, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 32px rgba(108, 59, 209, 0.035), 0 10px 30px rgba(67, 38, 107, 0.05);
}

.faq-item h3 {
  margin: 0;
}

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.625rem;
  border: 0;
  background: transparent;
  color: var(--color-text-primary);
  text-align: left;
  cursor: pointer;
}

.faq-question {
  color: inherit;
  font: 650 clamp(1.0625rem, 1.4vw, 1.1875rem)/1.35 var(--font-heading);
  letter-spacing: -0.025em;
  transition: color 220ms ease, transform 220ms ease;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 300ms ease;
}

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

.faq-item.is-open .faq-question {
  color: var(--color-primary-dark);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-5px);
  transition: grid-template-rows 380ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease, transform 300ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 850px;
  padding: 0 1.625rem 1.5rem;
  color: var(--color-text-secondary);
  font-size: 0.96rem;
  line-height: 1.72;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: none;
}

.faq-trigger:focus-visible {
  border-radius: 10px;
  outline: 3px solid rgba(108, 59, 209, 0.2);
  outline-offset: 4px;
}

.faq-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-section.is-visible .faq-reveal {
  opacity: 1;
  transform: none;
}

.faq-section.is-visible .faq-eyebrow { transition-delay: 0ms; }
.faq-section.is-visible .faq-title { transition-delay: 90ms; }
.faq-section.is-visible .faq-intro { transition-delay: 180ms; }
.faq-section.is-visible .faq-item:nth-child(1) { transition-delay: 280ms; }
.faq-section.is-visible .faq-item:nth-child(2) { transition-delay: 340ms; }
.faq-section.is-visible .faq-item:nth-child(3) { transition-delay: 400ms; }
.faq-section.is-visible .faq-item:nth-child(4) { transition-delay: 460ms; }
.faq-section.is-visible .faq-item:nth-child(5) { transition-delay: 520ms; }
.faq-section.is-visible .faq-item:nth-child(6) { transition-delay: 580ms; }
.faq-section.is-visible .faq-item:nth-child(7) { transition-delay: 640ms; }
.faq-section.is-visible .faq-item:nth-child(8) { transition-delay: 700ms; }

@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
    border-color: rgba(108, 59, 209, 0.25);
  }

  .faq-trigger:hover .faq-question {
    color: var(--color-primary-dark);
    transform: none;
  }

  .faq-trigger:hover .faq-chevron {
    transform: translateY(2px);
  }

  .faq-item.is-open .faq-trigger:hover .faq-chevron {
    transform: rotate(180deg) translateY(-2px);
  }
}

@media (max-width: 980px) {
  .faq-section {
    padding: 5.5rem 0;
  }

  .faq-heading {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .faq-section {
    padding: 4.5rem 0;
  }

  .faq-title {
    font-size: clamp(2rem, 9vw, 2.375rem);
  }

  .faq-trigger {
    gap: 1rem;
    padding: 1.25rem 1.125rem;
  }

  .faq-question {
    font-size: clamp(1.06rem, 4.8vw, 1.18rem);
  }

  .faq-item {
    border-radius: 15px;
  }

  .faq-answer p {
    padding: 0 1.125rem 1.25rem;
    font-size: 0.92rem;
  }
}

/* Footer */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--color-white);
  background: linear-gradient(145deg, #100d16 0%, #171020 55%, #120d19 100%);
}

.footer-glow {
  position: absolute;
  z-index: -1;
  top: -18%;
  right: -8%;
  width: min(58vw, 780px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 59, 209, 0.2), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 1;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(3rem, 5vw, 4rem);
  padding: clamp(6.25rem, 8vw, 7.5rem) 0 clamp(5rem, 6vw, 5.625rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-eyebrow {
  margin-bottom: 1.25rem;
  color: #bda5ef;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.footer-cta-title {
  max-width: 760px;
  color: var(--color-white);
  font-size: clamp(3rem, 5vw, 4.375rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}

.footer-cta-title span {
  display: block;
  color: inherit;
}

.footer-cta-title .footer-cta-highlight {
  color: #bda5ff;
}

.footer-cta-intro {
  max-width: 650px;
  margin-top: 1.6rem;
  color: rgba(236, 231, 242, 0.68);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.72;
}

.footer-cta-actions {
  display: flex;
  min-width: 220px;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-primary-cta {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding-inline: 2rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 12px 35px rgba(108, 59, 209, 0.25);
  font-family: var(--font-heading);
  font-weight: 700;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.footer-primary-cta span,
.footer-text-link span,
.footer-conversation span {
  color: inherit;
  transition: transform 220ms ease;
}

.footer-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 220ms ease;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(120px, 0.75fr) minmax(190px, 1fr) minmax(160px, 1fr);
  gap: clamp(3rem, 5vw, 4.375rem);
  padding: 3.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 350px;
}

.footer-logo-link {
  display: inline-block;
  width: min(100%, 170px);
  margin-bottom: 1.35rem;
}

.footer-logo {
  width: 100%;
  height: auto;
  filter: invert(1);
  mix-blend-mode: screen;
}

.footer-brand > p:not(.footer-pillars) {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-pillars {
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.footer-pillars i {
  margin-inline: 0.25rem;
  color: #df8c61;
  font-style: normal;
}

.footer-column h3 {
  margin-bottom: 1.15rem;
  color: #bda5ef;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.91rem;
  line-height: 2;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-column li a {
  display: inline-block;
}

.footer-conversation {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0 7rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.76rem;
}

.footer-bottom span {
  color: inherit;
}

.footer-signature {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -0.17em;
  left: 0;
  color: rgba(255, 255, 255, 0.018);
  font: 700 clamp(5.625rem, 16vw, 13.75rem)/0.72 var(--font-heading);
  letter-spacing: -0.06em;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
}

.footer-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-cta-actions.footer-reveal {
  transform: translateY(18px) scale(0.98);
}

.site-footer.is-visible .footer-reveal {
  opacity: 1;
  transform: none;
}

.site-footer.is-visible .footer-eyebrow { transition-delay: 0ms; }
.site-footer.is-visible .footer-cta-title { transition-delay: 90ms; }
.site-footer.is-visible .footer-cta-intro { transition-delay: 180ms; }
.site-footer.is-visible .footer-cta-actions { transition-delay: 260ms; }
.site-footer.is-visible .footer-main > :nth-child(1) { transition-delay: 340ms; }
.site-footer.is-visible .footer-main > :nth-child(2) { transition-delay: 410ms; }
.site-footer.is-visible .footer-main > :nth-child(3) { transition-delay: 480ms; }
.site-footer.is-visible .footer-main > :nth-child(4) { transition-delay: 550ms; }
.site-footer.is-visible .footer-bottom { transition-delay: 620ms; }

@media (hover: hover) and (pointer: fine) {
  .footer-primary-cta:hover {
    background: #7746dc;
    box-shadow: 0 16px 42px rgba(108, 59, 209, 0.36);
    transform: translateY(-2px);
  }

  .footer-primary-cta:hover span {
    transform: translate(3px, -3px);
  }

  .footer-text-link:hover,
  .footer-column a:hover {
    color: var(--color-white);
  }

  .footer-text-link:hover span,
  .footer-conversation:hover span {
    transform: translateX(3px);
  }

  .footer-column li a:hover {
    transform: translateX(3px);
  }
}

.site-footer a:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(189, 165, 255, 0.42);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .footer-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-cta-actions {
    min-width: 0;
  }

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

@media (max-width: 620px) {
  .footer-cta {
    gap: 2.25rem;
    padding: 4.5rem 0 4rem;
  }

  .footer-cta-title {
    font-size: clamp(2.375rem, 11vw, 2.875rem);
  }

  .footer-primary-cta {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    padding: 3.25rem 0;
  }

  .footer-logo-link {
    width: 150px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-bottom: 5rem;
  }

  .footer-signature {
    font-size: 5.25rem;
  }
}

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

  .reveal-item,
  .hero-portrait.is-visible,
  .hero-background,
  .hero-blob,
  .hero-spark,
  .portrait-glow,
  .scroll-line::after {
    animation: none !important;
    transition: none !important;
  }

  .tools-marquee {
    min-height: 0;
    padding: 38px var(--space-sm) 34px;
  }

  .tools-marquee-window {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .tools-marquee-track {
    display: block;
    width: 100%;
    animation: none;
    transform: none;
  }

  .tools-logo-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1rem;
    padding-right: 0;
  }

  .tools-logo-group[aria-hidden="true"] {
    display: none;
  }

  .engagement-reveal,
  .engagement-panel.engagement-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .engagement-art,
  .engagement-link span,
  .engagement-trust-button span {
    transition: none;
  }

  .faq-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-answer,
  .faq-chevron,
  .faq-question {
    transition: none;
  }

  .footer-reveal,
  .footer-cta-actions.footer-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .footer-primary-cta,
  .footer-primary-cta span,
  .footer-text-link,
  .footer-text-link span,
  .footer-column a,
  .footer-conversation span {
    transition: none;
  }

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

  .hero-background,
  .portrait-glow {
    opacity: 1;
  }

  .service-reveal,
  .service-card.service-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .work-heading-reveal,
  .case-study-image,
  .case-study-content,
  .case-metric,
  .why-reveal,
  .why-card-featured.why-reveal,
  .process-heading,
  .process-step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .journey-path-line,
  .journey-path-glow {
    stroke-dashoffset: 0;
    transition: none;
  }

  .why-eyebrow,
  .why-title-line,
  .why-intro,
  .why-pillars,
  .growth-system-map,
  .growth-module-wrap,
  .system-stat {
    opacity: 1;
    transition: none;
  }

  .growth-system-map,
  .growth-module-wrap,
  .system-stat {
    transform: none;
  }

  .module-seo {
    transform: translateX(-50%);
  }

  .growth-hub {
    animation: none;
  }

  .system-connector {
    stroke-dashoffset: 0;
    transition: none;
  }

  .module-mobile-copy,
  .growth-detail {
    transition: none;
  }
}
