@import url("https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.2.5/index.css");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap");

:root {
  --background: 220 42% 3%;
  --surface: 220 22% 7%;
  --surface-strong: 220 20% 10%;
  --foreground: 40 18% 94%;
  --muted: 38 10% 68%;
  --accent-purple: 266 99% 63%;
  --accent-cyan: 193 78% 61%;
  --accent-deep: 236 81% 33%;
  --accent: var(--accent-purple);
  --accent-soft: var(--accent-cyan);
  --accent-dark: var(--accent-deep);
  --border: 238 68% 72%;
  --max: 1180px;
  --page-gutter: clamp(24px, 5vw, 64px);
  --section-y: clamp(104px, 10vw, 144px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: hsl(var(--background));
  overflow-x: clip;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, hsl(var(--accent-cyan) / 0.1), transparent 26rem),
    hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: "Geist Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

.site-shell {
  position: relative;
  overflow: visible;
  background:
    linear-gradient(180deg, transparent 0, hsl(var(--background)) 18%),
    hsl(var(--background));
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

.orb-background {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.96;
  pointer-events: none;
}

.orb-background canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-blur {
  position: absolute;
  top: calc(50% + var(--parallax-y, 0px));
  left: 50%;
  z-index: 1;
  width: 984px;
  max-width: 92vw;
  height: 527px;
  pointer-events: none;
  background: hsl(220 35% 2% / 0.72);
  filter: blur(82px);
  opacity: 0.72;
  transform: translate(-50%, -50%);
}

.hero-orb-glow {
  position: absolute;
  top: calc(48% + var(--parallax-y, 0px));
  left: calc(50% - 66px);
  z-index: 4;
  width: 190px;
  height: 190px;
  pointer-events: none;
  background: radial-gradient(circle, hsl(var(--accent-cyan) / 0.2), hsl(var(--accent-purple) / 0.1) 34%, transparent 70%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
}

.navbar {
  position: relative;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--page-gutter);
}

.text-logo,
.footer-logo {
  font-family: "Archivo Black", "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.024em;
}

.navbar .text-logo,
.site-footer .footer-logo {
  font-family: "Archivo Black", "General Sans", "Geist Sans", system-ui, sans-serif !important;
  font-weight: 400 !important;
}

.text-logo {
  min-width: 180px;
}

.logo-accent {
  color: transparent;
  background: linear-gradient(140deg, #4cc2e9 8%, #9c43fe 52%, #101499 88%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 18px hsl(var(--accent-purple) / 0.36);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: hsl(var(--muted));
  font-size: 14px;
  font-weight: 600;
}

.nav-mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: hsl(var(--muted));
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.nav-mega-trigger:hover,
.nav-mega-trigger[aria-expanded="true"] {
  color: hsl(var(--accent-soft));
}

.nav-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-mega-trigger[aria-expanded="true"] .nav-chevron,
.mobile-solutions-toggle[aria-expanded="true"] .nav-chevron {
  transform: translateY(2px) rotate(225deg);
}

.desktop-nav a,
.mobile-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
  color: hsl(var(--accent-soft));
}

.desktop-nav a.is-active,
.desktop-nav a[aria-current="page"],
.nav-mega-trigger.is-active,
.mobile-nav a.is-active,
.mobile-nav a[aria-current="page"] {
  color: hsl(var(--accent-soft));
  font-weight: 800;
  text-shadow: 0 0 18px hsl(var(--accent-cyan) / 0.26);
}

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

.nav-actions {
  display: flex;
  min-width: 180px;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.navbar-divider {
  position: relative;
  z-index: 20;
  height: 1px;
  margin-top: 3px;
  background: linear-gradient(to right, transparent, hsl(var(--accent-cyan) / 0.28), transparent);
}

.mega-menu {
  position: absolute;
  top: 86px;
  left: 50%;
  z-index: 28;
  width: min(calc(100% - (var(--page-gutter) * 2)), 980px);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mega-menu.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0);
}

.mega-menu-inner {
  border: 1px solid hsl(var(--border) / 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 8%, hsl(var(--accent-cyan) / 0.08), transparent 20rem),
    hsl(220 36% 5% / 0.96);
  padding: 24px;
  box-shadow: 0 34px 110px hsl(0 0% 0% / 0.46), inset 0 1px 1px hsl(0 0% 100% / 0.08);
  backdrop-filter: blur(14px);
}

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

.mega-menu-link {
  position: relative;
  display: block;
  border-radius: 16px;
  padding: 16px 18px 16px 20px;
  color: hsl(var(--foreground));
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.mega-menu-link::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 1px;
  background: hsl(var(--accent-cyan) / 0);
  transition: background 180ms ease;
}

.mega-menu-link span {
  display: block;
  color: hsl(var(--accent-soft));
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.mega-menu-link strong {
  display: block;
  margin-top: 8px;
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.014em;
}

.mega-menu-link p {
  margin: 7px 0 0;
  color: hsl(var(--muted));
  font-size: 14px;
  line-height: 1.55;
}

.mega-menu-link:hover,
.mega-menu-link:focus-visible {
  background: hsl(0 0% 100% / 0.035);
  color: hsl(var(--foreground));
  transform: translateX(4px);
}

.mega-menu-link:hover::before,
.mega-menu-link:focus-visible::before {
  background: hsl(var(--accent-cyan) / 0.55);
}

.mega-menu-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  border-top: 1px solid hsl(var(--border) / 0.14);
  padding: 18px 18px 0;
  color: hsl(var(--foreground));
  font-weight: 800;
}

.mega-menu-all span {
  color: hsl(var(--accent-soft));
  transition: transform 180ms ease;
}

.mega-menu-all:hover span,
.mega-menu-all:focus-visible span {
  transform: translateX(4px);
}

.glass-button,
.primary-button,
.secondary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  white-space: nowrap;
  isolation: isolate;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.glass-button::after,
.primary-button::after,
.secondary-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      -30deg,
      hsl(0 0% 100% / 0) 58%,
      hsl(0 0% 100% / 0.34) 70%,
      hsl(0 0% 100% / 0) 82%,
      hsl(0 0% 100% / 0) 100%
    );
  background-repeat: no-repeat;
  background-size: 260% 260%;
  background-position: -120% -120%;
  transition: background-position 800ms ease;
}

.glass-button:hover::after,
.primary-button:hover::after,
.secondary-button:hover::after {
  background-position: 120% 120%;
}

.glass-button {
  min-height: 44px;
  padding: 0 22px;
  color: hsl(var(--foreground));
  font-size: 14px;
  font-weight: 700;
}

.glass-button:hover,
.secondary-button:hover {
  border-color: hsl(var(--accent-cyan) / 0.56);
  box-shadow: 0 0 32px hsl(var(--accent-purple) / 0.14);
  transform: translateY(-2px);
}

.primary-button {
  min-height: 58px;
  padding: 0 28px;
  background: linear-gradient(135deg, #4cc2e9, #9c43fe 48%, #101499);
  color: hsl(220 40% 5%);
  font-weight: 800;
  box-shadow: inset 0 1px 1px hsl(0 0% 100% / 0.62), 0 24px 70px hsl(var(--accent-purple) / 0.2);
}

.primary-button:hover {
  box-shadow: inset 0 1px 1px hsl(0 0% 100% / 0.72), 0 32px 92px hsl(var(--accent-cyan) / 0.26);
  transform: translateY(-2px);
}

.secondary-button {
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid hsl(var(--border) / 0.2);
  background: hsl(0 0% 100% / 0.02);
  color: hsl(var(--foreground));
  font-weight: 700;
}

.liquid-glass,
.glass-card,
.glass-button {
  position: relative;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.2);
  background: linear-gradient(180deg, hsl(0 0% 100% / 0.055), hsl(0 0% 100% / 0.018));
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px hsl(0 0% 100% / 0.1);
}

.liquid-glass::before,
.glass-card::before,
.glass-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    180deg,
    hsl(0 0% 100% / 0.38) 0%,
    hsl(var(--accent-cyan) / 0.2) 24%,
    hsl(0 0% 100% / 0) 48%,
    hsl(var(--accent-purple) / 0.14) 78%,
    hsl(0 0% 100% / 0.28) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
}

.mobile-menu-button span {
  position: absolute;
  width: 17px;
  height: 1.5px;
  border-radius: 99px;
  background: hsl(var(--foreground));
  transition: transform 220ms var(--ease);
}

.mobile-menu-button span:first-child {
  transform: translateY(-4px);
}

.mobile-menu-button span:last-child {
  transform: translateY(4px);
}

.menu-open .mobile-menu-button span:first-child {
  transform: rotate(45deg);
}

.menu-open .mobile-menu-button span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 82px;
  right: 20px;
  z-index: 30;
  display: none;
  width: min(300px, calc(100vw - 40px));
  flex-direction: column;
  gap: 8px;
  border: 1px solid hsl(var(--border) / 0.18);
  border-radius: 22px;
  background: hsl(220 35% 5% / 0.92);
  padding: 16px;
  color: hsl(var(--foreground));
  box-shadow: 0 30px 90px hsl(0 0% 0% / 0.44);
  backdrop-filter: blur(18px);
}

.mobile-nav a,
.mobile-solutions-toggle {
  border-radius: 14px;
  padding: 13px 14px;
  color: hsl(var(--muted));
  font-weight: 700;
}

.mobile-solutions-toggle {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.mobile-solutions-panel {
  display: grid;
  max-height: 0;
  overflow: hidden;
  gap: 2px;
  padding-left: 10px;
  transition: max-height 240ms ease;
}

.mobile-solutions-panel.is-open {
  max-height: 420px;
}

.mobile-solutions-panel a {
  min-height: 44px;
  padding: 11px 14px;
  color: hsl(var(--foreground) / 0.72);
  font-size: 13px;
}

.mobile-nav-cta {
  margin-top: 4px;
  border: 1px solid hsl(var(--accent-cyan) / 0.22);
  background: hsl(0 0% 100% / 0.04);
  color: hsl(var(--foreground)) !important;
}

.menu-open .mobile-nav {
  display: flex;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  padding: 72px var(--page-gutter) 136px;
  text-align: center;
}

.hero-title {
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "Archivo Black", "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(180px, 16.6vw, 220px);
  font-weight: 400;
  letter-spacing: -0.024em;
  line-height: 1.02;
}

.split-title {
  position: relative;
  display: inline-flex;
  justify-content: center;
  overflow: visible;
  perspective: 900px;
  white-space: nowrap;
  will-change: transform, opacity;
}

.shiny-title::after {
  content: attr(data-split-text);
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  background-image: linear-gradient(
    120deg,
    hsl(0 0% 100% / 0) 0%,
    hsl(0 0% 100% / 0) 34%,
    hsl(0 0% 100% / 0.94) 50%,
    hsl(193 78% 82% / 0.64) 58%,
    hsl(0 0% 100% / 0) 66%,
    hsl(0 0% 100% / 0) 100%
  );
  background-size: 200% auto;
  background-position: 150% center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  text-shadow: 0 0 34px hsl(var(--accent-cyan) / 0.22);
  animation: shiny-title-sweep 4.6s linear infinite;
}

.split-title.is-split-visible.shiny-title::after {
  opacity: 1;
}

.shiny-title:hover::after {
  animation-play-state: paused;
}

.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.34em) rotateX(72deg);
  transform-origin: 50% 82%;
  filter: blur(14px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease),
    filter 760ms var(--ease);
  transition-delay: calc(var(--char-index) * 82ms);
  will-change: transform, opacity, filter;
}

.split-title.is-split-visible .split-char {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
  filter: blur(0);
}

.accent-letter {
  position: relative;
  color: transparent;
  background: linear-gradient(140deg, #4cc2e9 8%, #9c43fe 52%, #101499 88%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 42px hsl(var(--accent-purple) / 0.34);
}

.hero-subtitle {
  max-width: 460px;
  margin: 24px 0 0;
  color: hsl(var(--muted));
  font-size: 18px;
  line-height: 1.8;
}

.gradient-text {
  display: inline-block;
  background-image: linear-gradient(
    90deg,
    hsl(var(--muted)) 0%,
    #4cc2e9 24%,
    #9c43fe 50%,
    #d8f7ff 72%,
    hsl(var(--muted)) 100%
  );
  background-size: 300% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-text-flow 8s ease-in-out infinite alternate;
}

.gradient-text:hover {
  animation-play-state: paused;
}

.hero-buttons {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: visible;
  margin: 8px 0;
  padding: 8px 4px;
}

.service-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 12;
  display: flex;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
  margin: 0 auto;
  align-items: center;
  gap: 48px;
  padding-bottom: 40px;
}

.marquee-intro {
  flex: 0 0 auto;
  margin: 0;
  color: hsl(var(--muted));
  font-size: 14px;
  line-height: 1.45;
}

.marquee-window {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: service-marquee 20s linear infinite;
}

.service-set {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
}

.service-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: hsl(var(--foreground));
  font-size: 16px;
  font-weight: 700;
}

.service-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  border-radius: 8px;
  color: hsl(var(--accent-soft));
  font-size: 11px;
  font-weight: 800;
}

.section {
  position: relative;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
  margin: 0 auto;
  padding: var(--section-y) 0;
  overflow: visible;
}

.section-copy,
.section-heading {
  max-width: 860px;
  min-width: 0;
}

.section-copy,
.section-heading,
.manifesto-content,
.final-panel {
  overflow: visible;
}

.section-copy.reveal-item,
.section-heading.reveal-item,
.manifesto-content.reveal-item,
.final-panel.reveal-item {
  clip-path: none;
}

.section-copy,
.section-heading,
.manifesto-content {
  padding: 12px 0 18px;
}

.section h2,
.manifesto-section h2,
.final-panel h2 {
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(44px, 6.4vw, 88px);
  font-weight: 400;
  letter-spacing: -0.024em;
  line-height: 1.1;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.section-copy p,
.section-heading + p,
.manifesto-section p,
.final-panel p {
  color: hsl(var(--muted));
}

.manifesto-section h2 span {
  display: block;
}

.section-copy > p {
  max-width: 640px;
  margin: 26px 0 0;
  font-size: 19px;
  line-height: 1.8;
}

.section > *,
.hero-content > *,
.final-panel > *,
.glass-card > *,
.site-footer > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: hsl(var(--accent-soft));
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
  overflow: visible;
}

.context-grid[data-context-bento],
.differentials-grid[data-context-bento] {
  display: grid;
  align-items: stretch;
  min-height: 0;
  padding: 0;
  margin-right: 0;
  margin-left: 0;
}

.context-effect-card {
  min-width: 0;
  min-height: clamp(220px, 17vw, 280px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(16px, 1.6vw, 22px);
  padding: clamp(32px, 3vw, 44px);
  overflow: visible;
  cursor: default;
  background:
    radial-gradient(circle at 50% 28%, hsl(var(--accent-cyan) / 0.1), transparent 34%),
    radial-gradient(circle at 84% 82%, hsl(var(--accent-purple) / 0.1), transparent 36%),
    linear-gradient(145deg, hsl(221 38% 8% / 0.94), hsl(240 44% 4% / 0.92));
  transform-origin: center;
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 520ms ease,
    border-color 520ms ease,
    background 520ms ease;
}

.context-effect-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, hsl(0 0% 100% / 0.08), transparent 22%),
    radial-gradient(circle at var(--context-x, 50%) var(--context-y, 42%), hsl(var(--accent-cyan) / 0.26), transparent 30%),
    linear-gradient(135deg, hsl(var(--accent-cyan) / 0.12), transparent 42%, hsl(var(--accent-purple) / 0.16));
  opacity: 0.28;
  transform: scale(0.98);
  -webkit-mask-image: none;
  mask-image: none;
  transition: opacity 520ms ease, transform 720ms cubic-bezier(0.25, 1, 0.5, 1);
}

.context-grid[data-context-bento].is-interacting .context-effect-card:not(.is-active),
.differentials-grid[data-context-bento].is-interacting .context-effect-card:not(.is-active) {
  opacity: 0.88;
  transform: none;
}

.context-effect-card.is-active {
  border-color: hsl(var(--accent-cyan) / 0.36);
  background:
    radial-gradient(circle at var(--context-x, 54%) var(--context-y, 34%), hsl(var(--accent-cyan) / 0.22), transparent 28%),
    radial-gradient(circle at 88% 84%, hsl(var(--accent-purple) / 0.2), transparent 34%),
    linear-gradient(145deg, hsl(222 42% 9% / 0.98), hsl(241 48% 5% / 0.96));
  box-shadow: 0 30px 90px hsl(var(--accent-cyan) / 0.12), inset 0 1px 1px hsl(0 0% 100% / 0.16);
  transform: translateY(-4px);
}

.context-effect-card.is-active::after {
  opacity: 0.74;
  transform: scale(1.04);
}

.context-effect-card h3,
.context-effect-card p {
  transition: transform 520ms cubic-bezier(0.25, 1, 0.5, 1), opacity 420ms ease, color 420ms ease;
}

.context-effect-card.is-active h3 {
  color: hsl(var(--foreground));
  transform: none;
}

.context-effect-card.is-active p {
  color: hsl(var(--foreground) / 0.78);
  transform: none;
}

.context-effect-card h3 {
  max-width: 18ch;
  margin-top: 0;
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.context-effect-card p {
  max-width: 38ch;
  margin-top: 0;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.62;
}

.glass-card {
  border-radius: 26px;
  padding: 28px;
  isolation: isolate;
  overflow: visible;
  transition: transform 280ms var(--ease), border-color 280ms ease, box-shadow 280ms ease, background 280ms ease;
}

.glass-card h3 {
  position: relative;
  margin: 22px 0 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.018em;
}

.glass-card p {
  position: relative;
  margin: 14px 0 0;
  color: hsl(var(--muted));
  font-size: 15px;
  line-height: 1.7;
}

.context-effect-card h3 {
  max-width: 18ch;
  margin-top: 0;
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.context-effect-card p {
  max-width: 38ch;
  margin-top: 0;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.62;
}

.context-grid .context-effect-card {
  --context-card-pad: clamp(32px, 3vw, 44px);
  min-height: clamp(220px, 17vw, 280px);
  padding: var(--context-card-pad);
}

.context-grid .context-effect-card h3 {
  margin-top: 0;
}

.context-grid .context-effect-card p {
  max-width: 38ch;
}

.glass-card:hover {
  border-color: hsl(var(--accent-cyan) / 0.42);
  box-shadow: 0 26px 80px hsl(var(--accent-cyan) / 0.09), inset 0 1px 1px hsl(0 0% 100% / 0.14);
  transform: translateY(-7px);
}

.glass-card::before {
  z-index: 1;
}

.glass-card > *,
.final-panel > *,
.solar-card > * {
  position: relative;
  z-index: 2;
}

.final-panel,
.solar-card {
  isolation: isolate;
  overflow: visible;
}

.context-grid .context-effect-card::after,
.differentials-grid .context-effect-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, hsl(0 0% 100% / 0.08), transparent 22%),
    radial-gradient(circle at var(--context-x, 50%) var(--context-y, 42%), hsl(var(--accent-cyan) / 0.26), transparent 30%),
    linear-gradient(135deg, hsl(var(--accent-cyan) / 0.12), transparent 42%, hsl(var(--accent-purple) / 0.16));
  opacity: 0.28;
  transform: scale(0.98);
  -webkit-mask-image: none;
  mask-image: none;
  transition: opacity 520ms ease, transform 720ms cubic-bezier(0.25, 1, 0.5, 1);
}

.context-grid .context-effect-card.is-active,
.differentials-grid .context-effect-card.is-active {
  transform: translateY(-4px);
}

.context-grid .context-effect-card.is-active::after,
.differentials-grid .context-effect-card.is-active::after {
  opacity: 0.74;
  transform: scale(1.04);
}

.solutions-section {
  padding-top: 72px;
  padding-bottom: 96px;
}

.scroll-stack {
  position: relative;
  margin-top: 64px;
  padding: 9vh 0 28rem;
  overflow: visible;
  perspective: 1200px;
}

.bento-card {
  display: flex;
  min-height: clamp(300px, 34vh, 380px);
  flex-direction: column;
  justify-content: flex-end;
}

.scroll-stack-card {
  width: 100%;
  max-width: none;
  margin: 0 auto 112px;
  padding: clamp(30px, 4.5vw, 58px);
  border-color: hsl(var(--border) / 0.28);
  box-shadow: 0 34px 110px hsl(0 0% 0% / 0.38), inset 0 1px 1px hsl(0 0% 100% / 0.14);
  transform-origin: top center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}

.scroll-stack-card > * {
  position: relative;
  z-index: 3;
}

.scroll-stack-card::after {
  display: none;
}

.scroll-stack-card::before {
  z-index: 2;
}

.scroll-stack-card:nth-child(1) {
  background:
    radial-gradient(circle at 84% 24%, hsl(var(--accent-cyan) / 0.18), transparent 22rem),
    linear-gradient(135deg, hsl(220 32% 10% / 0.92), hsl(220 38% 5% / 0.96));
}

.scroll-stack-card:nth-child(2) {
  background:
    radial-gradient(circle at 82% 26%, hsl(var(--accent-purple) / 0.18), transparent 22rem),
    linear-gradient(135deg, hsl(220 32% 10% / 0.92), hsl(220 38% 5% / 0.96));
}

.scroll-stack-card:nth-child(3) {
  background:
    radial-gradient(circle at 82% 22%, hsl(var(--accent-deep) / 0.3), transparent 24rem),
    radial-gradient(circle at 18% 78%, hsl(var(--accent-cyan) / 0.14), transparent 18rem),
    linear-gradient(135deg, hsl(220 32% 10% / 0.92), hsl(220 38% 5% / 0.96));
}

.scroll-stack-card:nth-child(4) {
  background:
    radial-gradient(circle at 78% 24%, hsl(var(--accent-cyan) / 0.15), transparent 20rem),
    radial-gradient(circle at 18% 84%, hsl(var(--accent-purple) / 0.12), transparent 18rem),
    linear-gradient(135deg, hsl(220 32% 10% / 0.92), hsl(220 38% 5% / 0.96));
}

.scroll-stack-card:nth-child(5) {
  background:
    radial-gradient(circle at 82% 22%, hsl(var(--accent-purple) / 0.15), transparent 22rem),
    linear-gradient(135deg, hsl(220 32% 10% / 0.92), hsl(220 38% 5% / 0.96));
}

.scroll-stack-card:nth-child(6) {
  background:
    radial-gradient(circle at 78% 24%, hsl(var(--accent-cyan) / 0.16), transparent 22rem),
    radial-gradient(circle at 16% 78%, hsl(var(--accent-deep) / 0.22), transparent 18rem),
    linear-gradient(135deg, hsl(220 32% 10% / 0.92), hsl(220 38% 5% / 0.96));
}

.scroll-stack-card h3 {
  max-width: 680px;
  margin-top: 28px;
  font-size: clamp(38px, 5.3vw, 68px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.024em;
}

.scroll-stack-card p {
  max-width: 620px;
  margin-top: 20px;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.65;
}

.solution-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.solution-kicker {
  color: hsl(var(--accent-soft));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.solution-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  transform: translateZ(0);
}

.solution-tags span {
  border: 1px solid hsl(var(--border) / 0.16);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.035);
  padding: 9px 13px;
  color: hsl(var(--foreground) / 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.scroll-stack-end {
  width: 100%;
  height: 1px;
}

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

.process-section .section-heading {
  max-width: 960px;
  margin: 0 0 18px;
  padding: 10px 0 16px;
  overflow: visible;
  clip-path: none;
}

.process-section .section-heading h2 {
  line-height: 1.1;
}

.beam-process {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  margin-top: clamp(56px, 7vw, 88px);
  overflow: visible;
}

.beam-circle {
  position: relative;
  width: min(100%, clamp(360px, 42vw, 560px));
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, hsl(var(--accent-cyan) / 0.1), transparent 22%),
    radial-gradient(circle at 50% 50%, hsl(var(--accent-purple) / 0.08), transparent 46%),
    radial-gradient(circle at 50% 50%, hsl(var(--accent-deep) / 0.32), transparent 68%);
  filter: drop-shadow(0 28px 80px hsl(var(--accent-cyan) / 0.08));
}

.beam-circle::before,
.beam-circle::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: inherit;
  pointer-events: none;
}

.beam-circle::before {
  border: 1px solid hsl(var(--accent-cyan) / 0.12);
  box-shadow:
    inset 0 0 42px hsl(var(--accent-cyan) / 0.06),
    0 0 64px hsl(var(--accent-purple) / 0.08);
}

.beam-circle::after {
  inset: 20%;
  background: conic-gradient(from 90deg, transparent, hsl(var(--accent-cyan) / 0.18), transparent 36%, hsl(var(--accent-purple) / 0.16), transparent 72%);
  filter: blur(16px);
  opacity: 0.72;
  animation: beam-rotate 16s linear infinite;
}

.beam-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: grid;
  width: clamp(104px, 11vw, 136px);
  height: clamp(104px, 11vw, 136px);
  place-items: center;
  border: 1px solid hsl(var(--accent-cyan) / 0.38);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 38%, hsl(var(--accent-cyan) / 0.2), transparent 42%),
    linear-gradient(145deg, hsl(222 40% 8% / 0.98), hsl(241 48% 4% / 0.96));
  box-shadow:
    0 0 42px hsl(var(--accent-cyan) / 0.18),
    inset 0 1px 0 hsl(0 0% 100% / 0.16);
  transform: translate(-50%, -50%);
}

.beam-core-pulse {
  position: absolute;
  inset: -18px;
  border: 1px solid hsl(var(--accent-purple) / 0.18);
  border-radius: inherit;
  animation: beam-pulse 3.8s ease-in-out infinite;
}

.beam-core-label {
  position: relative;
  z-index: 2;
  font-family: "Archivo Black", "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.026em;
}

.beam-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: var(--beam-size);
  aspect-ratio: 1;
  border: clamp(1px, 0.2vw, 2px) solid color-mix(in srgb, var(--beam-color), transparent 68%);
  border-radius: 999px;
  box-shadow:
    inset 0 0 20px color-mix(in srgb, var(--beam-color), transparent 90%),
    0 0 18px color-mix(in srgb, var(--beam-color), transparent 88%);
  transform: translate(-50%, -50%);
  animation: beam-orbit var(--beam-speed) linear infinite;
}

.beam-orbit::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0 68%, color-mix(in srgb, var(--beam-color), transparent 26%), transparent 82% 100%);
  opacity: 0.7;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
}

.beam-node {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 3;
  display: grid;
  width: clamp(38px, 3.4vw, 48px);
  height: clamp(38px, 3.4vw, 48px);
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--beam-color), transparent 38%);
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 25%, hsl(0 0% 100% / 0.24), transparent 42%),
    hsl(222 40% 5% / 0.78);
  color: hsl(var(--foreground));
  font-family: "Archivo Black", "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: 12px;
  line-height: 1;
  box-shadow:
    0 0 22px color-mix(in srgb, var(--beam-color), transparent 70%),
    inset 0 1px 0 hsl(0 0% 100% / 0.16);
  transform: translate(50%, -50%);
  animation: beam-node-counter var(--beam-speed) linear infinite;
}

.orbit-two {
  animation-delay: -3.2s;
}

.orbit-two .beam-node {
  animation-delay: -3.2s;
}

.orbit-three {
  animation-delay: -8s;
}

.orbit-three .beam-node {
  animation-delay: -8s;
}

.orbit-four {
  animation-delay: -12.6s;
}

.orbit-four .beam-node {
  animation-delay: -12.6s;
}

.orbit-five {
  animation-delay: -19s;
}

.orbit-five .beam-node {
  animation-delay: -19s;
}

.beam-steps {
  display: grid;
  gap: 12px;
}

.beam-step {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid hsl(var(--border) / 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 18%, hsl(var(--accent-cyan) / 0.08), transparent 34%),
    hsl(0 0% 100% / 0.032);
  padding: 16px;
  box-shadow: inset 0 1px 1px hsl(0 0% 100% / 0.08);
  backdrop-filter: blur(8px);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.beam-step:hover {
  border-color: hsl(var(--accent-cyan) / 0.34);
  background:
    radial-gradient(circle at 92% 18%, hsl(var(--accent-purple) / 0.12), transparent 34%),
    hsl(0 0% 100% / 0.044);
  box-shadow: 0 18px 54px hsl(var(--accent-cyan) / 0.08), inset 0 1px 1px hsl(0 0% 100% / 0.12);
  transform: translateY(-3px);
}

.beam-step-badge {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid hsl(var(--accent-cyan) / 0.28);
  border-radius: 15px;
  background:
    radial-gradient(circle at 35% 24%, hsl(0 0% 100% / 0.18), transparent 42%),
    hsl(0 0% 100% / 0.05);
  color: hsl(var(--foreground) / 0.8);
  font-family: "Archivo Black", "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: 13px;
}

.beam-step strong {
  display: block;
  color: hsl(var(--foreground));
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.12;
  letter-spacing: -0.018em;
}

.beam-step p {
  margin: 6px 0 0;
  color: hsl(var(--muted));
  font-size: 14px;
  line-height: 1.45;
}

.solar-system {
  --orbit-inner: 156px;
  --orbit-mid: 256px;
  --orbit-outer: 352px;
  position: relative;
  display: flex;
  min-height: 570px;
  align-items: center;
  justify-content: center;
  margin-top: 74px;
  overflow: visible;
  perspective: 1200px;
  user-select: none;
}

.solar-plane {
  position: relative;
  width: min(940px, 100%);
  height: 560px;
  transform: rotateX(65deg) rotateY(-10deg);
  transform-style: preserve-3d;
}

.solar-ring,
.solar-core,
.solar-item,
.solar-dust {
  position: absolute;
  top: 50%;
  left: 50%;
}

.solar-ring {
  border: 1px dashed hsl(var(--border) / 0.34);
  border-radius: 999px;
  pointer-events: none;
  box-shadow: inset 0 0 24px hsl(0 0% 100% / 0.018), 0 0 28px hsl(var(--accent-cyan) / 0.03);
  transform: translate(-50%, -50%);
}

.solar-ring-inner {
  width: calc(var(--orbit-inner) * 2);
  height: calc(var(--orbit-inner) * 2);
}

.solar-ring-mid {
  width: calc(var(--orbit-mid) * 2);
  height: calc(var(--orbit-mid) * 2);
}

.solar-ring-outer {
  width: calc(var(--orbit-outer) * 2);
  height: calc(var(--orbit-outer) * 2);
}

.solar-core {
  z-index: 12;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border: 1px solid hsl(var(--accent-cyan) / 0.42);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 40%, hsl(var(--accent-cyan) / 0.18), hsl(220 36% 4% / 0.95) 64%);
  box-shadow: 0 0 42px hsl(var(--accent-cyan) / 0.14), inset 0 1px 0 hsl(0 0% 100% / 0.16);
  transform: translate(-50%, -50%) rotateY(10deg) rotateX(-65deg);
  transform-style: preserve-3d;
}

.solar-core::before,
.solar-core::after {
  content: "";
  position: absolute;
  border: 1px dashed hsl(var(--accent-cyan) / 0.24);
  border-radius: inherit;
  pointer-events: none;
}

.solar-core::before {
  inset: -14px;
  animation: solar-spin-cw 20s linear infinite;
}

.solar-core::after {
  inset: -34px;
  border-color: hsl(var(--accent-purple) / 0.16);
  animation: solar-spin-ccw 30s linear infinite;
}

.solar-core-glow {
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background: radial-gradient(circle, hsl(var(--accent-cyan) / 0.24), transparent 68%);
  filter: blur(10px);
  animation: solar-pulse 4s ease-in-out infinite alternate;
}

.solar-core-label {
  position: relative;
  z-index: 2;
  font-family: "Archivo Black", "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.024em;
}

.solar-item {
  z-index: 10;
  width: 0;
  height: 0;
  pointer-events: none;
  transform-style: preserve-3d;
  animation: solar-orbit var(--orbit-duration) linear infinite;
}

.solar-card {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: clamp(214px, 18vw, 270px);
  min-width: 0;
  grid-template-columns: clamp(34px, 3vw, 42px) minmax(0, 1fr);
  grid-template-areas:
    "badge title"
    "badge text";
  align-items: center;
  column-gap: clamp(10px, 1vw, 14px);
  row-gap: 4px;
  border: 1px solid hsl(0 0% 100% / 0.08);
  border-radius: 22px;
  background: hsl(220 36% 4% / 0.7);
  padding: clamp(13px, 1.3vw, 17px);
  color: hsl(var(--foreground));
  box-shadow: 0 12px 42px hsl(0 0% 0% / 0.36), inset 0 1px 0 hsl(0 0% 100% / 0.08);
  pointer-events: auto;
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%) rotateY(10deg) rotateX(-65deg);
  transition: border-color 260ms ease, box-shadow 260ms ease, scale 260ms ease, background 260ms ease;
  animation: solar-billboard var(--orbit-duration) linear infinite;
}

.solar-card:hover {
  border-color: var(--node-color);
  background: hsl(220 36% 5% / 0.82);
  box-shadow: 0 0 26px hsl(0 0% 0% / 0.5), 0 0 22px color-mix(in srgb, var(--node-color), transparent 62%);
  scale: 1.06;
}

.solar-badge {
  position: relative;
  left: auto;
  top: auto;
  grid-area: badge;
  display: grid;
  width: clamp(34px, 3vw, 42px);
  height: clamp(34px, 3vw, 42px);
  place-items: center;
  border-radius: 14px;
  background:
    radial-gradient(circle at 34% 24%, hsl(0 0% 100% / 0.16), transparent 42%),
    hsl(0 0% 100% / 0.055);
  color: var(--node-color);
  font-family: "Archivo Black", "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 800;
  line-height: 1;
  transform: none;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--node-color), transparent 55%);
}

.solar-card strong {
  grid-area: title;
  min-width: 0;
  padding-left: 0;
  font-size: clamp(14px, 1.08vw, 16px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

.solar-card small {
  grid-area: text;
  min-width: 0;
  padding-left: 0;
  color: hsl(var(--muted));
  font-size: clamp(11px, 0.92vw, 12.5px);
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.solar-beam {
  position: absolute;
  right: 0;
  top: 50%;
  width: var(--orbit-radius);
  height: 1.5px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, hsl(0 0% 100% / 0.12), var(--node-color));
  box-shadow: 0 0 12px var(--node-color);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 260ms ease;
}

.solar-card:hover + .solar-beam,
.solar-item:hover .solar-beam {
  opacity: 1;
}

.solar-dust {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--dust-color);
  box-shadow: 0 0 8px var(--dust-color);
  opacity: 0.46;
  animation: solar-orbit 24s linear infinite;
}

.dust-one {
  --orbit-radius: 196px;
  --orbit-duration: 24s;
  --orbit-start: 40deg;
  --dust-color: #4cc2e9;
}

.dust-two {
  --orbit-radius: 310px;
  --orbit-duration: 32s;
  --orbit-start: 140deg;
  --dust-color: #9c43fe;
}

.dust-three {
  --orbit-radius: 376px;
  --orbit-duration: 42s;
  --orbit-start: 250deg;
  --dust-color: #d8f7ff;
}

.dust-four {
  --orbit-radius: 258px;
  --orbit-duration: 28s;
  --orbit-start: 318deg;
  --dust-color: #4cc2e9;
}

@keyframes solar-orbit {
  from {
    transform: translate(-50%, -50%) rotateZ(var(--orbit-start)) translateX(var(--orbit-radius));
  }

  to {
    transform: translate(-50%, -50%) rotateZ(calc(var(--orbit-start) - 360deg)) translateX(var(--orbit-radius));
  }
}

@keyframes solar-billboard {
  from {
    transform: translate(-50%, -50%) rotateZ(var(--billboard-start)) rotateY(10deg) rotateX(-65deg);
  }

  to {
    transform: translate(-50%, -50%) rotateZ(calc(var(--billboard-start) + 360deg)) rotateY(10deg) rotateX(-65deg);
  }
}

@keyframes solar-pulse {
  from {
    opacity: 0.62;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes solar-spin-cw {
  to {
    transform: rotate(360deg);
  }
}

@keyframes solar-spin-ccw {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes beam-orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes beam-node-counter {
  from {
    transform: translate(50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(50%, -50%) rotate(-360deg);
  }
}

@keyframes beam-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes beam-pulse {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.timeline-line {
  position: absolute;
  top: 23px;
  right: 9%;
  left: 9%;
  height: 1px;
  overflow: hidden;
  background: hsl(var(--border) / 0.16);
}

.timeline-line span {
  display: block;
  width: var(--timeline-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, #4cc2e9, #9c43fe, #101499);
  box-shadow: 0 0 24px hsl(var(--accent-purple) / 0.3);
}

.timeline-step {
  position: relative;
  padding-top: 58px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 21px;
  height: 21px;
  border: 1px solid hsl(var(--accent-cyan) / 0.45);
  border-radius: 999px;
  background: hsl(var(--background));
  box-shadow: 0 0 0 7px hsl(var(--accent-purple) / 0.07);
}

.timeline-step span {
  color: hsl(var(--accent-soft));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.timeline-step h3 {
  margin: 12px 0 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.timeline-step p {
  margin: 12px 0 0;
  color: hsl(var(--muted));
  font-size: 14px;
  line-height: 1.7;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 56px;
  overflow: visible;
}

.differentials-grid[data-context-bento] {
  min-height: 0;
}

.differentials-grid .context-effect-card {
  min-height: clamp(230px, 18vw, 280px);
}

.differentials-grid .context-effect-card h3 {
  max-width: 16ch;
  font-size: clamp(27px, 2.2vw, 36px);
}

.differentials-grid .context-effect-card p {
  max-width: 34ch;
  font-size: clamp(15px, 1vw, 17px);
}

.manifesto-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 128px var(--page-gutter);
  background:
    radial-gradient(circle at 50% 45%, hsl(var(--accent-purple) / 0.1), transparent 26rem),
    linear-gradient(180deg, hsl(var(--background)), hsl(220 34% 4%));
}

.manifesto-lines {
  position: absolute;
  inset: 12%;
  border-top: 1px solid hsl(var(--accent-cyan) / 0.22);
  border-bottom: 1px solid hsl(var(--accent-purple) / 0.14);
  opacity: 0.74;
}

.manifesto-lines::before,
.manifesto-lines::after {
  content: "";
  position: absolute;
  top: -26px;
  width: 1px;
  height: calc(100% + 52px);
  background: linear-gradient(transparent, hsl(var(--accent-cyan) / 0.24), transparent);
}

.manifesto-lines::before {
  left: 12%;
}

.manifesto-lines::after {
  right: 12%;
}

.manifesto-content {
  position: relative;
  max-width: 980px;
  text-align: center;
}

.manifesto-section h2 {
  font-size: clamp(64px, 10vw, 142px);
}

.manifesto-section p {
  max-width: 660px;
  margin: 34px auto 0;
  font-size: 21px;
  line-height: 1.8;
}

.final-cta {
  padding: var(--section-y) 0;
}

.final-panel {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  border: 1px solid hsl(var(--border) / 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 20%, hsl(var(--accent-cyan) / 0.13), transparent 22rem),
    linear-gradient(135deg, hsl(0 0% 100% / 0.055), hsl(0 0% 100% / 0.018));
  padding: clamp(32px, 7vw, 88px);
  box-shadow: inset 0 1px 1px hsl(0 0% 100% / 0.1), 0 40px 120px hsl(0 0% 0% / 0.22);
}

.final-panel p {
  max-width: 690px;
  margin: 28px 0 34px;
  font-size: 19px;
  line-height: 1.8;
}

.solutions-page {
  background:
    radial-gradient(circle at 82% 4%, hsl(var(--accent-cyan) / 0.1), transparent 30rem),
    hsl(var(--background));
}

.solutions-hero {
  position: relative;
  overflow: visible;
  min-height: 78vh;
  border-bottom: 1px solid hsl(var(--border) / 0.12);
  background:
    linear-gradient(90deg, hsl(var(--accent-cyan) / 0.08) 1px, transparent 1px),
    linear-gradient(180deg, hsl(var(--accent-purple) / 0.06) 1px, transparent 1px),
    radial-gradient(circle at 75% 42%, hsl(var(--accent-cyan) / 0.12), transparent 24rem),
    hsl(var(--background));
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.solutions-hero-inner {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
  margin: 0 auto;
  padding: clamp(96px, 12vw, 160px) 0 clamp(84px, 10vw, 130px);
}

.solutions-hero h1 {
  max-width: 950px;
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.024em;
}

.solutions-hero-inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: hsl(var(--muted));
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.7;
}

.solutions-page .hero-buttons {
  justify-content: flex-start;
}

.solutions-nav {
  position: sticky;
  top: 0;
  z-index: 24;
  display: flex;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
  margin: 0 auto;
  gap: 10px;
  overflow-x: auto;
  border-bottom: 1px solid hsl(var(--border) / 0.14);
  padding: 14px 0;
  background: hsl(var(--background) / 0.84);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.solutions-nav::-webkit-scrollbar {
  display: none;
}

.solutions-nav a {
  flex: 0 0 auto;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 999px;
  padding: 10px 14px;
  color: hsl(var(--muted));
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.solutions-nav a:hover,
.solutions-nav a:focus-visible {
  border-color: hsl(var(--accent-cyan) / 0.34);
  background: hsl(0 0% 100% / 0.035);
  color: hsl(var(--foreground));
}

.solution-detail {
  display: grid;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  padding: clamp(96px, 10vw, 142px) 0;
  scroll-margin-top: 96px;
}

.solution-detail:nth-of-type(even) {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 0.95fr);
}

.solution-copy h2 {
  max-width: 720px;
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.024em;
}

.solution-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: hsl(var(--foreground) / 0.84);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
}

.solution-copy p:not(.eyebrow):not(.solution-lead) {
  max-width: 650px;
  margin: 18px 0 0;
  color: hsl(var(--muted));
  font-size: 17px;
  line-height: 1.8;
}

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

.solution-copy li {
  position: relative;
  padding-left: 18px;
  color: hsl(var(--foreground) / 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.solution-copy li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: hsl(var(--accent-cyan) / 0.76);
}

.solution-cta {
  margin-top: 28px;
}

.solution-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 20%, hsl(var(--accent-cyan) / 0.13), transparent 18rem),
    linear-gradient(145deg, hsl(222 40% 8% / 0.92), hsl(240 46% 4% / 0.96));
  box-shadow: 0 34px 110px hsl(0 0% 0% / 0.34), inset 0 1px 1px hsl(0 0% 100% / 0.1);
}

.browser-visual {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  grid-template-rows: 58px 1fr 0.7fr;
  gap: 14px;
  padding: 24px;
}

.browser-visual span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: hsl(var(--accent-cyan) / 0.7);
}

.browser-visual span:nth-child(2) {
  background: hsl(var(--accent-purple) / 0.72);
}

.browser-visual span:nth-child(3) {
  background: hsl(var(--foreground) / 0.42);
}

.browser-visual div {
  border-radius: 20px;
  background: hsl(0 0% 100% / 0.055);
}

.browser-visual div:nth-of-type(1) {
  grid-column: 1 / -1;
}

.modules-visual,
.flow-visual,
.roadmap-visual,
.states-visual {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.modules-visual {
  grid-template-columns: 0.5fr 1fr;
}

.modules-visual span,
.flow-visual span,
.roadmap-visual span,
.states-visual span {
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 20px;
  background: hsl(0 0% 100% / 0.045);
}

.modules-visual span:nth-child(1) {
  grid-row: span 3;
}

.data-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 14px;
  padding: 34px;
}

.data-visual strong {
  position: absolute;
  top: 34px;
  left: 34px;
  color: hsl(var(--foreground));
  font-size: 64px;
  font-weight: 400;
}

.data-visual span {
  display: block;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, hsl(var(--accent-cyan) / 0.78), hsl(var(--accent-purple) / 0.22));
}

.data-visual span:nth-child(2) { height: 42%; }
.data-visual span:nth-child(3) { height: 68%; }
.data-visual span:nth-child(4) { height: 54%; }
.data-visual span:nth-child(5) { height: 82%; }

.states-visual {
  align-content: center;
}

.states-visual span {
  padding: 22px;
  color: hsl(var(--foreground));
  font-weight: 800;
}

.flow-visual {
  grid-template-columns: repeat(2, 1fr);
  align-content: center;
}

.flow-visual span {
  min-height: 110px;
}

.flow-visual::before {
  content: "";
  position: absolute;
  inset: 50% 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--accent-cyan) / 0.6), transparent);
}

.roadmap-visual {
  align-content: center;
}

.roadmap-visual span {
  display: grid;
  min-height: 64px;
  place-items: center;
  color: hsl(var(--foreground));
  font-family: "Archivo Black", "General Sans", system-ui, sans-serif;
}

.solutions-process {
  padding-top: 40px;
}

.solutions-process h2 {
  max-width: 760px;
}

.process-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.process-path article {
  position: relative;
  border-top: 1px solid hsl(var(--accent-cyan) / 0.34);
  padding-top: 22px;
}

.process-path span {
  color: hsl(var(--accent-soft));
  font-size: 12px;
  font-weight: 900;
}

.process-path strong {
  display: block;
  margin-top: 14px;
  color: hsl(var(--foreground));
  font-size: 22px;
}

.process-path p {
  margin: 10px 0 0;
  color: hsl(var(--muted));
  line-height: 1.65;
}

.sitemap-page {
  min-height: 100vh;
}

.sitemap-hero {
  padding-top: clamp(96px, 12vw, 144px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.sitemap-hero h1 {
  max-width: 900px;
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.024em;
  line-height: 1.04;
}

.sitemap-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: hsl(var(--muted));
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

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

.sitemap-group {
  min-width: 0;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 26px;
  background:
    linear-gradient(140deg, hsl(0 0% 100% / 0.05), hsl(0 0% 100% / 0.014)),
    hsl(222 36% 5% / 0.7);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: inset 0 1px 1px hsl(0 0% 100% / 0.07);
}

.sitemap-group h2 {
  margin: 0 0 18px;
  color: hsl(var(--foreground));
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sitemap-group ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-group a {
  display: inline-flex;
  color: hsl(var(--muted));
  line-height: 1.45;
  outline-offset: 6px;
  transition: color 180ms ease, transform 180ms ease;
}

.sitemap-group a:hover,
.sitemap-group a:focus-visible {
  color: hsl(var(--accent-soft));
  transform: translateX(3px);
}

.legal-page {
  background:
    radial-gradient(circle at 16% 8%, hsl(var(--accent-purple) / 0.12), transparent 30rem),
    radial-gradient(circle at 82% 18%, hsl(var(--accent-cyan) / 0.11), transparent 34rem),
    hsl(var(--background));
}

.legal-hero {
  position: relative;
  overflow: visible;
  border-bottom: 1px solid hsl(var(--border) / 0.12);
  background:
    linear-gradient(90deg, hsl(var(--accent-cyan) / 0.07) 1px, transparent 1px),
    linear-gradient(180deg, hsl(var(--accent-purple) / 0.055) 1px, transparent 1px),
    radial-gradient(circle at 74% 36%, hsl(var(--accent-cyan) / 0.11), transparent 25rem),
    hsl(var(--background));
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.legal-hero-inner,
.legal-content {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
  margin: 0 auto;
}

.legal-hero-inner {
  padding: clamp(92px, 12vw, 148px) 0 clamp(72px, 9vw, 118px);
}

.legal-hero h1 {
  max-width: 940px;
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  letter-spacing: -0.024em;
  line-height: 1.04;
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: hsl(var(--muted));
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: start;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.legal-summary {
  position: sticky;
  top: 106px;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, hsl(var(--accent-cyan) / 0.1), transparent 16rem),
    linear-gradient(145deg, hsl(222 40% 8% / 0.88), hsl(240 46% 4% / 0.94));
  padding: clamp(24px, 3vw, 32px);
  box-shadow: 0 24px 80px hsl(0 0% 0% / 0.24), inset 0 1px 1px hsl(0 0% 100% / 0.07);
}

.legal-summary h2 {
  margin: 0 0 18px;
  color: hsl(var(--foreground));
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-summary ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-summary a {
  display: inline-flex;
  color: hsl(var(--muted));
  line-height: 1.45;
  outline-offset: 6px;
  transition: color 180ms ease, transform 180ms ease;
}

.legal-summary a:hover,
.legal-summary a:focus-visible {
  color: hsl(var(--accent-soft));
  transform: translateX(3px);
}

.legal-updated {
  margin: 26px 0 0;
  border-top: 1px solid hsl(var(--border) / 0.12);
  padding-top: 20px;
  color: hsl(var(--foreground) / 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.legal-article {
  display: grid;
  gap: 18px;
}

.legal-section {
  border: 1px solid hsl(var(--border) / 0.13);
  border-radius: 28px;
  background:
    linear-gradient(145deg, hsl(0 0% 100% / 0.045), hsl(0 0% 100% / 0.014)),
    hsl(222 36% 5% / 0.68);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: inset 0 1px 1px hsl(0 0% 100% / 0.07);
}

.legal-section h2 {
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.024em;
  line-height: 1.08;
}

.legal-section p,
.legal-section li {
  color: hsl(var(--muted));
  font-size: 17px;
  line-height: 1.78;
}

.legal-section p {
  margin: 16px 0 0;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 1.15rem;
}

.legal-section a {
  color: hsl(var(--accent-soft));
  font-weight: 800;
  outline-offset: 4px;
}

.legal-note {
  border-left: 2px solid hsl(var(--accent-soft) / 0.7);
  padding-left: 16px;
}

.products-page,
.product-detail-page {
  background:
    radial-gradient(circle at 18% 8%, hsl(var(--accent-purple) / 0.12), transparent 30rem),
    radial-gradient(circle at 82% 14%, hsl(var(--accent-cyan) / 0.12), transparent 34rem),
    hsl(var(--background));
}

.products-hero,
.product-detail-hero {
  position: relative;
  overflow: visible;
}

.products-hero {
  overflow: hidden;
  isolation: isolate;
  background: hsl(var(--background));
}

.products-soft-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.92;
  mix-blend-mode: screen;
}

.products-soft-aurora canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.products-hero-inner,
.product-detail-inner {
  position: relative;
  z-index: 4;
  width: min(100% - (var(--page-gutter) * 2), var(--max));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) 0 clamp(56px, 7vw, 92px);
}

.products-hero h1,
.product-detail-hero h1 {
  max-width: 980px;
  margin: 22px 0 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(54px, 8.4vw, 118px);
  font-weight: 500;
  letter-spacing: -0.034em;
  line-height: 0.98;
}

.products-hero p:not(.eyebrow),
.product-detail-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px 0 0;
  color: hsl(var(--muted));
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.62;
}

.products-hero .hero-buttons {
  margin-top: clamp(34px, 4.5vw, 54px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.product-card {
  position: relative;
  min-width: 0;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  border: 1px solid hsl(var(--border) / 0.15);
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 8%, hsl(var(--product-accent) / 0.22), transparent 18rem),
    linear-gradient(145deg, hsl(0 0% 100% / 0.065), hsl(0 0% 100% / 0.015)),
    hsl(222 36% 5% / 0.82);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: 0 28px 90px hsl(0 0% 0% / 0.26), inset 0 1px 1px hsl(0 0% 100% / 0.08);
  overflow: hidden;
  transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: hsl(var(--product-accent) / 0.38);
  box-shadow: 0 34px 100px hsl(var(--product-accent) / 0.14), inset 0 1px 1px hsl(0 0% 100% / 0.1);
  transform: translateY(-6px);
}

.product-cyan {
  --product-accent: var(--accent-cyan);
}

.product-purple {
  --product-accent: var(--accent-purple);
}

.product-deep {
  --product-accent: var(--accent-deep);
}

.product-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.product-logo-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid hsl(var(--product-accent) / 0.26);
  border-radius: 18px;
  background:
    linear-gradient(140deg, hsl(var(--product-accent) / 0.28), hsl(0 0% 100% / 0.035)),
    hsl(220 36% 5% / 0.82);
  color: hsl(var(--foreground));
  font-family: "Archivo Black", "General Sans", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 400;
  box-shadow: 0 0 34px hsl(var(--product-accent) / 0.14);
}

.product-card-top span:not(.product-logo-mark) {
  color: hsl(var(--accent-soft));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 36px 0 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1;
}

.product-card-subtitle {
  margin-top: 18px !important;
  color: hsl(var(--foreground) / 0.9) !important;
  font-size: 20px !important;
}

.product-card p {
  margin: 16px 0 0;
  color: hsl(var(--muted));
  line-height: 1.68;
}

.product-card ul,
.product-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li,
.product-list li {
  position: relative;
  padding-left: 20px;
  color: hsl(var(--foreground) / 0.78);
  line-height: 1.5;
}

.product-card li::before,
.product-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: hsl(var(--product-accent, var(--accent-cyan)));
  box-shadow: 0 0 16px hsl(var(--product-accent, var(--accent-cyan)) / 0.46);
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 30px;
}

.product-card-actions .primary-button {
  gap: 8px;
}

.product-card-actions .primary-button span[aria-hidden="true"] {
  display: inline-block;
  margin-left: 0;
  transform: translateY(-1px);
}

.products-page .final-cta {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0 clamp(96px, 11vw, 150px);
}

.products-page .final-panel {
  min-height: clamp(420px, 42vw, 560px);
}

.choice-grid,
.story-grid,
.product-steps {
  display: grid;
  gap: 18px;
}

.choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
}

.choice-card {
  min-height: 310px;
}

.choice-card span,
.product-steps span {
  color: hsl(var(--accent-soft));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.choice-card h3 {
  margin: 22px 0 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.024em;
  line-height: 1.08;
}

.choice-card p {
  color: hsl(var(--muted));
  line-height: 1.65;
}

.choice-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  color: hsl(var(--accent-soft));
  font-weight: 800;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.product-visual {
  position: relative;
  min-height: 480px;
  border: 1px solid hsl(var(--product-accent) / 0.2);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 18%, hsl(var(--product-accent) / 0.2), transparent 13rem),
    linear-gradient(150deg, hsl(0 0% 100% / 0.08), hsl(0 0% 100% / 0.014)),
    hsl(222 36% 5% / 0.8);
  overflow: hidden;
  box-shadow: 0 30px 100px hsl(0 0% 0% / 0.32), inset 0 1px 1px hsl(0 0% 100% / 0.08);
}

.product-visual-window {
  position: absolute;
  inset: clamp(22px, 4vw, 46px);
  display: grid;
  align-content: center;
  gap: 14px;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 30px;
  background: hsl(220 34% 4% / 0.68);
  padding: clamp(22px, 4vw, 34px);
}

.product-visual-window span {
  color: hsl(var(--foreground));
  font-family: "Archivo Black", "General Sans", system-ui, sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.034em;
  line-height: 0.95;
}

.product-visual-window i {
  width: fit-content;
  max-width: 100%;
  border: 1px solid hsl(var(--product-accent) / 0.16);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.035);
  color: hsl(var(--foreground) / 0.78);
  font-style: normal;
  padding: 10px 14px;
}

.story-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  align-items: stretch;
}

.story-grid h2 {
  font-size: clamp(32px, 4.6vw, 58px);
}

.product-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
}

.product-steps article {
  min-height: 220px;
}

.product-steps p {
  margin: 28px 0 0;
  color: hsl(var(--foreground));
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.benefit-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
}

.benefit-cloud span {
  border: 1px solid hsl(var(--border) / 0.16);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.035);
  color: hsl(var(--foreground) / 0.84);
  font-weight: 800;
  padding: 13px 16px;
}

.product-captures .section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: hsl(var(--muted));
  font-size: 18px;
  line-height: 1.65;
}

.site-footer {
  display: grid;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(190px, 1.18fr) repeat(5, minmax(104px, 0.76fr)) minmax(170px, 1fr);
  gap: clamp(22px, 3vw, 42px);
  border-top: 1px solid hsl(var(--border) / 0.16);
  padding: clamp(54px, 7vw, 84px) 0 34px;
  color: hsl(var(--muted));
  font-size: 14px;
}

.footer-brand p {
  max-width: 280px;
  margin: 14px 0 0;
  line-height: 1.7;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: hsl(var(--foreground));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: hsl(var(--muted));
  line-height: 1.45;
  outline-offset: 6px;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: hsl(var(--foreground));
  transform: translateX(3px);
}

.footer-contact a {
  flex-direction: column;
  gap: 3px;
}

.footer-contact small {
  display: block;
  color: hsl(var(--foreground) / 0.6);
  font-size: 12px;
  line-height: 1.4;
}

.footer-social-title {
  margin-top: 26px !important;
}

.footer-social a {
  flex-direction: row;
}

.footer-social a span {
  color: hsl(var(--accent-soft));
  transition: transform 180ms ease;
}

.footer-social a:hover span,
.footer-social a:focus-visible span {
  transform: translate(2px, -2px);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid hsl(var(--border) / 0.12);
  margin-top: 10px;
  padding-top: 24px;
  color: hsl(var(--foreground) / 0.52);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.5;
}

.reveal-title,
.reveal-item,
.stagger-card {
  opacity: 0;
  transform: translateY(28px);
  clip-path: none;
  transition: opacity 820ms var(--ease), transform 820ms var(--ease);
}

.reveal-title.in-view,
.reveal-item.in-view,
.stagger-card.in-view {
  opacity: 1;
  transform: translateY(0);
  clip-path: none;
}

.stagger-card:nth-child(2) {
  transition-delay: 70ms;
}

.stagger-card:nth-child(3) {
  transition-delay: 140ms;
}

.stagger-card:nth-child(4) {
  transition-delay: 210ms;
}

.stagger-card:nth-child(5) {
  transition-delay: 280ms;
}

.stagger-card:nth-child(6) {
  transition-delay: 350ms;
}

@keyframes service-marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes gradient-text-flow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@keyframes shiny-title-sweep {
  0% {
    background-position: 150% center;
  }

  46% {
    background-position: -50% center;
  }

  100% {
    background-position: -50% center;
  }
}

@media (max-width: 1180px) {
  .differentials-grid[data-context-bento] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .differentials-grid .context-effect-card,
  .differentials-grid .context-effect-card.is-active,
  .differentials-grid[data-context-bento].is-interacting .context-effect-card:not(.is-active) {
    min-height: 230px;
  }

  .differentials-grid .context-effect-card h3 {
    max-width: 16ch;
  }
}

@media (max-width: 1120px) {
  .navbar {
    padding: 18px var(--page-gutter);
  }

  .text-logo {
    min-width: auto;
  }

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

  .mega-menu {
    display: none;
  }

  .nav-actions {
    min-width: auto;
  }

  .mobile-menu-button {
    display: inline-flex;
  }
}

@media (max-width: 1040px) {
  .hero-title {
    font-size: clamp(110px, 17vw, 140px);
  }

  .desktop-nav {
    gap: 22px;
  }

  .context-grid[data-context-bento] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
  }

  .context-grid[data-context-bento] .context-effect-card:nth-child(3):last-child {
    width: calc((100% - 18px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .context-effect-card,
  .context-effect-card.is-active,
  .context-grid .context-effect-card,
  .differentials-grid .context-effect-card,
  .context-grid[data-context-bento].is-interacting .context-effect-card:not(.is-active),
  .differentials-grid[data-context-bento].is-interacting .context-effect-card:not(.is-active) {
    min-height: 190px;
    justify-content: center;
    padding: 28px 30px;
    opacity: 1;
    transform: none;
  }

  .context-effect-card h3 {
    font-size: clamp(27px, 3.6vw, 34px);
  }

  .context-effect-card p {
    font-size: 16px;
    line-height: 1.6;
  }

  .scroll-stack {
    padding-bottom: 24rem;
  }

  .scroll-stack-card {
    width: 100%;
  }

  .scroll-stack-card h3 {
    font-size: clamp(36px, 7vw, 56px);
  }

  .scroll-stack-card p {
    font-size: 18px;
  }

  .beam-process {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .beam-circle {
    width: min(100%, 500px);
  }

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

  .solar-system {
    --orbit-inner: 116px;
    --orbit-mid: 196px;
    --orbit-outer: 274px;
    min-height: 500px;
  }

  .solar-plane {
    height: 500px;
  }

  .solar-card {
    width: clamp(188px, 22vw, 230px);
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 10px;
    padding: 13px;
  }

  .solar-card small {
    display: block;
    font-size: 10.5px;
    line-height: 1.28;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 34px;
  }

  .timeline-line {
    top: 0;
    bottom: 0;
    left: 10px;
    width: 1px;
    height: auto;
  }

  .timeline-line span {
    width: 100%;
    height: var(--timeline-progress, 0%);
  }

  .timeline-step {
    padding-top: 0;
  }

  .timeline-step::before {
    top: 3px;
    left: -34px;
  }

  .card-swap-stack {
    width: min(760px, 100%);
    height: 500px;
  }

  .card-swap-card {
    width: min(540px, calc(100% - 96px));
  }

  .card-swap-card h3 {
    font-size: clamp(34px, 7vw, 54px);
  }

  .solution-detail,
  .solution-detail:nth-of-type(even) {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .solution-visual {
    min-height: 320px;
  }

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

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

  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: relative;
    top: auto;
  }

  .products-grid,
  .choice-grid,
  .product-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid > .product-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .product-detail-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 360px;
  }

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

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .context-grid[data-context-bento],
  .differentials-grid[data-context-bento] {
    grid-template-columns: 1fr;
  }

  .context-grid[data-context-bento] .context-effect-card:nth-child(3):last-child {
    width: 100%;
    grid-column: auto;
    justify-self: stretch;
  }

  .context-effect-card,
  .context-effect-card.is-active,
  .context-grid .context-effect-card,
  .differentials-grid .context-effect-card,
  .context-grid[data-context-bento].is-interacting .context-effect-card:not(.is-active),
  .differentials-grid[data-context-bento].is-interacting .context-effect-card:not(.is-active) {
    min-height: 0;
    justify-content: flex-start;
    padding: 24px;
  }

  .context-effect-card h3 {
    max-width: 100%;
    font-size: clamp(26px, 6vw, 34px);
  }

  .context-effect-card p {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 20px;
    --section-y: 92px;
  }

  .navbar {
    padding: 18px var(--page-gutter);
  }

  .text-logo {
    min-width: auto;
  }

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

  .mega-menu {
    display: none;
  }

  .nav-actions {
    min-width: auto;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero-content {
    padding: 86px var(--page-gutter) 188px;
  }

  .hero-title {
    font-size: clamp(72px, 22vw, 88px);
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .primary-button,
  .secondary-button {
    width: min(100%, 310px);
  }

  .service-marquee {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding-bottom: 28px;
  }

  .marquee-window {
    width: 100%;
  }

  .service-set {
    gap: 34px;
    padding-right: 34px;
  }

  .section {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
    padding: var(--section-y) 0;
  }

  .section h2,
  .final-panel h2 {
    font-size: clamp(38px, 11vw, 62px);
    line-height: 1.14;
  }

  .section-copy,
  .section-heading,
  .manifesto-content {
    margin-right: -4px;
    margin-left: -4px;
    padding: 14px 4px 20px;
  }

  .process-section .section-heading {
    margin: 0 -4px 26px;
    padding: 14px 4px 18px;
  }

  .process-section .section-heading h2 {
    line-height: 1.14;
  }

  .context-grid,
  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .context-grid[data-context-bento],
  .differentials-grid[data-context-bento] {
    display: grid;
    min-height: 0;
    gap: 16px;
    padding: 0;
    margin-right: 0;
    margin-left: 0;
  }

  .context-effect-card,
  .context-effect-card.is-active,
  .context-grid[data-context-bento].is-interacting .context-effect-card:not(.is-active),
  .differentials-grid[data-context-bento].is-interacting .context-effect-card:not(.is-active) {
    min-height: 0;
    justify-content: flex-start;
    padding: 24px;
    opacity: 1;
    transform: none;
  }

  .context-grid[data-context-bento] .context-effect-card:nth-child(3):last-child {
    width: 100%;
    grid-column: auto;
    justify-self: stretch;
  }

  .context-effect-card h3 {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.08;
  }

  .context-effect-card p {
    max-width: 100%;
    margin-top: 0;
    font-size: 16px;
    line-height: 1.62;
  }

  .context-effect-card.is-active::after {
    opacity: 0.48;
    transform: scale(1);
  }

  .scroll-stack {
    margin-top: 40px;
    padding: 0 0 24px;
  }

  .scroll-stack-card {
    min-height: 260px;
    margin-bottom: 18px;
    padding: 28px;
    transform: none !important;
    filter: none !important;
  }

  .scroll-stack-card h3 {
    margin-top: 24px;
    font-size: clamp(31px, 9vw, 42px);
  }

  .scroll-stack-card p {
    margin-top: 16px;
    font-size: 16px;
  }

  .solution-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .solution-kicker {
    font-size: 11px;
  }

  .solution-tags {
    gap: 8px;
    margin-top: 24px;
  }

  .solution-tags span {
    padding: 8px 11px;
    font-size: 12px;
  }

  .beam-process {
    gap: 34px;
    margin-top: 42px;
  }

  .beam-circle {
    width: min(100%, 330px);
  }

  .beam-core {
    width: 92px;
    height: 92px;
  }

  .beam-core-label {
    font-size: 18px;
  }

  .beam-node {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 10px;
  }

  .beam-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .beam-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    border-radius: 20px;
    padding: 15px;
  }

  .beam-step-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 12px;
  }

  .beam-step strong {
    font-size: 17px;
  }

  .beam-step p {
    font-size: 13px;
    line-height: 1.42;
  }

  .solar-system {
    display: block;
    min-height: auto;
    margin-top: 42px;
    perspective: none;
  }

  .solar-plane {
    display: grid;
    width: 100%;
    height: auto;
    gap: 14px;
    transform: none;
  }

  .solar-ring,
  .solar-core,
  .solar-dust,
  .solar-beam {
    display: none;
  }

  .solar-item,
  .solar-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    animation: none;
    transform: none;
  }

  .solar-item {
    pointer-events: auto;
  }

  .solar-card {
    min-width: 0;
    width: 100%;
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-areas:
      "badge title"
      "badge text";
    column-gap: 14px;
    row-gap: 5px;
    border-radius: 22px;
    padding: 20px;
  }

  .solar-badge {
    left: auto;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 13px;
  }

  .solar-card strong {
    font-size: 16px;
    line-height: 1.16;
  }

  .solar-card small {
    display: block;
    font-size: 13px;
    line-height: 1.42;
  }

  .glass-card {
    border-radius: 22px;
    padding: 24px;
  }

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

  .solutions-hero-inner {
    padding: 84px 0 76px;
  }

  .solutions-hero h1 {
    font-size: clamp(40px, 13vw, 52px);
    line-height: 1.08;
  }

  .solutions-hero-inner > p:not(.eyebrow) {
    font-size: 18px;
  }

  .solutions-nav {
    top: 0;
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
    padding: 12px 0;
  }

  .solutions-nav a {
    padding: 9px 12px;
    font-size: 12px;
  }

  .solution-detail,
  .solution-detail:nth-of-type(even) {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 82px 0;
    scroll-margin-top: 76px;
  }

  .solution-copy h2 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .solution-lead {
    font-size: 18px;
  }

  .solution-copy p:not(.eyebrow):not(.solution-lead) {
    font-size: 16px;
  }

  .solution-copy ul {
    grid-template-columns: 1fr;
  }

  .solution-visual {
    min-height: 250px;
    border-radius: 24px;
  }

  .browser-visual,
  .modules-visual,
  .flow-visual,
  .roadmap-visual,
  .states-visual,
  .data-visual {
    padding: 20px;
  }

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

  .context-grid .context-effect-card,
  .context-grid .context-effect-card.is-active,
  .context-grid[data-context-bento].is-interacting .context-effect-card:not(.is-active) {
    --context-card-pad: 24px;
    min-height: 0;
    padding: var(--context-card-pad);
  }

  .context-grid .context-effect-card h3 {
    margin-top: 0;
    font-size: clamp(26px, 8vw, 32px);
  }

  .context-grid .context-effect-card p {
    font-size: 16px;
    line-height: 1.6;
  }

  .manifesto-section {
    min-height: 74vh;
    padding: 96px var(--page-gutter);
  }

  .manifesto-section h2 {
    font-size: clamp(54px, 16vw, 78px);
    line-height: 1.14;
  }

  .manifesto-section p {
    font-size: 17px;
  }

  .final-cta {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
  }

  .final-panel {
    min-height: 470px;
    border-radius: 26px;
  }

  .site-footer {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 52px 0 34px;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: auto;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-column ul {
    gap: 8px;
  }

  .footer-column a {
    min-height: 34px;
    align-items: center;
  }

  .footer-contact a {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .sitemap-hero {
    padding-top: 84px;
  }

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

  .legal-hero-inner {
    padding: 84px 0 72px;
  }

  .legal-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 1.07;
  }

  .legal-hero p:not(.eyebrow),
  .legal-section p,
  .legal-section li {
    font-size: 16px;
  }

  .legal-summary,
  .legal-section {
    border-radius: 24px;
    padding: 22px;
  }

  .sitemap-group a {
    min-height: 34px;
    align-items: center;
  }

  .products-hero-inner,
  .product-detail-inner {
    padding: 56px 0 58px;
  }

  .products-hero h1,
  .product-detail-hero h1 {
    font-size: clamp(42px, 13vw, 64px);
    line-height: 1.05;
  }

  .products-hero .hero-buttons {
    width: 100%;
    align-items: stretch;
    margin-top: 34px;
  }

  .products-hero .primary-button,
  .products-hero .secondary-button {
    width: min(100%, 320px);
    min-width: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .products-grid,
  .choice-grid,
  .product-steps {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
    border-radius: 26px;
    padding: 24px;
  }

  .products-page .final-cta {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
    padding: 64px 0 96px;
  }

  .products-page .final-panel {
    min-height: auto;
    padding: 28px 22px;
  }

  .product-card-actions,
  .product-detail-hero .hero-buttons {
    flex-direction: column;
  }

  .product-card-actions .primary-button,
  .product-card-actions .secondary-button,
  .product-detail-hero .primary-button,
  .product-detail-hero .secondary-button {
    width: 100%;
  }

  .product-visual {
    min-height: 300px;
    border-radius: 26px;
  }

  .product-visual-window {
    inset: 18px;
    border-radius: 22px;
  }

  .product-visual-window span {
    font-size: clamp(34px, 12vw, 52px);
  }
}

.insights-page,
.insight-article-page {
  background:
    radial-gradient(circle at 78% 6%, hsl(var(--accent-cyan) / 0.1), transparent 28rem),
    hsl(var(--background));
}

.insights-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid hsl(var(--border) / 0.12);
  background: hsl(var(--background));
}

.insights-color-bends {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.insights-color-bends canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.insights-hero-inner,
.article-hero-inner {
  position: relative;
  z-index: 4;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
  margin: 0 auto;
}

.insights-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
  padding: clamp(58px, 7vw, 96px) 0 clamp(56px, 7vw, 94px);
}

.insights-hero h1,
.article-hero h1 {
  max-width: 980px;
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(54px, 7vw, 84px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.024em;
}

.insights-hero p:not(.eyebrow),
.article-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: hsl(var(--muted));
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
}

.insights-page .hero-buttons,
.insight-article-page .hero-buttons {
  justify-content: flex-start;
  margin-top: clamp(34px, 4.5vw, 54px);
}

.editorial-fragments {
  display: grid;
  gap: 14px;
  border: 1px solid hsl(var(--border) / 0.15);
  border-radius: 30px;
  background: hsl(0 0% 100% / 0.025);
  padding: 26px;
  box-shadow: inset 0 1px 1px hsl(0 0% 100% / 0.08);
}

.editorial-fragments span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid hsl(var(--border) / 0.12);
  padding: 14px 0;
  color: hsl(var(--foreground));
  font-size: clamp(22px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.024em;
}

.editorial-fragments span::after {
  content: "";
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, hsl(var(--accent-cyan) / 0.72), transparent);
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.86fr);
  gap: 18px;
}

.featured-main,
.insight-card,
.newsletter-panel,
.author-box {
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 12%, hsl(var(--accent-cyan) / 0.1), transparent 18rem),
    hsl(0 0% 100% / 0.03);
  box-shadow: inset 0 1px 1px hsl(0 0% 100% / 0.08);
}

.featured-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: 30px;
  padding: 26px;
}

.featured-main h2,
.newsletter-panel h2,
.author-box h2 {
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.024em;
}

.featured-main p:not(.eyebrow),
.newsletter-panel p,
.author-box p {
  color: hsl(var(--muted));
  line-height: 1.72;
}

.featured-side {
  display: grid;
  gap: 14px;
}

.insight-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.52fr) minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.insight-card.is-compact {
  grid-template-columns: 1fr;
}

.insight-card:hover {
  border-color: hsl(var(--accent-cyan) / 0.32);
  background: hsl(0 0% 100% / 0.042);
  transform: translateY(-3px);
}

.insight-card h3 {
  margin: 8px 0 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.insight-card p:not(.eyebrow) {
  color: hsl(var(--muted));
  line-height: 1.65;
}

.insight-visual {
  position: relative;
  display: grid;
  min-height: 220px;
  align-content: end;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 18%, hsl(var(--accent-cyan) / 0.2), transparent 13rem),
    linear-gradient(145deg, hsl(222 40% 8% / 0.94), hsl(240 46% 4% / 0.96));
  padding: 20px;
}

.insight-visual span {
  color: hsl(var(--accent-soft));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-visual strong {
  margin-top: 8px;
  color: hsl(var(--foreground));
  font-size: 22px;
  text-transform: capitalize;
}

.insight-visual i {
  position: absolute;
  right: 18px;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--accent-cyan) / 0.55));
}

.insight-visual i:nth-of-type(1) { top: 28%; }
.insight-visual i:nth-of-type(2) { top: 48%; width: 58%; }
.insight-visual i:nth-of-type(3) { top: 68%; width: 28%; }

.insight-meta,
.insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.insight-meta span,
.insight-tags span {
  border: 1px solid hsl(var(--border) / 0.12);
  border-radius: 999px;
  padding: 7px 10px;
  color: hsl(var(--foreground) / 0.72);
  font-size: 12px;
  font-weight: 800;
}

.insight-tags span {
  color: hsl(var(--accent-soft));
}

.insights-toolbar {
  position: sticky;
  top: 0;
  z-index: 18;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid hsl(var(--border) / 0.14);
  background: hsl(var(--background) / 0.86);
  padding: 12px 0;
  backdrop-filter: blur(14px);
}

.insight-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.insight-filters::-webkit-scrollbar {
  display: none;
}

.insight-filters button,
.insight-search button {
  flex: 0 0 auto;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.025);
  padding: 10px 13px;
  color: hsl(var(--muted));
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.insight-filters button.is-active {
  border-color: hsl(var(--accent-cyan) / 0.36);
  color: hsl(var(--foreground));
  background: hsl(var(--accent-cyan) / 0.08);
}

.insight-search {
  display: flex;
  gap: 8px;
}

.insight-search input,
.newsletter-panel input {
  width: 100%;
  min-height: 44px;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.035);
  padding: 0 16px;
  color: hsl(var(--foreground));
}

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

.insights-empty {
  margin-top: 28px;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 18%, hsl(var(--accent-cyan) / 0.12), transparent 18rem),
    hsl(0 0% 100% / 0.025);
  padding: clamp(28px, 5vw, 46px);
  color: hsl(var(--muted));
}

.insights-empty strong {
  display: block;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.insights-empty p {
  max-width: 620px;
  margin: 14px 0 0;
  line-height: 1.7;
}

.movement-section .empty-cases {
  max-width: 820px;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
}

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

.article-hero-inner {
  padding: 44px 0 clamp(76px, 9vw, 120px);
}

.article-body {
  max-width: 880px;
}

.article-body > p {
  color: hsl(var(--foreground) / 0.84);
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.85;
}

.article-body .insight-visual {
  margin-bottom: 34px;
}

.source-note {
  border-left: 2px solid hsl(var(--accent-cyan) / 0.55);
  margin-bottom: 28px;
  padding: 16px 0 16px 18px;
  color: hsl(var(--muted));
  line-height: 1.6;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.author-box {
  padding: clamp(28px, 5vw, 48px);
}

@media (max-width: 1040px) {
  .insights-hero-inner,
  .featured-main,
  .featured-grid,
  .insights-toolbar,
  .newsletter-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .insights-hero-inner {
    width: min(calc(100% - 36px), var(--max));
    padding: 48px 0 56px;
  }

  .insights-hero h1,
  .article-hero h1 {
    max-width: 100%;
    font-size: clamp(35px, 10.8vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.022em;
    text-wrap: balance;
  }

  .insights-hero p:not(.eyebrow),
  .article-hero p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 24px;
    font-size: clamp(17px, 5vw, 20px);
    line-height: 1.62;
  }

  .insights-page .hero-buttons,
  .insight-article-page .hero-buttons {
    width: 100%;
    align-items: stretch;
    margin-top: 30px;
  }

  .insights-page .hero-buttons .primary-button,
  .insight-article-page .hero-buttons .primary-button {
    width: min(100%, 292px);
    max-width: 100%;
    min-width: 0;
    padding: 12px 20px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .editorial-fragments {
    display: none;
  }

  .insight-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .insight-visual {
    min-height: 180px;
  }

  .insights-toolbar {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: hidden;
    padding: 12px 0 16px;
  }

  .insight-filters {
    width: calc(100% + 36px);
    margin: 0 -18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 18px 2px;
    scroll-padding-inline: 18px;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 34px), transparent 100%);
  }

  .insight-filters button {
    min-height: 46px;
    padding: 11px 16px;
    font-size: 14px;
  }

  .insight-search {
    flex-direction: column;
  }

  .insight-search input,
  .insight-search button {
    width: 100%;
  }
}

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

  .reveal-title,
  .reveal-item,
  .stagger-card {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .split-char {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .gradient-text {
    animation: none;
    background-position: 50% 50%;
  }

  .shiny-title::after {
    animation: none;
    opacity: 0;
  }

  .solar-item,
  .solar-card,
  .solar-core::before,
  .solar-core::after,
  .solar-core-glow,
  .solar-dust,
  .beam-circle::after,
  .beam-core-pulse,
  .beam-orbit,
  .beam-node {
    animation: none;
  }
}

.services-page,
.service-page {
  background: radial-gradient(circle at 82% 4%, hsl(var(--accent-cyan) / 0.1), transparent 30rem), hsl(var(--background));
}

.services-hero,
.service-hero {
  position: relative;
  overflow: visible;
  border-bottom: 1px solid hsl(var(--border) / 0.12);
}

.service-hero {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: hsl(var(--background));
}

.service-iridescence-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.84;
  background:
    radial-gradient(circle at 68% 22%, hsl(var(--accent-cyan) / 0.22), transparent 24rem),
    radial-gradient(circle at 28% 70%, hsl(var(--accent-purple) / 0.2), transparent 28rem),
    linear-gradient(135deg, hsl(222 42% 5%), hsl(250 44% 8%) 54%, hsl(220 42% 3%));
}

.service-iridescence-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 42%, hsl(var(--background) / 0.12), transparent 22rem),
    linear-gradient(90deg, hsl(var(--background) / 0.28), hsl(var(--background) / 0.02) 50%, hsl(var(--background) / 0.36));
  pointer-events: none;
}

.service-iridescence-background canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.service-dot-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 26%, hsl(var(--accent-cyan) / 0.16), transparent 28rem),
    radial-gradient(circle at 28% 68%, hsl(var(--accent-purple) / 0.14), transparent 30rem),
    linear-gradient(135deg, hsl(222 42% 4%), hsl(236 48% 5%) 52%, hsl(220 42% 3%));
}

.service-dot-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, hsl(var(--background) / 0.22), transparent 48%, hsl(var(--background) / 0.32)),
    radial-gradient(circle at 50% 50%, transparent, hsl(var(--background) / 0.18) 68%);
  pointer-events: none;
}

.service-dot-grid canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.service-shape-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 18%, hsl(var(--accent-cyan) / 0.18), transparent 26rem),
    radial-gradient(circle at 24% 78%, hsl(var(--accent-purple) / 0.16), transparent 28rem),
    linear-gradient(135deg, hsl(220 42% 4%), hsl(244 48% 6%) 52%, hsl(220 42% 3%));
}

.service-shape-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, hsl(var(--background) / 0.35), transparent 48%, hsl(var(--background) / 0.24)),
    radial-gradient(circle at 50% 48%, transparent, hsl(var(--background) / 0.2) 70%);
  pointer-events: none;
}

.service-shape-grid canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.service-waves-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, hsl(var(--accent-cyan) / 0.2), transparent 30rem),
    radial-gradient(circle at 24% 74%, hsl(var(--accent-purple) / 0.16), transparent 28rem),
    linear-gradient(135deg, hsl(219 48% 4%), hsl(226 50% 5%) 50%, hsl(244 52% 7%));
}

.service-waves-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, hsl(var(--background) / 0.36), transparent 48%, hsl(var(--background) / 0.28)),
    radial-gradient(circle at 52% 48%, transparent, hsl(var(--background) / 0.18) 70%);
  pointer-events: none;
}

.service-waves-background canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.service-hyperspeed-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%, hsl(var(--accent-cyan) / 0.18), transparent 28rem),
    radial-gradient(circle at 28% 72%, hsl(var(--accent-purple) / 0.16), transparent 30rem),
    linear-gradient(180deg, hsl(220 46% 4%), hsl(230 52% 4%) 48%, hsl(248 58% 5%));
}

.service-hyperspeed-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 54%, transparent 0 28%, hsl(var(--background) / 0.24) 72%),
    linear-gradient(90deg, hsl(var(--background) / 0.44), transparent 44%, hsl(var(--background) / 0.34));
  pointer-events: none;
}

.service-hyperspeed-background canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.service-radar-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 34%, hsl(var(--accent-purple) / 0.16), transparent 30rem),
    radial-gradient(circle at 28% 72%, hsl(var(--accent-cyan) / 0.13), transparent 30rem),
    linear-gradient(135deg, hsl(220 45% 4%), hsl(236 52% 5%) 52%, hsl(248 58% 5%));
}

.service-radar-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, hsl(var(--background) / 0.46), transparent 52%, hsl(var(--background) / 0.28)),
    radial-gradient(circle at 55% 48%, transparent 0 35%, hsl(var(--background) / 0.26) 78%);
  pointer-events: none;
}

.service-radar-background canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.service-hero > .navbar,
.service-hero > .navbar-divider,
.service-hero-inner {
  position: relative;
  z-index: 2;
}

.service-hero > .mega-menu {
  z-index: 28;
}

.service-hero > .mobile-nav {
  z-index: 30;
}

.services-hero {
  min-height: auto;
  overflow: hidden;
  isolation: isolate;
  background: hsl(var(--background));
}

.services-beams-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.services-beams-background canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.services-hero > .navbar,
.services-hero > .navbar-divider,
.services-hero-inner {
  position: relative;
  z-index: 2;
}

.services-hero > .mega-menu {
  z-index: 28;
}

.services-hero > .mobile-nav {
  z-index: 30;
}

.services-hero-inner,
.service-hero-inner {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
  margin: 0 auto;
}

.services-hero-inner {
  padding: clamp(44px, 5.5vw, 74px) 0 clamp(54px, 6vw, 82px);
}

.service-hero-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.2vw, 44px) 0 clamp(62px, 7vw, 92px);
}

.services-hero h1 {
  max-width: 980px;
  margin: 22px 0 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(54px, 8.4vw, 118px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.034em;
}

.service-hero h1 {
  max-width: 980px;
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.024em;
}

.services-hero-inner > p:not(.eyebrow),
.service-hero-grid > div > p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: hsl(var(--muted));
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.7;
}

.services-page .hero-buttons,
.service-page .hero-buttons {
  justify-content: flex-start;
}

.service-hero .hero-buttons {
  margin: 14px 0 0;
  padding: 4px 4px 0;
}

.service-modules .service-hero .hero-buttons {
  width: min(100%, 620px);
}

.service-modules .service-hero .primary-button,
.service-modules .service-hero .secondary-button {
  flex: 1 1 0;
  min-width: 0;
  padding-inline: 24px;
}

.service-states .service-hero-grid-copy {
  width: min(100%, 1040px);
}

.service-states .service-hero-grid-copy > .reveal-item {
  max-width: 980px;
}

.service-states .service-hero-grid > div > p:not(.eyebrow) {
  margin-top: clamp(22px, 2vw, 30px);
}

.service-states .service-hero .hero-buttons {
  margin-top: clamp(26px, 3vw, 40px);
}

.service-states .service-hero .primary-button,
.service-states .service-hero .secondary-button {
  max-width: min(100%, 360px);
  min-width: 0;
  padding-inline: clamp(18px, 4vw, 28px);
  text-align: center;
  white-space: normal;
}

.service-states .final-panel .primary-button {
  width: fit-content;
  max-width: min(100%, 340px);
  min-height: 58px;
  padding: 12px clamp(18px, 4vw, 28px);
  text-align: center;
  line-height: 1.15;
  white-space: normal;
}

.service-states .service-audience-copy,
.service-states .service-audience-copy h2 {
  max-width: min(100%, 1240px);
}

.service-states .service-audience-copy h2 {
  font-size: clamp(42px, 4.7vw, 64px);
  line-height: 1.03;
}

.service-states .service-audience-copy p:not(.eyebrow) {
  max-width: 900px;
}

.service-states .service-audience-list {
  width: 100%;
}

.service-states .service-deliverables-block .section-heading {
  width: min(100%, 1040px);
}

.service-states .service-deliverables-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.service-states .service-deliverables-grid article {
  grid-column: span 2;
  min-height: clamp(230px, 18vw, 285px);
  padding: clamp(22px, 2.2vw, 28px);
}

.service-states .service-deliverables-grid article:nth-child(1),
.service-states .service-deliverables-grid article:nth-child(2) {
  grid-column: span 3;
}

.service-states .service-deliverables-grid article:last-child:nth-child(odd) {
  grid-column: span 2;
}

.service-states .service-deliverables-grid strong {
  max-width: 760px;
}

.service-data .service-hero-grid-copy {
  width: min(100%, 1080px);
}

.service-data .service-hero-grid-copy > .reveal-item {
  max-width: 980px;
}

.service-flow .service-hero-grid-copy {
  width: min(100%, 1080px);
}

.service-roadmap .service-hero-grid-copy {
  width: min(100%, 1080px);
}

.service-flow .service-hero-grid-copy > .reveal-item {
  max-width: 980px;
}

.service-roadmap .service-hero-grid-copy > .reveal-item {
  max-width: 980px;
}

.service-data .service-hero-grid > div > p:not(.eyebrow) {
  margin-top: clamp(22px, 2.2vw, 32px);
}

.service-flow .service-hero-grid > div > p:not(.eyebrow) {
  margin-top: clamp(22px, 2.2vw, 32px);
}

.service-roadmap .service-hero-grid > div > p:not(.eyebrow) {
  margin-top: clamp(22px, 2.2vw, 32px);
}

.service-data .service-hero .hero-buttons {
  width: min(100%, 640px);
  margin-top: clamp(26px, 3vw, 40px);
}

.service-flow .service-hero .hero-buttons {
  width: min(100%, 640px);
  margin-top: clamp(26px, 3vw, 40px);
}

.service-roadmap .service-hero .hero-buttons {
  width: min(100%, 640px);
  margin-top: clamp(26px, 3vw, 40px);
}

.service-data .service-hero .primary-button,
.service-data .service-hero .secondary-button,
.service-flow .service-hero .primary-button,
.service-flow .service-hero .secondary-button,
.service-roadmap .service-hero .primary-button,
.service-roadmap .service-hero .secondary-button {
  flex: 1 1 0;
  min-width: 0;
  padding-inline: clamp(18px, 3vw, 28px);
  text-align: center;
  white-space: normal;
}

.service-modules .final-panel .primary-button,
.service-data .final-panel .primary-button,
.service-flow .final-panel .primary-button,
.service-roadmap .final-panel .primary-button {
  width: fit-content;
  max-width: min(100%, 340px);
  min-height: 58px;
  padding: 12px clamp(18px, 4vw, 28px);
  text-align: center;
  line-height: 1.15;
  white-space: normal;
}

.service-modules .service-deliverables-block .section-heading,
.service-data .service-deliverables-block .section-heading,
.service-flow .service-deliverables-block .section-heading,
.service-roadmap .service-deliverables-block .section-heading {
  width: min(100%, 1120px);
  max-width: 1120px;
}

.service-modules .service-deliverables-block .section-heading h2,
.service-data .service-deliverables-block .section-heading h2,
.service-flow .service-deliverables-block .section-heading h2,
.service-roadmap .service-deliverables-block .section-heading h2 {
  max-width: 1120px;
}

.service-modules .service-deliverables-grid,
.service-data .service-deliverables-grid,
.service-flow .service-deliverables-grid,
.service-roadmap .service-deliverables-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.service-modules .service-deliverables-grid article,
.service-data .service-deliverables-grid article,
.service-flow .service-deliverables-grid article,
.service-roadmap .service-deliverables-grid article {
  grid-column: span 2;
  min-height: clamp(230px, 18vw, 285px);
  padding: clamp(22px, 2.2vw, 28px);
}

.service-modules .service-deliverables-grid article:nth-child(1),
.service-modules .service-deliverables-grid article:nth-child(2),
.service-data .service-deliverables-grid article:nth-child(1),
.service-data .service-deliverables-grid article:nth-child(2),
.service-flow .service-deliverables-grid article:nth-child(1),
.service-flow .service-deliverables-grid article:nth-child(2),
.service-roadmap .service-deliverables-grid article:nth-child(1),
.service-roadmap .service-deliverables-grid article:nth-child(2) {
  grid-column: span 3;
}

.service-modules .service-deliverables-grid article:last-child:nth-child(odd),
.service-data .service-deliverables-grid article:last-child:nth-child(odd),
.service-flow .service-deliverables-grid article:last-child:nth-child(odd),
.service-roadmap .service-deliverables-grid article:last-child:nth-child(odd) {
  grid-column: span 2;
}

.service-modules .service-deliverables-grid strong,
.service-data .service-deliverables-grid strong,
.service-flow .service-deliverables-grid strong,
.service-roadmap .service-deliverables-grid strong {
  max-width: 760px;
}

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

.service-overview-card {
  position: relative;
  display: flex;
  min-height: clamp(210px, 18vw, 270px);
  grid-column: span 3;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(12px, 1.4vw, 18px);
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.15);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 12%, hsl(var(--accent-cyan) / 0.13), transparent 16rem),
    linear-gradient(145deg, hsl(222 40% 8% / 0.9), hsl(240 46% 4% / 0.96));
  padding: clamp(24px, 2.4vw, 30px);
  box-shadow: 0 30px 90px hsl(0 0% 0% / 0.28), inset 0 1px 1px hsl(0 0% 100% / 0.08);
  transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms ease;
}

.service-overview-card:nth-child(1),
.service-overview-card:nth-child(6) {
  grid-column: span 4;
}

.service-overview-card:nth-child(2),
.service-overview-card:nth-child(5) {
  grid-column: span 2;
}

.service-overview-card::after {
  content: "";
  position: absolute;
  inset: auto 26px 22px auto;
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, hsl(var(--accent-cyan)), hsl(var(--accent-purple)));
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
}

.service-overview-card:hover,
.service-overview-card:focus-visible {
  border-color: hsl(var(--accent-cyan) / 0.34);
  box-shadow: 0 36px 110px hsl(0 0% 0% / 0.36), 0 0 42px hsl(var(--accent-cyan) / 0.08);
  transform: translateY(-4px);
}

.service-overview-card:hover::after,
.service-overview-card:focus-visible::after {
  opacity: 1;
}

.service-overview-card h2,
.service-section h2 {
  max-width: 760px;
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.024em;
}

.service-overview-card h2 {
  margin-top: clamp(4px, 0.7vw, 8px);
  font-size: clamp(30px, 3.5vw, 48px);
}

.service-overview-card span {
  color: hsl(var(--foreground) / 0.86);
  font-size: 15px;
  font-weight: 900;
}

.service-benefits-section .section-heading,
.service-benefits-section h2 {
  max-width: 1040px;
}

.service-overview-card p:not(.eyebrow),
.services-positioning p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: hsl(var(--muted));
  font-size: 16px;
  line-height: 1.7;
}

.service-text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  color: hsl(var(--foreground));
  font-weight: 800;
}

.service-card-number {
  position: absolute;
  right: 26px;
  bottom: 20px;
  color: hsl(var(--foreground) / 0.08);
  font-family: "Archivo Black", "General Sans", system-ui, sans-serif;
  font-size: 72px;
  line-height: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(34px, 4vw, 46px);
  color: hsl(var(--muted));
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: hsl(var(--foreground) / 0.74);
}

.service-hero .breadcrumbs {
  margin-bottom: clamp(24px, 2.8vw, 34px);
}

.service-hero-grid,
.service-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.service-hero-grid-copy {
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr);
}

.service-two-col {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: start;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.service-tags span {
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.035);
  padding: 9px 12px;
  color: hsl(var(--foreground) / 0.8);
  font-size: 12px;
  font-weight: 800;
}

.service-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.16);
  border-radius: 32px;
  background: radial-gradient(circle at 78% 20%, hsl(var(--accent-cyan) / 0.13), transparent 18rem), linear-gradient(145deg, hsl(222 40% 8% / 0.92), hsl(240 46% 4% / 0.96));
  box-shadow: 0 34px 110px hsl(0 0% 0% / 0.34), inset 0 1px 1px hsl(0 0% 100% / 0.1);
}

.service-visual-browser {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  grid-template-rows: 54px 1fr 0.7fr;
  gap: 14px;
  padding: 24px;
}

.service-visual-browser span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: hsl(var(--accent-cyan) / 0.72);
}

.service-visual-browser div,
.service-visual-modules span,
.service-visual-flow span,
.service-visual-roadmap span,
.service-visual-states span {
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 20px;
  background: hsl(0 0% 100% / 0.045);
}

.service-visual-browser div:nth-of-type(1) {
  grid-column: 1 / -1;
}

.service-visual-modules,
.service-visual-flow,
.service-visual-roadmap,
.service-visual-states {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.service-visual-modules {
  grid-template-columns: 0.55fr 1fr;
}

.service-visual-modules span:nth-child(1) {
  grid-row: span 3;
}

.service-visual-flow {
  grid-template-columns: repeat(2, 1fr);
  align-content: center;
}

.service-visual-flow span,
.service-visual-states span,
.service-visual-roadmap span {
  display: grid;
  min-height: 74px;
  place-items: center;
  color: hsl(var(--foreground));
  font-weight: 800;
}

.service-visual-data {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 14px;
  padding: 34px;
}

.service-visual-data strong {
  position: absolute;
  top: 34px;
  left: 34px;
  color: hsl(var(--foreground));
  font-size: 64px;
  font-weight: 400;
}

.service-visual-data span {
  display: block;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, hsl(var(--accent-cyan) / 0.78), hsl(var(--accent-purple) / 0.22));
}

.service-visual-data span:nth-child(2) { height: 42%; }
.service-visual-data span:nth-child(3) { height: 68%; }
.service-visual-data span:nth-child(4) { height: 54%; }
.service-visual-data span:nth-child(5) { height: 82%; }

.service-big-text {
  margin: 0;
  color: hsl(var(--foreground) / 0.82);
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.service-differential-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 12%, hsl(var(--accent-cyan) / 0.12), transparent 18rem),
    linear-gradient(145deg, hsl(222 40% 8% / 0.82), hsl(240 46% 4% / 0.94));
  padding: clamp(24px, 4vw, 46px);
  box-shadow: 0 34px 110px hsl(0 0% 0% / 0.28), inset 0 1px 1px hsl(0 0% 100% / 0.08);
}

.service-differential-copy {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
}

.service-differential-copy h2 {
  max-width: 680px;
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.032em;
}

.service-differential-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: hsl(var(--muted));
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
}

.service-differential-points {
  display: grid;
  gap: 12px;
}

.service-differential-points article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 16px;
  align-content: start;
  border: 1px solid hsl(var(--border) / 0.12);
  border-radius: 22px;
  background: hsl(0 0% 100% / 0.035);
  padding: clamp(18px, 2vw, 24px);
}

.service-differential-points span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid hsl(var(--accent-cyan) / 0.22);
  border-radius: 999px;
  color: hsl(var(--accent-cyan));
  font-size: 12px;
  font-weight: 900;
}

.service-differential-points strong {
  align-self: center;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.018em;
}

.service-differential-points p {
  grid-column: 2;
  margin: 0;
  color: hsl(var(--muted));
  font-size: 15px;
  line-height: 1.62;
}

.service-deliverables-block {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}

.service-deliverables-block .section-heading {
  width: min(100%, 860px);
}

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

.service-deliverables-grid article {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  border: 1px solid hsl(var(--border) / 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 16%, hsl(var(--accent-cyan) / 0.1), transparent 10rem),
    hsl(0 0% 100% / 0.032);
  padding: 20px;
  box-shadow: inset 0 1px 1px hsl(0 0% 100% / 0.06);
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.service-deliverables-grid article:hover {
  border-color: hsl(var(--accent-cyan) / 0.28);
  background:
    radial-gradient(circle at 82% 16%, hsl(var(--accent-cyan) / 0.16), transparent 10rem),
    hsl(0 0% 100% / 0.046);
  transform: translateY(-3px);
}

.service-deliverables-grid span {
  width: fit-content;
  border: 1px solid hsl(var(--accent-cyan) / 0.18);
  border-radius: 999px;
  background: hsl(var(--accent-cyan) / 0.06);
  padding: 8px 10px;
  color: hsl(var(--accent-cyan));
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-deliverables-grid strong {
  margin-top: 2px;
  color: hsl(var(--foreground) / 0.9);
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.026em;
}

.service-deliverables-grid article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 7px;
  margin-top: auto;
  padding-top: 4px;
}

.service-deliverables-grid em {
  border: 1px solid hsl(var(--border) / 0.1);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.035);
  padding: 8px 10px;
  color: hsl(var(--foreground) / 0.72);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.service-list-card,
.empty-cases {
  border: 1px solid hsl(var(--border) / 0.15);
  border-radius: 26px;
  background: hsl(0 0% 100% / 0.03);
  padding: 28px;
}

.service-list-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list-card li {
  position: relative;
  padding-left: 18px;
  color: hsl(var(--foreground) / 0.8);
  line-height: 1.6;
}

.service-list-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: hsl(var(--accent-cyan) / 0.76);
}

.service-audience-section {
  overflow: hidden;
}

.service-audience-layout {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.service-audience-copy {
  max-width: 920px;
}

.service-audience-copy h2 {
  max-width: 860px;
}

.service-modules .service-audience-copy,
.service-modules .service-audience-copy h2 {
  max-width: 1040px;
}

.service-modules .service-audience-copy p:not(.eyebrow) {
  max-width: 820px;
}

.service-flow .service-audience-copy,
.service-roadmap .service-audience-copy,
.service-flow .service-audience-copy h2,
.service-roadmap .service-audience-copy h2 {
  max-width: 1120px;
}

.service-flow .service-audience-copy p:not(.eyebrow),
.service-roadmap .service-audience-copy p:not(.eyebrow) {
  max-width: 820px;
}

.service-audience-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: hsl(var(--muted));
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

.service-audience-list {
  display: grid;
  gap: 0;
  width: min(100%, 1040px);
  border-top: 1px solid hsl(var(--border) / 0.16);
}

.service-audience-list article {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: baseline;
  border-bottom: 1px solid hsl(var(--border) / 0.16);
  padding: clamp(24px, 3vw, 36px) 0;
}

.service-audience-list span {
  color: hsl(var(--accent-cyan));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-audience-list h3 {
  max-width: 780px;
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.026em;
  text-wrap: balance;
}

.service-audience-list p {
  max-width: 720px;
  margin: 12px 0 0;
  color: hsl(var(--muted));
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(8px, 1.2vw, 18px);
}

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

.service-benefits article,
.related-services a {
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 24px;
  background: hsl(0 0% 100% / 0.03);
  padding: 24px;
}

.service-benefits article {
  position: relative;
  display: flex;
  min-height: clamp(168px, 13vw, 210px);
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(12px, 1.2vw, 16px);
  overflow: hidden;
}

.service-benefits article::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background-image: radial-gradient(
    transparent,
    transparent,
    hsl(var(--accent-cyan) / 0.84),
    hsl(var(--accent-purple) / 0.72),
    hsl(var(--foreground) / 0.58),
    transparent,
    transparent
  );
  background-size: 300% 300%;
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.9;
  animation: service-shine-border 12s linear infinite;
  will-change: background-position;
}

.service-benefits article:first-child {
  background:
    radial-gradient(circle at 86% 14%, hsl(var(--accent-cyan) / 0.13), transparent 15rem),
    hsl(0 0% 100% / 0.04);
}

.service-benefits article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.service-benefits span {
  display: none;
}

.service-benefits strong {
  max-width: 620px;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.024em;
}

.service-benefits p {
  max-width: 660px;
  margin: 0;
  color: hsl(var(--muted));
  font-size: 16px;
  line-height: 1.62;
}

.service-products-section .section-heading,
.service-fit-section .section-heading,
.service-hiring-section .section-heading {
  width: min(100%, 900px);
}

.service-products-section .section-heading p:not(.eyebrow),
.service-fit-section .section-heading p:not(.eyebrow),
.service-hiring-section .section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: hsl(var(--muted));
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

.service-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 46px);
}

.service-products-grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 260px;
  gap: 20px;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 10%, hsl(var(--accent-cyan) / 0.12), transparent 13rem),
    hsl(0 0% 100% / 0.03);
  padding: clamp(22px, 2.4vw, 28px);
  box-shadow: inset 0 1px 1px hsl(0 0% 100% / 0.06);
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.service-products-grid article:hover {
  border-color: hsl(var(--accent-cyan) / 0.28);
  background:
    radial-gradient(circle at 88% 10%, hsl(var(--accent-cyan) / 0.18), transparent 13rem),
    hsl(0 0% 100% / 0.045);
  transform: translateY(-3px);
}

.service-product-icon,
.service-hiring-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid hsl(var(--accent-cyan) / 0.24);
  border-radius: 16px;
  background: hsl(var(--accent-cyan) / 0.07);
  color: hsl(var(--accent-cyan));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-products-grid h3 {
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.026em;
}

.service-products-grid strong {
  display: block;
  width: fit-content;
  margin-top: 12px;
  border: 1px solid hsl(var(--accent-cyan) / 0.18);
  border-radius: 999px;
  background: hsl(var(--accent-cyan) / 0.06);
  padding: 8px 11px;
  color: hsl(var(--foreground));
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.service-products-grid p {
  max-width: 430px;
  margin: 0;
  color: hsl(var(--muted));
  font-size: 15px;
  line-height: 1.62;
}

.service-product-cta {
  width: fit-content;
  min-height: 42px;
  align-self: end;
  padding: 0 16px;
  font-size: 13px;
  gap: 8px;
}

.service-product-cta span {
  display: inline-block;
  transition: transform 180ms ease;
}

.service-product-cta:hover span {
  transform: translateX(2px);
}

.service-fit-list {
  display: grid;
  width: min(100%, 1080px);
  margin-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid hsl(var(--border) / 0.16);
}

.service-fit-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  border-bottom: 1px solid hsl(var(--border) / 0.16);
  padding: clamp(22px, 3vw, 34px) 0;
}

.service-fit-list span,
.service-hiring-label {
  margin: 0;
  color: hsl(var(--accent-cyan));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-fit-list p {
  max-width: 720px;
  margin: 8px 0 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.022em;
}

.service-fit-list strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  border: 1px solid hsl(var(--accent-cyan) / 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle at 24% 10%, hsl(var(--accent-cyan) / 0.16), transparent 10rem),
    hsl(0 0% 100% / 0.04);
  padding: 13px 18px;
  color: hsl(var(--foreground));
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.service-fit-list strong::before {
  content: "";
  position: absolute;
  right: calc(100% + 18px);
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--accent-cyan) / 0.7));
}

.service-hiring-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 4vw, 46px);
}

.service-hiring-grid article {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  gap: 18px;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 12%, hsl(var(--accent-cyan) / 0.11), transparent 16rem),
    linear-gradient(145deg, hsl(222 40% 8% / 0.84), hsl(240 46% 4% / 0.94));
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 30px 96px hsl(0 0% 0% / 0.24), inset 0 1px 1px hsl(0 0% 100% / 0.07);
}

.service-hiring-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  font-size: 20px;
  letter-spacing: 0;
}

.service-hiring-grid h3 {
  max-width: 560px;
  margin: -6px 0 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.032em;
}

.service-hiring-grid p:not(.service-hiring-label) {
  max-width: 620px;
  margin: 0;
  color: hsl(var(--muted));
  font-size: 16px;
  line-height: 1.65;
}

.service-hiring-grid ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.service-hiring-grid li {
  position: relative;
  padding-left: 24px;
  color: hsl(var(--foreground) / 0.82);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.service-hiring-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(var(--accent-cyan));
  font-weight: 900;
}

.service-hiring-grid strong {
  max-width: 620px;
  margin-top: auto;
  color: hsl(var(--foreground));
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 800;
  line-height: 1.42;
}

.service-hiring-grid small {
  max-width: 620px;
  color: hsl(var(--muted) / 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.service-hiring-cta {
  width: fit-content;
  min-height: 44px;
  margin-top: 2px;
  padding: 0 18px;
  font-size: 14px;
}

@keyframes service-shine-border {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-benefits article::after {
    animation: none;
  }
}

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

.service-process article {
  border-top: 1px solid hsl(var(--accent-cyan) / 0.36);
  padding-top: 18px;
}

.service-process span,
.related-services span {
  color: hsl(var(--accent-soft));
  font-size: 12px;
  font-weight: 900;
}

.related-services span {
  letter-spacing: 0.14em;
}

.service-process strong,
.related-services strong {
  display: block;
  margin-top: 13px;
  color: hsl(var(--foreground));
  font-size: 18px;
  line-height: 1.25;
}

.related-services strong {
  font-size: 22px;
}

.related-services p {
  margin: 10px 0 0;
  color: hsl(var(--muted));
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 22px;
  background: hsl(0 0% 100% / 0.03);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  color: hsl(var(--foreground));
  text-align: left;
  cursor: pointer;
}

.faq-item button span:first-child {
  font-weight: 800;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: hsl(var(--muted));
  line-height: 1.7;
}

.contact-page {
  background:
    radial-gradient(circle at 78% 6%, hsl(var(--accent-cyan) / 0.13), transparent 28rem),
    radial-gradient(circle at 12% 28%, hsl(var(--accent-purple) / 0.12), transparent 30rem),
    hsl(var(--background));
}

.contact-hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  isolation: isolate;
}

.contact-liquid-ether {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.74;
}

.contact-liquid-ether canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.contact-hero-inner {
  position: relative;
  z-index: 4;
  width: min(100% - (var(--page-gutter) * 2), var(--max));
  margin: 0 auto;
  padding: clamp(54px, 6.5vw, 88px) 0 clamp(56px, 7vw, 94px);
}

.contact-hero h1 {
  max-width: 980px;
  margin: 22px 0 0;
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.024em;
}

.contact-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: hsl(var(--muted));
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
}

.contact-section {
  padding-top: clamp(42px, 7vw, 92px);
}

.contact-grid {
  display: grid;
  width: min(100% - (var(--page-gutter) * 2), var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.contact-grid-no-form {
  grid-template-columns: 1fr;
  width: min(100% - (var(--page-gutter) * 2), 1180px);
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.contact-grid-no-form .contact-copy {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(16px, 2.2vw, 22px);
}

.contact-grid-no-form .contact-card:first-child {
  grid-column: 1 / -1;
  min-height: clamp(180px, 18vw, 230px);
}

.contact-grid-no-form .contact-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 36px);
}

.contact-card,
.contact-form {
  border: 1px solid hsl(var(--border) / 0.16);
  border-radius: 28px;
  background:
    linear-gradient(140deg, hsl(0 0% 100% / 0.055), hsl(0 0% 100% / 0.015)),
    hsl(222 36% 5% / 0.78);
  box-shadow: 0 28px 88px hsl(0 0% 0% / 0.28), inset 0 1px 1px hsl(0 0% 100% / 0.08);
}

.contact-card {
  padding: clamp(24px, 4vw, 34px);
}

.contact-card h2,
.form-heading h2 {
  margin: 0;
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.contact-card p,
.form-heading p {
  margin: 16px 0 0;
  color: hsl(var(--muted));
  line-height: 1.7;
}

.contact-steps {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-steps li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.contact-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid hsl(var(--accent-cyan) / 0.26);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.035);
  color: hsl(var(--accent-soft));
  font-size: 12px;
  font-weight: 900;
}

.contact-steps strong {
  color: hsl(var(--foreground));
  font-size: 17px;
}

.contact-steps p {
  margin-top: 7px;
}

.contact-email {
  display: inline-flex;
  margin-top: 20px;
  color: hsl(var(--accent-soft));
  font-weight: 800;
}

.contact-inline-link {
  margin-top: 0;
}

.contact-channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-social-list {
  margin-top: 16px;
}

.contact-channel-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(var(--accent-cyan) / 0.24);
  border-radius: 999px;
  padding: 10px 15px;
  background:
    linear-gradient(135deg, hsl(var(--accent-cyan) / 0.14), hsl(var(--accent-purple) / 0.08)),
    hsl(0 0% 100% / 0.025);
  color: hsl(var(--foreground));
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-channel-link:hover,
.contact-channel-link:focus-visible {
  border-color: hsl(var(--accent-cyan) / 0.46);
  box-shadow: 0 16px 42px hsl(var(--accent-purple) / 0.18);
  transform: translateY(-2px);
}

.contact-form {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
}

.form-heading {
  margin-bottom: 4px;
}

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

.form-field {
  display: grid;
  gap: 9px;
}

.form-field label,
.consent-field {
  color: hsl(var(--foreground) / 0.88);
  font-size: 14px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid hsl(var(--border) / 0.18);
  border-radius: 16px;
  background: hsl(220 30% 4% / 0.68);
  color: hsl(var(--foreground));
  font: inherit;
  outline: none;
  padding: 0 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 144px;
  resize: vertical;
  padding: 15px 16px;
  line-height: 1.55;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: hsl(var(--accent-cyan) / 0.72);
  background: hsl(220 30% 4% / 0.88);
  box-shadow: 0 0 0 4px hsl(var(--accent-cyan) / 0.12);
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea,
.consent-field.is-invalid {
  border-color: hsl(var(--accent-purple) / 0.86);
}

.form-error {
  min-height: 18px;
  margin: 0;
  color: hsl(var(--accent-soft));
  font-size: 12px;
  font-weight: 700;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 18px;
  padding: 15px 16px;
  color: hsl(var(--muted));
  line-height: 1.5;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: hsl(var(--accent-purple));
}

.form-actions {
  display: grid;
  gap: 14px;
  align-items: center;
}

.form-actions .primary-button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-actions .primary-button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: hsl(var(--muted));
  line-height: 1.55;
}

.form-status.is-error {
  color: hsl(var(--accent-soft));
}

.is-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.about-page {
  background:
    radial-gradient(circle at 12% 8%, hsl(var(--accent-purple) / 0.11), transparent 30rem),
    radial-gradient(circle at 86% 18%, hsl(var(--accent-cyan) / 0.12), transparent 32rem),
    hsl(var(--background));
}

.about-hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  isolation: isolate;
}

.about-floating-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.78;
  mix-blend-mode: screen;
}

.about-floating-lines canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.about-hero-inner,
.about-editorial-block,
.about-purpose,
.about-method,
.about-final-manifesto,
.about-cta {
  width: min(100% - (var(--page-gutter) * 2), var(--max));
  margin: 0 auto;
}

.about-hero-inner {
  position: relative;
  z-index: 4;
  padding: clamp(58px, 7vw, 96px) 0 clamp(56px, 7vw, 94px);
}

.about-hero-grid {
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.about-hero h1,
.about-section-heading h2,
.purpose-grid h2,
.about-editorial-block h2,
.about-final-manifesto h2,
.about-cta-panel h2 {
  margin: 0;
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.024em;
}

.about-hero h1 {
  max-width: 920px;
  margin-top: 22px;
  font-size: clamp(58px, 7.4vw, 104px);
  line-height: 0.98;
}

.about-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: hsl(var(--muted));
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.6;
}

.about-hero .hero-buttons {
  margin-top: clamp(24px, 3vw, 36px);
}

.about-editorial-block {
  max-width: 900px;
}

.about-editorial-block .eyebrow {
  font-size: clamp(12px, 1.1vw, 15px);
  letter-spacing: 0.18em;
}

.about-editorial-block h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
}

.about-final-manifesto h2 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
}

.about-editorial-block p {
  margin: 22px 0 0;
  color: hsl(var(--muted));
  font-size: clamp(18px, 2.15vw, 26px);
  line-height: 1.48;
  letter-spacing: -0.01em;
}

.about-editorial-block strong {
  color: hsl(var(--foreground));
  font-weight: 500;
  text-shadow: 0 0 22px hsl(var(--accent-cyan) / 0.24);
}

.about-section-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 6vw, 66px);
}

.about-section-heading h2,
.purpose-grid h2,
.about-cta-panel h2 {
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.04;
}

.method-steps article > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid hsl(var(--accent-cyan) / 0.28);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.035);
  color: hsl(var(--accent-soft));
  font-size: 12px;
  font-weight: 900;
}

.method-steps article,
.about-cta-panel {
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 28px;
  background:
    linear-gradient(140deg, hsl(0 0% 100% / 0.052), hsl(0 0% 100% / 0.014)),
    hsl(222 36% 5% / 0.74);
  box-shadow: 0 24px 80px hsl(0 0% 0% / 0.24), inset 0 1px 1px hsl(0 0% 100% / 0.07);
}

.method-steps h3 {
  margin: 0;
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.purpose-copy p,
.purpose-commitments p,
.method-steps p,
.about-manifesto-lines p,
.about-cta-panel p {
  color: hsl(var(--muted));
  line-height: 1.7;
}

.purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.purpose-copy p {
  margin: 0 0 18px;
  font-size: clamp(18px, 2vw, 23px);
}

.purpose-commitments {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
  margin-top: clamp(42px, 7vw, 80px);
}

.purpose-commitments article {
  border-top: 1px solid hsl(var(--accent-cyan) / 0.4);
  padding-top: 22px;
}

.purpose-commitments span {
  color: hsl(var(--foreground));
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(30px, 5vw, 62px);
  letter-spacing: -0.024em;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.method-visual {
  position: sticky;
  top: 24px;
  display: grid;
  min-height: 520px;
  place-items: center;
  border: 1px solid hsl(var(--border) / 0.14);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 50%, hsl(var(--accent-cyan) / 0.16), transparent 9rem),
    repeating-radial-gradient(circle at 50% 50%, hsl(var(--accent-cyan) / 0.18) 0 1px, transparent 1px 70px);
  overflow: hidden;
}

.method-visual span {
  position: absolute;
  border: 1px solid hsl(var(--accent-cyan) / 0.18);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.045);
  padding: 10px 14px;
  color: hsl(var(--foreground));
  font-size: 12px;
  font-weight: 800;
}

.method-visual span:nth-child(1) { top: 18%; left: 16%; }
.method-visual span:nth-child(2) { top: 28%; right: 14%; }
.method-visual span:nth-child(3) { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.method-visual span:nth-child(4) { right: 16%; bottom: 24%; }
.method-visual span:nth-child(5) { left: 18%; bottom: 16%; }

.method-steps {
  display: grid;
  gap: 18px;
}

.method-steps article {
  padding: clamp(22px, 4vw, 32px);
}

.method-steps h3 {
  margin-top: 22px;
}

.method-steps p {
  margin: 12px 0 0;
}

.about-final-manifesto {
  min-height: auto;
  border-top: 1px solid hsl(var(--accent-cyan) / 0.14);
  border-bottom: 1px solid hsl(var(--accent-purple) / 0.1);
  margin-bottom: clamp(48px, 7vw, 96px);
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(64px, 8vw, 104px);
}

.about-manifesto-lines {
  position: relative;
  max-width: 1120px;
  opacity: 1;
}

.about-manifesto-lines .eyebrow {
  margin-bottom: clamp(24px, 4vw, 44px);
}

.about-manifesto-headline {
  display: grid;
  width: min(100%, 860px);
  gap: 0.03em;
  color: hsl(var(--foreground));
  font-size: clamp(64px, 7.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.about-manifesto-headline span {
  display: block;
}

.about-manifesto-sequence {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 5vw, 58px);
}

.about-manifesto-looping-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.22em;
  margin: 0;
  color: hsl(var(--foreground) / 0.9);
  font-family: "General Sans", "Geist Sans", system-ui, sans-serif;
  font-size: clamp(64px, 7.6vw, 108px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
  overflow: visible;
}

.manifesto-looping-fixed,
.manifesto-looping-window {
  color: hsl(var(--foreground) / 0.9);
}

.manifesto-looping-window {
  --loop-word-height: 1.06em;
  --loop-pad-x: 0.38em;
  --loop-pad-y: 0.18em;
  display: inline-grid;
  position: relative;
  box-sizing: border-box;
  width: var(--loop-width, 5.9em);
  height: calc(var(--loop-word-height) + (var(--loop-pad-y) * 2));
  max-width: min(100%, calc(100vw - (var(--page-gutter) * 2)));
  align-items: center;
  justify-items: center;
  border-radius: 0.18em;
  color: hsl(var(--foreground));
  isolation: isolate;
  overflow: hidden;
  padding: var(--loop-pad-y) var(--loop-pad-x);
  transition: width 500ms ease;
}

.manifesto-looping-window::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid hsl(var(--accent-cyan) / 0.28);
  border-radius: inherit;
  background: linear-gradient(135deg, #4cc2e9 0%, #9c43fe 48%, #101499 100%);
  box-shadow: inset 0 1px 1px hsl(0 0% 100% / 0.34), 0 20px 70px hsl(var(--accent-purple) / 0.18);
}

.manifesto-looping-track {
  display: flex;
  grid-area: 1 / 1;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: max-content;
  max-width: calc(100vw - (var(--page-gutter) * 2) - 0.76em);
  animation: manifesto-looping-words 11s cubic-bezier(0.175, 0.885, 0.32, 1.08) infinite;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  will-change: transform;
}

.manifesto-looping-track span {
  display: block;
  height: var(--loop-word-height);
  line-height: var(--loop-word-height);
  white-space: nowrap;
}

.manifesto-looping-corners {
  pointer-events: none;
  position: absolute;
}

.manifesto-looping-corners {
  inset: calc(var(--loop-pad-y) + 0.04em) calc(var(--loop-pad-x) + 0.02em);
  z-index: 2;
  background:
    linear-gradient(hsl(var(--accent-cyan)) 0 0) top left / 0.16em 0.035em no-repeat,
    linear-gradient(hsl(var(--accent-cyan)) 0 0) top left / 0.035em 0.16em no-repeat,
    linear-gradient(hsl(var(--accent-cyan)) 0 0) top right / 0.16em 0.035em no-repeat,
    linear-gradient(hsl(var(--accent-cyan)) 0 0) top right / 0.035em 0.16em no-repeat,
    linear-gradient(hsl(var(--accent-purple)) 0 0) bottom left / 0.16em 0.035em no-repeat,
    linear-gradient(hsl(var(--accent-purple)) 0 0) bottom left / 0.035em 0.16em no-repeat,
    linear-gradient(hsl(var(--accent-purple)) 0 0) bottom right / 0.16em 0.035em no-repeat,
    linear-gradient(hsl(var(--accent-purple)) 0 0) bottom right / 0.035em 0.16em no-repeat;
}

.manifesto-looping-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes manifesto-looping-words {
  0%,
  12% {
    transform: translateY(0);
  }

  18%,
  30% {
    transform: translateY(calc(var(--loop-word-height) * -1));
  }

  36%,
  48% {
    transform: translateY(calc(var(--loop-word-height) * -2));
  }

  54%,
  66% {
    transform: translateY(calc(var(--loop-word-height) * -3));
  }

  72%,
  84% {
    transform: translateY(calc(var(--loop-word-height) * -4));
  }

  90%,
  100% {
    transform: translateY(calc(var(--loop-word-height) * -5));
  }
}

@media (prefers-reduced-motion: reduce) {
  .manifesto-looping-window {
    transition: none;
  }

  .manifesto-looping-track {
    animation: none;
    transform: translateY(0);
  }
}

.about-manifesto-signature {
  max-width: 720px;
  margin: clamp(46px, 6vw, 76px) auto 0;
  text-align: center;
}

.about-manifesto-signature p {
  margin: 0;
  color: hsl(var(--muted));
  font-size: clamp(22px, 2.35vw, 30px);
  line-height: 1.55;
}

.about-manifesto-signature p + p {
  margin-top: 10px;
}

.about-manifesto-signature strong {
  color: hsl(var(--foreground));
  font-weight: 500;
}

.manifesto-motion-ready [data-manifesto-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease), color 720ms ease;
}

.manifesto-motion-ready .about-manifesto-headline [data-manifesto-reveal] {
  transform: translateY(0.7em);
  clip-path: inset(0 0 100% 0);
}

.manifesto-motion-ready [data-manifesto-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}

.about-cta-panel {
  padding: clamp(30px, 6vw, 62px);
  background:
    radial-gradient(circle at 88% 14%, hsl(var(--accent-cyan) / 0.16), transparent 26rem),
    linear-gradient(140deg, hsl(0 0% 100% / 0.065), hsl(0 0% 100% / 0.018)),
    hsl(222 36% 5% / 0.78);
}

.about-cta-panel p {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: clamp(18px, 2vw, 23px);
}

.about-cta {
  padding-top: 0;
  padding-bottom: clamp(104px, 12vw, 164px);
}

.about-cta-panel .hero-buttons {
  margin-top: clamp(28px, 4vw, 44px);
}

@media (max-width: 1040px) {
  .about-hero-grid,
  .purpose-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-visual {
    min-height: 360px;
  }

  .about-final-manifesto {
    min-height: auto;
  }

  .about-manifesto-headline {
    width: min(100%, 760px);
    font-size: clamp(52px, 8vw, 72px);
  }

  .about-manifesto-sequence {
    margin-top: clamp(42px, 7vw, 68px);
  }

  .about-manifesto-sequence p {
    font-size: clamp(44px, 7vw, 68px);
  }

  .about-manifesto-signature {
    margin-top: clamp(52px, 8vw, 82px);
  }

  .method-visual {
    position: relative;
    top: auto;
  }

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

  .contact-grid-no-form .contact-copy {
    width: min(100%, 780px);
    margin: 0 auto;
    grid-template-columns: 1fr;
  }

  .contact-grid-no-form .contact-card:first-child {
    min-height: auto;
  }

  .contact-form {
    position: relative;
    top: auto;
  }

  .services-grid,
  .service-hero-grid,
  .service-two-col {
    grid-template-columns: 1fr;
  }

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

  .service-differential-copy {
    min-height: auto;
    gap: 24px;
  }

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

  .service-overview-card,
  .service-overview-card:nth-child(1),
  .service-overview-card:nth-child(2),
  .service-overview-card:nth-child(5),
  .service-overview-card:nth-child(6) {
    grid-column: auto;
    min-height: clamp(180px, 26vw, 230px);
  }

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

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

@media (max-width: 760px) {
  .about-hero {
    min-height: auto;
  }

  .about-hero-inner {
    width: min(calc(100% - 32px), var(--max));
    padding: 48px 0 54px;
  }

  .about-hero-grid,
  .about-hero-grid > div {
    min-width: 0;
  }

  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 11.2vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.026em;
    text-wrap: balance;
  }

  .about-lead {
    max-width: 100%;
    font-size: clamp(16px, 4.8vw, 18px);
    line-height: 1.62;
    overflow-wrap: break-word;
  }

  .about-hero .hero-buttons {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    gap: 14px;
    margin-top: 28px;
  }

  .about-hero .primary-button,
  .about-hero .secondary-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 12px 18px;
    white-space: normal;
    text-align: center;
    font-size: clamp(15px, 4.4vw, 17px);
    line-height: 1.2;
  }

  .about-editorial-block p {
    font-size: clamp(17px, 5vw, 21px);
    line-height: 1.55;
  }

  .about-final-manifesto {
    min-height: auto;
    margin-bottom: 46px;
    padding-top: 54px;
    padding-bottom: 62px;
  }

  .about-manifesto-lines .eyebrow {
    margin-bottom: 24px;
  }

  .about-manifesto-headline {
    font-size: clamp(40px, 12.5vw, 54px);
    line-height: 1.03;
    letter-spacing: -0.038em;
  }

  .about-manifesto-sequence {
    justify-content: flex-start;
    margin-top: 34px;
  }

  .about-manifesto-sequence p {
    font-size: clamp(34px, 10.5vw, 50px);
    line-height: 1.12;
  }

  .about-manifesto-looping-line {
    gap: 0.16em;
    justify-content: flex-start;
  }

  .manifesto-looping-window {
    max-width: 100%;
    border-radius: 0.24em;
    --loop-pad-x: 0.32em;
    --loop-pad-y: 0.16em;
  }

  .about-manifesto-signature {
    max-width: 100%;
    margin-top: 40px;
    text-align: center;
  }

  .about-manifesto-signature p {
    font-size: clamp(19px, 5.4vw, 22px);
    line-height: 1.55;
  }

  .about-cta {
    padding-top: 0;
    padding-bottom: 96px;
  }

  .method-steps article > span {
    width: 42px;
    height: 42px;
  }

  .method-steps article,
  .about-cta-panel {
    border-radius: 24px;
    padding: 22px;
  }

  .about-cta-panel {
    overflow: hidden;
  }

  .about-cta-panel h2 {
    max-width: 100%;
    font-size: clamp(31px, 10.5vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.022em;
    text-wrap: balance;
    overflow-wrap: normal;
  }

  .about-cta-panel p {
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(16px, 5vw, 18px);
    line-height: 1.65;
  }

  .about-cta-panel .hero-buttons {
    width: 100%;
    align-items: stretch;
    gap: 14px;
    margin-top: 28px;
  }

  .about-cta-panel .primary-button,
  .about-cta-panel .secondary-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 12px 18px;
    white-space: normal;
    text-align: center;
    font-size: clamp(15px, 4.6vw, 17px);
    line-height: 1.2;
  }

  .purpose-commitments {
    grid-template-columns: 1fr;
  }

  .method-visual {
    display: none;
  }

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

  .contact-hero-inner {
    padding: 52px 0 58px;
  }

  .contact-hero h1 {
    font-size: clamp(44px, 14vw, 72px);
  }

  .contact-lead {
    font-size: 18px;
  }

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

  .contact-card,
  .contact-form {
    border-radius: 24px;
    padding: 22px;
  }

  .contact-grid-no-form .contact-card {
    padding: clamp(20px, 7vw, 28px);
  }

  .contact-channel-list {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-channel-link {
    width: 100%;
  }

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

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

  .services-hero-inner {
    padding: 42px 0 54px;
  }

  .service-hero-inner {
    padding: 34px 0 52px;
  }

  .services-hero h1 {
    font-size: clamp(46px, 15vw, 72px);
    line-height: 1;
  }

  .service-hero h1 {
    font-size: clamp(40px, 13vw, 52px);
    line-height: 1.04;
  }

  .services-hero-inner > p:not(.eyebrow),
  .service-hero-grid > div > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 18px;
  }

  .service-tags {
    margin-top: 18px;
  }

  .service-hero .hero-buttons {
    margin-top: 12px;
  }

  .service-modules .service-hero .hero-buttons {
    width: 100%;
  }

  .service-modules .service-hero .primary-button,
  .service-modules .service-hero .secondary-button {
    width: 100%;
  }

  .service-overview-card {
    min-height: auto;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
  }

  .service-visual {
    min-height: 250px;
    border-radius: 24px;
  }

  .service-benefits,
  .related-services,
  .service-process {
    grid-template-columns: 1fr;
  }

  .service-audience-layout {
    gap: 30px;
  }

  .service-audience-copy p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 17px;
  }

  .service-audience-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .service-audience-list h3 {
    font-size: clamp(24px, 7.4vw, 32px);
  }

  .service-audience-list p {
    margin-top: 10px;
    font-size: 16px;
  }

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

  .service-benefits article:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .service-list-card,
  .empty-cases,
  .service-benefits article,
  .related-services a {
    padding: 22px;
  }

  .service-benefits article {
    min-height: auto;
    gap: 12px;
  }

  .service-differential-panel {
    border-radius: 24px;
    padding: 22px;
  }

  .service-differential-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .service-differential-copy p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 17px;
  }

  .service-differential-points article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .service-differential-points p {
    grid-column: auto;
  }

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

  .service-deliverables-grid article {
    min-height: auto;
    gap: 16px;
    padding: 18px;
  }

  .service-big-text {
    font-size: clamp(22px, 7vw, 30px);
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .service-hero .breadcrumbs {
    margin-bottom: 24px;
  }
}

.solutions-hero,
.services-hero,
.service-hero,
.insights-hero,
.article-hero,
.contact-hero,
.about-hero {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
}

.products-hero,
.product-detail-hero,
.legal-hero,
.sitemap-hero {
  display: flex;
  min-height: calc(100vh - 84px);
  min-height: calc(100svh - 84px);
  flex-direction: column;
}

.solutions-hero-inner,
.services-hero-inner,
.service-hero-inner,
.article-hero-inner,
.contact-hero-inner,
.about-hero-inner,
.products-hero-inner,
.product-detail-inner,
.legal-hero-inner {
  flex: 1;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
}

.insights-hero-inner {
  flex: 1;
  min-height: 0;
  align-content: center;
}

.sitemap-hero {
  justify-content: center;
}

.service-states .service-hero-grid > div > p:not(.eyebrow) {
  margin-top: clamp(20px, 3vw, 30px);
}

.service-states .service-hero .hero-buttons {
  margin-top: clamp(24px, 5vw, 40px);
}

.service-data .service-hero-grid > div > p:not(.eyebrow) {
  margin-top: clamp(20px, 3vw, 32px);
}

.service-flow .service-hero-grid > div > p:not(.eyebrow) {
  margin-top: clamp(20px, 3vw, 32px);
}

.service-roadmap .service-hero-grid > div > p:not(.eyebrow) {
  margin-top: clamp(20px, 3vw, 32px);
}

.service-data .service-hero .hero-buttons {
  margin-top: clamp(24px, 5vw, 40px);
}

.service-flow .service-hero .hero-buttons {
  margin-top: clamp(24px, 5vw, 40px);
}

.service-roadmap .service-hero .hero-buttons {
  margin-top: clamp(24px, 5vw, 40px);
}

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

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

  .service-hiring-grid article {
    min-height: auto;
  }

  .service-states .service-deliverables-grid,
  .service-modules .service-deliverables-grid,
  .service-data .service-deliverables-grid,
  .service-flow .service-deliverables-grid,
  .service-roadmap .service-deliverables-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .service-states .service-deliverables-grid article,
  .service-states .service-deliverables-grid article:nth-child(1),
  .service-states .service-deliverables-grid article:nth-child(2),
  .service-states .service-deliverables-grid article:last-child:nth-child(odd),
  .service-modules .service-deliverables-grid article,
  .service-modules .service-deliverables-grid article:nth-child(1),
  .service-modules .service-deliverables-grid article:nth-child(2),
  .service-modules .service-deliverables-grid article:last-child:nth-child(odd),
  .service-data .service-deliverables-grid article,
  .service-data .service-deliverables-grid article:nth-child(1),
  .service-data .service-deliverables-grid article:nth-child(2),
  .service-data .service-deliverables-grid article:last-child:nth-child(odd),
  .service-flow .service-deliverables-grid article,
  .service-flow .service-deliverables-grid article:nth-child(1),
  .service-flow .service-deliverables-grid article:nth-child(2),
  .service-flow .service-deliverables-grid article:last-child:nth-child(odd),
  .service-roadmap .service-deliverables-grid article,
  .service-roadmap .service-deliverables-grid article:nth-child(1),
  .service-roadmap .service-deliverables-grid article:nth-child(2),
  .service-roadmap .service-deliverables-grid article:last-child:nth-child(odd) {
    grid-column: span 2;
    min-height: auto;
  }

  .service-states .service-deliverables-grid article:nth-child(1),
  .service-states .service-deliverables-grid article:nth-child(2),
  .service-modules .service-deliverables-grid article:nth-child(1),
  .service-modules .service-deliverables-grid article:nth-child(2),
  .service-data .service-deliverables-grid article:nth-child(1),
  .service-data .service-deliverables-grid article:nth-child(2),
  .service-flow .service-deliverables-grid article:nth-child(1),
  .service-flow .service-deliverables-grid article:nth-child(2),
  .service-roadmap .service-deliverables-grid article:nth-child(1),
  .service-roadmap .service-deliverables-grid article:nth-child(2) {
    grid-column: span 3;
  }
}

@media (max-width: 760px) {
  .service-products-grid {
    grid-template-columns: 1fr;
  }

  .service-products-grid article {
    min-height: auto;
  }

  .service-fit-list article {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .service-fit-list strong {
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    justify-content: flex-start;
    white-space: normal;
  }

  .service-fit-list strong::before {
    content: "↓";
    position: static;
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    margin-right: 10px;
    border-radius: 999px;
    background: hsl(var(--accent-cyan) / 0.1);
    color: hsl(var(--accent-cyan));
  }

  .service-hiring-grid article {
    border-radius: 24px;
    padding: 22px;
  }

  .service-hiring-grid h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .service-states .service-deliverables-grid,
  .service-modules .service-deliverables-grid,
  .service-data .service-deliverables-grid,
  .service-flow .service-deliverables-grid,
  .service-roadmap .service-deliverables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-states .service-deliverables-grid article,
  .service-states .service-deliverables-grid article:nth-child(1),
  .service-states .service-deliverables-grid article:nth-child(2),
  .service-states .service-deliverables-grid article:last-child:nth-child(odd),
  .service-modules .service-deliverables-grid article,
  .service-modules .service-deliverables-grid article:nth-child(1),
  .service-modules .service-deliverables-grid article:nth-child(2),
  .service-modules .service-deliverables-grid article:last-child:nth-child(odd),
  .service-data .service-deliverables-grid article,
  .service-data .service-deliverables-grid article:nth-child(1),
  .service-data .service-deliverables-grid article:nth-child(2),
  .service-data .service-deliverables-grid article:last-child:nth-child(odd),
  .service-flow .service-deliverables-grid article,
  .service-flow .service-deliverables-grid article:nth-child(1),
  .service-flow .service-deliverables-grid article:nth-child(2),
  .service-flow .service-deliverables-grid article:last-child:nth-child(odd),
  .service-roadmap .service-deliverables-grid article,
  .service-roadmap .service-deliverables-grid article:nth-child(1),
  .service-roadmap .service-deliverables-grid article:nth-child(2),
  .service-roadmap .service-deliverables-grid article:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .service-data .service-hero .hero-buttons,
  .service-flow .service-hero .hero-buttons,
  .service-roadmap .service-hero .hero-buttons {
    width: min(100%, 380px);
  }

  .service-data .service-hero .primary-button,
  .service-data .service-hero .secondary-button,
  .service-flow .service-hero .primary-button,
  .service-flow .service-hero .secondary-button,
  .service-roadmap .service-hero .primary-button,
  .service-roadmap .service-hero .secondary-button {
    width: 100%;
    min-height: 56px;
    padding: 12px 16px;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.2;
  }

  .service-modules .final-panel .primary-button,
  .service-data .final-panel .primary-button,
  .service-flow .final-panel .primary-button,
  .service-roadmap .final-panel .primary-button {
    width: 100%;
    max-width: 100%;
    min-height: 56px;
    padding: 12px 14px;
    font-size: clamp(13px, 3.8vw, 15px);
    line-height: 1.18;
  }

  .service-states .service-hero .hero-buttons {
    width: min(100%, 360px);
  }

  .service-states .service-hero .primary-button,
  .service-states .service-hero .secondary-button {
    width: 100%;
    min-height: 56px;
    padding: 12px 18px;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.2;
  }

  .service-states .final-panel .primary-button {
    width: 100%;
    max-width: 100%;
    min-height: 56px;
    padding: 12px 14px;
    font-size: clamp(13px, 3.8vw, 15px);
    line-height: 1.18;
  }

  .service-states .service-deliverables-grid,
  .service-modules .service-deliverables-grid,
  .service-data .service-deliverables-grid,
  .service-flow .service-deliverables-grid,
  .service-roadmap .service-deliverables-grid {
    grid-template-columns: 1fr;
  }

  .service-states .service-deliverables-grid article,
  .service-states .service-deliverables-grid article:last-child:nth-child(odd),
  .service-modules .service-deliverables-grid article,
  .service-modules .service-deliverables-grid article:last-child:nth-child(odd),
  .service-data .service-deliverables-grid article,
  .service-data .service-deliverables-grid article:last-child:nth-child(odd),
  .service-flow .service-deliverables-grid article,
  .service-flow .service-deliverables-grid article:last-child:nth-child(odd),
  .service-roadmap .service-deliverables-grid article,
  .service-roadmap .service-deliverables-grid article:last-child:nth-child(odd) {
    grid-column: auto;
  }
}
