﻿:root {
  --black: #000000;
  --ink: #101010;
  --white: #f5f5f7;
  --paper: #f2f2f0;
  --paper-2: #ffffff;
  --muted: #a1a1a6;
  --muted-dark: #5d5d62;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(16, 16, 16, 0.13);
  --metal: #d6c7a1;
  --metal-2: #f0e5c9;
  --blue: #147ce5;
  --max: 1180px;
  --radius: 8px;
  --gutter: 20px;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-glide: cubic-bezier(0.22, 1, 0.36, 1);
  --glass-shadow: 0 24px 86px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  --hover-shadow: 0 30px 96px rgba(0, 0, 0, 0.5), 0 0 34px rgba(214, 199, 161, 0.07);
  --pointer-x: 72%;
  --pointer-y: 18%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  background: var(--black);
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-width: 0;
  color: var(--white);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(245, 245, 247, 0.11), transparent 28rem),
    radial-gradient(circle at 18% 8%, rgba(214, 199, 161, 0.12), transparent 30rem),
    radial-gradient(circle at 82% 18%, rgba(245, 245, 247, 0.09), transparent 38rem),
    linear-gradient(115deg, rgba(214, 199, 161, 0.075), transparent 24%, transparent 68%, rgba(20, 124, 229, 0.045)),
    linear-gradient(180deg, #070708 0%, #111113 46%, #050506 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.54) 100%),
    url("assets/hero-architecture.png") center top / cover no-repeat;
  filter: saturate(1.12) contrast(1.05) brightness(1.1);
  opacity: 0.72;
  transform: translate3d(0, 0, 0);
  animation: ambientGlassDrift 28s var(--ease-glide) infinite alternate;
}

body::after {
  background-image:
    radial-gradient(ellipse at var(--pointer-x) var(--pointer-y), rgba(245, 245, 247, 0.16), transparent 24rem),
    conic-gradient(from 145deg at 74% 18%, transparent 0 18%, rgba(214, 199, 161, 0.13) 24%, rgba(245, 245, 247, 0.08) 28%, transparent 38% 100%),
    linear-gradient(118deg, transparent 0 24%, rgba(255, 255, 255, 0.085) 32%, transparent 43%, transparent 62%, rgba(214, 199, 161, 0.08) 70%, transparent 82%),
    linear-gradient(rgba(214, 199, 161, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 247, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 62% 18%, rgba(214, 199, 161, 0.16), transparent 34rem);
  background-position: center, center, 0 0, center top, center top, center;
  background-size: auto, 100% 100%, 190% 190%, 96px 96px, 96px 96px, auto;
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 70%, transparent 100%);
  opacity: 0.25;
  animation: airflowDrift 34s var(--ease-glide) infinite alternate;
}

main,
.site-footer,
.legal-page {
  position: relative;
  z-index: 1;
}

main::before {
  content: "";
  position: fixed;
  inset: -14vh -10vw;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 16%, rgba(255, 255, 255, 0.1), transparent 30rem),
    radial-gradient(ellipse at 82% 34%, rgba(214, 199, 161, 0.11), transparent 32rem),
    linear-gradient(112deg, transparent 0 20%, rgba(245, 245, 247, 0.11) 30%, transparent 42%, transparent 58%, rgba(214, 199, 161, 0.09) 68%, transparent 82%);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0.54;
  transform: translate3d(0, 0, 0);
  animation: airCurrent 24s var(--ease-glide) infinite alternate;
}

main,
section,
article,
div,
form,
nav,
ul,
li {
  min-width: 0;
}

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

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

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

::selection {
  background: rgba(20, 124, 229, 0.28);
  color: var(--white);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: saturate(180%) blur(22px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(214, 199, 161, 0.16);
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.42);
}

.nav {
  width: min(var(--max), calc(100% - 36px));
  min-height: 60px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  min-width: 0;
  white-space: nowrap;
}

.wordmark span {
  font-size: 0.98rem;
  font-weight: 760;
}

.wordmark small {
  color: rgba(245, 245, 247, 0.48);
  font-size: 0.76rem;
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  position: relative;
  color: rgba(245, 245, 247, 0.7);
  font-size: 0.79rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 199, 161, 0.9), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 220ms ease, transform 220ms var(--ease-premium);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links .nav-cta {
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.88rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 10px 34px rgba(245, 245, 247, 0.1);
  transition: transform 180ms var(--ease-premium), background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: #e4dcc7;
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(214, 199, 161, 0.16);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  isolation: isolate;
  overflow: visible;
  position: relative;
  z-index: 80;
}

.nav-toggle:focus {
  outline: none;
}

.nav-toggle:focus-visible {
  outline: 1px solid rgba(245, 245, 247, 0.72);
  outline-offset: 3px;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 1.38rem;
  height: 2.5px;
  border-radius: 999px;
  background: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: opacity 120ms ease, transform 180ms ease;
}

.nav-line {
  display: block;
  width: 1.22rem;
  height: 2px;
  margin: 0.25rem auto;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 120ms ease, transform 180ms ease, background 180ms ease;
}

.nav-open .nav-toggle {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(84, 84, 88, 0.98);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.48), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav-open .nav-line {
  opacity: 0;
  transform: scaleX(0.4);
}

.nav-open .nav-toggle::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-open .nav-toggle::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-open .nav-line:first-child {
  transform: scaleX(0.4);
}

.nav-open .nav-line:nth-child(2) {
  transform: scaleX(0.4);
}

.hero,
.manifesto,
.system-strip,
.section,
.legal-hero,
.legal-content {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding: 7.4rem var(--gutter) 5.8rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  right: auto;
  height: min(76rem, 112vh);
  width: 100vw;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.46)),
    url("assets/hero-architecture.png") center top / cover no-repeat;
  opacity: 0.96;
  filter: saturate(1.16) contrast(1.06) brightness(1.12);
  animation: heroEnvironmentDrift 24s var(--ease-glide) infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  top: 4.5rem;
  left: calc(50% - 50vw);
  right: auto;
  height: 34rem;
  width: 100vw;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(214, 199, 161, 0.18), transparent 25rem),
    conic-gradient(from 130deg at 58% 34%, transparent 0 18%, rgba(245, 245, 247, 0.12) 22%, rgba(214, 199, 161, 0.1) 28%, transparent 38% 100%),
    linear-gradient(90deg, transparent, rgba(214, 199, 161, 0.15), transparent),
    repeating-linear-gradient(90deg, transparent 0 5.4rem, rgba(255, 255, 255, 0.07) 5.45rem, transparent 5.5rem);
  opacity: 0.68;
  transform: perspective(900px) rotateX(62deg) translateY(-8rem);
  transform-origin: center top;
  animation: heroGridGlide 18s var(--ease-glide) infinite alternate;
}

.hero-copy,
.hero-stage,
.hero-thesis {
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -3rem max(-4rem, -6vw) -2rem;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.26) 50%, transparent 74%);
  box-shadow: 0 0 150px rgba(214, 199, 161, 0.08);
  filter: blur(2px);
}

.hero-copy {
  max-width: 1040px;
  margin-inline: auto;
}

.brand-kicker,
.eyebrow,
.label {
  margin: 0;
  color: var(--metal-2);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-kicker {
  margin-bottom: 1rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 1000px;
  margin-inline: auto;
  font-size: 3.6rem;
  font-weight: 780;
}

h2 {
  font-size: 2.45rem;
  font-weight: 740;
}

h3 {
  font-size: 1.28rem;
  font-weight: 720;
}

.hero-subhead {
  max-width: 870px;
  margin: 1.25rem auto 0;
  color: rgba(245, 245, 247, 0.72);
  font-size: 1.08rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 100%;
  min-height: 2.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.18;
  text-align: center;
  white-space: normal;
  transition: transform 180ms var(--ease-premium), background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.26) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 260ms ease, transform 760ms var(--ease-premium);
}

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

.button:hover::before,
.button:focus-visible::before {
  opacity: 0.55;
  transform: translateX(120%);
}

.button-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 16px 46px rgba(245, 245, 247, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #fffdf6;
  box-shadow: 0 20px 62px rgba(214, 199, 161, 0.2), 0 0 0 1px rgba(214, 199, 161, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.button-dark {
  width: 100%;
  background: #151515;
  color: var(--white);
}

.hero-stage {
  position: relative;
  max-width: 1120px;
  margin: 3.2rem auto 0;
  isolation: isolate;
  transform-style: preserve-3d;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.5));
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-stage::before {
  top: 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent);
}

.hero-stage::after {
  bottom: 0;
  height: 22%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent);
}

.hero-stage img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.06) brightness(1.06);
  animation: heroModuleFloat 13s var(--ease-glide) infinite alternate;
  will-change: transform;
}

.stage-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.28rem;
  min-width: 12rem;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.54);
  text-align: left;
  backdrop-filter: blur(18px);
  box-shadow: var(--glass-shadow);
  transition: transform 220ms var(--ease-premium), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.stage-note:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 199, 161, 0.32);
  background: rgba(7, 7, 8, 0.7);
  box-shadow: var(--hover-shadow);
}

.stage-note span {
  color: var(--metal);
  font-size: 0.72rem;
  font-weight: 760;
}

.stage-note strong {
  color: rgba(245, 245, 247, 0.9);
  font-size: 0.86rem;
}

.stage-note-one {
  left: 1.2rem;
  top: 24%;
}

.stage-note-two {
  right: 2.4rem;
  top: 18%;
}

.stage-note-three {
  right: 10%;
  bottom: 17%;
}

.hero-thesis {
  max-width: 790px;
  margin: -1.2rem auto 0;
  position: relative;
  z-index: 4;
}

.hero-thesis p {
  margin: 0;
  color: rgba(245, 245, 247, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
}

.manifesto {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  padding: 5.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto::before,
.section:not(.examples-section):not(.deliverables-section)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at 18% 24%, rgba(214, 199, 161, 0.12), transparent 30rem),
    radial-gradient(circle at 78% 58%, rgba(245, 245, 247, 0.07), transparent 34rem),
    linear-gradient(112deg, rgba(255, 255, 255, 0.055), transparent 28%, transparent 66%, rgba(214, 199, 161, 0.055));
  opacity: 0.86;
  transform: translateX(-50%);
}

.manifesto::after,
.section:not(.examples-section):not(.deliverables-section)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  z-index: -1;
  width: 100vw;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(245, 245, 247, 0.16), rgba(214, 199, 161, 0.26), rgba(245, 245, 247, 0.12), transparent);
  box-shadow: 0 0 34px rgba(214, 199, 161, 0.14);
  opacity: 0.78;
  transform: translateX(-50%);
}

.manifesto .eyebrow,
.section-header .eyebrow,
.axiom-copy .eyebrow,
.fit-section .eyebrow,
.boundary-section .eyebrow,
.contact-copy .eyebrow {
  margin-bottom: 0.95rem;
}

.manifesto-text p,
.section-header p,
.axiom-copy p,
.boundary-section p,
.contact-copy p,
.legal-hero p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.manifesto-text p {
  margin: 0;
}

.manifesto-text p + p {
  margin-top: 1rem;
}

.system-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(214, 199, 161, 0.2), rgba(255, 255, 255, 0.08), rgba(214, 199, 161, 0.16));
  margin-top: 4rem;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
}

.system-strip article {
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(214, 199, 161, 0.13), transparent 9rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.026)),
    rgba(14, 14, 17, 0.82);
  backdrop-filter: blur(20px) saturate(150%);
}

.system-strip span {
  color: var(--metal);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.system-strip strong {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.22;
  font-weight: 720;
}

.tools-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.58fr);
  align-items: center;
  gap: 2rem;
  padding: 4.6rem 0;
}

.tools-section::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 18% 30%, rgba(245, 245, 247, 0.085), transparent 22rem),
    radial-gradient(circle at 82% 42%, rgba(214, 199, 161, 0.16), transparent 26rem),
    linear-gradient(118deg, rgba(255, 255, 255, 0.04), transparent 34%, rgba(214, 199, 161, 0.052));
}

.tools-copy {
  max-width: 780px;
}

.tools-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.76;
}

.tools-bridge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.55rem;
}

.tools-bridge-grid article {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(214, 199, 161, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.024)),
    rgba(12, 12, 14, 0.68);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.22);
  transition: transform 220ms var(--ease-premium), border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.tools-bridge-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.09) 44%, transparent 58%);
  opacity: 0;
  transform: translateX(-65%);
  transition: opacity 220ms ease, transform 520ms var(--ease-premium);
}

.tools-bridge-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 199, 161, 0.28);
  box-shadow: 0 1.4rem 2.8rem rgba(0, 0, 0, 0.28);
}

.tools-bridge-grid article:hover::before {
  opacity: 1;
  transform: translateX(70%);
}

.tools-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 1.15rem;
  padding: 1.25rem;
  border: 1px solid rgba(214, 199, 161, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 8%, rgba(214, 199, 161, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.028)),
    rgba(16, 16, 18, 0.86);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(20px) saturate(150%);
}

.tools-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.1) 42%, transparent 58%);
  opacity: 0.65;
  transform: translateX(-35%);
}

.tools-bridge-grid span,
.tools-panel span {
  color: var(--metal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tools-bridge-grid strong,
.tools-panel strong {
  color: var(--white);
}

.tools-bridge-grid strong {
  display: block;
  margin-top: 0.7rem;
  font-size: 1rem;
  line-height: 1.22;
  font-weight: 760;
}

.tools-bridge-grid p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.56;
}

.tools-panel strong {
  font-size: 1.28rem;
  line-height: 1.25;
  font-weight: 740;
}

.tools-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.tools-panel .button {
  width: 100%;
}

.affiliate-section {
  padding: 5.8rem 0;
}

.affiliate-section::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(214, 199, 161, 0.14), transparent 24rem),
    radial-gradient(circle at 82% 72%, rgba(245, 245, 247, 0.07), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 38%, rgba(214, 199, 161, 0.05));
}

.affiliate-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(2.25rem, 5vw, 4.2rem);
  border: 1px solid rgba(214, 199, 161, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.026)),
    rgba(15, 15, 18, 0.88);
  box-shadow: var(--glass-shadow), 0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  backdrop-filter: blur(22px) saturate(150%);
}

.affiliate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.11) 43%, transparent 59%),
    radial-gradient(circle at 50% 0%, rgba(214, 199, 161, 0.18), transparent 28rem);
  opacity: 0.72;
  transform: translateX(-20%);
}

.affiliate-card h2 {
  max-width: 860px;
}

.affiliate-card p {
  max-width: 790px;
  margin: 1.35rem auto 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.76;
}

.affiliate-card .button {
  margin-top: 2rem;
}

.section {
  position: relative;
  isolation: isolate;
  padding: 7rem 0;
  border-bottom: 1px solid var(--line);
}

.section-header {
  max-width: 870px;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 720px;
  margin: 1rem 0 0;
}

.capability-ledger {
  border-top: 1px solid var(--line);
}

.capability-ledger article {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
}

.capability-ledger span,
.engagement-grid span {
  color: var(--metal);
  font-size: 0.82rem;
  font-weight: 800;
}

.capability-ledger h3 {
  margin-bottom: 0.65rem;
}

.capability-ledger p,
.example-card p,
.engagement-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.examples-section,
.deliverables-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  background:
    radial-gradient(circle at 82% 4%, rgba(214, 199, 161, 0.28), transparent 28rem),
    radial-gradient(circle at 12% 72%, rgba(255, 255, 255, 0.9), transparent 30rem),
    linear-gradient(180deg, #fafaf7 0%, #edede8 100%);
  color: var(--ink);
  border-bottom: 0;
}

.examples-section .eyebrow,
.deliverables-section .eyebrow {
  color: #786b4e;
}

.examples-section .section-header p,
.deliverables-section .section-header p,
.example-card p,
.deliverable-columns li {
  color: var(--muted-dark);
}

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

.example-card {
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  border: 1px solid rgba(0, 0, 0, 0.075);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 54px rgba(16, 16, 16, 0.07);
}

.example-feature {
  grid-column: span 2;
  background:
    radial-gradient(circle at 86% 12%, rgba(214, 199, 161, 0.2), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    #111113;
  color: var(--white);
}

.example-feature p {
  color: rgba(245, 245, 247, 0.72);
}

.example-card .label {
  margin-bottom: auto;
  color: var(--blue);
}

.example-card h3 {
  margin: 4.6rem 0 0.75rem;
}

.examples-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.examples-portfolio-link {
  border-color: rgba(0, 0, 0, 0.16);
  background: #101010;
  color: var(--white);
  box-shadow: 0 18px 48px rgba(16, 16, 16, 0.18);
}

.examples-portfolio-link:hover,
.examples-portfolio-link:focus-visible {
  border-color: rgba(120, 107, 78, 0.48);
  background: #1a1a1a;
  color: var(--white);
}

.axiom-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 4rem;
  align-items: start;
}

.axiom-copy p {
  margin: 1rem 0 0;
}

.kernel-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(214, 199, 161, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.024));
  backdrop-filter: blur(20px) saturate(145%);
}

.kernel-row {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 1.2rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.kernel-row:last-child {
  border-bottom: 0;
}

.kernel-row span {
  color: var(--metal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.kernel-row p {
  margin: 0;
  color: rgba(245, 245, 247, 0.86);
  font-weight: 650;
}

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

.deliverable-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.deliverable-columns li {
  min-height: 3.9rem;
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 650;
}

.deliverable-columns li:last-child {
  border-bottom: 0;
}

.engagement-section {
  border-bottom: 0;
}

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

.engagement-grid article {
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 10%, rgba(214, 199, 161, 0.12), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.024)),
    rgba(14, 14, 17, 0.84);
  backdrop-filter: blur(20px) saturate(145%);
}

.engagement-grid article.featured {
  background: var(--white);
  color: var(--ink);
}

.engagement-grid article.featured p {
  color: var(--muted-dark);
}

.engagement-grid h3 {
  margin: 6rem 0 0.75rem;
}

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

.process-grid article {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 199, 161, 0.12), transparent 11rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.096), rgba(255, 255, 255, 0.024)),
    rgba(14, 14, 17, 0.84);
  backdrop-filter: blur(20px) saturate(145%);
}

.process-grid span {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 199, 161, 0.28);
  border-radius: 999px;
  background: rgba(214, 199, 161, 0.055);
  color: var(--metal);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.process-grid h3 {
  margin: 4rem 0 0.75rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.68;
}

.process-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.system-strip,
.process-grid {
  position: relative;
}

.system-strip {
  overflow: hidden;
}

.system-strip::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(214, 199, 161, 0.14), transparent);
  opacity: 0.36;
  animation: flowSweep 11s var(--ease-glide) infinite;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 1.85rem;
  left: 1.4rem;
  right: 1.4rem;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(214, 199, 161, 0.04), rgba(245, 245, 247, 0.34), rgba(214, 199, 161, 0.32), rgba(20, 124, 229, 0.1), rgba(214, 199, 161, 0.04));
  background-size: 220% 100%;
  opacity: 0.68;
  animation: processCurrent 12s var(--ease-glide) infinite alternate;
}

.stage-note,
.system-strip article,
.engagement-grid article,
.process-grid article,
.example-card,
.kernel-panel,
.kernel-row,
.deliverable-columns ul,
.proof-card,
.contact-form {
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--ease-premium), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.stage-note {
  position: absolute;
}

.system-strip article,
.engagement-grid article,
.process-grid article,
.kernel-panel,
.contact-form {
  box-shadow: var(--glass-shadow);
}

.stage-note::after,
.system-strip article::before,
.engagement-grid article::before,
.process-grid article::after,
.example-card::before,
.kernel-panel::before,
.kernel-row::before,
.deliverable-columns ul::before,
.proof-card::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 42%, transparent 58%);
  opacity: 0;
  transform: translateX(-115%);
  transition: opacity 240ms ease, transform 900ms var(--ease-premium);
}

.stage-note > *,
.system-strip article > *,
.engagement-grid article > *,
.process-grid article > *,
.example-card > *,
.kernel-panel > *,
.kernel-row > *,
.proof-card > *,
.contact-form > * {
  position: relative;
  z-index: 1;
}

.stage-note:hover::after,
.system-strip article:hover::before,
.engagement-grid article:hover::before,
.process-grid article:hover::after,
.example-card:hover::before,
.kernel-panel:hover::before,
.kernel-row:hover::before,
.deliverable-columns ul:hover::before,
.proof-card:hover::before,
.contact-form:focus-within::before {
  opacity: 1;
  transform: translateX(115%);
}

.system-strip article:hover,
.engagement-grid article:hover,
.process-grid article:hover,
.example-card:hover,
.proof-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 199, 161, 0.28);
  box-shadow: var(--hover-shadow);
}

.engagement-grid article.featured:hover,
.example-card:not(.example-feature):hover {
  border-color: rgba(16, 16, 16, 0.18);
  box-shadow: 0 24px 70px rgba(16, 16, 16, 0.14), 0 0 0 1px rgba(214, 199, 161, 0.2);
}

.capability-ledger article {
  position: relative;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms var(--ease-premium);
}

.capability-ledger article:hover {
  transform: translateX(4px);
  border-bottom-color: rgba(214, 199, 161, 0.24);
  background:
    radial-gradient(circle at 10% 50%, rgba(245, 245, 247, 0.045), transparent 14rem),
    linear-gradient(90deg, rgba(214, 199, 161, 0.07), transparent 48%);
}

.kernel-row:hover,
.deliverable-columns li:hover,
.fit-list span:hover {
  border-color: rgba(214, 199, 161, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.deliverable-columns li,
.fit-list span {
  transition: transform 180ms var(--ease-premium), border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.deliverable-columns li:hover,
.fit-list span:hover {
  transform: translateY(-2px);
}

.fit-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.fit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-content: flex-start;
}

.fit-list span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 2.55rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 247, 0.85);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.24;
  overflow-wrap: anywhere;
  white-space: normal;
}

.boundary-section {
  max-width: 940px;
  margin-inline: auto;
}

.boundary-section p:not(.eyebrow) {
  margin: 1rem 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 8rem;
  border-bottom: 0;
}

.contact-copy p {
  margin: 1rem 0 0;
}

.contact-form {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 10%, rgba(214, 199, 161, 0.14), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.028)),
    rgba(18, 18, 21, 0.88);
  color: var(--white);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.contact-form:focus-within {
  border-color: rgba(214, 199, 161, 0.28);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(214, 199, 161, 0.08);
}

.honeypot {
  display: none;
}

.pricing-signal {
  margin: 0 0 1rem;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(214, 199, 161, 0.2);
  border-radius: 6px;
  background: rgba(214, 199, 161, 0.065);
  color: rgba(245, 245, 247, 0.78);
  font-size: 0.88rem;
  line-height: 1.58;
}

.pricing-tiers {
  display: grid;
  gap: 0.72rem;
}

.pricing-tiers p {
  margin: 0;
}

.pricing-tiers ul {
  display: grid;
  gap: 0.46rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-tiers li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.54rem 0.66rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.035);
}

.pricing-tiers span {
  color: rgba(245, 245, 247, 0.84);
}

.pricing-tiers strong {
  color: var(--metal-2);
  font-size: 0.82rem;
  font-weight: 780;
  white-space: nowrap;
}

.form-row {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 0.85rem;
}

.form-row label {
  color: rgba(245, 245, 247, 0.76);
  font-size: 0.83rem;
  font-weight: 760;
}

.form-note {
  margin: 0.1rem 0 0;
  color: rgba(245, 245, 247, 0.56);
  font-size: 0.82rem;
  line-height: 1.55;
}

.request-helper {
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(214, 199, 161, 0.16);
  border-radius: 5px;
  background: rgba(214, 199, 161, 0.06);
  color: rgba(245, 245, 247, 0.68);
  line-height: 1.7;
}

.request-helper[hidden] {
  display: none;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  padding: 0.9rem 0.95rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms var(--ease-premium);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(245, 245, 247, 0.42);
}

.form-row textarea {
  min-height: 12.25rem;
  resize: vertical;
}

.turnstile-row {
  margin-top: 0.15rem;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  min-height: 4.55rem;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.turnstile-wrap:focus-within {
  border-color: rgba(214, 199, 161, 0.48);
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 0 0 4px rgba(214, 199, 161, 0.1);
}

.turnstile-wrap:has(.turnstile-error) {
  border-color: rgba(214, 199, 161, 0.72);
  box-shadow: 0 0 0 4px rgba(214, 199, 161, 0.12);
}

.turnstile-note {
  color: rgba(214, 199, 161, 0.82);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(214, 199, 161, 0.78);
  background: rgba(0, 0, 0, 0.52);
  box-shadow: 0 0 0 4px rgba(214, 199, 161, 0.12), 0 14px 34px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.form-button {
  margin-top: 0.35rem;
  background: var(--white);
  color: var(--black);
}

.form-button:hover,
.form-button:focus-visible {
  background: #e4dcc7;
  color: var(--black);
}

.site-footer {
  width: 100%;
  padding: 3.05rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--black);
}

.footer-inner {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.25rem 2rem;
}

.footer-copy {
  display: grid;
  gap: 0.55rem;
}

.footer-copyright,
.site-footer p {
  margin: 0;
  color: rgba(245, 245, 247, 0.5);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.05rem;
}

.footer-links a {
  color: rgba(245, 245, 247, 0.62);
  font-size: 0.86rem;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.footer-social a {
  width: 1.08rem;
  height: 1.08rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 245, 247, 0.56);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--white);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.copyright {
  grid-column: 1 / -1;
}

.legal-hero {
  padding: 8rem 0 3rem;
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
}

.legal-hero p {
  max-width: 720px;
  margin: 1rem 0 0;
}

.legal-content {
  max-width: 920px;
  padding-bottom: 6rem;
}

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

.legal-content h2 {
  font-size: 1.55rem;
  margin-bottom: 0.8rem;
}

.legal-content p,
.legal-content ul {
  margin: 0;
}

.legal-content p + p,
.legal-content p + ul,
.legal-content ul + p {
  margin-top: 1rem;
}

.legal-content li + li {
  margin-top: 0.45rem;
}

.legal-content a {
  color: var(--blue);
  font-weight: 760;
}

.thank-you-page .hero {
  min-height: 72svh;
  display: grid;
  align-items: center;
}

@keyframes ambientGlassDrift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(1.5%, 1.2%, 0) scale(1.04);
  }
}

@keyframes controlGridDrift {
  0% {
    background-position: center top;
  }
  100% {
    background-position: calc(50% + 96px) 96px;
  }
}

@keyframes airflowDrift {
  0% {
    background-position: center, center, 0% 40%, center top, center top, center;
    transform: translate3d(-1%, -0.8%, 0) scale(1.01);
  }
  100% {
    background-position: center, center, 100% 58%, calc(50% + 96px) 96px, calc(50% + 96px) 96px, center;
    transform: translate3d(1%, 0.8%, 0) scale(1.04);
  }
}

@keyframes airCurrent {
  0% {
    opacity: 0.42;
    transform: translate3d(-2%, -1%, 0) rotate(-0.6deg) scale(1);
  }
  100% {
    opacity: 0.62;
    transform: translate3d(2%, 1.2%, 0) rotate(0.6deg) scale(1.04);
  }
}

@keyframes heroGridGlide {
  0% {
    opacity: 0.32;
    transform: perspective(900px) rotateX(62deg) translateY(-8rem) translateX(-1.4rem);
  }
  100% {
    opacity: 0.48;
    transform: perspective(900px) rotateX(62deg) translateY(-7.4rem) translateX(1.4rem);
  }
}

@keyframes heroEnvironmentDrift {
  0% {
    transform: scale(1.02) translate3d(-0.8%, -0.4%, 0);
  }
  100% {
    transform: scale(1.06) translate3d(0.8%, 0.5%, 0);
  }
}

@keyframes heroModuleFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes flowSweep {
  0% {
    transform: translateX(0);
  }
  48%,
  100% {
    transform: translateX(410%);
  }
}

@keyframes linePulse {
  0% {
    opacity: 0.28;
    filter: saturate(0.8);
  }
  100% {
    opacity: 0.68;
    filter: saturate(1.2);
  }
}

@keyframes processCurrent {
  0% {
    background-position: 0% 50%;
    opacity: 0.42;
  }
  100% {
    background-position: 100% 50%;
    opacity: 0.78;
  }
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  filter: blur(4px);
  transition: opacity 760ms var(--ease-premium), transform 760ms var(--ease-premium), filter 760ms var(--ease-premium), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, color 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (min-width: 760px) {
  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3.75rem;
  }

  .hero-subhead {
    font-size: 1.18rem;
  }
}

@media (min-width: 1120px) {
  h1 {
    font-size: 6.95rem;
  }

  h2 {
    font-size: 4.55rem;
  }
}

@media (max-width: 980px) {
  .manifesto,
  .axiom-section,
  .fit-section,
  .contact-section,
  .tools-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .system-strip,
  .deliverable-columns,
  .engagement-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1220px) {
  .nav {
    width: min(var(--max), calc(100% - 28px));
  }

  .wordmark small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0.5rem 20px 1.2rem;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(-100% - 72px));
    transition: transform 180ms ease, opacity 180ms ease, visibility 0s linear 180ms;
  }

  .nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform 180ms ease, opacity 180ms ease, visibility 0s;
  }

  .nav-links a {
    padding: 0.88rem 0;
    font-size: 0.96rem;
  }

  .nav-links .nav-cta {
    justify-content: center;
    min-height: 2.65rem;
    margin-top: 0.5rem;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 14px;
  }

  .hero,
  .manifesto,
  .system-strip,
  .section,
  .legal-hero,
  .legal-content {
    width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  }

  .examples-section,
  .deliverables-section {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    padding-top: 6.2rem;
    padding-bottom: 4rem;
  }

  .tools-section {
    padding: 4.25rem 0;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-stage {
    margin-top: 2rem;
  }

  .hero-stage img {
    width: 100%;
    height: auto;
  }

  .stage-note {
    display: none;
  }

  .hero-thesis {
    margin-top: -0.7rem;
  }

  .system-strip,
  .deliverable-columns,
  .engagement-grid,
  .process-grid,
  .tools-bridge-grid,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .system-strip article {
    min-height: 9rem;
  }

  .example-card,
  .engagement-grid article,
  .process-grid article {
    min-height: auto;
  }

  .example-card h3,
  .engagement-grid h3,
  .process-grid h3 {
    margin-top: 3rem;
  }

  .capability-ledger article,
  .kernel-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .example-feature {
    grid-column: span 1;
  }

  .section {
    padding: 4.75rem 0;
  }

  .contact-section {
    padding-bottom: 5.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links,
  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 1.92rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .examples-portfolio-link {
    width: auto;
    max-width: calc(100% - 2rem);
    min-width: 0;
    padding-inline: 1.35rem;
  }

  .pricing-tiers li {
    display: grid;
    gap: 0.18rem;
  }

  .pricing-tiers strong {
    white-space: normal;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.12rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.68rem;
    line-height: 1.1;
  }

  h3 {
    font-size: 1.08rem;
  }

  .brand-kicker,
  .eyebrow,
  .label {
    font-size: 0.68rem;
  }

  .hero-subhead,
  .hero-thesis p,
  .manifesto-text p,
  .section-header p,
  .axiom-copy p,
  .boundary-section p,
  .contact-copy p {
    font-size: 0.96rem;
    line-height: 1.64;
  }

  .wordmark span {
    font-size: 0.9rem;
  }

  .nav {
    min-height: 56px;
  }

  .nav-links {
    top: 56px;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .section {
    padding: 3.8rem 0;
  }

  .capability-ledger article {
    padding: 1.75rem 0;
  }

  .example-card,
  .engagement-grid article,
  .process-grid article {
    min-height: auto;
  }

  .example-card h3,
  .engagement-grid h3,
  .process-grid h3 {
    margin-top: 3rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  body::before,
  body::after {
    animation: none !important;
  }

  .hero-stage img {
    animation: none !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.proof-section {
  padding: clamp(5rem, 8vw, 7rem) clamp(1.35rem, 4.7vw, 4rem);
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-section .section-header {
  max-width: 960px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.4rem);
  text-align: center;
}

.proof-section .section-header .eyebrow {
  width: 100%;
  max-width: none;
  margin: 0 auto 1.15rem;
  text-align: center;
}

.proof-section .section-header h2 {
  max-width: 920px;
  margin-inline: auto;
  font-size: clamp(2.35rem, 5.4vw, 4.25rem);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.15rem, 2.3vw, 2rem);
  margin-top: 0;
}

.proof-card {
  margin: 0;
  padding: clamp(1.45rem, 2.4vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.proof-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 245, 247, 0.85);
  margin: 0;
}
