@font-face {
  font-family: "Hedvig";
  src: url("./assets/hedvig-serif-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/inter-400-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/inter-500-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/inter-700-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("./assets/instrument-sans-variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 75% 100%;
}

@font-face {
  font-family: "Urbanist";
  src: url("./assets/case-brand/urbanist-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 700;
}

@font-face {
  font-family: "Space Mono";
  src: url("./assets/case-brand/space-mono-400-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Space Mono";
  src: url("./assets/case-brand/space-mono-700-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  color-scheme: dark;
  --bg: #080808;
  --panel: #121212;
  --panel-strong: #191919;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f5;
  --muted: #8c8c8c;
  --muted-strong: #bdbdbd;
  --white: #fff;
  --green: #aebd68;
  --radius: 20px;
  --max: 1136px;
  --header-h: 78px;
  --serif: "Instrument Sans", Arial, sans-serif;
  --sans: "Instrument Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--white);
  color: #111;
  padding: 10px 14px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px 24px;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  width: min(100%, 1320px);
  height: 56px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
  color: var(--text);
  pointer-events: auto;
  transition: width 260ms ease, max-width 260ms ease, background 180ms ease, backdrop-filter 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled .nav-shell,
.menu-open .nav-shell {
  width: min(100%, 1136px);
  max-width: 1136px;
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.34);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 48px rgba(255, 255, 255, 0.1);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark svg {
  width: 28px;
  flex: 0 0 28px;
}

.brand-name {
  letter-spacing: 0;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links {
  justify-content: center;
}

.nav-actions {
  justify-content: flex-end;
  gap: 16px;
}

.nav-cta {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f4f4f2;
  color: #171717;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 500;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

.nav-links a,
.nav-actions a:not(.button) {
  position: relative;
  opacity: 0.92;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-links a:hover,
.nav-actions a:hover {
  opacity: 1;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="location"]::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="location"] {
  color: #fff;
  opacity: 1;
}

.scroll-progress {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 180ms ease;
}

.scroll-progress > span {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.82);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

.site-header.is-scrolled .scroll-progress {
  opacity: 1;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-light {
  background: var(--white);
  color: #262626;
}

.button-muted {
  background: rgba(245, 245, 245, 0.13);
  border-color: rgba(255, 255, 255, 0.06);
  color: #e5e5e5;
}

.button-muted:hover {
  background: rgba(245, 245, 245, 0.18);
}

.button-small {
  min-height: 32px;
  padding: 8px 14px;
}

.button-wide {
  width: 100%;
}

.menu-button {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  place-items: center;
  padding: 0;
}

.menu-button span:not(.sr-only) {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 18px;
  height: 2px;
  margin-left: -9px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

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

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

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 140px 24px 90px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  will-change: transform, opacity, filter;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(9, 30, 34, 0.2) 0%, rgba(10, 10, 10, 0) 44%, rgba(8, 8, 8, 0.94) 100%),
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.28), rgba(8, 8, 8, 0.38) 54%, rgba(8, 8, 8, 0.9) 100%);
}

.hero-content {
  width: min(100%, 1120px);
  margin-top: 80px;
  text-align: center;
}

.hero h1,
.section-heading h2,
.story-title,
.bottom-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(48px, 5.5vw, 70px);
  line-height: 1.1;
  text-wrap: balance;
}

.hero-word {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.hero p {
  max-width: 850px;
  margin: 22px auto 30px;
  color: rgba(245, 245, 245, 0.88);
  font-size: 18px;
}

.js .hero-media {
  opacity: 0.82;
  filter: brightness(0.72) contrast(1.08);
  transform: scale(1.055);
}

.js .nav-shell {
  opacity: 0;
  transform: translateY(-12px);
}

.js .hero-word,
.js [data-hero-subtitle] {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(14px);
}

.section {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 112px 24px;
}

.section-spacious {
  padding-top: 116px;
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading h2 {
  color: #efefef;
  font-size: clamp(36px, 3.3vw, 42px);
  line-height: 1.2;
  text-wrap: balance;
}

.section-heading p {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.project-jump-nav {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.project-jump-nav a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--line);
  color: var(--muted-strong);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
}

.project-jump-nav a:last-child {
  border-right: 0;
}

.project-jump-nav a:hover,
.project-jump-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.project-jump-nav span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
}

.agency-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0a0a;
  padding: 104px 24px 112px;
}

.agency-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 64px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.agency-kicker {
  margin: 0;
  color: rgba(245, 245, 245, 0.52);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.agency-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  color: rgba(245, 245, 245, 0.82);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.2;
}

.agency-lockup span,
.agency-lockup strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  white-space: nowrap;
}

.agency-lockup strong {
  font-weight: 400;
}

.agency-lockup i {
  position: relative;
  display: inline-block;
  width: auto;
  max-width: 120px;
  height: 1px;
  flex: 1 1 72px;
  background: rgba(255, 255, 255, 0.28);
}

.agency-lockup i::before,
.agency-lockup i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: #111;
  transform: translateY(-50%);
}

.agency-lockup i::before {
  left: 0;
}

.agency-lockup i::after {
  right: 0;
}

.agency-content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.agency-heading,
.agency-intro {
  display: grid;
}

.agency-heading {
  gap: 20px;
}

.agency-intro {
  gap: 26px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.agency-content h2 {
  margin: 0;
  color: #f4f4f4;
  font-family: var(--serif);
  font-size: clamp(38px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.16;
  text-wrap: balance;
}

.agency-intro > p {
  margin: 0;
  max-width: 500px;
  color: rgba(245, 245, 245, 0.66);
  font-size: 16px;
  line-height: 1.6;
}

.agency-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #f2f2f2;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.agency-cta svg {
  flex: 0 0 16px;
  transition: transform 160ms ease;
}

.agency-cta:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.agency-cta:hover svg {
  transform: translate(2px, -2px);
}

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

.agency-proof article {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  gap: 10px 18px;
  min-height: 154px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.014);
  padding: 26px;
  transition: background 180ms ease, border-color 180ms ease;
}

.agency-proof article:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.agency-proof span {
  grid-row: 1 / span 2;
  margin-top: 5px;
  color: rgba(245, 245, 245, 0.36);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 500;
}

.agency-proof h3 {
  margin: 0;
  color: #f1f1f1;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.agency-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.feature-stack {
  display: grid;
  gap: 48px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 52px;
  align-items: center;
  min-height: 528px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: #0b0b0b;
  overflow: hidden;
  scroll-margin-top: 110px;
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.feature-card-reverse {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
}

.feature-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --image-x: 0px;
  --image-y: 0px;
  --window-x: 0px;
  --window-y: 0px;
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 16px;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.82);
  transform: scale(1.035) translate3d(var(--image-x), var(--image-y), 0);
  transition: transform 260ms ease, filter 260ms ease;
}

.feature-card:hover .feature-visual img {
  filter: saturate(0.92) brightness(0.88);
}

.feature-visual-capture {
  display: block;
  background: #151515;
}

.feature-visual-capture img {
  filter: saturate(0.78) brightness(0.76) contrast(1.04);
  object-position: center;
}

.feature-card:hover .feature-visual-capture img {
  filter: saturate(0.9) brightness(0.84) contrast(1.03);
}

.feature-visual::after,
.quote-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 48%, rgba(8, 8, 8, 0.78) 100%);
  pointer-events: none;
}

.capture-domain {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(8, 8, 8, 0.76);
  color: rgba(255, 255, 255, 0.88);
  padding: 7px 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.product-window {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  width: auto;
  min-height: 248px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(15, 15, 15, 0.82);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(20px);
  color: rgba(245, 245, 245, 0.6);
  transform: translate3d(var(--window-x), calc(-50% + var(--window-y)), 32px);
  transition: transform 240ms ease, border-color 240ms ease;
}

.feature-card:hover .product-window {
  border-color: rgba(255, 255, 255, 0.26);
}

.product-window-bar {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0 14px 0 72px;
}

.window-dots,
.window-dots::before,
.window-dots::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.window-dots {
  left: 16px;
  top: 18px;
}

.window-dots::before,
.window-dots::after {
  content: "";
  top: 0;
}

.window-dots::before {
  left: 13px;
}

.window-dots::after {
  left: 26px;
}

.window-title {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-state,
.secure-state,
.sync-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: rgba(220, 233, 151, 0.88);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.live-state::before,
.secure-state::before,
.sync-state::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(174, 189, 104, 0.7);
}

.suite-ui small,
.ai-prompt small {
  color: rgba(255, 255, 255, 0.38);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.ai-window {
  min-height: 230px;
  padding-bottom: 14px;
}

.ai-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 20px 18px 16px;
}

.ai-flow span {
  display: grid;
  min-width: 58px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.ai-flow span:nth-of-type(2) {
  border-color: rgba(174, 189, 104, 0.48);
  color: #eef4ce;
}

.ai-flow i {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.ai-prompt {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  padding: 10px;
}

.ai-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 5px;
  background: #ececec;
  color: #111;
  font-size: 11px;
  font-weight: 700;
}

.ai-prompt div {
  display: grid;
  gap: 2px;
}

.ai-prompt strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 500;
}

.ai-prompt b {
  color: rgba(255, 255, 255, 0.48);
  font-size: 17px;
}

.ai-models {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px 0;
}

.ai-models span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.52);
  padding: 3px 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
}

.ai-models em {
  margin-left: auto;
  color: rgba(174, 189, 104, 0.76);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-style: normal;
}

.suite-ui {
  display: grid;
  grid-template-columns: 44px minmax(110px, 0.85fr) minmax(140px, 1.15fr);
  min-height: 204px;
}

.suite-rail {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 11px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 15px;
}

.suite-rail span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 5px;
  background: #efefef;
  color: #111;
  font-size: 9px;
  font-weight: 700;
}

.suite-rail i {
  color: rgba(255, 255, 255, 0.32);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-style: normal;
}

.suite-inbox,
.suite-focus {
  display: flex;
  flex-direction: column;
  padding: 18px 14px;
}

.suite-inbox {
  gap: 9px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.suite-inbox > strong,
.suite-focus > strong {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.suite-inbox > span {
  display: flex;
  justify-content: space-between;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.44);
  padding: 6px;
  font-size: 8px;
}

.suite-inbox > span.is-current {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
}

.suite-inbox b {
  font-weight: 500;
}

.suite-focus {
  justify-content: center;
}

.suite-focus > div {
  display: flex;
  align-items: center;
  margin: 8px 0 16px;
}

.suite-focus div i,
.suite-focus div span {
  display: grid;
  width: 24px;
  height: 24px;
  margin-right: -5px;
  place-items: center;
  border: 2px solid #202020;
  border-radius: 50%;
  background: #d9d9d9;
}

.suite-focus div i:nth-child(2) { background: #8e9f9f; }
.suite-focus div i:nth-child(3) { background: #c7ad9b; }

.suite-focus div span {
  background: #333;
  color: rgba(255, 255, 255, 0.66);
  font-size: 7px;
}

.suite-focus p {
  margin: 0;
  color: rgba(255, 255, 255, 0.36);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.feature-copy {
  max-width: 460px;
}

.feature-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.3;
}

.feature-copy > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.project-meta {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.45;
  list-style: none;
}

.project-meta li {
  display: flex;
  gap: 10px;
}

.project-meta li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  margin-top: 8px;
  background: var(--green);
}

.testimonial-grid,
.operating-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.78fr 0.78fr;
  grid-auto-rows: 380px;
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.quote-card,
.logo-tile,
.portrait-card,
.metric-tile,
.principle-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  transition: border-color 200ms ease, transform 200ms ease;
}

.quote-card:hover,
.metric-tile:hover,
.principle-tile:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58)), var(--quote-bg);
  background-position: center;
  background-size: cover;
}

.quote-card h3 {
  margin: 0;
  color: rgba(245, 245, 245, 0.86);
  font-size: 18px;
  font-weight: 500;
}

.quote-card p {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0;
  color: rgba(245, 245, 245, 0.92);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.42;
}

.brand-spinner,
.brand-knot {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.brand-spinner {
  background: repeating-conic-gradient(#efefef 0 14deg, transparent 14deg 28deg);
}

.brand-knot {
  border: 6px double #efefef;
}

.logo-tile {
  display: grid;
  place-items: center;
}

.chain-logo,
.ring-logo {
  width: 64px;
  height: 38px;
  border-radius: 999px;
  background: #eee;
}

.chain-logo {
  clip-path: polygon(0 30%, 35% 30%, 45% 45%, 85% 45%, 100% 62%, 82% 82%, 45% 82%, 35% 67%, 0 67%);
}

.ring-logo {
  width: 54px;
  height: 54px;
  border: 8px solid #eee;
  background: transparent;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.46));
}

.portrait-card strong {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
}

.metric-tile,
.principle-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.metric-tile span {
  color: #f2f2f2;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
}

.metric-tile p,
.principle-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.principle-tile strong {
  color: #f1f1f1;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.story-section {
  overflow: hidden;
  text-align: center;
}

.story-title {
  width: min(100%, 900px);
  margin: 0 auto 72px;
  font-size: clamp(34px, 3.3vw, 42px);
  line-height: 1.3;
  text-wrap: balance;
}

.story-word {
  color: rgba(245, 245, 245, var(--word-opacity, 0.16));
  transition: color 120ms linear;
}

.capability-explorer {
  width: min(100%, var(--max));
  margin: 0 auto;
  text-align: left;
}

.capability-tabs {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 20px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  padding: 4px;
  scrollbar-width: none;
}

.capability-tabs::-webkit-scrollbar {
  display: none;
}

.capability-tabs button {
  min-height: 42px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted-strong);
  cursor: pointer;
  padding: 0 18px;
  font-size: 14px;
  transition: background 160ms ease, color 160ms ease;
}

.capability-tabs button[aria-selected="true"] {
  background: #f0f0f0;
  color: #151515;
}

.capability-tabs button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.capability-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0d0d0d;
}

.factory-system {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #111;
  background-size: 44px 44px;
}

.factory-system::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.06), rgba(13, 13, 13, 0.7));
  pointer-events: none;
}

.system-topline {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.44);
  padding: 0 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.system-topline i {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
}

.system-topline b {
  color: var(--green);
  font-size: 8px;
  font-weight: 500;
}

.system-core,
.system-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(18, 18, 18, 0.94);
  color: rgba(255, 255, 255, 0.62);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.system-core {
  left: 50%;
  top: 54%;
  width: 150px;
  height: 150px;
  border-color: rgba(174, 189, 104, 0.44);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(174, 189, 104, 0.1);
  transform: translate(-50%, -50%);
}

.system-core strong,
.system-core small {
  position: absolute;
}

.system-core strong {
  top: 52px;
  color: #f2f2f2;
  font-size: 13px;
}

.system-core small {
  top: 78px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 7px;
}

.system-node {
  min-width: 92px;
  min-height: 40px;
  border-radius: 6px;
  font-size: 8px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.node-product { left: 10%; top: 24%; }
.node-data { right: 9%; top: 24%; }
.node-ai { left: 10%; bottom: 14%; }
.node-operations { right: 9%; bottom: 14%; }

.system-link {
  position: absolute;
  z-index: 1;
  display: block;
  background: rgba(255, 255, 255, 0.16);
}

.link-north,
.link-south {
  left: 50%;
  width: 1px;
  height: 74px;
}

.link-north { top: calc(54% - 149px); }
.link-south { top: calc(54% + 75px); }

.link-east,
.link-west {
  top: 54%;
  width: 86px;
  height: 1px;
}

.link-east { left: calc(50% + 75px); }
.link-west { right: calc(50% + 75px); }

[data-active-scope="business"] .node-product,
[data-active-scope="business"] .node-data,
[data-active-scope="public"] .node-operations,
[data-active-scope="public"] .node-data,
[data-active-scope="product"] .node-product,
[data-active-scope="product"] .node-ai {
  border-color: rgba(174, 189, 104, 0.62);
  background: rgba(174, 189, 104, 0.12);
  color: #eef4ce;
}

.capability-panels {
  display: grid;
  align-items: stretch;
  background: #101010;
}

.capability-panel {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 52px);
}

.capability-panel[hidden] {
  display: none;
}

.capability-panel > p {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.capability-panel h3 {
  margin: 0;
  color: #f2f2f2;
  font-family: var(--serif);
  font-size: clamp(30px, 2.8vw, 36px);
  font-weight: 400;
  line-height: 1.2;
}

.capability-panel ul {
  display: grid;
  gap: 13px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.capability-panel li {
  position: relative;
  padding-left: 17px;
  color: var(--muted-strong);
  font-size: 15px;
}

.capability-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.article-card {
  display: grid;
  gap: 16px;
}

.article-card a {
  display: grid;
  gap: 16px;
}

.article-card img:first-child {
  width: 100%;
  aspect-ratio: 1.815;
  border-radius: 14px;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.9);
}

.article-card h3 {
  margin: 0;
  color: #f0f0f0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.article-card p img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.product-grid-integrated {
  margin-top: 48px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0b0b0b;
  scroll-margin-top: 110px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 22px 22px 26px;
}

.product-visual {
  position: relative;
  display: block;
  min-height: 250px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #151515;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.03) 46%, rgba(8, 8, 8, 0.72) 100%);
  pointer-events: none;
}

.product-visual img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) brightness(0.78) contrast(1.03);
  transform: scale(1.015);
  transition: filter 220ms ease, transform 320ms ease;
}

.product-card:hover .product-visual img,
.product-card:focus-within .product-visual img {
  filter: saturate(0.92) brightness(0.86) contrast(1.02);
  transform: scale(1.045);
}

.product-visual:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -3px;
}

.product-label {
  margin: 0;
  color: rgba(245, 245, 245, 0.56);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  color: #f3f3f3;
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.2;
}

.product-card p:not(.product-label) {
  margin: 0;
  color: rgba(245, 245, 245, 0.72);
  font-size: 15px;
  line-height: 1.58;
}

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

.product-card li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 245, 245, 0.72);
}

.product-card-body > a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: #f2f2f2;
  font-size: 15px;
  font-weight: 700;
}

.product-card-body > a::after {
  content: "→";
  transition: transform 160ms ease;
}

.product-card:hover .product-card-body > a::after,
.product-card-body > a:focus-visible::after {
  transform: translateX(4px);
}

.bottom-cta {
  padding: 42px 24px 120px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: start;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.012) 48%),
    #111;
  padding: clamp(30px, 5vw, 58px);
}

.bottom-cta h2 {
  font-size: clamp(36px, 3.3vw, 42px);
  line-height: 1.2;
}

.bottom-cta p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-copy {
  max-width: 600px;
}

.contact-form {
  display: grid;
  gap: 16px;
  width: 100%;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  outline: 0;
  background: rgba(255, 255, 255, 0.052);
  color: var(--text);
  padding: 13px 14px;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form input {
  min-height: 48px;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(174, 189, 104, 0.58);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 4px rgba(174, 189, 104, 0.08);
}

.form-submit {
  justify-self: start;
  min-height: 46px;
  margin-top: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #f2f2f2;
  color: #171717;
  cursor: pointer;
  padding: 12px 20px;
  transition: transform 160ms ease, background 160ms ease;
}

.form-submit:hover {
  background: #fff;
  transform: translateY(-1px);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 14px;
}

.form-privacy {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--muted-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #f1b3a6;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 58px 24px 34px;
  background: #070707;
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-brand {
  max-width: 260px;
  color: #f5f5f5;
}

.footer-brand p {
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 52px;
}

.footer-links h2 {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: #e5e5e5;
  font-size: 14px;
  transition: color 160ms ease, transform 160ms ease;
}

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

.footer-word-stage {
  position: relative;
  width: calc(100% + 48px);
  margin: 50px 0 30px -24px;
  overflow: hidden;
}

.footer-word-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: footer-word-marquee 26s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.footer-word-stage.is-visible .footer-word-track {
  animation-play-state: running;
}

.footer-word-sequence {
  flex: none;
  margin: 0;
  color: rgba(245, 245, 245, 0.075);
  font-family: var(--serif);
  font-size: clamp(100px, 14vw, 180px);
  font-weight: 400;
  line-height: 0.8;
  padding-right: clamp(64px, 9vw, 120px);
  white-space: nowrap;
}

@keyframes footer-word-marquee {
  from { transform: translate3d(-8%, 0, 0); }
  to { transform: translate3d(-58%, 0, 0); }
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  color: var(--muted);
  transition: color 160ms ease;
}

.footer-legal a:hover {
  color: #f2f2f2;
}

.legal-main {
  min-height: 100svh;
  padding: 132px 24px 100px;
}

.legal-shell {
  width: min(100%, 820px);
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 72px;
  color: var(--muted-strong);
  font-size: 14px;
}

.legal-back svg {
  width: 22px;
  height: auto;
}

.legal-shell h1 {
  max-width: 720px;
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.12;
}

.legal-intro {
  margin: 0 0 64px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.legal-section {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.legal-section h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.3;
}

.legal-section p,
.legal-section li {
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.65;
}

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

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.legal-section a {
  color: #f0f0f0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-meta {
  color: var(--muted);
  font-size: 13px;
}

.legal-meta a {
  color: var(--muted-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.crafted,
.crafted a,
.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.crafted a {
  color: #e5e5e5;
}

.crafted img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.socials a {
  color: var(--muted);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.992);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

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

  .story-word {
    --word-opacity: 1 !important;
  }

  .footer-word-track {
    animation: none;
    transform: none;
  }
}

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

  .nav-shell {
    grid-template-columns: 1fr auto;
    padding: 0 14px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

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

  .mobile-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 84px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(12, 12, 12, 0.92);
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(16px);
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 10px;
    padding: 12px;
    color: #e5e5e5;
  }

  .mobile-menu a span {
    color: rgba(255, 255, 255, 0.34);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
  }

  .mobile-menu a[aria-current="location"] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero {
    min-height: 820px;
    padding-top: 108px;
  }

  .hero-content {
    margin-top: 20px;
  }

  .feature-card,
  .feature-card-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-card-reverse .feature-copy {
    order: 2;
  }

  .feature-card-reverse .feature-visual {
    order: 1;
  }

  .feature-visual {
    transform: none !important;
  }

  .testimonial-grid,
  .operating-grid,
  .article-grid,
  .product-grid,
  .agency-content,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .capability-stage {
    grid-template-columns: 1fr;
  }

  .factory-system {
    min-height: 440px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-panels {
    min-height: 320px;
  }

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

  .testimonial-grid,
  .operating-grid {
    grid-auto-rows: auto;
  }

  .quote-card,
  .logo-tile,
  .portrait-card,
  .metric-tile,
  .principle-tile {
    min-height: 310px;
  }

  .quote-card p {
    font-size: 20px;
  }

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

@media (max-width: 620px) {
  .hero {
    min-height: 760px;
    padding: 110px 20px 86px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .hero p {
    font-size: 15px;
  }

  .section {
    padding: 84px 20px;
  }

  .agency-section {
    padding: 80px 20px 88px;
  }

  .agency-inner {
    gap: 42px;
  }

  .agency-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    font-size: clamp(24px, 7.5vw, 30px);
  }

  .agency-lockup span,
  .agency-lockup strong {
    min-height: 0;
  }

  .agency-lockup i {
    width: 1px;
    height: 38px;
    flex: 0 0 38px;
    margin-left: 8px;
    background: rgba(255, 255, 255, 0.28);
  }

  .agency-lockup i::before {
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
  }

  .agency-lockup i::after {
    left: 50%;
    right: auto;
    top: 100%;
    transform: translate(-50%, -50%);
  }

  .agency-content h2 {
    font-size: clamp(36px, 10vw, 42px);
  }

  .agency-intro > p,
  .agency-proof p {
    font-size: 15px;
  }

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

  .agency-proof article {
    min-height: 150px;
    padding: 22px;
  }

  .agency-proof h3 {
    font-size: 23px;
  }

  .section-spacious {
    padding-top: 88px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .project-jump-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .project-jump-nav::-webkit-scrollbar {
    display: none;
  }

  .project-jump-nav a {
    flex: 0 0 auto;
    padding: 0 14px;
  }

  .section-heading h2,
  .story-title,
  .bottom-cta h2 {
    font-size: clamp(34px, 9vw, 40px);
  }

  .section-heading p,
  .feature-copy > p,
  .product-card p:not(.product-label),
  .bottom-cta p {
    font-size: 16px;
  }

  .product-card-body {
    padding: 22px;
  }

  .product-grid-integrated {
    margin-top: 30px;
    padding-top: 30px;
  }

  .feature-card {
    padding: 20px;
  }

  .brand-name {
    display: none;
  }

  .feature-visual,
  .feature-visual img {
    min-height: 300px;
  }

  .feature-visual-capture img {
    object-position: left center;
  }

  .product-window {
    left: 5%;
    right: 5%;
    min-height: 226px;
    transform: translateY(-50%);
  }

  .suite-ui {
    grid-template-columns: 38px minmax(96px, 0.8fr) minmax(128px, 1.2fr);
  }

  .suite-inbox,
  .suite-focus {
    padding-inline: 10px;
  }

  .ai-flow {
    gap: 5px;
    padding-inline: 12px;
  }

  .ai-flow span {
    min-width: 52px;
  }

  .story-title {
    margin-bottom: 54px;
  }

  .capability-tabs {
    width: 100%;
    justify-content: flex-start;
  }

  .capability-tabs button {
    padding: 0 14px;
  }

  .factory-system {
    min-height: 390px;
  }

  .system-core {
    width: 126px;
    height: 126px;
  }

  .system-core strong {
    top: 42px;
  }

  .system-core small {
    top: 67px;
  }

  .system-node {
    min-width: 78px;
    min-height: 36px;
    font-size: 7px;
  }

  .link-east { left: calc(50% + 63px); }
  .link-west { right: calc(50% + 63px); }

  .capability-panel {
    padding: 30px 24px 36px;
  }

  .contact-panel {
    border-radius: 18px;
    padding: 28px 20px;
  }

  .form-submit {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-word-sequence {
    font-size: clamp(64px, 18vw, 82px);
    padding-right: 48px;
  }

  .footer-word-stage {
    width: calc(100% + 40px);
    margin-top: 42px;
    margin-left: -20px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .legal-main {
    padding: 90px 20px 72px;
  }

  .legal-back {
    margin-bottom: 52px;
  }
}

/* Premium product system */
:root {
  --bg: #0a0c0e;
  --panel: #12161a;
  --panel-strong: #171c20;
  --line: rgba(238, 244, 238, 0.11);
  --line-strong: rgba(238, 244, 238, 0.2);
  --text: #f1f4ef;
  --muted: #959d99;
  --muted-strong: #bcc3bf;
  --green: #c8ff62;
  --mint: #70dac3;
  --paper: #eef0e8;
  --ink: #111410;
  --max: 1240px;
  --radius: 8px;
}

body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}

::selection {
  background: var(--green);
  color: var(--ink);
}

.site-header {
  padding: 18px 24px;
}

.nav-shell {
  width: min(100%, 1376px);
  max-width: 1376px;
  height: 58px;
  padding: 0 18px;
}

.site-header.is-scrolled .nav-shell,
.menu-open .nav-shell {
  width: min(100%, 1180px);
  max-width: 1180px;
  border: 1px solid rgba(238, 244, 238, 0.1);
  border-radius: 12px;
  background: rgba(10, 12, 14, 0.82);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
}

.brand-mark {
  gap: 10px;
  font-size: 13px;
}

.nav-links {
  gap: 38px;
  font-size: 13px;
}

.nav-links a::after {
  left: 50%;
  right: auto;
  bottom: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  transform: translateX(-50%) scale(0);
}

.nav-links a:hover::after,
.nav-links a[aria-current="location"]::after {
  transform: translateX(-50%) scale(1);
}

.nav-cta {
  min-height: 36px;
  border-radius: 6px;
  background: var(--green);
  color: var(--ink);
  padding: 0 16px;
  font-size: 12px;
  font-weight: 700;
}

.nav-cta:hover {
  background: #d8ff8e;
}

.scroll-progress {
  left: 18px;
  right: 18px;
  bottom: -1px;
  background: rgba(238, 244, 238, 0.08);
}

.scroll-progress span {
  background: var(--green);
}

/* Hero */
.hero.hero-product {
  position: relative;
  display: flex;
  height: min(780px, 94svh);
  min-height: 660px;
  align-items: flex-end;
  overflow: hidden;
  background: #0a0c0e;
  padding: 126px max(24px, calc((100vw - var(--max)) / 2)) 62px;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image: linear-gradient(rgba(238, 244, 238, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(238, 244, 238, 0.045) 1px, transparent 1px);
  background-position: center;
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0 76%, transparent 100%);
}

.hero-product-scene {
  --scene-x: 0px;
  --scene-y: 0px;
  position: absolute;
  inset: 70px -6vw 0 24vw;
  z-index: -2;
  opacity: 0.88;
  transform: translate3d(var(--scene-x), var(--scene-y), 0);
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-product-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(10, 12, 14, 0.2);
  pointer-events: none;
}

.hero-console {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(238, 244, 238, 0.16);
  border-radius: 8px;
  background: #111519;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.46);
  will-change: transform;
}

.hero-console img {
  width: 100%;
  height: calc(100% - 32px);
  object-fit: cover;
  object-position: top left;
  opacity: 0.92;
}

.console-bar {
  display: flex;
  height: 32px;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(238, 244, 238, 0.1);
  background: rgba(12, 15, 18, 0.96);
  padding: 0 11px;
  color: rgba(238, 244, 238, 0.56);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.console-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(238, 244, 238, 0.24);
}

.console-bar b {
  margin-left: 7px;
  font-weight: 500;
}

.console-bar em {
  margin-left: auto;
  color: var(--green);
  font-style: normal;
}

.hero-console-opulentia {
  left: 3%;
  top: 4%;
  width: 44%;
  height: 43%;
  opacity: 0.52;
  transform: perspective(1200px) rotateY(7deg) rotateZ(-1deg);
}

.hero-console-anonymetrics {
  left: 18%;
  top: 18%;
  z-index: 2;
  width: 59%;
  height: 57%;
  transform: perspective(1200px) rotateY(-4deg);
}

.hero-console-valida {
  right: 0;
  bottom: 2%;
  z-index: 3;
  width: 43%;
  height: 36%;
  transform: perspective(1200px) rotateY(-8deg) rotateZ(1deg);
}

.hero-console-ai {
  right: 2%;
  top: 2%;
  z-index: 1;
  width: 35%;
  min-height: 210px;
  padding-bottom: 14px;
  transform: perspective(1200px) rotateY(-8deg);
}

.hero-ai-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 24px 18px 18px;
}

.hero-ai-flow span {
  border: 1px solid rgba(200, 255, 98, 0.28);
  border-radius: 4px;
  color: rgba(238, 244, 238, 0.74);
  padding: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
}

.hero-ai-flow i {
  height: 1px;
  background: rgba(238, 244, 238, 0.18);
}

.hero-ai-log {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 0 18px 7px;
  border-top: 1px solid rgba(238, 244, 238, 0.1);
  padding-top: 8px;
  color: rgba(238, 244, 238, 0.52);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
}

.hero-ai-log b {
  color: var(--green);
}

.hero-ai-log em {
  color: rgba(200, 255, 98, 0.68);
  font-style: normal;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(100%, 900px);
  margin: 0;
  text-align: left;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.9);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: rgba(241, 244, 239, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(200, 255, 98, 0.62);
}

.hero.hero-product h1 {
  display: grid;
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 500;
  line-height: 0.92;
}

.hero-word {
  width: fit-content;
}

.hero-word-serif {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 0.84em;
  font-weight: 400;
}

.hero.hero-product [data-hero-subtitle] {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(241, 244, 239, 0.78);
  font-size: 16px;
  line-height: 1.58;
}

.hero-edge {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 66px;
  z-index: 4;
  display: flex;
  gap: 28px;
  color: rgba(241, 244, 239, 0.54);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.hero-edge span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-edge span::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--green);
}

.js .hero-product-scene {
  opacity: 0;
  transform: translate3d(24px, 12px, 0) scale(1.02);
}

.js .hero-kicker,
.js .hero-edge {
  opacity: 0;
  transform: translateY(10px);
}

/* Shared section typography */
.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(241, 244, 239, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-index span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--green);
}

.section-index-dark {
  color: rgba(17, 20, 16, 0.58);
}

.section-index-dark span {
  border-color: rgba(17, 20, 16, 0.2);
  color: var(--ink);
}

.section-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(480px, 1.5fr) minmax(260px, 0.8fr);
  gap: 34px;
  width: min(100%, var(--max));
  margin: 0 auto 62px;
  align-items: start;
}

.section-lead h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
}

.section-summary {
  margin: 4px 0 0;
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.6;
}

/* Product portfolio */
.product-section {
  position: relative;
  border-top: 1px solid rgba(200, 255, 98, 0.24);
  padding: 116px 24px 130px;
}

.product-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.product-showcase {
  grid-column: span 4;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  scroll-margin-top: 110px;
  transition: border-color 220ms ease, transform 260ms ease, opacity 220ms ease;
}

.product-showcase-featured {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 650px;
}

.product-showcase-compact {
  min-height: 319px;
}

.product-showcase > a,
.product-showcase > div {
  display: grid;
  grid-template-rows: 42px minmax(0, 1fr) auto;
  min-height: 100%;
  color: inherit;
}

.product-showcase:hover,
.product-showcase:focus-within {
  border-color: color-mix(in srgb, var(--product-accent) 60%, transparent);
  transform: translateY(-4px);
}

.product-bento:has(.product-showcase:hover) .product-showcase:not(:hover) {
  opacity: 0.72;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 14px;
  color: var(--muted-strong);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.product-topline::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--product-accent);
}

.product-topline > span {
  margin-right: auto;
}

.product-topline svg,
.agency-cta svg,
.form-submit svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-topline svg {
  transition: transform 180ms ease;
}

.product-showcase:hover .product-topline svg,
.product-showcase:focus-within .product-topline svg {
  transform: translate(2px, -2px);
}

.product-status {
  color: var(--product-accent);
  font-style: normal;
}

.product-capture,
.product-synthetic {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: #0f1316;
}

.product-showcase-featured .product-capture {
  min-height: 470px;
}

.product-capture img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: top left;
  filter: saturate(0.92) contrast(1.01);
  transform: scale(1.01);
  transform-origin: top left;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 260ms ease;
}

.product-showcase:not(.product-showcase-featured) .product-capture img {
  object-position: 28% top;
}

.product-showcase:hover .product-capture img,
.product-showcase:focus-within .product-capture img {
  filter: saturate(1) contrast(1);
  transform: scale(1.045);
}

.product-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 0.85fr);
  gap: 24px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding: 22px;
}

.product-showcase-compact .product-copy,
.product-showcase:not(.product-showcase-featured) .product-copy {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 18px;
}

.product-copy span {
  color: var(--product-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.product-copy h3 {
  margin: 8px 0 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 500;
  line-height: 1;
}

.product-showcase:not(.product-showcase-featured) .product-copy h3 {
  font-size: 25px;
}

.product-copy p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.5;
}

.product-synthetic {
  min-height: 158px;
  background-image: linear-gradient(rgba(238, 244, 238, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(238, 244, 238, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  padding: 18px;
}

.synthetic-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(241, 244, 239, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
}

.synthetic-header em {
  color: var(--product-accent);
  font-style: normal;
}

.synthetic-route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
}

.synthetic-route b {
  border: 1px solid rgba(200, 255, 98, 0.28);
  border-radius: 4px;
  padding: 7px;
  color: rgba(241, 244, 239, 0.68);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-weight: 500;
}

.synthetic-route i {
  height: 1px;
  background: rgba(241, 244, 239, 0.18);
}

.synthetic-command {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  border: 1px solid rgba(241, 244, 239, 0.11);
  border-radius: 5px;
  background: rgba(17, 21, 25, 0.9);
  padding: 8px;
}

.synthetic-command > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 4px;
  background: var(--text);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
}

.synthetic-command p {
  margin: 0;
  color: var(--text);
  font-size: 9px;
}

.synthetic-command small {
  display: block;
  margin-bottom: 2px;
  color: var(--product-accent);
  font-size: 6px;
}

.synthetic-command b {
  color: var(--muted);
  font-size: 12px;
}

.suite-product-grid {
  display: grid;
  grid-template-columns: 34px 0.85fr 1.15fr;
  min-height: 116px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(241, 244, 239, 0.11);
  border-radius: 5px;
  background: rgba(17, 21, 25, 0.92);
}

.suite-product-grid aside,
.suite-product-grid > div,
.suite-product-grid section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
}

.suite-product-grid aside {
  align-items: center;
  border-right: 1px solid var(--line);
  color: rgba(241, 244, 239, 0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 6px;
}

.suite-product-grid aside b {
  color: var(--product-accent);
  font-size: 10px;
}

.suite-product-grid section {
  border-left: 1px solid var(--line);
}

.suite-product-grid small {
  color: var(--product-accent);
  font-size: 6px;
}

.suite-product-grid strong {
  color: var(--text);
  font-size: 10px;
  font-weight: 500;
}

.suite-product-grid span,
.suite-product-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 7px;
}

/* CASE&TARS */
.agency-section.agency-premium {
  border: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 120px 24px 126px;
}

.agency-premium .agency-inner {
  gap: 76px;
  width: min(100%, var(--max));
}

.agency-premium .agency-content {
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 90px;
}

.agency-premium .agency-content h2 {
  max-width: 720px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(46px, 5.2vw, 68px);
  font-weight: 500;
  line-height: 1.02;
}

.agency-premium .agency-intro {
  gap: 26px;
  border-top: 1px solid rgba(17, 20, 16, 0.22);
  padding-top: 26px;
}

.agency-premium .agency-intro > p {
  color: rgba(17, 20, 16, 0.68);
  font-size: 16px;
}

.agency-premium .agency-lockup {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
}

.agency-premium .agency-lockup i {
  background: rgba(17, 20, 16, 0.34);
}

.agency-premium .agency-lockup i::before,
.agency-premium .agency-lockup i::after {
  border-color: rgba(17, 20, 16, 0.7);
  background: var(--paper);
}

.agency-premium .agency-cta {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  padding: 0 17px;
  font-size: 13px;
}

.agency-premium .agency-cta:hover {
  background: #20251f;
}

.agency-premium .agency-proof {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(17, 20, 16, 0.22);
}

.agency-premium .agency-proof article {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto;
  gap: 16px;
  min-height: 210px;
  border: 0;
  border-right: 1px solid rgba(17, 20, 16, 0.18);
  border-radius: 0;
  background: transparent;
  padding: 28px 26px 0 0;
}

.agency-premium .agency-proof article + article {
  padding-left: 26px;
}

.agency-premium .agency-proof article:last-child {
  border-right: 0;
}

.agency-premium .agency-proof article:hover {
  border-color: rgba(17, 20, 16, 0.18);
  background: transparent;
}

.agency-premium .agency-proof span {
  grid-row: auto;
  color: rgba(17, 20, 16, 0.42);
}

.agency-premium .agency-proof h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
}

.agency-premium .agency-proof p {
  margin-top: 12px;
  color: rgba(17, 20, 16, 0.62);
  font-size: 14px;
}

/* Method */
.method-section {
  padding: 120px 24px 122px;
  background: #0a0c0e;
}

.section-lead-method {
  margin-bottom: 62px;
}

.delivery-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.7fr);
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.delivery-proof {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(17, 20, 16, 0.18);
  background: var(--green);
  color: var(--ink);
  padding: 34px;
}

.delivery-proof span {
  font-family: var(--sans);
  font-size: clamp(86px, 10vw, 136px);
  font-weight: 600;
  line-height: 0.76;
}

.delivery-proof strong {
  max-width: 230px;
  margin-top: 26px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
}

.delivery-proof p {
  max-width: 280px;
  margin: 18px 0 0;
  color: rgba(17, 20, 16, 0.64);
  font-size: 14px;
  line-height: 1.5;
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  min-height: 270px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px;
}

.delivery-steps li:nth-child(2n) {
  border-right: 0;
}

.delivery-steps li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.delivery-steps > li > span {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.delivery-steps h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 500;
}

.delivery-steps p {
  max-width: 280px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.method-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, var(--max));
  margin: 16px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-signals span {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  color: var(--muted-strong);
  padding: 0 22px;
  font-size: 13px;
}

.method-signals span:last-child {
  border-right: 0;
}

.method-signals b {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

/* Capabilities */
.capabilities-section {
  padding: 118px 24px 128px;
  background: #111a18;
}

.capabilities-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.capabilities-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(560px, 1.45fr);
  gap: 52px;
  margin-bottom: 64px;
  align-items: start;
}

.capabilities-section .story-title {
  width: auto;
  margin: 0;
  text-align: left;
  font-family: var(--sans);
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 500;
  line-height: 1.03;
}

.capabilities-section .story-word {
  color: rgba(241, 244, 239, var(--word-opacity, 0.18));
}

.capabilities-section .capability-explorer {
  width: 100%;
}

.capabilities-section .capability-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #0d1312;
  padding: 0;
}

.capabilities-section .capability-tabs button {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 0 20px;
  color: var(--muted-strong);
  font-size: 13px;
}

.capabilities-section .capability-tabs button:last-child {
  border-right: 0;
}

.capabilities-section .capability-tabs button span {
  color: rgba(241, 244, 239, 0.38);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.capabilities-section .capability-tabs button[aria-selected="true"] {
  background: var(--green);
  color: var(--ink);
}

.capabilities-section .capability-tabs button[aria-selected="true"] span {
  color: rgba(17, 20, 16, 0.52);
}

.capabilities-section .capability-stage {
  min-height: 520px;
  border-radius: 0 0 8px 8px;
  background: #0c1111;
}

.capabilities-section .factory-system {
  min-height: 520px;
  background-color: #101615;
}

.capabilities-section .capability-panels {
  background: #0d1312;
}

.capabilities-section .capability-panel > p {
  color: var(--green);
}

.capabilities-section .capability-panel h3 {
  font-family: var(--sans);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 500;
}

/* Contact */
.contact-section {
  background: var(--paper);
  padding: 118px 24px 128px;
}

.contact-section .contact-panel {
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1fr);
  gap: clamp(54px, 9vw, 130px);
  width: min(100%, var(--max));
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
}

.contact-section .contact-copy {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  align-items: flex-start;
}

.contact-section .contact-copy h2 {
  max-width: 570px;
  margin: 54px 0 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.contact-section .contact-copy > p {
  max-width: 470px;
  margin: 26px 0 0;
  color: rgba(17, 20, 16, 0.66);
  font-size: 16px;
  line-height: 1.6;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: rgba(17, 20, 16, 0.6);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.contact-note i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #77b523;
  box-shadow: 0 0 0 5px rgba(119, 181, 35, 0.12);
}

.contact-section .contact-form {
  gap: 22px;
  border-top: 1px solid rgba(17, 20, 16, 0.24);
  padding-top: 26px;
}

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

.contact-section .contact-form label {
  color: rgba(17, 20, 16, 0.68);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-section .contact-form input,
.contact-section .contact-form textarea {
  border: 1px solid rgba(17, 20, 16, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
}

.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  border-color: rgba(17, 20, 16, 0.48);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(17, 20, 16, 0.06);
}

.contact-section .form-privacy {
  color: rgba(17, 20, 16, 0.54);
}

.contact-section .form-privacy a {
  color: var(--ink);
}

.contact-section .form-submit {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 34px;
  justify-content: space-between;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
}

.contact-section .form-submit:hover {
  background: #232821;
}

.contact-section .form-status {
  color: rgba(17, 20, 16, 0.64);
}

.contact-section .form-status.is-success {
  color: #3d6e17;
}

.contact-section .form-status.is-error {
  color: #9a382d;
}

/* Footer */
.footer {
  border-top: 0;
  background: #080a0b;
  padding-top: 88px;
}

.footer-top,
.footer-bottom {
  width: min(calc(100% - 48px), var(--max));
}

.footer-brand p {
  max-width: 330px;
  color: var(--muted);
}

.footer-links {
  gap: clamp(46px, 7vw, 92px);
}

.footer-links h2 {
  color: rgba(241, 244, 239, 0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.footer-word-sequence {
  color: rgba(200, 255, 98, 0.075);
}

.footer-bottom {
  border-top-color: var(--line);
}

/* Legal pages follow the same system */
.legal-shell h1,
.legal-section h2 {
  font-family: var(--sans);
  font-weight: 500;
}

/* Responsive premium system */
@media (max-width: 1080px) {
  .hero-product-scene {
    left: 12vw;
    opacity: 0.72;
  }

  .section-lead {
    grid-template-columns: 0.6fr 1.5fr;
  }

  .section-lead .section-summary {
    grid-column: 2;
  }

  .product-showcase-featured {
    grid-column: span 8;
  }

  .agency-premium .agency-content {
    gap: 54px;
  }

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

  .agency-premium .agency-proof article:nth-child(2) {
    border-right: 0;
  }

  .agency-premium .agency-proof article:nth-child(n + 3) {
    border-top: 1px solid rgba(17, 20, 16, 0.18);
  }

  .capabilities-lead {
    grid-template-columns: 0.5fr 1.5fr;
  }
}

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

  .nav-shell {
    height: 54px;
    padding: 0 14px;
  }

  .mobile-menu {
    left: 16px;
    right: 16px;
    top: 76px;
    border-radius: 8px;
    background: rgba(10, 12, 14, 0.96);
  }

  .hero.hero-product {
    height: 820px;
    min-height: 820px;
    padding: 104px 20px 64px;
  }

  .hero-product-scene {
    inset: 70px -48vw 250px -10vw;
    opacity: 0.7;
  }

  .hero-console-opulentia {
    left: 0;
    width: 52%;
  }

  .hero-console-anonymetrics {
    left: 12%;
    width: 68%;
  }

  .hero-console-valida {
    right: 0;
    width: 52%;
  }

  .hero-console-ai {
    right: 1%;
    width: 42%;
  }

  .hero.hero-product h1 {
    font-size: clamp(48px, 11vw, 76px);
  }

  .hero-edge {
    display: none;
  }

  .product-section,
  .method-section,
  .capabilities-section,
  .contact-section,
  .agency-section.agency-premium {
    padding: 92px 20px 98px;
  }

  .section-lead,
  .capabilities-lead,
  .agency-premium .agency-content,
  .contact-section .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-lead {
    gap: 24px;
    margin-bottom: 46px;
  }

  .section-lead .section-summary {
    grid-column: auto;
    max-width: 600px;
  }

  .product-showcase,
  .product-showcase-featured,
  .product-showcase-compact {
    grid-column: span 6;
    grid-row: auto;
    min-height: 430px;
  }

  .product-showcase-featured {
    grid-column: 1 / -1;
    min-height: 610px;
  }

  .product-showcase-compact .product-synthetic {
    min-height: 250px;
  }

  .agency-premium .agency-inner {
    gap: 52px;
  }

  .agency-premium .agency-content {
    gap: 38px;
  }

  .agency-premium .agency-intro {
    padding-top: 24px;
  }

  .delivery-board {
    grid-template-columns: 1fr;
  }

  .delivery-proof {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 20, 16, 0.18);
  }

  .method-signals {
    grid-template-columns: 1fr;
  }

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

  .method-signals span:last-child {
    border-bottom: 0;
  }

  .capabilities-lead {
    gap: 28px;
  }

  .capabilities-section .capability-stage {
    grid-template-columns: 1fr;
  }

  .capabilities-section .factory-system {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-section .contact-copy {
    min-height: 0;
  }

  .contact-note {
    margin-top: 42px;
  }
}

@media (max-width: 560px) {
  .brand-name {
    display: none;
  }

  .hero.hero-product {
    height: 760px;
    min-height: 760px;
    padding-bottom: 58px;
  }

  .hero-product-scene {
    inset: 64px -104vw 300px -24vw;
    opacity: 0.65;
  }

  .hero-console-anonymetrics {
    left: 10%;
    width: 76%;
    height: 62%;
  }

  .hero-console-opulentia {
    width: 58%;
  }

  .hero-console-valida {
    width: 58%;
  }

  .hero-console-ai {
    display: none;
  }

  .hero-kicker {
    font-size: 9px;
  }

  .hero.hero-product h1 {
    font-size: clamp(48px, 13vw, 60px);
    line-height: 0.94;
  }

  .hero-word-serif {
    font-size: 0.82em;
  }

  .hero.hero-product [data-hero-subtitle] {
    margin-top: 22px;
    font-size: 14px;
  }

  .product-section,
  .method-section,
  .capabilities-section,
  .contact-section,
  .agency-section.agency-premium {
    padding: 78px 16px 84px;
  }

  .product-section {
    padding-top: 42px;
  }

  .section-lead h2,
  .agency-premium .agency-content h2,
  .capabilities-section .story-title,
  .contact-section .contact-copy h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

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

  .product-showcase,
  .product-showcase-featured,
  .product-showcase-compact {
    grid-column: auto;
    min-height: 470px;
  }

  .product-showcase-featured {
    min-height: 540px;
  }

  .product-showcase-featured .product-capture {
    min-height: 350px;
  }

  .product-showcase-compact .product-synthetic {
    min-height: 270px;
  }

  .product-copy {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .product-copy h3,
  .product-showcase:not(.product-showcase-featured) .product-copy h3 {
    font-size: 27px;
  }

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

  .agency-premium .agency-proof article,
  .agency-premium .agency-proof article + article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 20, 16, 0.18);
    padding: 24px 0;
  }

  .agency-premium .agency-proof article:last-child {
    border-bottom: 0;
  }

  .agency-premium .agency-lockup {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    font-size: 18px;
  }

  .agency-premium .agency-lockup i {
    width: auto;
    height: 1px;
    flex: 1 1 36px;
    margin: 0;
  }

  .agency-premium .agency-lockup i::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .agency-premium .agency-lockup i::after {
    left: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .delivery-proof {
    min-height: 320px;
    padding: 26px;
  }

  .delivery-proof span {
    font-size: 92px;
  }

  .delivery-steps {
    grid-template-columns: 1fr;
  }

  .delivery-steps li,
  .delivery-steps li:nth-child(2n),
  .delivery-steps li:nth-last-child(-n + 2) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px;
  }

  .delivery-steps li:last-child {
    border-bottom: 0;
  }

  .capabilities-section .capability-tabs {
    display: flex;
    overflow-x: auto;
  }

  .capabilities-section .capability-tabs button {
    min-width: max-content;
    padding: 0 16px;
  }

  .capabilities-section .factory-system {
    min-height: 390px;
  }

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

  .contact-section .contact-copy h2 {
    margin-top: 40px;
  }

  .contact-section .form-submit {
    width: 100%;
  }

  .footer {
    padding-top: 70px;
  }

  .footer-top,
  .footer-bottom {
    width: calc(100% - 32px);
  }
}

@media (min-width: 821px) and (max-height: 760px) {
  .product-section {
    padding-top: 26px;
  }
}

/* Interactive product experiences */
.hero-console {
  appearance: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
  --console-scale: 0.96;
  transition: opacity 380ms ease, filter 380ms ease, transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1), box-shadow 380ms ease;
}

.hero-console-opulentia {
  transform: perspective(1200px) rotateY(7deg) rotateZ(-1deg) scale(var(--console-scale));
}

.hero-console-anonymetrics {
  transform: perspective(1200px) rotateY(-4deg) scale(var(--console-scale));
}

.hero-console-valida {
  transform: perspective(1200px) rotateY(-8deg) rotateZ(1deg) scale(var(--console-scale));
}

.hero-console-ai {
  transform: perspective(1200px) rotateY(-8deg) scale(var(--console-scale));
}

.hero-console:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.hero-product-scene:has(.hero-console.is-active) .hero-console:not(.is-active) {
  opacity: 0.38;
  filter: saturate(0.5) brightness(0.72);
}

.hero-console.is-active {
  z-index: 8;
  --console-scale: 1.055;
  opacity: 1;
  filter: saturate(1) brightness(1);
  box-shadow: 0 48px 130px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(200, 255, 98, 0.22);
}

.hero-console-opulentia.is-active {
  transform: translate3d(18vw, 7vh, 0) perspective(1200px) rotateY(2deg) scale(1.08);
}

.hero-console-anonymetrics.is-active {
  transform: perspective(1200px) rotateY(-2deg) scale(1.055);
}

.hero-console-ai.is-active {
  transform: translate3d(-32vw, 9vh, 0) perspective(1200px) rotateY(-2deg) scale(1.12);
}

.hero-console-valida.is-active {
  transform: translate3d(-18vw, -22vh, 0) perspective(1200px) rotateY(-2deg) scale(1.14);
}

.hero-console.is-active .console-bar {
  color: rgba(241, 244, 239, 0.82);
}

.hero-crosshair {
  position: absolute;
  left: var(--pointer-x, 50%);
  top: var(--pointer-y, 50%);
  z-index: 3;
  width: 34px;
  height: 34px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 160ms ease;
}

.hero-crosshair i {
  position: absolute;
  background: rgba(200, 255, 98, 0.7);
}

.hero-crosshair i:first-child {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
}

.hero-crosshair i:last-child {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}

.hero-product.is-pointer-active .hero-crosshair {
  opacity: 0.65;
}

.hero-focus {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 58px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(150px, 1fr);
  gap: 10px 18px;
  width: 290px;
  border: 1px solid rgba(241, 244, 239, 0.14);
  border-radius: 7px;
  background: rgba(10, 12, 14, 0.84);
  padding: 14px;
  backdrop-filter: blur(18px);
}

.hero-focus > span {
  margin-top: 3px;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.hero-focus > div {
  display: grid;
  gap: 2px;
}

.hero-focus strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.hero-focus small {
  color: var(--muted);
  font-size: 9px;
}

.hero-focus > i {
  grid-column: 1 / -1;
  height: 1px;
  overflow: hidden;
  background: rgba(241, 244, 239, 0.12);
}

.hero-focus > i b {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-focus > i b.is-running {
  animation: heroFocusProgress 4.6s linear forwards;
}

.js .hero-focus {
  opacity: 0;
  transform: translateY(10px);
}

@keyframes heroFocusProgress {
  to { transform: scaleX(1); }
}

.product-explorer {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  width: min(100%, var(--max));
  min-height: 720px;
  margin: 0 auto;
}

.product-selector {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e1114;
}

.product-selector button {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 108px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 18px;
  text-align: left;
  transition: background 220ms ease, color 220ms ease;
}

.product-selector button:last-child {
  border-bottom: 0;
}

.product-selector button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--product-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 300ms ease;
}

.product-selector button:hover,
.product-selector button[aria-selected="true"] {
  background: #181d21;
}

.product-selector button[aria-selected="true"]::before {
  transform: scaleY(1);
}

.product-selector button:focus-visible {
  z-index: 1;
  outline: 2px solid var(--product-accent);
  outline-offset: -3px;
}

.product-selector button > span {
  color: var(--product-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.product-selector-copy {
  display: grid;
  gap: 5px;
}

.product-selector strong {
  font-size: 16px;
  font-weight: 600;
}

.product-selector small {
  color: var(--muted);
  font-size: 10px;
}

.product-selector button > i {
  color: rgba(241, 244, 239, 0.38);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-style: normal;
}

.product-selector button[aria-selected="true"] > i {
  color: var(--product-accent);
}

.product-stage {
  display: grid;
  grid-template-rows: 46px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-stage-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
  color: rgba(241, 244, 239, 0.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.product-stage-topline i {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.product-stage-topline b {
  color: var(--green);
  font-weight: 500;
}

.product-stage-panels {
  position: relative;
  min-height: 674px;
}

.product-stage-panel {
  display: grid;
  min-height: 674px;
  grid-template-rows: minmax(0, 1fr) auto;
  animation: productPanelIn 420ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.product-stage-panel[hidden] {
  display: none;
}

@keyframes productPanelIn {
  from { opacity: 0; transform: translateY(12px); clip-path: inset(0 0 12% 0); }
  to { opacity: 1; transform: none; clip-path: inset(0); }
}

.product-stage-media {
  --image-x: 0px;
  --image-y: 0px;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #0d1114;
}

.product-stage-media img {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  min-height: 512px;
  margin: -6px;
  object-fit: cover;
  object-position: top left;
  filter: saturate(0.96);
  transform: translate3d(var(--image-x), var(--image-y), 0) scale(1.015);
  transition: transform 450ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 220ms ease;
}

.product-stage-media:hover img {
  filter: saturate(1.05);
}

.product-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  height: 1px;
  background: var(--product-accent);
  opacity: 0.55;
  box-shadow: 0 0 18px color-mix(in srgb, var(--product-accent) 65%, transparent);
  animation: productScan 5.2s ease-in-out infinite;
}

@keyframes productScan {
  0%, 12% { transform: translateY(0); opacity: 0; }
  20% { opacity: 0.55; }
  72% { opacity: 0.3; }
  82%, 100% { transform: translateY(500px); opacity: 0; }
}

.product-stage-copy {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1.2fr) auto;
  gap: 28px;
  align-items: end;
  min-height: 174px;
  border-top: 1px solid var(--line);
  padding: 24px;
}

.product-stage-copy > div > span {
  color: var(--product-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.product-stage-copy h3 {
  margin: 8px 0 0;
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.product-stage-copy > p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.55;
}

.product-stage-copy > a,
.product-stage-copy > i {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: var(--text);
  padding: 0 12px;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.product-stage-copy > a svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-stage-copy > a:hover {
  border-color: var(--product-accent);
  color: var(--product-accent);
}

.product-stage-copy > i {
  border-color: transparent;
  color: var(--product-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.product-stage-synthetic {
  display: grid;
  place-items: center;
  background-image: linear-gradient(rgba(241, 244, 239, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(241, 244, 239, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  padding: 44px;
}

.ai-stage-system,
.suite-stage-system {
  width: min(100%, 720px);
  overflow: hidden;
  border: 1px solid rgba(241, 244, 239, 0.14);
  border-radius: 7px;
  background: rgba(12, 16, 18, 0.94);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.ai-stage-system header,
.suite-stage-system header {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
  color: rgba(241, 244, 239, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.ai-stage-system header em,
.suite-stage-system header em {
  color: var(--product-accent);
  font-style: normal;
}

.ai-stage-route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 42px 34px 28px;
}

.ai-stage-route b {
  min-width: 88px;
  border: 1px solid color-mix(in srgb, var(--product-accent) 38%, transparent);
  border-radius: 5px;
  color: var(--muted-strong);
  padding: 14px;
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 500;
}

.ai-stage-route i {
  height: 1px;
  background: var(--line-strong);
}

.ai-stage-command {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 0 34px 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
}

.ai-stage-command > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 5px;
  background: var(--text);
  color: var(--ink);
  font-weight: 700;
}

.ai-stage-command p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
}

.ai-stage-command small {
  display: block;
  margin-bottom: 3px;
  color: var(--product-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
}

.ai-stage-command > b {
  color: var(--muted);
}

.ai-stage-system footer {
  display: flex;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 14px 34px;
  color: rgba(241, 244, 239, 0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
}

.suite-stage-system {
  display: grid;
  grid-template-columns: 72px 1fr 0.8fr;
  grid-template-rows: 44px 300px;
}

.suite-stage-system header {
  grid-column: 1 / -1;
}

.suite-stage-system aside,
.suite-stage-main,
.suite-stage-system section {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.suite-stage-system aside {
  align-items: center;
  gap: 24px;
  border-right: 1px solid var(--line);
  color: rgba(241, 244, 239, 0.38);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
}

.suite-stage-system aside b {
  color: var(--product-accent);
  font-size: 15px;
}

.suite-stage-main {
  gap: 22px;
}

.suite-stage-main small,
.suite-stage-system section small {
  color: var(--product-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
}

.suite-stage-main > strong {
  max-width: 320px;
  color: var(--text);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.suite-stage-main > div {
  display: grid;
  gap: 8px;
}

.suite-stage-main > div span {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 8px;
  color: var(--muted);
  font-size: 9px;
}

.suite-stage-system section {
  gap: 16px;
  border-left: 1px solid var(--line);
}

.suite-stage-system section strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
}

.suite-stage-system section p {
  color: var(--muted);
  font-size: 9px;
}

.agency-system {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
  gap: 12px;
}

.agency-capability-list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(17, 20, 16, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
}

.agency-capability-list button {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr 12px;
  gap: 16px;
  align-items: center;
  min-height: 128px;
  border: 0;
  border-bottom: 1px solid rgba(17, 20, 16, 0.17);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 20px;
  text-align: left;
  transition: background 220ms ease, color 220ms ease;
}

.agency-capability-list button:last-child {
  border-bottom: 0;
}

.agency-capability-list button:hover,
.agency-capability-list button[aria-selected="true"] {
  background: var(--ink);
  color: var(--paper);
}

.agency-capability-list button:focus-visible {
  z-index: 1;
  outline: 2px solid var(--ink);
  outline-offset: -4px;
}

.agency-capability-list button > span {
  color: rgba(17, 20, 16, 0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.agency-capability-list button[aria-selected="true"] > span,
.agency-capability-list button:hover > span {
  color: var(--green);
}

.agency-capability-copy {
  display: grid;
  gap: 7px;
}

.agency-capability-copy strong {
  margin: 0;
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 600;
}

.agency-capability-copy small {
  margin: 0;
  color: rgba(17, 20, 16, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.agency-capability-list button[aria-selected="true"] .agency-capability-copy small,
.agency-capability-list button:hover .agency-capability-copy small {
  color: rgba(238, 240, 232, 0.62);
}

.agency-capability-list button > i {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.agency-capability-list button[aria-selected="true"] > i {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(200, 255, 98, 0.1);
}

.agency-console {
  display: grid;
  grid-template-rows: 46px minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 16, 0.3);
  border-radius: 8px;
  background: #0b0e10;
  color: var(--text);
}

.agency-console-top {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
  color: rgba(241, 244, 239, 0.46);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.agency-console-top i {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.agency-console-top b {
  color: var(--green);
  font-weight: 500;
}

.agency-console-panels {
  position: relative;
  min-height: 514px;
  background-image: linear-gradient(rgba(241, 244, 239, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(241, 244, 239, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.agency-console-panel {
  display: grid;
  min-height: 514px;
  grid-template-rows: 0.7fr 1.3fr;
  padding: 34px;
  animation: agencyPanelIn 420ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.agency-console-panel[hidden] {
  display: none;
}

@keyframes agencyPanelIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: none; }
}

.agency-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 18px;
  align-self: center;
}

.agency-flow span {
  min-width: 104px;
  border: 1px solid rgba(200, 255, 98, 0.36);
  border-radius: 5px;
  background: rgba(17, 22, 24, 0.9);
  color: var(--muted-strong);
  padding: 16px;
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.agency-flow i {
  position: relative;
  height: 1px;
  background: rgba(241, 244, 239, 0.2);
}

.agency-flow i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: agencySignal 1.7s ease-in-out infinite alternate;
}

@keyframes agencySignal {
  from { transform: translateX(calc(-100% - 30px)); opacity: 0.2; }
  to { transform: translateX(0); opacity: 1; }
}

.agency-output {
  align-self: end;
}

.agency-output > small {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.agency-output > strong {
  display: block;
  max-width: 580px;
  margin: 14px 0 24px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.08;
}

.agency-output p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 9px 0;
  color: rgba(241, 244, 239, 0.54);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.agency-output p b {
  color: var(--green);
  font-weight: 500;
}

@media (max-width: 980px) {
  .hero-focus {
    right: 20px;
    bottom: 24px;
  }

  .product-explorer,
  .agency-system {
    grid-template-columns: 1fr;
  }

  .product-selector {
    display: flex;
    overflow-x: auto;
    border-radius: 8px 8px 0 0;
    scrollbar-width: none;
  }

  .product-selector::-webkit-scrollbar,
  .agency-capability-list::-webkit-scrollbar {
    display: none;
  }

  .product-selector button {
    min-width: 210px;
    min-height: 86px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .product-stage {
    border-radius: 0 0 8px 8px;
  }

  .agency-capability-list {
    display: flex;
    overflow-x: auto;
    border-radius: 8px 8px 0 0;
    scrollbar-width: none;
  }

  .agency-capability-list button {
    min-width: 290px;
    min-height: 124px;
    border-right: 1px solid rgba(17, 20, 16, 0.17);
    border-bottom: 0;
  }

  .agency-console {
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 620px) {
  .hero-crosshair {
    display: none;
  }

  .hero.hero-product::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to bottom, transparent 0 30%, rgba(10, 12, 14, 0.5) 46%, #0a0c0e 67% 100%);
    pointer-events: none;
  }

  .hero-product-scene {
    inset: 64px -35vw 300px -18vw;
  }

  .hero-product-scene::after {
    background: linear-gradient(to bottom, rgba(10, 12, 14, 0.08) 0 34%, rgba(10, 12, 14, 0.64) 64%, #0a0c0e 92%);
  }

  .hero-console-ai {
    display: block;
    top: 48%;
    right: 1%;
    width: 48%;
    height: 42%;
    min-height: 150px;
    padding-bottom: 6px;
  }

  .hero-console-opulentia.is-active {
    transform: translate3d(18vw, 5vh, 0) perspective(1200px) rotateY(1deg) scale(1.06);
  }

  .hero-console-anonymetrics.is-active {
    transform: perspective(1200px) rotateY(-1deg) scale(1.035);
  }

  .hero-console-ai.is-active {
    transform: translate3d(-36vw, -10vh, 0) perspective(1200px) rotateY(-1deg) scale(1.08);
  }

  .hero-console-valida.is-active {
    transform: translate3d(-34vw, -16vh, 0) perspective(1200px) rotateY(-1deg) scale(1.08);
  }

  .hero-console-ai .console-bar {
    height: 26px;
    padding: 0 8px;
    font-size: 5px;
  }

  .hero-ai-flow {
    gap: 4px;
    padding: 12px 8px 9px;
  }

  .hero-ai-flow span {
    padding: 5px 3px;
    font-size: 4px;
  }

  .hero-ai-log {
    grid-template-columns: 16px 1fr;
    gap: 5px;
    margin: 0 8px 4px;
    padding-top: 5px;
    font-size: 4px;
  }

  .hero-ai-log em {
    display: none;
  }

  .hero-focus {
    left: 16px;
    right: 16px;
    bottom: 18px;
    width: auto;
  }

  .hero.hero-product [data-hero-subtitle] {
    margin-bottom: 78px;
  }

  .product-explorer {
    min-height: 0;
    gap: 0;
  }

  .product-selector button {
    min-width: 190px;
    min-height: 82px;
    padding: 14px;
  }

  .product-selector button > i {
    display: none;
  }

  .product-stage-panels,
  .product-stage-panel {
    min-height: 600px;
  }

  .product-stage-media {
    min-height: 390px;
  }

  .product-stage-media img {
    min-height: 402px;
  }

  .product-stage-copy {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 210px;
    padding: 20px;
  }

  .product-stage-copy h3 {
    font-size: 30px;
  }

  .product-stage-copy > a,
  .product-stage-copy > i {
    width: fit-content;
  }

  .product-stage-synthetic {
    padding: 16px;
  }

  .ai-stage-system,
  .suite-stage-system {
    transform: scale(0.9);
  }

  .ai-stage-route {
    gap: 7px;
    padding: 28px 16px 18px;
  }

  .ai-stage-route b {
    min-width: 58px;
    padding: 10px 5px;
    font-size: 6px;
  }

  .ai-stage-command {
    margin: 0 16px 18px;
  }

  .ai-stage-command p {
    font-size: 10px;
  }

  .ai-stage-system footer {
    gap: 8px;
    padding: 12px 16px;
    font-size: 5px;
  }

  .suite-stage-system {
    grid-template-columns: 48px 1fr;
    grid-template-rows: 42px 280px;
  }

  .suite-stage-system section {
    display: none;
  }

  .suite-stage-system aside,
  .suite-stage-main {
    padding: 16px;
  }

  .suite-stage-main > strong {
    font-size: 18px;
  }

  .agency-capability-list button {
    min-width: 250px;
    min-height: 112px;
    padding: 16px;
  }

  .agency-capability-copy small {
    display: none;
  }

  .agency-console {
    min-height: 490px;
  }

  .agency-console-panels,
  .agency-console-panel {
    min-height: 444px;
  }

  .agency-console-panel {
    padding: 22px;
  }

  .agency-flow {
    gap: 7px;
  }

  .agency-flow span {
    min-width: 0;
    padding: 11px 6px;
    font-size: 6px;
  }

  .agency-output > strong {
    font-size: 27px;
  }
}

/* Monolit identity system */
body {
  font-family: var(--sans);
  font-stretch: 100%;
}

h1,
h2,
h3,
.brand-name,
.product-stage-copy h3,
.agency-output > strong {
  font-family: var(--sans);
  font-stretch: 88%;
  letter-spacing: 0;
}

.hero.hero-system {
  position: relative;
  display: flex;
  height: min(800px, 94svh);
  min-height: 680px;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #090b0c;
  padding: 124px max(24px, calc((100vw - var(--max)) / 2)) 88px;
}

.hero-matrix {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.hero-matrix i {
  position: absolute;
  display: block;
  background: rgba(239, 242, 235, 0.055);
}

.hero-matrix-v {
  top: 0;
  bottom: 0;
  left: calc(var(--line) * 16.666%);
  width: 1px;
}

.hero-matrix-h {
  left: 0;
  right: 0;
  top: calc(var(--line) * 20%);
  height: 1px;
}

.hero-system-visual {
  --engine-rx: 0deg;
  --engine-ry: 0deg;
  --engine-x: 0px;
  --engine-y: 0px;
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-engine {
  position: absolute;
  top: clamp(76px, 9vh, 112px);
  right: max(8px, calc((100vw - var(--max)) / 2 - 54px));
  width: min(48vw, 620px);
  aspect-ratio: 1;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  pointer-events: auto;
}

.hero-engine:focus-visible {
  outline: 1px solid var(--green);
  outline-offset: -28px;
}

.engine-visual {
  position: absolute;
  inset: 0;
  transform: translate3d(var(--engine-x), var(--engine-y), 0) rotateX(var(--engine-rx)) rotateY(var(--engine-ry));
  transform-style: preserve-3d;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.engine-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(239, 242, 235, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.engine-ring-outer {
  width: 78%;
  height: 78%;
  border-style: dashed;
  animation: engineOrbit 30s linear infinite;
}

.engine-ring-inner {
  width: 54%;
  height: 54%;
  border-color: rgba(200, 255, 98, 0.18);
  animation: engineOrbitReverse 20s linear infinite;
}

.engine-connector {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  display: block;
  background: rgba(239, 242, 235, 0.1);
  transform-origin: left center;
}

.engine-connector-a,
.engine-connector-c {
  width: 36%;
  height: 1px;
}

.engine-connector-a {
  transform: rotate(-38deg);
}

.engine-connector-c {
  transform: rotate(142deg);
}

.engine-connector-b,
.engine-connector-d {
  width: 34%;
  height: 1px;
}

.engine-connector-b {
  transform: rotate(39deg);
}

.engine-connector-d {
  transform: rotate(219deg);
}

.engine-plane {
  --plane-scale: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 286px;
  height: 286px;
  border: 1px solid rgba(239, 242, 235, 0.14);
  background: rgba(15, 18, 20, 0.78);
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--plane-scale));
  transition: border-color 320ms ease, background 320ms ease, opacity 320ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.engine-plane i {
  position: absolute;
  right: 11px;
  top: 11px;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(239, 242, 235, 0.42);
  border-radius: 50%;
}

.engine-plane-product {
  --plane-scale: 1;
  opacity: 0.3;
}

.engine-plane-data {
  --plane-scale: 0.82;
  opacity: 0.42;
}

.engine-plane-ai {
  --plane-scale: 0.64;
  opacity: 0.56;
}

.engine-plane-operations {
  --plane-scale: 0.46;
  opacity: 0.72;
}

.hero-system[data-engine-mode="product"] .engine-plane-product,
.hero-system[data-engine-mode="data"] .engine-plane-data,
.hero-system[data-engine-mode="ai"] .engine-plane-ai,
.hero-system[data-engine-mode="operations"] .engine-plane-operations {
  border-color: rgba(200, 255, 98, 0.78);
  background: rgba(31, 39, 23, 0.92);
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(200, 255, 98, 0.08), 0 24px 90px rgba(0, 0, 0, 0.42);
}

.engine-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 132px;
  height: 176px;
  place-items: center;
  align-content: center;
  gap: 13px;
  border: 1px solid rgba(239, 242, 235, 0.34);
  background: #101416;
  box-shadow: 14px 14px 0 #080a0b, 14px 14px 0 1px rgba(239, 242, 235, 0.09), 0 34px 100px rgba(0, 0, 0, 0.72);
  transform: translate(-50%, -50%) rotate(-4deg);
  transition: border-color 320ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-engine:hover .engine-core,
.hero-engine:focus-visible .engine-core {
  border-color: rgba(200, 255, 98, 0.7);
  transform: translate(-50%, -50%) rotate(0deg) scale(1.025);
}

.engine-core svg {
  width: 32px;
  height: 37px;
  color: var(--green);
}

.engine-core b,
.engine-core small,
.engine-node,
.hero-engine-status,
.hero-rail {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0;
}

.engine-core b {
  font-size: 9px;
  font-weight: 500;
}

.engine-core small {
  color: rgba(239, 242, 235, 0.4);
  font-size: 6px;
}

.engine-node {
  position: absolute;
  z-index: 8;
  display: grid;
  grid-template-columns: 8px auto;
  gap: 2px 9px;
  align-items: center;
  color: rgba(239, 242, 235, 0.34);
  text-align: left;
  transition: color 320ms ease, transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.engine-node i {
  grid-row: 1 / 3;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.engine-node b {
  font-size: 8px;
  font-weight: 500;
}

.engine-node small {
  font-size: 6px;
}

.engine-node-product {
  left: 6%;
  top: 19%;
}

.engine-node-data {
  right: 7%;
  top: 20%;
}

.engine-node-ai {
  right: 5%;
  bottom: 18%;
}

.engine-node-operations {
  left: 3%;
  bottom: 17%;
}

.hero-system[data-engine-mode="product"] .engine-node-product,
.hero-system[data-engine-mode="data"] .engine-node-data,
.hero-system[data-engine-mode="ai"] .engine-node-ai,
.hero-system[data-engine-mode="operations"] .engine-node-operations {
  color: var(--green);
  transform: translateY(-3px);
}

.hero-system[data-engine-mode="product"] .engine-node-product i,
.hero-system[data-engine-mode="data"] .engine-node-data i,
.hero-system[data-engine-mode="ai"] .engine-node-ai i,
.hero-system[data-engine-mode="operations"] .engine-node-operations i {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(200, 255, 98, 0.08);
}

.engine-cursor {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  width: 8px;
  height: 8px;
  border: 1px solid var(--green);
  border-radius: 50%;
  transform-origin: -154px 0;
  animation: engineCursor 12s linear infinite;
}

.hero-engine.is-switching .engine-core {
  animation: engineCorePulse 520ms ease;
}

.hero-system .hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 960px);
  margin: 0;
  text-align: left;
  text-shadow: none;
}

.hero-system .hero-kicker {
  margin: 0 0 20px;
  color: rgba(239, 242, 235, 0.64);
  font-size: 9px;
}

.hero-system h1 {
  display: grid;
  margin: 0;
  color: #f0f3ed;
  font-family: var(--sans);
  font-size: clamp(64px, 7.6vw, 112px);
  font-stretch: 82%;
  font-weight: 520;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-system .hero-word {
  width: fit-content;
}

.hero-system .hero-word-accent {
  margin-top: 8px;
  color: rgba(239, 242, 235, 0.52);
  font-family: var(--sans);
  font-size: 1em;
  font-stretch: 82%;
  font-weight: 460;
}

.hero-system [data-hero-subtitle] {
  max-width: 530px;
  margin: 28px 0 0;
  color: rgba(239, 242, 235, 0.68);
  font-size: 17px;
  line-height: 1.5;
}

.hero-engine-status {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 82px;
  z-index: 4;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 3px 14px;
  width: 300px;
  border-top: 1px solid rgba(239, 242, 235, 0.2);
  padding-top: 14px;
}

.hero-engine-status > span {
  grid-row: 1 / 3;
  margin-top: 2px;
  color: var(--green);
  font-size: 7px;
}

.hero-engine-status strong {
  color: #eef2e9;
  font-family: var(--sans);
  font-size: 15px;
  font-stretch: 90%;
  font-weight: 560;
}

.hero-engine-status small {
  color: rgba(239, 242, 235, 0.42);
  font-size: 8px;
  line-height: 1.35;
}

.hero-rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(200, 255, 98, 0.2);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(239, 242, 235, 0.35);
  font-size: 6px;
}

.hero-rail span:last-child {
  color: var(--green);
}

.js .hero-system-visual,
.js .hero-system .hero-kicker,
.js .hero-engine-status,
.js .hero-rail {
  opacity: 0;
}

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

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

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

@keyframes engineCorePulse {
  50% { border-color: var(--green); box-shadow: 14px 14px 0 #080a0b, 14px 14px 0 1px rgba(200, 255, 98, 0.22), 0 34px 100px rgba(0, 0, 0, 0.72); }
}

@media (max-width: 980px) {
  .hero.hero-system {
    height: 820px;
    min-height: 820px;
    padding: 112px 24px 92px;
  }

  .hero-engine {
    top: 54px;
    right: -90px;
    width: 590px;
    opacity: 0.7;
  }

  .hero-system h1 {
    font-size: clamp(60px, 10vw, 84px);
  }

  .hero-engine-status {
    right: 24px;
  }
}

@media (max-width: 620px) {
  .hero.hero-system {
    height: 760px;
    min-height: 760px;
    padding: 100px 20px 106px;
  }

  .hero-matrix-v:nth-of-type(even),
  .hero-matrix-h:nth-of-type(even) {
    display: none;
  }

  .hero-engine {
    top: 34px;
    right: -138px;
    width: 470px;
    opacity: 0.52;
  }

  .engine-plane {
    width: 232px;
    height: 232px;
  }

  .engine-core {
    width: 108px;
    height: 144px;
  }

  .engine-node {
    display: none;
  }

  .engine-cursor {
    transform-origin: -122px 0;
  }

  .hero-system .hero-content {
    width: 100%;
  }

  .hero-system .hero-kicker {
    margin-bottom: 16px;
    font-size: 8px;
  }

  .hero-system h1 {
    font-size: clamp(52px, 15vw, 62px);
    line-height: 0.88;
  }

  .hero-system .hero-word-accent {
    margin-top: 5px;
  }

  .hero-system [data-hero-subtitle] {
    max-width: 340px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-engine-status {
    left: auto;
    right: 20px;
    bottom: 51px;
    width: 238px;
    grid-template-columns: 44px 1fr;
    padding-top: 10px;
  }

  .hero-engine-status strong {
    font-size: 13px;
  }

  .hero-rail {
    height: 34px;
    padding: 0 20px;
  }

  .hero-rail span:nth-child(2) {
    display: none;
  }
}

/* CASE&TARS native section */
.agency-section.agency-native {
  --ct-ink: #18181b;
  --ct-paper: #fbfbf8;
  --ct-paper-secondary: #f5f4ef;
  --ct-line: #e4e3de;
  border-color: var(--ct-line);
  background: var(--ct-paper);
  color: var(--ct-ink);
  font-family: "Urbanist", Arial, sans-serif;
  overflow: visible;
  padding: 0;
  scroll-margin-top: 96px;
}

.agency-native-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  border-right: 1px solid var(--ct-line);
  border-left: 1px solid var(--ct-line);
}

.agency-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--ct-line);
  background: var(--ct-paper-secondary);
}

.agency-vision-copy {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--ct-line);
  padding: 40px;
}

.agency-vision-copy > p:first-child {
  margin: 0;
  color: #52525b;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.agency-vision-copy h3 {
  max-width: 720px;
  margin: 0;
  font-family: "Urbanist", Arial, sans-serif;
  font-size: clamp(38px, 3.9vw, 56px);
  font-weight: 500;
  line-height: 1.03;
  text-wrap: balance;
}

.agency-vision-copy h3 strong {
  font-weight: 700;
}

.agency-vision-copy > p:last-child {
  max-width: 720px;
  margin: auto 0 0;
  color: #52525b;
  font-size: 17px;
  line-height: 1.55;
}

.agency-vision-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.agency-vision-metrics article {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--ct-line);
  border-bottom: 1px solid var(--ct-line);
  padding: 30px;
  transition: background 200ms ease, color 200ms ease;
}

.agency-vision-metrics article:nth-child(even) {
  border-right: 0;
}

.agency-vision-metrics article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.agency-vision-metrics article:hover {
  background: #162cff;
  color: #fff;
}

.agency-vision-metrics strong {
  font-family: "Urbanist", Arial, sans-serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.06;
}

.agency-vision-metrics p {
  max-width: 260px;
  margin: 10px 0 0;
  color: #52525b;
  font-size: 12px;
  line-height: 1.45;
  transition: color 200ms ease;
}

.agency-vision-metrics article:hover p {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 940px) {
  .agency-vision-grid {
    grid-template-columns: 1fr;
  }

  .agency-vision-copy {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--ct-line);
  }
}

@media (max-width: 620px) {
  .agency-native-shell {
    border-right: 0;
    border-left: 0;
  }

  .agency-vision-copy {
    min-height: 0;
    gap: 20px;
    padding: 30px 18px 34px;
  }

  .agency-vision-copy h3 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .agency-vision-copy > p:last-child {
    margin-top: 14px;
    font-size: 15px;
  }

  .agency-vision-metrics {
    grid-template-columns: 1fr;
  }

  .agency-vision-metrics article,
  .agency-vision-metrics article:nth-child(even),
  .agency-vision-metrics article:nth-last-child(-n + 2) {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid var(--ct-line);
    padding: 22px 18px;
  }

  .agency-vision-metrics article:last-child {
    border-bottom: 0;
  }

  .agency-vision-metrics strong {
    font-size: 27px;
  }
}
