@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;
}

: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: "Hedvig", Georgia, serif;
  --sans: "Inter", 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;
  }
}
