:root {
  --bg: #f3f1e8;
  --text: #080808;
  --muted: rgba(8, 8, 8, 0.62);
  --line: rgba(8, 8, 8, 0.14);
  --acid: #f64600;
  --cream: #f4f1e8;
  --white: #fbfaf5;
  --dark: #050505;
  --nav-bg: rgba(244, 241, 232, 0.7);
  --nav-text: #080808;
  --cookie-bg: rgba(250, 249, 244, 0.9);
  --cookie-text: #080808;
  --radius: 8px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: background-color 900ms var(--ease), color 900ms var(--ease);
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform 200ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 12px 14px;
  color: #080808;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-bottom: 1px solid rgba(8, 8, 8, 0);
  background: rgba(255, 255, 255, 0);
  opacity: 0;
  backdrop-filter: blur(0) saturate(1);
  -webkit-backdrop-filter: blur(0) saturate(1);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    opacity 260ms ease,
    backdrop-filter 260ms ease,
    -webkit-backdrop-filter 260ms ease;
}

.site-header.is-scrolled::before {
  border-bottom-color: rgba(8, 8, 8, 0.04);
  background: rgba(255, 255, 255, 0.28);
  opacity: 1;
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.nav-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 18px;
  width: min(100%, 1480px);
  margin: 0 auto;
  pointer-events: none;
}

.nav-group,
.nav-mark,
.nav-menu {
  pointer-events: auto;
}

.nav-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-right {
  justify-content: flex-end;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 5px 11px 6px;
  border: 1px solid rgba(8, 8, 8, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #080808;
  cursor: pointer;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, transform 240ms var(--ease);
}

.site-header:not(.is-scrolled) .nav-pill,
.site-header:not(.is-scrolled) .nav-mark {
  background: #ffffff;
  color: #080808;
  border-color: rgba(8, 8, 8, 0.16);
}

.site-header:not(.is-scrolled) .nav-pill-strong {
  background: #080808;
  color: #ffffff;
  border-color: #080808;
}

.site-header.is-scrolled .nav-pill,
.site-header.is-scrolled .nav-mark {
  background: #ffffff;
  color: #080808;
  border-color: rgba(8, 8, 8, 0.16);
}

.site-header.is-scrolled .nav-pill-strong {
  background: #080808;
  color: #ffffff;
  border-color: #080808;
}

.nav-pill:hover,
.nav-menu.is-open > .nav-pill,
.nav-pill:focus-visible {
  background: #080808;
  color: #ffffff;
  border-color: #080808;
  transform: translateY(-1px);
}

.nav-pill-strong {
  background: #080808;
  color: #ffffff;
  border-color: #080808;
}

.nav-pill-strong:hover,
.nav-pill-strong:focus-visible {
  background: #ffffff;
  color: #080808;
  border-color: #080808;
}

.nav-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(8, 8, 8, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 240ms ease, border-color 240ms ease, transform 240ms var(--ease);
}

.nav-mark img {
  width: 88px;
  height: auto;
  filter: none;
}

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

.mobile-menu-panel {
  display: none;
}

.nav-menu {
  position: relative;
}

.nav-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 18px;
  pointer-events: auto;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 330px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: rgba(248, 247, 241, 0.94);
  color: #070707;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: top left;
  transition: opacity 260ms ease, visibility 260ms ease, transform 360ms var(--ease);
}

.services-menu {
  display: grid;
  grid-template-columns: minmax(230px, 0.86fr) minmax(360px, 1.34fr);
  gap: 10px;
  width: min(720px, calc(100vw - 30px));
}

.nav-menu:hover .mega-menu,
.nav-menu:focus-within .mega-menu,
.nav-menu.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.mega-item,
.industry-item {
  display: grid;
  gap: 8px;
  padding: 13px;
  border-radius: 8px;
  transition: background 240ms ease, transform 240ms var(--ease);
}

.mega-item:hover,
.industry-item:hover {
  background: #111;
  color: #f7f4e9;
  transform: translateX(3px);
}

.mega-item img,
.industry-item img,
.menu-feature img {
  width: 100%;
  object-fit: cover;
  background: rgba(8, 8, 8, 0.08);
}

.menu-feature {
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 100%;
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  color: #f7f4e9;
  transition: transform 260ms var(--ease), background 240ms ease;
}

.menu-feature:hover {
  transform: translateY(-2px);
  background: #080808;
}

.menu-feature img {
  aspect-ratio: 1.28;
  border-radius: 8px;
}

.menu-feature span {
  color: rgba(247, 244, 233, 0.68);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.menu-feature strong {
  max-width: 24ch;
  font-size: 18px;
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.04;
}

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

.services-menu .mega-item {
  align-content: start;
  min-height: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.44);
}

.services-menu .mega-item:hover {
  background: #111;
}

.services-menu .mega-item img {
  aspect-ratio: 1.08;
  border-radius: 7px;
}

.mega-item span,
.industry-item span {
  font-size: 15px;
  font-weight: 820;
}

.mega-item small,
.industry-item small {
  max-width: 28ch;
  color: currentColor;
  opacity: 0.7;
  font-size: 12px;
  line-height: 1.25;
}

.mega-item-primary {
  background: var(--acid);
}

.industries-menu {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(520px, 1.32fr);
  gap: 10px;
  width: min(920px, calc(100vw - 30px));
}

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

.industries-menu .industry-item {
  align-content: start;
  min-height: 154px;
  padding: 8px;
  gap: 7px;
  background: rgba(255, 255, 255, 0.44);
}

.industries-menu .industry-item:hover {
  background: #111;
}

.industries-menu .industry-item img {
  aspect-ratio: 1;
  border-radius: 7px;
}

.industries-menu .industry-item span {
  font-size: 13px;
  line-height: 1.02;
}

.industries-menu .industry-item small {
  max-width: none;
  font-size: 10px;
  line-height: 1.16;
}

.theme-section {
  position: relative;
  background: transparent;
}

.wordmark-section {
  min-height: 210px;
  padding: 48px 22px 4px;
  display: grid;
  align-items: end;
  overflow: clip;
  background: var(--cream);
}

.top-kicker {
  margin: 0 auto 2px;
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
}

.mega-wordmark {
  margin: 0;
  width: 100%;
  color: #080808;
  font-size: clamp(45px, 12.25vw, 214px);
  font-weight: 1000;
  letter-spacing: -0.08em;
  line-height: 0.78;
  text-align: center;
}

.marquee-band {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  overflow: clip;
  contain: paint;
  background: var(--acid);
  color: #ffffff;
  border-block: 1px solid rgba(0, 0, 0, 0.12);
}

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

.marquee-track span {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  white-space: nowrap;
  font-size: clamp(12px, 1.4vw, 18px);
  font-weight: 900;
}

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

.video-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(96px, 12vw, 160px) clamp(18px, 4vw, 58px) clamp(42px, 7vw, 96px);
  background: #050505;
  color: #f8f6ec;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
}

.video-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.16) 44%, rgba(0, 0, 0, 0.48));
}

.video-hero-copy {
  display: grid;
  justify-items: center;
  width: min(980px, 100%);
  text-align: center;
  mix-blend-mode: difference;
}

.video-hero-copy h1 {
  max-width: 16ch;
  margin: 0;
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(38px, 5.6vw, 96px);
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-system {
  min-height: 78vh;
  max-width: 100vw;
  overflow: clip;
  padding: clamp(34px, 7vw, 110px) clamp(16px, 3vw, 46px) 0;
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.38), transparent 22%),
    linear-gradient(135deg, #ff6a2c 0%, #f64600 46%, #c83700 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 6vw, 100px);
  align-items: center;
  min-height: 56vh;
}

.hero-copy h2,
.system-copy h2 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7.2vw, 128px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.89;
}

.hero-copy p:not(.section-label),
.system-copy p {
  max-width: 46ch;
  margin: 22px 0 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.25;
}

.section-label {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.58;
}

.workflow-stage {
  position: relative;
  min-height: 550px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.18);
  background-size: 46px 46px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.workflow-line {
  position: absolute;
  height: 2px;
  background: #070707;
  transform-origin: left center;
  opacity: 0.24;
}

.workflow-line::after {
  content: "";
  position: absolute;
  inset: -3px auto -3px 0;
  width: 60px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: pulseLine 2.8s linear infinite;
}

.workflow-line-a {
  left: 20%;
  top: 40%;
  width: 56%;
  transform: rotate(14deg);
}

.workflow-line-b {
  left: 28%;
  top: 61%;
  width: 50%;
  transform: rotate(-18deg);
}

@keyframes pulseLine {
  from {
    transform: translateX(-80px);
  }
  to {
    transform: translateX(460px);
  }
}

.flow-node,
.floating-panel,
.ui-card,
.device {
  will-change: transform;
}

.flow-node {
  position: absolute;
  display: grid;
  gap: 5px;
  width: min(210px, 42vw);
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  background: rgba(250, 249, 241, 0.82);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(15px);
  animation: floatNode 7s ease-in-out infinite;
}

.flow-node small,
.floating-panel small,
.ui-card small {
  font-size: 10px;
  font-weight: 900;
  opacity: 0.56;
  text-transform: uppercase;
}

.flow-node strong,
.floating-panel strong,
.ui-card strong {
  font-size: clamp(15px, 1.4vw, 22px);
  line-height: 1;
}

.flow-node em,
.ui-card span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.58);
  font-style: normal;
}

.node-dot {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #070707;
  box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.07);
}

.node-a {
  left: 8%;
  top: 12%;
}

.node-b {
  right: 9%;
  top: 22%;
  animation-delay: -1.7s;
}

.node-c {
  left: 20%;
  bottom: 18%;
  animation-delay: -3.1s;
}

.node-d {
  right: 14%;
  bottom: 10%;
  animation-delay: -4.6s;
}

@keyframes floatNode {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.floating-panel {
  position: absolute;
  border-radius: 12px;
  background: #070707;
  color: #f6f4ea;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.panel-analytics {
  left: 6%;
  bottom: 8%;
  width: 170px;
  padding: 14px;
}

.panel-ai {
  right: 8%;
  top: 55%;
  display: grid;
  gap: 4px;
  width: 150px;
  padding: 16px;
}

.bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 68px;
  margin-top: 12px;
}

.bars i {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: var(--acid);
  animation: barRise 2.6s ease-in-out infinite;
}

.bars i:nth-child(1) { height: 42%; }
.bars i:nth-child(2) { height: 72%; animation-delay: -0.4s; }
.bars i:nth-child(3) { height: 52%; animation-delay: -0.8s; }
.bars i:nth-child(4) { height: 88%; animation-delay: -1.2s; }
.bars i:nth-child(5) { height: 62%; animation-delay: -1.6s; }

@keyframes barRise {
  50% {
    transform: scaleY(0.72);
    opacity: 0.72;
  }
}

.cropped-hero-word {
  width: 110%;
  margin: clamp(14px, 3vw, 42px) 0 -0.08em -3vw;
  font-size: clamp(58px, 15vw, 275px);
  font-weight: 1000;
  letter-spacing: -0.08em;
  line-height: 0.68;
  white-space: nowrap;
}

.manifesto {
  padding: clamp(86px, 12vw, 170px) 18px;
  background: var(--cream);
}

.manifesto-inner {
  display: grid;
  justify-items: center;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.manifesto p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5.5vw, 84px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 9px 15px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  transition: transform 280ms var(--ease), background 280ms ease, color 280ms ease;
}

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

.button-dark {
  background: #070707;
  color: #f8f6ec;
}

.button-light {
  background: #f6f4ea;
  color: #070707;
}

.visual-cards {
  padding: 0 clamp(14px, 3vw, 38px) clamp(82px, 10vw, 150px);
  background: var(--cream);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
}

.section-head h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(28px, 4.5vw, 70px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.image-card {
  min-width: 0;
}

.card-media {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  clip-path: inset(8% 0 0 0 round 8px);
  transition: clip-path 700ms var(--ease), transform 500ms var(--ease);
}

.image-card.is-visible .card-media {
  clip-path: inset(0 0 0 0 round 8px);
}

.card-media img,
.system-card img,
.desktop-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 500ms ease;
}

.image-card:hover .card-media {
  transform: translateY(-8px);
}

.image-card:hover img,
.system-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.04);
}

.card-pill {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(250, 250, 244, 0.85);
  color: #070707;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.image-card h3,
.image-card p {
  margin-inline: 2px;
}

.image-card h3 {
  margin-block: 13px 4px;
  font-size: clamp(18px, 1.8vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.image-card p {
  margin-block: 0;
  color: var(--muted);
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.25;
}

.acid-system {
  overflow: hidden;
  padding: clamp(24px, 4vw, 52px) clamp(16px, 3vw, 46px) clamp(86px, 11vw, 160px);
  background:
    radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.4), transparent 22%),
    var(--acid);
  color: #ffffff;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: clamp(64px, 10vw, 150px);
}

.capability-strip span {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 850;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
}

.system-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(380px, 1.22fr);
  gap: clamp(28px, 6vw, 110px);
  align-items: center;
}

.system-copy h2 {
  max-width: 12ch;
  color: #ffffff;
}

.system-copy p,
.acid-system .section-label {
  color: rgba(255, 255, 255, 0.78);
}

.acid-system .ui-card,
.acid-system .phone-screen {
  color: #080808;
}

.system-copy .button {
  margin-top: 28px;
}

.system-composition {
  position: relative;
  min-height: 630px;
}

.device,
.ui-card {
  position: absolute;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.desktop-device {
  inset: 8% 3% auto 8%;
  height: 420px;
  overflow: hidden;
  border: 12px solid #090909;
  border-radius: 18px;
  background: #090909;
}

.device-top {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.device-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.site-overlay {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 6px;
  max-width: 300px;
  padding: 18px;
  border-radius: 10px;
  background: rgba(8, 8, 8, 0.78);
  color: #fff;
  backdrop-filter: blur(14px);
}

.mobile-device {
  right: 0;
  bottom: 3%;
  width: 190px;
  height: 330px;
  border: 10px solid #090909;
  border-radius: 32px;
  background: #f9f6ea;
}

.phone-notch {
  width: 62px;
  height: 8px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #090909;
}

.phone-screen {
  display: grid;
  align-content: end;
  gap: 8px;
  height: calc(100% - 28px);
  padding: 18px;
  background:
    radial-gradient(circle at 50% 20%, var(--acid), transparent 34%),
    linear-gradient(#fff, #ece9de);
  border-radius: 20px;
}

.phone-screen span,
.phone-screen small {
  font-size: 12px;
  font-weight: 800;
}

.phone-screen strong {
  font-size: 78px;
  line-height: 0.8;
}

.ui-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}

.crm-card {
  left: 0;
  top: 0;
  width: 240px;
}

.automation-card {
  left: 11%;
  bottom: 7%;
  width: 250px;
}

.analytics-card {
  right: 8%;
  top: 1%;
  width: 190px;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 72px;
}

.mini-chart i {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: #070707;
}

.mini-chart i:nth-child(1) { height: 30%; }
.mini-chart i:nth-child(2) { height: 65%; }
.mini-chart i:nth-child(3) { height: 48%; }
.mini-chart i:nth-child(4) { height: 90%; }

.editorial {
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(70px, 10vw, 150px) clamp(16px, 3vw, 44px);
  background: var(--white);
}

.editorial-words {
  display: grid;
  gap: 0;
  padding-top: 0.12em;
  padding-bottom: 0.24em;
  color: rgba(0, 0, 0, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(82px, 17vw, 300px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.78;
  overflow: visible;
}

.editorial-words span:nth-child(2) {
  transform: translateX(-3vw);
}

.editorial-words span:nth-child(3) {
  justify-self: end;
  font-style: italic;
  transform: translateX(3vw);
}

.reveal-word {
  display: block;
  margin-block: -0.055em;
  padding-block: 0.04em 0.18em;
  overflow: visible;
  line-height: 0.78;
  background: linear-gradient(90deg, #080808 50%, rgba(0, 0, 0, 0.18) 50%);
  background-size: 210% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 1100ms var(--ease);
}

.reveal-word.is-visible {
  background-position: 0 0;
}

.editorial-copy {
  display: grid;
  gap: 22px;
  max-width: 620px;
  margin-top: clamp(54px, 8vw, 120px);
}

.editorial-copy p {
  margin: 0;
  font-size: clamp(20px, 2.3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.editorial-copy .button {
  justify-self: start;
}

.systems-dark {
  padding: clamp(62px, 8vw, 120px) clamp(16px, 3vw, 44px) clamp(76px, 10vw, 150px);
  background: #050505;
  color: #f8f6ec;
}

.dark-head {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-bottom: clamp(38px, 7vw, 90px);
  text-align: center;
}

.dark-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.2vw, 126px);
  font-weight: 400;
  line-height: 0.86;
}

.dark-head p {
  max-width: 680px;
  margin: 0;
  color: rgba(248, 246, 236, 0.68);
  font-size: clamp(15px, 1.6vw, 22px);
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
}

.system-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  isolation: isolate;
}

.system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 24%, rgba(0, 0, 0, 0.88));
}

.system-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 300ms ease;
}

.system-card:hover::after {
  opacity: 1;
}

.system-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.system-card-body span {
  justify-self: start;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.system-card-body h3 {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 30px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.system-card-body p {
  margin: 0;
  color: rgba(248, 246, 236, 0.72);
  font-size: 14px;
  line-height: 1.25;
}

.closing-statement {
  display: grid;
  gap: 28px;
  max-width: 1060px;
  margin-top: clamp(84px, 11vw, 170px);
}

.closing-statement p {
  margin: 0;
  font-size: clamp(31px, 4.6vw, 74px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.closing-statement .button {
  justify-self: start;
}

.site-footer {
  padding: clamp(28px, 5vw, 68px) clamp(16px, 3vw, 44px) 22px;
  background: #e9e8e2;
  color: #080808;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(32px, 7vw, 120px);
  align-items: start;
  padding-bottom: clamp(26px, 4vw, 50px);
}

.footer-brand {
  display: grid;
  justify-items: start;
}

.footer-logo {
  width: 150px;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(280px, 100%);
  margin-bottom: 24px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #080808;
  overflow: hidden;
}

.footer-brand h2 {
  margin: 0;
  max-width: 420px;
  font-size: clamp(34px, 4vw, 62px);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.footer-brand p {
  max-width: 390px;
  margin: 16px 0 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 16px;
  line-height: 1.3;
}

.footer-brand .button {
  margin-top: 24px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: none;
  margin-left: 0;
  padding-block: 8px 0;
}

.footer-columns div {
  display: grid;
  gap: 10px;
}

.footer-columns h3 {
  margin: 0 0 8px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-columns a {
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  transition: color 200ms ease, transform 200ms ease;
}

.footer-columns a:hover {
  color: #000;
  transform: translateX(3px);
}

.footer-wordmark {
  margin-top: clamp(16px, 3vw, 34px);
  margin-inline: calc(clamp(16px, 3vw, 44px) * -1);
  overflow: clip;
  color: #080808;
  font-size: clamp(58px, 14.2vw, 260px);
  font-weight: 1000;
  letter-spacing: -0.08em;
  line-height: 0.78;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
}

.legal-line {
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.policy-links a {
  color: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
  transition: color 200ms ease;
}

.policy-links a:hover {
  color: #000;
}

.legal-document {
  background: #f4f1e8;
  color: #080808;
}

.policy-page {
  min-height: 100vh;
  display: grid;
  gap: clamp(34px, 5vw, 68px);
  width: min(1120px, calc(100% - clamp(32px, 7vw, 96px)));
  margin: 0 auto;
  padding: clamp(118px, 12vw, 154px) 0 clamp(74px, 10vw, 130px);
  background: var(--cream);
  color: #080808;
}

.policy-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(8, 8, 8, 0.56);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.policy-kicker a {
  color: #080808;
}

.policy-hero {
  display: grid;
  gap: 18px;
  padding-bottom: clamp(28px, 5vw, 56px);
  border-bottom: 1px solid rgba(8, 8, 8, 0.14);
}

.policy-language {
  display: inline-flex;
  justify-self: start;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.policy-language button {
  min-width: 86px;
  min-height: 31px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(8, 8, 8, 0.62);
  cursor: pointer;
  font-size: 11px;
  font-weight: 860;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
}

.policy-language button.is-active {
  background: #080808;
  color: #f8f6ec;
}

.policy-copy {
  display: none;
}

.policy-copy.is-active {
  display: grid;
  gap: clamp(34px, 5vw, 68px);
}

.policy-page h1 {
  max-width: none;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 10vw, 138px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
  white-space: nowrap;
}

.policy-hero > p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  color: rgba(8, 8, 8, 0.72);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.28;
}

.policy-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: clamp(8px, 2vw, 18px) 0 0;
}

.policy-meta div,
.policy-grid article {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.38);
}

.policy-meta dt {
  margin: 0 0 8px;
  color: rgba(8, 8, 8, 0.52);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-meta dd {
  margin: 0;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.3;
}

.policy-section {
  display: grid;
  gap: 14px;
  padding-bottom: clamp(24px, 4vw, 44px);
  border-bottom: 1px solid rgba(8, 8, 8, 0.1);
}

.policy-section:last-child {
  border-bottom: 0;
}

.policy-section h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(27px, 3.4vw, 50px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
}

.policy-section h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 860;
  letter-spacing: 0;
  line-height: 1.05;
}

.policy-page p,
.policy-list {
  max-width: 82ch;
  margin: 0;
  color: rgba(8, 8, 8, 0.7);
  font-size: 16px;
  line-height: 1.62;
}

.policy-page a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.policy-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
}

.policy-grid p {
  font-size: 15px;
  line-height: 1.5;
}

.policy-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.policy-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #080808;
  font-size: 14px;
}

.policy-table th,
.policy-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(8, 8, 8, 0.11);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}

.policy-table th {
  background: rgba(8, 8, 8, 0.06);
  color: rgba(8, 8, 8, 0.62);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.policy-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.policy-list li {
  padding-left: 4px;
}

.policy-page code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(8, 8, 8, 0.08);
  font-size: 0.92em;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(760px, calc(100vw - 28px));
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--cookie-text) 14%, transparent);
  border-radius: 14px;
  background: var(--cookie-bg);
  color: var(--cookie-text);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(24px);
  opacity: 0;
  transform: translate(-50%, 22px);
  pointer-events: none;
  transition: opacity 360ms ease, transform 520ms var(--ease), background 600ms var(--ease), color 600ms var(--ease);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.cookie-banner.is-hiding {
  opacity: 0;
  transform: translate(-50%, 24px);
}

.cookie-banner p {
  margin: 0;
  color: currentColor;
  opacity: 0.78;
  font-size: 12px;
  line-height: 1.35;
}

.cookie-actions {
  display: flex;
  gap: 7px;
}

.cookie-actions button {
  border: 0;
  border-radius: 999px;
  background: var(--cookie-text);
  color: var(--bg);
  padding: 8px 11px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
  transition: transform 220ms ease, opacity 220ms ease;
}

.cookie-actions button:hover {
  transform: translateY(-1px);
  opacity: 0.82;
}

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

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

@media (max-width: 1024px) {
  .nav-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
  }

  .nav-mark {
    order: -1;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
  }

  .services-menu,
  .industries-menu {
    left: 50%;
    transform: translate(-50%, 8px) scale(0.98);
    transform-origin: top center;
  }

  .nav-menu:hover .services-menu,
  .nav-menu:focus-within .services-menu,
  .nav-menu.is-open .services-menu,
  .nav-menu:hover .industries-menu,
  .nav-menu:focus-within .industries-menu,
  .nav-menu.is-open .industries-menu {
    transform: translate(-50%, 0) scale(1);
  }

  .services-menu,
  .industries-menu {
    grid-template-columns: 1fr;
    width: min(720px, calc(100vw - 30px));
  }

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

  .hero-grid,
  .system-layout {
    grid-template-columns: 1fr;
  }

  .workflow-stage {
    min-height: 500px;
  }

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

  .capability-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 72px;
  }

  .system-composition {
    min-height: 560px;
  }

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

@media (max-width: 720px) {
  .site-header {
    inset: 0 0 auto;
    padding: 12px 16px;
    background: transparent;
    color: #080808;
    border-bottom: 0;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: stretch;
    gap: 12px;
  }

  .nav-group {
    display: none;
  }

  .nav-mark {
    order: 0;
    justify-self: start;
    height: auto;
    min-height: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-mark img {
    display: none;
  }

  .nav-mark::before {
    content: "BLOCKSLYTIC";
    color: #080808;
    font-size: 24px;
    font-weight: 1000;
    letter-spacing: -0.08em;
    line-height: 1;
  }

  .site-header.is-mobile-open,
  .site-header.is-mobile-open .nav-mark,
  .site-header.is-mobile-open .nav-mark::before,
  .site-header.is-mobile-open .mobile-menu-toggle {
    color: #080808 !important;
  }

  .site-header.is-mobile-open::before {
    border-bottom-color: rgba(8, 8, 8, 0.08);
    background: rgba(255, 255, 255, 0.9);
    opacity: 1;
    backdrop-filter: blur(14px) saturate(1.12);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    z-index: 1;
  }

  .site-header.is-mobile-open .mobile-menu-toggle span {
    background: #080808 !important;
  }

  .mobile-menu-toggle {
    pointer-events: auto;
    justify-self: end;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #080808;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 34px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-header.is-mobile-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-mobile-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-mobile-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-pill {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 9px;
  }

  .mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 0;
    display: grid;
    align-content: start;
    gap: 18px;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: auto;
    padding: 72px 14px calc(34px + env(safe-area-inset-bottom));
    border-bottom: 1px solid rgba(8, 8, 8, 0.08);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
      radial-gradient(circle at 20% 12%, rgba(246, 70, 0, 0.12), transparent 34%),
      radial-gradient(circle at 50% 98%, rgba(246, 70, 0, 0.18), transparent 32%);
    backdrop-filter: blur(20px) saturate(1.18);
    -webkit-backdrop-filter: blur(20px) saturate(1.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 260ms var(--ease);
  }

  .site-header.is-mobile-open .mobile-menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-hero a {
    display: grid;
    gap: 8px;
    min-height: 132px;
    align-content: end;
    padding: 16px;
    border-radius: 12px;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.86)),
      url("img/newimage/download%20(15).png") center / cover;
    color: #fff;
  }

  .mobile-menu-hero span {
    font-size: 10px;
    font-weight: 880;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0.72;
  }

  .mobile-menu-hero strong {
    max-width: 16ch;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.94;
  }

  .mobile-menu-quick {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-menu-quick a,
  .mobile-menu-bottom a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(8, 8, 8, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: rgba(8, 8, 8, 0.78);
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-menu-quick i,
  .mobile-menu-row i {
    position: relative;
    width: 31px;
    height: 14px;
    flex: 0 0 auto;
  }

  .mobile-menu-quick i::before,
  .mobile-menu-row i::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 29px;
    height: 1px;
    background: rgba(8, 8, 8, 0.26);
  }

  .mobile-menu-quick i::after,
  .mobile-menu-row i::after {
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
    border-top: 1px solid rgba(8, 8, 8, 0.32);
    border-right: 1px solid rgba(8, 8, 8, 0.32);
    transform: rotate(45deg);
  }

  .mobile-menu-block {
    display: grid;
    gap: 10px;
  }

  .mobile-menu-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    color: #080808;
    font-size: 24px;
    font-weight: 760;
    letter-spacing: 0;
    line-height: 1;
  }

  .mobile-card-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-service-card {
    display: grid;
    align-content: start;
    gap: 7px;
    min-height: 184px;
    padding: 8px;
    border: 1px solid rgba(8, 8, 8, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.56);
    color: #080808;
  }

  .mobile-service-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 7px;
    background: rgba(8, 8, 8, 0.08);
  }

  .mobile-service-card span {
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
  }

  .mobile-service-card small {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    color: rgba(8, 8, 8, 0.58);
    font-size: 10px;
    line-height: 1.16;
  }

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

  .mobile-industry-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 10px;
    min-height: 74px;
    padding: 8px;
    border: 1px solid rgba(8, 8, 8, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.56);
    color: #080808;
  }

  .mobile-industry-card img {
    width: 58px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    background: rgba(8, 8, 8, 0.08);
  }

  .mobile-industry-card span {
    min-width: 0;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.02;
  }

  .mobile-menu-bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mega-menu {
    position: fixed;
    top: 98px;
    left: 10px;
    right: 10px;
    width: auto;
    min-width: 0;
    max-height: calc(100vh - 120px);
    overflow: auto;
  }

  .industries-menu {
    grid-template-columns: 1fr;
  }

  .wordmark-section {
    display: none;
  }

  .marquee-band {
    margin-top: 0;
  }

  .marquee-track span {
    padding: 14px 0;
    font-size: clamp(15px, 4.4vw, 21px);
  }

  .mega-wordmark {
    font-size: clamp(40px, 13.9vw, 82px);
    letter-spacing: -0.075em;
  }

  .top-kicker {
    text-align: center;
  }

  .video-hero {
    min-height: 100svh;
    padding: 118px 16px 42px;
    place-items: center;
  }

  .video-hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.16) 44%, rgba(0, 0, 0, 0.56));
  }

  .video-hero-copy h1 {
    max-width: 15ch;
    font-size: clamp(34px, 10.5vw, 58px);
  }

  .hero-grid {
    min-height: 0;
  }

  .workflow-stage {
    min-height: 430px;
    margin-inline: -4px;
  }

  .flow-node {
    width: 165px;
    padding: 12px;
  }

  .flow-node strong {
    font-size: 14px;
  }

  .node-a { left: 5%; top: 8%; }
  .node-b { right: 4%; top: 24%; }
  .node-c { left: 6%; bottom: 20%; }
  .node-d { right: 5%; bottom: 7%; }

  .panel-analytics {
    display: none;
  }

  .panel-ai {
    right: auto;
    left: 38%;
    top: 50%;
    width: 126px;
  }

  .cropped-hero-word {
    margin-left: -4vw;
    font-size: clamp(58px, 19vw, 110px);
  }

  .section-head {
    display: grid;
  }

  .cards-row,
  .systems-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    gap: 12px;
  }

  .policy-links {
    justify-content: flex-start;
  }

  .policy-page {
    width: min(100% - 32px, 1120px);
    padding-top: 112px;
  }

  .policy-page h1 {
    font-size: clamp(38px, 12vw, 78px);
  }

  .policy-meta,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-section h2 {
    font-size: clamp(25px, 8vw, 38px);
  }

  .policy-page p,
  .policy-list {
    font-size: 15px;
  }

  .card-media {
    aspect-ratio: 1.08;
  }

  .capability-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 54px;
  }

  .capability-strip span {
    min-height: 30px;
    padding: 7px 8px;
    font-size: 10px;
  }

  .system-composition {
    min-height: 640px;
  }

  .desktop-device {
    inset: 8% 0 auto;
    height: 330px;
  }

  .crm-card {
    left: 0;
    top: 0;
    width: 200px;
  }

  .analytics-card {
    right: 0;
    top: 4%;
    width: 145px;
  }

  .automation-card {
    left: 0;
    bottom: 8%;
    width: 210px;
  }

  .mobile-device {
    width: 155px;
    height: 278px;
    right: 4px;
    bottom: 0;
  }

  .phone-screen strong {
    font-size: 56px;
  }

  .editorial-words {
    font-size: clamp(72px, 22vw, 142px);
    letter-spacing: -0.07em;
  }

  .editorial {
    min-height: auto;
    padding-bottom: clamp(72px, 16vw, 110px);
  }

  .editorial-copy {
    margin-top: clamp(32px, 8vw, 56px);
  }

  .system-card {
    min-height: 360px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 10px;
    padding: 12px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions button {
    flex: 1;
  }
}

@media (max-width: 430px) {
  .nav-right .nav-pill:first-child {
    display: none;
  }

  .hero-copy h2,
  .system-copy h2 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .manifesto p {
    font-size: clamp(34px, 10vw, 46px);
  }

  .capability-strip span {
    font-size: 9px;
  }

  .site-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

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

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

  .marquee-track {
    animation-duration: 32s !important;
    animation-iteration-count: infinite !important;
  }
}
