/* Unknown Projects — 2026 company system */
:root {
  color-scheme: dark;

  --bg: #060713;
  --bg-deep: #02030a;
  --surface: #0c0f1f;
  --surface-raised: #11152a;
  --surface-soft: rgb(255, 255, 255, 0.035);
  --surface-hover: rgb(255, 255, 255, 0.06);
  --ink: #f5f7ff;
  --ink-soft: #c0c6da;
  --muted: #858da8;
  --line: rgb(255, 255, 255, 0.095);
  --line-soft: rgb(255, 255, 255, 0.055);
  --violet: #8d70ff;
  --violet-strong: #6f58ef;
  --cyan: #52c9ff;
  --cyan-soft: #9ee3ff;
  --success: #70e1b2;
  --danger: #ff7c95;
  --shadow: 0 24px 80px rgb(0, 0, 0, 0.38);
  --shadow-small: 0 16px 42px rgb(0, 0, 0, 0.22);
  --font-sans: "Inter", system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", consolas, monospace;
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section: clamp(5rem, 10vw, 9rem);
  --radius-xs: 0.45rem;
  --radius-sm: 0.75rem;
  --radius: 1.15rem;
  --radius-lg: 1.65rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="light"] {
  color-scheme: light;

  --bg: #f5f7fc;
  --bg-deep: #edf0f8;
  --surface: #fff;
  --surface-raised: #f9faff;
  --surface-soft: rgb(14, 20, 48, 0.035);
  --surface-hover: rgb(14, 20, 48, 0.06);
  --ink: #11152a;
  --ink-soft: #3e465f;
  --muted: #626a84;
  --line: rgb(17, 21, 42, 0.13);
  --line-soft: rgb(17, 21, 42, 0.075);
  --violet: #6751dc;
  --violet-strong: #5740cf;
  --cyan: #087dad;
  --cyan-soft: #086c93;
  --success: #147451;
  --danger: #bd2848;
  --shadow: 0 24px 72px rgb(57, 65, 105, 0.16);
  --shadow-small: 0 16px 38px rgb(57, 65, 105, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  background: var(--bg-deep);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -10%, rgb(78, 201, 255, 0.1), transparent 30rem),
    radial-gradient(circle at 94% 12%, rgb(141, 112, 255, 0.12), transparent 34rem),
    var(--bg);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0, 0.46), transparent 44rem);
  opacity: 0.34;
}

[data-theme="light"] body {
  background:
    radial-gradient(circle at 12% -10%, rgb(78, 201, 255, 0.1), transparent 30rem),
    radial-gradient(circle at 94% 12%, rgb(141, 112, 255, 0.1), transparent 34rem),
    var(--bg);
}

::selection {
  color: #fff;
  background: rgb(111, 88, 239, 0.78);
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.8rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.65rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.028em;
}

p {
  color: var(--ink-soft);
  text-wrap: pretty;
}

strong {
  color: var(--ink);
}

hr {
  height: 1px;
  margin: 0;
  border: 0;
  background: var(--line);
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--cyan) 75%, white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  color: #fff;
  background: #151a33;
  border-radius: var(--radius-xs);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(calc(100% - (2 * clamp(1rem, 2vw, 2rem))), 1510px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section);
}

.section-tight {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.section-border {
  border-top: 1px solid var(--line-soft);
}

.surface-band {
  background: color-mix(in srgb, var(--surface) 64%, transparent);
  border-block: 1px solid var(--line-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  color: var(--cyan-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.7rem;
  height: 1px;
  content: "";
  background: currentcolor;
}

.kicker {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(115deg, var(--ink) 5%, var(--cyan) 45%, var(--violet) 84%);
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
}

.text-link::after {
  content: "↗";
  color: var(--cyan);
  transition: transform 180ms var(--ease);
}

.text-link:hover::after {
  transform: translate(0.15rem, -0.15rem);
}

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

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

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: padding 220ms var(--ease), background 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  padding: 0.65rem 0;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 3.4rem;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 2.75rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 620;
  letter-spacing: -0.025em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgb(141, 112, 255, 0.32));
}

.brand small {
  display: block;
  margin-top: -0.16rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  position: relative;
  min-height: 2.65rem;
  padding: 0.65rem 0.78rem;
  color: var(--muted);
  border-radius: var(--radius-xs);
  font-size: 0.85rem;
  font-weight: 560;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--surface-soft);
}

.nav-links a[aria-current="page"]::after {
  position: absolute;
  right: 0.78rem;
  bottom: 0.36rem;
  left: 0.78rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.theme-button,
.menu-button,
.mobile-menu-close {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  color: var(--ink-soft);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.theme-button:hover,
.menu-button:hover,
.mobile-menu-close:hover {
  color: var(--ink);
  background: var(--surface-hover);
  border-color: color-mix(in srgb, var(--violet) 45%, var(--line));
}

.theme-button svg,
.menu-button svg,
.mobile-menu-close svg {
  width: 1.18rem;
  height: 1.18rem;
}

.theme-button .icon-sun,
[data-theme="light"] .theme-button .icon-moon {
  display: none;
}

[data-theme="light"] .theme-button .icon-sun {
  display: block;
}

.menu-button {
  display: none;
  border-radius: var(--radius-xs);
}

.nav-cta {
  min-height: 2.75rem;
  padding-inline: 1.05rem;
  font-size: 0.82rem;
}

.mobile-menu-screen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 5%, rgb(141, 112, 255, 0.16), transparent 20rem),
    var(--bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.4rem;
  padding: 0.9rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.mobile-menu-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.8rem var(--gutter) max(1.5rem, env(safe-area-inset-bottom));
  overflow-y: auto;
}

.mobile-menu-label {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu-links {
  display: grid;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 6vw, 1.8rem);
  font-weight: 540;
  letter-spacing: -0.025em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(0.6rem);
}

.mobile-menu-screen.open .mobile-menu-links a {
  animation: mobile-link-in 420ms var(--ease) forwards;
}

.mobile-menu-links a:nth-child(2) { animation-delay: 35ms; }
.mobile-menu-links a:nth-child(3) { animation-delay: 70ms; }
.mobile-menu-links a:nth-child(4) { animation-delay: 105ms; }
.mobile-menu-links a:nth-child(5) { animation-delay: 140ms; }
.mobile-menu-links a:nth-child(6) { animation-delay: 175ms; }

.mobile-menu-links a::after {
  content: "↗";
  color: var(--cyan);
  font-size: 1rem;
}

.mobile-menu-footer {
  display: grid;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 2rem;
}

@keyframes mobile-link-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.78rem 1.2rem;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--surface-hover);
  border-color: color-mix(in srgb, var(--violet) 40%, var(--line));
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(112deg, var(--violet-strong), #586bf0 60%, #247ea9);
  border-color: rgb(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgb(89, 82, 226, 0.25);
}

.button-primary:hover {
  background: linear-gradient(112deg, #8068ff, #6378ff 60%, #2f95c7);
  border-color: rgb(255, 255, 255, 0.28);
  box-shadow: 0 16px 36px rgb(89, 82, 226, 0.34);
}

.button-quiet {
  background: transparent;
}

.button-small {
  min-height: 2.7rem;
  padding: 0.65rem 0.95rem;
  font-size: 0.84rem;
}

.button-arrow::after {
  content: "↗";
  font-size: 0.9em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: min(960px, 100svh);
  align-items: center;
  padding: clamp(8.5rem, 14vw, 11rem) 0 clamp(4.5rem, 7vw, 7rem);
  overflow: clip;
}

.home-hero::after {
  position: absolute;
  right: -18rem;
  bottom: -22rem;
  width: 42rem;
  height: 42rem;
  content: "";
  background: radial-gradient(circle, rgb(141, 112, 255, 0.14), transparent 66%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(25rem, 0.88fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
}

.hero-copy h1 {
  max-width: 10.5ch;
  margin-bottom: 1.6rem;
  font-size: clamp(3.55rem, 7.3vw, 7.4rem);
}

.hero-copy .lead {
  max-width: 40rem;
  margin-bottom: 2.2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.35rem;
  margin: 2rem 0 0;
  padding: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-proof li::before {
  width: 0.38rem;
  height: 0.38rem;
  content: "";
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 14px color-mix(in srgb, var(--success) 65%, transparent);
}

.company-system {
  position: relative;
  min-height: 34rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgb(255, 255, 255, 0.055), rgb(255, 255, 255, 0.012)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.company-system::before,
.company-system::after {
  position: absolute;
  inset: 9% 10%;
  z-index: -1;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.company-system::after {
  inset: 21% 22%;
  border-color: color-mix(in srgb, var(--violet) 25%, var(--line));
  transform: rotate(17deg);
}

.system-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  opacity: 0.48;
}

.system-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 12.5rem;
  height: 12.5rem;
  place-items: center;
  background: radial-gradient(circle, rgb(141, 112, 255, 0.16), transparent 68%);
  transform: translate(-50%, -50%);
}

.system-center::before {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgb(141, 112, 255, 0.26);
  border-radius: 50%;
  box-shadow: inset 0 0 48px rgb(141, 112, 255, 0.08), 0 0 54px rgb(82, 201, 255, 0.06);
  animation: system-pulse 5s ease-in-out infinite;
}

.system-center img {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgb(141, 112, 255, 0.42));
}

@keyframes system-pulse {
  50% { transform: scale(1.045); opacity: 0.68; }
}

.system-node {
  position: absolute;
  min-width: 10.5rem;
  padding: 0.9rem 1rem;
  background: color-mix(in srgb, var(--surface-raised) 90%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-small);
}

.system-node strong,
.system-node span {
  display: block;
}

.system-node strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.2;
}

.system-node span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-node::before {
  position: absolute;
  top: 1rem;
  left: -0.22rem;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 14px rgb(82, 201, 255, 0.7);
}

.system-node-windop { top: 10%; right: 5%; }
.system-node-curves { right: 7%; bottom: 11%; }
.system-node-services { bottom: 16%; left: 4%; }
.system-node-company { top: 13%; left: 4%; }

.system-status {
  position: absolute;
  right: 1.2rem;
  bottom: 1.15rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-status::before {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.5rem;
  content: "";
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 12px rgb(112, 225, 178, 0.72);
}

/* Proof strip */
.proof-strip {
  border-block: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--surface) 52%, transparent);
}

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

.proof-item {
  min-height: 9rem;
  padding: 1.8rem clamp(1.2rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line-soft);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-number {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1;
}

.proof-label {
  display: block;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Section headings */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.58fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2.6rem, 6vw, 5rem);
}

.section-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.section-heading p {
  max-width: 33rem;
  margin: 0;
  justify-self: end;
}

.section-heading-centered {
  display: block;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered h2,
.section-heading-centered p {
  max-width: none;
  justify-self: auto;
}

/* Product presentation */
.product-stack {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: 37rem;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.product-feature:nth-child(even) {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}

.product-feature:nth-child(even) .product-content {
  order: 2;
}

.product-feature:nth-child(even) .product-visual {
  order: 1;
}

.product-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.product-index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-index::before {
  width: 2.2rem;
  height: 1px;
  content: "";
  background: var(--line);
}

.product-logo {
  width: auto;
  max-width: 12rem;
  max-height: 3.4rem;
  margin-bottom: 1.45rem;
  object-fit: contain;
  object-position: left center;
}

.product-logo-curves {
  max-width: 11.5rem;
  max-height: 3.25rem;
}

.product-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.4rem;
  margin-bottom: 1.45rem;
}

.product-lockup img {
  width: 2.45rem;
  height: 2.45rem;
  object-fit: contain;
}

.product-lockup span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.product-lockup-windop span {
  color: var(--ink);
}

.product-content h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.product-content > p {
  max-width: 33rem;
  margin-bottom: 1.7rem;
  font-size: 1.05rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tag {
  display: inline-flex;
  min-height: 1.95rem;
  align-items: center;
  padding: 0.36rem 0.68rem;
  color: var(--ink-soft);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 550;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-visual {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  background: var(--bg-deep);
}

.product-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.product-feature:hover .product-visual > img {
  transform: scale(1.025);
}

.product-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgb(6, 7, 19, 0.28), transparent 35%);
  pointer-events: none;
}

.product-feature:nth-child(even) .product-visual::after {
  background: linear-gradient(270deg, rgb(6, 7, 19, 0.2), transparent 35%);
}

.product-window {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 3rem);
  width: min(78%, 34rem);
  overflow: hidden;
  background: #080b15;
  border: 1px solid rgb(255, 255, 255, 0.18);
  border-radius: 0.85rem;
  box-shadow: 0 26px 70px rgb(0, 0, 0, 0.46);
  transform: rotate(-1.7deg);
}

.product-window-bar {
  display: flex;
  height: 1.8rem;
  align-items: center;
  gap: 0.32rem;
  padding-inline: 0.75rem;
  background: #0e1220;
  border-bottom: 1px solid rgb(255, 255, 255, 0.08);
}

.product-window-bar i {
  width: 0.38rem;
  height: 0.38rem;
  background: rgb(255, 255, 255, 0.32);
  border-radius: 50%;
}

.product-window img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

/* Services */
.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 5rem minmax(13rem, 0.65fr) minmax(18rem, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.6rem);
  min-height: 9.5rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, padding 220ms var(--ease);
}

.service-row:hover {
  padding-inline: 1.1rem;
  background: var(--surface-soft);
}

.service-number {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.service-row p {
  max-width: 38rem;
  margin: 0;
  font-size: 0.95rem;
}

.service-arrow {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--cyan);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 180ms var(--ease), background 180ms ease;
}

.service-row:hover .service-arrow {
  background: var(--surface-hover);
  transform: translate(0.15rem, -0.15rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.process-step {
  min-height: 16rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step .kicker {
  color: var(--cyan);
}

.process-step h3 {
  margin: 2rem 0 0.8rem;
  font-size: 1.35rem;
}

.process-step p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 24rem;
  padding: clamp(1.7rem, 4vw, 3rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card:nth-child(3n) {
  grid-column: span 2;
  min-height: auto;
}

.service-card .service-number {
  display: block;
  margin-bottom: clamp(3rem, 8vw, 7rem);
}

.service-card h2,
.service-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.service-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.service-card li::before {
  flex: 0 0 auto;
  content: "—";
  color: var(--cyan);
}

/* Work */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.6vw, 2rem);
}

.work-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 220ms var(--ease), border-color 180ms ease, box-shadow 220ms ease;
}

.work-card:hover {
  border-color: color-mix(in srgb, var(--violet) 44%, var(--line));
  box-shadow: var(--shadow-small);
  transform: translateY(-0.35rem);
}

.work-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 600ms var(--ease);
}

.work-card:hover .work-image img {
  transform: scale(1.025);
}

.work-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgb(2, 3, 10, 0.36), transparent 45%);
  pointer-events: none;
}

.work-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.work-body h3 {
  margin-bottom: 0.55rem;
}

.work-body p {
  max-width: 34rem;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.work-meta {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.work-arrow {
  color: var(--cyan);
  font-size: 1.3rem;
}

/* Company story */
.story-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.story-sticky {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.story-sticky h2 {
  max-width: 9ch;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 0.33rem;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding: 0 0 4rem 3rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--bg);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 16px rgb(82, 201, 255, 0.34);
}

.timeline-item time {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--cyan-soft);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 0.75rem;
}

.timeline-item p {
  max-width: 38rem;
  margin-bottom: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-item {
  min-height: 19rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--surface);
  border-right: 1px solid var(--line);
}

.value-item:last-child {
  border-right: 0;
}

.value-item .kicker {
  color: var(--cyan);
}

.value-item h3 {
  margin: clamp(3rem, 7vw, 6rem) 0 0.9rem;
}

.value-item p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.team-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(12rem, 0.72fr) minmax(15rem, 1fr);
  min-height: 29rem;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.team-portrait {
  position: relative;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 40%, rgb(82, 201, 255, 0.2), transparent 45%),
    linear-gradient(150deg, #121a35, #151128 65%, #080b15);
  overflow: hidden;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-monogram {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  place-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at center, rgb(141, 112, 255, 0.22), transparent 42%),
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px),
    var(--surface-raised);
  background-size: auto, 48px 48px, 48px 48px, auto;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.08em;
}

.team-monogram::after {
  position: absolute;
  width: 10rem;
  height: 10rem;
  content: "";
  border: 1px solid rgb(141, 112, 255, 0.3);
  border-radius: 50%;
}

.team-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.6rem, 3.5vw, 2.7rem);
}

.team-role {
  margin-bottom: 0.7rem;
  color: var(--cyan-soft);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-content h3 {
  margin-bottom: 0.85rem;
}

.team-content p {
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
}

.team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.team-links a {
  padding: 0.42rem 0.66rem;
  color: var(--ink-soft);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  text-decoration: none;
}

.team-links a:hover {
  color: var(--ink);
  border-color: var(--violet);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.faq-intro h2 {
  max-width: 8ch;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
}

.faq-question span:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 550;
  letter-spacing: -0.02em;
}

.faq-icon {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1px;
  content: "";
  background: var(--cyan);
  transition: transform 180ms var(--ease);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.js .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms var(--ease);
}

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

.faq-answer p {
  max-width: 47rem;
  margin: 0;
  padding: 0 3rem 1.8rem 0;
}

.js .faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

/* Page heroes */
.page-hero {
  position: relative;
  min-height: 39rem;
  display: grid;
  align-items: end;
  padding: clamp(9rem, 16vw, 13rem) 0 clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero::after {
  position: absolute;
  top: 6rem;
  right: -10rem;
  width: 32rem;
  height: 32rem;
  content: "";
  background: radial-gradient(circle, rgb(141, 112, 255, 0.17), transparent 66%);
  pointer-events: none;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.5fr);
  align-items: end;
  gap: 2.5rem;
}

.page-hero h1 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.page-hero .lead {
  margin: 0;
  justify-self: end;
}

.page-hero-compact {
  min-height: 29rem;
}

.page-hero-compact h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-aside h2 {
  max-width: 9ch;
}

.contact-list {
  display: grid;
  width: 100%;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.contact-method {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-method span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-method a,
.contact-method strong {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 630;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input,
.field select {
  min-height: 3.25rem;
  padding: 0.75rem 0.9rem;
}

.field textarea {
  min-height: 10rem;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 78%, transparent);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--bg);
  border-color: var(--violet);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--violet) 18%, transparent);
}

.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
}

.form-footer p {
  max-width: 29rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

/* Blog */
.post-list {
  display: grid;
  gap: 1rem;
}

.post-card {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  min-height: 12rem;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 200ms var(--ease), border-color 160ms ease;
}

.post-card:hover {
  border-color: color-mix(in srgb, var(--violet) 42%, var(--line));
  transform: translateY(-0.25rem);
}

.post-date {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.post-card h2,
.post-card h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.post-card p {
  max-width: 43rem;
  margin: 0;
  font-size: 0.9rem;
}

.post-arrow {
  color: var(--cyan);
  font-size: 1.5rem;
}

.article {
  width: min(calc(100% - (2 * var(--gutter))), 790px);
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.article-header {
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-body {
  font-size: clamp(1.03rem, 1.6vw, 1.14rem);
  line-height: 1.82;
}

.article-body h2 {
  margin: 3.7rem 0 1.2rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.article-body h3 {
  margin: 2.6rem 0 0.9rem;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin-bottom: 1.35rem;
}

.article-body li {
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}

.article-body blockquote {
  margin: 2.4rem 0;
  padding: 1.4rem 0 1.4rem 1.5rem;
  border-left: 2px solid var(--violet);
}

.article-body blockquote p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.5;
}

/* Privacy/legal */
.legal-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.legal-nav {
  position: sticky;
  top: 8rem;
  align-self: start;
  display: grid;
  gap: 0.35rem;
}

.legal-nav a {
  padding: 0.55rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--ink);
}

.legal-copy section {
  margin-bottom: 3.5rem;
}

.legal-copy h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
}

.legal-copy li {
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}

/* CTAs */
.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  padding: clamp(2.2rem, 6vw, 5.5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgb(82, 201, 255, 0.13), transparent 20rem),
    radial-gradient(circle at 10% 100%, rgb(141, 112, 255, 0.16), transparent 24rem),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.cta-panel::after {
  position: absolute;
  top: -7rem;
  right: 10%;
  width: 16rem;
  height: 16rem;
  content: "";
  border: 1px solid rgb(141, 112, 255, 0.22);
  border-radius: 50%;
}

.cta-panel h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
}

.cta-panel p {
  max-width: 42rem;
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
  background: var(--bg-deep);
  border-top: 1px solid var(--line-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 1.25fr) repeat(3, minmax(8rem, 0.5fr));
  gap: clamp(2rem, 6vw, 5rem);
  padding-bottom: 3.5rem;
}

.footer-brand p {
  max-width: 26rem;
  margin: 1.1rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-location {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-group h2,
.footer-group h3 {
  margin-bottom: 1rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

.footer-bottom [data-current-year] {
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--ink);
}

/* Utility states */
.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.js .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.center-message {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 8rem var(--gutter) 4rem;
  text-align: center;
}

.center-message-inner {
  max-width: 44rem;
}

.center-message-code {
  display: block;
  margin-bottom: 1rem;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.center-message h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 10vw, 7rem);
}

.center-message p {
  max-width: 38rem;
  margin-inline: auto;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-links a { padding-inline: 0.58rem; }
  .nav-cta { display: none; }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.8fr);
    gap: 3rem;
  }

  .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: 26rem; }

  .footer-grid {
    grid-template-columns: minmax(14rem, 1.2fr) repeat(3, minmax(7rem, 0.5fr));
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .site-header { padding: 0.75rem 0; }
  .nav-shell { grid-template-columns: 1fr auto; }

  .nav-links,
  .nav-actions > .nav-cta { display: none; }
  .nav-actions { grid-column: 2; }
  .menu-button { display: inline-grid; }
  .mobile-menu-screen { display: flex; }

  .home-hero {
    min-height: auto;
    padding-top: 8.5rem;
  }

  .hero-grid,
  .section-heading,
  .page-hero-grid,
  .story-grid,
  .faq-layout,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 { max-width: 11ch; }
  .company-system { min-height: 32rem; }

  .section-heading p,
  .page-hero .lead {
    justify-self: start;
  }

  .page-hero { min-height: 34rem; }

  .product-feature,
  .product-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .product-feature:nth-child(even) .product-content,
  .product-feature:nth-child(even) .product-visual {
    order: initial;
  }

  .product-content { min-height: 28rem; }

  .product-visual::after,
  .product-feature:nth-child(even) .product-visual::after {
    background: linear-gradient(to bottom, rgb(6, 7, 19, 0.05), transparent 35%);
  }

  .service-row {
    grid-template-columns: 3.5rem minmax(13rem, 0.7fr) minmax(16rem, 1fr) auto;
  }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }

  .story-sticky,
  .faq-intro,
  .legal-nav {
    position: static;
  }

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

  .value-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .value-item:last-child { border-bottom: 0; }
  .value-item h3 { margin-top: 3rem; }

  .legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --gutter: 1.15rem; }

  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.5rem); }

  .brand span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .mobile-menu-header .brand span {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
  .theme-button { display: none; }
  .mobile-menu-footer .theme-button { display: inline-grid; }

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

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

  .company-system { min-height: 27rem; }
  .system-center { width: 9.5rem; height: 9.5rem; }
  .system-center img { width: 5.6rem; height: 5.6rem; }

  .system-node {
    min-width: 8rem;
    padding: 0.72rem 0.75rem;
  }
  .system-node strong { font-size: 0.78rem; }
  .system-node span { font-size: 0.5rem; }
  .system-node-company { top: 7%; left: 3%; }
  .system-node-windop { top: 8%; right: 3%; }
  .system-node-services { bottom: 10%; left: 3%; }
  .system-node-curves { right: 3%; bottom: 9%; }

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

  .proof-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .proof-item:last-child { border-bottom: 0; }

  .section-heading { gap: 1.2rem; }
  .section-heading h2 { max-width: none; }

  .product-content { min-height: auto; padding-block: 2.5rem; }
  .product-visual { min-height: 23rem; }
  .product-window { width: 88%; }

  .service-row {
    grid-template-columns: 2.8rem 1fr auto;
    min-height: 0;
    padding-block: 1.5rem;
  }

  .service-row p {
    grid-column: 2 / -1;
    grid-row: 2;
  }
  .service-arrow { grid-column: 3; grid-row: 1; }

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

  .process-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .process-step:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .process-step h3 { margin-top: 2.5rem; }

  .service-detail-grid,
  .work-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .service-card:nth-child(3n) { grid-column: auto; }
  .service-card .service-number { margin-bottom: 3rem; }

  .work-body { grid-template-columns: 1fr auto; }
  .work-meta { grid-column: 1; }

  .team-card { grid-template-columns: 1fr; }
  .team-portrait { min-height: 22rem; }
  .team-monogram { min-height: 22rem; }

  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .post-card {
    grid-template-columns: 1fr auto;
  }
  .post-date { grid-column: 1 / -1; }
  .post-card > div { grid-column: 1; }
  .post-arrow { grid-column: 2; grid-row: 2; }

  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel .button-row { width: 100%; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-group:last-child { grid-column: 1 / -1; }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .home-hero { padding-top: 7.5rem; }
  .hero-copy h1 { font-size: clamp(3rem, 16vw, 4rem); }
  .company-system { min-height: 24rem; }
  .system-center { width: 8rem; height: 8rem; }
  .system-center img { width: 4.7rem; height: 4.7rem; }
  .system-node { min-width: 7.25rem; }
  .system-node span { display: none; }
  .product-visual { min-height: 20rem; }
  .product-window { bottom: 1rem; right: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }

  .footer-brand,
  .footer-group:last-child { grid-column: auto; }
}

@media (hover: hover) and (pointer: fine) {
  .theme-button:hover,
  .menu-button:hover { transform: rotate(3deg); }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header,
  .mobile-menu-screen,
  .site-footer,
  .button-row,
  .cta-panel,
  .theme-button {
    display: none !important;
  }
  body { color: #111; background: #fff; }
  body::before { display: none; }

  .page-hero,
  .article { padding-block: 2rem; }

  p,
  li { color: #222 !important; }
}
